From d4d4d6e660b73c9e8bafccebce3d41fc0faed3ff Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Thu, 25 Sep 2025 23:04:34 -0400 Subject: [PATCH 01/25] #3622 basic FSAE parser --- scripts/document-parser/FSAEparser.ts | 251 + scripts/document-parser/README.md | 3 + scripts/document-parser/fsae_rules.json | 13395 +++++++++++++++ scripts/document-parser/package-lock.json | 283 + scripts/document-parser/package.json | 18 + scripts/document-parser/ruleDocs/FHE.pdf | Bin 0 -> 4853960 bytes scripts/document-parser/ruleDocs/FSAE.pdf | Bin 0 -> 2079246 bytes .../ruleDocs/txtVersions/FHE.txt | 3959 +++++ .../ruleDocs/txtVersions/FSAE.txt | 14043 ++++++++++++++++ scripts/document-parser/tsconfig.json | 16 + 10 files changed, 31968 insertions(+) create mode 100644 scripts/document-parser/FSAEparser.ts create mode 100644 scripts/document-parser/README.md create mode 100644 scripts/document-parser/fsae_rules.json create mode 100644 scripts/document-parser/package-lock.json create mode 100644 scripts/document-parser/package.json create mode 100644 scripts/document-parser/ruleDocs/FHE.pdf create mode 100644 scripts/document-parser/ruleDocs/FSAE.pdf create mode 100644 scripts/document-parser/ruleDocs/txtVersions/FHE.txt create mode 100644 scripts/document-parser/ruleDocs/txtVersions/FSAE.txt create mode 100644 scripts/document-parser/tsconfig.json diff --git a/scripts/document-parser/FSAEparser.ts b/scripts/document-parser/FSAEparser.ts new file mode 100644 index 0000000000..97b9d2740b --- /dev/null +++ b/scripts/document-parser/FSAEparser.ts @@ -0,0 +1,251 @@ +import * as fs from 'fs'; +import pdf from 'pdf-parse'; + +interface RuleData { + ruleCode: string; + ruleContent: string; + parentRuleCode?: string; + pageNumber: string; + isFromTOC?: boolean; +} + +interface RuleMatch { + code: string; + text: string; +} + +interface ParsedOutput { + rules: RuleData[]; + totalRules: number; + totalTOCRules: number; + generatedAt: string; +} + +class FSAERuleParser { + async parsePdf(path: string): Promise<{ rules: RuleData[] }> { + const filePath = "ruleDocs/" + path; + console.log(`Reading PDF: ${filePath}`); + + const dataBuffer = fs.readFileSync(filePath); + const pdfData = await pdf(dataBuffer); + + console.log(`PDF Stats: ${pdfData.numpages} pages, ${pdfData.text.length} characters`); + + const rules = this.extractRules(pdfData.text); + const tocRules = rules.filter(r => r.isFromTOC); + console.log(`Found ${rules.length} total rules (${tocRules.length} from TOC, ${rules.length - tocRules.length} with full content)`); + + return { rules }; + } + + private extractRules(text: string): RuleData[] { + const rules: RuleData[] = []; + const lines = text.split('\n'); + + console.log(`Scanning ${lines.length} lines for rules and TOC entries...`); + + let currentRule: { code: string; text: string; pageNumber: string; isFromTOC: boolean } | null = null; + let currentPageNumber = '1'; + + for (let i = 0; i < lines.length; i++) { + const line = lines[i].trim(); + + if (!line) continue; + + // Check for page number indicators + const pageMatch = this.extractPageNumber(line); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + // Check if this is a TOC entry first + const tocEntry = this.parseTOCEntry(line); + if (tocEntry) { + // Add TOC entry as a rule with the isFromTOC flag + rules.push({ + ruleCode: tocEntry.ruleCode, + ruleContent: tocEntry.title, + parentRuleCode: this.findParentRuleCode(tocEntry.ruleCode), + pageNumber: tocEntry.pageNumber, + isFromTOC: true + }); + continue; + } + + // Otherwise, process as regular rule + const ruleMatch = this.parseRuleNumber(line); + + if (ruleMatch) { + // Save previous rule if it exists + if (currentRule) { + rules.push({ + ruleCode: currentRule.code, + ruleContent: currentRule.text.trim(), + parentRuleCode: this.findParentRuleCode(currentRule.code), + pageNumber: currentRule.pageNumber, + isFromTOC: currentRule.isFromTOC + }); + } + + // Start new rule + currentRule = { + code: ruleMatch.code, + text: ruleMatch.text, + pageNumber: currentPageNumber, + isFromTOC: false + }; + } else if (currentRule) { + // Continue adding content to current rule + if (this.isRuleContent(line)) { + currentRule.text += ' ' + line; + } + } + } + + // Don't forget the last rule + if (currentRule) { + rules.push({ + ruleCode: currentRule.code, + ruleContent: currentRule.text.trim(), + parentRuleCode: this.findParentRuleCode(currentRule.code), + pageNumber: currentRule.pageNumber, + isFromTOC: currentRule.isFromTOC + }); + } + + return rules; + } + + private parseRuleNumber(line: string): RuleMatch | null { + // Match rule patterns like "GR.1.1" followed by text + const rulePattern = /^([A-Z]{1,4}(?:\.[\d]+)+)\s+(.+)$/; + // Match section patterns like "GR - GENERAL REGULATIONS" + const sectionPattern = /^([A-Z]{1,4})\s*-\s*([A-Z][A-Z\s]+)$/; + + let match = line.match(rulePattern) || line.match(sectionPattern); + + if (match) { + return { + code: match[1], + text: match[2] + }; + } + + return null; + } + + private parseTOCEntry(line: string): { ruleCode: string; title: string; pageNumber: string } | null { + // Match pattern like: "EV.1 Definitions .......... 90" + const tocPattern = /^([A-Z]{1,4}(?:\.[\d]+)*)\s+(.+?)\.{3,}.*?(\d+)\s*$/; + const match = line.match(tocPattern); + + if (match) { + const ruleCode = match[1]; + const title = match[2].trim(); + const pageNumber = match[3]; + + return { + ruleCode, + title, + pageNumber + }; + } + + return null; + } + + private extractPageNumber(line: string): string | null { + // Look for page indicators like "Page 5 of 143" + const pagePattern = /Page\s+(\d+)\s+of\s+\d+/i; + const match = line.match(pagePattern); + + if (match) { + return match[1]; + } + + return null; + } + + private findParentRuleCode(ruleCode: string): string | undefined { + const parts = ruleCode.split('.'); + if (parts.length <= 1) { + return undefined; + } + + const parentParts = parts.slice(0, -1); + return parentParts.join('.'); + } + + private isRuleContent(line: string): boolean { + if (line.includes("Formula SAE® Rules 2025")) return false; + if (line.includes("Page") && line.includes("of")) return false; + if (line.includes("© 2024 SAE International")) return false; + if (/^\d+$/.test(line)) return false; + if (line.includes("Version 1.0")) return false; + if (/^\d{2} [A-Z][a-z]{2} \d{4}$/.test(line)) return false; + return true; + } + + private cleanRuleContent(content: string): string { + return content + .replace(/\s+/g, ' ') + .replace(/[""]/g, '"') + .replace(/['']/g, "'") + .trim(); + } + + async saveToJSON(rules: RuleData[], outputPath: string = './fsae_rules.json'): Promise { + console.log(`Saving rules to ${outputPath}...`); + + const cleanRules = rules.map(rule => ({ + ...rule, + ruleContent: this.cleanRuleContent(rule.ruleContent) + })); + + const tocRules = cleanRules.filter(r => r.isFromTOC); + + const output: ParsedOutput = { + rules: cleanRules, + totalRules: cleanRules.length, + totalTOCRules: tocRules.length, + generatedAt: new Date().toISOString() + }; + + fs.writeFileSync(outputPath, JSON.stringify(output, null, 2), 'utf-8'); + console.log(`Saved ${cleanRules.length} rules (${tocRules.length} from TOC) to ${outputPath}`); + } +} + +async function main(): Promise { + const filePath = process.argv[2]; + const outputFile = process.argv[3] || './fsae_rules.json'; + + if (!filePath) { + console.log('Usage: ts-node FSAEparser.ts [output-file]'); + console.log('Example: ts-node FSAEparser.ts FSAE_Rules_2025.pdf'); + console.log('Default output: ./fsae_rules.json'); + process.exit(1); + } + + const parser = new FSAERuleParser(); + + try { + const { rules } = await parser.parsePdf(filePath); + await parser.saveToJSON(rules, outputFile); + + console.log(`\nProcessing complete!`); + console.log(`Total rules: ${rules.length}`); + console.log(`Output file: ${outputFile}`); + + } catch (error) { + console.error('Error:', error); + process.exit(1); + } +} + +if (require.main === module) { + main(); +} + +export { FSAERuleParser }; \ No newline at end of file diff --git a/scripts/document-parser/README.md b/scripts/document-parser/README.md new file mode 100644 index 0000000000..0b1b9bb798 --- /dev/null +++ b/scripts/document-parser/README.md @@ -0,0 +1,3 @@ +cd scripts/document-parser +npm install +npx ts-node FSAEparser.ts FSAE.pdf \ No newline at end of file diff --git a/scripts/document-parser/fsae_rules.json b/scripts/document-parser/fsae_rules.json new file mode 100644 index 0000000000..ac5175d4dc --- /dev/null +++ b/scripts/document-parser/fsae_rules.json @@ -0,0 +1,13395 @@ +{ + "rules": [ + { + "ruleCode": "GR", + "ruleContent": "- General Regulations", + "pageNumber": "5", + "isFromTOC": true + }, + { + "ruleCode": "GR.1", + "ruleContent": "Formula SAE Competition Objective", + "parentRuleCode": "GR", + "pageNumber": "5", + "isFromTOC": true + }, + { + "ruleCode": "GR.2", + "ruleContent": "Organizer Authority", + "parentRuleCode": "GR", + "pageNumber": "6", + "isFromTOC": true + }, + { + "ruleCode": "GR.3", + "ruleContent": "Team Responsibility", + "parentRuleCode": "GR", + "pageNumber": "6", + "isFromTOC": true + }, + { + "ruleCode": "GR.4", + "ruleContent": "Rules Authority and Issue", + "parentRuleCode": "GR", + "pageNumber": "7", + "isFromTOC": true + }, + { + "ruleCode": "GR.5", + "ruleContent": "Rules of Conduct", + "parentRuleCode": "GR", + "pageNumber": "7", + "isFromTOC": true + }, + { + "ruleCode": "GR.6", + "ruleContent": "Rules Format and Use", + "parentRuleCode": "GR", + "pageNumber": "8", + "isFromTOC": true + }, + { + "ruleCode": "GR.7", + "ruleContent": "Rules Questions", + "parentRuleCode": "GR", + "pageNumber": "9", + "isFromTOC": true + }, + { + "ruleCode": "GR.8", + "ruleContent": "Protests", + "parentRuleCode": "GR", + "pageNumber": "9", + "isFromTOC": true + }, + { + "ruleCode": "GR.9", + "ruleContent": "Vehicle Eligibility", + "parentRuleCode": "GR", + "pageNumber": "10", + "isFromTOC": true + }, + { + "ruleCode": "AD", + "ruleContent": "- Administrative Regulations", + "pageNumber": "11", + "isFromTOC": true + }, + { + "ruleCode": "AD.1", + "ruleContent": "The Formula SAE Series", + "parentRuleCode": "AD", + "pageNumber": "11", + "isFromTOC": true + }, + { + "ruleCode": "AD.2", + "ruleContent": "Official Information Sources", + "parentRuleCode": "AD", + "pageNumber": "11", + "isFromTOC": true + }, + { + "ruleCode": "AD.3", + "ruleContent": "Individual Participation Requirements", + "parentRuleCode": "AD", + "pageNumber": "11", + "isFromTOC": true + }, + { + "ruleCode": "AD.4", + "ruleContent": "Individual Registration Requirements", + "parentRuleCode": "AD", + "pageNumber": "12", + "isFromTOC": true + }, + { + "ruleCode": "AD.5", + "ruleContent": "Team Advisors and Officers", + "parentRuleCode": "AD", + "pageNumber": "12", + "isFromTOC": true + }, + { + "ruleCode": "AD.6", + "ruleContent": "Competition Registration", + "parentRuleCode": "AD", + "pageNumber": "13", + "isFromTOC": true + }, + { + "ruleCode": "AD.7", + "ruleContent": "Competition Site", + "parentRuleCode": "AD", + "pageNumber": "14", + "isFromTOC": true + }, + { + "ruleCode": "DR", + "ruleContent": "- Document Requirements", + "pageNumber": "16", + "isFromTOC": true + }, + { + "ruleCode": "DR.1", + "ruleContent": "Documentation", + "parentRuleCode": "DR", + "pageNumber": "16", + "isFromTOC": true + }, + { + "ruleCode": "DR.2", + "ruleContent": "Submission Details", + "parentRuleCode": "DR", + "pageNumber": "16", + "isFromTOC": true + }, + { + "ruleCode": "DR.3", + "ruleContent": "Submission Penalties", + "parentRuleCode": "DR", + "pageNumber": "17", + "isFromTOC": true + }, + { + "ruleCode": "V", + "ruleContent": "- Vehicle Requirements", + "pageNumber": "19", + "isFromTOC": true + }, + { + "ruleCode": "V.1", + "ruleContent": "Configuration", + "parentRuleCode": "V", + "pageNumber": "19", + "isFromTOC": true + }, + { + "ruleCode": "V.2", + "ruleContent": "Driver", + "parentRuleCode": "V", + "pageNumber": "20", + "isFromTOC": true + }, + { + "ruleCode": "V.3", + "ruleContent": "Suspension and Steering", + "parentRuleCode": "V", + "pageNumber": "20", + "isFromTOC": true + }, + { + "ruleCode": "V.4", + "ruleContent": "Wheels and Tires", + "parentRuleCode": "V", + "pageNumber": "21", + "isFromTOC": true + }, + { + "ruleCode": "F", + "ruleContent": "- Chassis and Structural", + "pageNumber": "23", + "isFromTOC": true + }, + { + "ruleCode": "F.1", + "ruleContent": "Definitions", + "parentRuleCode": "F", + "pageNumber": "23", + "isFromTOC": true + }, + { + "ruleCode": "F.2", + "ruleContent": "Documentation", + "parentRuleCode": "F", + "pageNumber": "25", + "isFromTOC": true + }, + { + "ruleCode": "F.3", + "ruleContent": "Tubing and Material", + "parentRuleCode": "F", + "pageNumber": "25", + "isFromTOC": true + }, + { + "ruleCode": "F.4", + "ruleContent": "Composite and Other Materials", + "parentRuleCode": "F", + "pageNumber": "28", + "isFromTOC": true + }, + { + "ruleCode": "F.5", + "ruleContent": "Chassis Requirements", + "parentRuleCode": "F", + "pageNumber": "30", + "isFromTOC": true + }, + { + "ruleCode": "F.6", + "ruleContent": "Tube Frames", + "parentRuleCode": "F", + "pageNumber": "37", + "isFromTOC": true + }, + { + "ruleCode": "F.7", + "ruleContent": "Monocoque", + "parentRuleCode": "F", + "pageNumber": "39", + "isFromTOC": true + }, + { + "ruleCode": "F.8", + "ruleContent": "Front Chassis Protection", + "parentRuleCode": "F", + "pageNumber": "43", + "isFromTOC": true + }, + { + "ruleCode": "F.9", + "ruleContent": "Fuel System (IC Only)", + "parentRuleCode": "F", + "pageNumber": "48", + "isFromTOC": true + }, + { + "ruleCode": "F.10", + "ruleContent": "Accumulator Container (EV Only)", + "parentRuleCode": "F", + "pageNumber": "49", + "isFromTOC": true + }, + { + "ruleCode": "F.11", + "ruleContent": "Tractive System (EV Only)", + "parentRuleCode": "F", + "pageNumber": "52", + "isFromTOC": true + }, + { + "ruleCode": "T", + "ruleContent": "- Technical Aspects", + "pageNumber": "54", + "isFromTOC": true + }, + { + "ruleCode": "T.1", + "ruleContent": "Cockpit", + "parentRuleCode": "T", + "pageNumber": "54", + "isFromTOC": true + }, + { + "ruleCode": "T.2", + "ruleContent": "Driver Accommodation", + "parentRuleCode": "T", + "pageNumber": "58", + "isFromTOC": true + }, + { + "ruleCode": "T.3", + "ruleContent": "Brakes", + "parentRuleCode": "T", + "pageNumber": "63", + "isFromTOC": true + }, + { + "ruleCode": "T.4", + "ruleContent": "Electronic Throttle Components", + "parentRuleCode": "T", + "pageNumber": "64", + "isFromTOC": true + }, + { + "ruleCode": "T.5", + "ruleContent": "Powertrain", + "parentRuleCode": "T", + "pageNumber": "66", + "isFromTOC": true + }, + { + "ruleCode": "T.6", + "ruleContent": "Pressurized Systems", + "parentRuleCode": "T", + "pageNumber": "68", + "isFromTOC": true + }, + { + "ruleCode": "T.7", + "ruleContent": "Bodywork and Aerodynamic Devices", + "parentRuleCode": "T", + "pageNumber": "69", + "isFromTOC": true + }, + { + "ruleCode": "T.8", + "ruleContent": "Fasteners", + "parentRuleCode": "T", + "pageNumber": "71", + "isFromTOC": true + }, + { + "ruleCode": "T.9", + "ruleContent": "Electrical Equipment", + "parentRuleCode": "T", + "pageNumber": "72", + "isFromTOC": true + }, + { + "ruleCode": "VE", + "ruleContent": "- Vehicle and Driver Equipment", + "pageNumber": "75", + "isFromTOC": true + }, + { + "ruleCode": "VE.1", + "ruleContent": "Vehicle Identification", + "parentRuleCode": "VE", + "pageNumber": "75", + "isFromTOC": true + }, + { + "ruleCode": "VE.2", + "ruleContent": "Vehicle Equipment", + "parentRuleCode": "VE", + "pageNumber": "75", + "isFromTOC": true + }, + { + "ruleCode": "VE.3", + "ruleContent": "Driver Equipment", + "parentRuleCode": "VE", + "pageNumber": "77", + "isFromTOC": true + }, + { + "ruleCode": "IC", + "ruleContent": "- Internal Combustion Engine Vehicles", + "pageNumber": "79", + "isFromTOC": true + }, + { + "ruleCode": "IC.1", + "ruleContent": "General Requirements", + "parentRuleCode": "IC", + "pageNumber": "79", + "isFromTOC": true + }, + { + "ruleCode": "IC.2", + "ruleContent": "Air Intake System", + "parentRuleCode": "IC", + "pageNumber": "79", + "isFromTOC": true + }, + { + "ruleCode": "IC.3", + "ruleContent": "Throttle", + "parentRuleCode": "IC", + "pageNumber": "80", + "isFromTOC": true + }, + { + "ruleCode": "IC.4", + "ruleContent": "Electronic Throttle Control", + "parentRuleCode": "IC", + "pageNumber": "81", + "isFromTOC": true + }, + { + "ruleCode": "IC.5", + "ruleContent": "Fuel and Fuel System", + "parentRuleCode": "IC", + "pageNumber": "84", + "isFromTOC": true + }, + { + "ruleCode": "IC.6", + "ruleContent": "Fuel Injection", + "parentRuleCode": "IC", + "pageNumber": "86", + "isFromTOC": true + }, + { + "ruleCode": "IC.7", + "ruleContent": "Exhaust and Noise Control", + "parentRuleCode": "IC", + "pageNumber": "87", + "isFromTOC": true + }, + { + "ruleCode": "IC.8", + "ruleContent": "Electrical", + "parentRuleCode": "IC", + "pageNumber": "88", + "isFromTOC": true + }, + { + "ruleCode": "IC.9", + "ruleContent": "Shutdown System", + "parentRuleCode": "IC", + "pageNumber": "88", + "isFromTOC": true + }, + { + "ruleCode": "EV", + "ruleContent": "- Electric Vehicles", + "pageNumber": "90", + "isFromTOC": true + }, + { + "ruleCode": "EV.1", + "ruleContent": "Definitions", + "parentRuleCode": "EV", + "pageNumber": "90", + "isFromTOC": true + }, + { + "ruleCode": "EV.2", + "ruleContent": "Documentation", + "parentRuleCode": "EV", + "pageNumber": "90", + "isFromTOC": true + }, + { + "ruleCode": "EV.3", + "ruleContent": "Electrical Limitations", + "parentRuleCode": "EV", + "pageNumber": "90", + "isFromTOC": true + }, + { + "ruleCode": "EV.4", + "ruleContent": "Components", + "parentRuleCode": "EV", + "pageNumber": "91", + "isFromTOC": true + }, + { + "ruleCode": "EV.5", + "ruleContent": "Energy Storage", + "parentRuleCode": "EV", + "pageNumber": "94", + "isFromTOC": true + }, + { + "ruleCode": "EV.6", + "ruleContent": "Electrical System", + "parentRuleCode": "EV", + "pageNumber": "98", + "isFromTOC": true + }, + { + "ruleCode": "EV.7", + "ruleContent": "Shutdown System", + "parentRuleCode": "EV", + "pageNumber": "102", + "isFromTOC": true + }, + { + "ruleCode": "EV.8", + "ruleContent": "Charger Requirements", + "parentRuleCode": "EV", + "pageNumber": "107", + "isFromTOC": true + }, + { + "ruleCode": "EV.9", + "ruleContent": "Vehicle Operations", + "parentRuleCode": "EV", + "pageNumber": "108", + "isFromTOC": true + }, + { + "ruleCode": "EV.10", + "ruleContent": "Event Site Activities", + "parentRuleCode": "EV", + "pageNumber": "109", + "isFromTOC": true + }, + { + "ruleCode": "EV.11", + "ruleContent": "Work Practices", + "parentRuleCode": "EV", + "pageNumber": "109", + "isFromTOC": true + }, + { + "ruleCode": "IN", + "ruleContent": "- Technical Inspection", + "pageNumber": "112", + "isFromTOC": true + }, + { + "ruleCode": "IN.1", + "ruleContent": "Inspection Requirements", + "parentRuleCode": "IN", + "pageNumber": "112", + "isFromTOC": true + }, + { + "ruleCode": "IN.2", + "ruleContent": "Inspection Conduct", + "parentRuleCode": "IN", + "pageNumber": "112", + "isFromTOC": true + }, + { + "ruleCode": "IN.3", + "ruleContent": "Initial Inspection", + "parentRuleCode": "IN", + "pageNumber": "113", + "isFromTOC": true + }, + { + "ruleCode": "IN.4", + "ruleContent": "Electrical Technical Inspection (EV Only)", + "parentRuleCode": "IN", + "pageNumber": "113", + "isFromTOC": true + }, + { + "ruleCode": "IN.5", + "ruleContent": "Driver Cockpit Checks", + "parentRuleCode": "IN", + "pageNumber": "114", + "isFromTOC": true + }, + { + "ruleCode": "IN.6", + "ruleContent": "Driver Template Inspections", + "parentRuleCode": "IN", + "pageNumber": "115", + "isFromTOC": true + }, + { + "ruleCode": "IN.7", + "ruleContent": "Cockpit Template Inspections", + "parentRuleCode": "IN", + "pageNumber": "115", + "isFromTOC": true + }, + { + "ruleCode": "IN.8", + "ruleContent": "Mechanical Technical Inspection", + "parentRuleCode": "IN", + "pageNumber": "115", + "isFromTOC": true + }, + { + "ruleCode": "IN.9", + "ruleContent": "Tilt Test", + "parentRuleCode": "IN", + "pageNumber": "116", + "isFromTOC": true + }, + { + "ruleCode": "IN.10", + "ruleContent": "Noise and Switch Test (IC Only)", + "parentRuleCode": "IN", + "pageNumber": "117", + "isFromTOC": true + }, + { + "ruleCode": "IN.11", + "ruleContent": "Rain Test (EV Only)", + "parentRuleCode": "IN", + "pageNumber": "118", + "isFromTOC": true + }, + { + "ruleCode": "IN.12", + "ruleContent": "Brake Test", + "parentRuleCode": "IN", + "pageNumber": "118", + "isFromTOC": true + }, + { + "ruleCode": "IN.13", + "ruleContent": "Inspection Approval", + "parentRuleCode": "IN", + "pageNumber": "119", + "isFromTOC": true + }, + { + "ruleCode": "IN.14", + "ruleContent": "Modifications and Repairs", + "parentRuleCode": "IN", + "pageNumber": "119", + "isFromTOC": true + }, + { + "ruleCode": "IN.15", + "ruleContent": "Reinspection", + "parentRuleCode": "IN", + "pageNumber": "120", + "isFromTOC": true + }, + { + "ruleCode": "S", + "ruleContent": "- Static Events", + "pageNumber": "121", + "isFromTOC": true + }, + { + "ruleCode": "S.1", + "ruleContent": "General Static", + "parentRuleCode": "S", + "pageNumber": "121", + "isFromTOC": true + }, + { + "ruleCode": "S.2", + "ruleContent": "Presentation Event", + "parentRuleCode": "S", + "pageNumber": "121", + "isFromTOC": true + }, + { + "ruleCode": "S.3", + "ruleContent": "Cost and Manufacturing Event", + "parentRuleCode": "S", + "pageNumber": "122", + "isFromTOC": true + }, + { + "ruleCode": "S.4", + "ruleContent": "Design Event", + "parentRuleCode": "S", + "pageNumber": "126", + "isFromTOC": true + }, + { + "ruleCode": "D", + "ruleContent": "- Dynamic Events", + "pageNumber": "128", + "isFromTOC": true + }, + { + "ruleCode": "D.1", + "ruleContent": "General Dynamic", + "parentRuleCode": "D", + "pageNumber": "128", + "isFromTOC": true + }, + { + "ruleCode": "D.2", + "ruleContent": "Pit and Paddock", + "parentRuleCode": "D", + "pageNumber": "128", + "isFromTOC": true + }, + { + "ruleCode": "D.3", + "ruleContent": "Driving", + "parentRuleCode": "D", + "pageNumber": "129", + "isFromTOC": true + }, + { + "ruleCode": "D.4", + "ruleContent": "Flags", + "parentRuleCode": "D", + "pageNumber": "130", + "isFromTOC": true + }, + { + "ruleCode": "D.5", + "ruleContent": "Weather Conditions", + "parentRuleCode": "D", + "pageNumber": "130", + "isFromTOC": true + }, + { + "ruleCode": "D.6", + "ruleContent": "Tires and Tire Changes", + "parentRuleCode": "D", + "pageNumber": "131", + "isFromTOC": true + }, + { + "ruleCode": "D.7", + "ruleContent": "Driver Limitations", + "parentRuleCode": "D", + "pageNumber": "132", + "isFromTOC": true + }, + { + "ruleCode": "D.8", + "ruleContent": "Definitions", + "parentRuleCode": "D", + "pageNumber": "132", + "isFromTOC": true + }, + { + "ruleCode": "D.9", + "ruleContent": "Acceleration Event", + "parentRuleCode": "D", + "pageNumber": "132", + "isFromTOC": true + }, + { + "ruleCode": "D.10", + "ruleContent": "Skidpad Event", + "parentRuleCode": "D", + "pageNumber": "133", + "isFromTOC": true + }, + { + "ruleCode": "D.11", + "ruleContent": "Autocross Event", + "parentRuleCode": "D", + "pageNumber": "135", + "isFromTOC": true + }, + { + "ruleCode": "D.12", + "ruleContent": "Endurance Event", + "parentRuleCode": "D", + "pageNumber": "137", + "isFromTOC": true + }, + { + "ruleCode": "D.13", + "ruleContent": "Efficiency Event", + "parentRuleCode": "D", + "pageNumber": "141", + "isFromTOC": true + }, + { + "ruleCode": "D.14", + "ruleContent": "Post Endurance", + "parentRuleCode": "D", + "pageNumber": "143", + "isFromTOC": true + }, + { + "ruleCode": "GR", + "ruleContent": "GENERAL REGULATIONS", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1", + "ruleContent": "FORMULA SAE COMPETITION OBJECTIVE", + "parentRuleCode": "GR", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.1", + "ruleContent": "Collegiate Design Series SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and graduate engineering students in a variety of disciplines for future employment in mobility- related industries by challenging them with a real world, engineering application. Through the Engineering Design Process, experiences may include but are not limited to: • Project management, budgeting, communication, and resource management skills • Team collaboration • Applying industry rules and regulations • Design, build, and test the performance of a real vehicle • Interact and compete with other students from around the globe • Develop and prepare technical documentation Students also gain valuable exposure to and engagement with industry professionals to enhance 21st century learning skills, to build their own network and help prepare them for the workforce after graduation.", + "parentRuleCode": "GR.1", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.2", + "ruleContent": "Formula SAE Concept The Formula SAE® competitions challenge teams of university undergraduate and graduate students to conceive, design, fabricate, develop and compete with small, formula style vehicles.", + "parentRuleCode": "GR.1", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.3", + "ruleContent": "Engineering Competition Formula SAE® is an engineering education competition that requires performance demonstration of vehicles in a series of events, off track and on track against the clock. Each competition gives teams the chance to demonstrate their creativity and engineering skills in comparison to teams from other universities around the world.", + "parentRuleCode": "GR.1", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.4", + "ruleContent": "Vehicle Design Objectives", + "parentRuleCode": "GR.1", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.4.1", + "ruleContent": "Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and demonstrate a prototype vehicle", + "parentRuleCode": "GR.1.4", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.4.2", + "ruleContent": "The vehicle should have high performance and be sufficiently durable to successfully complete all the events at the Formula SAE competitions.", + "parentRuleCode": "GR.1.4", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.4.3", + "ruleContent": "Additional design factors include: aesthetics, cost, ergonomics, maintainability, and manufacturability.", + "parentRuleCode": "GR.1.4", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.4.4", + "ruleContent": "Each design will be judged and evaluated against other competing designs in a series of Static and Dynamic events to determine the vehicle that best meets the design goals and may be profitably built and marketed.", + "parentRuleCode": "GR.1.4", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.1.5", + "ruleContent": "Good Engineering Practices Vehicles entered into Formula SAE competitions should be designed and fabricated in accordance with good engineering practices.", + "parentRuleCode": "GR.1", + "pageNumber": "5", + "isFromTOC": false + }, + { + "ruleCode": "GR.2", + "ruleContent": "ORGANIZER AUTHORITY", + "parentRuleCode": "GR", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.2.1", + "ruleContent": "General Authority SAE International and the competition organizing bodies reserve the right to revise the schedule of any competition and/or interpret or modify the competition rules at any time and in any manner that is, in their sole judgment, required for the efficient operation of the event or the Formula SAE series as a whole.", + "parentRuleCode": "GR.2", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.2.2", + "ruleContent": "Right to Impound", + "parentRuleCode": "GR.2", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.2.2.1", + "ruleContent": "SAE International and other competition organizing bodies may impound any onsite vehicle or part of the vehicle at any time during a competition.", + "parentRuleCode": "GR.2.2", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.2.2.2", + "ruleContent": "Team access to the vehicle or impound may be restricted.", + "parentRuleCode": "GR.2.2", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.2.3", + "ruleContent": "Problem Resolution Any problems that arise during the competition will be resolved through the onsite organizers and the decision will be final.", + "parentRuleCode": "GR.2", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.2.4", + "ruleContent": "Restriction on Vehicle Use SAE International, competition organizer(s) and officials are not responsible for use of vehicles designed in compliance with these Formula SAE Rules outside of the official Formula SAE competitions.", + "parentRuleCode": "GR.2", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3", + "ruleContent": "TEAM RESPONSIBILITY", + "parentRuleCode": "GR", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.1", + "ruleContent": "Rules Compliance By registering for a Formula SAE competition, the team, members of the team as individuals, faculty advisors and other personnel of the entering university agree to comply with, and be bound by, these rules and all rule interpretations or procedures issued or announced by SAE International, the Formula SAE Rules Committee and the other organizing bodies.", + "parentRuleCode": "GR.3", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.2", + "ruleContent": "Student Project By registering for any university program, the University registered assumes liability of the student project.", + "parentRuleCode": "GR.3", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.3", + "ruleContent": "Understanding the Rules Teams, team members as individuals and faculty advisors, are responsible for reading and understanding the rules in effect for the competition in which they are participating.", + "parentRuleCode": "GR.3", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.4", + "ruleContent": "Participating in the Competition", + "parentRuleCode": "GR.3", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.4.1", + "ruleContent": "Teams, individual team members, faculty advisors and other representatives of a registered university who are present onsite at a competition are “participating in the competition” from the time they arrive at the competition site until they depart the site at the conclusion of the competition or earlier by withdrawing.", + "parentRuleCode": "GR.3.4", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.4.2", + "ruleContent": "All team members, faculty advisors and other university representatives must cooperate with, and follow all instructions from, competition organizers, officials and judges.", + "parentRuleCode": "GR.3.4", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.5", + "ruleContent": "Forfeit for Non Appearance", + "parentRuleCode": "GR.3", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.5.1", + "ruleContent": "It is the responsibility of each team to be in the right location at the right time.", + "parentRuleCode": "GR.3.5", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.5.2", + "ruleContent": "If a team is not present and ready to compete at the scheduled time, they forfeit their attempt at that event.", + "parentRuleCode": "GR.3.5", + "pageNumber": "6", + "isFromTOC": false + }, + { + "ruleCode": "GR.3.5.3", + "ruleContent": "There are no makeups for missed appearances.", + "parentRuleCode": "GR.3.5", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4", + "ruleContent": "RULES AUTHORITY AND ISSUE", + "parentRuleCode": "GR", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.1", + "ruleContent": "Rules Authority The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are issued under the authority of the SAE International Collegiate Design Series.", + "parentRuleCode": "GR.4", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.2", + "ruleContent": "Rules Validity", + "parentRuleCode": "GR.4", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.2.1", + "ruleContent": "The Formula SAE Rules posted on the website and dated for the calendar year of the competition are the rules in effect for the competition.", + "parentRuleCode": "GR.4.2", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.2.2", + "ruleContent": "Rules appendices or supplements may be posted on the website and incorporated into the rules by reference.", + "parentRuleCode": "GR.4.2", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.2.3", + "ruleContent": "Additional guidance or reference documents may be posted on the website.", + "parentRuleCode": "GR.4.2", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.2.4", + "ruleContent": "Any rules, questions, or resolutions from previous years are not valid for the current competition year.", + "parentRuleCode": "GR.4.2", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.3", + "ruleContent": "Rules Alterations", + "parentRuleCode": "GR.4", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.3.1", + "ruleContent": "The Formula SAE rules may be revised, updated, or amended at any time", + "parentRuleCode": "GR.4.3", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.3.2", + "ruleContent": "Official designated communications from the Formula SAE Rules Committee, SAE International or the other organizing bodies are to be considered part of, and have the same validity as, these rules", + "parentRuleCode": "GR.4.3", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.3.3", + "ruleContent": "Draft rules or proposals may be issued for comments, however they are a courtesy, are not valid for any competitions, and may or may not be implemented in whole or in part.", + "parentRuleCode": "GR.4.3", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.4", + "ruleContent": "Rules Compliance", + "parentRuleCode": "GR.4", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.4.1", + "ruleContent": "All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE Online Website to verify the current version.", + "parentRuleCode": "GR.4.4", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.4.2", + "ruleContent": "Teams and team members must comply with the general rules and any specific rules for each competition they enter.", + "parentRuleCode": "GR.4.4", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.4.3", + "ruleContent": "Any regulations pertaining to the use of the competition site by teams or individuals and which are posted, announced and/or otherwise publicly available are incorporated into the Formula SAE Rules by reference. As examples, all competition site waiver requirements, speed limits, parking and facility use rules apply to Formula SAE participants.", + "parentRuleCode": "GR.4.4", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.4.5", + "ruleContent": "Violations on Intent The violation of the intent of a rule will be considered a violation of the rule itself.", + "parentRuleCode": "GR.4", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.5", + "ruleContent": "RULES OF CONDUCT", + "parentRuleCode": "GR", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.5.1", + "ruleContent": "Unsportsmanlike Conduct If unsportsmanlike conduct occurs, the team gets a warning from an official. A second violation will result in expulsion of the team from the competition.", + "parentRuleCode": "GR.5", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.5.2", + "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a 25 point penalty.", + "parentRuleCode": "GR.5", + "pageNumber": "7", + "isFromTOC": false + }, + { + "ruleCode": "GR.5.3", + "ruleContent": "Arguments with Officials Argument with, or disobedience of, any official may result in the team being eliminated from the competition. All members of the team may be immediately escorted from the grounds.", + "parentRuleCode": "GR.5", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.5.4", + "ruleContent": "Alcohol and Illegal Material", + "parentRuleCode": "GR.5", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.5.4.1", + "ruleContent": "Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site during the entire competition.", + "parentRuleCode": "GR.5.4", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.5.4.2", + "ruleContent": "Any violation of this rule by any team member or faculty advisor will cause immediate disqualification and expulsion of the entire team.", + "parentRuleCode": "GR.5.4", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.5.4.3", + "ruleContent": "Any use of drugs, or the use of alcohol by an underage individual will be reported to the local authorities.", + "parentRuleCode": "GR.5.4", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.5.5", + "ruleContent": "Smoking – Prohibited Smoking and e-cigarette use is prohibited in all competition areas.", + "parentRuleCode": "GR.5", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6", + "ruleContent": "RULES FORMAT AND USE", + "parentRuleCode": "GR", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6.1", + "ruleContent": "Definition of Terms • Must - designates a requirement • Must NOT - designates a prohibition or restriction • Should - gives an expectation • May - gives permission, not a requirement and not a recommendation", + "parentRuleCode": "GR.6", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6.2", + "ruleContent": "Capitalized Terms Items or areas which have specific definitions or have specific rules are capitalized. For example, “Rules Questions” or “Primary Structure”", + "parentRuleCode": "GR.6", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6.3", + "ruleContent": "Headings The article, section and paragraph headings in these rules are provided only to facilitate reading: they do not affect the paragraph contents.", + "parentRuleCode": "GR.6", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6.4", + "ruleContent": "Applicability", + "parentRuleCode": "GR.6", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6.4.1", + "ruleContent": "Unless otherwise specified, all rules apply to all vehicles at all times", + "parentRuleCode": "GR.6.4", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6.4.2", + "ruleContent": "Rules specific to vehicles based on their powertrain will be specified as such in the rule text: • Internal Combustion “IC” or “IC Only” • Electric Vehicle “EV” or “EV Only”", + "parentRuleCode": "GR.6.4", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6.5", + "ruleContent": "Figures and Illustrations Figures and illustrations give clarification or guidance, but are Rules only when referred to in the text of a rule", + "parentRuleCode": "GR.6", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.6.6", + "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes.", + "parentRuleCode": "GR.6", + "pageNumber": "8", + "isFromTOC": false + }, + { + "ruleCode": "GR.7", + "ruleContent": "RULES QUESTIONS", + "parentRuleCode": "GR", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.7.1", + "ruleContent": "Question Types Designated officials will answer questions that are not already answered in the rules or FAQs or that require new or novel rule interpretations. Rules Questions may also be used to request approval, as specified in these rules.", + "parentRuleCode": "GR.7", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.7.2", + "ruleContent": "Question Format", + "parentRuleCode": "GR.7", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.7.2.1", + "ruleContent": "All Rules Questions must include: • Full name and contact information of the person submitting the question • University name – no abbreviations • The specific competition your team has, or is planning to, enter • Number of the applicable rule(s)", + "parentRuleCode": "GR.7.2", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.7.2.2", + "ruleContent": "Response Time • Please allow a minimum of two weeks for a response • Do not resubmit questions", + "parentRuleCode": "GR.7.2", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.7.2.3", + "ruleContent": "Submission Addresses a. Teams entering Formula SAE competitions: Follow the link and instructions published on the FSAE Online Website to \"Submit a Rules Question\" b. Teams entering other competitions please visit those respective competition websites for further instructions.", + "parentRuleCode": "GR.7.2", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.7.3", + "ruleContent": "Question Publication Any submitted question and the official answer may be reproduced and freely distributed, in complete and edited versions.", + "parentRuleCode": "GR.7", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.8", + "ruleContent": "PROTESTS", + "parentRuleCode": "GR", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.8.1", + "ruleContent": "Cause for Protest A team may protest any rule interpretation, score or official action (unless specifically excluded from Protest) which they feel has caused some actual, non trivial, harm to their team, or has had a substantive effect on their score.", + "parentRuleCode": "GR.8", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.8.2", + "ruleContent": "Preliminary Review – Required Questions about scoring, judging, policies or any official action must be brought to the attention of the organizer or SAE International staff for an informal preliminary review before a protest may be filed.", + "parentRuleCode": "GR.8", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.8.3", + "ruleContent": "Protest Format • All protests must be filed in writing • The completed protest must be presented to the organizer or SAE International staff by the team captain. • Team video or data acquisition will not be reviewed as part of a protest.", + "parentRuleCode": "GR.8", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.8.4", + "ruleContent": "Protest Point Bond A team must post a 25 point protest bond which will be forfeited if their protest is rejected.", + "parentRuleCode": "GR.8", + "pageNumber": "9", + "isFromTOC": false + }, + { + "ruleCode": "GR.8.5", + "ruleContent": "Protest Period Protests concerning any aspect of the competition must be filed in the protest period announced by the competition organizers or 30 minutes of the posting of the scores of the event to which the protest relates.", + "parentRuleCode": "GR.8", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.8.6", + "ruleContent": "Decision The decision regarding any protest is final.", + "parentRuleCode": "GR.8", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9", + "ruleContent": "VEHICLE ELIGIBILITY", + "parentRuleCode": "GR", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.1", + "ruleContent": "Student Developed Vehicle", + "parentRuleCode": "GR.9", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.1.1", + "ruleContent": "Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained by the student team members without direct involvement from professional engineers, automotive engineers, racers, machinists or related professionals.", + "parentRuleCode": "GR.9.1", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.1.2", + "ruleContent": "Information Sources The student team may use any literature or knowledge related to design and information from professionals or from academics as long as the information is given as a discussion of alternatives with their pros and cons.", + "parentRuleCode": "GR.9.1", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.1.3", + "ruleContent": "Professional Assistance Professionals must not make design decisions or drawings. The Faculty Advisor may be required to sign a statement of compliance with this restriction.", + "parentRuleCode": "GR.9.1", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.1.4", + "ruleContent": "Student Fabrication Students should do all fabrication tasks", + "parentRuleCode": "GR.9.1", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.2", + "ruleContent": "Definitions", + "parentRuleCode": "GR.9", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.2.1", + "ruleContent": "Competition Year The period beginning at the event of the Formula SAE series where the vehicle first competes and continuing until the start of the corresponding event held approximately 12 months later.", + "parentRuleCode": "GR.9.2", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.2.2", + "ruleContent": "First Year Vehicle A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year", + "parentRuleCode": "GR.9.2", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.2.3", + "ruleContent": "Second Year Vehicle A vehicle which has competed in a previous Competition Year", + "parentRuleCode": "GR.9.2", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.2.4", + "ruleContent": "Third Year Vehicle A vehicle which has competed in more than one previous Competition Year", + "parentRuleCode": "GR.9.2", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.3", + "ruleContent": "Formula SAE Competition Eligibility", + "parentRuleCode": "GR.9", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.3.1", + "ruleContent": "Only First Year Vehicles may enter the Formula SAE Competitions a. If there is any question about the status as a First Year Vehicle, the team must provide additional information and/or evidence.", + "parentRuleCode": "GR.9.3", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.3.2", + "ruleContent": "Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the organizer of the specific competition. The Formula SAE and Formula SAE Electric events in North America do not allow Second Year Vehicles", + "parentRuleCode": "GR.9.3", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "GR.9.3.3", + "ruleContent": "Third Year Vehicles must not enter any Formula SAE Competitions", + "parentRuleCode": "GR.9.3", + "pageNumber": "10", + "isFromTOC": false + }, + { + "ruleCode": "AD", + "ruleContent": "ADMINISTRATIVE REGULATIONS", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.1", + "ruleContent": "THE FORMULA SAE SERIES", + "parentRuleCode": "AD", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.1.1", + "ruleContent": "Rule Variations All competitions in the Formula SAE Series may post rule variations specific to the operation of the events in their countries. Vehicle design requirements and restrictions will remain unchanged. Any rule variations will be posted on the websites specific to those competitions.", + "parentRuleCode": "AD.1", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.1.2", + "ruleContent": "Official Announcements and Competition Information Teams must read the published announcements by SAE International and the other organizing bodies and be familiar with all official announcements concerning the competitions and any released rules interpretations.", + "parentRuleCode": "AD.1", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.1.3", + "ruleContent": "Official Languages The official language of the Formula SAE series is English. Document submissions, presentations and discussions in English are acceptable at all competitions in the series.", + "parentRuleCode": "AD.1", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.2", + "ruleContent": "OFFICIAL INFORMATION SOURCES These websites are referenced in these rules. Refer to the websites for additional information and resources.", + "parentRuleCode": "AD", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.2.1", + "ruleContent": "Event Website The Event Website for Formula SAE is specific to each competition, refer to: https://www.sae.org/attend/student-events", + "parentRuleCode": "AD.2", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.2.2", + "ruleContent": "FSAE Online Website The FSAE Online website is at: http://fsaeonline.com/", + "parentRuleCode": "AD.2", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.2.2.1", + "ruleContent": "Documents, forms, and information are accessed from the “Series Resources” link", + "parentRuleCode": "AD.2.2", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.2.2.2", + "ruleContent": "Each registered team must have an account on the FSAE Online Website.", + "parentRuleCode": "AD.2.2", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.2.2.3", + "ruleContent": "Each team must have one or more persons as Team Captain. The Team Captain must accept Team Members.", + "parentRuleCode": "AD.2.2", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.2.2.4", + "ruleContent": "Only persons designated Team Members or Team Captains are able to upload documents to the website.", + "parentRuleCode": "AD.2.2", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.2.3", + "ruleContent": "Contacts Contact collegiatecompetitions@sae.org with any problems/comments/concerns Consult the specific website for the other competitions requirements.", + "parentRuleCode": "AD.2", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.3", + "ruleContent": "INDIVIDUAL PARTICIPATION REQUIREMENTS", + "parentRuleCode": "AD", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.1", + "ruleContent": "Eligibility", + "parentRuleCode": "AD.3", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.1.1", + "ruleContent": "Team members must be enrolled as degree seeking undergraduate or graduate students in the college or university of the team with which they are participating.", + "parentRuleCode": "AD.3.1", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.1.2", + "ruleContent": "Team members who have graduated during the seven month period prior to the competition remain eligible to participate.", + "parentRuleCode": "AD.3.1", + "pageNumber": "11", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.1.3", + "ruleContent": "Teams which are formed with members from two or more universities are treated as a single team. A student at any university making up the team may compete at any competition where the team participates. The multiple universities are treated as one university with the same eligibility requirements.", + "parentRuleCode": "AD.3.1", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.1.4", + "ruleContent": "Each team member may participate at a competition for only one team. This includes competitions where the University enters both IC and EV teams.", + "parentRuleCode": "AD.3.1", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.2", + "ruleContent": "Age Team members must be minimum 18 years of age.", + "parentRuleCode": "AD.3", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.3", + "ruleContent": "Driver’s License Team members who will drive a competition vehicle at any time during a competition must hold a valid, government issued driver’s license.", + "parentRuleCode": "AD.3", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.4", + "ruleContent": "Society Membership Team members must be members of SAE International Proof of membership, such as membership card, is required at the competition.", + "parentRuleCode": "AD.3", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.5", + "ruleContent": "Medical Insurance Individual medical insurance coverage is required and is the sole responsibility of the participant.", + "parentRuleCode": "AD.3", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.3.6", + "ruleContent": "Disabled Accessibility Team members who require accessibility for areas outside of ADA Compliance must contact organizers at collegiatecompetitions@sae.org prior to start of competition.", + "parentRuleCode": "AD.3", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.4", + "ruleContent": "INDIVIDUAL REGISTRATION REQUIREMENTS", + "parentRuleCode": "AD", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.4.1", + "ruleContent": "Preliminary Registration", + "parentRuleCode": "AD.4", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.4.1.1", + "ruleContent": "All students and faculty must be affiliated to your respective school /college/university on the Event Website before the deadline shown on the Event Website", + "parentRuleCode": "AD.4.1", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.4.1.2", + "ruleContent": "International student participants (or unaffiliated Faculty Advisors) who are not SAE International members must create a free customer account profile on www.sae.org. Upon completion, please email collegiatecompetitions@sae.org the assigned customer number stating also the event and university affiliation.", + "parentRuleCode": "AD.4.1", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.4.2", + "ruleContent": "Onsite Registration", + "parentRuleCode": "AD.4", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.4.2.1", + "ruleContent": "All team members and faculty advisors must register at the competition site", + "parentRuleCode": "AD.4.2", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.4.2.2", + "ruleContent": "All onsite participants, including students, faculty and volunteers, must sign a liability waiver upon registering onsite.", + "parentRuleCode": "AD.4.2", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.4.2.3", + "ruleContent": "Onsite registration must be completed before the vehicle may be unloaded, uncrated or worked upon in any manner.", + "parentRuleCode": "AD.4.2", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.5", + "ruleContent": "TEAM ADVISORS AND OFFICERS", + "parentRuleCode": "AD", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.1", + "ruleContent": "Faculty Advisor", + "parentRuleCode": "AD.5", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.1.1", + "ruleContent": "Each team must have a Faculty Advisor appointed by their university.", + "parentRuleCode": "AD.5.1", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.1.2", + "ruleContent": "The Faculty Advisor should accompany the team to the competition and will be considered by the officials to be the official university representative.", + "parentRuleCode": "AD.5.1", + "pageNumber": "12", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.1.3", + "ruleContent": "Faculty Advisors: a. May advise their teams on general engineering and engineering project management theory b. Must not design, build or repair any part of the vehicle c. Must not develop any documentation or presentation", + "parentRuleCode": "AD.5.1", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.2", + "ruleContent": "Electrical System Officer (EV Only) The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle during the event", + "parentRuleCode": "AD.5", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.2.1", + "ruleContent": "Each participating team must appoint one or more ESO for the event", + "parentRuleCode": "AD.5.2", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.2.2", + "ruleContent": "The ESO must be: a. A valid team member, see AD.3 Individual Participation Requirements b. One or more ESO must not be a driver c. Certified or has received appropriate practical training whether formal or informal for working with High Voltage systems in automotive vehicles Give details of the training on the ESO/ESA form", + "parentRuleCode": "AD.5.2", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.2.3", + "ruleContent": "Duties of the ESO - see EV.11.1.1", + "parentRuleCode": "AD.5.2", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.3", + "ruleContent": "Electric System Advisor (EV Only)", + "parentRuleCode": "AD.5", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.3.1", + "ruleContent": "The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated by the team who can advise on the electrical and control systems that will be integrated into the vehicle. The faculty advisor may also be the ESA if all the requirements below are met.", + "parentRuleCode": "AD.5.3", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.3.2", + "ruleContent": "The ESA must supply details of their experience of electrical and/or control systems engineering as used in the vehicle on the ESO/ESA form", + "parentRuleCode": "AD.5.3", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.3.3", + "ruleContent": "The ESA must be sufficiently qualified to advise the team on their proposed electrical and control system designs based on significant experience of the technology being developed and its implementation into vehicles or other safety critical systems. More than one person may be needed.", + "parentRuleCode": "AD.5.3", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.3.4", + "ruleContent": "The ESA must advise the team on the merits of any relevant engineering solutions. Solutions should be discussed, questioned and approved before they are implemented into the final vehicle design.", + "parentRuleCode": "AD.5.3", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.3.5", + "ruleContent": "The ESA should advise the students on any required training to work with the systems on the vehicle.", + "parentRuleCode": "AD.5.3", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.3.6", + "ruleContent": "The ESA must review the Electrical System Form and to confirm that in principle the vehicle has been designed using good engineering practices.", + "parentRuleCode": "AD.5.3", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.5.3.7", + "ruleContent": "The ESA must make sure that the team communicates any unusual aspects of the design to reduce the risk of exclusion or significant changes being required to pass Technical Inspection.", + "parentRuleCode": "AD.5.3", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.6", + "ruleContent": "COMPETITION REGISTRATION", + "parentRuleCode": "AD", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.1", + "ruleContent": "General Information", + "parentRuleCode": "AD.6", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.1.1", + "ruleContent": "Registration for Formula SAE competitions must be completed on the Event Website.", + "parentRuleCode": "AD.6.1", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.1.2", + "ruleContent": "Refer to the individual competition websites for registration requirements for other competitions", + "parentRuleCode": "AD.6.1", + "pageNumber": "13", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.2", + "ruleContent": "Registration Details", + "parentRuleCode": "AD.6", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.2.1", + "ruleContent": "Refer to the Event Website for specific registration requirements and details. • Registration limits and Waitlist limits will be posted on the Event Website. • Registration will open at the date and time posted on the Event Website. • Registration(s) may have limitations", + "parentRuleCode": "AD.6.2", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.2.2", + "ruleContent": "Once a competition reaches the registration limit, a Waitlist will open.", + "parentRuleCode": "AD.6.2", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.2.3", + "ruleContent": "Beginning on the date and time posted on the Event Website, any remaining slots will be available to any team on a first come, first serve basis.", + "parentRuleCode": "AD.6.2", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.2.4", + "ruleContent": "Registration and the Waitlist will close at the date and time posted on the Event Website or when all available slots have been taken, whichever occurs first.", + "parentRuleCode": "AD.6.2", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.3", + "ruleContent": "Registration Fees", + "parentRuleCode": "AD.6", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.3.1", + "ruleContent": "Registration fees must be paid by the deadline specified on the respective competition website", + "parentRuleCode": "AD.6.3", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.3.2", + "ruleContent": "Registration fees are not refundable and not transferrable to any other competition.", + "parentRuleCode": "AD.6.3", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.4", + "ruleContent": "Waitlist", + "parentRuleCode": "AD.6", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.4.1", + "ruleContent": "Waitlisted teams must submit all documents by the same deadlines as registered teams to remain on the Waitlist.", + "parentRuleCode": "AD.6.4", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.4.2", + "ruleContent": "Once a team withdraws from the competition, the organizer will inform the next team on the Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the registered list has opened.", + "parentRuleCode": "AD.6.4", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.4.3", + "ruleContent": "The team will then have 24 hours to accept or reject the position and an additional 24 hours to have the registration payment completed or in process.", + "parentRuleCode": "AD.6.4", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.6.5", + "ruleContent": "Withdrawals Registered teams that will not attend the competition must inform SAE International or the organizer, as posted on the Event Website", + "parentRuleCode": "AD.6", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.7", + "ruleContent": "COMPETITION SITE", + "parentRuleCode": "AD", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.7.1", + "ruleContent": "Personal Vehicles Personal cars and trailers must be parked in designated areas only. Only authorized vehicles will be allowed in the track areas.", + "parentRuleCode": "AD.7", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.7.2", + "ruleContent": "Motorcycles, Bicycles, Rollerblades, etc. - Prohibited The use of motorcycles, quads, bicycles, scooters, skateboards, rollerblades or similar person- carrying devices by team members and spectators in any part of the competition area, including the paddocks, is prohibited.", + "parentRuleCode": "AD.7", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.7.3", + "ruleContent": "Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited.", + "parentRuleCode": "AD.7", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.7.4", + "ruleContent": "Trash Cleanup", + "parentRuleCode": "AD.7", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.7.4.1", + "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. • The team’s work area should be kept uncluttered • At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock", + "parentRuleCode": "AD.7.4", + "pageNumber": "14", + "isFromTOC": false + }, + { + "ruleCode": "AD.7.4.2", + "ruleContent": "Teams must remove all of their material and trash when leaving the site at the end of the competition.", + "parentRuleCode": "AD.7.4", + "pageNumber": "15", + "isFromTOC": false + }, + { + "ruleCode": "AD.7.4.3", + "ruleContent": "Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs.", + "parentRuleCode": "AD.7.4", + "pageNumber": "15", + "isFromTOC": false + }, + { + "ruleCode": "DR", + "ruleContent": "DOCUMENT REQUIREMENTS", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1", + "ruleContent": "DOCUMENTATION", + "parentRuleCode": "DR", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.1", + "ruleContent": "Requirements", + "parentRuleCode": "DR.1", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.1.1", + "ruleContent": "The documents supporting each vehicle must be submitted before the deadlines posted on the Event Website or otherwise published by the organizer.", + "parentRuleCode": "DR.1.1", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.1.2", + "ruleContent": "The procedures for submitting documents are published on the Event Website or otherwise identified by the organizer.", + "parentRuleCode": "DR.1.1", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2", + "ruleContent": "Definitions", + "parentRuleCode": "DR.1", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2.1", + "ruleContent": "Submission Date The date and time of upload to the website", + "parentRuleCode": "DR.1.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2.2", + "ruleContent": "Submission Deadline The date and time by which the document must be uploaded or submitted", + "parentRuleCode": "DR.1.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2.3", + "ruleContent": "No Submissions Accepted After The last date and time that documents may be uploaded or submitted", + "parentRuleCode": "DR.1.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2.4", + "ruleContent": "Late Submission • Uploaded after the Submission Deadline and prior to No Submissions Accepted After • Submitted largely incomplete prior to or after the Submission Deadline", + "parentRuleCode": "DR.1.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2.5", + "ruleContent": "Not Submitted • Not uploaded prior to No Submissions Accepted After • Not in the specified form or format", + "parentRuleCode": "DR.1.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2.6", + "ruleContent": "Amount Late The number of days between the Submission Deadline and the Submission Date. Any partial day is rounded up to a full day. Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late would be two days penalty", + "parentRuleCode": "DR.1.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2.7", + "ruleContent": "Grounds for Removal A designated document that if Not Submitted may cause Removal of Team Entry", + "parentRuleCode": "DR.1.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.1.2.8", + "ruleContent": "Reviewer A designated event official who is assigned to review and accept a Submission", + "parentRuleCode": "DR.1.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.2", + "ruleContent": "SUBMISSION DETAILS", + "parentRuleCode": "DR", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.2.1", + "ruleContent": "Submission Location Teams entering Formula SAE competitions in North America must upload the required documents to the team account on the FSAE Online Website, see AD.2.2", + "parentRuleCode": "DR.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.2.2", + "ruleContent": "Submission Format Requirements Refer to Table DR-1 Submission Information", + "parentRuleCode": "DR.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.2.2.1", + "ruleContent": "Template files with the required format must be used when specified in Table DR-1", + "parentRuleCode": "DR.2.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.2.2.2", + "ruleContent": "Template files are available on the FSAE Online Website, see AD.2.2.1", + "parentRuleCode": "DR.2.2", + "pageNumber": "16", + "isFromTOC": false + }, + { + "ruleCode": "DR.2.2.3", + "ruleContent": "Do Not alter the format of any provided template files", + "parentRuleCode": "DR.2.2", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.2.2.4", + "ruleContent": "Each submission must be one single file in the specified format (PDF - Portable Document File, XLSX - Microsoft Excel Worksheet File)", + "parentRuleCode": "DR.2.2", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3", + "ruleContent": "SUBMISSION PENALTIES", + "parentRuleCode": "DR", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.1", + "ruleContent": "Submissions", + "parentRuleCode": "DR.3", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.1.1", + "ruleContent": "Each team is responsible for confirming that their documents have been properly uploaded or submitted and that the deadlines have been met", + "parentRuleCode": "DR.3.1", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.1.2", + "ruleContent": "Prior to the Submission Deadline: a. Documents may be uploaded at any time b. Uploads may be replaced with new uploads without penalty", + "parentRuleCode": "DR.3.1", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.1.3", + "ruleContent": "If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline for the revised document may apply", + "parentRuleCode": "DR.3.1", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.1.4", + "ruleContent": "Teams will not be notified if a document is submitted incorrectly", + "parentRuleCode": "DR.3.1", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.2", + "ruleContent": "Penalty Detail", + "parentRuleCode": "DR.3", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.2.1", + "ruleContent": "Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion.", + "parentRuleCode": "DR.3.2", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.2.2", + "ruleContent": "Additional penalties will apply if Not Submitted, subject to official discretion", + "parentRuleCode": "DR.3.2", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.2.3", + "ruleContent": "Penalties up to and including Removal of Team Entry may apply based on document reviews, subject to official discretion", + "parentRuleCode": "DR.3.2", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.3", + "ruleContent": "Removal of Team Entry", + "parentRuleCode": "DR.3", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.3.1", + "ruleContent": "The organizer may remove the team entry when a: a. Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. Removals will occur after each Document Submission deadline b. Team does not respond to Reviewer requests or organizer communications", + "parentRuleCode": "DR.3.3", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.3.2", + "ruleContent": "When a team entry will be removed: a. The team will be notified prior to cancelling registration b. No refund of entry fees will be given", + "parentRuleCode": "DR.3.3", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.4", + "ruleContent": "Specific Penalties", + "parentRuleCode": "DR.3", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.4.1", + "ruleContent": "Electronic Throttle Control (ETC) (IC Only) a. There is no point penalty for ETC documents b. The team will not be allowed to run ETC on their vehicle and must use mechanical throttle operation when: • The ETC Notice of Intent is Not Submitted • The ETC Systems Form is Not Submitted, or is not accepted", + "parentRuleCode": "DR.3.4", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.4.2", + "ruleContent": "Fuel Type IC.5.1 There is no point penalty for a late fuel type order. Once the deadline has passed, the team will be allocated the basic fuel type.", + "parentRuleCode": "DR.3.4", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "DR.3.4.3", + "ruleContent": "Program Submissions Please submit material requested for the Event Program by the published deadlines Table DR-1 Submission Information Submission Refer to: Required Format: Submit in File Format: Penalty Group Structural Equivalency Spreadsheet (SES) as applicable to your design", + "parentRuleCode": "DR.3.4", + "pageNumber": "17", + "isFromTOC": false + }, + { + "ruleCode": "F.2.1", + "ruleContent": "see below XLSX Tech ETC - Notice of Intent IC.4.3 see below PDF ETC ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC EV – Electrical Systems Officer and Electrical Systems Advisor Form AD.5.2, AD.5.3 see below PDF Tech EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other Cost Report S.3.4 see S.3.4.2 (1) Other Cost Addendum S.3.7 see below see S.3.7 none Design Briefing S.4.3 see below PDF Other Vehicle Drawings S.4.4 see S.4.4.1 PDF Other Design Spec Sheet S.4.5 see below XLSX Other Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 Note (1): Refer to the FSAE Online website for submission requirements Table DR-2 Submission Penalty Information Penalty Group Penalty Points per 24 Hours Not Submitted after the Deadline ETC none Not Approved to use ETC - see DR.3.4.1 Tech -20 Grounds for Removal - see DR.3.3 Other -10 Removed from Cost/Design/Presentation Event and Score 0 points – see DR.3.2.2", + "parentRuleCode": "F.2", + "pageNumber": "18", + "isFromTOC": false + }, + { + "ruleCode": "V", + "ruleContent": "VEHICLE REQUIREMENTS", + "pageNumber": "19", + "isFromTOC": false + }, + { + "ruleCode": "V.1", + "ruleContent": "CONFIGURATION The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels that are not in a straight line.", + "parentRuleCode": "V", + "pageNumber": "19", + "isFromTOC": false + }, + { + "ruleCode": "V.1.1", + "ruleContent": "Open Wheel Open Wheel vehicles must satisfy all of these criteria: a. The top 180° of the wheels/tires must be unobstructed when viewed from vertically above the wheel. b. The wheels/tires must be unobstructed when viewed from the side. c. No part of the vehicle may enter a keep out zone defined by two lines extending vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the front and rear tires in the side view elevation of the vehicle, with tires steered straight ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire to the inboard plane of the wheel/tire.", + "parentRuleCode": "V.1", + "pageNumber": "19", + "isFromTOC": false + }, + { + "ruleCode": "V.1.2", + "ruleContent": "Wheelbase The vehicle must have a minimum wheelbase of 1525 mm", + "parentRuleCode": "V.1", + "pageNumber": "19", + "isFromTOC": false + }, + { + "ruleCode": "V.1.3", + "ruleContent": "Vehicle Track", + "parentRuleCode": "V.1", + "pageNumber": "19", + "isFromTOC": false + }, + { + "ruleCode": "V.1.3.1", + "ruleContent": "The track and center of gravity must combine to provide sufficient rollover stability. See IN.9.2", + "parentRuleCode": "V.1.3", + "pageNumber": "19", + "isFromTOC": false + }, + { + "ruleCode": "V.1.3.2", + "ruleContent": "The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track.", + "parentRuleCode": "V.1.3", + "pageNumber": "19", + "isFromTOC": false + }, + { + "ruleCode": "V.1.4", + "ruleContent": "Ground Clearance", + "parentRuleCode": "V.1", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.1.4.1", + "ruleContent": "Ground clearance must be sufficient to prevent any portion of the vehicle except the tires from touching the ground during dynamic events", + "parentRuleCode": "V.1.4", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.1.4.2", + "ruleContent": "The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less. a. There must be an opening for measuring the ride height at that point without removing aerodynamic devices", + "parentRuleCode": "V.1.4", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.1.4.3", + "ruleContent": "Intentional or excessive ground contact of any portion of the vehicle other than the tires will forfeit a run or an entire dynamic event The intent is that sliding skirts or other devices that by design, fabrication or as a consequence of moving, contact the track surface are prohibited and any unintended contact with the ground which causes damage, or in the opinion of the Dynamic Event Officials could result in damage to the track, will result in forfeit of a run or an entire dynamic event", + "parentRuleCode": "V.1.4", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.2", + "ruleContent": "DRIVER", + "parentRuleCode": "V", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.2.1", + "ruleContent": "Accommodation", + "parentRuleCode": "V.2", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.2.1.1", + "ruleContent": "The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female up to 95th percentile male. • Accommodation includes driver position, driver controls, and driver equipment • Anthropometric data may be found on the FSAE Online Website", + "parentRuleCode": "V.2.1", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.2.1.2", + "ruleContent": "The driver’s head and hands must not contact the ground in any rollover attitude", + "parentRuleCode": "V.2.1", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.2.2", + "ruleContent": "Visibility a. The driver must have sufficient visibility to the front and sides of the vehicle b. When seated in a normal driving position, the driver must have a minimum field of vision of 100° to the left and the right sides c. If mirrors are required for this rule, they must remain in position and adjusted to enable the required visibility throughout all Dynamic Events", + "parentRuleCode": "V.2", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.3", + "ruleContent": "SUSPENSION AND STEERING", + "parentRuleCode": "V", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.3.1", + "ruleContent": "Suspension", + "parentRuleCode": "V.3", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.3.1.1", + "ruleContent": "The vehicle must have a fully operational suspension system with shock absorbers, front and rear, with usable minimum wheel travel of 50 mm, with a driver seated.", + "parentRuleCode": "V.3.1", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.3.1.2", + "ruleContent": "Officials may disqualify vehicles which do not represent a serious attempt at an operational suspension system, or which demonstrate handling inappropriate for an autocross circuit.", + "parentRuleCode": "V.3.1", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.3.1.3", + "ruleContent": "All suspension mounting points must be visible at Technical Inspection by direct view or by removing any covers.", + "parentRuleCode": "V.3.1", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.3.1.4", + "ruleContent": "Fasteners in the Suspension system are Critical Fasteners, see T.8.2", + "parentRuleCode": "V.3.1", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.3.1.5", + "ruleContent": "All spherical rod ends and spherical bearings on the suspension and steering must be one of: • Mounted in double shear • Captured by having a screw/bolt head or washer with an outside diameter that is larger than spherical bearing housing inside diameter.", + "parentRuleCode": "V.3.1", + "pageNumber": "20", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2", + "ruleContent": "Steering", + "parentRuleCode": "V.3", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.1", + "ruleContent": "The Steering Wheel must be mechanically connected to the front wheels", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.2", + "ruleContent": "Electrically operated steering of the front wheels is prohibited", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.3", + "ruleContent": "Steering systems must use a rigid mechanical linkage capable of tension and compression loads for operation", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.4", + "ruleContent": "The steering system must have positive steering stops that prevent the steering linkages from locking up (the inversion of a four bar linkage at one of the pivots). The stops: a. Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis during the track events b. May be put on the uprights or on the rack", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.5", + "ruleContent": "Allowable steering system free play is limited to seven degrees (7°) total measured at the steering wheel.", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.6", + "ruleContent": "The steering rack must be mechanically attached to the Chassis F.5.14", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.7", + "ruleContent": "Joints between all components attaching the Steering Wheel to the steering rack must be mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup are not permitted.", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.8", + "ruleContent": "Fasteners in the steering system are Critical Fasteners, see T.8.2", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.9", + "ruleContent": "Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.2.10", + "ruleContent": "Rear wheel steering may be used. a. Rear wheel steering must incorporate mechanical stops to limit the range of angular movement of the rear wheels to a maximum of six degrees (6°) b. The team must provide the ability for the steering angle range to be verified at Technical Inspection with a driver in the vehicle c. Rear wheel steering may be electrically operated", + "parentRuleCode": "V.3.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.3", + "ruleContent": "Steering Wheel", + "parentRuleCode": "V.3", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.3.1", + "ruleContent": "In any angular position, the Steering Wheel must meet T.1.4.4", + "parentRuleCode": "V.3.3", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.3.2", + "ruleContent": "The Steering Wheel must be attached to the column with a quick disconnect.", + "parentRuleCode": "V.3.3", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.3.3", + "ruleContent": "The driver must be able to operate the quick disconnect while in the normal driving position with gloves on.", + "parentRuleCode": "V.3.3", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.3.3.4", + "ruleContent": "The Steering Wheel must have a continuous perimeter that is near circular or near oval. The outer perimeter profile may have some straight sections, but no concave sections. “H”, “Figure 8”, or cutout wheels are not allowed.", + "parentRuleCode": "V.3.3", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.4", + "ruleContent": "WHEELS AND TIRES", + "parentRuleCode": "V", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.4.1", + "ruleContent": "Wheel Size Wheels must be 203.2 mm (8.0 inches) or more in diameter.", + "parentRuleCode": "V.4", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.4.2", + "ruleContent": "Wheel Attachment", + "parentRuleCode": "V.4", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.4.2.1", + "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel if the nut loosens. A second nut (jam nut) does not meet this requirement", + "parentRuleCode": "V.4.2", + "pageNumber": "21", + "isFromTOC": false + }, + { + "ruleCode": "V.4.2.2", + "ruleContent": "Teams using modified lug bolts or custom designs must provide proof that Good Engineering Practices have been followed in their design.", + "parentRuleCode": "V.4.2", + "pageNumber": "22", + "isFromTOC": false + }, + { + "ruleCode": "V.4.2.3", + "ruleContent": "If used, aluminum wheel nuts must be hard anodized and in pristine condition.", + "parentRuleCode": "V.4.2", + "pageNumber": "22", + "isFromTOC": false + }, + { + "ruleCode": "V.4.3", + "ruleContent": "Tires Vehicles may have two types of tires, Dry and Wet", + "parentRuleCode": "V.4", + "pageNumber": "22", + "isFromTOC": false + }, + { + "ruleCode": "V.4.3.1", + "ruleContent": "Dry Tires a. The tires on the vehicle when it is presented for Technical Inspection. b. May be any size or type, slicks or treaded.", + "parentRuleCode": "V.4.3", + "pageNumber": "22", + "isFromTOC": false + }, + { + "ruleCode": "V.4.3.2", + "ruleContent": "Wet Tires Any size or type of treaded or grooved tire where: • The tread pattern or grooves were molded in by the tire manufacturer, or were cut by the tire manufacturer or appointed agent. Any grooves that have been cut must have documented proof that this rule was met • There is a minimum tread depth of 2.4 mm", + "parentRuleCode": "V.4.3", + "pageNumber": "22", + "isFromTOC": false + }, + { + "ruleCode": "V.4.3.3", + "ruleContent": "Tire Set a. All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be identical. b. Once each tire set has been presented for Technical Inspection, any tire compound or size, or wheel type or size must not be changed.", + "parentRuleCode": "V.4.3", + "pageNumber": "22", + "isFromTOC": false + }, + { + "ruleCode": "V.4.3.4", + "ruleContent": "Tire Pressure a. Tire Pressure must be in the range allowed by the manufacturer at all times. b. Tire Pressure may be inspected at any time", + "parentRuleCode": "V.4.3", + "pageNumber": "22", + "isFromTOC": false + }, + { + "ruleCode": "V.4.3.5", + "ruleContent": "Requirements for All Tires a. Teams must not do any hand cutting, grooving or modification of the tires. b. Tire warmers are not allowed. c. No traction enhancers may be applied to the tires at any time onsite at the competition.", + "parentRuleCode": "V.4.3", + "pageNumber": "22", + "isFromTOC": false + }, + { + "ruleCode": "F", + "ruleContent": "CHASSIS AND STRUCTURAL", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1", + "ruleContent": "DEFINITIONS", + "parentRuleCode": "F", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.1", + "ruleContent": "Chassis The fabricated structural assembly that supports all functional vehicle systems. This assembly may be a single fabricated structure, multiple fabricated structures or a combination of composite and welded structures.", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.2", + "ruleContent": "Frame Member A minimum representative single piece of uncut, continuous tubing.", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.3", + "ruleContent": "Monocoque A type of Chassis where loads are supported by the external panels", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.4", + "ruleContent": "Main Hoop A roll bar located alongside or immediately aft of the driver’s torso.", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.5", + "ruleContent": "Front Hoop A roll bar located above the driver’s legs, in proximity to the steering wheel.", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.6", + "ruleContent": "Roll Hoop(s) Referring to the Front Hoop AND the Main Hoop", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.7", + "ruleContent": "Roll Hoop Bracing Supports The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s).", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.8", + "ruleContent": "Front Bulkhead A planar structure that provides protection for the driver’s feet.", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.9", + "ruleContent": "Impact Attenuator A deformable, energy absorbing device located forward of the Front Bulkhead.", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.10", + "ruleContent": "Primary Structure The combination of these components: • Front Bulkhead and Front Bulkhead Support • Front Hoop, Main Hoop, Roll Hoop Braces and Supports • Side Impact Structure • (EV Only) Tractive System Protection and Rear Impact Protection • Any Frame Members, guides, or supports that transfer load from the Driver Restraint System", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.11", + "ruleContent": "Primary Structure Envelope A volume enclosed by multiple tangent planes, each of which follows the exact outline of the Primary Structure Frame Members", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.12", + "ruleContent": "Major Structure The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of the Upper Side Impact Member or top of the Side Impact Zone.", + "parentRuleCode": "F.1", + "pageNumber": "23", + "isFromTOC": false + }, + { + "ruleCode": "F.1.13", + "ruleContent": "Rollover Protection Envelope The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * If there are no Triangulated Structural members aft of the Main Hoop, the Rollover Protection Envelope ends at the rear plane of the Main Hoop", + "parentRuleCode": "F.1", + "pageNumber": "24", + "isFromTOC": false + }, + { + "ruleCode": "F.1.14", + "ruleContent": "Tire Surface Envelope The volume enclosed by tangent lines between the Main Hoop and the outside edge of each of the four tires.", + "parentRuleCode": "F.1", + "pageNumber": "24", + "isFromTOC": false + }, + { + "ruleCode": "F.1.15", + "ruleContent": "Component Envelope The area that is inside a plane from the top of the Main Hoop to the top of the Front Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * see note in step F.1.13 above", + "parentRuleCode": "F.1", + "pageNumber": "24", + "isFromTOC": false + }, + { + "ruleCode": "F.1.16", + "ruleContent": "Buckling Modulus (EI) Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the weakest axis", + "parentRuleCode": "F.1", + "pageNumber": "24", + "isFromTOC": false + }, + { + "ruleCode": "F.1.17", + "ruleContent": "Triangulation An arrangement of Frame Members where all members and segments of members between bends or nodes with Structural tubes form a structure composed entirely of triangles. a. This is generally required between an upper member and a lower member, each may have multiple segments requiring a diagonal to form multiple triangles. b. This is also what is meant by “properly triangulated”", + "parentRuleCode": "F.1", + "pageNumber": "24", + "isFromTOC": false + }, + { + "ruleCode": "F.1.18", + "ruleContent": "Nonflammable Material Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent", + "parentRuleCode": "F.1", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2", + "ruleContent": "DOCUMENTATION", + "parentRuleCode": "F", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.1", + "ruleContent": "Structural Equivalency Spreadsheet - SES", + "parentRuleCode": "F.2", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.1.1", + "ruleContent": "The SES is a supplement to the Formula SAE Rules and may provide guidance or further details in addition to those of the Formula SAE Rules.", + "parentRuleCode": "F.2.1", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.1.2", + "ruleContent": "The SES provides the means to: a. Document the Primary Structure and show compliance with the Formula SAE Rules b. Determine Equivalence to Formula SAE Rules using an accepted basis", + "parentRuleCode": "F.2.1", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.2", + "ruleContent": "Structural Documentation", + "parentRuleCode": "F.2", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.2.1", + "ruleContent": "All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR - Document Requirements", + "parentRuleCode": "F.2.2", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.3", + "ruleContent": "Equivalence", + "parentRuleCode": "F.2", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.3.1", + "ruleContent": "Equivalency in the structural context is determined and documented with the methods in the SES", + "parentRuleCode": "F.2.3", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.3.2", + "ruleContent": "Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same application", + "parentRuleCode": "F.2.3", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.3.3", + "ruleContent": "The properties of tubes and laminates may be combined to prove Equivalence. For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate panel, the panel only needs to be Equivalent to two Side Impact Tubes.", + "parentRuleCode": "F.2.3", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.4", + "ruleContent": "Tolerance Tolerance on dimensions given in the rules is allowed and is addressed in the SES.", + "parentRuleCode": "F.2", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.2.5", + "ruleContent": "Fabrication Vehicles must be fabricated in accordance with the design, materials, and processes described in the SES.", + "parentRuleCode": "F.2", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.3", + "ruleContent": "TUBING AND MATERIAL", + "parentRuleCode": "F", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.3.1", + "ruleContent": "Dimensions Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for commonly available tubing.", + "parentRuleCode": "F.3", + "pageNumber": "25", + "isFromTOC": false + }, + { + "ruleCode": "F.3.2", + "ruleContent": "Tubing Requirements", + "parentRuleCode": "F.3", + "pageNumber": "26", + "isFromTOC": false + }, + { + "ruleCode": "F.3.2.1", + "ruleContent": "Requirements by Application Application Steel Tube Must Meet Size per F.3.4: Alternative Tubing Material Permitted per F.3.5 ? a. Front Bulkhead Size B Yes b. Front Bulkhead Support Size C Yes c. Front Hoop Size A Yes d. Front Hoop Bracing Size B Yes e. Side Impact Structure Size B Yes f. Bent / Multi Upper Side Impact Member Size D Yes g. Main Hoop Size A NO h. Main Hoop Bracing Size B NO i. Main Hoop Bracing Supports Size C Yes j. Driver Restraint Harness Attachment Size B Yes k. Shoulder Harness Mounting Bar Size A NO l. Shoulder Harness Mounting Bar Bracing Size C Yes m. Accumulator Mounting and Protection Size B Yes n. Component Protection Size C Yes o. Structural Tubing Size C Yes", + "parentRuleCode": "F.3.2", + "pageNumber": "26", + "isFromTOC": false + }, + { + "ruleCode": "F.3.3", + "ruleContent": "Non Structural Tubing", + "parentRuleCode": "F.3", + "pageNumber": "26", + "isFromTOC": false + }, + { + "ruleCode": "F.3.3.1", + "ruleContent": "Definition Any tubing which does NOT meet F.3.2.1.o Structural Tubing", + "parentRuleCode": "F.3.3", + "pageNumber": "26", + "isFromTOC": false + }, + { + "ruleCode": "F.3.3.2", + "ruleContent": "Applicability Non Structural Tubing is ignored when assessing compliance to any rule", + "parentRuleCode": "F.3.3", + "pageNumber": "26", + "isFromTOC": false + }, + { + "ruleCode": "F.3.4", + "ruleContent": "Steel Tubing and Material", + "parentRuleCode": "F.3", + "pageNumber": "26", + "isFromTOC": false + }, + { + "ruleCode": "F.3.4.1", + "ruleContent": "Minimum Requirements for Steel Tubing A tube must have all four minimum requirements for each Size specified: Tube Minimum Area Moment of Inertia Minimum Cross Sectional Area Minimum Outside Diameter or Square Width Minimum Wall Thickness Example Sizes of Round Tube a. Size A 11320 mm 173 mm 25.0 mm 2.0 mm 1.0” x 0.095” 25 x 2.5 mm b. Size B 8509 mm 114 mm 25.0 mm 1.2 mm 1.0” x 0.065” 25.4 x 1.6 mm c. Size C 6695 mm 91 mm 25.0 mm 1.2 mm 1.0” x 0.049” 25.4 x 1.2 mm d. Size D 18015 mm 126 mm 35.0 mm 1.2 mm 1.375” x 0.049” 35 x 1.2 mm", + "parentRuleCode": "F.3.4", + "pageNumber": "26", + "isFromTOC": false + }, + { + "ruleCode": "F.3.4.2", + "ruleContent": "Properties for ANY steel material for calculations submitted in an SES must be: a. Non Welded Properties for continuous material calculations: Young’s Modulus (E) = 200 GPa (29,000 ksi) Yield Strength (Sy) = 305 MPa (44.2 ksi) Ultimate Strength (Su) = 365 MPa (52.9 ksi) b. Welded Properties for discontinuous material such as joint calculations: Yield Strength (Sy) = 180 MPa (26 ksi) Ultimate Strength (Su) = 300 MPa (43.5 ksi)", + "parentRuleCode": "F.3.4", + "pageNumber": "27", + "isFromTOC": false + }, + { + "ruleCode": "F.3.4.3", + "ruleContent": "Where Welded tubing reinforcements are required (such as inserts for bolt holes or material to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be shown to the original Non Welded tube in the SES", + "parentRuleCode": "F.3.4", + "pageNumber": "27", + "isFromTOC": false + }, + { + "ruleCode": "F.3.5", + "ruleContent": "Alternative Tubing Materials", + "parentRuleCode": "F.3", + "pageNumber": "27", + "isFromTOC": false + }, + { + "ruleCode": "F.3.5.1", + "ruleContent": "Alternative Materials may be used for applications shown as permitted in F.3.2.1", + "parentRuleCode": "F.3.5", + "pageNumber": "27", + "isFromTOC": false + }, + { + "ruleCode": "F.3.5.2", + "ruleContent": "If any Alternative Materials are used, the SES must contain: a. Documentation of material type, (purchase receipt, shipping document or letter of donation) and the material properties. b. Calculations that show equivalent to or better than the minimum requirements for steel tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for buckling modulus and for energy dissipation c. Details of the manufacturing technique and process", + "parentRuleCode": "F.3.5", + "pageNumber": "27", + "isFromTOC": false + }, + { + "ruleCode": "F.3.5.3", + "ruleContent": "Aluminum Tubing a. Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm Welded 3.0 mm b. Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Young’s Modulus (E) 69 GPa (10,000 ksi) Yield Strength (Sy) 240 MPa (34.8 ksi) Ultimate Strength (Su) 290 MPa (42.1 ksi) c. Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Yield Strength (Sy) 115 MPa (16.7 ksi) Ultimate Strength (Su) 175 MPa (25.4 ksi) d. If welding is used on a regulated aluminum structure, the equivalent yield strength must be considered in the “as welded” condition for the alloy used unless the team provides detailed proof that the frame or component has been properly solution heat treated, artificially aged, and not subject to heating during team manufacturing. e. If aluminum was solution heat treated and age hardened to increase its strength after welding, the team must supply evidence of the process. This includes, but is not limited to, the heat treating facility used, the process applied, and the fixturing used.", + "parentRuleCode": "F.3.5", + "pageNumber": "27", + "isFromTOC": false + }, + { + "ruleCode": "F.4", + "ruleContent": "COMPOSITE AND OTHER MATERIALS", + "parentRuleCode": "F", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.1", + "ruleContent": "Requirements If any composite or other material is used, the SES must contain:", + "parentRuleCode": "F.4", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.1.1", + "ruleContent": "Documentation of material type, (purchase receipt, shipping document or letter of donation) and the material properties.", + "parentRuleCode": "F.4.1", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.1.2", + "ruleContent": "Details of the manufacturing technique and/or composite layup technique as well as the structural material used (examples - cloth type, weight, and resin type, number of layers, core material, and skin material if metal).", + "parentRuleCode": "F.4.1", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.1.3", + "ruleContent": "Calculations that show equivalence of the structure to one of similar geometry made to meet the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, buckling, and tension.", + "parentRuleCode": "F.4.1", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.1.4", + "ruleContent": "Construction dates of the test panel(s) and monocoque, and approximate age(s) of the materials used.", + "parentRuleCode": "F.4.1", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.2", + "ruleContent": "Laminate and Material Testing", + "parentRuleCode": "F.4", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.2.1", + "ruleContent": "Testing Requirements a. Any tested samples must be engraved with the full date of construction and sample name b. The same set of test results must not be used for different monocoques in different years. The intent is for the test panel to use the same material batch, material age, material storage, and student layup quality as the monocoque.", + "parentRuleCode": "F.4.2", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.2.2", + "ruleContent": "Primary Structure Laminate Testing Teams must build new representative test panels for each ply schedule used in the regulated regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer to F.4.2.4 a. Test panels must: • Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm • Be supported by a span distance of 400 mm • Have equal surface area for the top and bottom skin • Have bare edges, without skin material b. The SES must include: • Data from the 3 point bending tests • Pictures of the test samples • A picture of the test sample and test setup showing a measurement documenting the supported span distance used in the SES c. Test panel results must be used to derive stiffness, yield strength, ultimate strength and absorbed energy properties by the SES formula and limits for the purpose of calculating laminate panels equivalency corresponding to Primary Structure regions of the chassis. d. Test panels must use the thickest core associated with each skin layup Designs may use core thickness that is 50% - 100% of the test panel core thickness associated with each skin layup e. Calculation of derived properties must use the part of test data where deflection is 50 mm or less f. Calculation of absorbed energy must use the integral of force times displacement", + "parentRuleCode": "F.4.2", + "pageNumber": "28", + "isFromTOC": false + }, + { + "ruleCode": "F.4.2.3", + "ruleContent": "Comparison Test Teams must make an equivalent test that will determine any compliance in the test rig and establish an absorbed energy value of the baseline tubes. a. The comparison test must use two Side Impact steel tubes (F.3.2.1.e) b. The steel tubes must be tested to a minimum displacement of 19.0 mm c. The calculation of absorbed energy must use the integral of force times displacement from the initiation of load to a displacement of 19.0 mm", + "parentRuleCode": "F.4.2", + "pageNumber": "29", + "isFromTOC": false + }, + { + "ruleCode": "F.4.2.4", + "ruleContent": "Test Conduct a. The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture b. The load applicator used to test any panel/tubes as required in this section F.4.2 must be: • Metallic • Radius 50 mm c. The load applicator must overhang the test piece to prevent edge loading d. Any other material must not be put between the load applicator and the items on test", + "parentRuleCode": "F.4.2", + "pageNumber": "29", + "isFromTOC": false + }, + { + "ruleCode": "F.4.2.5", + "ruleContent": "Perimeter Shear Test a. The Perimeter Shear Test must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample. b. The sample must: • Measure 100 mm x 100 mm minimum • Have core and skin thicknesses identical to those used in the actual application • Be manufactured using the same materials and processes c. The fixture must support the entire sample, except for a 32 mm hole aligned coaxially with the punch. d. The sample must not be clamped to the fixture e. The edge of the punch and hole in the fixture may include an optional fillet up to a maximum radius of 1 mm. f. The SES must include force and displacement data and photos of the test setup. g. The first peak in the load-deflection curve must be used to determine the skin shear strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5 h. The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5", + "parentRuleCode": "F.4.2", + "pageNumber": "29", + "isFromTOC": false + }, + { + "ruleCode": "F.4.2.6", + "ruleContent": "Lap Joint Test The Lap Joint Test measures the force required to pull apart a joint of two laminate samples that are bonded together a. A joint design with two perpendicular bond areas may show equivalence using the shear performance of the smaller of the two areas b. A joint design with a single bond area must have two separate pull tests with different orientations of the adhesive joint: • Parallel to the pull direction, with the adhesive joint in pure shear • T peel normal to the pull direction, with the adhesive joint in peel c. The samples used must: • Have skin thicknesses identical to those used in the actual monocoque • Be manufactured using the same materials and processes The intent is to perform a test of the actual bond overlap, and fail the skin before the bond d. The force and displacement data and photos of the test setup must be included in the SES. e. The shear strength * normal area of the bond must be more than the UTS * cross sectional area of the skin", + "parentRuleCode": "F.4.2", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.3", + "ruleContent": "Use of Laminates", + "parentRuleCode": "F.4", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.3.1", + "ruleContent": "Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the nearest plies to core material.", + "parentRuleCode": "F.4.3", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.3.2", + "ruleContent": "The monocoque must have the tested layup direction normal to the cross sections used for Equivalence in the SES, with allowance for taper of the monocoque normal to the cross section.", + "parentRuleCode": "F.4.3", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.3.3", + "ruleContent": "Results from the 3 point bending test will be assigned to the 0 layup direction.", + "parentRuleCode": "F.4.3", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.3.4", + "ruleContent": "All material properties in the directions designated by the SES must be 50% or more of those in the tested “0” direction as calculated by the SES", + "parentRuleCode": "F.4.3", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.4", + "ruleContent": "Equivalent Flat Panel Calculation", + "parentRuleCode": "F.4", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.4.1", + "ruleContent": "When specified, the Equivalence of the chassis must be calculated as a flat panel with the same composition as the chassis about the neutral axis of the laminate.", + "parentRuleCode": "F.4.4", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.4.2", + "ruleContent": "The curvature of the panel and geometric cross section of the chassis must be ignored for these calculations.", + "parentRuleCode": "F.4.4", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.4.4.3", + "ruleContent": "Calculations of Equivalence that do not reference this section F.4.3 may use the actual geometry of the chassis.", + "parentRuleCode": "F.4.4", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.5", + "ruleContent": "CHASSIS REQUIREMENTS This section applies to all Chassis, regardless of material or construction", + "parentRuleCode": "F", + "pageNumber": "30", + "isFromTOC": false + }, + { + "ruleCode": "F.5.1", + "ruleContent": "Primary Structure", + "parentRuleCode": "F.5", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.1.1", + "ruleContent": "The Primary Structure must be constructed from one or a combination of: • Steel Tubing and Material F.3.2 F.3.4 • Alternative Tubing Materials F.3.2 F.3.5 • Composite Material F.4", + "parentRuleCode": "F.5.1", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.1.2", + "ruleContent": "Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite types must: a. Meet all relevant requirements F.5.1.1 b. Show Equivalence F.2.3, as applicable c. Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent.", + "parentRuleCode": "F.5.1", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.2", + "ruleContent": "Bent Tubes or Multiple Tubes", + "parentRuleCode": "F.5", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.2.1", + "ruleContent": "The minimum radius of any bend, measured at the tube centerline, must be three or more times the tube outside diameter (3 x OD).", + "parentRuleCode": "F.5.2", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.2.2", + "ruleContent": "Bends must be smooth and continuous with no evidence of crimping or wall failure.", + "parentRuleCode": "F.5.2", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.2.3", + "ruleContent": "If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be attached to support it. a. The support tube attachment point must be at the position along the bent tube where it deviates farthest from a straight line connecting the two ends b. The support tube must terminate at a node of the chassis c. The support tube for any bent tube (other than the Upper Side Impact Member or Shoulder Harness Mounting Bar) must be: • The same diameter and thickness as the bent tube • Angled no more than 30° from the plane of the bent tube", + "parentRuleCode": "F.5.2", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.3", + "ruleContent": "Holes and Openings in Regulated Tubing", + "parentRuleCode": "F.5", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.3.1", + "ruleContent": "Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES.", + "parentRuleCode": "F.5.3", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.3.2", + "ruleContent": "Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic testing or by the drilling of inspection holes on request.", + "parentRuleCode": "F.5.3", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.3.3", + "ruleContent": "Regulated tubing other than the open lower ends of Roll Hoops must have any open ends closed by a welded cap or inserted metal plug.", + "parentRuleCode": "F.5.3", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.4", + "ruleContent": "Fasteners in Primary Structure", + "parentRuleCode": "F.5", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.4.1", + "ruleContent": "Bolted connections in the Primary Structure must use a removable bolt and nut. Bonded fasteners and blind nuts and bolts do not meet this requirement", + "parentRuleCode": "F.5.4", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.4.2", + "ruleContent": "Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2", + "parentRuleCode": "F.5.4", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.4.3", + "ruleContent": "Bolted connections in the Primary Structure using tabs or brackets must have an edge distance ratio “e/D” of 1.5 or higher “D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest free edge Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure”", + "parentRuleCode": "F.5.4", + "pageNumber": "31", + "isFromTOC": false + }, + { + "ruleCode": "F.5.5", + "ruleContent": "Bonding in Regulated Structure", + "parentRuleCode": "F.5", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.5.1", + "ruleContent": "Adhesive used and referenced bonding strength must be correct for the two substrate types", + "parentRuleCode": "F.5.5", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.5.2", + "ruleContent": "Document the adhesive choice, age and expiration date, substrate preparation, and the equivalency of the bonded joint in the SES", + "parentRuleCode": "F.5.5", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.5.3", + "ruleContent": "The SES will reduce any referenced or tested adhesive values by 50%", + "parentRuleCode": "F.5.5", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.6", + "ruleContent": "Roll Hoops", + "parentRuleCode": "F.5", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.6.1", + "ruleContent": "The Chassis must include a Main Hoop and a Front Hoop", + "parentRuleCode": "F.5.6", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.6.2", + "ruleContent": "The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with Structural Tubing", + "parentRuleCode": "F.5.6", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.6.3", + "ruleContent": "Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of the two: a. Triangulated at a side view node b. Less than 25 mm from an Attachment point F.7.8", + "parentRuleCode": "F.5.6", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.6.4", + "ruleContent": "Roll Hoop and Driver Position When seated normally and restrained by the Driver Restraint System, the helmet of a 95th percentile male (see V.2.1.1) and all of the team’s drivers must: a. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to the top of the Front Hoop. b. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to the lower end of the Main Hoop Bracing if the bracing extends rearwards. c. Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing extends forwards.", + "parentRuleCode": "F.5.6", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.6.5", + "ruleContent": "Driver Template A two dimensional template used to represent the 95th percentile male is made to these dimensions (see figure below): • A circle of diameter 200 mm will represent the hips and buttocks. • A circle of diameter 200 mm will represent the shoulder/cervical region. • A circle of diameter 300 mm will represent the head (with helmet). • A straight line measuring 490 mm will connect the centers of the two 200 mm circles. • A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle.", + "parentRuleCode": "F.5.6", + "pageNumber": "32", + "isFromTOC": false + }, + { + "ruleCode": "F.5.6.6", + "ruleContent": "Driver Template Position The Driver Template will be positioned as follows: • The seat will be adjusted to the rearmost position • The pedals will be put in the most forward position • The bottom 200 mm circle will be put on the seat bottom where the distance between the center of this circle and the rearmost face of the pedals is no less than 915 mm • The middle 200 mm circle, representing the shoulders, will be positioned on the seat back • The upper 300 mm circle will be positioned no more than 25 mm away from the head restraint (where the driver’s helmet would normally be located while driving)", + "parentRuleCode": "F.5.6", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.7", + "ruleContent": "Front Hoop", + "parentRuleCode": "F.5", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.7.1", + "ruleContent": "The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c", + "parentRuleCode": "F.5.7", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.7.2", + "ruleContent": "With proper Triangulation, the Front Hoop may be fabricated from more than one piece of tubing", + "parentRuleCode": "F.5.7", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.7.3", + "ruleContent": "The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down to the lowest Frame Member on the other side of the Frame.", + "parentRuleCode": "F.5.7", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.7.4", + "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position. See figure after F.5.9.6 below", + "parentRuleCode": "F.5.7", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.7.5", + "ruleContent": "The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance is measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight ahead position.", + "parentRuleCode": "F.5.7", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.7.6", + "ruleContent": "In side view, any part of the Front Hoop above the Upper Side Impact Structure must be inclined less than 20° from the vertical.", + "parentRuleCode": "F.5.7", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.7.7", + "ruleContent": "A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during Technical Inspection", + "parentRuleCode": "F.5.7", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.8", + "ruleContent": "Main Hoop", + "parentRuleCode": "F.5", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.8.1", + "ruleContent": "The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.g", + "parentRuleCode": "F.5.8", + "pageNumber": "33", + "isFromTOC": false + }, + { + "ruleCode": "F.5.8.2", + "ruleContent": "The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque on the other side of the Frame.", + "parentRuleCode": "F.5.8", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.8.3", + "ruleContent": "In the side view of the vehicle, a. The part of the Main Hoop that lies above its attachment point to the upper Side Impact Tube must be less than 10° from vertical. b. The part of the Main Hoop below the Upper Side Impact Member attachment: • May be forward at any angle • Must not be rearward more than 10° from vertical", + "parentRuleCode": "F.5.8", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.8.4", + "ruleContent": "In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom tubes of the Major Structure of the Chassis.", + "parentRuleCode": "F.5.8", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.9", + "ruleContent": "Main Hoop Braces", + "parentRuleCode": "F.5", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.9.1", + "ruleContent": "Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h", + "parentRuleCode": "F.5.9", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.9.2", + "ruleContent": "The Main Hoop must be supported by two Braces extending in the forward or rearward direction, one on each of the left and right sides of the Main Hoop.", + "parentRuleCode": "F.5.9", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.9.3", + "ruleContent": "In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the same side of the vertical line through the top of the Main Hoop. (If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, the Braces must be rearward of the Main Hoop)", + "parentRuleCode": "F.5.9", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.9.4", + "ruleContent": "The Main Hoop Braces must be attached 160 mm or less below the top most surface of the Main Hoop. The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop", + "parentRuleCode": "F.5.9", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.9.5", + "ruleContent": "The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more.", + "parentRuleCode": "F.5.9", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.9.6", + "ruleContent": "The Main Hoop Braces must be straight, without any bends.", + "parentRuleCode": "F.5.9", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.9.7", + "ruleContent": "The Main Hoop Braces must be: a. Securely integrated into the Frame b. Capable of transmitting all loads from the Main Hoop into the Major Structure of the Chassis without failing", + "parentRuleCode": "F.5.9", + "pageNumber": "34", + "isFromTOC": false + }, + { + "ruleCode": "F.5.10", + "ruleContent": "Head Restraint Protection An additional frame member may be added to meet T.2.8.3.b", + "parentRuleCode": "F.5", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.10.1", + "ruleContent": "If used, the Head Restraint Protection frame member must: a. Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop b. Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.h c. Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3)", + "parentRuleCode": "F.5.10", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.10.2", + "ruleContent": "The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection", + "parentRuleCode": "F.5.10", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.11", + "ruleContent": "External Items", + "parentRuleCode": "F.5", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.11.1", + "ruleContent": "Definition - items outside the exact outline of the part of the Primary Structure Envelope", + "parentRuleCode": "F.5.11", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.1.11", + "ruleContent": "defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other tube nodes or composite attachments", + "parentRuleCode": "F.1", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.11.2", + "ruleContent": "External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if the mount is one of the two: a. Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis b. Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will fail below the allowable load as calculated by the SES", + "parentRuleCode": "F.5.11", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.11.3", + "ruleContent": "If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above: a. Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service Disconnect, Master Switches or Shutdown Buttons b. Lightweight mounts for items inside the Main Hoop Braces", + "parentRuleCode": "F.5.11", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.11.4", + "ruleContent": "Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the Main Hoop Braces or Main Hoop above other tube nodes or composite attachments", + "parentRuleCode": "F.5.11", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.11.5", + "ruleContent": "Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must be longitudinally offset to avoid point loading in a rollover", + "parentRuleCode": "F.5.11", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.11.6", + "ruleContent": "External Items should not point at the driver", + "parentRuleCode": "F.5.11", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.12", + "ruleContent": "Mechanically Attached Roll Hoop Bracing", + "parentRuleCode": "F.5", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.12.1", + "ruleContent": "When Roll Hoop Bracing is mechanically attached: a. The threaded fasteners used to secure non permanent joints are Critical Fasteners, see T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7 b. No spherical rod ends are allowed c. The attachment holes in the lugs, the attached bracing and the sleeves and tubes must be a close fit with the pin or bolt", + "parentRuleCode": "F.5.12", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.12.2", + "ruleContent": "Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint Figure – Double Lug Joint", + "parentRuleCode": "F.5.12", + "pageNumber": "35", + "isFromTOC": false + }, + { + "ruleCode": "F.5.12.3", + "ruleContent": "For Double Lug Joints, each lug must: a. Be minimum 4.5 mm (0.177 in) thickness steel b. Measure 25 mm minimum perpendicular to the axis of the bracing c. Be as short as practical along the axis of the bracing.", + "parentRuleCode": "F.5.12", + "pageNumber": "36", + "isFromTOC": false + }, + { + "ruleCode": "F.5.12.4", + "ruleContent": "All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must include a capping arrangement", + "parentRuleCode": "F.5.12", + "pageNumber": "36", + "isFromTOC": false + }, + { + "ruleCode": "F.5.12.5", + "ruleContent": "In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above Figure – Sleeved Butt Joint", + "parentRuleCode": "F.5.12", + "pageNumber": "36", + "isFromTOC": false + }, + { + "ruleCode": "F.5.12.6", + "ruleContent": "For Sleeved Butt Joints, the sleeve must: a. Have a minimum length of 75 mm; 37.5 mm to each side of the joint b. Be external to the base tubes, with a close fit around the base tubes. c. Have a wall thickness of 2.0 mm or more", + "parentRuleCode": "F.5.12", + "pageNumber": "36", + "isFromTOC": false + }, + { + "ruleCode": "F.5.12.7", + "ruleContent": "In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above", + "parentRuleCode": "F.5.12", + "pageNumber": "36", + "isFromTOC": false + }, + { + "ruleCode": "F.5.13", + "ruleContent": "Other Bracing Requirements", + "parentRuleCode": "F.5", + "pageNumber": "36", + "isFromTOC": false + }, + { + "ruleCode": "F.5.13.1", + "ruleContent": "Where the braces are not welded to steel Frame Members, the braces must be securely attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2", + "parentRuleCode": "F.5.13", + "pageNumber": "36", + "isFromTOC": false + }, + { + "ruleCode": "F.5.13.2", + "ruleContent": "Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness steel.", + "parentRuleCode": "F.5.13", + "pageNumber": "36", + "isFromTOC": false + }, + { + "ruleCode": "F.5.14", + "ruleContent": "Steering Protection Steering system racks or mounting components that are external (vertically above or below) to the Primary Structure must be protected from frontal impact. The protective structure must: a. Be F.3.2.1.n or Equivalent b. Extend to the vertical limit of the steering component(s) c. Extend to the local width of the Chassis d. Meet F.7.8 if not welded to the Chassis", + "parentRuleCode": "F.5", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.5.15", + "ruleContent": "Other Side Tube Requirements If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the Frame This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or frame tube, and the driver’s neck contacting this brace or tube.", + "parentRuleCode": "F.5", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.5.16", + "ruleContent": "Component Protection When specified in the rules, components must be protected by one or two of: a. Fully Triangulated structure with tubes meeting F.3.2.1.n b. Structure Equivalent to the above, as determined per F.4.1.3", + "parentRuleCode": "F.5", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.6", + "ruleContent": "TUBE FRAMES", + "parentRuleCode": "F", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.6.1", + "ruleContent": "Front Bulkhead The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a", + "parentRuleCode": "F.6", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.6.2", + "ruleContent": "Front Bulkhead Support", + "parentRuleCode": "F.6", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.6.2.1", + "ruleContent": "Frame Members of the Front Bulkhead Support system must be constructed of closed section tubing meeting F.3.2.1.b", + "parentRuleCode": "F.6.2", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.6.2.2", + "ruleContent": "The Front Bulkhead must be securely integrated into the Frame.", + "parentRuleCode": "F.6.2", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.6.2.3", + "ruleContent": "The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame Members on each side of the vehicle; an upper member; lower member and diagonal brace to provide Triangulation. a. The top of the upper support member must be attached 50 mm or less from the top surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 mm above and 50 mm below the Upper Side Impact member. b. If the upper support member is further than 100 mm above the top of the Upper Side Impact member, then properly Triangulated bracing is required to transfer load to the Main Hoop by one of: • the Upper Side Impact member • an additional member transmitting load from the junction of the Upper Support Member with the Front Hoop c. The lower support member must be attached to the base of the Front Bulkhead and the base of the Front Hoop d. The diagonal brace must properly Triangulate the upper and lower support members", + "parentRuleCode": "F.6.2", + "pageNumber": "37", + "isFromTOC": false + }, + { + "ruleCode": "F.6.2.4", + "ruleContent": "Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 are met", + "parentRuleCode": "F.6.2", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.2.5", + "ruleContent": "Examples of acceptable configurations of members may be found in the SES", + "parentRuleCode": "F.6.2", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.3", + "ruleContent": "Front Hoop Bracing", + "parentRuleCode": "F.6", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.3.1", + "ruleContent": "Front Hoop Braces must be constructed of material meeting F.3.2.1.d", + "parentRuleCode": "F.6.3", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.3.2", + "ruleContent": "The Front Hoop must be supported by two Braces extending in the forward direction, one on each of the left and right sides of the Front Hoop.", + "parentRuleCode": "F.6.3", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.3.3", + "ruleContent": "The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to the structure in front of the driver’s feet.", + "parentRuleCode": "F.6.3", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.3.4", + "ruleContent": "The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 above", + "parentRuleCode": "F.6.3", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.3.5", + "ruleContent": "If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully Triangulated structural node.", + "parentRuleCode": "F.6.3", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.3.6", + "ruleContent": "The Front Hoop Braces must be straight, without any bends", + "parentRuleCode": "F.6.3", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.4", + "ruleContent": "Side Impact Structure", + "parentRuleCode": "F.6", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.4.1", + "ruleContent": "Frame Members of the Side Impact Structure must be constructed of closed section tubing meeting F.3.2.1.e or F.3.2.1.f, as applicable", + "parentRuleCode": "F.6.4", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.4.2", + "ruleContent": "With proper Triangulation, Side Impact Structure members may be fabricated from more than one piece of tubing.", + "parentRuleCode": "F.6.4", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.4.3", + "ruleContent": "The Side Impact Structure must include three or more tubular members located on each side of the driver while seated in the normal driving position", + "parentRuleCode": "F.6.4", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.4.4", + "ruleContent": "The Upper Side Impact Member must: a. Connect the Main Hoop and the Front Hoop. b. Have its top edge entirely in a zone that is parallel to the ground between 265 mm and 320 mm above the lowest point of the top surface of the Lower Side Impact Member", + "parentRuleCode": "F.6.4", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.4.5", + "ruleContent": "The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the bottom of the Front Hoop.", + "parentRuleCode": "F.6.4", + "pageNumber": "38", + "isFromTOC": false + }, + { + "ruleCode": "F.6.4.6", + "ruleContent": "The Diagonal Side Impact Member must: a. Connect the Upper Side Impact Member and Lower Side Impact Member forward of the Main Hoop and rearward of the Front Hoop b. Completely Triangulate the bays created by the Upper and Lower Side Impact Members.", + "parentRuleCode": "F.6.4", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.6.5", + "ruleContent": "Shoulder Harness Mounting", + "parentRuleCode": "F.6", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.6.5.1", + "ruleContent": "The Shoulder Harness Mounting Bar must: a. Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k b. Attach to the Main Hoop on the left and right sides of the chassis", + "parentRuleCode": "F.6.5", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.6.5.2", + "ruleContent": "Bent Shoulder Harness Mounting Bars must: a. Meet F.5.2.1 and F.5.2.2 b. Have bracing members attached at the bend(s) and to the Main Hoop. • Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l • The included angle in side view between the Shoulder Harness Bar and the braces must be no less than 30°.", + "parentRuleCode": "F.6.5", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.6.5.3", + "ruleContent": "The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar", + "parentRuleCode": "F.6.5", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.6.6", + "ruleContent": "Main Hoop Bracing Supports", + "parentRuleCode": "F.6", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.6.6.1", + "ruleContent": "Frame Members of the Main Hoop Bracing Support system must be constructed of closed section tubing meeting F.3.2.1.i", + "parentRuleCode": "F.6.6", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.6.6.2", + "ruleContent": "The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a minimum of two Frame Members on each side of the vehicle: an upper member and a lower member in a properly Triangulated configuration. a. The upper support member must attach to the node where the upper Side Impact Member attaches to the Main Hoop. b. The lower support member must attach to the node where the lower Side Impact Member attaches to the Main Hoop. c. Each of the above members may be multiple or bent tubes provided the requirements of", + "parentRuleCode": "F.6.6", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.5.2", + "ruleContent": "are met. d. Examples of acceptable configurations of members may be found in the SES.", + "parentRuleCode": "F.5", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.7", + "ruleContent": "MONOCOQUE", + "parentRuleCode": "F", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.7.1", + "ruleContent": "General Requirements", + "parentRuleCode": "F.7", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.7.1.1", + "ruleContent": "The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension", + "parentRuleCode": "F.7.1", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.7.1.2", + "ruleContent": "Composite and metallic monocoques have the same requirements", + "parentRuleCode": "F.7.1", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.7.1.3", + "ruleContent": "Corners between panels used for structural equivalence must contain core", + "parentRuleCode": "F.7.1", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.7.1.4", + "ruleContent": "An inspection hole approximately 4mm in diameter must be drilled through a low stress location of each monocoque section regulated by the Structural Equivalency Spreadsheet This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b", + "parentRuleCode": "F.7.1", + "pageNumber": "39", + "isFromTOC": false + }, + { + "ruleCode": "F.7.1.5", + "ruleContent": "Composite monocoques must: a. Meet the materials requirements in F.4 Composite and Other Materials b. Use data from the laminate testing results as the basis for any strength or stiffness calculations", + "parentRuleCode": "F.7.1", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.2", + "ruleContent": "Front Bulkhead", + "parentRuleCode": "F.7", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.2.1", + "ruleContent": "When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1", + "parentRuleCode": "F.7.2", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.2.2", + "ruleContent": "The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm measured from the rearmost face of the Front Bulkhead", + "parentRuleCode": "F.7.2", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.2.3", + "ruleContent": "Any Front Bulkhead which supports the IA plate must have a perimeter shear strength equivalent to a 1.5 mm thick steel plate", + "parentRuleCode": "F.7.2", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.3", + "ruleContent": "Front Bulkhead Support", + "parentRuleCode": "F.7", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.3.1", + "ruleContent": "In addition to proving that the strength of the monocoque is sufficient, the monocoque must have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces.", + "parentRuleCode": "F.7.3", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.3.2", + "ruleContent": "The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or more than the EI of one steel tube that it replaces when calculated as per F.4.3", + "parentRuleCode": "F.7.3", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.3.3", + "ruleContent": "The perimeter shear strength of the monocoque laminate in the Front Bulkhead support structure must be 4 kN or more for a section with a diameter of 25 mm. This must be proven by a physical test completed per F.4.2.5 and the results included in the SES.", + "parentRuleCode": "F.7.3", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.4", + "ruleContent": "Front Hoop Attachment", + "parentRuleCode": "F.7", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.4.1", + "ruleContent": "The Front Hoop must be mechanically attached to the monocoque a. Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c b. The Front Hoop tube must be mechanically connected to the Mounting Plate with Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop tube along the two sides of the mounting plate", + "parentRuleCode": "F.7.4", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.4.2", + "ruleContent": "Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any bends and nodes that are not at the top center of the Front Hoop", + "parentRuleCode": "F.7.4", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.4.3", + "ruleContent": "The Front Hoop may be fully laminated into the monocoque if: a. The Front Hoop has core fit tightly around its entire circumference. Expanding foam is not permitted b. Equivalence to six or more mounts compliant with F.7.8 must show in the SES c. A small gap in the laminate (approximately 25 mm) exists for inspection of the Front Hoop F.5.7.7", + "parentRuleCode": "F.7.4", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.4.4", + "ruleContent": "Adhesive must not be the sole method of attaching the Front Hoop to the monocoque", + "parentRuleCode": "F.7.4", + "pageNumber": "40", + "isFromTOC": false + }, + { + "ruleCode": "F.7.5", + "ruleContent": "Side Impact Structure", + "parentRuleCode": "F.7", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.5.1", + "ruleContent": "Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front Hoop consisting of the combination of a vertical section minimum 290 mm in height from the bottom surface of the floor of the monocoque and half the horizontal floor", + "parentRuleCode": "F.7.5", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.5.2", + "ruleContent": "The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it replaces", + "parentRuleCode": "F.7.5", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.5.3", + "ruleContent": "The portion of the Side Impact Zone that is vertically between the upper surface of the floor and 320 mm above the lowest point of the upper surface of the floor (see figure above) must have: a. Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3 b. No openings in Side View between the Front Hoop and Main Hoop", + "parentRuleCode": "F.7.5", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.5.4", + "ruleContent": "Horizontal floor Equivalence must be calculated per F.4.3", + "parentRuleCode": "F.7.5", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.5.5", + "ruleContent": "The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a section with a diameter of 25 mm. This must be proven by physical test completed per F.4.2.5 and the results included in the SES.", + "parentRuleCode": "F.7.5", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.6", + "ruleContent": "Main Hoop Attachment", + "parentRuleCode": "F.7", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.6.1", + "ruleContent": "The Main Hoop must be mechanically attached to the monocoque a. Main Hoop mounting plates must be 2.0 mm minimum thickness steel b. The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 mm minimum thickness steel plates parallel to the two sides of the tube, with gussets from the Main Hoop tube along the two sides of the mounting plate", + "parentRuleCode": "F.7.6", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.6.2", + "ruleContent": "Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and nodes that are below the top of the monocoque", + "parentRuleCode": "F.7.6", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.7", + "ruleContent": "Roll Hoop Bracing Attachment Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8.", + "parentRuleCode": "F.7", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8", + "ruleContent": "Attachments", + "parentRuleCode": "F.7", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8.1", + "ruleContent": "Each attachment point between the monocoque or composite panels and the other Primary Structure must be able to carry a minimum load of 30 kN in any direction. a. When a Roll Hoop attaches in three locations on each side, the attachments must be located at the bottom, top, and a location near the midpoint b. When a Roll Hoop attaches at only the bottom and a point between the top and the midpoint on each side, each of the four attachments must show load strength of 45 kN in all directions", + "parentRuleCode": "F.7.8", + "pageNumber": "41", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8.2", + "ruleContent": "If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must obey one of the two: a. Parallel brackets attached to the two sides of the Main Hoop and the two sides of the Side Impact Structure b. Two mostly perpendicular brackets attached to the Main Hoop and the side and back of the monocoque", + "parentRuleCode": "F.7.8", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8.3", + "ruleContent": "The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient shear area is provided.", + "parentRuleCode": "F.7.8", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8.4", + "ruleContent": "Proof that the brackets are sufficiently stiff must be documented in the SES.", + "parentRuleCode": "F.7.8", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8.5", + "ruleContent": "Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2", + "parentRuleCode": "F.7.8", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8.6", + "ruleContent": "Each attachment point requires backing plates which meet one of: • Steel with a minimum thickness of 2 mm • Alternate materials if Equivalency is approved", + "parentRuleCode": "F.7.8", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8.7", + "ruleContent": "The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in bending, similar to the figure below.", + "parentRuleCode": "F.7.8", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.8.8", + "ruleContent": "Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the two: a. A solid insert that is fully enclosed by the inner and outer skin b. Local elimination of any gap between inner and outer skin, with or without repeating skin layups", + "parentRuleCode": "F.7.8", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.9", + "ruleContent": "Driver Harness Attachment", + "parentRuleCode": "F.7", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.9.1", + "ruleContent": "Required Loads a. Each attachment point for the Shoulder Belts must support a minimum load of 15 kN before failure with a required load of 30 kN distributed across the two belt attachments b. Each attachment point for the Lap Belts must support a minimum load of 15 kN before failure. c. Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 kN before failure. d. If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or are attached to the same attachment point, then each mounting point must support a minimum load of 30 kN before failure.", + "parentRuleCode": "F.7.9", + "pageNumber": "42", + "isFromTOC": false + }, + { + "ruleCode": "F.7.9.2", + "ruleContent": "Load Testing The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven by physical tests where the required load is applied to a representative attachment point where the proposed layup and attachment bracket are used. a. Edges of the test fixture supporting the sample must be a minimum of 125 mm from the load application point (load vector intersecting a plane) b. Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 degrees) to the plane of the test sample c. Shoulder Belt Test Load application must meet: Installed Shoulder Belt Angle: Test Load Application Angle must be: should be: Between 90° and 45° Between 90° and the installed Shoulder Belt Angle 90° Between 45° and 0° Between 90° and 45° 90° The angles are measured from the plane of the Test Sample (90° is normal to the Test Sample and 0° is parallel to the Test Sample) d. The Shoulder Harness test sample must not be any larger than the section of the monocoque as built e. The width of the Shoulder Harness test sample must not be any wider than the Shoulder Harness \"panel height\" (see Structural Equivalency Spreadsheet) used to show equivalency for the Shoulder Harness mounting bar f. Designs with attachments near a free edge must not support the free edge during the test The intent is that the test specimen, to the best extent possible, represents the vehicle as driven at competition. Teams are expected to test a panel that is manufactured in as close a configuration to what is built in the vehicle as possible", + "parentRuleCode": "F.7.9", + "pageNumber": "43", + "isFromTOC": false + }, + { + "ruleCode": "F.8", + "ruleContent": "FRONT CHASSIS PROTECTION", + "parentRuleCode": "F", + "pageNumber": "43", + "isFromTOC": false + }, + { + "ruleCode": "F.8.1", + "ruleContent": "Requirements", + "parentRuleCode": "F.8", + "pageNumber": "43", + "isFromTOC": false + }, + { + "ruleCode": "F.8.1.1", + "ruleContent": "Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion Plate between the Impact Attenuator and the Front Bulkhead.", + "parentRuleCode": "F.8.1", + "pageNumber": "43", + "isFromTOC": false + }, + { + "ruleCode": "F.8.1.2", + "ruleContent": "All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse and vertical loads if off-axis impacts occur.", + "parentRuleCode": "F.8.1", + "pageNumber": "43", + "isFromTOC": false + }, + { + "ruleCode": "F.8.2", + "ruleContent": "Anti Intrusion Plate - AIP", + "parentRuleCode": "F.8", + "pageNumber": "43", + "isFromTOC": false + }, + { + "ruleCode": "F.8.2.1", + "ruleContent": "The Anti Intrusion Plate must be one of the three: a. 1.5 mm minimum thickness solid steel b. 4.0 mm minimum thickness solid aluminum plate c. Composite material per F.8.3", + "parentRuleCode": "F.8.2", + "pageNumber": "43", + "isFromTOC": false + }, + { + "ruleCode": "F.8.2.2", + "ruleContent": "The outside profile requirement of the Anti Intrusion Plate depends on the method of attachment to the Front Bulkhead: a. Welded joints: the profile must align with or be more than the centerline of the Front Bulkhead tubes on all sides b. Bolted joints, bonding, laminating: the profile must align with or be more than the outside dimensions of the Front Bulkhead around the entire periphery", + "parentRuleCode": "F.8.2", + "pageNumber": "44", + "isFromTOC": false + }, + { + "ruleCode": "F.8.2.3", + "ruleContent": "Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in the team’s SES submission. The accepted methods of attachment are: a. Welding • All weld lengths must be 25 mm or longer • If interrupted, the weld/space ratio must be 1:1 or higher b. Bolted joints • Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. • The distance between any two bolt centers must be 50 mm minimum. • Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN c. Bonding • The Front Bulkhead must have no openings • The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel strength higher than 120 kN d. Laminating • The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead • The lamination must fully enclose the Anti Intrusion Plate and have shear capability higher than 120 kN", + "parentRuleCode": "F.8.2", + "pageNumber": "44", + "isFromTOC": false + }, + { + "ruleCode": "F.8.3", + "ruleContent": "Composite Anti Intrusion Plate", + "parentRuleCode": "F.8", + "pageNumber": "44", + "isFromTOC": false + }, + { + "ruleCode": "F.8.3.1", + "ruleContent": "Composite Anti Intrusion Plates: a. Must not fail in a frontal impact b. Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm minimum Impact Attenuator area", + "parentRuleCode": "F.8.3", + "pageNumber": "44", + "isFromTOC": false + }, + { + "ruleCode": "F.8.3.2", + "ruleContent": "Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods: a. Physical testing of the AIP attached to a structurally representative section of the intended chassis • The test fixture must have equivalent strength and stiffness to a baseline front bulkhead or must be the same as the first 50 mm of the Chassis • Test data is valid for only one Competition Year b. Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending and perimeter shear", + "parentRuleCode": "F.8.3", + "pageNumber": "44", + "isFromTOC": false + }, + { + "ruleCode": "F.8.4", + "ruleContent": "Impact Attenuator - IA", + "parentRuleCode": "F.8", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.4.1", + "ruleContent": "Teams must do one of: • Use an approved Standard Impact Attenuator from the FSAE Online Website • Build and test a Custom Impact Attenuator of their own design F.8.8", + "parentRuleCode": "F.8.4", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.4.2", + "ruleContent": "The Custom Impact Attenuator must meet these: a. Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis. b. Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm (parallel to the ground) for a minimum distance of 200 mm forward of the Front Bulkhead. c. Segmented foam attenuators must have all segments bonded together to prevent sliding or parallelogramming. d. Honeycomb attenuators made of multiple segments must have a continuous panel between each segment.", + "parentRuleCode": "F.8.4", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.4.3", + "ruleContent": "If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses the Standard Honeycomb Impact Attenuator, and then one of the two must be met: a. The Front Bulkhead must include an additional support that is a diagonal or X-brace that meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 • The structure must go across the entire Front Bulkhead opening on the diagonal • Attachment points at each end must carry a minimum load of 30 kN in any direction b. Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion Plate does not permanently deflect more than 25 mm.", + "parentRuleCode": "F.8.4", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.5", + "ruleContent": "Impact Attenuator Attachment", + "parentRuleCode": "F.8", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.5.1", + "ruleContent": "The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must be documented in the SES submission", + "parentRuleCode": "F.8.5", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.5.2", + "ruleContent": "The Impact Attenuator must attach with an approved method: Impact Attenuator Type Construction Attachment Method(s): a. Standard or Custom Foam, Honeycomb Bonding b. Custom other Bonding, Welding, Bolting", + "parentRuleCode": "F.8.5", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.5.3", + "ruleContent": "If the Impact Attenuator is attached by bonding: a. Bonding must meet F.5.5 b. The shear strength of the bond must be higher than: • 95 kN for foam Impact Attenuators • 38.5 kN for honeycomb Impact Attenuators • The maximum compressive force for custom Impact Attenuators c. The entire surface of a foam Impact Attenuator must be bonded d. Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond equivalence", + "parentRuleCode": "F.8.5", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.5.4", + "ruleContent": "If the Impact Attenuator is attached by welding: a. Welds may be continuous or interrupted b. If interrupted, the weld/space ratio must be 1:1 or higher c. All weld lengths must be more than 25 mm", + "parentRuleCode": "F.8.5", + "pageNumber": "45", + "isFromTOC": false + }, + { + "ruleCode": "F.8.5.5", + "ruleContent": "If the Impact Attenuator is attached by bolting: a. Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2 b. The distance between any two bolt centers must be 50 mm minimum c. Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN d. Must be bolted directly to the Primary Structure", + "parentRuleCode": "F.8.5", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.5.6", + "ruleContent": "Impact Attenuator Position a. All Impact Attenuators must mount with the bottom leading edge 150 mm or less above the lowest point on the top of the Lower Side Impact Structure b. A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 mm or more wide that intersects a plane parallel to the ground that is 150 mm or less above the lowest point on the top of the Lower Side Impact Structure", + "parentRuleCode": "F.8.5", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.5.7", + "ruleContent": "Impact Attenuator Orientation a. The Impact Attenuator must be centered laterally on the Front Bulkhead b. Standard Honeycomb must be mounted 200mm width x 100mm height c. Standard Foam may be mounted laterally or vertically", + "parentRuleCode": "F.8.5", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.6", + "ruleContent": "Front Impact Objects", + "parentRuleCode": "F.8", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.6.1", + "ruleContent": "The only items allowed forward of the Anti Intrusion Plate in front view are the Impact Attenuator, fastener heads, and light bodywork / nosecones Fasteners should be oriented with the nuts rearwards", + "parentRuleCode": "F.8.6", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.6.2", + "ruleContent": "Front Wing and Bodywork Attachment a. The front wing and front wing mounts must be able to move completely aft of the Anti Intrusion Plate and not touch the front bulkhead during a frontal impact b. The attachment points for the front wing and bodywork mounts should be aft of the Anti Intrusion Plate c. Tabs for wing and bodywork attachment must not extend more than 25 mm forward of the Anti Intrusion Plate", + "parentRuleCode": "F.8.6", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.6.3", + "ruleContent": "Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the: a. Rear face of the Anti Intrusion Plate b. All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3 c. All Non Crushable Items inside the Primary Structure Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic reservoirs", + "parentRuleCode": "F.8.6", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.7", + "ruleContent": "Front Impact Verification", + "parentRuleCode": "F.8", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.7.1", + "ruleContent": "The combination of the Impact Attenuator assembly and the force to crush or detach all other items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in F.8.8.2 Ignore light bodywork, light nosecones, and outboard wheel assemblies", + "parentRuleCode": "F.8.7", + "pageNumber": "46", + "isFromTOC": false + }, + { + "ruleCode": "F.8.7.2", + "ruleContent": "The peak load for the type of Impact Attenuator: • Standard Foam Impact Attenuator 95 kN • Standard Honeycomb Impact Attenuator 60 kN • Tested Impact Attenuator peak as measured", + "parentRuleCode": "F.8.7", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.7.3", + "ruleContent": "Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement", + "parentRuleCode": "F.8.7", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.7.4", + "ruleContent": "Test Method Get the peak force from physical testing of the Impact Attenuator and any Non Crushable Object(s) as one of the two: a. Tested together with the Impact Attenuator b. Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2", + "parentRuleCode": "F.8.7", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.7.5", + "ruleContent": "Calculation Method a. Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener shear, tearout, and/or link buckling b. Add the peak attenuator load from F.8.7.2", + "parentRuleCode": "F.8.7", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8", + "ruleContent": "Impact Attenuator Data - IAD", + "parentRuleCode": "F.8", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8.1", + "ruleContent": "All teams must include an Impact Attenuator Data (IAD) report as part of the SES.", + "parentRuleCode": "F.8.8", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8.2", + "ruleContent": "Impact Attenuator Functional Requirements These are not test requirements a. Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak b. Energy absorbed must be more than 7350 J When: • Total mass of Vehicle is 300 kg • Impact velocity is 7.0 m/s", + "parentRuleCode": "F.8.8", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8.3", + "ruleContent": "When using the Standard Impact Attenuator, the SES must meet these: a. Test data will not be submitted b. All other requirements of this section must be included. c. Photos of the actual attenuator must be included d. Evidence that the Standard IA meets the design criteria provided in the Standard Impact Attenuator specification must be included with the SES. This may be a receipt or packing slip from the supplier.", + "parentRuleCode": "F.8.8", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8.4", + "ruleContent": "The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must include: a. Test data that proves that the Impact Attenuator Assembly meets the Functional Requirements F.8.8.2 b. Calculations showing how the reported absorbed energy and decelerations have been derived. c. A schematic of the test method. d. Photos of the attenuator, annotated with the height of the attenuator before and after testing.", + "parentRuleCode": "F.8.8", + "pageNumber": "47", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8.5", + "ruleContent": "The Impact Attenuator Test is valid for only one Competition Year", + "parentRuleCode": "F.8.8", + "pageNumber": "48", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8.6", + "ruleContent": "Impact Attenuator Test Setup a. During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using the intended vehicle attachment method. b. The Impact Attenuator Assembly must be attached to a structurally representative section of the intended chassis. The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. A solid block of material in the shape of the front bulkhead is not “structurally representative”. c. There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the test fixture. d. No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond the position of the Anti Intrusion Plate before the test. The 25 mm spacing represents the front bulkhead support and insures that the plate does not intrude excessively into the cockpit.", + "parentRuleCode": "F.8.8", + "pageNumber": "48", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8.7", + "ruleContent": "Test Conduct a. Composite Impact Attenuators must be Dynamic Tested. Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested b. Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be conducted at a dedicated test facility. This facility may be part of the University, but must be supervised by professional staff or the University faculty. Teams must not construct their own dynamic test apparatus. c. Quasi-Static Testing may be done by teams using their University’s facilities/equipment, but teams are advised to exercise due care", + "parentRuleCode": "F.8.8", + "pageNumber": "48", + "isFromTOC": false + }, + { + "ruleCode": "F.8.8.8", + "ruleContent": "Test Analysis a. When using acceleration data from the dynamic test, the average deceleration must be calculated based on the raw unfiltered data. b. If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 (100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied.", + "parentRuleCode": "F.8.8", + "pageNumber": "48", + "isFromTOC": false + }, + { + "ruleCode": "F.9", + "ruleContent": "FUEL SYSTEM (IC ONLY) Fuel System Location and Protection are subject to approval during SES review and Technical Inspection.", + "parentRuleCode": "F", + "pageNumber": "48", + "isFromTOC": false + }, + { + "ruleCode": "F.9.1", + "ruleContent": "Location", + "parentRuleCode": "F.9", + "pageNumber": "48", + "isFromTOC": false + }, + { + "ruleCode": "F.9.1.1", + "ruleContent": "These components must be inside the Primary Structure (F.1.10): a. Any part of the Fuel System that is below the Upper Side Impact Structure b. Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper Side Impact Structure IC.1.2", + "parentRuleCode": "F.9.1", + "pageNumber": "48", + "isFromTOC": false + }, + { + "ruleCode": "F.9.1.2", + "ruleContent": "In side view, any portion of the Fuel System must not project below the lower surface of the chassis", + "parentRuleCode": "F.9.1", + "pageNumber": "48", + "isFromTOC": false + }, + { + "ruleCode": "F.9.2", + "ruleContent": "Protection All Fuel Tanks must be shielded from side or rear impact", + "parentRuleCode": "F.9", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10", + "ruleContent": "ACCUMULATOR CONTAINER (EV ONLY)", + "parentRuleCode": "F", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.1", + "ruleContent": "General Requirements", + "parentRuleCode": "F.10", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.1.1", + "ruleContent": "All Accumulator Containers must be: a. Designed to withstand forces from deceleration in all directions b. Made from a Nonflammable Material ( F.1.18 )", + "parentRuleCode": "F.10.1", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.1.2", + "ruleContent": "Design of the Accumulator Container must be documented in the SES. Documentation includes materials used, drawings/images, fastener locations, cell/segment weight and cell/segment position.", + "parentRuleCode": "F.10.1", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.1.3", + "ruleContent": "The Accumulator Containers and mounting systems are subject to approval during SES review and Technical Inspection", + "parentRuleCode": "F.10.1", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.1.4", + "ruleContent": "If the Accumulator Container is not constructed from steel or aluminum, the material properties should be established at a temperature of 60°C", + "parentRuleCode": "F.10.1", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.1.5", + "ruleContent": "If adhesives are used for credited bonding, the bond properties should be established for a temperature of 60°C", + "parentRuleCode": "F.10.1", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.2", + "ruleContent": "Structure", + "parentRuleCode": "F.10", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.2.1", + "ruleContent": "The Floor or Bottom must be made from one of the three: a. Steel 1.25 mm minimum thickness b. Aluminum 3.2 mm minimum thickness c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", + "parentRuleCode": "F.10.2", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.2.2", + "ruleContent": "Walls, Covers and Lids must be made from one of the three: a. Steel 0.9 mm minimum thickness b. Aluminum 2.3 mm minimum thickness c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", + "parentRuleCode": "F.10.2", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.2.3", + "ruleContent": "Internal Vertical Walls: a. Must surround and separate each Accumulator Segment EV.5.1.2 b. Must have minimum height of the full height of the Accumulator Segments The Internal Walls should extend to the lid above any Segment c. Must surround no more than 12 kg on each side The intent is to have each Segment fully enclosed in its own six sided box", + "parentRuleCode": "F.10.2", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.2.4", + "ruleContent": "If segments are arranged vertically above other segments, each layer of segments must have a load path to the Chassis attachments that does not pass through another layer of segments", + "parentRuleCode": "F.10.2", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.2.5", + "ruleContent": "Floors and all Wall sections must be joined on each side The accepted methods of joining walls to walls and walls to floor are: a. Welding • Welds may be continuous or interrupted. • If interrupted, the weld/space ratio must be 1:1 or higher • All weld lengths must be more than 25 mm b. Fasteners Combined strength of the fasteners must be Equivalent to the strength of the welded joint ( F.10.2.5.a above ) c. Bonding • Bonding must meet F.5.5 • Strength of the bonded joint must be Equivalent to the strength of the welded joint ( F.10.2.5.a above ) • Bonds must run the entire length of the joint Folding or bending plate material to create flanges or to eliminate joints between walls is recommended.", + "parentRuleCode": "F.10.2", + "pageNumber": "49", + "isFromTOC": false + }, + { + "ruleCode": "F.10.2.6", + "ruleContent": "Covers and Lids must be mechanically attached and include Positive Locking Mechanisms", + "parentRuleCode": "F.10.2", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.3", + "ruleContent": "Cells and Segments", + "parentRuleCode": "F.10", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.3.1", + "ruleContent": "The structure of the Segments (without the structure of the Accumulator Container and without the structure of the cells) must prevent cells from being crushed in any direction under the following accelerations: a. 40 g in the longitudinal direction (forward/aft) b. 40 g in the lateral direction (left/right) c. 20 g in the vertical direction (up/down)", + "parentRuleCode": "F.10.3", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.3.2", + "ruleContent": "Segments must be held by one of the two: a. Mechanical Cover and Lid attachments must show equivalence to the strength of a welded joint F.10.2.5.a b. Mechanical Segment attachments to the container must show they can support the acceleration loads F.10.3.1 above in the direction of removal", + "parentRuleCode": "F.10.3", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.3.3", + "ruleContent": "Calculations and/or tests proving these requirements are met must be included in the SES", + "parentRuleCode": "F.10.3", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.4", + "ruleContent": "Holes and Openings", + "parentRuleCode": "F.10", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.4.1", + "ruleContent": "The Accumulator Container(s) exterior or interior walls may contain holes or openings, see EV.4.3.4", + "parentRuleCode": "F.10.4", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.4.2", + "ruleContent": "Any Holes and Openings must be the minimum area necessary", + "parentRuleCode": "F.10.4", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.4.3", + "ruleContent": "Exterior and interior walls must cover a minimum of 75% of each face of the battery segments", + "parentRuleCode": "F.10.4", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.4.4", + "ruleContent": "Holes and Openings for airflow: a. Must be round. Slots are prohibited b. Should be maximum 10 mm diameter c. Must not have line of sight to the driver, with the Firewall installed or removed", + "parentRuleCode": "F.10.4", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5", + "ruleContent": "Attachment", + "parentRuleCode": "F.10", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5.1", + "ruleContent": "Attachment of the Accumulator Container must be documented in the SES", + "parentRuleCode": "F.10.5", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5.2", + "ruleContent": "Accumulator Containers must: a. Attach to the Major Structure of the chassis A maximum of two attachment points may be on a chassis tube between two triangulated nodes. b. Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing", + "parentRuleCode": "F.10.5", + "pageNumber": "50", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5.3", + "ruleContent": "Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2", + "parentRuleCode": "F.10.5", + "pageNumber": "51", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5.4", + "ruleContent": "Each fastened attachment point to a composite Accumulator Container requires backing plates that are one of the two: a. Steel with a thickness of 2 mm minimum b. Alternate materials Equivalent to 2 mm thickness steel", + "parentRuleCode": "F.10.5", + "pageNumber": "51", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5.5", + "ruleContent": "Teams must justify the Accumulator Container attachment using one of the two methods: • Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 • Load Based Analysis per F.10.5.7 and F.10.5.8", + "parentRuleCode": "F.10.5", + "pageNumber": "51", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5.6", + "ruleContent": "Accumulator Attachment – Corner Attachments a. Eight or more attachments are required for any configuration. • One attachment for each corner of a rectangular structure of multiple Accumulator Segments • More than the minimum number of fasteners may be required for non rectangular arrangements Examples: If not filled in with additional structure, an extruded L shape would require attachments at 10 convex corners (the corners at the inside of the L are not convex); an extruded hexagon would require 12 attachments b. The mechanical connections at each corner must be 50 mm or less from the corner of the Segment c. Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass of the container accelerating at 40 g", + "parentRuleCode": "F.10.5", + "pageNumber": "51", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5.7", + "ruleContent": "Accumulator Attachment – Load Based a. The minimum number of attachment points depends on the total mass of the container: Accumulator Weight Minimum Attachment Points < 20 kg 4 20 – 30 kg 6 30 – 40 kg 8 > 40 kg 10 b. Each attachment point, including any brackets, backing plates and inserts, must be able to withstand 15 kN minimum in any direction", + "parentRuleCode": "F.10.5", + "pageNumber": "51", + "isFromTOC": false + }, + { + "ruleCode": "F.10.5.8", + "ruleContent": "Accumulator Attachment – All Types a. Each fastener must withstand the Test Load in pure shear, using the minor diameter if any threads are in shear b. Each Accumulator bracket, chassis bracket, or monocoque attachment point must withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if welded, and pure bond shear and pure bond tensile if bonded. c. Monocoque attachment points must meet F.7.8.8 d. Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment points", + "parentRuleCode": "F.10.5", + "pageNumber": "51", + "isFromTOC": false + }, + { + "ruleCode": "F.11", + "ruleContent": "TRACTIVE SYSTEM (EV ONLY) Tractive System Location and Protection are subject to approval during SES review and Technical Inspection.", + "parentRuleCode": "F", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.1", + "ruleContent": "Location", + "parentRuleCode": "F.11", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.1.1", + "ruleContent": "All Accumulator Containers must lie inside the Primary Structure (F.1.10).", + "parentRuleCode": "F.11.1", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.1.2", + "ruleContent": "Motors mounted to a suspension upright and their connections must meet EV.4.1.3", + "parentRuleCode": "F.11.1", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.1.3", + "ruleContent": "Tractive System (EV.1.1) components including Motors, cables and wiring other than those in", + "parentRuleCode": "F.11.1", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.1.2", + "ruleContent": "above must be contained inside one or two of: • The Rollover Protection Envelope F.1.13 • Structure meeting F.5.16 Component Protection", + "parentRuleCode": "F.11.1", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.2", + "ruleContent": "Side Impact Protection", + "parentRuleCode": "F.11", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.2.1", + "ruleContent": "All Accumulator Containers must be protected from side impact by structure Equivalent to Side Impact Structure (F.6.4, F.7.5)", + "parentRuleCode": "F.11.2", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.2.2", + "ruleContent": "The Accumulator Container must not be part of the Equivalent structure.", + "parentRuleCode": "F.11.2", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.2.3", + "ruleContent": "Accumulator Container side impact protection must go to a minimum height that is the lower of the two: • The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 • The top of the Accumulator Container at that point", + "parentRuleCode": "F.11.2", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.2.4", + "ruleContent": "Tractive System components other than Accumulator Containers in a position below 350 mm from the ground must be protected from side impact by structure that meets F.5.16 Component Protection", + "parentRuleCode": "F.11.2", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.3", + "ruleContent": "Rear Impact Protection", + "parentRuleCode": "F.11", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.3.1", + "ruleContent": "All Tractive System components must be protected from rear impact by a Rear Bulkhead a. When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure must be Equivalent to Side Impact Structure (F.6.4, F.7.5) b. When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the structure must meet F.5.16 Component Protection c. The Accumulator Container must not be part of the Equivalent structure", + "parentRuleCode": "F.11.3", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.3.2", + "ruleContent": "The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1", + "parentRuleCode": "F.11.3", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.3.3", + "ruleContent": "The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead", + "parentRuleCode": "F.11.3", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.3.4", + "ruleContent": "The Rear Bulkhead Support must have: a. A structural and triangulated load path from the top of the Rear Impact Protection to the Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop b. A structural and triangulated load path from the bottom of the Rear Impact Protection to the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop", + "parentRuleCode": "F.11.3", + "pageNumber": "52", + "isFromTOC": false + }, + { + "ruleCode": "F.11.3.5", + "ruleContent": "In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal structure or X brace that meets F.11.3.1 above a. Differential mounts, two vertical tubes with similar spacing, a metal plate, or an Equivalent composite panel may replace a diagonal If used, the mounts, plate, or panel must: • Be aft of the upper and lower Rear Bulkhead structures • Overlap at least 25 mm vertically at the top and the bottom b. A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. If used, the plate must: • Fully overlap the Rear Bulkhead Support F.11.3.3 above • Attach by one of the two, as determined by the SES: - Fully laminated to the Rear Bulkhead or Rear Bulkhead Support - Attachment strength greater than 120 kN", + "parentRuleCode": "F.11.3", + "pageNumber": "53", + "isFromTOC": false + }, + { + "ruleCode": "F.11.4", + "ruleContent": "Clearance and Non Crushable Items", + "parentRuleCode": "F.11", + "pageNumber": "53", + "isFromTOC": false + }, + { + "ruleCode": "F.11.4.1", + "ruleContent": "Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself Accumulator mounts do not require clearance", + "parentRuleCode": "F.11.4", + "pageNumber": "53", + "isFromTOC": false + }, + { + "ruleCode": "F.11.4.2", + "ruleContent": "The Accumulator Container should have a minimum 25 mm total clearance to each of the front, side, and rear impact structures The clearance may be put together on either side of any Non Crushable items around the accumulator", + "parentRuleCode": "F.11.4", + "pageNumber": "53", + "isFromTOC": false + }, + { + "ruleCode": "F.11.4.3", + "ruleContent": "Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through the Rear Bulkhead", + "parentRuleCode": "F.11.4", + "pageNumber": "53", + "isFromTOC": false + }, + { + "ruleCode": "T", + "ruleContent": "TECHNICAL ASPECTS", + "pageNumber": "54", + "isFromTOC": false + }, + { + "ruleCode": "T.1", + "ruleContent": "COCKPIT", + "parentRuleCode": "T", + "pageNumber": "54", + "isFromTOC": false + }, + { + "ruleCode": "T.1.1", + "ruleContent": "Cockpit Opening", + "parentRuleCode": "T.1", + "pageNumber": "54", + "isFromTOC": false + }, + { + "ruleCode": "T.1.1.1", + "ruleContent": "The template shown below must pass through the cockpit opening", + "parentRuleCode": "T.1.1", + "pageNumber": "54", + "isFromTOC": false + }, + { + "ruleCode": "T.1.1.2", + "ruleContent": "The template will be held horizontally, parallel to the ground, and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 ) a. Has passed 25 mm below the lowest point of the top of the Side Impact Structure b. Is less than or equal to 320 mm above the lowest point inside the cockpit", + "parentRuleCode": "T.1.1", + "pageNumber": "54", + "isFromTOC": false + }, + { + "ruleCode": "T.1.1.3", + "ruleContent": "Fore and aft translation of the template is permitted during insertion.", + "parentRuleCode": "T.1.1", + "pageNumber": "54", + "isFromTOC": false + }, + { + "ruleCode": "T.1.1.4", + "ruleContent": "During this test: a. The steering wheel, steering column, seat and all padding may be removed b. The shifter, shift mechanism, or clutch mechanism must not be removed unless it is integral with the steering wheel and is removed with the steering wheel c. The firewall must not be moved or removed d. Cables, wires, hoses, tubes, etc. must not block movement of the template During inspection, the steering column, for practical purposes, will not be removed. The template may be maneuvered around the steering column, but not any fixed supports. For ease of use, the template may contain a slot at the front center that the steering column may pass through.", + "parentRuleCode": "T.1.1", + "pageNumber": "54", + "isFromTOC": false + }, + { + "ruleCode": "T.1.2", + "ruleContent": "Internal Cross Section", + "parentRuleCode": "T.1", + "pageNumber": "55", + "isFromTOC": false + }, + { + "ruleCode": "T.1.2.1", + "ruleContent": "Requirement: a. The cockpit must have a free internal cross section b. The template shown below must pass through the cockpit Template maximum thickness: 7 mm", + "parentRuleCode": "T.1.2", + "pageNumber": "55", + "isFromTOC": false + }, + { + "ruleCode": "T.1.2.2", + "ruleContent": "Conduct of the test. The template: a. Will be held vertically and inserted into the cockpit opening rearward of the rearmost portion of the steering column. b. Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost pedal when in the inoperative position c. May be moved vertically inside the cockpit", + "parentRuleCode": "T.1.2", + "pageNumber": "55", + "isFromTOC": false + }, + { + "ruleCode": "T.1.2.3", + "ruleContent": "During this test: a. If the pedals are adjustable, they must be in their most forward position. b. The steering wheel may be removed c. Padding may be removed if it can be easily removed without the use of tools with the driver in the seat d. The seat and any seat insert(s) that may be used must stay in the cockpit e. Cables, wires, hoses, tubes, etc. must not block movement of the template f. The steering column and associated components may pass through the 50 mm wide center band of the template. For ease of use, the template may contain a full or partial slot in the shaded area shown on the figure", + "parentRuleCode": "T.1.2", + "pageNumber": "55", + "isFromTOC": false + }, + { + "ruleCode": "T.1.3", + "ruleContent": "Driver Protection", + "parentRuleCode": "T.1", + "pageNumber": "55", + "isFromTOC": false + }, + { + "ruleCode": "T.1.3.1", + "ruleContent": "The driver’s feet and legs must be completely contained inside the Major Structure of the Chassis.", + "parentRuleCode": "T.1.3", + "pageNumber": "55", + "isFromTOC": false + }, + { + "ruleCode": "T.1.3.2", + "ruleContent": "While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s feet or legs must not extend above or outside of the Major Structure of the Chassis.", + "parentRuleCode": "T.1.3", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.3.3", + "ruleContent": "All moving suspension and steering components and other sharp edges inside the cockpit between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered by a shield made of a solid material. Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti- roll/sway bars, steering racks and steering column CV joints.", + "parentRuleCode": "T.1.3", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.3.4", + "ruleContent": "Covers over suspension and steering components must be removable to allow inspection of the mounting points", + "parentRuleCode": "T.1.3", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.4", + "ruleContent": "Vehicle Controls", + "parentRuleCode": "T.1", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.4.1", + "ruleContent": "Accelerator Pedal a. An Accelerator Pedal must control the Powertrain output b. Pedal Travel is the percent of travel from a fully released position to a fully applied position. 0% is fully released and 100% is fully applied. c. The Accelerator Pedal must: • Return to 0% Pedal Travel when not pushed • Have a positive stop to prevent any cable, actuation system or sensor from damage or overstress", + "parentRuleCode": "T.1.4", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.4.2", + "ruleContent": "Any mechanism in the throttle system that could become jammed must be covered. This is to prevent debris or interference and includes but is not limited to a gear mechanism", + "parentRuleCode": "T.1.4", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.4.3", + "ruleContent": "All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) must be operated from inside the cockpit without any part of the driver, including hands, arms or elbows, being outside of: a. The Side Impact Structure defined in F.6.4 / F.7.5 b. Two longitudinal vertical planes parallel to the centerline of the chassis touching the uppermost member of the Side Impact Structure", + "parentRuleCode": "T.1.4", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.4.4", + "ruleContent": "All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational position", + "parentRuleCode": "T.1.4", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.5", + "ruleContent": "Driver’s Seat", + "parentRuleCode": "T.1", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.5.1", + "ruleContent": "The Driver’s Seat must be protected by one of the two: a. In side view, the lowest point of any Driver’s Seat must be no lower than the upper surface of the lowest structural tube or equivalent b. A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing (F.3.2.1.e), passing underneath the lowest point of the Driver Seat.", + "parentRuleCode": "T.1.5", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.6", + "ruleContent": "Thermal Protection", + "parentRuleCode": "T.1", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.6.1", + "ruleContent": "When seated in the normal driving position, sufficient heat insulation must be provided to make sure that the driver will not contact any metal or other materials which may become heated to a surface temperature above 60°C.", + "parentRuleCode": "T.1.6", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.6.2", + "ruleContent": "Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall.", + "parentRuleCode": "T.1.6", + "pageNumber": "56", + "isFromTOC": false + }, + { + "ruleCode": "T.1.6.3", + "ruleContent": "The design must address all three types of heat transfer between the heat source (examples include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a place that the driver could contact (including seat or floor): a. Conduction Isolation by one of the two: • No direct contact between the heat source and the panel • A heat resistant, conduction isolation material with a minimum thickness of 8 mm between the heat source and the panel b. Convection Isolation by a minimum air gap of 25 mm between the heat source and the panel c. Radiation Isolation by one of the two: • A solid metal heat shield with a minimum thickness of 0.4 mm • Reflective foil or tape when combined with conduction insulation", + "parentRuleCode": "T.1.6", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.7", + "ruleContent": "Floor Closeout", + "parentRuleCode": "T.1", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.7.1", + "ruleContent": "All vehicles must have a Floor Closeout to prevent track debris from entering", + "parentRuleCode": "T.1.7", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.7.2", + "ruleContent": "The Floor Closeout must extend from the foot area to the firewall", + "parentRuleCode": "T.1.7", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.7.3", + "ruleContent": "The panel(s) must be made of a solid, non brittle material", + "parentRuleCode": "T.1.7", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.7.4", + "ruleContent": "If multiple panels are used, gaps between panels must not exceed 3 mm", + "parentRuleCode": "T.1.7", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.8", + "ruleContent": "Firewall", + "parentRuleCode": "T.1", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.8.1", + "ruleContent": "A Firewall(s) must separate the driver compartment and any portion of the Driver Harness from: a. All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium batteries b. (EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 and cable to those Motors where mounted at the wheels or on the front control arms", + "parentRuleCode": "T.1.8", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.8.2", + "ruleContent": "The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest driver must not be in direct line of sight with any part given in T.1.8.1 above", + "parentRuleCode": "T.1.8", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.8.3", + "ruleContent": "Any Firewall must be: a. A non permeable surface made from a rigid, Nonflammable Material b. Mounted tightly", + "parentRuleCode": "T.1.8", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.8.4", + "ruleContent": "(EV only) The Firewall or the part of the Firewall on the Tractive System side must be: a. Made of aluminum. The Firewall layer itself must not be aluminum tape. b. Grounded, refer to EV.6.7 Grounding", + "parentRuleCode": "T.1.8", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.8.5", + "ruleContent": "(EV only) The Accumulator Container must not be part of the Firewall", + "parentRuleCode": "T.1.8", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.1.8.6", + "ruleContent": "Sealing a. Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, edges, any pass throughs and Floor Closeout) b. Firewalls that have multiple panels must overlap and be sealed at the joints c. Sealing between Firewalls must not be a stressed part of the Firewall d. Grommets must be used to seal any pass through for wiring, cables, etc e. Any seals or adhesives used with the Firewall must be rated for the application environment", + "parentRuleCode": "T.1.8", + "pageNumber": "57", + "isFromTOC": false + }, + { + "ruleCode": "T.2", + "ruleContent": "DRIVER ACCOMMODATION", + "parentRuleCode": "T", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.1", + "ruleContent": "Harness Definitions a. 5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine Belt. b. 6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or Anti- Submarine Belts. c. 7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or Anti- Submarine Belts and a negative g or Z Belt. d. Upright Driving Position - with a seat back angled at 30° or less from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in F.5.6.5 and positioned per F.5.6.6 e. Reclined Driving Position - with a seat back angled at more than 30° from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in F.5.6.5 and positioned per F.5.6.6 f. Chest to Groin Line - the straight line that in side view follows the line of the Shoulder Belts from the chest to the release buckle.", + "parentRuleCode": "T.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.2", + "ruleContent": "Harness Specification", + "parentRuleCode": "T.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.2.1", + "ruleContent": "The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three: a. SFI Specification 16.1 b. SFI Specification 16.5 c. FIA specification 8853/2016", + "parentRuleCode": "T.2.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.2.2", + "ruleContent": "The belts must have the original manufacturers labels showing the specification and expiration date", + "parentRuleCode": "T.2.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.2.3", + "ruleContent": "The Harness must be in or before the year of expiration shown on the labels. Harnesses expiring on or before Dec 31 of the calendar year of the competition are permitted.", + "parentRuleCode": "T.2.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.2.4", + "ruleContent": "The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or other issues", + "parentRuleCode": "T.2.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.2.5", + "ruleContent": "All Harness hardware must be installed and threaded in accordance with manufacturer’s instructions", + "parentRuleCode": "T.2.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.2.6", + "ruleContent": "All Harness hardware must be used as received from the manufacturer. No modification (including drilling, cutting, grinding, etc) is permitted.", + "parentRuleCode": "T.2.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.3", + "ruleContent": "Harness Requirements", + "parentRuleCode": "T.2", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.3.1", + "ruleContent": "Vehicles with a Reclined Driving Position must have: a. A 6 Point Harness or a 7 Point Harness b. Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of Anti- Submarine Belts installed.", + "parentRuleCode": "T.2.3", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.3.2", + "ruleContent": "All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters.", + "parentRuleCode": "T.2.3", + "pageNumber": "58", + "isFromTOC": false + }, + { + "ruleCode": "T.2.3.3", + "ruleContent": "The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed.", + "parentRuleCode": "T.2.3", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4", + "ruleContent": "Belt, Strap and Harness Installation - General", + "parentRuleCode": "T.2", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4.1", + "ruleContent": "The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the Primary Structure.", + "parentRuleCode": "T.2.4", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4.2", + "ruleContent": "Any guide or support for the belts must be material meeting F.3.2.1.j", + "parentRuleCode": "T.2.4", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4.3", + "ruleContent": "Each tab, bracket or eye to which any part of the Harness is attached must: a. Support a minimum load in pullout and tearout before failure of: • If one belt is attached to the tab, bracket or eye 15 kN • If two belts are attached to the tab, bracket or eye 30 kN b. Be 1.6 mm minimum thickness c. Not cause abrasion to the belt webbing Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest radial cross section.", + "parentRuleCode": "T.2.4", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4.4", + "ruleContent": "Attachment of tabs or brackets must meet these: a. Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to the chassis b. Welded tabs or eyes must have a base at least as large as the outer diameter of the tab or eye c. Where a single shear tab is welded to the chassis, the tab to tube welding must be on the two sides of the base of the tab Double shear attachments are preferred. Tabs and brackets for double shear mounts should be welded on the two sides.", + "parentRuleCode": "T.2.4", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4.5", + "ruleContent": "Eyebolts or weld eyes must: a. Be one piece. No eyenuts or swivels. b. Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum Threads should be 7/16-20 or greater c. Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other harness brackets (lap and anti sub) or other vehicle parts d. Have a positive locking feature on threads or by the belt itself", + "parentRuleCode": "T.2.4", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4.6", + "ruleContent": "For the belt itself to be considered a positive locking feature, the eyebolt must: a. Have minimum 10 threads engaged in a threaded insert b. Be shimmed to fully tight c. Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt creating a torque on the eyebolt.", + "parentRuleCode": "T.2.4", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4.7", + "ruleContent": "Harness installation must meet T.1.8.1", + "parentRuleCode": "T.2.4", + "pageNumber": "59", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5", + "ruleContent": "Lap Belt Mounting", + "parentRuleCode": "T.2", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5.1", + "ruleContent": "The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip bones)", + "parentRuleCode": "T.2.5", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5.2", + "ruleContent": "Installation of the Lap Belts must go in a straight line from the mounting point until they reach the driver's body without touching any hole in the seat or any other intermediate structure", + "parentRuleCode": "T.2.5", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5.3", + "ruleContent": "The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the seat", + "parentRuleCode": "T.2.5", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5.4", + "ruleContent": "With an Upright Driving Position: a. The Lap Belt Side View Angle must be between 45° and 65° to the horizontal. b. The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward of the seat back to seat bottom junction.", + "parentRuleCode": "T.2.5", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5.5", + "ruleContent": "With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to the horizontal.", + "parentRuleCode": "T.2.5", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5.6", + "ruleContent": "The Lap Belts must attach by one of the two: a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame", + "parentRuleCode": "T.2.5", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5.7", + "ruleContent": "In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an eye bolt attachment", + "parentRuleCode": "T.2.5", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.5.8", + "ruleContent": "Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 10 mm or 3/8”", + "parentRuleCode": "T.2.5", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.6", + "ruleContent": "Shoulder Harness", + "parentRuleCode": "T.2", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.6.1", + "ruleContent": "From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal.", + "parentRuleCode": "T.2.6", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.6.2", + "ruleContent": "The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center", + "parentRuleCode": "T.2.6", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.6.3", + "ruleContent": "The Shoulder Belts must attach by one of the four: a. Wrap around the Shoulder Harness Mounting bar b. Bolt through a welded tube insert or tested monocoque attachment F.7.9 c. Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye (", + "parentRuleCode": "T.2.6", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.4.3", + "ruleContent": ") loaded in tension on the Shoulder Harness Mounting bar d. Wrap around physically tested hardware attached to a monocoque", + "parentRuleCode": "T.2.4", + "pageNumber": "60", + "isFromTOC": false + }, + { + "ruleCode": "T.2.6.4", + "ruleContent": "Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 10 mm or 3/8”", + "parentRuleCode": "T.2.6", + "pageNumber": "61", + "isFromTOC": false + }, + { + "ruleCode": "T.2.7", + "ruleContent": "Anti-Submarine Belt Mounting", + "parentRuleCode": "T.2", + "pageNumber": "61", + "isFromTOC": false + }, + { + "ruleCode": "T.2.7.1", + "ruleContent": "The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt Side View Angle no more than 20°", + "parentRuleCode": "T.2.7", + "pageNumber": "61", + "isFromTOC": false + }, + { + "ruleCode": "T.2.7.2", + "ruleContent": "The Anti-Submarine Belts of a 6 point harness must mount in one of the two: a. With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side View Angle up to 20° rearwards. The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart. b. With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming up around the groin to the release buckle.", + "parentRuleCode": "T.2.7", + "pageNumber": "61", + "isFromTOC": false + }, + { + "ruleCode": "T.2.7.3", + "ruleContent": "Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt Mounting Point(s) without touching any hole in the seat or any other intermediate structure until they reach: a. The release buckle for the 5 Point Harness mounting per T.2.7.1 b. The first point where the belt touches the driver’s body for the 6 Point Harness mounting per T.2.7.2", + "parentRuleCode": "T.2.7", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.7.4", + "ruleContent": "The Anti Submarine Belts must attach by one of the three: a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame c. Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. The belt must not be able to touch the ground.", + "parentRuleCode": "T.2.7", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.7.5", + "ruleContent": "Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 8 mm or 5/16”", + "parentRuleCode": "T.2.7", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.8", + "ruleContent": "Head Restraint", + "parentRuleCode": "T.2", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.8.1", + "ruleContent": "A Head Restraint must be provided to limit the rearward motion of the driver’s head.", + "parentRuleCode": "T.2.8", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.8.2", + "ruleContent": "The Head Restraint must be vertical or near vertical in side view.", + "parentRuleCode": "T.2.8", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.8.3", + "ruleContent": "All material and structure of the Head Restraint must be inside one or the two of: a. Rollover Protection Envelope F.1.13 b. Head Restraint Protection (if used) F.5.10", + "parentRuleCode": "T.2.8", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.8.4", + "ruleContent": "The Head Restraint, attachment and mounting must be strong enough to withstand a minimum force of: a. 900 N applied in a rearward direction b. 300 N applied in a lateral or vertical direction", + "parentRuleCode": "T.2.8", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.8.5", + "ruleContent": "For all drivers, the Head Restraint must be located and adjusted where: a. The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, with the driver in their normal driving position. b. The contact point of the back of the driver’s helmet on the Head Restraint is no less than 50 mm from any edge of the Head Restraint. Approximately 100 mm of longitudinal adjustment should accommodate range of specified drivers. Several Head Restraints with different thicknesses may be used", + "parentRuleCode": "T.2.8", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.8.6", + "ruleContent": "The Head Restraint padding must: a. Be an energy absorbing material that is one of the two: • Meets SFI Spec 45.2 • CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17 b. Have a minimum thickness of 38 mm c. Have a minimum width of 15 cm d. Meet one of the two: • minimum area of 235 cm AND minimum total height adjustment of 17.5 cm • minimum height of 28 cm e. Be covered with a thin, flexible material that contains a ~20 mm diameter inspection hole in a surface other than the front surface", + "parentRuleCode": "T.2.8", + "pageNumber": "62", + "isFromTOC": false + }, + { + "ruleCode": "T.2.9", + "ruleContent": "Roll Bar Padding Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec 45.1 or FIA 8857-2001.", + "parentRuleCode": "T.2", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3", + "ruleContent": "BRAKES", + "parentRuleCode": "T", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1", + "ruleContent": "Brake System", + "parentRuleCode": "T.3", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.1", + "ruleContent": "The vehicle must have a Brake System", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.2", + "ruleContent": "The Brake System must: a. Act on all four wheels b. Be operated by a single control c. Be capable of locking all four wheels", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.3", + "ruleContent": "The Brake System must have two independent hydraulic circuits A leak or failure at any point in the Brake System must maintain effective brake power on minimum two wheels", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.4", + "ruleContent": "Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM style reservoir", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.5", + "ruleContent": "A single brake acting on a limited slip differential may be used", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.6", + "ruleContent": "“Brake by Wire” systems are prohibited", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.7", + "ruleContent": "Unarmored plastic brake lines are prohibited", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.8", + "ruleContent": "The Brake System must be protected with scatter shields from failure of the drive train (see T.5.2) or from minor collisions.", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.9", + "ruleContent": "In side view any portion of the Brake System that is mounted on the sprung part of the vehicle must not project below the lower surface of the chassis", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.1.10", + "ruleContent": "Fasteners in the Brake System are Critical Fasteners, see T.8.2", + "parentRuleCode": "T.3.1", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.2", + "ruleContent": "Brake Pedal, Pedal Box and Mounting", + "parentRuleCode": "T.3", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.2.1", + "ruleContent": "The Brake Pedal must be one of: • Fabricated from steel or aluminum • Machined from steel, aluminum or titanium", + "parentRuleCode": "T.3.2", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.2.2", + "ruleContent": "The Brake Pedal and associated components design must withstand a minimum force of 2000 N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally", + "parentRuleCode": "T.3.2", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.2.3", + "ruleContent": "Failure of non-loadbearing components in the Brake System or pedal box must not interfere with Brake Pedal operation or Brake System function", + "parentRuleCode": "T.3.2", + "pageNumber": "63", + "isFromTOC": false + }, + { + "ruleCode": "T.3.2.4", + "ruleContent": "(EV only) Additional requirements for Electric Vehicles: a. The first 90% of the Brake Pedal travel may be used to regenerate energy without actuating the hydraulic brake system b. The remaining Brake Pedal travel must directly operate the hydraulic brake system. Brake energy regeneration may stay active", + "parentRuleCode": "T.3.2", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.3", + "ruleContent": "Brake Over Travel Switch - BOTS", + "parentRuleCode": "T.3", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.3.1", + "ruleContent": "The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the normal range will operate the switch", + "parentRuleCode": "T.3.3", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.3.2", + "ruleContent": "The BOTS must: a. Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or flip type) b. Hold if operated to the OFF position", + "parentRuleCode": "T.3.3", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.3.3", + "ruleContent": "Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2", + "parentRuleCode": "T.3.3", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.3.4", + "ruleContent": "The driver must not be able to reset the BOTS", + "parentRuleCode": "T.3.3", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.3.5", + "ruleContent": "The BOTS must be implemented with analog components, and not using programmable logic controllers, engine control units, or similar functioning digital controllers.", + "parentRuleCode": "T.3.3", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.4", + "ruleContent": "Brake Light", + "parentRuleCode": "T.3", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.4.1", + "ruleContent": "The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight.", + "parentRuleCode": "T.3.4", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.4.2", + "ruleContent": "The Brake Light must be: a. Red in color on a Black background b. Rectangular, triangular or near round shape with a minimum shining surface of 15 cm c. Mounted between the wheel centerline and driver’s shoulder level vertically and approximately on vehicle centerline laterally.", + "parentRuleCode": "T.3.4", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.4.3", + "ruleContent": "When LED lights are used without a diffuser, they must not be more than 20 mm apart.", + "parentRuleCode": "T.3.4", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.3.4.4", + "ruleContent": "If a single line of LEDs is used, the minimum length is 150 mm.", + "parentRuleCode": "T.3.4", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.4", + "ruleContent": "ELECTRONIC THROTTLE COMPONENTS", + "parentRuleCode": "T", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.4.1", + "ruleContent": "Applicability This section T.4 applies only for: • IC vehicles using Electronic Throttle Control (ETC) IC.4 • EV vehicles", + "parentRuleCode": "T.4", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2", + "ruleContent": "Accelerator Pedal Position Sensor - APPS", + "parentRuleCode": "T.4", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.1", + "ruleContent": "The Accelerator Pedal must operate the APPS T.1.4.1 a. Two springs must be used to return the foot pedal to 0% Pedal Travel b. Each spring must be capable of returning the pedal to 0% Pedal Travel with the other disconnected. The springs in the APPS are not acceptable pedal return springs.", + "parentRuleCode": "T.4.2", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.2", + "ruleContent": "Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS with two completely separate sensors in a single housing is acceptable.", + "parentRuleCode": "T.4.2", + "pageNumber": "64", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.3", + "ruleContent": "The APPS sensors must have different transfer functions which meet one of the two: • Each sensor has different gradients and/or offsets to the other(s). The circuit must have a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel • An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor configurations require prior approval. The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.4", + "ruleContent": "Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel require justification in the ETC Systems Form and may not be approved", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.5", + "ruleContent": "If an Implausibility occurs between the values of the APPSs and persists for more than 100 msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped completely. (EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping the power to the Motor(s) is sufficient.", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.6", + "ruleContent": "If three sensors are used, then in the case of an APPS failure, any two sensors that agree within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target and the 3rd APPS may be ignored.", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.7", + "ruleContent": "Each APPS must be able to be checked during Technical Inspection by having one of the two: • A separate detachable connector that enables a check of functions by unplugging it • An inline switchable breakout box available that allows disconnection of each APPS signal.", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.8", + "ruleContent": "The APPS signals must be sent directly to a controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay.", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.9", + "ruleContent": "Any failure of the APPS or APPS wiring must be detectable by the controller and must be treated like an Implausibility, see T.4.2.4 above", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.10", + "ruleContent": "When an analogue signal is used, the APPS will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.11", + "ruleContent": "When any kind of digital data transmission is used to transmit the APPS signal, a. The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works. b. The failures to be considered must include but are not limited to the failure of the APPS, APPS signals being out of range, corruption of the message and loss of messages and the associated time outs.", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.2.12", + "ruleContent": "The current rules are written to only apply to the APPS (pedal), but the integrity of the torque command signal is important in all stages.", + "parentRuleCode": "T.4.2", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.3", + "ruleContent": "Brake System Encoder - BSE", + "parentRuleCode": "T.4", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.3.1", + "ruleContent": "The vehicle must have a sensor or switch to measure brake pedal position or brake system pressure", + "parentRuleCode": "T.4.3", + "pageNumber": "65", + "isFromTOC": false + }, + { + "ruleCode": "T.4.3.2", + "ruleContent": "The BSE must be able to be checked during Technical Inspection by having one of: • A separate detachable connector(s) for any BSE signal(s) to the main ECU without affecting any other connections • An inline switchable breakout box available that allows disconnection of each BSE signal(s) to the main ECU without affecting any other connections", + "parentRuleCode": "T.4.3", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.4.3.3", + "ruleContent": "The BSE or switch signals must be sent directly to a controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) Motor(s) must be immediately stopped completely. (EV only) It is not necessary to completely deactivate the Tractive System, the motor controller(s) stopping power to the motor(s) is sufficient.", + "parentRuleCode": "T.4.3", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.4.3.4", + "ruleContent": "When an analogue signal is used, the BSE sensors will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", + "parentRuleCode": "T.4.3", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.4.3.5", + "ruleContent": "When any kind of digital data transmission is used to transmit the BSE signal: a. The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works. b. The failures modes must include but are not limited to the failure of the sensor, sensor signals being out of range, corruption of the message and loss of messages and the associated time outs. c. In all cases a sensor failure must immediately shutdown power to the motor(s).", + "parentRuleCode": "T.4.3", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.5", + "ruleContent": "POWERTRAIN", + "parentRuleCode": "T", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.5.1", + "ruleContent": "Transmission and Drive Any transmission and drivetrain may be used.", + "parentRuleCode": "T.5", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2", + "ruleContent": "Drivetrain Shields and Guards", + "parentRuleCode": "T.5", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.1", + "ruleContent": "Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions (CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case of radial failure", + "parentRuleCode": "T.5.2", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.2", + "ruleContent": "The final drivetrain shield must: a. Be made with solid material (not perforated) b. Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley c. Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: d. Cover the bottom of the chain or belt or rotating component when fuel, brake lines T.3.1.8, control, pressurized, electrical components are located below", + "parentRuleCode": "T.5.2", + "pageNumber": "66", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.3", + "ruleContent": "Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8", + "parentRuleCode": "T.5.2", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.4", + "ruleContent": "Frame Members or existing components that exceed the scatter shield material requirements may be used as part of the shield.", + "parentRuleCode": "T.5.2", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.5", + "ruleContent": "Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm)", + "parentRuleCode": "T.5.2", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.6", + "ruleContent": "If equipped, the engine drive sprocket cover may be used as part of the scatter shield system.", + "parentRuleCode": "T.5.2", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.7", + "ruleContent": "Chain Drive - Scatter shields for chains must: a. Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed) b. Have a minimum width equal to three times the width of the chain c. Be centered on the center line of the chain d. Stay aligned with the chain under all conditions", + "parentRuleCode": "T.5.2", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.8", + "ruleContent": "Non-metallic Belt Drive - Scatter shields for belts must: a. Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6 b. Have a minimum width that is equal to 1.7 times the width of the belt. c. Be centered on the center line of the belt d. Stay aligned with the belt under all conditions", + "parentRuleCode": "T.5.2", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.9", + "ruleContent": "Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or 1/4” minimum diameter Critical Fasteners, see T.8.2", + "parentRuleCode": "T.5.2", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.2.10", + "ruleContent": "Finger Guards a. Must cover any drivetrain parts that spin while the vehicle is stationary with the engine running. b. Must be made of material sufficient to resist finger forces. c. Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard.", + "parentRuleCode": "T.5.2", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.3", + "ruleContent": "Motor Protection (EV Only)", + "parentRuleCode": "T.5", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.3.1", + "ruleContent": "The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. The motor casing may be the original motor casing, a team built motor casing or the original casing with additional material added to achieve the minimum required thickness. • Minimum thickness for aluminum alloy 6061-T6: 3.0 mm If lower grade aluminum alloy is used, then the material must be thicker to provide an equivalent strength. • Minimum thickness for steel: 2.0 mm", + "parentRuleCode": "T.5.3", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.3.2", + "ruleContent": "A Scatter Shield must be included around the Motor(s) when one or the two: • The motor casing rotates around the stator • The motor case is perforated", + "parentRuleCode": "T.5.3", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.3.3", + "ruleContent": "The Motor Scatter Shield must be: • Made from aluminum alloy 6061-T6 or steel • Minimum thickness: 1.0 mm", + "parentRuleCode": "T.5.3", + "pageNumber": "67", + "isFromTOC": false + }, + { + "ruleCode": "T.5.4", + "ruleContent": "Coolant Fluid", + "parentRuleCode": "T.5", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.4.1", + "ruleContent": "Water cooled engines must use only plain water with no additives of any kind", + "parentRuleCode": "T.5.4", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.4.2", + "ruleContent": "Liquid coolant for electric motors, Accumulators or HV electronics must be one of: • plain water with no additives • oil", + "parentRuleCode": "T.5.4", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.4.3", + "ruleContent": "(EV only) Liquid coolant must not directly touch the cells in the Accumulator", + "parentRuleCode": "T.5.4", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.5", + "ruleContent": "System Sealing", + "parentRuleCode": "T.5", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.5.1", + "ruleContent": "Any cooling or lubrication system must be sealed to prevent leakage", + "parentRuleCode": "T.5.5", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.5.2", + "ruleContent": "The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type.", + "parentRuleCode": "T.5.5", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.5.3", + "ruleContent": "Flammable liquid and vapors or other leaks must not collect or contact the driver", + "parentRuleCode": "T.5.5", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.5.4", + "ruleContent": "Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at the locations: a. The lowest point of the chassis b. Rearward of the driver position, forward of a fuel tank or other liquid source c. If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is necessary", + "parentRuleCode": "T.5.5", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.5.5", + "ruleContent": "Absorbent material and open collection devices (regardless of material) are prohibited in compartments containing engine, drivetrain, exhaust and fuel systems below the highest point on the exhaust system.", + "parentRuleCode": "T.5.5", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.6", + "ruleContent": "Catch Cans", + "parentRuleCode": "T.5", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.6.1", + "ruleContent": "The vehicle must have separate containers (catch cans) to retain fluids from any vents from the powertrain systems.", + "parentRuleCode": "T.5.6", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.6.2", + "ruleContent": "Catch cans must be: a. Capable of containing boiling water without deformation b. Located rearwards of the Firewall below the driver’s shoulder level c. Positively retained, using no tie wraps or tape", + "parentRuleCode": "T.5.6", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.6.3", + "ruleContent": "Catch cans for the engine coolant system and engine lubrication system must have a minimum capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher", + "parentRuleCode": "T.5.6", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.6.4", + "ruleContent": "Catch cans for any vent on other systems containing liquid lubricant or coolant, including a differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid being contained or 0.5 liter, whichever is higher", + "parentRuleCode": "T.5.6", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.5.6.5", + "ruleContent": "Any catch can on the cooling system must vent through a hose with a minimum internal diameter of 3 mm down to the bottom levels of the Chassis.", + "parentRuleCode": "T.5.6", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.6", + "ruleContent": "PRESSURIZED SYSTEMS", + "parentRuleCode": "T", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1", + "ruleContent": "Compressed Gas Cylinders and Lines Any system on the vehicle that uses a compressed gas as an actuating medium must meet:", + "parentRuleCode": "T.6", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.1", + "ruleContent": "Working Gas - The working gas must be non flammable", + "parentRuleCode": "T.6.1", + "pageNumber": "68", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.2", + "ruleContent": "Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed and built for the pressure being used, certified by an accredited testing laboratory in the country of its origin, and labeled or stamped appropriately.", + "parentRuleCode": "T.6.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.3", + "ruleContent": "Pressure Regulation - The pressure regulator must be mounted directly onto the gas cylinder/tank", + "parentRuleCode": "T.6.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.4", + "ruleContent": "Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible operating pressure of the system.", + "parentRuleCode": "T.6.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.5", + "ruleContent": "Insulation - The gas cylinder/tank must be insulated from any heat sources", + "parentRuleCode": "T.6.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.6", + "ruleContent": "Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system must meet one of the two: • Made from metal • Meet the thermal protection requirements of T.1.6.3", + "parentRuleCode": "T.6.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.7", + "ruleContent": "Cylinder Location - The gas cylinder/tank and the pressure regulator must be: a. Securely mounted inside the Chassis b. Located outside of the Cockpit c. In a position below the height of the Shoulder Belt Mount T.2.6 d. Aligned so the axis of the gas cylinder/tank does not point at the driver", + "parentRuleCode": "T.6.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.8", + "ruleContent": "Protection – The gas cylinder/tank and lines must be protected from rollover, collision from any direction, or damage resulting from the failure of rotating equipment", + "parentRuleCode": "T.6.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.1.9", + "ruleContent": "The driver must be protected from failure of the cylinder/tank and regulator", + "parentRuleCode": "T.6.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.2", + "ruleContent": "High Pressure Hydraulic Pumps and Lines This section T.6.2 does not apply to Brake lines or hydraulic clutch lines", + "parentRuleCode": "T.6", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.2.1", + "ruleContent": "The driver and anyone standing outside the vehicle must be shielded from any hydraulic pumps and lines with line pressures of 2100 kPa or higher.", + "parentRuleCode": "T.6.2", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.6.2.2", + "ruleContent": "The shields must be steel or aluminum with a minimum thickness of 1 mm.", + "parentRuleCode": "T.6.2", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.7", + "ruleContent": "BODYWORK AND AERODYNAMIC DEVICES", + "parentRuleCode": "T", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.7.1", + "ruleContent": "Aerodynamic Devices", + "parentRuleCode": "T.7", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.7.1.1", + "ruleContent": "Aerodynamic Device A part on the vehicle which guides airflow for purposes including generation of downforce and/or change of drag. Examples include but are not limited to: wings, undertray, splitter, endplates, vanes", + "parentRuleCode": "T.7.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.7.1.2", + "ruleContent": "No power device may be used to move or remove air from under the vehicle. Power ground effects are strictly prohibited.", + "parentRuleCode": "T.7.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.7.1.3", + "ruleContent": "All Aerodynamic Devices must meet: a. The mounting system provides sufficient rigidity in the static condition b. The Aerodynamic Devices do not oscillate or move excessively when the vehicle is moving. Refer to IN.8.2", + "parentRuleCode": "T.7.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.7.1.4", + "ruleContent": "All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. This may be the radius of the edges themselves, or additional permanently attached pieces designed to meet this requirement.", + "parentRuleCode": "T.7.1", + "pageNumber": "69", + "isFromTOC": false + }, + { + "ruleCode": "T.7.1.5", + "ruleContent": "Other edges that a person may touch must not be sharp", + "parentRuleCode": "T.7.1", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.2", + "ruleContent": "Bodywork", + "parentRuleCode": "T.7", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.2.1", + "ruleContent": "Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device", + "parentRuleCode": "T.7.2", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.2.2", + "ruleContent": "Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic Device if is designed to, or may possibly, produce force due to aerodynamic effects", + "parentRuleCode": "T.7.2", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.2.3", + "ruleContent": "Bodywork must not contain openings into the cockpit from the front of the vehicle back to the Main Hoop or Firewall. The cockpit opening and minimal openings around the front suspension components are allowed.", + "parentRuleCode": "T.7.2", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.2.4", + "ruleContent": "All forward facing edges on the Bodywork that could contact people, including the nose, must have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more relative to the forward direction, along the top, sides and bottom of all affected edges.", + "parentRuleCode": "T.7.2", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.3", + "ruleContent": "Measurement", + "parentRuleCode": "T.7", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.3.1", + "ruleContent": "All Aerodynamic Device limitations are measured: a. With the wheels pointing in the straight ahead position b. Without a driver in the vehicle The intent is to standardize the measurement, see GR.6.4.1", + "parentRuleCode": "T.7.3", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.3.2", + "ruleContent": "Head Restraint Plane A transverse vertical plane through the rearmost portion of the front face of the driver head restraint support, excluding any padding, set (if adjustable) in its fully rearward position", + "parentRuleCode": "T.7.3", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.3.3", + "ruleContent": "Rear Aerodynamic Zone The volume that is: • Rearward of the Head Restraint Plane • Inboard of two vertical planes parallel to the centerline of the chassis touching the inside of the rear tires at the height of the hub centerline", + "parentRuleCode": "T.7.3", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.4", + "ruleContent": "Location Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1", + "parentRuleCode": "T.7", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.5", + "ruleContent": "Length In plan view, any part of any Aerodynamic Device must be: a. No more than 700 mm forward of the fronts of the front tires b. No more than 250 mm rearward of the rear of the rear tires", + "parentRuleCode": "T.7", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.6", + "ruleContent": "Width In plan view, any part of any Aerodynamic Device must be:", + "parentRuleCode": "T.7", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.6.1", + "ruleContent": "When forward of the centerline of the front wheel axles: Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of the front tires at the height of the hubs.", + "parentRuleCode": "T.7.6", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.6.2", + "ruleContent": "When between the centerlines of the front and rear wheel axles: Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height of the wheel centers", + "parentRuleCode": "T.7.6", + "pageNumber": "70", + "isFromTOC": false + }, + { + "ruleCode": "T.7.6.3", + "ruleContent": "When rearward of the centerline of the rear wheel axles: In the Rear Aerodynamic Zone", + "parentRuleCode": "T.7.6", + "pageNumber": "71", + "isFromTOC": false + }, + { + "ruleCode": "T.7.7", + "ruleContent": "Height", + "parentRuleCode": "T.7", + "pageNumber": "71", + "isFromTOC": false + }, + { + "ruleCode": "T.7.7.1", + "ruleContent": "Any part of any Aerodynamic Device that is located: a. In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground b. Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the ground c. Forward of the centerline of the front wheel axles and outboard of two vertical planes parallel to the centerline of the chassis touching the inside of the front tires at the height of the hubs must be no higher than 250 mm above the ground", + "parentRuleCode": "T.7.7", + "pageNumber": "71", + "isFromTOC": false + }, + { + "ruleCode": "T.7.7.2", + "ruleContent": "Bodywork height is not restricted when the Bodywork is located: • Between the transverse vertical planes positioned at the front and rear axle centerlines • Inside two vertical fore and aft planes 400 mm outboard from the centerline on each side of the vehicle", + "parentRuleCode": "T.7.7", + "pageNumber": "71", + "isFromTOC": false + }, + { + "ruleCode": "T.8", + "ruleContent": "FASTENERS", + "parentRuleCode": "T", + "pageNumber": "71", + "isFromTOC": false + }, + { + "ruleCode": "T.8.1", + "ruleContent": "Critical Fasteners A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule", + "parentRuleCode": "T.8", + "pageNumber": "71", + "isFromTOC": false + }, + { + "ruleCode": "T.8.2", + "ruleContent": "Critical Fastener Requirements", + "parentRuleCode": "T.8", + "pageNumber": "71", + "isFromTOC": false + }, + { + "ruleCode": "T.8.2.1", + "ruleContent": "Any Critical Fastener must meet, at minimum, one of these: a. SAE Grade 5 b. Metric Class 8.8 c. AN/MS Specifications d. Equivalent to or better than above, as approved by a Rules Question or at Technical Inspection", + "parentRuleCode": "T.8.2", + "pageNumber": "71", + "isFromTOC": false + }, + { + "ruleCode": "T.8.2.2", + "ruleContent": "All threaded Critical Fasteners must be one of the two: • Hex head • Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts)", + "parentRuleCode": "T.8.2", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.8.2.3", + "ruleContent": "All Critical Fasteners must be secured from unintentional loosening with Positive Locking Mechanisms see T.8.3", + "parentRuleCode": "T.8.2", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.8.2.4", + "ruleContent": "A minimum of two full threads must project from any lock nut.", + "parentRuleCode": "T.8.2", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.8.2.5", + "ruleContent": "Some Critical Fastener applications have additional requirements that are provided in the applicable section.", + "parentRuleCode": "T.8.2", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.8.3", + "ruleContent": "Positive Locking Mechanisms", + "parentRuleCode": "T.8", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.8.3.1", + "ruleContent": "Positive Locking Mechanisms are defined as those which: a. Technical Inspectors / team members can see that the device/system is in place (visible). b. Do not rely on the clamping force to apply the locking or anti vibration feature. Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming completely loose", + "parentRuleCode": "T.8.3", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.8.3.2", + "ruleContent": "Examples of acceptable Positive Locking Mechanisms include, but are not limited to: a. Correctly installed safety wiring b. Cotter pins c. Nylon lock nuts (where temperature does not exceed 80°C) d. Prevailing torque lock nuts Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT meet the positive locking requirement", + "parentRuleCode": "T.8.3", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.8.3.3", + "ruleContent": "If the Positive Locking Mechanism is by prevailing torque lock nuts: a. Locking fasteners must be in as new condition b. A supply of replacement fasteners must be presented in Technical Inspection, including any attachment method", + "parentRuleCode": "T.8.3", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.8.4", + "ruleContent": "Requirements for All Fasteners Adjustable tie rod ends must be constrained with a jam nut to prevent loosening.", + "parentRuleCode": "T.8", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.9", + "ruleContent": "ELECTRICAL EQUIPMENT", + "parentRuleCode": "T", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.9.1", + "ruleContent": "Definitions", + "parentRuleCode": "T.9", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.9.1.1", + "ruleContent": "High Voltage – HV Any voltage more than 60 V DC or 25 V AC RMS", + "parentRuleCode": "T.9.1", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.9.1.2", + "ruleContent": "Low Voltage - LV Any voltage less than and including 60 V DC or 25 V AC RMS", + "parentRuleCode": "T.9.1", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.9.1.3", + "ruleContent": "Normally Open A type of electrical relay or contactor that allows current flow only in the energized state", + "parentRuleCode": "T.9.1", + "pageNumber": "72", + "isFromTOC": false + }, + { + "ruleCode": "T.9.2", + "ruleContent": "Low Voltage Batteries", + "parentRuleCode": "T.9", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.2.1", + "ruleContent": "All Low Voltage Batteries and onboard power supplies must be securely mounted inside the Chassis below the height of the Shoulder Belt Mount T.2.6", + "parentRuleCode": "T.9.2", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.2.2", + "ruleContent": "All Low Voltage batteries must have Overcurrent Protection that trips at or below the maximum specified discharge current of the cells", + "parentRuleCode": "T.9.2", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.2.3", + "ruleContent": "The hot (ungrounded) terminal must be insulated.", + "parentRuleCode": "T.9.2", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.2.4", + "ruleContent": "Any wet cell battery located in the driver compartment must be enclosed in a nonconductive marine type container or equivalent.", + "parentRuleCode": "T.9.2", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.2.5", + "ruleContent": "Batteries or battery packs based on lithium chemistry must meet one of the two: a. Have a rigid, sturdy casing made from Nonflammable Material b. A commercially available battery designed as an OEM style replacement", + "parentRuleCode": "T.9.2", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.2.6", + "ruleContent": "All batteries using chemistries other than lead acid must be presented at Technical Inspection with markings identifying it for comparison to a datasheet or other documentation proving the pack and supporting electronics meet all rules requirements", + "parentRuleCode": "T.9.2", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.3", + "ruleContent": "Master Switches Each Master Switch ( IC.9.3 / EV.7.9 ) must meet:", + "parentRuleCode": "T.9", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.3.1", + "ruleContent": "Location a. On the driver’s right hand side of the vehicle b. In proximity to the Main Hoop c. At the driver's shoulder height d. Able to be easily operated from outside the vehicle", + "parentRuleCode": "T.9.3", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.3.2", + "ruleContent": "Characteristics a. Be of the rotary mechanical type b. Be rigidly mounted to the vehicle and must not be removed during maintenance c. Mounted where the rotary axis of the key is near horizontal and across the vehicle d. The ON position must be in the horizontal position and must be marked accordingly e. The OFF position must be clearly marked f. (EV Only) Operated with a red removable key that must only be removable in the electrically open position", + "parentRuleCode": "T.9.3", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.4", + "ruleContent": "Inertia Switch", + "parentRuleCode": "T.9", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.4.1", + "ruleContent": "Inertia Switch Requirement • (EV) Must have an Inertia Switch • (IC) Should have an Inertia Switch", + "parentRuleCode": "T.9.4", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.4.2", + "ruleContent": "The Inertia Switch must be: a. A Sensata Resettable Crash Sensor or equivalent b. Mechanically and rigidly attached to the vehicle c. Removable to test functionality", + "parentRuleCode": "T.9.4", + "pageNumber": "73", + "isFromTOC": false + }, + { + "ruleCode": "T.9.4.3", + "ruleContent": "Inertia Switch operation: a. Must trigger due to a longitudinal impact load which decelerates the vehicle at between 8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the Sensata device) b. Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered c. Must latch until manually reset d. May be reset by the driver from inside the driver's cell", + "parentRuleCode": "T.9.4", + "pageNumber": "74", + "isFromTOC": false + }, + { + "ruleCode": "VE", + "ruleContent": "VEHICLE AND DRIVER EQUIPMENT", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1", + "ruleContent": "VEHICLE IDENTIFICATION", + "parentRuleCode": "VE", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.1", + "ruleContent": "Vehicle Number", + "parentRuleCode": "VE.1", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.1.1", + "ruleContent": "The assigned vehicle number must appear on the vehicle as follows: a. Locations: in three places, on the front of the chassis and the left and right sides b. Height: 150 mm minimum c. Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive numbers) d. Stroke Width and Spacing between numbers: 18 mm minimum e. Color: White numbers on a black background OR black numbers on a white background f. Background: round, oval, square or rectangular g. Spacing: 25 mm minimum between the edge of the numbers and the edge of the background h. The numbers must not be obscured by parts of the vehicle", + "parentRuleCode": "VE.1.1", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.1.2", + "ruleContent": "Additional letters or numerals must not show before or after the vehicle number", + "parentRuleCode": "VE.1.1", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.2", + "ruleContent": "School Name Each vehicle must clearly display the school name. a. Abbreviations are allowed if unique and generally recognized b. The name must be in Roman characters minimum 50 mm high on the left and right sides of the vehicle. c. The characters must be put on a high contrast background in an easily visible location d. The school name may also appear in non Roman characters, but the Roman character version must be uppermost on the sides.", + "parentRuleCode": "VE.1", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.3", + "ruleContent": "SAE Logo The SAE International Logo must be displayed on the front and/or the left and right sides of the vehicle in a prominent location.", + "parentRuleCode": "VE.1", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.4", + "ruleContent": "Inspection Sticker The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: • A clear and unobstructed area, minimum 25 cm wide x 20 cm high • Located on the upper front surface of the nose along the vehicle centerline", + "parentRuleCode": "VE.1", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.5", + "ruleContent": "Transponder / RFID Tag", + "parentRuleCode": "VE.1", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.5.1", + "ruleContent": "Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the specified type(s)", + "parentRuleCode": "VE.1.5", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.1.5.2", + "ruleContent": "Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information and mounting details", + "parentRuleCode": "VE.1.5", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.2", + "ruleContent": "VEHICLE EQUIPMENT", + "parentRuleCode": "VE", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.1", + "ruleContent": "Jacking Point", + "parentRuleCode": "VE.2", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.1.1", + "ruleContent": "A Jacking Point must be provided at the rear of the vehicle", + "parentRuleCode": "VE.2.1", + "pageNumber": "75", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.1.2", + "ruleContent": "The Jacking Point must be: a. Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the FSAE Online website b. Visible to a person standing 1 m behind the vehicle c. Color: Orange d. Oriented laterally and perpendicular to the centerline of the vehicle e. Made from round, 25 - 30 mm OD aluminum or steel tube f. Exposed around the lower 180° of its circumference over a minimum length of 280 mm g. Access from the rear of the tube must be unobstructed for 300 mm or more of its length h. The height of the tube must allow 75 mm minimum clearance from the bottom of the tube to the ground i. When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the wheels do not touch the ground when they are in full rebound", + "parentRuleCode": "VE.2.1", + "pageNumber": "76", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.2", + "ruleContent": "Push Bar Each vehicle must have a removable device which attaches to the rear of the vehicle that: a. Allows two people, standing erect behind the vehicle, to push the vehicle around the competition site b. Is capable of slowing and stopping the forward motion of the vehicle and pulling it rearwards", + "parentRuleCode": "VE.2", + "pageNumber": "76", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.3", + "ruleContent": "Fire Extinguisher", + "parentRuleCode": "VE.2", + "pageNumber": "76", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.3.1", + "ruleContent": "Each team must have two or more fire extinguishers. a. One extinguisher must readily be available in the team’s paddock area b. One extinguisher must accompany the vehicle when moved using the Push Bar A commercially available on board fire system may be used instead of the fire extinguisher that accompanies the vehicle", + "parentRuleCode": "VE.2.3", + "pageNumber": "76", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.3.2", + "ruleContent": "Hand held fire extinguishers must NOT be mounted on or in the vehicle", + "parentRuleCode": "VE.2.3", + "pageNumber": "76", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.3.3", + "ruleContent": "Each fire extinguisher must meet these: a. Capacity: 0.9 kg (2 lbs) b. Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and Halon extinguishers and systems are prohibited. c. Equipped with a manufacturer installed pressure/charge gauge. d. Minimum acceptable ratings: • USA, Canada & Brazil: 10BC or 1A 10BC • Europe: 34B or 5A 34B • Australia: 20BE or 1A 10BE e. Extinguishers of larger capacity (higher numerical ratings) are acceptable.", + "parentRuleCode": "VE.2.3", + "pageNumber": "76", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.4", + "ruleContent": "Electrical Equipment (EV Only) These items must accompany the vehicle at all times: • Two pairs of High Voltage insulating gloves • A multimeter", + "parentRuleCode": "VE.2", + "pageNumber": "76", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.5", + "ruleContent": "Camera Mounts", + "parentRuleCode": "VE.2", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.5.1", + "ruleContent": "The mounts for video/photographic cameras must be of a safe and secure design.", + "parentRuleCode": "VE.2.5", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.5.2", + "ruleContent": "All camera installations must be approved at Technical Inspection.", + "parentRuleCode": "VE.2.5", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.5.3", + "ruleContent": "Helmet mounted cameras and helmet camera mounts are prohibited.", + "parentRuleCode": "VE.2.5", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.5.4", + "ruleContent": "The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a minimum of two points on different sides of the camera body.", + "parentRuleCode": "VE.2.5", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.2.5.5", + "ruleContent": "If a tether is used to restrain the camera, the tether length must be limited to prevent contact with the driver.", + "parentRuleCode": "VE.2.5", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3", + "ruleContent": "DRIVER EQUIPMENT", + "parentRuleCode": "VE", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.1", + "ruleContent": "General", + "parentRuleCode": "VE.3", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.1.1", + "ruleContent": "Any Driver Equipment: a. Must be in good condition with no tears, rips, open seams, areas of significant wear, abrasions or stains which might compromise performance. b. Must fit properly c. May be inspected at any time", + "parentRuleCode": "VE.3.1", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.1.2", + "ruleContent": "Flame Resistant Material For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, Polybenzimidazole (common name PBI) and Proban.", + "parentRuleCode": "VE.3.1", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.1.3", + "ruleContent": "Synthetic Material – Prohibited Shirts, socks or other undergarments (not to be confused with flame resistant underwear) made from nylon or any other synthetic material which could melt when exposed to high heat are prohibited.", + "parentRuleCode": "VE.3.1", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.1.4", + "ruleContent": "Officials may impound any non approved Driver Equipment until the end of the competition.", + "parentRuleCode": "VE.3.1", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.2", + "ruleContent": "Helmet", + "parentRuleCode": "VE.3", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.2.1", + "ruleContent": "The driver must wear a helmet which: a. Is closed face with an integral, immovable chin guard b. Contains an integrated visor/face shield supplied with the helmet c. Meets an approved standard d. Is properly labeled for that standard", + "parentRuleCode": "VE.3.2", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.2.2", + "ruleContent": "Acceptable helmet standards are listed below. Any additional approved standards are shown on the Technical Inspection Form or the FAQ on the FSAE Online website a. Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, SA2025 b. SFI Specs 31.1/2015, 41.1/2015 c. FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer)", + "parentRuleCode": "VE.3.2", + "pageNumber": "77", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.3", + "ruleContent": "Driver Gear The driver must wear:", + "parentRuleCode": "VE.3", + "pageNumber": "78", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.3.1", + "ruleContent": "Driver Suit A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers the body from the neck to the ankles and the wrists. Each suit must meet one or more of these standards and be labeled as such: • SFI 3.2A/5 (or higher ex: /10, /15, /20) • SFI 3.4/5 (or higher ex: /10, /15, /20) • FIA Standard 1986 • FIA Standard 8856-2000 • FIA Standard 8856-2018", + "parentRuleCode": "VE.3.3", + "pageNumber": "78", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.3.2", + "ruleContent": "Underclothing All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under their approved Driver Suit.", + "parentRuleCode": "VE.3.3", + "pageNumber": "78", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.3.3", + "ruleContent": "Balaclava A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame Resistant Material", + "parentRuleCode": "VE.3.3", + "pageNumber": "78", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.3.4", + "ruleContent": "Socks Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit and the Shoes.", + "parentRuleCode": "VE.3.3", + "pageNumber": "78", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.3.5", + "ruleContent": "Shoes Shoes or boots made from Flame Resistant Material that meet an approved standard and labeled as such: • SFI Spec 3.3 • FIA Standard 8856-2000 • FIA Standard 8856-2018", + "parentRuleCode": "VE.3.3", + "pageNumber": "78", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.3.6", + "ruleContent": "Gloves Gloves made from Flame Resistant Material. Gloves of all leather construction or fire retardant gloves constructed using leather palms with no insulating Flame Resistant Material underneath are not acceptable.", + "parentRuleCode": "VE.3.3", + "pageNumber": "78", + "isFromTOC": false + }, + { + "ruleCode": "VE.3.3.7", + "ruleContent": "Arm Restraints a. Arm restraints must be worn in a way that the driver can release them and exit the vehicle unassisted regardless of the vehicle’s position. b. Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec 3.3 and labeled as such meet this requirement.", + "parentRuleCode": "VE.3.3", + "pageNumber": "78", + "isFromTOC": false + }, + { + "ruleCode": "IC", + "ruleContent": "INTERNAL COMBUSTION ENGINE VEHICLES", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.1", + "ruleContent": "GENERAL REQUIREMENTS", + "parentRuleCode": "IC", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.1.1", + "ruleContent": "Engine Limitations", + "parentRuleCode": "IC.1", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.1.1.1", + "ruleContent": "The engine(s) used to power the vehicle must: a. Be a piston engine(s) using a four stroke primary heat cycle b. Have a total combined displacement less than or equal to 710 cc per cycle.", + "parentRuleCode": "IC.1.1", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.1.1.2", + "ruleContent": "Hybrid powertrains, such as those using electric motors running off stored energy, are prohibited.", + "parentRuleCode": "IC.1.1", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.1.1.3", + "ruleContent": "All waste/rejected heat from the primary heat cycle may be used. The method of conversion is not limited to the four stroke cycle.", + "parentRuleCode": "IC.1.1", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.1.1.4", + "ruleContent": "The engine may be modified within the restrictions of the rules.", + "parentRuleCode": "IC.1.1", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.1.2", + "ruleContent": "Air Intake and Fuel System Location All parts of the engine air system and fuel control, delivery and storage systems (including the throttle or carburetor, and the complete air intake system, including the air cleaner and any air boxes) must lie inside the Tire Surface Envelope F.1.14", + "parentRuleCode": "IC.1", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2", + "ruleContent": "AIR INTAKE SYSTEM", + "parentRuleCode": "IC", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.1", + "ruleContent": "General", + "parentRuleCode": "IC.2", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.2", + "ruleContent": "Intake System Location", + "parentRuleCode": "IC.2", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.2.1", + "ruleContent": "The Intake System must meet IC.1.2", + "parentRuleCode": "IC.2.2", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.2.2", + "ruleContent": "Any portion of the air intake system that is less than 350 mm above the ground must be shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable.", + "parentRuleCode": "IC.2.2", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.3", + "ruleContent": "Intake System Mounting", + "parentRuleCode": "IC.2", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.3.1", + "ruleContent": "The intake manifold must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. • Hose clamps, plastic ties, or safety wires do not meet this requirement. • The use of rubber bushings or hose is acceptable for creating and sealing air passages, but is not a structural attachment.", + "parentRuleCode": "IC.2.3", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.3.2", + "ruleContent": "Threaded fasteners used to secure and/or seal the intake manifold must have a Positive Locking Mechanism, see T.8.3.", + "parentRuleCode": "IC.2.3", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.3.3", + "ruleContent": "Intake systems with significant mass or cantilever from the cylinder head must be supported to prevent stress to the intake system. a. Supports to the engine must be rigid. b. Supports to the Chassis must incorporate some isolation to allow for engine movement and chassis flex.", + "parentRuleCode": "IC.2.3", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.4", + "ruleContent": "Intake System Restrictor", + "parentRuleCode": "IC.2", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.4.1", + "ruleContent": "All airflow to the engine(s) must pass through a single circular restrictor in the intake system.", + "parentRuleCode": "IC.2.4", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.4.2", + "ruleContent": "The only allowed sequence of components is: a. For naturally aspirated engines, the sequence must be: throttle body, restrictor, and engine. b. For turbocharged or supercharged engines, the sequence must be: restrictor, compressor, throttle body, engine.", + "parentRuleCode": "IC.2.4", + "pageNumber": "79", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.4.3", + "ruleContent": "The maximum restrictor diameters at any time during the competition are: a. Gasoline fueled vehicles 20.0 mm b. E85 fueled vehicles 19.0 mm", + "parentRuleCode": "IC.2.4", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.4.4", + "ruleContent": "The restrictor must be located to facilitate measurement during Technical Inspection", + "parentRuleCode": "IC.2.4", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.4.5", + "ruleContent": "The circular restricting cross section must NOT be movable or flexible in any way", + "parentRuleCode": "IC.2.4", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.4.6", + "ruleContent": "The restrictor must not be part of the movable portion of a barrel throttle body.", + "parentRuleCode": "IC.2.4", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.5", + "ruleContent": "Turbochargers & Superchargers", + "parentRuleCode": "IC.2", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.5.1", + "ruleContent": "The intake air may be cooled with an intercooler (a charge air cooler). a. It must be located downstream of the throttle body b. Only ambient air may be used to remove heat from the intercooler system c. Air to air and water to air intercoolers are permitted d. The coolant of a water to air intercooler system must meet T.5.4.1", + "parentRuleCode": "IC.2.5", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.5.2", + "ruleContent": "If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be positioned in the intake system as shown in IC.2.4.2.b", + "parentRuleCode": "IC.2.5", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.5.3", + "ruleContent": "Plenums must not be located anywhere upstream of the throttle body For the purpose of definition, a plenum is any tank or volume that is a significant enlargement of the normal intake runner system. Teams may submit their designs via a Rules Question for review prior to competition if the legality of their proposed system is in doubt.", + "parentRuleCode": "IC.2.5", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.5.4", + "ruleContent": "The maximum allowable area of the inner diameter of the intake runner system between the restrictor and throttle body is 2825 mm", + "parentRuleCode": "IC.2.5", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.2.6", + "ruleContent": "Connections to Intake Any crankcase or engine lubrication vent lines routed to the intake system must be connected upstream of the intake system restrictor.", + "parentRuleCode": "IC.2", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.3", + "ruleContent": "THROTTLE", + "parentRuleCode": "IC", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.3.1", + "ruleContent": "General", + "parentRuleCode": "IC.3", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.3.1.1", + "ruleContent": "The vehicle must have a carburetor or throttle body. a. The carburetor or throttle body may be of any size or design. b. Boosted applications must not use carburetors.", + "parentRuleCode": "IC.3.1", + "pageNumber": "80", + "isFromTOC": false + }, + { + "ruleCode": "IC.3.2", + "ruleContent": "Throttle Actuation Method The throttle may be operated: a. Mechanically by a cable or rod system IC.3.3 b. By Electronic Throttle Control IC.4", + "parentRuleCode": "IC.3", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.3.3", + "ruleContent": "Throttle Actuation – Mechanical", + "parentRuleCode": "IC.3", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.3.3.1", + "ruleContent": "The throttle cable or rod must: a. Have smooth operation b. Have no possibility of binding or sticking c. Be minimum 50 mm from any exhaust system component and out of the exhaust stream d. Be protected from being bent or kinked by the driver’s foot when it is operated by the driver or when the driver enters or exits the vehicle", + "parentRuleCode": "IC.3.3", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.3.3.2", + "ruleContent": "The throttle actuation system must use two or more return springs located at the throttle body. Throttle Position Sensors (TPS) are NOT acceptable as return springs", + "parentRuleCode": "IC.3.3", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.3.3.3", + "ruleContent": "Failure of any component of the throttle system must not prevent the throttle returning to the closed position.", + "parentRuleCode": "IC.3.3", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4", + "ruleContent": "ELECTRONIC THROTTLE CONTROL This section IC.4 applies only when Electronic Throttle Control is used An Electronic Throttle Control (ETC) system may be used. This is a device or system which may change the engine throttle setting based on various inputs.", + "parentRuleCode": "IC", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.1", + "ruleContent": "General Design", + "parentRuleCode": "IC.4", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.1.1", + "ruleContent": "The electronic throttle must automatically close (return to idle) when power is removed.", + "parentRuleCode": "IC.4.1", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.1.2", + "ruleContent": "The electronic throttle must use minimum two sources of energy capable of returning the throttle to the idle position. a. One of the sources may be the device (such as a DC motor) that normally operates the throttle b. The other device(s) must be a throttle return spring that can return the throttle to the idle position if loss of actuator power occurs. c. Springs in the TPS are not acceptable throttle return springs", + "parentRuleCode": "IC.4.1", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.1.3", + "ruleContent": "The ETC system may blip the throttle during downshifts when proven that unintended acceleration can be prevented. Document the functional analysis in the ETC Systems Form", + "parentRuleCode": "IC.4.1", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.2", + "ruleContent": "Commercial ETC System", + "parentRuleCode": "IC.4", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.2.1", + "ruleContent": "An ETC system that is commercially available, but does not comply with the regulations, may be used, if approved prior to the event.", + "parentRuleCode": "IC.4.2", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.2.2", + "ruleContent": "To obtain approval, submit a Rules Question which includes: • Which ETC system the team is seeking approval to use. • The specific ETC rule(s) that the commercial system deviates from. • Sufficient technical details of these deviations to determine the acceptability of the commercial system.", + "parentRuleCode": "IC.4.2", + "pageNumber": "81", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.3", + "ruleContent": "Documentation", + "parentRuleCode": "IC.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.3.1", + "ruleContent": "The ETC Notice of Intent: • Must be submitted to give the intent to run ETC • May be used to screen which teams are allowed to use ETC", + "parentRuleCode": "IC.4.3", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.3.2", + "ruleContent": "The ETC Systems Form must be submitted in order to use ETC", + "parentRuleCode": "IC.4.3", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.3.3", + "ruleContent": "Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document Requirements", + "parentRuleCode": "IC.4.3", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.3.4", + "ruleContent": "Late or non submission will prevent use of ETC, see DR.3.4.1", + "parentRuleCode": "IC.4.3", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4", + "ruleContent": "Throttle Position Sensor - TPS", + "parentRuleCode": "IC.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.1", + "ruleContent": "The TPS must measure the position of the throttle or the throttle actuator. Throttle position is defined as percent of travel from fully closed to wide open where 0% is fully closed and 100% is fully open.", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.2", + "ruleContent": "Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and reference lines only if effects of supply and/or reference line voltage offsets can be detected.", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.3", + "ruleContent": "Implausibility is defined as a deviation of more than 10% throttle position between the sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be considered on a case by case basis and require justification in the ETC Systems Form", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.4", + "ruleContent": "If an Implausibility occurs between the values of the two TPSs and persists for more than 100 msec, the power to the electronic throttle must be immediately shut down.", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.5", + "ruleContent": "If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% throttle position may be used to define the throttle position target and the 3rd TPS may be ignored.", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.6", + "ruleContent": "Each TPS must be able to be checked during Technical Inspection by having one of: a. A separate detachable connector(s) for any TPS signal(s) to the main ECU without affecting any other connections b. An inline switchable breakout box available that allows disconnection of each TPS signal(s) to the main ECU without affecting any other connections", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.7", + "ruleContent": "The TPS signals must be sent directly to the throttle controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring must be detectable by the controller and must be treated like Implausibility.", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.8", + "ruleContent": "When an analogue signal is used, the TPSs will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.4.9", + "ruleContent": "When any kind of digital data transmission is used to transmit the TPS signal, a. The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works. b. The failures to be considered must include but are not limited to the failure of the TPS, TPS signals being out of range, corruption of the message and loss of messages and the associated time outs.", + "parentRuleCode": "IC.4.4", + "pageNumber": "82", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.5", + "ruleContent": "Accelerator Pedal Position Sensor - APPS Refer to T.4.2 for specific requirements of the APPS", + "parentRuleCode": "IC.4", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.6", + "ruleContent": "Brake System Encoder - BSE Refer to T.4.3 for specific requirements of the BSE", + "parentRuleCode": "IC.4", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.7", + "ruleContent": "Throttle Plausibility Checks", + "parentRuleCode": "IC.4", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.7.1", + "ruleContent": "Brakes and Throttle Position a. The power to the electronic throttle must be shut down if the mechanical brakes are operated and the TPS signals that the throttle is open by more than a permitted amount for more than one second. b. An interval of one second is allowed for the throttle to close (return to idle). Failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system. c. The permitted relationship between BSE and TPS may be defined by the team using a table. This functionality must be demonstrated at Technical Inspection.", + "parentRuleCode": "IC.4.7", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.7.2", + "ruleContent": "Throttle Position vs Target a. The power to the electronic throttle must be immediately shut down, if throttle position differs by more than 10% from the expected target TPS position for more than one second. b. An interval of one second is allowed for the difference to reduce to less than 10%, failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system. c. An error in TPS position and the resultant system shutdown must be demonstrated at Technical Inspection. Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. System states displayed using calibration software must be accompanied by a detailed explanation of the control system.", + "parentRuleCode": "IC.4.7", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.7.3", + "ruleContent": "The electronic throttle and fuel injector/ignition system shutdown must stay active until the TPS signals indicate the throttle is at or below the unpowered default position for one second or longer.", + "parentRuleCode": "IC.4.7", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.8", + "ruleContent": "Brake System Plausibility Device - BSPD", + "parentRuleCode": "IC.4", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.8.1", + "ruleContent": "A standalone nonprogrammable circuit must be used to monitor the electronic throttle control. The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7", + "parentRuleCode": "IC.4.8", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.8.2", + "ruleContent": "Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may not be used in place of the raw sensor signals.", + "parentRuleCode": "IC.4.8", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.8.3", + "ruleContent": "The BSPD must monitor for these conditions: a. The two of these for more than one second: • Demand for Hard Braking IC.4.6 • Throttle more than 10% open IC.4.4 b. Loss of signal from the braking sensor(s) for more than 100 msec c. Loss of signal from the throttle sensor(s) for more than 100 msec d. Removal of power from the BSPD circuit", + "parentRuleCode": "IC.4.8", + "pageNumber": "83", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.8.4", + "ruleContent": "When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2", + "parentRuleCode": "IC.4.8", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.8.5", + "ruleContent": "The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON", + "parentRuleCode": "IC.4.8", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.8.6", + "ruleContent": "The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF", + "parentRuleCode": "IC.4.8", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.4.8.7", + "ruleContent": "The BSPD signals and function must be able to be checked during Technical Inspection by having one of: a. A separate set of detachable connectors for any signals from the braking sensor(s), throttle sensor(s) and removal of power to only the BSPD device. b. An inline switchable breakout box available that allows disconnection of the brake sensor(s), throttle sensor(s) individually and power to only the BSPD device.", + "parentRuleCode": "IC.4.8", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5", + "ruleContent": "FUEL AND FUEL SYSTEM", + "parentRuleCode": "IC", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.1", + "ruleContent": "Fuel", + "parentRuleCode": "IC.5", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.1.1", + "ruleContent": "Vehicles must be operated with the fuels provided at the competition", + "parentRuleCode": "IC.5.1", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.1.2", + "ruleContent": "Fuels provided are expected to be Gasoline and E85. Consult the individual competition websites for fuel specifics and other information.", + "parentRuleCode": "IC.5.1", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.1.3", + "ruleContent": "No agents other than the provided fuel and air may go into the combustion chamber.", + "parentRuleCode": "IC.5.1", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.2", + "ruleContent": "Fuel System", + "parentRuleCode": "IC.5", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.2.1", + "ruleContent": "The Fuel System must meet these design criteria: a. The Fuel Tank is capable of being filled to capacity without manipulating the tank or the vehicle in any manner. b. During refueling on a level surface, the formation of air cavities or other effects that cause the fuel level observed at the sight tube to drop after movement or operation of the vehicle (other than due to consumption) are prevented. c. Spillage during refueling cannot contact the driver position, exhaust system, hot engine parts, or the ignition system.", + "parentRuleCode": "IC.5.2", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.2.2", + "ruleContent": "The Fuel System location must meet IC.1.2 and F.9", + "parentRuleCode": "IC.5.2", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.2.3", + "ruleContent": "A Firewall must separate the Fuel Tank from the driver, per T.1.8", + "parentRuleCode": "IC.5.2", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.3", + "ruleContent": "Fuel Tank The part(s) of the fuel containment device that is in contact with the fuel.", + "parentRuleCode": "IC.5", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.3.1", + "ruleContent": "Fuel Tanks made of a rigid material must: a. Be securely attached to the vehicle structure. The mounting method must not allow chassis flex to load the Fuel Tank. b. Not be used to carry any structural loads; from Roll Hoops, suspension, engine or gearbox mounts", + "parentRuleCode": "IC.5.3", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.3.2", + "ruleContent": "Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag tank: a. Must be enclosed inside a rigid fuel tank container which is securely attached to the vehicle structure. b. The Fuel Tank container may be load carrying", + "parentRuleCode": "IC.5.3", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.3.3", + "ruleContent": "Any size Fuel Tank may be used", + "parentRuleCode": "IC.5.3", + "pageNumber": "84", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.3.4", + "ruleContent": "The Fuel Tank, by design, must not have a variable capacity.", + "parentRuleCode": "IC.5.3", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.3.5", + "ruleContent": "The Fuel System must have a provision for emptying the Fuel Tank if required.", + "parentRuleCode": "IC.5.3", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4", + "ruleContent": "Fuel Filler Neck & Sight Tube", + "parentRuleCode": "IC.5", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4.1", + "ruleContent": "All Fuel Tanks must have a Fuel Filler Neck which must be: a. Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler cap", + "parentRuleCode": "IC.5.4", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4.2", + "ruleContent": "The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be: a. Minimum 125 mm vertical height above the top level of the Fuel Tank b. Angled no more than 30° from the vertical", + "parentRuleCode": "IC.5.4", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4.3", + "ruleContent": "The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the fuel level which must be: a. Visible vertical height: 125 mm minimum b. Inside diameter: 6 mm minimum c. Above the top surface of the Fuel Tank", + "parentRuleCode": "IC.5.4", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4.4", + "ruleContent": "A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules Question or technical inspectors at the event.", + "parentRuleCode": "IC.5.4", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4.5", + "ruleContent": "Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm and 25 mm below the top of the visible portion of the sight tube. This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure the amount of fuel used during the Endurance Event.", + "parentRuleCode": "IC.5.4", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4.6", + "ruleContent": "The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, etc) or the need to remove any parts (body panels, etc).", + "parentRuleCode": "IC.5.4", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4.7", + "ruleContent": "The individual filling the tank must have complete direct access to the filler neck opening with a standard two gallon gas can assembly. The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top", + "parentRuleCode": "IC.5.4", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.4.8", + "ruleContent": "The filler neck must have a fuel cap that can withstand severe vibrations or high pressures such as could occur during a vehicle rollover event", + "parentRuleCode": "IC.5.4", + "pageNumber": "85", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.5", + "ruleContent": "Fuel Tank Filling", + "parentRuleCode": "IC.5", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.5.1", + "ruleContent": "Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials.", + "parentRuleCode": "IC.5.5", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.5.2", + "ruleContent": "The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point.", + "parentRuleCode": "IC.5.5", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.5.3", + "ruleContent": "If, for any reason, the fuel level changes after the team have moved the vehicle, then no additional fuel will be added, unless fueling after Endurance, see D.13.2.5", + "parentRuleCode": "IC.5.5", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.6", + "ruleContent": "Venting Systems", + "parentRuleCode": "IC.5", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.6.1", + "ruleContent": "Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during hard cornering or acceleration.", + "parentRuleCode": "IC.5.6", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.6.2", + "ruleContent": "All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted.", + "parentRuleCode": "IC.5.6", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.6.3", + "ruleContent": "All fuel vent lines must exit outside the bodywork.", + "parentRuleCode": "IC.5.6", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.7", + "ruleContent": "Fuel Lines", + "parentRuleCode": "IC.5", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.7.1", + "ruleContent": "Fuel lines must be securely attached to the vehicle and/or engine.", + "parentRuleCode": "IC.5.7", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.7.2", + "ruleContent": "All fuel lines must be shielded from possible rotating equipment failure or collision damage.", + "parentRuleCode": "IC.5.7", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.7.3", + "ruleContent": "Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited.", + "parentRuleCode": "IC.5.7", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.7.4", + "ruleContent": "Any rubber fuel line or hose used must meet the two: a. The components over which the hose is clamped must have annular bulb or barbed fittings to retain the hose b. Clamps specifically designed for fuel lines must be used. These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, and rolled edges to prevent the clamp cutting into the hose", + "parentRuleCode": "IC.5.7", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.5.7.5", + "ruleContent": "Worm gear type hose clamps must not be used on any fuel line.", + "parentRuleCode": "IC.5.7", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.6", + "ruleContent": "FUEL INJECTION", + "parentRuleCode": "IC", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.1", + "ruleContent": "Low Pressure Injection (LPI) Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most Port Fuel Injected (PFI) fuel systems are low pressure.", + "parentRuleCode": "IC.6", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.1.1", + "ruleContent": "Any Low Pressure flexible fuel lines must be one of: • Metal braided hose with threaded fittings (crimped on or reusable) • Reinforced rubber hose with some form of abrasion resistant protection", + "parentRuleCode": "IC.6.1", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.1.2", + "ruleContent": "Fuel rail and mounting requirements: a. Unmodified OEM Fuel Rails are acceptable, regardless of material. b. Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable materials are prohibited. c. The fuel rail must be securely attached to the manifold, engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement. d. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2", + "parentRuleCode": "IC.6.1", + "pageNumber": "86", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.2", + "ruleContent": "High Pressure Injection (HPI) / Direct Injection (DI)", + "parentRuleCode": "IC.6", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.2.1", + "ruleContent": "Definitions a. High Pressure fuel systems - those functioning at 10 Bar pressure or above b. Direct Injection fuel systems - where the injection occurs directly into the combustion system Direct Injection systems often utilize a low pressure electric fuel pump and high pressure mechanical “boost” pump driven off the engine. c. High Pressure Fuel Lines - those between the boost pump and injectors d. Low Pressure Fuel Lines - from the electric supply pump to the boost pump", + "parentRuleCode": "IC.6.2", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.2.2", + "ruleContent": "All High Pressure Fuel Lines must: a. Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel reinforcement and visible Nomex tracer yarn. Equivalent products may be used with prior approval. b. Not incorporate elastomeric seals c. Be rigidly connected every 100 mm by mechanical fasteners to structural engine components such as cylinder heads or block", + "parentRuleCode": "IC.6.2", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.2.3", + "ruleContent": "Any Low Pressure flexible Fuel Lines must be one of: • Metal braided hose with threaded fittings (crimped on or reusable) • Reinforced rubber hose with some form of abrasion resistant protection", + "parentRuleCode": "IC.6.2", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.2.4", + "ruleContent": "Fuel rail mounting requirements: a. The fuel rail must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement. b. The fastening method must be sufficient to hold the fuel rail in place with the maximum regulated pressure acting on the injector internals and neglecting any assistance from cylinder pressure acting on the injector tip. c. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2", + "parentRuleCode": "IC.6.2", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.2.5", + "ruleContent": "High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as the cylinder head or engine block.", + "parentRuleCode": "IC.6.2", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.6.2.6", + "ruleContent": "Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the fuel system in parallel with the DI boost pump. The external regulator must be used even if the DI boost pump comes equipped with an internal regulator.", + "parentRuleCode": "IC.6.2", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.7", + "ruleContent": "EXHAUST AND NOISE CONTROL", + "parentRuleCode": "IC", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.1", + "ruleContent": "Exhaust Protection", + "parentRuleCode": "IC.7", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.1.1", + "ruleContent": "The exhaust system must be separated from any of these components by means given in T.1.6.3: a. Flammable materials, including the fuel and fuel system, the oil and oil system b. Thermally sensitive components, including brake lines, composite materials, and batteries", + "parentRuleCode": "IC.7.1", + "pageNumber": "87", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.2", + "ruleContent": "Exhaust Outlet", + "parentRuleCode": "IC.7", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.2.1", + "ruleContent": "The exhaust must be routed to prevent the driver from fumes at any speed considering the draft of the vehicle", + "parentRuleCode": "IC.7.2", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.2.2", + "ruleContent": "The Exhaust Outlet(s) must be: a. No more than 45 cm aft of the centerline of the rear axle b. No more than 60 cm above the ground.", + "parentRuleCode": "IC.7.2", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.2.3", + "ruleContent": "Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in front of the Main Hoop must be shielded to prevent contact by persons approaching the vehicle or a driver exiting the vehicle", + "parentRuleCode": "IC.7.2", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.2.4", + "ruleContent": "Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an exhaust manifold or exhaust system.", + "parentRuleCode": "IC.7.2", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.3", + "ruleContent": "Variable Exhaust", + "parentRuleCode": "IC.7", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.3.1", + "ruleContent": "Adjustable tuning or throttling devices are permitted.", + "parentRuleCode": "IC.7.3", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.3.2", + "ruleContent": "Manually adjustable tuning devices must require tools to change", + "parentRuleCode": "IC.7.3", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.3.3", + "ruleContent": "Refer to IN.10.2 for additional requirements during the Noise Test", + "parentRuleCode": "IC.7.3", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.4", + "ruleContent": "Connections to Exhaust Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum devices that connect directly to the exhaust system, are prohibited.", + "parentRuleCode": "IC.7", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.5", + "ruleContent": "Noise Level and Testing", + "parentRuleCode": "IC.7", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.5.1", + "ruleContent": "The vehicle must stay below the permitted sound level at all times IN.10.5", + "parentRuleCode": "IC.7.5", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.7.5.2", + "ruleContent": "Sound level will be verified during Technical Inspection, refer to IN.10", + "parentRuleCode": "IC.7.5", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.8", + "ruleContent": "ELECTRICAL", + "parentRuleCode": "IC", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.8.1", + "ruleContent": "Starter Each vehicle must start the engine using an onboard starter at all times", + "parentRuleCode": "IC.8", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.8.2", + "ruleContent": "Batteries Refer to T.9.2 for specific requirements of Low Voltage batteries", + "parentRuleCode": "IC.8", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.8.3", + "ruleContent": "Voltage Limit", + "parentRuleCode": "IC.8", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.8.3.1", + "ruleContent": "Voltage between any two electrical connections must be Low Voltage T.9.1.2", + "parentRuleCode": "IC.8.3", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.8.3.2", + "ruleContent": "This voltage limit does not apply to these systems: • High Voltage systems for ignition • High Voltage systems for injectors • Voltages internal to OEM charging systems designed for <60 V DC output.", + "parentRuleCode": "IC.8.3", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.9", + "ruleContent": "SHUTDOWN SYSTEM", + "parentRuleCode": "IC", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.1", + "ruleContent": "Shutdown Circuit", + "parentRuleCode": "IC.9", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.1.1", + "ruleContent": "The Shutdown Circuit consists of these components: a. Primary Master Switch IC.9.3 b. Cockpit Main Switch IC.9.4 c. (ETC Only) Brake System Plausibility Device (BSPD) IC.4.8 d. Brake Overtravel Switch (BOTS) T.3.3 e. Inertia Switch (if used) T.9.4", + "parentRuleCode": "IC.9.1", + "pageNumber": "88", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.1.2", + "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Technical Inspection", + "parentRuleCode": "IC.9.1", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.1.3", + "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near the Primary Master Switch and the Cockpit Main Switch.", + "parentRuleCode": "IC.9.1", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.2", + "ruleContent": "Shutdown Circuit Operation", + "parentRuleCode": "IC.9", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.2.1", + "ruleContent": "The Shutdown Circuit must Open upon operation of, or detection from any of the components listed in IC.9.1.1", + "parentRuleCode": "IC.9.2", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.2.2", + "ruleContent": "When the Shutdown Circuit Opens, it must: a. Stop the engine b. Disconnect power to the: • Fuel Pump(s) • Ignition • (ETC only) Electronic Throttle IC.4.1.1", + "parentRuleCode": "IC.9.2", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.3", + "ruleContent": "Primary Master Switch", + "parentRuleCode": "IC.9", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.3.1", + "ruleContent": "Configuration and Location - The Primary Master Switch must meet T.9.3", + "parentRuleCode": "IC.9.3", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.3.2", + "ruleContent": "Function - the Primary Master Switch must: a. Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel pump(s), ignition and electrical controls. All battery current must flow through this switch b. Be direct acting, not act through a relay or logic.", + "parentRuleCode": "IC.9.3", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.4", + "ruleContent": "Cockpit Main Switch", + "parentRuleCode": "IC.9", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.4.1", + "ruleContent": "Configuration - The Cockpit Main Switch must: a. Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF position) b. Have a diameter of 24 mm minimum", + "parentRuleCode": "IC.9.4", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.4.2", + "ruleContent": "Location – The Cockpit Main Switch must be: a. In easy reach of the driver when in a normal driving position wearing Harness b. Adjacent to the Steering Wheel c. Unobstructed by the Steering Wheel or any other part of the vehicle", + "parentRuleCode": "IC.9.4", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "IC.9.4.3", + "ruleContent": "Function - the Cockpit Main Switch may act through a relay", + "parentRuleCode": "IC.9.4", + "pageNumber": "89", + "isFromTOC": false + }, + { + "ruleCode": "EV", + "ruleContent": "ELECTRIC VEHICLES", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.1", + "ruleContent": "DEFINITIONS", + "parentRuleCode": "EV", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.1.1", + "ruleContent": "Tractive System – TS Every part electrically connected to the Motor(s) and/or Accumulator(s)", + "parentRuleCode": "EV.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.1.2", + "ruleContent": "Grounded Low Voltage - GLV Every electrical part that is not part of the Tractive System", + "parentRuleCode": "EV.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.1.3", + "ruleContent": "Accumulator All the battery cells or super capacitors that store the electrical energy to be used by the Tractive System", + "parentRuleCode": "EV.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.2", + "ruleContent": "DOCUMENTATION", + "parentRuleCode": "EV", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.2.1", + "ruleContent": "Electrical System Form - ESF", + "parentRuleCode": "EV.2", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.2.1.1", + "ruleContent": "Each team must submit an Electrical System Form (ESF) with a clearly structured documentation of the entire vehicle electrical system (including control and Tractive System). Submission and approval of the ESF does not mean that the vehicle will automatically pass Electrical Technical Inspection with the described items / parts.", + "parentRuleCode": "EV.2.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.2.1.2", + "ruleContent": "The ESF may provide guidance or more details than the Formula SAE Rules.", + "parentRuleCode": "EV.2.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.2.1.3", + "ruleContent": "Use the format provided and submit the ESF as given in section DR - Document Requirements", + "parentRuleCode": "EV.2.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.2.2", + "ruleContent": "Submission Penalties Penalties for the ESF are imposed as given in section DR - Document Requirements.", + "parentRuleCode": "EV.2", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3", + "ruleContent": "ELECTRICAL LIMITATIONS", + "parentRuleCode": "EV", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.1", + "ruleContent": "Operation", + "parentRuleCode": "EV.3", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.1.1", + "ruleContent": "Supplying power to the motor to drive the vehicle in reverse is prohibited", + "parentRuleCode": "EV.3.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.1.2", + "ruleContent": "Drive by wire control of wheel torque is permitted", + "parentRuleCode": "EV.3.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.1.3", + "ruleContent": "Any algorithm or electronic control unit that can adjust the requested wheel torque may only decrease the total driver requested torque and must not increase it", + "parentRuleCode": "EV.3.1", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.2", + "ruleContent": "Energy Meter", + "parentRuleCode": "EV.3", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.2.1", + "ruleContent": "All Electric Vehicles must run with the Energy Meter provided at the event Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter", + "parentRuleCode": "EV.3.2", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.2.2", + "ruleContent": "The Energy Meter must be installed in an easily accessible location", + "parentRuleCode": "EV.3.2", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.2.3", + "ruleContent": "All Tractive System power must flow through the Energy Meter", + "parentRuleCode": "EV.3.2", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.2.4", + "ruleContent": "Each team must download their Energy Meter data in a manner and timeframe specified by the organizer", + "parentRuleCode": "EV.3.2", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.2.5", + "ruleContent": "Power and Voltage limits will be checked by the Energy Meter data Energy is calculated as the time integrated value of the measured voltage multiplied by the measured current logged by the Energy Meter.", + "parentRuleCode": "EV.3.2", + "pageNumber": "90", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.3", + "ruleContent": "Power and Voltage", + "parentRuleCode": "EV.3", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.3.1", + "ruleContent": "The maximum power measured by the Energy Meter must not exceed 80 kW", + "parentRuleCode": "EV.3.3", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.3.2", + "ruleContent": "The maximum permitted voltage that may occur between any two points must not exceed 600 V DC", + "parentRuleCode": "EV.3.3", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.3.3", + "ruleContent": "The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr", + "parentRuleCode": "EV.3.3", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.4", + "ruleContent": "Violations", + "parentRuleCode": "EV.3", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.4.1", + "ruleContent": "A Violation occurs when one or two of these exist: a. Use of more than the specified maximum power EV.3.3.1 b. Exceed the maximum voltage EV.3.3.2 for one or the two conditions: • Continuously for 100 ms or more • After a moving average over 500 ms is applied", + "parentRuleCode": "EV.3.4", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.4.2", + "ruleContent": "Missing Energy Meter data may be treated as a Violation, subject to official discretion", + "parentRuleCode": "EV.3.4", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.4.3", + "ruleContent": "Tampering, or attempting to tamper with the Energy Meter or its data may result in Disqualification (DQ)", + "parentRuleCode": "EV.3.4", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.5", + "ruleContent": "Penalties", + "parentRuleCode": "EV.3", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.5.1", + "ruleContent": "Violations during the Acceleration, Skidpad, Autocross Events: a. Each run with one or more Violations will Disqualify (DQ) the best run of the team b. Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the two best runs", + "parentRuleCode": "EV.3.5", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.5.2", + "ruleContent": "Violations during the Endurance event: • Each Violation: 60 second penalty D.14.2.1", + "parentRuleCode": "EV.3.5", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.5.3", + "ruleContent": "Repeated Violations may void Inspection Approval or receive additional penalties up to and including Disqualification, subject to official discretion.", + "parentRuleCode": "EV.3.5", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.3.5.4", + "ruleContent": "The respective data of each run in which a team has a Violation and the resulting decision may be made public.", + "parentRuleCode": "EV.3.5", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.4", + "ruleContent": "COMPONENTS", + "parentRuleCode": "EV", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.1", + "ruleContent": "Motors", + "parentRuleCode": "EV.4", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.1.1", + "ruleContent": "Only electrical motors are allowed. The number of motors is not limited.", + "parentRuleCode": "EV.4.1", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.1.2", + "ruleContent": "Motors must meet T.5.3", + "parentRuleCode": "EV.4.1", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.1.3", + "ruleContent": "If Motors are mounted to the suspension uprights, their cables and wiring must: a. Include an Interlock EV.7.8 This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or knocked off the vehicle. b. Reduce the length of the portions of wiring and other connections that do not meet", + "parentRuleCode": "EV.4.1", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "F.11.1.3", + "ruleContent": "to the extent possible", + "parentRuleCode": "F.11.1", + "pageNumber": "91", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.2", + "ruleContent": "Motor Controller The Tractive System Motor(s) must be connected to the Accumulator through a Motor Controller. No direct connections between Motor(s) and Accumulator.", + "parentRuleCode": "EV.4", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3", + "ruleContent": "Accumulator Container", + "parentRuleCode": "EV.4", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3.1", + "ruleContent": "Accumulator Containers must meet F.10", + "parentRuleCode": "EV.4.3", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3.2", + "ruleContent": "The Accumulator Container(s) must be removable from the vehicle while still remaining rules compliant", + "parentRuleCode": "EV.4.3", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3.3", + "ruleContent": "The Accumulator Container(s) must be completely closed at all times (when mounted to the vehicle and when removed from the vehicle) without the need to install extra protective covers", + "parentRuleCode": "EV.4.3", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3.4", + "ruleContent": "The Accumulator Container(s) may contain Holes or Openings a. Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the Accumulator Container(s) b. Holes and Openings in the Accumulator Container must meet F.10.4 c. External holes must meet EV.6.1", + "parentRuleCode": "EV.4.3", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3.5", + "ruleContent": "Any Accumulators that may vent an explosive gas must have a ventilation system or pressure relief valve to release the vented gas", + "parentRuleCode": "EV.4.3", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3.6", + "ruleContent": "Segments sealed in Accumulator Containers must have a path to a pressure relief valve", + "parentRuleCode": "EV.4.3", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3.7", + "ruleContent": "Pressure relief valves must not have line of sight to the driver, with the Firewall installed or removed", + "parentRuleCode": "EV.4.3", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.3.8", + "ruleContent": "Each Accumulator Container must be labelled with the: a. School Name and Vehicle Number b. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background) with: • Triangle side length of 100 mm minimum • Visibility from all angles, including when the lid is removed c. Text “Always Energized” d. Text “High Voltage” if the voltage meets T.9.1.1", + "parentRuleCode": "EV.4.3", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.4", + "ruleContent": "Grounded Low Voltage System", + "parentRuleCode": "EV.4", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.4.1", + "ruleContent": "The GLV System must be: a. A Low Voltage system that is Grounded to the Chassis b. Able to operate with Accumulator removed from the vehicle", + "parentRuleCode": "EV.4.4", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.4.2", + "ruleContent": "The GLV System must include a Master Switch, see EV.7.9.1", + "parentRuleCode": "EV.4.4", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.4.3", + "ruleContent": "A GLV Measuring Point (GLVMP) must be installed which is: a. Connected to GLV System Ground b. Next to the TSMP EV.5.8 c. 4 mm shrouded banana jack d. Color: Black e. Marked “GND”", + "parentRuleCode": "EV.4.4", + "pageNumber": "92", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.4.4", + "ruleContent": "Low Voltage Batteries must meet T.9.2", + "parentRuleCode": "EV.4.4", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.5", + "ruleContent": "Accelerator Pedal Position Sensor - APPS Refer to T.4.2 for specific requirements of the APPS", + "parentRuleCode": "EV.4", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.6", + "ruleContent": "Brake System Encoder - BSE Refer to T.4.3 for specific requirements of the BSE", + "parentRuleCode": "EV.4", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.7", + "ruleContent": "APPS / Brake Pedal Plausibility Check", + "parentRuleCode": "EV.4", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.7.1", + "ruleContent": "Must monitor for the two conditions: • The mechanical brakes are engaged EV.4.6, T.3.2.4 • The APPS signals more than 25% Pedal Travel EV.4.5", + "parentRuleCode": "EV.4.7", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.7.2", + "ruleContent": "If the two conditions in EV.4.7.1 occur at the same time: a. Power to the Motor(s) must be immediately and completely shut down b. The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, with or without brake operation The team must be able to demonstrate these actions at Technical Inspection", + "parentRuleCode": "EV.4.7", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.8", + "ruleContent": "Tractive System Part Positioning All parts belonging to the Tractive System must meet F.11", + "parentRuleCode": "EV.4", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.9", + "ruleContent": "Housings and Enclosures", + "parentRuleCode": "EV.4", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.9.1", + "ruleContent": "Each housing or enclosure containing parts of the Tractive System other than Motor housings, must be labelled with the: a. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background) b. Text “High Voltage” if the voltage meets T.9.1.1", + "parentRuleCode": "EV.4.9", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.9.2", + "ruleContent": "If the material of the housing containing parts of the Tractive System is electrically conductive, it must have a low resistance connection to GLV System Ground, see EV.6.7", + "parentRuleCode": "EV.4.9", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.10", + "ruleContent": "Accumulator Hand Cart", + "parentRuleCode": "EV.4", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.10.1", + "ruleContent": "Teams must have a Hand Cart to transport their Accumulator Container(s)", + "parentRuleCode": "EV.4.10", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.10.2", + "ruleContent": "The Hand Cart must be used when the Accumulator Container(s) are transported on the competition site EV.11.4.2 EV.11.5.1", + "parentRuleCode": "EV.4.10", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.10.3", + "ruleContent": "The Hand Cart must: a. Be able to carry the load of the Accumulator Container(s) without tipping over b. Contain a minimum of two wheels c. Have a brake that must be: • Released only using a dead man type switch (where the brake is always on until released by pushing and holding a handle) or by manually lifting part of the cart off the ground • Able to stop the Hand Cart with a fully loaded Accumulator Container", + "parentRuleCode": "EV.4.10", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.4.10.4", + "ruleContent": "Accumulator Container(s) must be securely attached to the Hand Cart", + "parentRuleCode": "EV.4.10", + "pageNumber": "93", + "isFromTOC": false + }, + { + "ruleCode": "EV.5", + "ruleContent": "ENERGY STORAGE", + "parentRuleCode": "EV", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.1", + "ruleContent": "Accumulator", + "parentRuleCode": "EV.5", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.1.1", + "ruleContent": "All cells or super capacitors which store the Tractive System energy are built into Accumulator Segments and must be enclosed in (an) Accumulator Container(s).", + "parentRuleCode": "EV.5.1", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.1.2", + "ruleContent": "Each Accumulator Segment must contain: • Static voltage of 120 V DC maximum • Energy of 6 MJ maximum The contained energy of a stack is calculated by multiplying the maximum stack voltage with the nominal capacity of the used cell(s) • Mass of 12 kg maximum", + "parentRuleCode": "EV.5.1", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.1.3", + "ruleContent": "No further energy storage except for reasonably sized intermediate circuit capacitors are allowed after the Energy Meter EV.3.1", + "parentRuleCode": "EV.5.1", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.1.4", + "ruleContent": "All Accumulator Segments and/or Accumulator Containers (including spares and replacement parts) must be identical to the design documented in the ESF and SES", + "parentRuleCode": "EV.5.1", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.2", + "ruleContent": "Electrical Configuration", + "parentRuleCode": "EV.5", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.2.1", + "ruleContent": "All Tractive System components must be rated for the maximum Tractive System voltage", + "parentRuleCode": "EV.5.2", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.2.2", + "ruleContent": "If the Accumulator Container is made from an electrically conductive material: a. The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner wall of the Accumulator Container with an insulating material that is rated for the maximum Tractive System voltage. b. All conductive surfaces on the outside of the Accumulator Container must have a low resistance connection to the GLV System Ground, see EV.6.7 c. Any conductive penetrations, such as mounting hardware, must be protected against puncturing the insulating barrier.", + "parentRuleCode": "EV.5.2", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.2.3", + "ruleContent": "Each Accumulator Segment must be electrically insulated with suitable Nonflammable Material (F.1.18) (not air) for the two: a. Between the segments in the container b. On top of the segment The intent is to prevent arc flashes caused by inter segment contact or by parts/tools accidentally falling into the container during maintenance for example.", + "parentRuleCode": "EV.5.2", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.2.4", + "ruleContent": "Soldering electrical connections in the high current path is prohibited Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are not part of the high current path.", + "parentRuleCode": "EV.5.2", + "pageNumber": "94", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.2.5", + "ruleContent": "Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, must be rated to the maximum Tractive System voltage.", + "parentRuleCode": "EV.5.2", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.3", + "ruleContent": "Maintenance Plugs", + "parentRuleCode": "EV.5", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.3.1", + "ruleContent": "Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet: a. The separated Segments meet voltage and energy limits of EV.5.1.2 b. The separation must affect the two poles of the Segment", + "parentRuleCode": "EV.5.3", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.3.2", + "ruleContent": "Maintenance Plugs must: a. Require the physical removal or separation of a component. Contactors or switches are not acceptable Maintenance Plugs b. Have access after opening the Accumulator Container and not necessary to move or remove any other components c. Not be physically possible to make electrical connection in any configuration other than the design intended configuration d. Not require tools to install or remove e. Include a positive locking feature which prevents the plug from unintentionally becoming loose f. Be nonconductive on surfaces that do not provide any electrical connection", + "parentRuleCode": "EV.5.3", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.3.3", + "ruleContent": "When the Accumulator Containers are opened or Segments are removed, the Accumulator Segments must be separated by using the Maintenance Plugs. See EV.11.4.1", + "parentRuleCode": "EV.5.3", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.4", + "ruleContent": "Isolation Relays - IR", + "parentRuleCode": "EV.5", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.4.1", + "ruleContent": "All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more Isolation Relays (IR)", + "parentRuleCode": "EV.5.4", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.4.2", + "ruleContent": "The Isolation Relays must: a. Be a Normally Open type b. Open the two poles of the Accumulator", + "parentRuleCode": "EV.5.4", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.4.3", + "ruleContent": "When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator Container", + "parentRuleCode": "EV.5.4", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.4.4", + "ruleContent": "The Isolation Relays and any fuses must be separated from the rest of the Accumulator with an electrically insulated and Nonflammable Material (F.1.18).", + "parentRuleCode": "EV.5.4", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.4.5", + "ruleContent": "A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit Opens EV.7.2.2", + "parentRuleCode": "EV.5.4", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.5", + "ruleContent": "Manual Service Disconnect - MSD A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two poles of the Accumulator EV.11.3.2", + "parentRuleCode": "EV.5", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.5.1", + "ruleContent": "The Manual Service Disconnect (MSD) must be: a. A directly accessible element, fuse or connector that will visually show disconnected b. More than 350 mm from the ground c. Easily visible when standing behind the vehicle d. Operable in 10 seconds or less by an untrained person e. Operable without removing any bodywork or obstruction or using tools f. Directly operated. Remote operation through a long handle, rope or wire is not acceptable. g. Clearly marked with \"MSD\"", + "parentRuleCode": "EV.5.5", + "pageNumber": "95", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.5.2", + "ruleContent": "The Energy Meter must not be used as the Manual Service Disconnect (MSD)", + "parentRuleCode": "EV.5.5", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.5.3", + "ruleContent": "An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed", + "parentRuleCode": "EV.5.5", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.5.4", + "ruleContent": "A dummy connector or similar may be used to restore isolation to meet EV.6.1.2", + "parentRuleCode": "EV.5.5", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.6", + "ruleContent": "Precharge and Discharge Circuits", + "parentRuleCode": "EV.5", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.6.1", + "ruleContent": "The Accumulator must contain a Precharge Circuit. The Precharge Circuit must: a. Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage before closing the second IR b. Be supplied from the Shutdown Circuit EV.7.1", + "parentRuleCode": "EV.5.6", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.6.2", + "ruleContent": "The Intermediate Circuit must precharge before closing the second IR a. The end of precharge must be controlled by feedback by monitoring the voltage in the Intermediate Circuit", + "parentRuleCode": "EV.5.6", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.6.3", + "ruleContent": "The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be: a. Wired in a way that it is always active when the Shutdown Circuit is open b. Able to discharge the Intermediate Circuit capacitors if the MSD has been opened c. Not be fused d. Designed to handle the maximum Tractive System voltage for minimum 15 seconds", + "parentRuleCode": "EV.5.6", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.6.4", + "ruleContent": "Positive Temperature Coefficient (PTC) devices must not be used to limit current for the Precharge Circuit or Discharge Circuit", + "parentRuleCode": "EV.5.6", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.6.5", + "ruleContent": "The precharge relay must be a mechanical type relay", + "parentRuleCode": "EV.5.6", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.7", + "ruleContent": "Voltage Indicator Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is present at the vehicle side of the IRs", + "parentRuleCode": "EV.5", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.7.1", + "ruleContent": "The Voltage Indicator must always function, including when the Accumulator Container is disconnected or removed", + "parentRuleCode": "EV.5.7", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.7.2", + "ruleContent": "The voltage being present at the connectors must directly control the Voltage Indicator using hard wired electronics with no software control.", + "parentRuleCode": "EV.5.7", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.7.3", + "ruleContent": "The control signal which closes the IRs must not control the Voltage Indicator", + "parentRuleCode": "EV.5.7", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.7.4", + "ruleContent": "The Voltage Indicator must: a. Be located where it is clearly visible when connecting/disconnecting the Accumulator Tractive System connections b. Be labeled “High Voltage Present”", + "parentRuleCode": "EV.5.7", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.8", + "ruleContent": "Tractive System Measuring Points - TSMP", + "parentRuleCode": "EV.5", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.8.1", + "ruleContent": "Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are: a. Connected to the positive and negative motor controller/inverter supply lines b. Next to the Master Switches EV.7.9 c. Protected by a nonconductive housing that can be opened without tools d. Protected from being touched with bare hands / fingers once the housing is opened", + "parentRuleCode": "EV.5.8", + "pageNumber": "96", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.8.2", + "ruleContent": "Two TSMPs must be installed in the Charger EV.8.2 which are: a. Connected to the positive and negative Charger output lines b. Available during charging of any Accumulator(s)", + "parentRuleCode": "EV.5.8", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.8.3", + "ruleContent": "The TSMPs must be: a. 4 mm shrouded banana jacks rated to an appropriate voltage level b. Color: Red c. Marked “HV+” and “HV-“", + "parentRuleCode": "EV.5.8", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.8.4", + "ruleContent": "Each TSMP must be secured with a current limiting resistor. a. The resistor must be sized for the voltage: Maximum TS Voltage (Vmax) Resistor Value Vmax <= 200 V DC 5 kOhm 200 V DC < Vmax <= 400 V DC 10 kOhm 400 V DC < Vmax <= 600 V DC 15 kOhm b. Resistor continuous power rating must be more than the power dissipated across the TSMPs if they are shorted together c. Direct measurement of the value of the resistor must be possible during Electrical Technical Inspection.", + "parentRuleCode": "EV.5.8", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.8.5", + "ruleContent": "Any TSMP must not contain additional Overcurrent Protection.", + "parentRuleCode": "EV.5.8", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.9", + "ruleContent": "Connectors Tractive System connectors outside of a housing must contain an Interlock EV.7.8", + "parentRuleCode": "EV.5", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.10", + "ruleContent": "Ready to Move Light", + "parentRuleCode": "EV.5", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.10.1", + "ruleContent": "The vehicle must have two Ready to Move Lights: a. One pointed forward b. One pointed aft", + "parentRuleCode": "EV.5.10", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.10.2", + "ruleContent": "Each Ready to Move Light must be: a. A Marker Light that complies with DOT FMVSS 108 b. Color: Amber c. Luminous area: minimum 1800 mm", + "parentRuleCode": "EV.5.10", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.10.3", + "ruleContent": "Mounting location of each Ready to Move Light must: a. Be near the Main Hoop near the highest point of the vehicle b. Be inside the Rollover Protection Envelope F.1.13 c. Be no lower than 150 mm from the highest point of the Main Hoop d. Not allow contact with the driver’s helmet in any circumstances e. Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm horizontal radius from the light Visibility is checked with Bodywork and Aerodynamic Devices in place", + "parentRuleCode": "EV.5.10", + "pageNumber": "97", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.10.4", + "ruleContent": "The Ready to Move Light must: a. Be powered by the GLV system b. Be directly controlled by the voltage present in the Tractive System using hard wired electronics. EV.6.5.4 Software control is not permitted. c. Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage outside the Accumulator Container(s) exceeds T.9.1.1 d. Not do any other functions", + "parentRuleCode": "EV.5.10", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.11", + "ruleContent": "Tractive System Status Indicator", + "parentRuleCode": "EV.5", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.11.1", + "ruleContent": "The vehicle must have a Tractive System Status Indicator", + "parentRuleCode": "EV.5.11", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.11.2", + "ruleContent": "The Tractive System Status Indicator must have two separate Red and Green Status Lights", + "parentRuleCode": "EV.5.11", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.11.3", + "ruleContent": "Each of the Status Lights: a. Must have a minimum luminous area of 130 mm b. Must be visible in direct sunlight c. May have one or more of the same elements", + "parentRuleCode": "EV.5.11", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.11.4", + "ruleContent": "Mounting location of the Tractive System Status Indicator must: a. Be near the Main Hoop at the highest point of the vehicle b. Be above the Ready to Move Light c. Be inside the Rollover Protection Envelope F.1.13 d. Be no lower than 150 mm from the highest point of the Main Hoop e. Not allow contact with the driver’s helmet in any circumstances f. Easily visible to a person near the vehicle", + "parentRuleCode": "EV.5.11", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.11.5", + "ruleContent": "The Tractive System Status Indicator must show when the GLV System is energized: Condition Green Light Red Light a. No Faults Always ON OFF b. Fault in one or the two: BMS EV.7.3.5 or IMD EV.7.6.5 OFF Flash 2 Hz to 5 Hz, 50% duty cycle", + "parentRuleCode": "EV.5.11", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.6", + "ruleContent": "ELECTRICAL SYSTEM", + "parentRuleCode": "EV", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.1", + "ruleContent": "Covers", + "parentRuleCode": "EV.6", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.1.1", + "ruleContent": "Nonconductive material or covers must prevent inadvertent human contact with any Tractive System voltage. Covers must be secure and sufficiently rigid. Removable Bodywork is not suitable to enclose Tractive System connections.", + "parentRuleCode": "EV.6.1", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.1.2", + "ruleContent": "Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated test probe must not be possible when the Tractive System enclosures are in place.", + "parentRuleCode": "EV.6.1", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.1.3", + "ruleContent": "Tractive System components and Accumulator Containers must be protected from moisture, rain or puddles. A rating of IP65 is recommended", + "parentRuleCode": "EV.6.1", + "pageNumber": "98", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.2", + "ruleContent": "Insulation", + "parentRuleCode": "EV.6", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.2.1", + "ruleContent": "Insulation material must: a. Be appropriate for the expected surrounding temperatures b. Have a minimum temperature rating of 90°C", + "parentRuleCode": "EV.6.2", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.2.2", + "ruleContent": "Insulating tape or paint may be part of the insulation, but must not be the only insulation.", + "parentRuleCode": "EV.6.2", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.3", + "ruleContent": "Wiring", + "parentRuleCode": "EV.6", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.3.1", + "ruleContent": "All wires and terminals and other conductors used in the Tractive System must be sized for the continuous current they will conduct", + "parentRuleCode": "EV.6.3", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.3.2", + "ruleContent": "All Tractive System wiring must: a. Be marked with wire gauge, temperature rating and insulation voltage rating. A serial number or a norm printed on the wire is sufficient if this serial number or norm is clearly bound to the wire characteristics for example by a data sheet. b. Have temperature rating more than or equal to 90°C", + "parentRuleCode": "EV.6.3", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.3.3", + "ruleContent": "Tractive System wiring must be: a. Done to professional standards with sufficient strain relief b. Protected from loosening due to vibration c. Protected against damage by rotating and / or moving parts d. Located out of the way of possible snagging or damage", + "parentRuleCode": "EV.6.3", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.3.4", + "ruleContent": "Any Tractive System wiring that runs outside of electrical enclosures: a. Must meet one of the two: • Enclosed in separate orange nonconductive conduit • Use an orange shielded cable b. The conduit or shielded cable must be securely anchored at each end to allow it to withstand a force of 200 N without straining the cable end crimp c. Any shielded cable must have the shield grounded", + "parentRuleCode": "EV.6.3", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.3.5", + "ruleContent": "Wiring that is not part of the Tractive System must not use orange wiring or conduit.", + "parentRuleCode": "EV.6.3", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.4", + "ruleContent": "Connections", + "parentRuleCode": "EV.6", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.4.1", + "ruleContent": "All Tractive System connections must: a. Be designed to use intentional current paths through conductors designed for electrical current b. Not rely on steel bolts to be the primary conductor c. Not include compressible material such as plastic in the stack-up", + "parentRuleCode": "EV.6.4", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.4.2", + "ruleContent": "If external, uninsulated heat sinks are used, they must be properly grounded to the GLV System Ground, see EV.6.7", + "parentRuleCode": "EV.6.4", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.4.3", + "ruleContent": "Bolted electrical connections in the high current path of the Tractive System must include a positive locking feature to prevent unintentional loosening Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. Bolts with nylon patches are allowed for blind connections into OEM components.", + "parentRuleCode": "EV.6.4", + "pageNumber": "99", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.4.4", + "ruleContent": "Information about the electrical connections supporting the high current path must be available at Electrical Technical Inspection", + "parentRuleCode": "EV.6.4", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5", + "ruleContent": "Voltage Separation", + "parentRuleCode": "EV.6", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.1", + "ruleContent": "Separation of Tractive System and GLV System: a. The entire Tractive System and GLV System must be completely galvanically separated. b. The border between Tractive System and GLV System is the galvanic isolation between the two systems. Some components, such as the Motor Controller, may be part of both systems.", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.2", + "ruleContent": "There must be no connection between the Chassis of the vehicle (or any other conductive surface that might be inadvertently touched by a person), and any part of any Tractive System circuits.", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.3", + "ruleContent": "Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.4", + "ruleContent": "GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.5.10", + "ruleContent": "the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator Container.", + "parentRuleCode": "EV.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.5", + "ruleContent": "Where Tractive System and GLV are included inside the same enclosure, they must meet one of the two: a. Be separated by insulating barriers (in addition to the insulation on the wire) made of moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or higher (such as Nomex based electrical insulation) b. Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: U < 100 V DC 10 mm 100 V DC < U < 200 V DC 20 mm U > 200 V DC 30 mm", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.6", + "ruleContent": "Spacing must be clearly defined. Components and cables capable of movement must be positively restrained to maintain spacing.", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.7", + "ruleContent": "If Tractive System and GLV are on the same circuit board: a. They must be on separate, clearly defined and clearly marked areas of the board b. Required spacing related to the spacing between traces / board areas are as follows: Voltage Over Surface Thru Air (cut in board) Under Conformal Coating 0-50 V DC 1.6 mm 1.6 mm 1 mm 50-150 V DC 6.4 mm 3.2 mm 2 mm 150-300 V DC 9.5 mm 6.4 mm 3 mm 300-600 V DC 12.7 mm 9.5 mm 4 mm", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.8", + "ruleContent": "Teams must be prepared to show spacing on team built equipment For inaccessible circuitry, spare boards or appropriate photographs must be available for inspection", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.5.9", + "ruleContent": "All connections to external devices such as laptops from a Tractive System component must include galvanic isolation", + "parentRuleCode": "EV.6.5", + "pageNumber": "100", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.6", + "ruleContent": "Overcurrent Protection", + "parentRuleCode": "EV.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.6.1", + "ruleContent": "All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent Protection/Fusing.", + "parentRuleCode": "EV.6.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.6.2", + "ruleContent": "Unless otherwise allowed in the Rules, all Overcurrent Protection devices must: a. Be rated for the highest voltage in the systems they protect. Overcurrent Protection devices used for DC must be rated for DC and must carry a DC rating equal to or more than the system voltage b. Have a continuous current rating less than or equal to the continuous current rating of any electrical component that it protects c. Have an interrupt current rating higher than the theoretical short circuit current of the system that it protects", + "parentRuleCode": "EV.6.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.6.3", + "ruleContent": "Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, strings of capacitors, or conductors must have individual Overcurrent Protection.", + "parentRuleCode": "EV.6.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.6.4", + "ruleContent": "Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of: a. Be appropriately sized for the total current that the individual Overcurrent Protection devices could transmit b. Contain additional Overcurrent Protection to protect the conductors", + "parentRuleCode": "EV.6.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.6.5", + "ruleContent": "Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be used when all three conditions are met: • An Overcurrent Protection device rated at less than or equal to one third the sum of the parallel fusible links and complying with EV.6.6.2.b above is connected in series. • The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a fault is detected. • Fusible link current rating is specified in manufacturer’s data or suitable test data is provided.", + "parentRuleCode": "EV.6.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.6.6", + "ruleContent": "If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, the reduced conductor longer than 150 mm must have additional Overcurrent Protection. This additional Overcurrent Protection must be: a. 150 mm or less from the source end of the reduced conductor b. On the positive and the negative conductors in the Tractive System c. On the positive conductor in the Grounded Low Voltage System", + "parentRuleCode": "EV.6.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.6.7", + "ruleContent": "Cells with internal Overcurrent Protection may be used without external Overcurrent Protection if suitably rated. Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and conditions of EV.6.6.5 above will apply.", + "parentRuleCode": "EV.6.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.7", + "ruleContent": "Grounding", + "parentRuleCode": "EV.6", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.7.1", + "ruleContent": "Grounding is required for: a. Parts of the vehicle which are 100 mm or less from any Tractive System component b. (EV only) The Firewall T.1.8.4", + "parentRuleCode": "EV.6.7", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.7.2", + "ruleContent": "Grounded parts of the vehicle must have a resistance to GLV System Ground less than the values specified below. a. Electrically conductive parts 300 mOhms (measured with a current of 1 A) Examples: parts made of steel, (anodized) aluminum, any other metal parts b. Parts which may become electrically conductive 5 Ohm Example: carbon fiber parts Carbon fiber parts may need special measures such as using copper mesh or similar to keep the ground resistance below 5 Ohms.", + "parentRuleCode": "EV.6.7", + "pageNumber": "101", + "isFromTOC": false + }, + { + "ruleCode": "EV.6.7.3", + "ruleContent": "Electrical conductivity of any part may be tested by checking any point which is likely to be conductive. Where no convenient conductive point is available, an area of coating may be removed.", + "parentRuleCode": "EV.6.7", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7", + "ruleContent": "SHUTDOWN SYSTEM", + "parentRuleCode": "EV", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.1", + "ruleContent": "Shutdown Circuit", + "parentRuleCode": "EV.7", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.1.1", + "ruleContent": "The Shutdown Circuit consists of these components, connected in series: a. Battery Management System (BMS) EV.7.3 b. Insulation Monitoring Device (IMD) EV.7.6 c. Brake System Plausibility Device (BSPD) EV.7.7 d. Interlocks (as required) EV.7.8 e. Master Switches (GLVMS, TSMS) EV.7.9 f. Shutdown Buttons EV.7.10 g. Brake Over Travel Switch (BOTS) T.3.3 h. Inertia Switch T.9.4", + "parentRuleCode": "EV.7.1", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.1.2", + "ruleContent": "The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the Precharge Circuit Relay.", + "parentRuleCode": "EV.7.1", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.1.3", + "ruleContent": "The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open", + "parentRuleCode": "EV.7.1", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.1.4", + "ruleContent": "The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown Circuit. The design of the respective circuits must make sure that a failure cannot result in electrical power being fed back into the Shutdown Circuit.", + "parentRuleCode": "EV.7.1", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.1.5", + "ruleContent": "The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown Circuit current", + "parentRuleCode": "EV.7.1", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.1.6", + "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Electrical Technical Inspection.", + "parentRuleCode": "EV.7.1", + "pageNumber": "102", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.2", + "ruleContent": "Shutdown Circuit Operation", + "parentRuleCode": "EV.7", + "pageNumber": "103", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.2.1", + "ruleContent": "The Shutdown Circuit must Open when any of these exist: a. Operation of, or detection from any of the components listed in EV.7.1.1 b. Any shutdown of the GLV System", + "parentRuleCode": "EV.7.2", + "pageNumber": "103", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.2.2", + "ruleContent": "When the Shutdown Circuit Opens: a. The Tractive System must Shutdown b. All Accumulator current flow must stop immediately EV.5.4.3 c. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less d. The Motor(s) must spin free. Torque must not be applied to the Motor(s)", + "parentRuleCode": "EV.7.2", + "pageNumber": "103", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.2.3", + "ruleContent": "When the BMS, IMD or BSPD Open the Shutdown Circuit: a. The Tractive System must stay disabled until manually reset b. The Tractive System must be reset only by manual action of a person directly at the vehicle c. The driver must not be able to reactivate the Tractive System from inside the vehicle d. Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close", + "parentRuleCode": "EV.7.2", + "pageNumber": "103", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.3", + "ruleContent": "Battery Management System - BMS", + "parentRuleCode": "EV.7", + "pageNumber": "103", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.3.1", + "ruleContent": "A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and Temperature EV.7.5 when the: a. Tractive System is Active EV.11.5 b. Accumulator is connected to a Charger EV.8.3", + "parentRuleCode": "EV.7.3", + "pageNumber": "103", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.3.2", + "ruleContent": "The BMS must have galvanic isolation at each segment to segment boundary, as approved in the ESF", + "parentRuleCode": "EV.7.3", + "pageNumber": "103", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.3.3", + "ruleContent": "Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) Chassis Master Switch Brake System Plausibility Device Ba ery Management System TSMP HV+ Trac ve System le right Shutdown Bu ons GLV System GLV System Trac ve System Accumulator Fuse(s) IR Accumulator Container(s) Trac ve System cockpit IR Precharge Precharge Control GLV Ba ery Interlock(s) GND GLVMP HV TSMP Iner a Switch Brake System Plausibility Device Insula on Monitoring Device Brake Over Travel Switch MSD Interlock LV TS le right GLV System Master Switch GLV System GLV Fuse Trac ve System Trac ve System", + "parentRuleCode": "EV.7.3", + "pageNumber": "103", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.3.4", + "ruleContent": "The BMS must monitor for: a. Voltage values outside the allowable range EV.7.4.2 b. Voltage sense Overcurrent Protection device(s) blown or tripped c. Temperature values outside the allowable range EV.7.5.2 d. Missing or interrupted voltage or temperature measurements e. A fault in the BMS", + "parentRuleCode": "EV.7.3", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.3.5", + "ruleContent": "If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must: a. Open the Shutdown Circuit EV.7.2.2 b. Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 The two lights must stay on until the BMS is manually reset EV.7.2.3", + "parentRuleCode": "EV.7.3", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.3.6", + "ruleContent": "The BMS Indicator Light must be: a. Color: Red b. Clearly visible to the seated driver in bright sunlight c. Clearly marked with the lettering “BMS”", + "parentRuleCode": "EV.7.3", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.4", + "ruleContent": "Accumulator Voltage", + "parentRuleCode": "EV.7", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.4.1", + "ruleContent": "The BMS must measure the cell voltage of each cell When single cells are directly connected in parallel, only one voltage measurement is needed", + "parentRuleCode": "EV.7.4", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.4.2", + "ruleContent": "Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels stated in the cell data sheet. Measurement accuracy must be considered.", + "parentRuleCode": "EV.7.4", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.4.3", + "ruleContent": "All voltage sense wires to the BMS must meet one of: a. Have Overcurrent Protection EV.7.4.4 below b. Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below", + "parentRuleCode": "EV.7.4", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.4.4", + "ruleContent": "When used, Overcurrent Protection for the BMS voltage sense wires must meet the two: a. The Overcurrent Protection must occur in the conductor, wire or PCB trace which is directly connected to the cell tab. b. The voltage rating of the Overcurrent Protection must be equal to or higher than the maximum segment voltage", + "parentRuleCode": "EV.7.4", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.4.5", + "ruleContent": "Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: • BMS is a distributed BMS system (one cell measurement per board) • Sense wire length is less than 25 mm • BMS board has Overcurrent Protection", + "parentRuleCode": "EV.7.4", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.5", + "ruleContent": "Accumulator Temperature", + "parentRuleCode": "EV.7", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.5.1", + "ruleContent": "The BMS must measure the temperatures of critical points of the Accumulator", + "parentRuleCode": "EV.7.5", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.5.2", + "ruleContent": "Temperatures (considering measurement accuracy) must stay below the lower of the two: • The maximum cell temperature limit stated in the cell data sheet • 60°C", + "parentRuleCode": "EV.7.5", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.5.3", + "ruleContent": "Cell temperatures must be measured at the negative terminal of the respective cell", + "parentRuleCode": "EV.7.5", + "pageNumber": "104", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.5.4", + "ruleContent": "The temperature sensor used must be in direct contact with one of: • The negative terminal itself • The negative terminal busbar less than 10 mm away from the spot weld or clamping source on the negative cell terminal", + "parentRuleCode": "EV.7.5", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.5.5", + "ruleContent": "For lithium based cells, a. The temperature of a minimum of 20% of the cells must be monitored by the BMS b. The monitored cells must be equally distributed inside the Accumulator Container(s) The temperature of each cell should be monitored", + "parentRuleCode": "EV.7.5", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.5.6", + "ruleContent": "Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells sensed by the sensor.", + "parentRuleCode": "EV.7.5", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.5.7", + "ruleContent": "Temperature sensors must have appropriate electrical isolation that meets one of the two: • Between the sensor and cell • In the sensing circuit The isolation must consider GLV/TS isolation as well as common mode voltages between sense locations.", + "parentRuleCode": "EV.7.5", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.6", + "ruleContent": "Insulation Monitoring Device - IMD", + "parentRuleCode": "EV.7", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.6.1", + "ruleContent": "The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System", + "parentRuleCode": "EV.7.6", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.6.2", + "ruleContent": "The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved alternate equivalent IMD Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD", + "parentRuleCode": "EV.7.6", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.6.3", + "ruleContent": "The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the maximum Tractive System operation voltage.", + "parentRuleCode": "EV.7.6", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.6.4", + "ruleContent": "The IMD must monitor the Tractive System for: a. An isolation failure b. A failure in the IMD operation This must be done without the influence of any programmable logic.", + "parentRuleCode": "EV.7.6", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.6.5", + "ruleContent": "If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must: a. Open the Shutdown Circuit EV.7.2.2 b. Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 The two lights must stay on until the IMD is manually reset EV.7.2.3", + "parentRuleCode": "EV.7.6", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.6.6", + "ruleContent": "The IMD Indicator Light must be: a. Color: Red b. Clearly visible to the seated driver in bright sunlight c. Clearly marked with the lettering “IMD”", + "parentRuleCode": "EV.7.6", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.7", + "ruleContent": "Brake System Plausibility Device - BSPD", + "parentRuleCode": "EV.7", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.7.1", + "ruleContent": "The vehicle must have a standalone nonprogrammable circuit to check for simultaneous braking and high power output The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7)", + "parentRuleCode": "EV.7.7", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.7.2", + "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: • Demand for Hard Braking EV.4.6 • Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit is delivered to the Motor(s) at the nominal battery voltage The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips", + "parentRuleCode": "EV.7.7", + "pageNumber": "105", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.7.3", + "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in any sensor input", + "parentRuleCode": "EV.7.7", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.7.4", + "ruleContent": "The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection. a. Power must not be sent to the Motor(s) of the vehicle during the test b. The test must prove the function of the complete BSPD in the vehicle, including the current sensor The suggested test would introduce a current by a separate wire from an external power supply simulating the Tractive System current while pressing the brake pedal", + "parentRuleCode": "EV.7.7", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.8", + "ruleContent": "Interlocks", + "parentRuleCode": "EV.7", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.8.1", + "ruleContent": "Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 )", + "parentRuleCode": "EV.7.8", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.8.2", + "ruleContent": "Additional Interlocks may be included in the Tractive System or components", + "parentRuleCode": "EV.7.8", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.8.3", + "ruleContent": "The Interlock is a wire or connection that must: a. Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted b. Not be in the low (ground) connection to the IR coils of the Shutdown Circuit", + "parentRuleCode": "EV.7.8", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.8.4", + "ruleContent": "Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive System wiring or components when the Interlock circuit is: a. In the same wiring harness as Tractive System wiring b. Part of a Tractive System Connector EV.5.9 c. Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the connection to a Tractive System connector", + "parentRuleCode": "EV.7.8", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.9", + "ruleContent": "Master Switches", + "parentRuleCode": "EV.7", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.9.1", + "ruleContent": "Each vehicle must have two Master Switches that must: a. Meet T.9.3 for Configuration and Location b. Be direct acting, not act through a relay or logic", + "parentRuleCode": "EV.7.9", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.9.2", + "ruleContent": "The Grounded Low Voltage Master Switch (GLVMS) must: a. Completely stop all power to the GLV System EV.4.4 b. Be in the center of a completely red circular area of > 50 mm in diameter c. Be labeled “LV”", + "parentRuleCode": "EV.7.9", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.9.3", + "ruleContent": "The Tractive System Master Switch (TSMS) must: a. Open the Shutdown Circuit in the OFF position EV.7.2.2 b. Be the last switch before the IRs except for Precharge circuitry and Interlocks. c. Be in the center of a completely orange circular area of > 50 mm in diameter d. Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background). e. Be fitted with a \"lockout/tagout\" capability in the OFF position EV.11.3.1", + "parentRuleCode": "EV.7.9", + "pageNumber": "106", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.10", + "ruleContent": "Shutdown Buttons", + "parentRuleCode": "EV.7", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.10.1", + "ruleContent": "Three Shutdown Buttons must be installed on the vehicle", + "parentRuleCode": "EV.7.10", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.10.2", + "ruleContent": "Each Shutdown Button must: a. Be a push-pull or push-rotate emergency stop switch b. Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position c. Hold when operated to the OFF position d. Let the Shutdown Circuit Close when operated to the ON position", + "parentRuleCode": "EV.7.10", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.10.3", + "ruleContent": "One Shutdown Button must be on each side of the vehicle which: a. Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop Bracing F.5.9 b. Has a diameter of 40 mm minimum c. Must not be easily removable or mounted onto removable body work", + "parentRuleCode": "EV.7.10", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.10.4", + "ruleContent": "One Shutdown Button must be mounted in the cockpit which: a. Is located in easy reach of the belted in driver, adjacent to the steering wheel, and unobstructed by the steering wheel or any other part of the vehicle b. Has diameter of 24 mm minimum", + "parentRuleCode": "EV.7.10", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.7.10.5", + "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near each Shutdown Button.", + "parentRuleCode": "EV.7.10", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8", + "ruleContent": "CHARGER REQUIREMENTS", + "parentRuleCode": "EV", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.1", + "ruleContent": "Charger Requirements", + "parentRuleCode": "EV.8", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.1.1", + "ruleContent": "All features and functions of the Charger and Charging Shutdown Circuit must be demonstrated at Electrical Technical Inspection. IN.4.1", + "parentRuleCode": "EV.8.1", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.1.2", + "ruleContent": "Chargers will be sealed after approval. IN.4.7.1", + "parentRuleCode": "EV.8.1", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.2", + "ruleContent": "Charger Features", + "parentRuleCode": "EV.8", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.2.1", + "ruleContent": "The Charger must be galvanically isolated (AC) input to (DC) output.", + "parentRuleCode": "EV.8.2", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.2.2", + "ruleContent": "If the Charger housing is conductive it must be connected to the earth ground of the AC input.", + "parentRuleCode": "EV.8.2", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.2.3", + "ruleContent": "All connections of the Charger(s) must be isolated and covered.", + "parentRuleCode": "EV.8.2", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.2.4", + "ruleContent": "The Charger connector(s) must incorporate a feature to let the connector become live only when correctly connected to the Accumulator.", + "parentRuleCode": "EV.8.2", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.2.5", + "ruleContent": "High Voltage charging leads must be orange", + "parentRuleCode": "EV.8.2", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.2.6", + "ruleContent": "The Charger must have two TSMPs installed, see EV.5.8.2", + "parentRuleCode": "EV.8.2", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.2.7", + "ruleContent": "The Charger must include a Charger Shutdown Button which must: a. Be a push-pull or push-rotate emergency stop switch b. Have a minimum diameter of 25 mm c. Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position d. Hold when operated to the OFF position e. Be labelled with the international electrical symbol (a red spark on a white edged blue triangle)", + "parentRuleCode": "EV.8.2", + "pageNumber": "107", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.3", + "ruleContent": "Charging Shutdown Circuit", + "parentRuleCode": "EV.8", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.3.1", + "ruleContent": "The Charging Shutdown Circuit consists of: a. Charger Shutdown Button EV.8.2.7 b. Battery Management System (BMS) EV.7.3 c. Insulation Monitoring Device (IMD) EV.7.6", + "parentRuleCode": "EV.8.3", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.3.2", + "ruleContent": "The BMS and IMD parts of the Charging Shutdown Circuit must: a. Be designed as Normally Open contacts b. Have completely independent circuits to Open the Charging Shutdown Circuit. Design of the respective circuits must make sure that a failure cannot result in electrical power being fed back into the Charging Shutdown Circuit.", + "parentRuleCode": "EV.8.3", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.4", + "ruleContent": "Charging Shutdown Circuit Operation", + "parentRuleCode": "EV.8", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.4.1", + "ruleContent": "When Charging, the BMS and IMD must: a. Monitor the Accumulator b. Open the Charging Shutdown Circuit if a fault is detected", + "parentRuleCode": "EV.8.4", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.8.4.2", + "ruleContent": "When the Charging Shutdown Circuit Opens: a. All current flow to the Accumulator must stop immediately b. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less c. The Charger must be turned off d. The Charger must stay disabled until manually reset", + "parentRuleCode": "EV.8.4", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9", + "ruleContent": "VEHICLE OPERATIONS", + "parentRuleCode": "EV", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.1", + "ruleContent": "Activation Requirement The driver must complete the Activation Sequence without external assistance after the Master Switches EV.7.9 are ON", + "parentRuleCode": "EV.9", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.2", + "ruleContent": "Activation Sequence The vehicle systems must energize in this sequence: a. Low Voltage (GLV) System EV.9.3 b. Tractive System Active EV.9.4 c. Ready to Drive EV.9.5", + "parentRuleCode": "EV.9", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.3", + "ruleContent": "Low Voltage (GLV) System The Shutdown Circuit may be Closed when or after the GLV System is energized", + "parentRuleCode": "EV.9", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.4", + "ruleContent": "Tractive System Active", + "parentRuleCode": "EV.9", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.4.1", + "ruleContent": "Definition – High Voltage is present outside of the Accumulator Container", + "parentRuleCode": "EV.9.4", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.4.2", + "ruleContent": "Tractive System Active must not be possible until the two: • GLV System is Energized • Shutdown Circuit is Closed", + "parentRuleCode": "EV.9.4", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.5", + "ruleContent": "Ready to Drive", + "parentRuleCode": "EV.9", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.5.1", + "ruleContent": "Definition – the Motor(s) will respond to the input of the APPS", + "parentRuleCode": "EV.9.5", + "pageNumber": "108", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.5.2", + "ruleContent": "Ready to Drive must not be possible until the three at the same time: • Tractive System Active EV.9.4 • The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 • The driver does a manual action to start Ready to Drive Such as pressing a specific button in the cockpit", + "parentRuleCode": "EV.9.5", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.6", + "ruleContent": "Ready to Drive Sound", + "parentRuleCode": "EV.9", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.6.1", + "ruleContent": "The vehicle must make a characteristic sound when it is Ready to Drive", + "parentRuleCode": "EV.9.6", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.6.2", + "ruleContent": "The Ready to Drive Sound must be: a. Sounded continuously for minimum 1 second and maximum 3 seconds b. A minimum sound level of 80 dBA, fast weighting IN.4.6 c. Easily recognizable. No animal voices, song parts or sounds that could be interpreted as offensive will be accepted", + "parentRuleCode": "EV.9.6", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.9.6.3", + "ruleContent": "The vehicle must not make other sounds similar to the Ready to Drive Sound.", + "parentRuleCode": "EV.9.6", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.10", + "ruleContent": "EVENT SITE ACTIVITIES", + "parentRuleCode": "EV", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.10.1", + "ruleContent": "Onsite Registration", + "parentRuleCode": "EV.10", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.10.1.1", + "ruleContent": "The Accumulator must be onsite at the time the team registers to be eligible for Accumulator Technical Inspection and Dynamic Events", + "parentRuleCode": "EV.10.1", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.10.1.2", + "ruleContent": "Teams who register without the Accumulator: a. Must not bring their Accumulator onsite for the duration of the competition b. May participate in Technical Inspection and Static Events", + "parentRuleCode": "EV.10.1", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.10.2", + "ruleContent": "Accumulator Removal", + "parentRuleCode": "EV.10", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.10.2.1", + "ruleContent": "After the team registers onsite, the Accumulator must remain on the competition site until the end of the competition, or the team withdraws and leaves the site", + "parentRuleCode": "EV.10.2", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.10.2.2", + "ruleContent": "Violators will be disqualified from the competition and must leave immediately", + "parentRuleCode": "EV.10.2", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.11", + "ruleContent": "WORK PRACTICES", + "parentRuleCode": "EV", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.1", + "ruleContent": "Personnel", + "parentRuleCode": "EV.11", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.1.1", + "ruleContent": "The Electrical System Officer (ESO): AD.5.2 a. Is the only person on the team that may declare the vehicle electrically safe to allow work on any system b. Must accompany the vehicle when operated or moved at the competition site c. Must be immediately available by phone at all times during the event", + "parentRuleCode": "EV.11.1", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.2", + "ruleContent": "Maintenance", + "parentRuleCode": "EV.11", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.2.1", + "ruleContent": "All participating team members must wear safety glasses with side shields at any time when: a. Parts of the Tractive System are exposed while energized b. Work is done on the Accumulators", + "parentRuleCode": "EV.11.2", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.2.2", + "ruleContent": "Appropriate insulated tools must be used when working on the Accumulator or Tractive System", + "parentRuleCode": "EV.11.2", + "pageNumber": "109", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.3", + "ruleContent": "Lockout", + "parentRuleCode": "EV.11", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.3.1", + "ruleContent": "The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle.", + "parentRuleCode": "EV.11.3", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.3.2", + "ruleContent": "The MSD EV.5.5 must be disconnected when vehicles are: a. Moved around the competition site b. Participating in Static Events", + "parentRuleCode": "EV.11.3", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.4", + "ruleContent": "Accumulator", + "parentRuleCode": "EV.11", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.4.1", + "ruleContent": "These work activities at competition are allowed only in the designated area and during Electrical Technical Inspection IN.4 See EV.5.3.3 a. Opening Accumulator Containers b. Any work on Accumulators, cells, or Segments c. Energized electrical work", + "parentRuleCode": "EV.11.4", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.4.2", + "ruleContent": "Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site inside one of the two: a. Completely closed Accumulator Container EV.4.3 See EV.4.10.2 b. Segment/Cell Transport Container EV.11.4.3", + "parentRuleCode": "EV.11.4", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.4.3", + "ruleContent": "The Segment/Cell Transport Container(s) must be: a. Electrically insulated b. Protected from shock hazards and arc flash", + "parentRuleCode": "EV.11.4", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.4.4", + "ruleContent": "Segments/Cells inside the Transport Container must agree with the voltage and energy limits of EV.5.1.2", + "parentRuleCode": "EV.11.4", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.5", + "ruleContent": "Charging", + "parentRuleCode": "EV.11", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.5.1", + "ruleContent": "Accumulators must be removed from the vehicle inside the Accumulator Container and put on the Accumulator Container Hand Cart EV.4.10 for Charging", + "parentRuleCode": "EV.11.5", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.5.2", + "ruleContent": "Accumulator Charging must occur only inside the designated area", + "parentRuleCode": "EV.11.5", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.5.3", + "ruleContent": "A team member(s) who has knowledge of the Charging process must stay with the Accumulator(s) during Charging", + "parentRuleCode": "EV.11.5", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.5.4", + "ruleContent": "Each Accumulator Container(s) must have a label with this data during Charging: • Team Name • Electrical System Officer phone number(s)", + "parentRuleCode": "EV.11.5", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.11.5.5", + "ruleContent": "Additional site specific rules or policies may apply", + "parentRuleCode": "EV.11.5", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.12", + "ruleContent": "RED CAR CONDITION", + "parentRuleCode": "EV", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.12.1", + "ruleContent": "Definition A vehicle will be a Red Car if any of the following: a. Actual or possible damage to the vehicle affecting the Tractive System b. Vehicle fault indication (EV.5.11 or equivalent) c. Other conditions, at the discretion of the officials", + "parentRuleCode": "EV.12", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "EV.12.2", + "ruleContent": "Actions a. Isolate the vehicle b. No contact with the vehicle unless the officials give permission Contact with the vehicle may require trained personnel with proper Personal Protective Equipment c. Call out designated Red Car responders", + "parentRuleCode": "EV.12", + "pageNumber": "110", + "isFromTOC": false + }, + { + "ruleCode": "IN", + "ruleContent": "TECHNICAL INSPECTION The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules.", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.1", + "ruleContent": "INSPECTION REQUIREMENTS", + "parentRuleCode": "IN", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.1.1", + "ruleContent": "Inspection Required Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any Dynamic event.", + "parentRuleCode": "IN.1", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.1.2", + "ruleContent": "Technical Inspection Authority", + "parentRuleCode": "IN.1", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.1.2.1", + "ruleContent": "The exact procedures and instruments used for inspection and testing are entirely at the discretion of the Chief Technical Inspector(s).", + "parentRuleCode": "IN.1.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.1.2.2", + "ruleContent": "Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance are final.", + "parentRuleCode": "IN.1.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.1.3", + "ruleContent": "Team Responsibility Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE Rules before Technical Inspection.", + "parentRuleCode": "IN.1", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.1.4", + "ruleContent": "Reinspection Officials may Reinspect any vehicle at any time during the competition IN.15", + "parentRuleCode": "IN.1", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2", + "ruleContent": "INSPECTION CONDUCT", + "parentRuleCode": "IN", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.1", + "ruleContent": "Vehicle Condition", + "parentRuleCode": "IN.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.1.1", + "ruleContent": "Vehicles must be presented for Technical Inspection in finished condition, fully assembled, complete and ready to run.", + "parentRuleCode": "IN.2.1", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.1.2", + "ruleContent": "Technical inspectors will not inspect any vehicle presented for inspection in an unfinished state.", + "parentRuleCode": "IN.2.1", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.2", + "ruleContent": "Measurement", + "parentRuleCode": "IN.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.2.1", + "ruleContent": "Allowable dimensions are absolute, and do not have any tolerance unless specifically stated", + "parentRuleCode": "IN.2.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.2.2", + "ruleContent": "Measurement tools and methods may vary", + "parentRuleCode": "IN.2.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.2.3", + "ruleContent": "No allowance is given for measurement accuracy or error", + "parentRuleCode": "IN.2.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.3", + "ruleContent": "Visible Access All items on the Technical Inspection Form must be clearly visible to the technical inspectors without using instruments such as endoscopes or mirrors. Methods to provide visible access include but are not limited to removable body panels, access panels, and other components", + "parentRuleCode": "IN.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.4", + "ruleContent": "Inspection Items", + "parentRuleCode": "IN.2", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.4.1", + "ruleContent": "Technical Inspection will examine all items included on the Technical Inspection Form to make sure the vehicle and other equipment obeys the Rules.", + "parentRuleCode": "IN.2.4", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.4.2", + "ruleContent": "Technical Inspectors may examine any other items at their discretion", + "parentRuleCode": "IN.2.4", + "pageNumber": "112", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.5", + "ruleContent": "Correction If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team must: • Correct the problem • Continue Inspection or have the vehicle Reinspected", + "parentRuleCode": "IN.2", + "pageNumber": "113", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.6", + "ruleContent": "Marked Items", + "parentRuleCode": "IN.2", + "pageNumber": "113", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.6.1", + "ruleContent": "Officials may mark, seal, or designate items or areas which have been inspected to document the inspection and reduce the chance of tampering", + "parentRuleCode": "IN.2.6", + "pageNumber": "113", + "isFromTOC": false + }, + { + "ruleCode": "IN.2.6.2", + "ruleContent": "Damaged or lost marks or seals require Reinspection IN.15", + "parentRuleCode": "IN.2.6", + "pageNumber": "113", + "isFromTOC": false + }, + { + "ruleCode": "IN.3", + "ruleContent": "INITIAL INSPECTION Bring these to Initial Inspection: • Technical Inspection Form • All Driver Equipment per VE.3 to be used by each driver • Fire Extinguishers (for paddock and vehicle) VE.2.3 • Wet Tires V.4.3.2", + "parentRuleCode": "IN", + "pageNumber": "113", + "isFromTOC": false + }, + { + "ruleCode": "IN.4", + "ruleContent": "ELECTRICAL TECHNICAL INSPECTION (EV ONLY)", + "parentRuleCode": "IN", + "pageNumber": "113", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.1", + "ruleContent": "Inspection Items Bring these to Electrical Technical Inspection: • Charger(s) for the Accumulator(s) EV.8.1 • Accumulator Container Hand Cart EV.4.10 • Spare Accumulator(s) (if applicable) EV.5.1.4 • Electrical Systems Form (ESF) and Component Data Sheets EV.2 • Copies of any submitted Rules Questions with the received answer GR.7 These basic tools in good condition: • Insulated cable shears • Insulated screw drivers • Multimeter with protected probe tips • Insulated tools, if screwed connections are used in the Tractive System • Face Shield • HV insulating gloves which are 12 months or less from their test date • Two HV insulating blankets of minimum 0.83 m² each • Safety glasses with side shields for all team members that might work on the Tractive System or Accumulator", + "parentRuleCode": "IN.4", + "pageNumber": "113", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.2", + "ruleContent": "Accumulator Inspection The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected during Electrical Technical Inspection, or separately from the rest of Electrical Technical Inspection.", + "parentRuleCode": "IN.4", + "pageNumber": "113", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.3", + "ruleContent": "Accumulator Access", + "parentRuleCode": "IN.4", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.3.1", + "ruleContent": "If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, provide detailed pictures of the internals taken during assembly", + "parentRuleCode": "IN.4.3", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.3.2", + "ruleContent": "Tech inspectors may require access to check any Accumulator(s) for rules compliance", + "parentRuleCode": "IN.4.3", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.4", + "ruleContent": "Insulation Monitoring Device Test", + "parentRuleCode": "IN.4", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.4.1", + "ruleContent": "The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the Tractive System is active", + "parentRuleCode": "IN.4.4", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.4.2", + "ruleContent": "The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault resistance of 50% below the response value corresponding to 250 Ohm / Volt", + "parentRuleCode": "IN.4.4", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.5", + "ruleContent": "Insulation Measurement Test", + "parentRuleCode": "IN.4", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.5.1", + "ruleContent": "The insulation resistance between the Tractive System and GLV System Ground will be measured.", + "parentRuleCode": "IN.4.5", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.5.2", + "ruleContent": "The available measurement voltages are 250 V and 500 V. All vehicles with a maximum nominal operation voltage below 500 V will be measured with the next available voltage level. All teams with a system voltage of 500 V or more will be measured with 500 V.", + "parentRuleCode": "IN.4.5", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.5.3", + "ruleContent": "To pass the Insulation Measurement Test the measured insulation resistance must be minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage.", + "parentRuleCode": "IN.4.5", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.6", + "ruleContent": "Ready to Drive Sound The sound level will be measured with a free field microphone placed free from obstructions in a radius of 2 m around the vehicle against the criteria in EV.9.6", + "parentRuleCode": "IN.4", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.7", + "ruleContent": "Electrical Inspection Completion", + "parentRuleCode": "IN.4", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.7.1", + "ruleContent": "All or portions of the Tractive System, Charger and other components may be sealed IN.2.6", + "parentRuleCode": "IN.4.7", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.7.2", + "ruleContent": "Additional monitoring to verify conformance to rules may be installed. Refer to the Event Website for further information.", + "parentRuleCode": "IN.4.7", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.7.3", + "ruleContent": "A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle may be Tractive System Active EV.9.4", + "parentRuleCode": "IN.4.7", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.4.7.4", + "ruleContent": "Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection before the vehicle may attempt any further Inspections. See EV.11.3.2", + "parentRuleCode": "IN.4.7", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.5", + "ruleContent": "DRIVER COCKPIT CHECKS The Clearance Checks and Egress Test may be done separately or in conjunction with other parts of Technical Inspection", + "parentRuleCode": "IN", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.5.1", + "ruleContent": "Driver Clearance Each driver in the normal driving position is checked for the three: • Helmet clearance F.5.6.4 • Head Restraint positioning T.2.8.5 • Harness fit and adjustment T.2.5, T.2.6, T.2.7", + "parentRuleCode": "IN.5", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.5.2", + "ruleContent": "Egress Test", + "parentRuleCode": "IN.5", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.5.2.1", + "ruleContent": "Each driver must be able to exit to the side of the vehicle in no more than 5 seconds.", + "parentRuleCode": "IN.5.2", + "pageNumber": "114", + "isFromTOC": false + }, + { + "ruleCode": "IN.5.2.2", + "ruleContent": "The Egress Test will be conducted for each driver as follows: a. The driver must wear the specified Driver Equipment VE.3.2, VE.3.3 b. Egress time begins with the driver in the fully seated position, with hands in driving position on the connected steering wheel. c. Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown Button EV.7.10.4 d. Egress time will stop when the driver has two feet on the pavement", + "parentRuleCode": "IN.5.2", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.5.3", + "ruleContent": "Driver Clearance and Egress Test Completion", + "parentRuleCode": "IN.5", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.5.3.1", + "ruleContent": "To drive the vehicle, each team driver must: a. Meet the Driver Clearance requirements IN.5.1 b. Successfully complete the Egress Test IN.5.2", + "parentRuleCode": "IN.5.3", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.5.3.2", + "ruleContent": "A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection", + "parentRuleCode": "IN.5.3", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.6", + "ruleContent": "DRIVER TEMPLATE INSPECTIONS The Driver Template Inspection will be conducted as part of the Mechanical Inspection", + "parentRuleCode": "IN", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.6.1", + "ruleContent": "Conduct The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6", + "parentRuleCode": "IN.6", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.6.2", + "ruleContent": "Driver Template Clearance Criteria To pass Mechanical Technical Inspection, the Driver Template must meet the clearance specified in F.5.6.4", + "parentRuleCode": "IN.6", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.7", + "ruleContent": "COCKPIT TEMPLATE INSPECTIONS The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection", + "parentRuleCode": "IN", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.7.1", + "ruleContent": "Conduct", + "parentRuleCode": "IN.7", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.7.1.1", + "ruleContent": "The Cockpit Opening will be checked using the template and procedure given in T.1.1", + "parentRuleCode": "IN.7.1", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.7.1.2", + "ruleContent": "The Internal Cross Section will be checked using the template and procedure given in T.1.2", + "parentRuleCode": "IN.7.1", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.7.2", + "ruleContent": "Cockpit Template Criteria To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described.", + "parentRuleCode": "IN.7", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.8", + "ruleContent": "MECHANICAL TECHNICAL INSPECTION", + "parentRuleCode": "IN", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.1", + "ruleContent": "Inspection Items Bring these to Mechanical Technical Inspection: • Vehicle on Dry Tires V.4.3.1 • Technical Inspection Form • Push Bar VE.2.2 • Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 • Monocoque Laminate Test Specimens (if applicable) F.4.2 • The Impact Attenuator that was tested (if applicable) F.8.8.7 • Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c • Electronic copies of any submitted Rules Questions with the received answer GR.7", + "parentRuleCode": "IN.8", + "pageNumber": "115", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.2", + "ruleContent": "Aerodynamic Devices Stability and Strength", + "parentRuleCode": "IN.8", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.2.1", + "ruleContent": "Any Aerodynamic Devices may be checked by pushing on the device in any direction and at any point. This is guidance, but actual conformance will be up to technical inspectors at the respective competitions. The intent is to reduce the likelihood of wings detaching", + "parentRuleCode": "IN.8.2", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.2.2", + "ruleContent": "If any deflection is significant, then a force of approximately 200 N may be applied. a. Loaded deflection should not be more than 25 mm b. Any permanent deflection less than 5 mm", + "parentRuleCode": "IN.8.2", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.2.3", + "ruleContent": "If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic Devices, then officials may Black Flag the vehicle for IN.15 Reinspection.", + "parentRuleCode": "IN.8.2", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.3", + "ruleContent": "Monocoque Inspections", + "parentRuleCode": "IN.8", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.3.1", + "ruleContent": "Dimensions of the Monocoque will be confirmed F.7.1.4", + "parentRuleCode": "IN.8.3", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.3.2", + "ruleContent": "When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide: a. Documentation that shows dimensions on the tubes b. Pictures of the dimensioned tube being included in the layup", + "parentRuleCode": "IN.8.3", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.3.3", + "ruleContent": "For items which cannot be verified by an inspector, the team must provide documentation, visual and/or written, that the requirements have been met.", + "parentRuleCode": "IN.8.3", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.3.4", + "ruleContent": "A team found to be improperly presenting any evidence of the manufacturing process may be barred from competing with a monocoque.", + "parentRuleCode": "IN.8.3", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.4", + "ruleContent": "Engine Inspection (IC Only) The organizer may measure or tear down engines to confirm conformance to the rules.", + "parentRuleCode": "IN.8", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.8.5", + "ruleContent": "Mechanical Inspection Completion All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any further inspections.", + "parentRuleCode": "IN.8", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.9", + "ruleContent": "TILT TEST", + "parentRuleCode": "IN", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.9.1", + "ruleContent": "Tilt Test Requirements a. The vehicle must contain the maximum amount of fluids it may carry b. The tallest driver must be seated in the normal driving position c. Tilt tests may be conducted in one, the other, or the two directions to pass d. (IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and pressure the system downstream of the High Pressure pump. See IC.6.2", + "parentRuleCode": "IN.9", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.9.2", + "ruleContent": "Tilt Test Criteria", + "parentRuleCode": "IN.9", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.9.2.1", + "ruleContent": "No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal", + "parentRuleCode": "IN.9.2", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.9.2.2", + "ruleContent": "Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g.", + "parentRuleCode": "IN.9.2", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.9.3", + "ruleContent": "Tilt Test Completion Tilt Tests must be passed before a vehicle may attempt any further inspections", + "parentRuleCode": "IN.9", + "pageNumber": "116", + "isFromTOC": false + }, + { + "ruleCode": "IN.10", + "ruleContent": "NOISE AND SWITCH TEST (IC ONLY)", + "parentRuleCode": "IN", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.1", + "ruleContent": "Sound Level Measurement", + "parentRuleCode": "IN.10", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.1.1", + "ruleContent": "The sound level will be measured during a stationary test, with the vehicle gearbox in neutral at the defined Test Speed", + "parentRuleCode": "IN.10.1", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.1.2", + "ruleContent": "Measurements will be made with a free field microphone placed: • free from obstructions • at the Exhaust Outlet vertical level IC.7.2.2 • 0.5 m from the end of the Exhaust Outlet IC.7.2.2 • at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below)", + "parentRuleCode": "IN.10.1", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.2", + "ruleContent": "Special Configurations", + "parentRuleCode": "IN.10", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.2.1", + "ruleContent": "Where the Exhaust has more than one Exhaust Outlet: a. The noise test is repeated for each outlet b. The highest sound level is used", + "parentRuleCode": "IN.10.2", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.2.2", + "ruleContent": "Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal plane.", + "parentRuleCode": "IN.10.2", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.2.3", + "ruleContent": "If the exhaust has any form of active tuning or throttling device or system, the exhaust must meet all requirements with the device or system in all positions.", + "parentRuleCode": "IN.10.2", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.2.4", + "ruleContent": "When the exhaust has a manually adjustable tuning device(s): a. The position of the device must be visible to the officials for the noise test b. The device must be manually operable by the officials during the noise test c. The device must not be moved or modified after the noise test is passed", + "parentRuleCode": "IN.10.2", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.3", + "ruleContent": "Industrial Engine An engine which, according to the manufacturers’ specifications and without the required restrictor, is capable of producing 5 hp per 100 cc or less. Submit a Rules Question to request approval of an Industrial Engine.", + "parentRuleCode": "IN.10", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.4", + "ruleContent": "Test Speeds", + "parentRuleCode": "IN.10", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.4.1", + "ruleContent": "Maximum Test Speed The engine speed that corresponds to an average piston speed of: a. Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min) b. Industrial Engines 731.5 m/min (2,400 ft/min) The calculated speed will be rounded to the nearest 500 rpm. Test Speeds for typical engines are published on the FSAE Online website", + "parentRuleCode": "IN.10.4", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.4.2", + "ruleContent": "Idle Test Speed a. Determined by the vehicle’s calibrated idle speed b. If the idle speed varies then the vehicle will be tested across the range of idle speeds determined by the team", + "parentRuleCode": "IN.10.4", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.4.3", + "ruleContent": "The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed.", + "parentRuleCode": "IN.10.4", + "pageNumber": "117", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.5", + "ruleContent": "Maximum Permitted Sound Level a. At idle 103 dBC, fast weighting b. At all other speeds 110 dBC, fast weighting", + "parentRuleCode": "IN.10", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.6", + "ruleContent": "Noise Level Retesting", + "parentRuleCode": "IN.10", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.6.1", + "ruleContent": "Noise levels may be monitored at any time", + "parentRuleCode": "IN.10.6", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.6.2", + "ruleContent": "The Noise Test may be repeated at any time", + "parentRuleCode": "IN.10.6", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.7", + "ruleContent": "Switch Function The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, and/or BOTS T.3.3 will be verified during the Noise Test", + "parentRuleCode": "IN.10", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.10.8", + "ruleContent": "Noise Test Completion Noise Tests must be passed before a vehicle may attempt any further inspections", + "parentRuleCode": "IN.10", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.11", + "ruleContent": "RAIN TEST (EV ONLY)", + "parentRuleCode": "IN", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.11.1", + "ruleContent": "Rain Test Requirements • Tractive System must be Active • The vehicle must not be in Ready to Drive mode (EV.7) • Any driven wheels must not touch the ground • A driver must not be seated in the vehicle", + "parentRuleCode": "IN.11", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.11.2", + "ruleContent": "Rain Test Conduct The water spray will be rain like, not a direct high pressure water jet a. Spray water at the vehicle from any possible direction for 120 seconds b. Stop the water spray c. Observe the vehicle for 120 seconds", + "parentRuleCode": "IN.11", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.11.3", + "ruleContent": "Rain Test Completion The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire 240 seconds duration", + "parentRuleCode": "IN.11", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.12", + "ruleContent": "BRAKE TEST", + "parentRuleCode": "IN", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.12.1", + "ruleContent": "Objective The brake system will be dynamically tested and must demonstrate the capability of locking all four wheels when stopping the vehicle in a straight line at the end of an acceleration run specified by the brake inspectors", + "parentRuleCode": "IN.12", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.12.2", + "ruleContent": "Brake Test Conduct (IC Only)", + "parentRuleCode": "IN.12", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.12.2.1", + "ruleContent": "Brake Test procedure: a. Accelerate to speed (typically getting into 2nd gear) until reaching the designated area b. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels", + "parentRuleCode": "IN.12.2", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.12.2.2", + "ruleContent": "The Brake Test passes if: • All four wheels lock up • The engine stays running during the complete test", + "parentRuleCode": "IN.12.2", + "pageNumber": "118", + "isFromTOC": false + }, + { + "ruleCode": "IN.12.3", + "ruleContent": "Brake Test Conduct (EV Only)", + "parentRuleCode": "IN.12", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.12.3.1", + "ruleContent": "Brake Test procedure: a. Accelerate to speed until reaching the designated area b. Switch off the Tractive System EV.7.10.4 c. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels", + "parentRuleCode": "IN.12.3", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.12.3.2", + "ruleContent": "The Brake Test passes if all four wheels lock while the Tractive System is shut down", + "parentRuleCode": "IN.12.3", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.12.3.3", + "ruleContent": "The Tractive System Active Light may switch a short time after the vehicle has come to a complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c", + "parentRuleCode": "IN.12.3", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13", + "ruleContent": "INSPECTION APPROVAL", + "parentRuleCode": "IN", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.1", + "ruleContent": "Inspection Approval", + "parentRuleCode": "IN.13", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.1.1", + "ruleContent": "When all parts of Technical Inspection are complete as shown on the Technical Inspection sheet, the vehicle receives Inspection Approval", + "parentRuleCode": "IN.13.1", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.1.2", + "ruleContent": "The completed Inspection Sticker shows the Inspection Approval", + "parentRuleCode": "IN.13.1", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.1.3", + "ruleContent": "The Inspection Approval is contingent on the vehicle remaining in the required condition throughout the competition.", + "parentRuleCode": "IN.13.1", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.1.4", + "ruleContent": "The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any time for any reason", + "parentRuleCode": "IN.13.1", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.2", + "ruleContent": "Inspection Sticker", + "parentRuleCode": "IN.13", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.2.1", + "ruleContent": "Inspection Sticker(s) are issued after completion of all or part of Technical Inspection", + "parentRuleCode": "IN.13.2", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.2.2", + "ruleContent": "Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently", + "parentRuleCode": "IN.13.2", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.3", + "ruleContent": "Inspection Validity", + "parentRuleCode": "IN.13", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.3.1", + "ruleContent": "Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or are required to be Reinspected.", + "parentRuleCode": "IN.13.3", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.13.3.2", + "ruleContent": "Inspection Approval is valid only for the duration of the specific Formula SAE competition during which the inspection is conducted.", + "parentRuleCode": "IN.13.3", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.14", + "ruleContent": "MODIFICATIONS AND REPAIRS", + "parentRuleCode": "IN", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.14.1", + "ruleContent": "Prior to Inspection Approval Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for Technical Inspection, and until the vehicle has the full Inspection Approval, the only modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the Inspection Form.", + "parentRuleCode": "IN.14", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.14.2", + "ruleContent": "After Inspection Approval", + "parentRuleCode": "IN.14", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.14.2.1", + "ruleContent": "The vehicle must maintain all required specifications (including but not limited to ride height, suspension travel, braking capacity (pad material/composition), sound level and wing location) throughout the competition.", + "parentRuleCode": "IN.14.2", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.14.2.2", + "ruleContent": "Changes to fit the vehicle to different drivers are allowed. Permitted changes are: • Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly • Substitution of the Head Restraint or seat insert • Adjustment of mirrors", + "parentRuleCode": "IN.14.2", + "pageNumber": "119", + "isFromTOC": false + }, + { + "ruleCode": "IN.14.2.3", + "ruleContent": "Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the vehicle are: • Adjustment of belts, chains and clutches • Adjustment of brake bias • Adjustment to engine / powertrain operating parameters, including fuel mixture and ignition timing, and any software calibration changes • Adjustment of the suspension • Changing springs, sway bars and shims in the suspension • Adjustment of Tire Pressure, subject to V.4.3.4 • Adjustment of wing or wing element(s) angle, but not the location T.7.1 • Replenishment of fluids • Replacement of worn tires or brake pads. Replacement tires and brake pads must be identical in material/composition/size to those presented and approved at Technical Inspection. • Changing of wheels and tires for weather conditions D.6 • Recharging Low Voltage batteries • Recharging High Voltage Accumulators", + "parentRuleCode": "IN.14.2", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.14.3", + "ruleContent": "Repairs or Changes After Inspection Approval The Inspection Approval may be voided for any reason including, but not limited to: a. Damage to the vehicle IN.13.1.3 b. Changes beyond those allowed per IN.14.2 above", + "parentRuleCode": "IN.14", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15", + "ruleContent": "REINSPECTION", + "parentRuleCode": "IN", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.1", + "ruleContent": "Requirement", + "parentRuleCode": "IN.15", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.1.1", + "ruleContent": "Any vehicle may be Reinspected at any time for any reason", + "parentRuleCode": "IN.15.1", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.1.2", + "ruleContent": "Reinspection must be completed to restore Inspection Approval, if voided", + "parentRuleCode": "IN.15.1", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.2", + "ruleContent": "Conduct", + "parentRuleCode": "IN.15", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.2.1", + "ruleContent": "The Technical Inspection process may be repeated in entirety or in part", + "parentRuleCode": "IN.15.2", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.2.2", + "ruleContent": "Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector", + "parentRuleCode": "IN.15.2", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.3", + "ruleContent": "Result", + "parentRuleCode": "IN.15", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.3.1", + "ruleContent": "With Voided Inspection Approval Successful completion of Reinspection will restore Inspection Approval IN.13.1", + "parentRuleCode": "IN.15.3", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "IN.15.3.2", + "ruleContent": "During Dynamic Events a. Issues found during Reinspection will void Inspection Approval b. Penalties may be applied to the Dynamic Events the vehicle has competed in Applied penalties may include additional time added to event(s), loss of one or more fastest runs, up to DQ, subject to official discretion.", + "parentRuleCode": "IN.15.3", + "pageNumber": "120", + "isFromTOC": false + }, + { + "ruleCode": "S", + "ruleContent": "STATIC EVENTS", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.1", + "ruleContent": "GENERAL STATIC Presentation 75 points Cost 100 points Design 150 points Total 325 points", + "parentRuleCode": "S", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2", + "ruleContent": "PRESENTATION EVENT", + "parentRuleCode": "S", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.1", + "ruleContent": "Presentation Event Objective The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive business, logistical, production, or technical case that will convince outside interests to invest in the team’s concept.", + "parentRuleCode": "S.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.2", + "ruleContent": "Presentation Concept", + "parentRuleCode": "S.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.2.1", + "ruleContent": "The concept for the Presentation Event will be provided on the FSAE Online website.", + "parentRuleCode": "S.2.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.2.2", + "ruleContent": "The concept for the Presentation Event may change for each competition", + "parentRuleCode": "S.2.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.2.3", + "ruleContent": "The team presentation must meet the concept", + "parentRuleCode": "S.2.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.2.4", + "ruleContent": "The team presentation must relate specifically to the vehicle as entered in the competition", + "parentRuleCode": "S.2.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.2.5", + "ruleContent": "Teams should assume that the judges represent different areas, including engineering, production, marketing and finance, and may not all be engineers.", + "parentRuleCode": "S.2.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.2.6", + "ruleContent": "The presentation may be given in different settings, such as a conference room, a group meeting, virtually, or in conjunction with other Static Events. Specific details will be included in the Presentation Concept or communicated separately.", + "parentRuleCode": "S.2.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.3", + "ruleContent": "Presentation Schedule Teams that fail to make their presentation during their assigned time period get zero points for the Presentation Event.", + "parentRuleCode": "S.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.4", + "ruleContent": "Presentation Submissions", + "parentRuleCode": "S.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.4.1", + "ruleContent": "The Presentation Concept may require information to be submitted prior to the event. Specific details will be included in the Presentation Concept.", + "parentRuleCode": "S.2.4", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.4.2", + "ruleContent": "Submissions may be graded as part of the Presentation Event score.", + "parentRuleCode": "S.2.4", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.4.3", + "ruleContent": "Pre event submissions will be subject to penalties imposed as given in section DR - Document Requirements or the Presentation Concept", + "parentRuleCode": "S.2.4", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.5", + "ruleContent": "Presentation Format", + "parentRuleCode": "S.2", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.5.1", + "ruleContent": "One or more team members will give the presentation to the judges.", + "parentRuleCode": "S.2.5", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.5.2", + "ruleContent": "All team members who will give any part of the presentation, or who will respond to judges’ questions must be: • In the presentation area when the presentation starts • Introduced and identified to the judges", + "parentRuleCode": "S.2.5", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.5.3", + "ruleContent": "Presentations will be time limited. The judges will stop any presentation exceeding the time limit.", + "parentRuleCode": "S.2.5", + "pageNumber": "121", + "isFromTOC": false + }, + { + "ruleCode": "S.2.5.4", + "ruleContent": "The presentation itself will not be interrupted by questions. Immediately after the presentation there may be a question and answer session.", + "parentRuleCode": "S.2.5", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.5.5", + "ruleContent": "Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions.", + "parentRuleCode": "S.2.5", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.6", + "ruleContent": "Presentation Equipment Refer to the Presentation Concept for additional information", + "parentRuleCode": "S.2", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.7", + "ruleContent": "Evaluation Criteria", + "parentRuleCode": "S.2", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.7.1", + "ruleContent": "Presentations will be evaluated on content, organization, visual aids, delivery and the team’s response to the judges questions.", + "parentRuleCode": "S.2.7", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.7.2", + "ruleContent": "The actual quality of the prototype itself will not be considered as part of the presentation judging", + "parentRuleCode": "S.2.7", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.7.3", + "ruleContent": "Presentation Judging Score Sheet – available at the FSAE Online website", + "parentRuleCode": "S.2.7", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.8", + "ruleContent": "Judging Sequence Presentation judging may be conducted in one or more phases.", + "parentRuleCode": "S.2", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.9", + "ruleContent": "Presentation Event Scoring", + "parentRuleCode": "S.2", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.9.1", + "ruleContent": "The Presentation raw score is based on the average of the scores of each judge.", + "parentRuleCode": "S.2.9", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.9.2", + "ruleContent": "Presentation Event scores may range from 0 to 75 points, using a method at the discretion of the judges", + "parentRuleCode": "S.2.9", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.2.9.3", + "ruleContent": "Presentation Event scoring may include normalizing the scores of different judging teams and scaling the overall results.", + "parentRuleCode": "S.2.9", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.3", + "ruleContent": "COST AND MANUFACTURING EVENT", + "parentRuleCode": "S", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.3.1", + "ruleContent": "Cost Event Objective The Cost and Manufacturing Event evaluates the ability of the team to consider budget and incorporate production considerations for production and efficiency. Making tradeoff decisions between content and cost based on the performance of each part and assembly and accounting for each part and process to meet a budget is part of Project Management.", + "parentRuleCode": "S.3", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.3.2", + "ruleContent": "Cost Event Supplement a. Additional specific information on the Cost and Manufacturing Event, including explanation and requirements, is provided in the Formula SAE Cost Event Supplement document. b. Use the Formula SAE Cost Event Supplement to properly complete the requirements of the Cost and Manufacturing Event. c. The Formula SAE Cost Event Supplement is available on the FSAE Online website", + "parentRuleCode": "S.3", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.3.3", + "ruleContent": "Cost Event Areas", + "parentRuleCode": "S.3", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.3.3.1", + "ruleContent": "Cost Report Preparation and submission of a report (the “Cost Report”)", + "parentRuleCode": "S.3.3", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.3.3.2", + "ruleContent": "Event Day Discussion Discussion at the Competition with the Cost Judges around the team’s vehicle.", + "parentRuleCode": "S.3.3", + "pageNumber": "122", + "isFromTOC": false + }, + { + "ruleCode": "S.3.3.3", + "ruleContent": "Cost Scenario Teams will respond to a challenge related to cost or manufacturing of the vehicle.", + "parentRuleCode": "S.3.3", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.4", + "ruleContent": "Cost Report", + "parentRuleCode": "S.3", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.4.1", + "ruleContent": "The Cost Report must: a. List and cost each part on the vehicle using the standardized Cost Tables b. Base the cost on the actual manufacturing technique used on the prototype Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc. c. Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it. d. Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools). e. Include supporting documentation to allow officials to verify part costing", + "parentRuleCode": "S.3.4", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.4.2", + "ruleContent": "Generate and submit the Cost Report using the FSAE Online website, see DR - Document Requirements", + "parentRuleCode": "S.3.4", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.5", + "ruleContent": "Bill of Materials - BOM", + "parentRuleCode": "S.3", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.5.1", + "ruleContent": "The BOM is a list of all vehicle parts, showing the relationships between the items. a. The overall vehicle is broken down into separate Systems b. Systems are made up of Assemblies c. Assemblies are made up of Parts d. Parts consist of Materials, Processes and Fasteners e. Tooling is associated with each Process that requires production tooling", + "parentRuleCode": "S.3.5", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.6", + "ruleContent": "Late Submission Penalties for Late Submission of Cost Report will be imposed as given in section DR - Document Requirements.", + "parentRuleCode": "S.3", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.7", + "ruleContent": "Cost Addendum", + "parentRuleCode": "S.3", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.7.1", + "ruleContent": "A supplement to the Cost Report that reflects any changes or corrections made after the submission of the Cost Report may be submitted.", + "parentRuleCode": "S.3.7", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.7.2", + "ruleContent": "The Cost Addendum must be submitted during Onsite Registration at the Event.", + "parentRuleCode": "S.3.7", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.7.3", + "ruleContent": "The Cost Addendum must follow the format as given in section DR - Document Requirements", + "parentRuleCode": "S.3.7", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.7.4", + "ruleContent": "Addenda apply only to the competition at which they are submitted.", + "parentRuleCode": "S.3.7", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.7.5", + "ruleContent": "A separate Cost Addendum may be submitted at each competition a vehicle attends.", + "parentRuleCode": "S.3.7", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.7.6", + "ruleContent": "Changes to the Cost Report in the Cost Addendum will incur additional cost: a. Added items will be cost at 125% of the table cost: + (1.25 x Cost) b. Removed items will be credited 75% of the table cost: - (0.75 x Cost)", + "parentRuleCode": "S.3.7", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.8", + "ruleContent": "Cost Tables", + "parentRuleCode": "S.3", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.8.1", + "ruleContent": "All costs in the Cost Report must come from the standardized Cost Tables.", + "parentRuleCode": "S.3.8", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.8.2", + "ruleContent": "If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add Item Request must be submitted. See S.3.10", + "parentRuleCode": "S.3.8", + "pageNumber": "123", + "isFromTOC": false + }, + { + "ruleCode": "S.3.9", + "ruleContent": "Make versus Buy", + "parentRuleCode": "S.3", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.9.1", + "ruleContent": "Each part may be classified as Made or Bought Refer to the Formula SAE Cost Event Supplement for additional information", + "parentRuleCode": "S.3.9", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.9.2", + "ruleContent": "If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so.", + "parentRuleCode": "S.3.9", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.9.3", + "ruleContent": "Any part which is normally purchased that is optionally shown as a Made part must have supporting documentation submitted to prove team manufacture.", + "parentRuleCode": "S.3.9", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.9.4", + "ruleContent": "Teams costing Bought parts as Made parts will be penalized.", + "parentRuleCode": "S.3.9", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.10", + "ruleContent": "Add Item Request", + "parentRuleCode": "S.3", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.10.1", + "ruleContent": "An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost Tables for individual team requirements.", + "parentRuleCode": "S.3.10", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.10.2", + "ruleContent": "After review, the item may be added to the Cost Table with an appropriate cost. It will then be available to all teams.", + "parentRuleCode": "S.3.10", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.11", + "ruleContent": "Public Cost Reports", + "parentRuleCode": "S.3", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.11.1", + "ruleContent": "The competition organizers may publish all or part of the submitted Cost Reports.", + "parentRuleCode": "S.3.11", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.11.2", + "ruleContent": "Cost Reports for a given competition season will not be published before the end of the calendar year. Support materials, such as technical drawings, will not be released.", + "parentRuleCode": "S.3.11", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.12", + "ruleContent": "Cost Report Penalties Process", + "parentRuleCode": "S.3", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.12.1", + "ruleContent": "This procedure will be used in determining penalties: a. Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions b. Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost Additions c. The higher of the two penalties will be applied against the Cost Event score • Penalty A expressed in points will be deducted from the Cost Event score • Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle", + "parentRuleCode": "S.3.12", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.12.2", + "ruleContent": "Any error that results in a team over reporting a cost in their Cost Report will not be further penalized.", + "parentRuleCode": "S.3.12", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.12.3", + "ruleContent": "Any instance where a team’s score benefits by an intentional or unintentional error on the part of the students will be corrected on a case by case basis.", + "parentRuleCode": "S.3.12", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.12.4", + "ruleContent": "Penalty Method A - Fixed Point Deductions a. From the Bill of Material, the Cost Judges will determine if all Parts and Processes have been included in the analysis. b. In the case of any omission or error a penalty proportional to the BOM level of the error will be imposed: • Missing/inaccurate Material, Process, Fastener 1 point • Missing/inaccurate Part 3 point • Missing/inaccurate Assembly 5 point c. Each of the penalties listed above supersedes the previous penalty. Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. d. Differences other than those listed above will be deducted at the discretion of the Cost Judges.", + "parentRuleCode": "S.3.12", + "pageNumber": "124", + "isFromTOC": false + }, + { + "ruleCode": "S.3.12.5", + "ruleContent": "Penalty Method B – Adjusted Cost Additions a. The table cost for the missing or incomplete items will be calculated from the standard Cost Tables. b. The penalty will be a value equal to twice the difference between the team cost and the correct cost for all items in error. Penalty = 2 x (Table Cost – Team Reported Cost) The table costs of all items in error are included in the calculation. A missing Assembly would include the price of all Parts, Materials, Processes and Fasteners making up the Assembly.", + "parentRuleCode": "S.3.12", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.13", + "ruleContent": "Event Day and Discussion", + "parentRuleCode": "S.3", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.13.1", + "ruleContent": "The team must present their vehicle at the designated time", + "parentRuleCode": "S.3.13", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.13.2", + "ruleContent": "The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during Cost Event judging", + "parentRuleCode": "S.3.13", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.13.3", + "ruleContent": "Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging", + "parentRuleCode": "S.3.13", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.13.4", + "ruleContent": "The Cost Judges will: a. Review whether the Cost Report accurately reflects the vehicle as presented b. Review the manufacturing feasibility of the vehicle c. Assess supporting documentation based on its quality, accuracy and thoroughness d. Apply penalties for missing or incorrect information in the Cost Report compared to the vehicle presented at inspection", + "parentRuleCode": "S.3.13", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.14", + "ruleContent": "Cost Audit", + "parentRuleCode": "S.3", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.14.1", + "ruleContent": "Teams may be selected for additional review to verify all processes and materials on their vehicle are in the Cost Report", + "parentRuleCode": "S.3.14", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.14.2", + "ruleContent": "Adjustments from the Cost Audit will be included in the final scores", + "parentRuleCode": "S.3.14", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.15", + "ruleContent": "Cost Scenario The Cost Scenario will be provided prior to the competition on the FSAE Online website The Cost Scenario will include detailed information about the conduct, scope, and conditions of the Cost Scenario", + "parentRuleCode": "S.3", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.16", + "ruleContent": "Cost Event Scoring", + "parentRuleCode": "S.3", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.16.1", + "ruleContent": "Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario", + "parentRuleCode": "S.3.16", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.16.2", + "ruleContent": "The Cost Event is worth 100 points", + "parentRuleCode": "S.3.16", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.16.3", + "ruleContent": "Cost Event Scores may be awarded in areas including, but not limited to: • Price Score • Discussion Score • Scenario Score", + "parentRuleCode": "S.3.16", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.16.4", + "ruleContent": "Penalty points may be subtracted from the Cost Score, with no limit.", + "parentRuleCode": "S.3.16", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.3.16.5", + "ruleContent": "Cost Event scoring may include normalizing the scores of different judging teams and scaling the results.", + "parentRuleCode": "S.3.16", + "pageNumber": "125", + "isFromTOC": false + }, + { + "ruleCode": "S.4", + "ruleContent": "DESIGN EVENT", + "parentRuleCode": "S", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.1", + "ruleContent": "Design Event Objective", + "parentRuleCode": "S.4", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.1.1", + "ruleContent": "The Design Event evaluates the engineering effort that went into the vehicle and how the engineering meets the intent of the market in terms of vehicle performance and overall value.", + "parentRuleCode": "S.4.1", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.1.2", + "ruleContent": "The team and vehicle that illustrate the best use of engineering to meet the design goals, a cost effective high performance vehicle, and the best understanding of the design by the team members will win the Design Event.", + "parentRuleCode": "S.4.1", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.1.3", + "ruleContent": "Components and systems that are incorporated into the design as finished items are not evaluated as a student designed unit, but are assessed on the team’s selection and application of that unit.", + "parentRuleCode": "S.4.1", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.2", + "ruleContent": "Design Documents", + "parentRuleCode": "S.4", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.2.1", + "ruleContent": "Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings", + "parentRuleCode": "S.4.2", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.2.2", + "ruleContent": "These Design Documents will be used for: • Design Judge reviews prior to the Design Event • Sorting teams into appropriate design groups based on the quality of their review.", + "parentRuleCode": "S.4.2", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.2.3", + "ruleContent": "Penalties for Late Submission of all or any one of the Design Documents will be imposed as given in section DR - Document Requirements", + "parentRuleCode": "S.4.2", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.2.4", + "ruleContent": "Teams that submit one or more Design Documents which do not represent a serious effort to comply with the requirements may be excluded from the Design Event or be awarded a lower score.", + "parentRuleCode": "S.4.2", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.3", + "ruleContent": "Design Briefing", + "parentRuleCode": "S.4", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.3.1", + "ruleContent": "The Design Briefing must use the template from the FSAE Online website.", + "parentRuleCode": "S.4.3", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.3.2", + "ruleContent": "Refer to the Design Briefing template for: a. Specific content requirements, areas and details b. Maximum slides that may be used per topic", + "parentRuleCode": "S.4.3", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.3.3", + "ruleContent": "Submit the Design Briefing as given in section DR - Document Requirements", + "parentRuleCode": "S.4.3", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.4", + "ruleContent": "Vehicle Drawings", + "parentRuleCode": "S.4", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.4.1", + "ruleContent": "The Vehicle Drawings must meet: a. Three view line drawings showing the vehicle, from the front, top, and side b. Each drawing must appear on a separate page c. May be manually or computer generated", + "parentRuleCode": "S.4.4", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.4.2", + "ruleContent": "Submit the Vehicle Drawings as given in section DR - Document Requirements", + "parentRuleCode": "S.4.4", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.5", + "ruleContent": "Design Spec Sheet Use the format provided and submit the Design Spec Sheet as given in section DR - Document Requirements The Design Judges realize that final design refinements and vehicle development may cause the submitted values to differ from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate.", + "parentRuleCode": "S.4", + "pageNumber": "126", + "isFromTOC": false + }, + { + "ruleCode": "S.4.6", + "ruleContent": "Vehicle Condition", + "parentRuleCode": "S.4", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.6.1", + "ruleContent": "Inspection Approval IN.13.1.1 is not required prior to Design judging.", + "parentRuleCode": "S.4.6", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.6.2", + "ruleContent": "Vehicles must be presented for Design judging in finished condition, fully assembled, complete and ready to run. a. The judges will not evaluate any vehicle that is presented at the Design event in what they consider to be an unfinished state. b. Point penalties may be assessed for vehicles with obvious preparation issues", + "parentRuleCode": "S.4.6", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.7", + "ruleContent": "Support Material", + "parentRuleCode": "S.4", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.7.1", + "ruleContent": "Teams may bring to Design Judging any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process.", + "parentRuleCode": "S.4.7", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.7.2", + "ruleContent": "The available space in the Design Event judging area may be limited.", + "parentRuleCode": "S.4.7", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.8", + "ruleContent": "Judging Sequence Design judging may be conducted in one or more phases. Typical Design judging includes a first round review of all teams, then additional review of selected teams.", + "parentRuleCode": "S.4", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.9", + "ruleContent": "Judging Criteria", + "parentRuleCode": "S.4", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.9.1", + "ruleContent": "The Design Judges will: a. Evaluate the engineering effort based upon the team’s Design Documents, discussion with the team, and an inspection of the vehicle b. Inspect the vehicle to determine if the design concepts are adequate and appropriate for the application (relative to the objectives stated in the rules). c. Deduct points if the team cannot adequately explain the engineering and construction of the vehicle", + "parentRuleCode": "S.4.9", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.9.2", + "ruleContent": "The Design Judges may assign a portion of the Design Event points to the Design Documents", + "parentRuleCode": "S.4.9", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.9.3", + "ruleContent": "Design Judging Score Sheets are available at the FSAE Online website.", + "parentRuleCode": "S.4.9", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.10", + "ruleContent": "Design Event Scoring", + "parentRuleCode": "S.4", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.10.1", + "ruleContent": "Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge", + "parentRuleCode": "S.4.10", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.10.2", + "ruleContent": "Penalty points may be subtracted from the Design score", + "parentRuleCode": "S.4.10", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "S.4.10.3", + "ruleContent": "Vehicles that are excluded from Design judging or refused judging get zero points for Design, and may receive penalty points.", + "parentRuleCode": "S.4.10", + "pageNumber": "127", + "isFromTOC": false + }, + { + "ruleCode": "D", + "ruleContent": "DYNAMIC EVENTS", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.1", + "ruleContent": "GENERAL DYNAMIC", + "parentRuleCode": "D", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.1.1", + "ruleContent": "Dynamic Events and Maximum Scores Acceleration 100 points Skid Pad 75 points Autocross 125 points Efficiency 100 points Endurance 275 points Total 675 points", + "parentRuleCode": "D.1", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.1.2", + "ruleContent": "Definitions", + "parentRuleCode": "D.1", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.1.2.1", + "ruleContent": "Dynamic Area – Any designated portion(s) of the competition site where the vehicles may move under their own power. This includes competition, inspection and practice areas.", + "parentRuleCode": "D.1.2", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.1.2.2", + "ruleContent": "Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the purpose of gathering those vehicles that are about to start.", + "parentRuleCode": "D.1.2", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2", + "ruleContent": "PIT AND PADDOCK", + "parentRuleCode": "D", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.1", + "ruleContent": "Vehicle Movement", + "parentRuleCode": "D.2", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.1.1", + "ruleContent": "Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside", + "parentRuleCode": "D.2.1", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.1.2", + "ruleContent": "The team may move the vehicle with a. All four wheels on the ground b. The rear wheels supported on dollies, by push bar mounted wheels The external wheels supporting the rear of the vehicle must be non pivoting so the vehicle travels only where the front wheels are steered. The driver must always be able to steer and brake the vehicle normally.", + "parentRuleCode": "D.2.1", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.1.3", + "ruleContent": "When the Push Bar is attached, the engine must stay off, unless authorized by the officials", + "parentRuleCode": "D.2.1", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.1.4", + "ruleContent": "Vehicles must be Shutdown when being moved around the paddock", + "parentRuleCode": "D.2.1", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.1.5", + "ruleContent": "Vehicles with wings must have two team members, one walking on each side of the vehicle when the vehicle is being pushed", + "parentRuleCode": "D.2.1", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.1.6", + "ruleContent": "A 25 point penalty may be assessed for each violation", + "parentRuleCode": "D.2.1", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.2", + "ruleContent": "Fueling and Charging (IC only) Officials must conduct all fueling activities in the designated location. (EV only) Accumulator charging must be done in the designated location EV.11.5", + "parentRuleCode": "D.2", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.2.3", + "ruleContent": "Powertrain Operation In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three: a. (IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR a Technical Inspector gives permission (EV only) The vehicle shows the OK to Energize sticker IN.4.7.3 b. The vehicle is supported on a stand c. The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed", + "parentRuleCode": "D.2", + "pageNumber": "128", + "isFromTOC": false + }, + { + "ruleCode": "D.3", + "ruleContent": "DRIVING", + "parentRuleCode": "D", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.1", + "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event must attend the drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", + "parentRuleCode": "D.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.2", + "ruleContent": "Dynamic Area Limitations Refer to the Event Website for specific information", + "parentRuleCode": "D.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.2.1", + "ruleContent": "The organizer may specify restrictions for the Dynamic Area. These could include limiting the number of team members and what may be brought into the area.", + "parentRuleCode": "D.3.2", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.2.2", + "ruleContent": "The organizer may specify additional restrictions for the Staging Area. These could include limiting the number of team members and what may be brought into the area.", + "parentRuleCode": "D.3.2", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.2.3", + "ruleContent": "The organizer may establish requirements for persons in the Dynamic Area, such as closed toe shoes or long pants.", + "parentRuleCode": "D.3.2", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.3", + "ruleContent": "Driving Under Power", + "parentRuleCode": "D.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.3.1", + "ruleContent": "Vehicles must move under their own power only when inside the designated Dynamic Area(s), unless otherwise directed by the officials.", + "parentRuleCode": "D.3.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.3.2", + "ruleContent": "Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point penalty for the first violation and disqualification for a second violation.", + "parentRuleCode": "D.3.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.4", + "ruleContent": "Driving Offsite - Prohibited Teams found to have driven their vehicle at an offsite location during the period of the competition will be excluded from the competition.", + "parentRuleCode": "D.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.5", + "ruleContent": "Driver Equipment", + "parentRuleCode": "D.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.5.1", + "ruleContent": "All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with: a. (IC) Engine running or (EV) Tractive System Active b. Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run.", + "parentRuleCode": "D.3.5", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.5.2", + "ruleContent": "Removal of any Driver Equipment during a Dynamic event will result in Disqualification.", + "parentRuleCode": "D.3.5", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.6", + "ruleContent": "Starting Auxiliary batteries must not be used once a vehicle has moved to the starting line of any event. See IC.8.1", + "parentRuleCode": "D.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.7", + "ruleContent": "Practice Area", + "parentRuleCode": "D.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.7.1", + "ruleContent": "A practice area for testing and tuning may be available", + "parentRuleCode": "D.3.7", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.7.2", + "ruleContent": "The practice area will be controlled and may only be used during the scheduled times", + "parentRuleCode": "D.3.7", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.7.3", + "ruleContent": "Vehicles using the practice area must have a complete Inspection Sticker", + "parentRuleCode": "D.3.7", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.8", + "ruleContent": "Instructions from Officials Obey flags and hand signals from course marshals and officials immediately", + "parentRuleCode": "D.3", + "pageNumber": "129", + "isFromTOC": false + }, + { + "ruleCode": "D.3.9", + "ruleContent": "Vehicle Integrity Officials may revoke the Inspection Approval for any vehicle condition that could compromise vehicle integrity, compromise the track surface, or pose a potential hazard. This could result in DNF or DQ of any Dynamic event.", + "parentRuleCode": "D.3", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.3.10", + "ruleContent": "Stalled & Disabled Vehicles", + "parentRuleCode": "D.3", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.3.10.1", + "ruleContent": "If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to complete the run, it will be scored DNF for that run", + "parentRuleCode": "D.3.10", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.3.10.2", + "ruleContent": "Disabled vehicles will be cleared from the track by the track workers.", + "parentRuleCode": "D.3.10", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4", + "ruleContent": "FLAGS Any specific variations will be addressed at the drivers meeting.", + "parentRuleCode": "D", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1", + "ruleContent": "Command Flags", + "parentRuleCode": "D.4", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.1", + "ruleContent": "Any Command Flag must be obeyed immediately and without question.", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.2", + "ruleContent": "Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time penalty may be assessed.", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.3", + "ruleContent": "Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, something has been observed that needs closer inspection.", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.4", + "ruleContent": "Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the corner workers signals at the end of the passing zone to merge into competition.", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.5", + "ruleContent": "Checkered Flag - Run has been completed. Exit the course at the designated point.", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.6", + "ruleContent": "Green Flag – Approval to begin your run, enter the course under direction of the starter. If you stall the vehicle, please restart and await another Green Flag", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.7", + "ruleContent": "Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow corner worker directions.", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.8", + "ruleContent": "Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the corner workers.", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.1.9", + "ruleContent": "Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless directed by the corner workers.", + "parentRuleCode": "D.4.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.2", + "ruleContent": "Informational Flags", + "parentRuleCode": "D.4", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.2.1", + "ruleContent": "An Information Flag communicates to the driver, but requires no specific action.", + "parentRuleCode": "D.4.2", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.2.2", + "ruleContent": "Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be prepared for evasive maneuvers.", + "parentRuleCode": "D.4.2", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.4.2.3", + "ruleContent": "White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a cautious rate.", + "parentRuleCode": "D.4.2", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.5", + "ruleContent": "WEATHER CONDITIONS", + "parentRuleCode": "D", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.5.1", + "ruleContent": "Operating Adjustments", + "parentRuleCode": "D.5", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.5.1.1", + "ruleContent": "The organizer may alter the conduct and scoring of the competition based on weather conditions.", + "parentRuleCode": "D.5.1", + "pageNumber": "130", + "isFromTOC": false + }, + { + "ruleCode": "D.5.1.2", + "ruleContent": "No adjustments will be made to times for running in differing Operating Conditions.", + "parentRuleCode": "D.5.1", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.5.1.3", + "ruleContent": "The minimum performance levels to score points may be adjusted by the Officials.", + "parentRuleCode": "D.5.1", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.5.2", + "ruleContent": "Operating Conditions", + "parentRuleCode": "D.5", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.5.2.1", + "ruleContent": "These operating conditions will be recognized: • Dry • Damp • Wet", + "parentRuleCode": "D.5.2", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.5.2.2", + "ruleContent": "The current operating condition will be decided by the Officials and may change at any time.", + "parentRuleCode": "D.5.2", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.5.2.3", + "ruleContent": "The current operating condition will be prominently displayed at the Dynamic Area, and may be communicated by other means.", + "parentRuleCode": "D.5.2", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6", + "ruleContent": "TIRES AND TIRE CHANGES", + "parentRuleCode": "D", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.1", + "ruleContent": "Tire Requirements", + "parentRuleCode": "D.6", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.1.1", + "ruleContent": "Teams must run the tires allowed for each Operating Condition: Operating Condition Tires Allowed Dry Dry ( V.4.3.1 ) Damp Dry or Wet Wet Wet ( V.4.3.2 )", + "parentRuleCode": "D.6.1", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.1.2", + "ruleContent": "When the operating condition is Damp, teams may change between Dry Tires and Wet Tires: a. Any time during the Acceleration, Skidpad, and Autocross Events b. Any time before starting their Endurance Event", + "parentRuleCode": "D.6.1", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.2", + "ruleContent": "Tire Changes during Endurance", + "parentRuleCode": "D.6", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.2.1", + "ruleContent": "All tire changes after a vehicle has received the Green flag to start the Endurance Event must occur in the Driver Change Area", + "parentRuleCode": "D.6.2", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.2.2", + "ruleContent": "If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or vehicles will be Black Flagged and brought into the Driver Change Area", + "parentRuleCode": "D.6.2", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.2.3", + "ruleContent": "The allowed tire changes and associated conditions are given in these tables. Existing Operating Condition Currently Running on: Operating Condition Changed to: Dry Damp Wet Dry Dry Tires ok A B Damp Dry Tires ok A B Damp Wet Tires C C ok Wet Wet Tires C C ok Requirement Allowed at Driver Change? A may change from Dry to Wet Yes B MUST change from Dry to Wet Yes C may change from Wet to Dry NO", + "parentRuleCode": "D.6.2", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.2.4", + "ruleContent": "Time allowed to change tires: a. Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 minutes with Driver Change, will be added to the team's total time for Endurance b. Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s total time for Endurance", + "parentRuleCode": "D.6.2", + "pageNumber": "131", + "isFromTOC": false + }, + { + "ruleCode": "D.6.2.5", + "ruleContent": "If the vehicle has a tire puncture, a. The wheel and tire may be replaced with an identical wheel and tire b. When the puncture is caused by track debris and not a result of component failure or the vehicle itself, the tire change time will not count towards the team’s total time.", + "parentRuleCode": "D.6.2", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.7", + "ruleContent": "DRIVER LIMITATIONS", + "parentRuleCode": "D", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.7.1", + "ruleContent": "Three Event Limit", + "parentRuleCode": "D.7", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.7.1.1", + "ruleContent": "An individual team member may not drive in more than three events.", + "parentRuleCode": "D.7.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.7.1.2", + "ruleContent": "The Efficiency Event is considered a separate event although it is conducted simultaneously with the Endurance Event. A minimum of four drivers are required to participate in all of the dynamic events.", + "parentRuleCode": "D.7.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.8", + "ruleContent": "DEFINITIONS", + "parentRuleCode": "D", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.8.1.1", + "ruleContent": "DOO - Cone is Down or Out when one or the two: a. Cone has been knocked over (Down) b. The entire base of the cone lies outside the box marked around the cone in its undisturbed position (Out)", + "parentRuleCode": "D.8.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.8.1.2", + "ruleContent": "DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed to complete it", + "parentRuleCode": "D.8.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.8.1.3", + "ruleContent": "DQ - Disqualified - run(s) or event(s) no longer valid", + "parentRuleCode": "D.8.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.8.1.4", + "ruleContent": "Gate - The path between two cones through which the vehicle must pass. Two cones, one on each side of the course define a gate. Two sequential cones in a slalom define a gate.", + "parentRuleCode": "D.8.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.8.1.5", + "ruleContent": "Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course.", + "parentRuleCode": "D.8.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.8.1.6", + "ruleContent": "Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course.", + "parentRuleCode": "D.8.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.8.1.7", + "ruleContent": "OC – Off Course a. The vehicle did not pass through a gate in the required direction. b. The vehicle has all four wheels outside the course boundary as indicated by cones, edge marking or the edge of the paved surface. Where more than one boundary indicator is used on the same course, the narrowest track will be used when determining Off Course penalties.", + "parentRuleCode": "D.8.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.9", + "ruleContent": "ACCELERATION EVENT The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement.", + "parentRuleCode": "D", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.9.1", + "ruleContent": "Acceleration Layout", + "parentRuleCode": "D.9", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.9.1.1", + "ruleContent": "Course length will be 75 m from starting line to finish line", + "parentRuleCode": "D.9.1", + "pageNumber": "132", + "isFromTOC": false + }, + { + "ruleCode": "D.9.1.2", + "ruleContent": "Course width will be minimum 4.9 m wide as measured between the inner edges of the bases of the course edge cones", + "parentRuleCode": "D.9.1", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.1.3", + "ruleContent": "Cones are put along the course edges at intervals, approximately 6 m", + "parentRuleCode": "D.9.1", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.1.4", + "ruleContent": "Cone locations are not marked on the pavement", + "parentRuleCode": "D.9.1", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.2", + "ruleContent": "Acceleration Procedure", + "parentRuleCode": "D.9", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.2.1", + "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver", + "parentRuleCode": "D.9.2", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.2.2", + "ruleContent": "Runs with the first driver have priority", + "parentRuleCode": "D.9.2", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.2.3", + "ruleContent": "Each Acceleration run is done as follows: a. The foremost part of the vehicle will be staged at 0.30 m behind the starting line b. A Green Flag or light signal will give the approval to begin the run c. Timing starts when the vehicle crosses the starting line d. Timing ends when the vehicle crosses the finish line", + "parentRuleCode": "D.9.2", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.2.4", + "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", + "parentRuleCode": "D.9.2", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.3", + "ruleContent": "Acceleration Penalties", + "parentRuleCode": "D.9", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.3.1", + "ruleContent": "Cones (DOO) Two second penalty for each DOO (including entry and exit gate cones) on that run", + "parentRuleCode": "D.9.3", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.3.2", + "ruleContent": "Off Course (OC) DNF for that run", + "parentRuleCode": "D.9.3", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.4", + "ruleContent": "Acceleration Scoring", + "parentRuleCode": "D.9", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.4.1", + "ruleContent": "Scoring Term Definitions: • Corrected Time = Acceleration Run Time + ( DOO * 2 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 150% of Tmin", + "parentRuleCode": "D.9.4", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.4.2", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Acceleration Score = 95.5 x ( Tmax / Tyour ) -1 + 4.5 ( Tmax / Tmin ) -1", + "parentRuleCode": "D.9.4", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.9.4.3", + "ruleContent": "When Tyour > Tmax , Acceleration Score = 4.5", + "parentRuleCode": "D.9.4", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.10", + "ruleContent": "SKIDPAD EVENT The Skidpad event measures the vehicle cornering ability on a flat surface while making a constant radius turn.", + "parentRuleCode": "D", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.10.1", + "ruleContent": "Skidpad Layout", + "parentRuleCode": "D.10", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.10.1.1", + "ruleContent": "Course Design • Two pairs of concentric circles in a figure of eight pattern • Centers of the circles 18.25 m apart • Inner circles 15.25 m in diameter • Outer circles 21.25 m in diameter • Driving path the 3.0 m wide path between the inner and outer circles", + "parentRuleCode": "D.10.1", + "pageNumber": "133", + "isFromTOC": false + }, + { + "ruleCode": "D.10.1.2", + "ruleContent": "Cone Placement a. Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) pylons will be positioned around the outside of each outer circle in the pattern shown in the Skidpad layout diagram b. Each circle will be marked with a chalk line, inside the inner circle and outside the outer circle The Skidpad layout diagram shows the circles for cone placement, not for course marking. Chalk lines are marked on the opposite side of the cones, outside the driving path c. Additional pylons will establish the entry and exit gates d. A cone may be put in the middle of the exit gate until the finish lap", + "parentRuleCode": "D.10.1", + "pageNumber": "134", + "isFromTOC": false + }, + { + "ruleCode": "D.10.1.3", + "ruleContent": "Course Operation a. Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the circles where they meet. b. The line between the centers of the circles defines the start/stop line. c. A lap is defined as traveling around one of the circles from the start/stop line and returning to the start/stop line.", + "parentRuleCode": "D.10.1", + "pageNumber": "134", + "isFromTOC": false + }, + { + "ruleCode": "D.10.2", + "ruleContent": "Skidpad Procedure", + "parentRuleCode": "D.10", + "pageNumber": "134", + "isFromTOC": false + }, + { + "ruleCode": "D.10.2.1", + "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver.", + "parentRuleCode": "D.10.2", + "pageNumber": "134", + "isFromTOC": false + }, + { + "ruleCode": "D.10.2.2", + "ruleContent": "Runs with the first driver have priority", + "parentRuleCode": "D.10.2", + "pageNumber": "134", + "isFromTOC": false + }, + { + "ruleCode": "D.10.2.3", + "ruleContent": "Each Skidpad run is done as follows: a. A Green Flag or light signal will give the approval to begin the run b. The vehicle will enter perpendicular to the figure eight and will take one full lap on the right circle c. The next lap will be on the right circle and will be timed d. Immediately after the second lap, the vehicle will enter the left circle for the third lap e. The fourth lap will be on the left circle and will be timed f. Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the intersection moving in the same direction as entered", + "parentRuleCode": "D.10.2", + "pageNumber": "134", + "isFromTOC": false + }, + { + "ruleCode": "D.10.2.4", + "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", + "parentRuleCode": "D.10.2", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.10.3", + "ruleContent": "Skidpad Penalties", + "parentRuleCode": "D.10", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.10.3.1", + "ruleContent": "Cones (DOO) A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run", + "parentRuleCode": "D.10.3", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.10.3.2", + "ruleContent": "Off Course (OC) DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off Course.", + "parentRuleCode": "D.10.3", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.10.3.3", + "ruleContent": "Incorrect Laps Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be DNF for that run.", + "parentRuleCode": "D.10.3", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.10.4", + "ruleContent": "Skidpad Scoring", + "parentRuleCode": "D.10", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.10.4.1", + "ruleContent": "Scoring Term Definitions • Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) • Tyour - the best Corrected Time for the team • Tmin - is the lowest Corrected Time recorded for any team • Tmax - 125% of Tmin", + "parentRuleCode": "D.10.4", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.10.4.2", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Skidpad Score = 71.5 x ( Tmax / Tyour ) -1 + 3.5 ( Tmax / Tmin ) -1", + "parentRuleCode": "D.10.4", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.10.4.3", + "ruleContent": "When Tyour > Tmax , Skidpad Score = 3.5", + "parentRuleCode": "D.10.4", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.11", + "ruleContent": "AUTOCROSS EVENT The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight course", + "parentRuleCode": "D", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.11.1", + "ruleContent": "Autocross Layout", + "parentRuleCode": "D.11", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.11.1.1", + "ruleContent": "The Autocross course will be designed with these specifications. Average speeds should be 40 km/hr to 48 km/hr a. Straights: No longer than 60 m with hairpins at the two ends b. Straights: No longer than 45 m with wide turns on the ends c. Constant Turns: 23 m to 45 m diameter d. Hairpin Turns: 9 m minimum outside diameter (of the turn) e. Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. g. Minimum track width: 3.5 m h. Length of each run should be approximately 0.80 km", + "parentRuleCode": "D.11.1", + "pageNumber": "135", + "isFromTOC": false + }, + { + "ruleCode": "D.11.1.2", + "ruleContent": "The Autocross course specifications may deviate from the above to accommodate event site requirements.", + "parentRuleCode": "D.11.1", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.2", + "ruleContent": "Autocross Procedure", + "parentRuleCode": "D.11", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.2.1", + "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver", + "parentRuleCode": "D.11.2", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.2.2", + "ruleContent": "Runs with the first driver have priority", + "parentRuleCode": "D.11.2", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.2.3", + "ruleContent": "Each Autocross run is done as follows: a. The vehicle will be staged at a specific distance behind the starting line b. A Green Flag or light signal will give the approval to begin the run c. Timing starts when the vehicle crosses the starting line d. Timing ends when the vehicle crosses the finish line", + "parentRuleCode": "D.11.2", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.2.4", + "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", + "parentRuleCode": "D.11.2", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.3", + "ruleContent": "Autocross Penalties", + "parentRuleCode": "D.11", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.3.1", + "ruleContent": "Cones (DOO) Two second penalty for each DOO (including cones after the finish line) on that run", + "parentRuleCode": "D.11.3", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.3.2", + "ruleContent": "Off Course (OC) a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or receive a 20 second penalty b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of track officials.", + "parentRuleCode": "D.11.3", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.3.3", + "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one Off Course", + "parentRuleCode": "D.11.3", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.4", + "ruleContent": "Autocross Scoring", + "parentRuleCode": "D.11", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.4.1", + "ruleContent": "Scoring Term Definitions: • Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 145% of Tmin", + "parentRuleCode": "D.11.4", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.4.2", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Autocross Score = 118.5 x ( Tmax / Tyour ) -1 + 6.5 ( Tmax / Tmin ) -1", + "parentRuleCode": "D.11.4", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.11.4.3", + "ruleContent": "When Tyour > Tmax , Autocross Score = 6.5", + "parentRuleCode": "D.11.4", + "pageNumber": "136", + "isFromTOC": false + }, + { + "ruleCode": "D.12", + "ruleContent": "ENDURANCE EVENT The Endurance event evaluates the overall performance of the vehicle and tests the durability and reliability.", + "parentRuleCode": "D", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.1", + "ruleContent": "Endurance General Information", + "parentRuleCode": "D.12", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.1.1", + "ruleContent": "The organizer may establish one or more requirements to allow teams to compete in the Endurance event.", + "parentRuleCode": "D.12.1", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.1.2", + "ruleContent": "Each team may attempt the Endurance event once.", + "parentRuleCode": "D.12.1", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.1.3", + "ruleContent": "The Endurance event consists of two Endurance runs, each using a different driver, with a Driver Change between.", + "parentRuleCode": "D.12.1", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.1.4", + "ruleContent": "Teams may not work on their vehicles once their Endurance event has started", + "parentRuleCode": "D.12.1", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.1.5", + "ruleContent": "Multiple vehicles may be on the track at the same time", + "parentRuleCode": "D.12.1", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.1.6", + "ruleContent": "Wheel to Wheel racing is prohibited.", + "parentRuleCode": "D.12.1", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.1.7", + "ruleContent": "Vehicles must not be driven in reverse", + "parentRuleCode": "D.12.1", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.2", + "ruleContent": "Endurance Layout", + "parentRuleCode": "D.12", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.2.1", + "ruleContent": "The Endurance event will consist of multiple laps over a closed course to a total distance of approximately 22 km.", + "parentRuleCode": "D.12.2", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.2.2", + "ruleContent": "The Endurance course will be designed with these specifications. Average speed should be 48 km/hr to 57 km/hr with top speeds of approximately 105 km/hr. a. Straights: No longer than 77 m with hairpins at the two ends b. Straights: No longer than 61 m with wide turns on the ends c. Constant Turns: 30 m to 54 m diameter d. Hairpin Turns: 9 m minimum outside diameter (of the turn) e. Slaloms: Cones in a straight line with 9 m to 15 m spacing f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. g. Minimum track width: 4.5 m h. Designated passing zones at several locations", + "parentRuleCode": "D.12.2", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.2.3", + "ruleContent": "The Endurance course specifications may deviate from the above to accommodate event site requirements.", + "parentRuleCode": "D.12.2", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.3", + "ruleContent": "Endurance Run Order The Endurance Run Order is established to let vehicles of similar speed potential be on track together to reduce the need for passing.", + "parentRuleCode": "D.12", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.3.1", + "ruleContent": "The Endurance Run Order: a. Should be primarily based on the Autocross event finish order b. Should include the teams eligible for Endurance which did not compete in the Autocross event. c. May be altered by the organizer to accommodate specific circumstances or event considerations", + "parentRuleCode": "D.12.3", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.3.2", + "ruleContent": "Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line and prepared to start when their turn to run arrives.", + "parentRuleCode": "D.12.3", + "pageNumber": "137", + "isFromTOC": false + }, + { + "ruleCode": "D.12.4", + "ruleContent": "Endurance Vehicle Starting / Restarting", + "parentRuleCode": "D.12", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.4.1", + "ruleContent": "Teams that are not ready to run or cannot start their Endurance event in the allowed time when their turn in the Run Order arrives: a. Get a time penalty (D.12.12.5) b. May then run at the discretion of the Officials", + "parentRuleCode": "D.12.4", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.4.2", + "ruleContent": "After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) restart the engine or to (EV) enter Ready to Drive EV.9.5 a. The time will start when the driver first tries to restart the engine or to enable the Tractive System b. The time to attempt start / restart is not counted towards the Endurance time", + "parentRuleCode": "D.12.4", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.4.3", + "ruleContent": "If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it (approximately 60 seconds) to restart. This time counts toward the Endurance time.", + "parentRuleCode": "D.12.4", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.4.4", + "ruleContent": "If starts / restarts are not accomplished in the above times, the vehicle may be DNF.", + "parentRuleCode": "D.12.4", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.5", + "ruleContent": "Endurance Event Procedure", + "parentRuleCode": "D.12", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.5.1", + "ruleContent": "Vehicles will be staged per the Endurance Run Order", + "parentRuleCode": "D.12.5", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.5.2", + "ruleContent": "Endurance Event sequence: a. The first driver will do an Endurance Run per D.12.6 below b. The Driver Change must then be done per D.12.8 below c. The second driver will do an Endurance Run per D.12.6 below", + "parentRuleCode": "D.12.5", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.5.3", + "ruleContent": "The Endurance Event is complete when the two: • The team has completed the specified number of laps • The second driver crosses the finish line", + "parentRuleCode": "D.12.5", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.6", + "ruleContent": "Endurance Run Procedure", + "parentRuleCode": "D.12", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.6.1", + "ruleContent": "A Green Flag or light signal will give the approval to begin the run", + "parentRuleCode": "D.12.6", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.6.2", + "ruleContent": "The driver will drive approximately half of the Endurance distance", + "parentRuleCode": "D.12.6", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.6.3", + "ruleContent": "A Checkered Flag will be displayed", + "parentRuleCode": "D.12.6", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.6.4", + "ruleContent": "The vehicle must exit the track into the Driver Change Area", + "parentRuleCode": "D.12.6", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.7", + "ruleContent": "Driver Change Limitations", + "parentRuleCode": "D.12", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.7.1", + "ruleContent": "The team may bring only these items into the Driver Change Area: a. Three team members, including the driver or drivers b. (EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers. c. Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires Team members may only carry tools by hand (no carts, tool chests etc) d. Each extra person entering the Driver Change Area: 20 point penalty", + "parentRuleCode": "D.12.7", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.7.2", + "ruleContent": "The only work permitted during Driver Change is: a. Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons EV.7.10 b. Adjustments to fit the driver IN.14.2.2 c. Tire changes per D.6.2", + "parentRuleCode": "D.12.7", + "pageNumber": "138", + "isFromTOC": false + }, + { + "ruleCode": "D.12.8", + "ruleContent": "Driver Change Procedure", + "parentRuleCode": "D.12", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.8.1", + "ruleContent": "The Driver Change will be done in this sequence: a. Vehicle will stop in Driver Change Area b. First Driver turns off the engine / Tractive System. Driver Change time starts. c. First Driver exits the vehicle d. Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2 e. Second Driver is secured in the vehicle f. Second Driver is ready to start the engine / enable the Tractive System. Driver Change time stops. g. Second Driver receives permission to continue h. The vehicle engine is started or Tractive System enabled. See D.12.4 i. The vehicle stages to go back onto course, at the direction of the event officials", + "parentRuleCode": "D.12.8", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.8.2", + "ruleContent": "Three minutes are allowed for the team to complete the Driver Change a. Any additional time for inspection of the vehicle and the Driver Equipment is not included in the Driver Change time b. Time in excess of the allowed will be added to the team Endurance time", + "parentRuleCode": "D.12.8", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.8.3", + "ruleContent": "The Driver Change Area will be in a location where the timing system will see the Driver Change as a long lap which will be deleted from the total time", + "parentRuleCode": "D.12.8", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.9", + "ruleContent": "Breakdowns & Stalls", + "parentRuleCode": "D.12", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.9.1", + "ruleContent": "If a vehicle breaks down or cannot restart, it will be removed from the course by track workers and scored DNF", + "parentRuleCode": "D.12.9", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.9.2", + "ruleContent": "If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 and D.12.4", + "parentRuleCode": "D.12.9", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.10", + "ruleContent": "Endurance Event – Black Flags", + "parentRuleCode": "D.12", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.10.1", + "ruleContent": "A Black Flag will be shown at the designated location", + "parentRuleCode": "D.12.10", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.10.2", + "ruleContent": "The vehicle must pull into the Driver Change Area at the first opportunity", + "parentRuleCode": "D.12.10", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.10.3", + "ruleContent": "The amount of time spent in the Driver Change Area is at the discretion of the officials.", + "parentRuleCode": "D.12.10", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.10.4", + "ruleContent": "Driving Black Flag a. May be shown for any reason such as aggressive driving, failing to obey signals, not yielding for passing, not driving inside the designated course, etc. b. Course officials will discuss the situation with the driver c. The time spent in Black Flag or a time penalty may be included in the Endurance Run time. d. If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or during post event review, officials may impose a penalty D.14.2", + "parentRuleCode": "D.12.10", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.10.5", + "ruleContent": "Mechanical Black Flag a. May be shown for any reason to question the vehicle condition b. Time spent off track is not included in the Endurance Run time.", + "parentRuleCode": "D.12.10", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.10.6", + "ruleContent": "Based on the inspection or discussion during a Black Flag period, the vehicle may not be allowed to continue the Endurance Run and will be scored DNF", + "parentRuleCode": "D.12.10", + "pageNumber": "139", + "isFromTOC": false + }, + { + "ruleCode": "D.12.11", + "ruleContent": "Endurance Event – Passing", + "parentRuleCode": "D.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.11.1", + "ruleContent": "Passing during Endurance may only be done in the designated passing zones, under the control of the track officials.", + "parentRuleCode": "D.12.11", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.11.2", + "ruleContent": "Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and a fast lane for vehicles that are making a pass.", + "parentRuleCode": "D.12.11", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.11.3", + "ruleContent": "When a pass is to be made: a. A slower leading vehicle gets a Blue Flag b. The slower vehicle must move into the slow lane and decelerate c. The faster vehicle will continue in the fast lane and make the pass d. The vehicle that had been passed may reenter traffic only under the control of the passing zone exit flag", + "parentRuleCode": "D.12.11", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.11.4", + "ruleContent": "Passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", + "parentRuleCode": "D.12.11", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.12", + "ruleContent": "Endurance Penalties", + "parentRuleCode": "D.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.12.1", + "ruleContent": "Cones (DOO) Two second penalty for each DOO (including cones after the finish line) on that run", + "parentRuleCode": "D.12.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.12.2", + "ruleContent": "Off Course (OC) a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or receive a 20 second penalty b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of track officials.", + "parentRuleCode": "D.12.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.12.3", + "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one Off Course", + "parentRuleCode": "D.12.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.12.4", + "ruleContent": "Penalties for Moving or Post Event Violations a. Black Flag penalties per D.12.10, if applicable b. Post Event Inspection penalties per D.14.2, if applicable", + "parentRuleCode": "D.12.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.12.5", + "ruleContent": "Endurance Starting (D.12.4.1) Two minutes (120 seconds) penalty", + "parentRuleCode": "D.12.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.12.6", + "ruleContent": "Vehicle Operation The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for any reason including driver inexperience or mechanical problems, it is too slow or being driven in a manner that demonstrates an inability to properly control.", + "parentRuleCode": "D.12.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.13", + "ruleContent": "Endurance Scoring", + "parentRuleCode": "D.12", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.13.1", + "ruleContent": "Scoring Term Definitions: • Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 • Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 145% of Tmin", + "parentRuleCode": "D.12.13", + "pageNumber": "140", + "isFromTOC": false + }, + { + "ruleCode": "D.12.13.2", + "ruleContent": "The vehicle must complete the Endurance Event to receive a score based on their Corrected Time a. If Tyour < Tmax, the team score is calculated as: Endurance Time Score = 250 x ( Tmax / Tyour ) -1 ( Tmax / Tmin ) -1 b. If Tyour > Tmax, Endurance Time Score = 0", + "parentRuleCode": "D.12.13", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.12.13.3", + "ruleContent": "The vehicle receives points based on the laps and/or parts of Endurance completed. The Endurance Laps Score is worth up to 25 points", + "parentRuleCode": "D.12.13", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.12.13.4", + "ruleContent": "The Endurance Score is calculated as: Endurance Score = Endurance Time Score + Endurance Laps Score", + "parentRuleCode": "D.12.13", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13", + "ruleContent": "EFFICIENCY EVENT The Efficiency event evaluates the fuel/energy used to complete the Endurance event", + "parentRuleCode": "D", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.1", + "ruleContent": "Efficiency General Information", + "parentRuleCode": "D.13", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.1.1", + "ruleContent": "The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap time on the endurance course, averaged over the length of the event.", + "parentRuleCode": "D.13.1", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.1.2", + "ruleContent": "The Efficiency score is based only on the distance the vehicle runs on the course during the Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy will be made.", + "parentRuleCode": "D.13.1", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.2", + "ruleContent": "Efficiency Procedure", + "parentRuleCode": "D.13", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.2.1", + "ruleContent": "For IC vehicles: a. The fuel tank must be filled to the fuel level line (IC.5.4.5) b. During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, or the entire vehicle is allowed.", + "parentRuleCode": "D.13.2", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.2.2", + "ruleContent": "(EV only) The vehicle may be fully charged", + "parentRuleCode": "D.13.2", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.2.3", + "ruleContent": "The vehicle will then compete in the Endurance event, refer to D.12.5", + "parentRuleCode": "D.13.2", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.2.4", + "ruleContent": "Vehicles must power down after leaving the course and be pushed to the fueling station or data download area", + "parentRuleCode": "D.13.2", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.2.5", + "ruleContent": "For Internal Combustion vehicles (IC): a. The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. IC.5.5.1 b. If the fuel level changes after refuelling: • Additional fuel will be added to return the fuel tank level to the fuel level line. • Twice this amount will be added to the previously measured fuel consumption c. If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the Fuel Tank will not be refilled D.13.3.4", + "parentRuleCode": "D.13.2", + "pageNumber": "141", + "isFromTOC": false + }, + { + "ruleCode": "D.13.2.6", + "ruleContent": "For Electric Vehicles (EV): a. Energy Meter data must be downloaded to measure energy used and check for Violations EV.3.3 b. Penalties will be applied per EV.3.5 and/or D.13.3.4", + "parentRuleCode": "D.13.2", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.3", + "ruleContent": "Efficiency Eligibility", + "parentRuleCode": "D.13", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.3.1", + "ruleContent": "Maximum Time Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance laptime of the fastest team that completes the Endurance event get zero points", + "parentRuleCode": "D.13.3", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.3.2", + "ruleContent": "Maximum Fuel/Energy Used Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap exceeds the values in D.13.4.5 get zero points", + "parentRuleCode": "D.13.3", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.3.3", + "ruleContent": "Partial Completion of Endurance a. Vehicles which cross the start line after Driver Change are eligible for Efficiency points b. Other vehicles get zero points", + "parentRuleCode": "D.13.3", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.3.4", + "ruleContent": "Cannot Measure Fuel/Energy Used The vehicle gets zero points", + "parentRuleCode": "D.13.3", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.4", + "ruleContent": "Efficiency Scoring", + "parentRuleCode": "D.13", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.4.1", + "ruleContent": "Conversion Factors Each fuel or energy used is converted using the factors: a. Gasoline / Petrol 2.31 kg of CO per liter b. E85 1.65 kg of CO per liter c. Electric 0.65 kg of CO per kWh", + "parentRuleCode": "D.13.4", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.4.2", + "ruleContent": "(EV only) Full credit is given for energy recovered through regenerative braking", + "parentRuleCode": "D.13.4", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.4.3", + "ruleContent": "Scoring Term Definitions: • CO min - the smallest mass of CO used by any competitor who is eligible for Efficiency • CO your - the mass of CO used by the team being scored • Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency • Tyour - same as Endurance (D.12.13.1) • Lapyours - the number of laps driven by the team being scored • Laptotal Tmin and Latptotal CO min - be the number of laps completed by the teams which set Tmin and CO min, respectively", + "parentRuleCode": "D.13.4", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.4.4", + "ruleContent": "The Efficiency Factor is calculated by: Efficiency Factor = Tmin / LapTotal Tmin X CO min / LapTotal CO min Tyours / Lap yours CO your / Lap yours", + "parentRuleCode": "D.13.4", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.4.5", + "ruleContent": "EfficiencyFactor min is calculated using the above formula with: • CO your (IC) equivalent to 60.06 kg CO /100km (based on gasoline 26 ltr/100km) • CO your (EV) equivalent to 20.02 kg CO /100km • Tyour 1.45 times Tmin", + "parentRuleCode": "D.13.4", + "pageNumber": "142", + "isFromTOC": false + }, + { + "ruleCode": "D.13.4.6", + "ruleContent": "When the team is eligible for Efficiency. the team score is calculated as: Efficiency Score = 100 x Efficiency Factor your - Efficiency Factor min Efficiency Factor max - Efficiency Factor min", + "parentRuleCode": "D.13.4", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14", + "ruleContent": "POST ENDURANCE", + "parentRuleCode": "D", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.1", + "ruleContent": "Technical Inspection Required", + "parentRuleCode": "D.14", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.1.1", + "ruleContent": "After Endurance and refuelling are completed, all vehicles must report to Technical Inspection.", + "parentRuleCode": "D.14.1", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.1.2", + "ruleContent": "Vehicles may then be subject to IN.15 Reinspection", + "parentRuleCode": "D.14.1", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.2", + "ruleContent": "Post Endurance Penalties", + "parentRuleCode": "D.14", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.2.1", + "ruleContent": "Penalties may be applied to the Endurance and/or Efficiency events based on: a. Infractions or issues during the Endurance Event (including D.12.10.4.d) b. Post Endurance Technical Inspection c. (EV only) Energy Meter violations EV.3.3, EV.3.5.2", + "parentRuleCode": "D.14.2", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.2.2", + "ruleContent": "Any imposed penalty will be at the discretion of the officials.", + "parentRuleCode": "D.14.2", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.3", + "ruleContent": "Post Endurance Penalty Guidelines", + "parentRuleCode": "D.14", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.3.1", + "ruleContent": "One or more minor violations (rules compliance, but no advantage to team): 15-30 sec", + "parentRuleCode": "D.14.3", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.3.2", + "ruleContent": "Violation which is a potential or actual performance advantage to team: 120-360 sec", + "parentRuleCode": "D.14.3", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.3.3", + "ruleContent": "Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ", + "parentRuleCode": "D.14.3", + "pageNumber": "143", + "isFromTOC": false + }, + { + "ruleCode": "D.14.3.4", + "ruleContent": "Team may be DNF or DQ for: a. Multiple violations involving safety, environment, or performance advantage b. A single substantial violation", + "parentRuleCode": "D.14.3", + "pageNumber": "143", + "isFromTOC": false + } + ], + "totalRules": 1916, + "totalTOCRules": 111, + "generatedAt": "2025-09-26T03:03:28.354Z" +} \ No newline at end of file diff --git a/scripts/document-parser/package-lock.json b/scripts/document-parser/package-lock.json new file mode 100644 index 0000000000..cfff4c6c50 --- /dev/null +++ b/scripts/document-parser/package-lock.json @@ -0,0 +1,283 @@ +{ + "name": "pdf-text-extractor", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "pdf-text-extractor", + "version": "1.0.0", + "dependencies": { + "pdf-parse": "^1.1.1" + }, + "devDependencies": { + "@types/node": "^20.0.0", + "@types/pdf-parse": "^1.1.5", + "ts-node": "^10.9.0", + "typescript": "^5.0.0" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.19.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.17.tgz", + "integrity": "sha512-gfehUI8N1z92kygssiuWvLiwcbOB3IRktR6hTDgJlXMYh5OvkPSRmgfoBUmfZt+vhwJtX7v1Yw4KvvAf7c5QKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/pdf-parse": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@types/pdf-parse/-/pdf-parse-1.1.5.tgz", + "integrity": "sha512-kBfrSXsloMnUJOKi25s3+hRmkycHfLK6A09eRGqF/N8BkQoPUmaCr+q8Cli5FnfohEz/rsv82zAiPz/LXtOGhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true, + "license": "MIT" + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true, + "license": "ISC" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/node-ensure": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/node-ensure/-/node-ensure-0.0.0.tgz", + "integrity": "sha512-DRI60hzo2oKN1ma0ckc6nQWlHU69RH6xN0sjQTjMpChPfTYvKZdcQFfdYK2RWbJcKyUizSIy/l8OTGxMAM1QDw==", + "license": "MIT" + }, + "node_modules/pdf-parse": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pdf-parse/-/pdf-parse-1.1.1.tgz", + "integrity": "sha512-v6ZJ/efsBpGrGGknjtq9J/oC8tZWq0KWL5vQrk2GlzLEQPUDB1ex+13Rmidl1neNN358Jn9EHZw5y07FFtaC7A==", + "license": "MIT", + "dependencies": { + "debug": "^3.1.0", + "node-ensure": "^0.0.0" + }, + "engines": { + "node": ">=6.8.1" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/typescript": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true, + "license": "MIT" + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + } + } +} diff --git a/scripts/document-parser/package.json b/scripts/document-parser/package.json new file mode 100644 index 0000000000..cf7d248a93 --- /dev/null +++ b/scripts/document-parser/package.json @@ -0,0 +1,18 @@ +{ + "name": "pdf-text-extractor", + "version": "1.0.0", + "scripts": { + "build": "tsc", + "start": "ts-node FSAEparser.ts", + "dev": "ts-node FSAEparser.ts" + }, + "dependencies": { + "pdf-parse": "^1.1.1" + }, + "devDependencies": { + "@types/node": "^20.0.0", + "@types/pdf-parse": "^1.1.5", + "ts-node": "^10.9.0", + "typescript": "^5.0.0" + } +} \ No newline at end of file diff --git a/scripts/document-parser/ruleDocs/FHE.pdf b/scripts/document-parser/ruleDocs/FHE.pdf new file mode 100644 index 0000000000000000000000000000000000000000..415f50ef03021d4f2b3e7591fb139026f875b2c9 GIT binary patch literal 4853960 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ΝwTbSoNr$nC|>N@E4%`F)};u}q%&?`fcMUk=nBgp(|Yo|~)hQSVWh zemaLvu*`o?!*JrCNmErIYr(wyU^;0!X>t3;_pg--;`yM8Q^fZM!H(K!{Yuo_y^vc@ z?8yn5ch4oW4mj8M#e6-R!}AdktmT2wp=_gJO@y4&%@Qlv+bkJ}K-YBD!#Zy(MoYoW zs=D)4#fp7(O7(V=zt@Wh$&e?0ldVcv4Z&m1)S5r<=;2GR&@k)G!GckNFG^vB| zP%=7eX(`YYcTj*dMR)Y)Lej@jtwA4sm%Wz}&iaoh(^t8H-JBf^l8cYum|5g?s^Nq6 z?qgH1r^X*ewI>)VJcB>x)b(A%I8%ft1Dhj=J2AS#$1r4ZpwLqR)JVX0AI zA}_U;SZce_?(LWj zL+Q5z(ZG5)_z`#t{7j4VGnd@O>f6gNY~)QKkx!CVpPNVH9vwE8d$9dD0w1&bO(iC$ zJzc=Tp=h)n5f#L}SrAxp`Ut6Npn|V+g=~>(YB@^k#G`Ips&};#$v-2Oy?iExLC0LU zMZkr0($6ii=O=}e6WM@p2I$1$n!{%`7OoMpvW~OcrVj*_hjsu>^GT-WU%1-Q-CU}M zC6@h5Bg)QZD=W}8f{tW-_ASwxXH@_LIx3%{+L4uiO9r@_qQN>n`T57>mW}BL&y2mz z{?Xs-A$V#(7WUwlFOrlwM#pX&$f5@imp@l|4e#eIF7%pZxv5#t?VlbLc8hkck@z%;MeXhAM%glQQ>S4-1}Z}9qmS`xfmzs8cl)}!?`=lTQ64U^r7 zu%Yvq#c#WpE0Sm^^eK3mZcDMAq)>QK0;8~j-0MEIm9&c;J7Hw^3y^_`(=FoApl)5zf zYQgSfk2lm68BolA3yELP%~D&N&W)k^d`68pGc_;~EX0J-^`{iDa#0L2iS~30ut}pE z{n)(V71QS!mDrQ>aG{hG@yTRwKQ+nGhIxLb^7uY&+8X2BuN|;dxq@-h_ac5f_50B` z*YmuZsSkMtH$uj#+mLJp)1Dv}jApbdQ|$@ zSRv$L+I3Ryz~R?k%S@e<1C<_lF5F}mzHLD_chN^!t}Ve|xk(44mPz6)Zjl>H=pMS_ z-B7+*zln(HRhHpLEt-dFQHoEM_L1DaJ{eWsfC)l7+qfRxY5BUV4i?5E;9|7={K#!p zafeRT(hA+3^;L?=^vqz>{2OXTpS0JK)^gBzWpUKrHi-1Rf~*DGK{f#iP&B=R`b!FG zZo*$l?En(DDn#O#29UGBR31}Afg8|!+pyiPBybUH_>!eHF-8PdWZ!!{R?tDjT| z94wuLebD<+XNlj9mORd~vQL&Zi9W=VhR#<{E5l2QL4( z#{=HllWAdb6G@D*hTQG40J7tw#Ndj(iMEiNdm)~o3dZB!XDPh)xM1I&k!56y&URM> zKOEoDqTbC0_z?lrF9T(4#vu16YfeFhwQ=lwb7KulcTSOD5%jm99l`BZe3sJrCq9Xc zZF!-7S#;`~>+j@~5k39P`T-(cn+v>hEYLdXLqML7%g%nP-vJz=d#^*LU#3MH@n`Gynk zd34pFm-=*+Y{>{DRp5Hvpz7rnwZ}d%qH8@|W0J4c_P#<3x(zFCA^#>y-0-P^I~gl{ z8hzp$Lv*`Ek4sU%pm(Hw@sTgeb{`dvexMbElkmVT99XOEuw91>icNF5Je5uo#{y&e z6pTQmI{+CIU?V(jQ#Ct>9IGN#SoAHrL5EbQM3wD;AN7*Oac>{83;ZCA3gKceva<`M zK_H2q3TY;vz4%!DAGN!Jls-RTEWvJ&K#ImTdCO!${=EkbM)#28?V_@kp5lDKQvwvcx#P7P_K3yl1geBtAM9vt*pD zf`0%(XxnZIR0l93mCC#{m6;hPuP|0r=Z;8Rz8$V@Y3s`3W}V${S0Yzt!~{Ci_04^M zmW`(GoSHuyH#yxnYu>K>jV65u+DJV6T{*XcDl z?{01s@>?uJtM>L{NhFr^JGc4!rruBUiJ6dkD?yApx@r}dbf5*AlKNT!LilHR_j&j2 zO^-+qxgTg9{BshuEW7&q{{v2mV+TO7{aJMJ+~p`RzoV730R#eLtW5(jeB#@ zrVXr~#ayo37bT5P|laMXNhGT-%a=|#nrQiTJnt@FA>uyr=~{M{3PW2D5> z68z&ud4zsMdtVyTh*lwTK_;%|l!6W2wPb9#ti!vAK5XQN)<+-Uo}9pd!Enw{&YM-e zxKyXtiYmX>*$Y_NRAn8Tg4d!GQVuLD)Lt|jWcoqg)76n@Fb(mb2|%nHb51Y^c9z_3 zX75~OIDQj3<-vYJY0=dqQ{{l48MSb((jMcn0N|KkJ)4;tEgiPAO07QZ=N4Jtf9WTS z`+%egy+fiorPJi?Hw?T@|59gWAy*@cOUUj-g{h;Kd-jZxwh0}vVIppD`9o4k{+vNv zCs^$Y7+h#5D17x(-^W^r@=2_8aDyi&gWvqndc4BuIGQ_p}X4pl2 zQ_G%|1{pZj1p18v+uD!0GmgtArYD;U?<%5qVm}f@e6p}9%2$m!Qj}CIyPzTKLUpK< z_y_s!l8f>^>pOOjWoNr~Eb4;RkY@=7>q3Dy-xAZ7B*yJkbA?$&M(fp zn1II!c03TDoDnI12aL}jtymDGE|%*UD1 zWpzuMlN};Ab=|E`76Gq~Do2gSc|7*Ez;yJpR#vL9LuKsSuW%mTA?G+oLK@d+ieRCY zs8bj8R9p-a1G<$MyKa*MO?r25HvJ5Z^wK*S5nrfU<&=cbIU`r+%N(bKjp7$H zpMAXj=qE*gS`R?{w5R856jsKO#tZOgRqD8MSIO0nZ@SLdjnpd`^O%k%4mANaH_m!p z`BBz6H%G)(e>n$vQT@d4Uk=B*U7QGof_UUhNu4beX&;6IuyQFX8TkwF`@Ycc#p1>1 zCjEnVqErZf!xf?muxF5qh^)DgzOV8d?*rFRe~Ge;|KE(GkOK$%FL{`6xi9geIy#L} zc$VhM9)~3@p5W)bPp0(MgD0~TU8dfrlQ-3yC(47mdc|$F<|8K@-=U+mJwMfR+u|h8 zyXZgYmG|tJ7ZR9^5siFuOx(7llUmxIC!y~79#)CCu+OjiG&Q-SZzUH2T2oomWh7hT z&%)3EU@h_MDezX2jLp{aI&|&}N_|cE%uM=Fv(ArO_6#~k%oi#d1KI~JZCx|jM;dQ+ z4-{J*sxC#$Y*EmxJfEp3KWwkMoSehpM3RUTC>OTQI=cs_wM$!%J197eI(UQb1nXd0 zk0>tLG_YcfpW*`hRH{;r%vp&fn$V4t*j!~{7NG<2>C%&3^%*KxIv6bvPhs6Exq8=0 z6)>6Y&u3oV--{28kx(5@3Ig!w%h+3B?+yc?;BmodV5va&u%DLacO_=b+P%ADn!p87 zWo;puoVwy!d5-w#039= znnZ_s_)H|w5zx5j3nCN1>3!4GdoLJCLuvjn<(h*luO-#RrsMmr;)}=1EKkfq2U-)i z!+Mn-4dGz43#Sz6G?Vkz>n^2uRB?N0gIQGSCRGpk38}{YSE0h*aIzGKMTs}_J z0>wKWjcz6b<>f7@K}Q)A-d_Mlbg1(Y!AIiqDRD*4$3AJcdG6CW8!${Q`A0Y^G6tr; zz03#N&jXC}OBaFn_7!Z)@db_rYV1IPi#Ba-DoU7ycs-4BOiMAsdS6e$Km9hkP!#t4 zMw8jd*EpBk(meC#m5{?pHrmdq@nQv5r5CS1D`sr;D4NiEj^lik%X46`#%g@+`V-`^ z{CNi|Z(6|<7oGpwEB9aSI@#1e6a-CK!}x8(m~6AG)9P;C z^%Jl4o35(_*~gdqx+p=p$MGNdDpQnpzAguoUEu4My67pi?>BexZMTr5p+_tRg|TTh zmy4cDq_1c{^-+_H&<7n6H6?3gL~Mq=z1MnLzBxv&_o1g`;Yxqo-qLC}MC^Hbst|YT z5qk&y1Na%_R=VXDGY5ePeaA7~?!h!5&HWcz9`1LO%r%W^xh%_Roy^}eK5cd-CUO->>NFl!k%C|K3TNX zw|1ped{D0rx)~+Ao}dgBvZHk{+-B@wdWGFOeSQS0@@##AI5$X`OmhB;r1JjbLX|;A}1y+uHrY znrQi)h)lU>ZkRflyc9hfki&H}Xs_@IFyF47IT6Tk&+Hr9bFtL|5CN07*c3mf#LQ^A z9RK+U8~&S>?LOqJKe?_o?-3R6;H-+6aogE)A|g2*I%_eFkCkJvxTj>QQ!7}1?e(Ay3Zso3|xzMd_lu&t8doj?{m35?oqf#l3 zpcV=`o4m5}q$ul55TA zWCxS@vBZXKdZ|Qv#5lr?;sdTJqP`ib9Tdp7CAhYIK_Z%owiO=YT!=!a_R$ew3bwsX z;tt}abXKIq}W2KWRJ3U9>iI-1%Y^BASZR_k-`!8ddP)sCgbp zrE$BkpX^l&!>~H-!uPSR`b&>{I{GgM-{t+5WrX=y+q3gTbvYPefC?cP`MO%1U)cR# zbR5I^fa9PnbgY*#(BdIEMu;(WlXzknPNHliG4|-J=P>TT3738V zQ09}DItZBojX(|*mII_zaVHX(&Q2hpNa1aFecs|BvWAU3R6d4q7z{<{M-T=0b-jEF za-0*1Qy=%9Tx)23I<}xi-TKC(d9hP~T+jT;Ez7g+oLki9bxWHg*))Un)l5oFlTx>j zKIKQRVLL7Pz0`B!T-l~-UnRM67^b3<+B4b)hO;4 zlq<&4C~PKx+DVLgNQ%vAoA)>l)1r0Br#=hEL4ZssrJ%j9d)T;6!G?9*`ZHUz!i#dA zMvL=~-pUVp^WovGw>k#ivT9u2YxFuMZoUlbv>&VO#pD%DH;xs0`+C&7>?5l&EVk4__fEwm?24un&+}}3 zq?6A`4AKaE&l?s$f-_K7Q|MnYhAkb?d}+>J)V#RLnC#^Y;+Bpi?h4UsYgW&3ufO$d zH6=zdiGCiv1mcyf=xU${oNf9_>q@KiYH; z+Pu$jbY#NmWhi8OhWlvR{;Pj_1RhCaEPI<8WLu1z+KCiBphRM}vn@jk<~Q+<8pV+* z;U~YwMHFx9AZz$itcf7fQHjE1QSc+WPoI{&%#c_?q%k;|gYfjRgb0Ai&5{maAX0nT z6TI>UeXv9}5sB#A=(`=()lZOh)yX6f35NZoFz`HOZ8NNt8+W1kmgC}>_(wYNd0d8< zlu>MhTxK2F&v{4obI5<9jI-v#==T0Yw6Ci&FiJ4DycL4HrO%Ux@2`|BJXLyn-=-y5 zT1WKFyT=IRpP2w&{%>Xi4A!CTlk$FYtsxaq#~LTTfkXiUMG?r+9E8x!!!}p5vlNc`x%9RY z`zd^3q|AEk!_9&>X&uT0y4s)x!r5b*3P!SJNd9%+1N?hJ8%NHK%*Ix8#N=^8yQbb3 zp#{5cy3y=6Rdj=6T2{Xw##1WuX$Gynom7c()5Z$#M1?4cULH#F=_KwT8>0SoT)w)r z@6TSH@UY=WWC@PRpdfuPlwOS#iA9qip6q_v$=cBir3+1ybH>q-#M{PMw0tn37;;8yR=dUPlZC!^qPIC6M^BtZR(Kc zo$RTQB++aBnGOoCB!=GGh3yW3usVpKeqCVlI*N$;-!B1VXq#$Kw5>P^rM@+Wzqy6^ zGXM;Cwx?=#1nh^_gh!;#bn>$`rm%X#Q-O}+NkMj&0LJUY19SUddM5Aj&_tw>!Fa z&8&Iv!l8qL7lUSwzR)RQy^At#cBGk4o^6JaJw=wudfcqB`gi6&GSsXEm;(K<5&no(f2f6T(>W+`^uvE`-LWWCB9)08(jp{jlNND>{OMU3X~~YH$zL zy?eycw4)4-!FJsvPBwhVe;nU89dcC~dXY&=$5w_2Ss2FHbenU-5q!m(^`d@F_0HHd zzUun3T&@og+U)O~=6~sdUsV622V%7U=m7-!AK^O@8fmTdTFvLsWVRnneM=ap3DyF1 zT}C#b?QzQ@0}o?(MK8N>1=dU5CUBBi0s5y>YR)CDpy9iKf4cCm1abz z+q~ZodKE88@l+b4n|&d5BIHMA(}u&p*Z7y@{9faoe^?b1I=f2~ffhiihck>_PG6{_ zGzXT#G4j0SVC$14F?_jbO5^3G!rG^Ce#QMNLg_JmwtgikcBlP^#n}!$*WWHF58-!X zQ-n+#8<=nOK)<{B8?;F3m?wYilQ!IukyLpbXB80y82p!nfanP7H{&5|Iq z7Lf7x+^-fD zgzI(jiCf~cPSnHMwchY#5vt-J8meD?tgYnSp37x3V=Wi1Cgv0*!aoz4(wb>@EQyIK z%JI5|OyVq*BanNDJ1kiv)9i@pYwT)OTG2qMJ+f|}rM;%kAVpA<%yNPd0j zzV$l^LhBu|YrEP9r;=@)vPx&9MC2w-Pfkq1P(8 z7W$3$8SOWCiGM9WC?i{V$)JOoSY=+Qyjm%`aQ5-@;~Vz3aStQ&?SoQrx^wgnmqXCOrlkkb+zz#R0&Y&jLvd8RL$}Q{6nA z)tMJbuhBTOQw)@mkN`1N#2e+_uKk=$x_S7$f+9bnKD`QQf|8I~|Nmsr{U4pDqC95x!y2n~@oZg`p=@m1a?miXzm zw!~oE3M(Jx3TdDZIlJI^fVauX7`s|)+NLbr77){56l61}U3gPeZPrw@NVg8%Q30t9 zQ#psCJnRTXcgAeW5&9q7!o$*!JMmIj`j5l8*-O(TxvjNq1(&wlYe6X$_$!Y(fa?Is z%=i_e`g@o=w#>UD21?`XjqZ5ov-0Lz)`)70C!@r&_Z%cy#|;xoT=>BPG#hw@D+DN($7>})3PM8nWGrl+Q+WV*%ZF?Em=^W;!5(0pKzQ}IiPn-O*MY$vy3eXuN#P=;mG7O4Hb&%^PIe4P- zJ`(Y0lY_K@4UgB_gspE&5(#4HVR!T<`AB?LuGvi((E1;;q-By^r_jUj-`|QMZOoCK zZDYG@-NfWF>OwP=37N{>74q=E#QVK?Wa0rssLCI;42YNQ#a=|dCJE3Q_P?P?Yu;kg zNj@2uY&6|o)zFjZ5AUII5fSaied5Q&4%}i4zcG%amPr3-C=#4^Wwiu-&Ulb47 z#crng>+NcK;7f{8k&)QB2Fx%%l++ij)gcdwNuLp3@Xr!V%Q$00E8K25XFTGWFWoSt z=WiTPw|mBTK6G7J_X#C6(@dF9K7w_ip~$eL>^EgRF~7L#KRoh>QQ!P#RKR~*+ZG)m zWY$9P>_o2qx8+fmbQgk7oRlnLBdT+*@1&YJVq- z{_%Sjn}1~v%;Hx78lD;w)h?e#R`(dO6B+P!3OKXBWgevQwY1 z*jNtS2Jjzn5kP%*4{6TJkz>%e`#5Ov{bsMXD9sAc*G2p4+!Bl>QXJY8s#KRmI-=MH zzY|bohO$^xhIZy-7)LmRq6B6xjelmkTsD_{rXiP(I%YY^T-?yVJ3PEA24qY>|BJjw zw!$w=M*pO6ccj?nBxe^c9l&Gpxt2~@?^u^_UzJBT=U#c7qnT26IcfKnte1_$ilskS zt8`<5<|Kr52v4nPFQmS)B91l98_%g!`Qd1|Wl^_Y-M$Wa6H&c}d}x!ggQ6eh)irP@ zMw@(WbeF~<&knNqp23UzWNHwzCg!JKJ-9#9Zz8Iy*73l>39VIiL(i|4+?*joi?uYt zDRr*$;(96uYHZSpbQfKXag(Nq*o{X~t&1=DGT<+y89gptXB~5hyGx9@lC42nKWN9_ z^|9;Aui&p$`Klo=(*reenP=5_j@BDNI~$Atur>ISSJ0aiKHM@4eRTSsW#FN7!V%zm z{4bp>0HpSR?Oa{e8ZjYBD3-sFVCjE3lZ=+7AzesTrR+qj^|CN< z_A@~(amc2yrJHZ0k@bZ?O0wj)T#!7+J{8kv0I6Q75uw;oYGrE2iAu-`umz`w0uQ?dI5T#TxPz5|wx+(voe4EaY98-Uz^ZgH<|kRy%< zbJ!ctm5)FSQwF8smI?oLgii9qkVoL%FHop%DWf0flwxDFYbl5>CmK%gqpm*3JDGp- zn2_aT-O)2w<2WDrVcRmo)aYgQJDqszM3sl*kK9t~iWd}T=gHY99VMN|YNzLqjgEvP zW#-DTR_7#=!;%?)1*Ln)L1{{e(;apJfWnWsKcyfnew4REt+#!@SM)~yP8>Ncsy#4D zfKS9~`JB_+2CHaGwmZ+D6>n--ycA>mi+nVlhOhX#WjL~nNWMVQ+V$VQ$7ttAr7oh` z%&Z$^r$+^fScDEjfLjGh1x|zX&Em1$?%aSw!8BV6IU0EwQ2R6Xha|u$|4SzqDTcc` z+qPzYpnhoe4^_zv{12r|*?A{WS$gEkpu;+ijuZw=2251L<(qZG(G^t>ZXBeCcFAiy zn+@bR?bwUhcxAF|yyu!~UNpV4H^h4xs+MwpCn7~7bL6qs>8HzB#^LWC$~8yW@9zcl z#b_TlKH0TByug3S(>Dgd|8s-X7Xy`~hdbll;{A>h>>`w<0zkc>TG4gNVaZ0J_* zHZ!k5-(Mg{)r{8lH$5?bYGC|lmcC(|L2b`52PWH?kw-4X_Jlx-BqQQ zV}&!1FFtjZh{(4?k;A#>uYTlLD{kd*8o&bd$Sif^7HJX40+}g0SBd~jCDvcCOIqkF zqXR^(9w$mcN|CEcrn`YIUh)!Bgvd)DCOISOJs|_dbQe@L3E=5m)d)W+hz6~1QnVOW z8SmS2CgpYBF(GE|FqMfu^Nk!$dnvZz_q5PAwZ!p6?X2C^eO>_~EXUKzLu%P*JiWoG zJWT9ki9;LRpBemGz~8efy+R{wHU{{=7fhya%|GtT(ZMJ3?T>83-SFMv##VK z>w6J0vKaS^z6GMee0mPNVrqk%5t|xj4Usr6Xow8+L%k9#Pq+-0ktLePfXtW!OA{M8 z94L7TjO-CDan6zV{$lszzl$JoXMj&0`->Vk^HF;2YT}2PFuIJ(1|%``XB~utdFR<{s*xVCO;o^bU!! zbMExs{&K17g)d0Tn9ehMi$gT2UsbnHxEw!2r<7fF+SX!d-?NvEGp@rB9~N;we98(fX^WswG<}W`$p^lXb-|02Gr-1o<|g?|xabgq)hUCYc%L6`+p|pHPYEW170A z)wX8$c_L%sR^DJMhs!aw?98sTX0PK70>+Ku;MG)&^FNp)+PiWB7mk9|+IAX;W%EzC zxmzp(rR-&hT-HOjNy3RSRuv%Wt-9+E+I$Aw*s~0{qM5Put`;r8)sXQm( zaeE=kz;HTw`3XD#cz*taV_tfTap@;_^cTJyTiEk(L96Nq;%CFdE*_3ITPq~@7uPh|&)A*xGyFl$P*vB#hbpB%VSFQ-l zEQiH%T8mc@Tno>!=7&H0r*1dg{{S0h_qNV57s)3w%rIZca+sHMj9O> z6k}wCBR^U4=XP^-yGrGkC5e7=xJog}2*jqw-2pj0^pir^v>-Ra$1`@^&vTZ!iP4fo zA8&-521%`Bip4fs<(7|fPEIUveF7(H+#P`y?c4)B$7BJ}i-r^G0sOWWyfF4BZ&{}3 zSKhK=!WiQWTwJRW1WS%jR}l_iGrT~(ZH$q8(3^}v_0@=GAv-g`_Das0{&Ra#Jt6?y zbIse;5slx8*ktUoiFvW$W+$ci{A=~1Ig+fqbE+U#Aa^=JSX#cxTSF>9InJ8dtP0IIb8ULDd_DX7V~${Ct1`);Zt%vec`d|jgVJbN8mC^Kw?d6{XJ;RYo<-$k(hScF@g!3rldw8 zykF(ueo$6V(EzF)8_0%D|4Icf-`C4IvXaC6jB z8b!@hqTQf}FjgMfSUQ3jpV2Wxg{JM_1f7;j$3m>6Z5Os-w}6-3nM<{g>($TOnfr(c{_OwXx`e!{!2 zpFiw+oa-~7ygt>1l@-j@bvcr6o@63UW!gMinArQ1qRd>$ODNt43i<&w6YbjC9mc*z2Ijk07+NAedaQZ?*ewYm8Zc=FHD9}nER_|)M4xY;S$rHHMnSOoamvp( zy~iyC8UJwc?A~yD>&_<7D7olwUC)X{CNoZ;(*W_x_btlnMp|V0Wa-M-5CMUpL@2uR z-Ydv6jAne{x0&+LeG8ctBV^?i*3eSO>2j9*6$iY?q2V`bL+2rAkTh3urg-eI;$dfv zPz}mG?9bK2r^3%{o|9K=#;C80{V)ua?huh6dBdYI z?OYyve!G3Qpz^x%JT+Yi&zldnk+GXOKen|spP39Q`hB5v)md|sJ41rQ>Lx1E9V8-C*M?voqDdQOsfB<_RvvM<$;NCSEzuzb|*-q6(oWcAg6 zs`t7I6O?ESpm4bm>WuU1?Jaf?`1DG<_78<9&8J^no9(u1$~A3u<_yTn17@Iag-}G& zh^ovh@#**n7>=uvQ;GMCmQdH%ycNvfvu;1t-Xmlslla@aFK&pvKD|u?)y8Laf4ZQj zI?Ufp_l;cp9|XPUPo2WV{*IhaciZzeb*x8?qv##JAqJX&n$LTsOVV@C$nj>nz^}v# zC-mw`U&S1}qCV=*ZLJd-hssZ6+!s8E``#zd4^r8^=l?|E_8QPD2MGDlbhDXs#s8HUS4i^Sv@hB`Q1$K7kTrVsgdDE zXzq!0PEUi5ZR273lj_uW`TIRjYe!l*>pV&f>N>e>?#Q809C472j6|pyLA&M5V3A2z zSEhIgiya^JIC0d5QjC+9)1E=RvzgnfTVtoLPtC2Jv?N2(!>hNA>n;_93U^WJ!86pJ zR&#v1v<0eF4m)n-`aoN@_q>Vb)1@KbRmP#ctB{9ZiwY2owb9n$H~I%7_OMYOT1Rz+ zv$ygpa5=Q6)VOSl?x|8yGgg6(;$bKP#0V-gydjQL^Hz$|VSyxcPpOujsRB!EYTWy2 zWoV=s>nv!{;GPYdI6y!{hRQGCwF^B?%10c5BNjAm7U~FkGsqr*4cA8(a>QorhZ9Jq z$c+HLoI;ky=cl=ibQyRhft+DGgwbbFzYe=_!KN{x!|-g|j?29~Z+8^!np>$ZF-}kN zDaS=!3b~WKB@e4DvRYIwa+mf#t({BDPaJu1!RUcJ1@~8P(bI3P7b+yV&$bJJ?DBk# zgeU5tqYg%0#P-#X9m$F$=eB7}&U%y~XUrB1c(*pkyef^$*Piw-l*+Ly$DTxvUW57x zp~O`#YE!L@QL{(Uw0tCVl z4NzaBb5gAlK^v>5fBd9)WGf;Qmr2O{M6##zLNhpVVnQAV@=7~34WJK zVte2?-Tox-QmB&Ci|dD}%s}G?u}PP%2#GGrNe3VK#W-L;cw3VcVC$Wv3Xc!P?fs8y zvQ7R6dG8(8MAxs42I);injlR9=^(um1?d6;Lg=V~5F)+T&;+D+l#cW+Lg+>5i1aGG z_Y!)55YPBL@80`;_x`SP_WsUw&iUiOHCJX$CYiM+Yi54szVBahP*21e+kJQTbtUv8 z$*ha9W5Blpl1o{Y=+M7-QGYdnWT4+~(A8N?P5GQ&5fk#`4t()%5;yp;5cnhu@OTC* z{X6~1627?w7?c2)igC2g0r3Pla*qz?%I_t--5f9jegAOBY0WOL!2h6C{q=FPOR_&4 zE8qycFRCn8eB}<#@0~C*d;@cCo6Jh+i!nCAB1c?sLv>W7Z)R^l`4zorxL1K^3m_m| zrt;r!uGtx;0y4CQ zPU{eIHo*DUyx#s3 zQ6Y>jygB`g-~S&!^WUe0>2E6CjNSot5kLA7-QTn6?+*gW?Z-f(;WsE2m`A`#`lrTC zzTL7-aBVC1xLw7Y7#B}B?1L=BQ=GTQ-$mNDO_}sv39^Rf5!F#2F^C07ez5LcySFt5 zlZCjeyfTw}#zjBv9`_7S@!xOeVNlV-XO0#yZSb_G`YCH%LaXnbx`MDLoBf_Z8J+uO z2iIxk%K`rkduxF!XVb~UGRDVkAD+C`>v2L@0fhI%%T1|q*y z`z6q-#WYCmq;0(xyd;4^sJ0kD9g7DN5BMH6BsNEz#5lq7k(u$w#=LXI!N&Xe4FJ7L zDdgRUyQ+pdTk~M9U2WkHw?6yhy1nQSo=^=*+-{mrI0r1*Nl_w>Tm;CGQL6rylt-wO z(J|AF*T$)`-$ct7Dlx$v>X zQuI$Y>P_cbQ!3~HPNEN7irBNzy@vyQ@-2+1IpSIdHjl>&WPolqLHPH(T!a-7Cn)lJUa)Q;Ew$hTB;f z3fSR+!qo_H*&r@19^Sw{&2Y?c`PJz(n2uTjSdzcDLZepI&<<5Wr{GoN4P50fL5rt_ zXN^t9GI{-V80OX%lX$gY8M(-}MYFU0t`B?YlHZDh^bRtXrw{*4VOk$@ocW9Glsq^0>^dOBG0>ubKTu{3w#*KvL0@~5q0``XHq z9|E;-v1S$!5)t56wuD+)yD$p~3-Zg`zq5DJad>TR$^XpK4Qg(wtt7`U2X%3NVd*4q zZ|h)hXKClcEY7b8edl87#Q#kG9|-=B|9*c1krRNTah0&K9)fO>V_}nH{q6)Y z0X@Y9&cvUS@sB^OTi7_bc=!Z_M8v=jh&!NLSlHONaIkT4ae(1s`2z2QaL94*J`i|{ zN1^o^|DhwLU_e|B0gGJKcPi}>B&*OHr$9m?YMOhrbZn2PfpLyFHo0Pf5wFc z!v1?$|30$+G%j*rT(@v=uyOGJj0@|QJFsArwPdNKmtKN8ToUF`k=< z(!DqX)pWO4WV*67SY!Whg%lFCCrxuJp)=1T7}ndne+puqW~=9yif~kTV<=>RsFpTh zZwT{W-l#&JT`Rjw(s5_ViVTOM+mtTHz{`?I)NjzoV6zMwx$`dvE;SG!NJ2Oj3KU;@ zK(nbT?YMk0_9Eis^Oj7RR0bQ>AP|Cubrkl=j=8T9H7*Cp8XFp%RfZr|6Qx&|Eo4uHi@?D4##Pk3EU*; zY0XLA<%S z(z;O>kY)LGv|(V3wf6(w-nV`@W z(rXBeW$|d{v@OFt)G%;hVtjK4aEai5ZC>s^icH@Fl0|Vj@!K>R~v| z|F}d}-G?1p6M z8}QAQJ)q}DQI3!C1B$wep&$ubO6S0y{nw^#7XRmaSu*Z{5xeI~mD?Du(X;!VHHeH< zrNIe~4nX&Y8z=x;nXC9RS%8& zM#NjG?6K+#cev-bZkoCs=Y2m8c>A-;0*|Xn8BNVkUsE1;R}EQf9zDRuA(OuXXflPu zwuVC{qqYbs!e_M?6Gp zE^h5y$( z)%h^3@H*MkZN;gS+1yoPJLURup&@^3HBjgYljVrYOe^0Jd)QfTGfuk5a_MH?C9rK8sH9>)yZ_q0AyW|e40nO|JntA*{%Q9KFu`eo)aPr8k?pxQx_1a zy9}8wW!Fw-;(ZmXtGp8fDIE-oE2EyTK3Rm4Q6#t}*o%QlXe}(DF(pXc!kgjCw44|x< zTL^5qRV5Aa6FwweFs2CjQn=YgUre~XEyp|EIV>%-9HprqesG^M&WQPtVb{V#zT?|b zo}tyv&nbRn^7YX0LHWlM${y?U@(g7an#es`)|7WaBn?uIa)=5ppJ*aI!<5w`N6&^;okY6?QCQs{%4NQkE~!VOM51&X|JWc=JLH;hh=ooN+*6!pb13 z*x1Hx+f|wvKY_$@%FoF`=w%JBrtU;d6R$#UfO);~SCVx_b(`Jiicuc7lFf-hxy9mT zi#V)t9!i=a)<3mB-`Sdf+E=pm7Q=ntU0Yi3Yab(VNxaZ#RkKLBF^rC4!I%fi;r^s} zY`xrjgZs4@s2gj zh=})i{?h{85$|MisoD0$&e~r`{`BSrY`re?<4vyEW)a@+3)wpBuv=5v`wt1Y(44Zi)X}Ac<2L~Zx#pZP8;~y z##ZBR$ocMBCP@;lo$-o-Q3jH(KaASqhpRGDf~_zBY`|Uk@%yV&iG6QK(-?x6Z}Qh0 zZg0-0)aU4W2AE>k;q&A2{wKWxHC^Mru#BTX&&JkZ5QF4kv*5ZR<* zj|fNPd3I5LMz%u<5a3vSGvZ1pEt0$Vt5jqnJn-Dfi9WhxA>GziLG&(p8j2|$$1VWb2lXiZrTv9#~;PvS*YFfX8IRWb5Mj$5pfHf%W3&#{vej#G@}gUJw^; zgugnbR_}CuRDh(vJ6ljpAKR>I=gf#H6L>i~9#)q>uy1b=s!(;ZhP&omE6f0phRZvz zddK{J5q+~Dpzm}ZtB^$)b$cmH7QTkb#0)rFKF(mlTr!l*84hQu&JEW$aw4*O9u&LW z_p0eTC3RXf8_jL?r<#xLoqrkq`SYa6_?T5~^?T{r{t%)MHzPZ~C2hgNP+?n+GPEXl zii6~B^%qC7Y2MUrg}dhhp9boW*MnWBH6KNA2RW@bxEoD~$Po4J2rAK^k2p&*OZoqi zecQ8tFwV2m7*MCg6=K*q#TQ+kqXspnjrUHRp^RxdE9WIsr_+eBe|uY%qwgZ`oUTnQ zPR{r3G5Fpr^r84b^Kec6btFXI*e!d2rjwgH`9teqazzxMxHc@ms^!``F8R?j9e*QK zaSgdwjR_#As|Fw|_xtz}#Wk}yr00HoYwMNYMa~q6t_#R(+EnUH#4+uMAeJxx%ZY9*zUHLZoZ5_T;Q)Uz7|F9xPaCua!Ml zdO=9_!}xUzZwUh?BVEU*6=%Jnrfr)<)yEbI8J-eh5Vt-1Vq zw+tmb#_()FAsm{b(W3W=Wj7o-b0+u$`a@^W<5QPn?mga*IxFES8~Qnlp7ejX#=<|g zq-i~2R+XjmR4qdl?A^y%bKFvQT^txNFYN{2noH(F}xxBjQPUq)t+MBCMl0(pyMU z_Eh=pnuW zh^deb(e9d)A!EUnVma<;{2kF>_!o(1m3ot|rRo&V>c{$&<#F)Pdy#re!2?fgKYU4}kUX^Zc?~U*6pZvA$WAQ~T zG8$4Z$E_yLq#~{h=Y2;{V)1!o6qlO~<2p$y8k`<&%dcPsdWY`L>Q!WGi8m%0n#5 zw@M=8VZ-n*uJ%`W^YF!LV|ZZ0QEl9BkQpa>ce|xt21L~p-t{9mQM;j>p2U&+Q~n1$-610j6om zx*KdhKtSkMrQNsOTQU2RSwDiV>9S6Q`lZ?O0VT5sb*bK*E0K7(83fqtB0Der-(<|x zmrl9n|D1@CCl1y3aAJ1^?5Ezplh0h7tje)XUrUPm-Z+3N*^cUZc-a+5&6km>nK@$v zI@ceE#(h`!#4oaMUvy%4#+td`)X|iUYI5V$A%g9a-DRjCZ8E!^(y&#da%zlPQ(d?j z&GYx#!cr?EpTXZ+B0F8}Ce-vM?VH&^Q)jzb2-K=pgy={gpmGE5s>^nsb^}NctKk=r zaXs;PSbyK*`xho_=2r<%$Pjf+lL(LURbJltweMKw{ZjN6SpYX2)xRVz{lGPEZd#Fg z&|5d)N6e+|Jx~G$`TZ)$cq8gj4sy0z6mm5f`XFQE3r#4p3A&?PnpLx0gzxV~-Lm$z%^*HYNyTVSH#Y|Fg7`VNCXd`$-$ ztBh}z`VH!P*$O~a?f}t{Tdj!yvdLe1vNi1{9loYC-nRE}@rsvwL-or3-0?Rkj!FAB z=t~5At0wz4>^u=jR@Dam1{t#flIzLMk6LE`%O-yro#mAF2u&vI3$Ng-yvYzkbZlJb zeK3bapX}Kjyh8+{jrKI1%P%`CfxOyCl>!KPwf!szb6XB(An zaNog^55V17_C>!;1=NiCJ*P>M!WG_tS)S0qmf@5@I&Z2BJ_WdcSG1LlfamcqTe3;Q zuc*h)UB)WP_7CoNim6&g83))kTUbrDdNaTd7`Tl_Au82+6FdQTn3?C;nK&-8$+(!R zO;Z*-A)%Q0DKvBuIRF$|C!txq*yjG%VKDtu@BAe+fyfl;I}B5w&v|O_1swL0bR+w| z+h&0*LUT0>9q+4yX#{-7T)mcCw4dugScbez7TwzV7K94_D{pzMa;AB;jgN^k1YI&V zF@?&K*Bw=ck0~`YCjX+NN%{HVsf4lPfaAn=+pU8K2vi(>^#HxVO|n+25|L2A+%W!U zc!#KU+bJV}vS?FLLJPf(0Q^)SDSLgIw7d9E{fyb4XTb#4f>C#}R-Z5eK{AqGKwfs( z3lO`!Ve{IEC@6@@nTE#ojw)H%Gc-1lP!r@l1t)RA=qv_{sdL{R^bnN_#%q2Vupa)O zVoPrU#XrtBxXBo-A$6p+1j^8R&H)Lgxu&{D4~MRGx~^n1n(Sxr1{TuC`^~c`;8ulk z05Yz<57`4eUBqs#MS9Usj%t(2w&XfA>IFaD=Rb~%)a}LGHn8waO<%nk<{oM`$eXeD z+G}*p8{!Bf{dwaYoy7ZNCLK|t_u^tyCAE!ATE%wx=8cXoXY{0UFAtvIyQzGp4~&#^ zw3Ys^hd&NcEzdXv@3@sZ2w^1>g69Xk%j^8nLOh&;(|KV_k9p^`sIQ1gxhkZ;)Motn z>LZ7IH_&jv;&yiY6$&`vRX&f*kApjVZbq;kB3O`0A)l`s71~xv4P!baSQAZUhwYnk#@ZG+egWo~@TRf<7-ai}U&!u;UHX=xtzIQCg3-q+d* zKl&c4%I!n8g*eZFas1d^8Q8B=b(?;((UrEUSQU~W8Bd)p-|Ziw6GRyrwv6k(@|`n^ zY5Ymv;KX0w7D90*-$$Lb=HREaz2g4X

eh8{CW>vk^ab^d-cQv*2o=yoi;`aT=tDBM4PkI64UmEMxm_3R;dK7`-U(?R zZVY>idnS+aVh3I5C%XDO2|@BIs-4~H9Ul?-JB@DTglU?YoDi_+PYYkzvnl`S?W?)~ zTia%>+~yQfigc6N^d(+za41^-^@<6X)HR_z3)v^{oKxZT`!=;it`ap~0*x^rTw1uy z_>Px4pLQE)5ME6*k;;wfgbvnTCR9^(!;(;+p!SZ-(>`0eM-F*b(Vl?9cNEL0Ewu>I zXSQ!ls(O0$V?G0ve9cC=`u*!BCZ6i?cxNmkSVt8h9gNh+_4kEgS-REAt8NiL;$EC>3b#HEydOhk!!4}3yOv4H%V)Cw zWA*`~=&-c^MiZt~+ z#M5prJ~Wj_+Rc#d58V|@CR9P@odhJvsT8zp+oCfIziwo<~rg>Dd?e}05 zVP#!rm+P(-9~1~C8p$AEc6A}ib1H1{c#Pc0$7w7KZFko+Vk1b?p-GlIha6 zuqTVy?8--0R5j4lk~1};!Wi`*m14KS{Z^r5h=Of%}Yo|KVWaB+>L zw|u&$tyjM&37Om5Dk!>qBJ-s1W$ORkgx{UsK;=(liuXj8ucFenuikf+2GX&!>_{>F zXc_xbq1M%U4>K8QGP7jTEf6%)Q#je=ApTy}@BHV9GY?Oxj>i4m{;lFiAx565w5!%@ zI)Q-Sreu2TGs`46rtz}@T53ZLKH7KZc?u7f=vg1FHeM7F`5^0_*b zF&)E^Yv>U^jv*BGVk_)avwC1x&K7nd@Wt_l)TPm{uFwXCiEyWnx|v%JUGl7?&cFMS zEVbfA;Xpk-dH8B^@>t6EoJA#(QkugZFSAZE%F0k_*$o;dyZWCFx0f#LJ1$pR-B^=Z z<5kuY77!x)b|)sS1_v8Z(MP=}zm(3(N~Q=y&IRgpj1}AsAzM^?OoY+`>xv5xn_@O& zJ>7Cb6)@~*FS4G==96|=hLp|)=D@zE`cD_7VwRsy9m#;{t_)`g-T}pX0&pCk<&Y~q z!3RP3UYjM$4%iK*lQKe`TSH^e?*KEnA_*{q%>dmAs`aED_?3)2!(b8*kaV9_z+#DHmeGe^Pg_$Of6#L~fbOyJ^kS@$S9)@2n91qT5 zCe@63Suz)%hDPg>l*s@}Xh&J!q@;4#F5a_WGYoI;#a9Vb0TF=4;;S`Z4(tveX6?m`+bOc* z0jIWl*jB3pf-*&qUbM{!a9rn|^5M(R`DN<$%Os7l@WdKFLou%#-1Ey02Q`%%+KlXc zjk4jc0ZKD_O{vcIQ}nT(RjQ-TnG;?h7k|Bt_Dy~yIP%!OQK@jUL7ipAEb>9}!q1(3 zXKcxC>SNX{P`axF0L#re($Ss7Fe>G>CV5&9cv#-v)C^Ef`W5*aJ_AkyIReIh*_pxX z21d4Mt);eV@kX)EuoTdqfZf(|Ra9$1bL(awjbIq@J^3u2FWzB$YV)XK zu%~^dva3aL=6r*F1Wjup3Oz4+JQx&Nw4D%bl)WW1*;1`AT(d|9t=hiQ{cL2Ez5K#S zvsgyuLKv&uj13KhAL5IBfvW;Qb`InELV-;lz@|cg{_*!FkY~QH*tIy|fyETVrxn^x z4Iw|1P8au9fq0NCkZgTT{Tnm_eL_FA5A^YYEk34R4VaR=9_rq8|9K0D5>kU^M%gYO z(s}q@T|mOu^FwxjXmV)>*$o4-l}}K_OD`m9nq@b(i?G*r&MSYlVH8`;FwIJs5bja% zvb@I~cz@Eb-=MmJa=@oSOCvXfDjzkDlv{>CbC2h0eqI`HHk@bQZfvDF(nLpj_1wUL z99~Z9HIOI!mkpp^puT9S8j5o%t%a_8#aGrXS)axI;d-~q3r#Q3rC#{eEQS&S#6q|3 z15+SC6Hr8I4@WZHVB3L_z#zN*gY)Fu_O zC_(Lry34x4a1zF^Q&(kyNM|4W1b8=(=}N>Jd(8_da=#1?IbEdk_$Az8NS!=UzUEZ2 zuAwN8gzib=hr6J+p8x@OT#RmGC3qb|h&dQwW$1G0SZiJtrdDt{Z-TnsI+O1*bd6kv>x!UcBSm zFevM>C>3QqY(rh|=!{f*V?!s!^M2O5)bqs;USGzV1z53a``mmGvKidpFQqeEcHUmm zd;D5Zl?i5!eIhQ4IAsrXEwcAvv6YVJD&t-k66kr@>RY}@ye+oC+$?EXzB|i&IZN^c zUGiq{=i@UIiLFZK=`(nk7j<$Wa9_7^oOrMnzNr*04OuaeZlTe<7Re2izNB1-S;?d9 zbGO;7KFN-`NLbkg-*8tx3nxI9#AWY+Kzhmc&ciQC!BM|F;h#F8i)7D#)-gU9e>={O z&nA||e_YOBWHO58CibRE`HVX7Z$c z@*$zvo%CWHa-+I)>Y0r64ML4j%HnbZNkDvYXb_jBMT*n+a!6HWUq;IvXHb>@=lG zc%BxV{GjFnpI#SwUr5BWm_3(vDS;O0_wh~l5UV*=wX4Ihe9LQ34M&9JREh_Gr!z_h zfECajaY^5L^l;QSuawX0ZHv&g>QLXw`=6Eq=^<2i)rAb5G}r}bI!#1vjiD;GPWEcH z$5n%{&yyPac&Md7+qu>HOLfoMIAR;7dv>ne;>5qgz6rf!#x{MwqBaZT#XCB%m@X$S zT4hbwiB~Bl613y3evblRI1gJkZ+x?>(uiQyAh3KLtKcA6@u}E{Z)&hQ z4?j)5-u^U9;sJQb=0KKVM>NHc5~0t^7Qh^$eH&KPhzLBNQS%O)RJJfFD-$HhO&y4d zQ{^llr0Mb+C}>+Mg={Y_)o_0~Fu)Wr??K`patn6;ipwI*@rTJr>O6#pBN38_C z#!`Pn?`flib58XW{dT;Zb?kK4W6dg2<6a4;I5yR`hUVhCRl1urR_8yn0lSDTyf9%*G)#^yFsezg$5u8V#+pJb4Yw&ttp6dmz!EIGMd!YtEZEJLUYU_l{=Sb zjp_rnpqi-ozApEPh`FRsb1_iH7ZMFU>9;>Bd|{mp{SbMpbesfIv|TsA7XkBhbCZt4 z_lbP9(wrqf`A)N2tv`S}%+e%moq*&?K5m1qY1NrXv+qjN#PMlFsl@3u@#nin-AlMb z;v%ysh|1`xFW$_el4bmO#WIJ4Ad|MuWNE&>N2r>&TK%LxoAE6rmN`hW!9Y2hdxCCZ zgVVlQf*bvnPX%~*Ol-?tB*jX#8;?%-DOL4h$}yprka!<}R~kF@0r(YHuToEmHL12{ zqSG(*E&_6hRM?bRkX@dY-}mJfWZXLmxrJ?|FT(`m>Mcgq=FJl{9Id|gVe&B{^_8K_ z_kG`yPrdMo`35obb|%fwOVGGx(Pd3t!qDwZYDbx}CLVZiT9D+~QO1uXJ!%+9TIDA& z^KgbR@*;~kxfrHI`!9^$R~ps9UA38fNcH`Jwtk1$$C=m{aaAU{T#Zz(h~fgtypGx! zJrsX~I>abY5gpI_NWvAyi3sn>9O+W$=RSmX=cw7H`r&t3K9+4G@K_t^VbFDQ9| zr^teVi;VAJCl6&6cJ>Y|eo~ehdPTM7))-aZDX8jr=asCVx87Ma;5F%$I>OxVcXu#v z;vZK&MrDI*(MroG;pwQK!-FL6U&iLLv~ZL*32sU$9$A%6FZec&upe85J?@1pO*FnC z0kVJJx;fAAa{iD>|9MgN(jI;5PyJs6?f;0{|F0K32bm%??9-7O!uRv6(U8^p@)}3i zl+0Ifxf2+f1v5L{2OJSVAXuG;LA7c#s?1@kXCzlvWnnXCahqB)-H4wzH!(U=k>HBF zx8lvoGEg6}+%Eq^6W)u}E4og=IK4JJtp&o;N@!Rk@}SJsmQku;#*&FAJonz~$(lp~ zaqAN^`Fk(hSJwOcE9V^CO>rif`-0^i+V)z>)?l}H)!M#FG}NT>yUE84w)CgJv=6yw ziNn}kL7Sv|#2u%@k%z&XTJaEhy*ssFNUS{cbFOV{v_*4;F|BaBQD7oB>S3a|Hsvc> z=h>-0veOL0L(&5*>DBZJrsX7Z<+m+76WUdyObuXffC7BAJm+MgSBt@DfgE_=P8DB{ z1K?%s4=x@QxSeAxrcC`{xxGTp&zB*D}Lc_%$RZ~oUT$-8B$d-*ww zKqXPUlojF|Np-$`ySp6o#_ug>RPOEII$#H-Y9vBT=xov{Y2=ghm9#Z9i{T0(Y8h`w z3GOska_DN!P2~Za%oXrqS%8TI@2-dA0><@j?kdJl=W=SyfIdrgt?SLE98}@{$hVF= z>3K6%tBc4Fu*Fl-loK-m21d^7jS2XQfnh}U^e=K5&jxOaAz#HXy}9TiK1Q0Pgzv{Ix*^8*mA$35>f>qf zSu$5;O1pg2mp?U|%S@Da)wsz@e|bJ<6v^Y2XP#GeJ|A)lOL zck8^Y6;pNl`ehR;8wx-L<7;N!Lp!NsjX6JzZr^=^rhM>CV(2*p;WvC0l2xR?^=R;X zW<59gRXeTjk2Q8pupkorI$ZRC9VfEY{9L()YvzuqgEW&RJZDWO}Nu@I#hvmu1Sh| z-RyoY)j!L$_Zx&a9e497-*(2%an!)~=?z>bVwph{9`4mFq-nt;O_AF=t1f{@ZN(r4 z_qZ@Wj9#1ix+^&!8v5=o%-=y@0q0J^X43UTjvaUs2--y_PuD|N^3eZQfImJ$-B|hP z=XtN4E7R?T8R%+Cqrpnr52l4Utq)o|o?Wg->hwpfRg%qi*xa1G%%>0i*(($Lq~U!! z&A|NjfS(dw{b$34;wGjAh&v2hWB-J0xBcqDJo8nX;<`&Nf#M-9m64_J?@Y%s*5LCyLBB!rlvo$IKKv_Lmvm<_SC}kdi^zq- zzitr50z`MF8qK;iv5laj4&X4`q}%}Vke;RY*w=_-Kqd6Q99-!?b;gWtsYv0#r3}=^!#O&DxaccDxj^5 zM>A$Sbx@cMZ=O6$prXcO@k-gx{<1#+V*s(Fd3A5U?GSjLt^l!}e`&*34LPv)Dp5wJ zIDk(YJ&QrXF^?KcrJ8)@e$1RtK4oj^gz;!d0`@XEOay7-+qR^6$=-S&NaLE+VZseT zTmN0i31|H#cr@ehtMw80fb`o?47FIubR_>ryn~Je)0CNd`wxb;UENVsH?dt^iGgw* zMTVc=y$)0Vju_JkLFJZ{%9~MZ)q8upE(OKjZ*llUwb#fLEG@Mn!^Nv8nzZorx?Oqj z;7qey7H`xghGcGG7XQSYg|??$K4NaESTXNVr(iQdFDn$GID(ipTI%GnBgR6@HCBdZ z(u|?y>J(4>%-@kBhIcV^$k34e$f?Q)3AFl&fj|8cFKdF-jV?Eo zmpGUlWhd6X4kOQ)s2AZD9=;5(oDq2p`c`fE&T^XuN4|50>S@Z8KNcT4*NR+Jnj>1*AQu@nvw|SI2wMQ`YtIVQA_cO(x?8|);2Uod%Bm~H^!@}JRDC9`D9=27f_0`LJufld z`qX07rC*Vvyi6c*O#)<_UvDCaEY8?p?|EWO7hy8SI&pepk#H|=kkwLLyaL?a%77U4 zp>cPFvR2K>g;PKA+~F_`P75Dl$Rpo&vooZw3%ej%(mk_uB`G7y45r_x2a}-Qj%g#4 z@~Zo}HHDP~DF&4*sujK@sEw|Cjo0A_vxUeg=j42^8*UJ379*gxo>ahRemuxI#QLJ> z_Eu2#+;lM@VKq@=?4fnZo!a8Ak;#SXTJ|DP_n@LWkOo$o$Ef)_75Y53u?Q?CW}MV zgprZ)K>z%P_2HX9jytScB^>wKBX#)7c`IUx!zLy?J6x#LI%dWhnMZgL+|I|U{&6>B zbGr7_HvF%1dcT~=e7}>;;AbbKW93cb+V6DM5|T=s;z!D zfM8R!fATH$M3YI5*XQ+e2TpW^s}#=WH4pr#hd5w#YDCr9-1O^?0!E#Ak*w;_j!2M8Ycd*w=* zDdGBZS=KEtW1*k5DO}z9-+{;1NH8upi|&ozlPDRGegba(AvBqkc_&7FO+T}fr)9H!i^LumVQ zt9($rhI!l&f|v$#j~+GPhq`c=Yxq#T7o=%oQtd!iqV1*Lo3L7;7vBrEOLlqg$kBQUnqNUAj;OorTqxt-#uGm4#feL&x5{^slqvbO zHLO6+8}@x}UM1faAMQ2Dd%xe3RiyJtbas7jUi`{PY*~VwZU}+ZJ(0l~55Yp`O$qYaewvUhhB9+~}7dbjF2H`RtCMdDF{QD(mFxn;1D&B&exNREKg z_`a16)%UPK2_=@S!K%~B+fg(+$uMX}`3BBciNUdb95%-cmysXJnb`qi9^hq&pe&;AhpQPfaiV6+B}i(2vg{ z{P4H$%k!l2UdS&029d3sW}1Y(XpwN8K5{nZ$+xN6Zs?uNjH;O5N=T`D5QjmlUl;)o z4ueEU6^9}$S#=AUBOzxz;%4=^~Qz{i=H(OhTdE2~F zedfIkg}nziCj{*8z#^_CLpF2h`|sY2{{~_CxUO8c-Cf|pCpVZ)sAZGDZBaS!_H*sk ziX0hj%pv&h)MY@$sj6}8ZrLK)zWQ>Uch45$aw4w4G=2?nktIb1JMo&rzWmzkmBO?-r`isZw{bt0jDyE4@@DZwRCp*Y@BwU`e7U|9Y2&Wd)Iscz|5}9Z}qJp54>Wz=QKNQ z0X;x_Ab*3f-K8j^b@IWL3@3z@pGg%W49SV-_p=oSl#*@zAn}NPp&!{F=}~9%)*S;daKVBPj=?vau}1FR`jaB zZ`HP`!RPNQn&GmX)noi3_tU=SZl+rCFo*eW0O2)?@atRpxtZ+IFCkImrQ9TeWG`S8 z9e!j$kv=|nRhjnOob2U&$2Y!snondnZk+>l>rikt#F#KDSg&@AobtA2v20$ZN`+dt zw@&AbPYQF*UFg&oqr2iXJf#7cqZdnl4_ol6MF5^0WNe}T1wt*teJ5r|@{U)a6!`$i zW5{2)VA$1G^u*+Ac=zlz$=3ng;ty>2hvj`T##r5ssb~D5M+0O5E{UHQz%I`Lli2eO z&+}I|cZ$$lBFIParu+!CqD6UPJY~MaykzO<;8J>e?~TUn$Ku(z72KU>BtG0g{`E}V z@P~ojJQZ=-K`wT{H}Q(eaL|b;ihN0aw0qkxMH3@3j#6u<(+qO?Rpt_$#GGs<5&YF& z>I=SEHr2?;6Z))hG!}3@(hk{+B5Zjo?efhzxgTLk$jBxI05n0CZ}3wxAd>g35UA90 z+Q@-D0A7CPL52yq0HY{@S{_PhjupO(O1*4|&|5rmebeX*; z+#))qiNLkpf1~_H+exnI+h*IX%Kr^=w1Tj}5OEh*NK`kirW_aGMRmJ=JgW@#N<7|v zCh~sF(mha@4A3p9sQ9#EM!N-E)wQ;C3vY;-@tLOz7Prr5^3!HaI$7U$6Ns!baw6?2 zmqR^Ie{K58M8n-WDbcuZCtAp4%h@$`-5KYjqQu%U{K!P@+Qi8zS*rzOqE*)cp-!ho znZat9V{@&F-4n)%;^pm?CX1+MHQ6lh^w)i_dafYQ7zTsK$C*Qr+C7b7<$TyDr*6lu zEv+X^9Si)!%~BS%Gj?&Fyx*~ZzO$&hy3%XTe0Wq)@WZ8rW)E4Xl#U(lyd(QK&TR%| zI!Oy}?Q-BMKPwDd=qs2)tKCk!v(`ft=!nw2&(2zwR+rxc$+ z_-czuOxw77-OJy%JScRXT*KfZ2Yx!swv`3Wyzk*)iua$&et}P^_d)-(_`95_+=zmp zT)QZT;PjFX&obJCs=KA^mvyppSo?;-$F=t?NflN-bQ+bPO`(3AO|2?3gD*c!im;F; z47fE?CzKk%8bfk?wmF))Ye4wP_%>}TwxYh~3JqhQ6}TN~3bP8tEdKiQ~*3P1%PLEfD7pP+|Rd3eH6i%R;*FS_=K1~T;TXh+oNBp zZR%7iifd%@fjIVn^!`S^fpUZCixXBP82zEq{>F)F1Oi@G2e8XZBepfW-3BDYbp!Nv z6@dwJMLrzd_}y8@oHoEyr!C1|k170}Jwp91jF|eR=Xj|UoFK>U?ypZ^Vh@yS-XBrv zEArA-spi0*?_PNcU$C+*UckdLCyd&!6pNRKZW}?xRiYYWzgm!-r1CX$i#8P*&F$97 zx+0o9;|z918(n$KFOp-e}BCzA8j17 z-+=c1J!l@FPPDI3V*SLgj@F+X|e3~T365UJHZ7*bfup6x0kz{k`n zx6XhHmSJLHT)-!G2CroWYp&}K)i^Fe*7CrLH&Y~{R?J;%GgZqzB*^+a~YyS*X(zLBBb!P3WUuVd@X7v*sdGaca$H|f2K#ryJ^|5 zHv~AQi}Wh1pGyYStG(;wqnL_kYb#Qe@ONu=kTB^!nxO(>AD@0 zY?Oi7`$|v^Y+aixCI*@y4~epP`=$2>Cy-l0-t&*}myvt7y3GBDE+jUqYlw?}iXD2+$E23$)uN>w0sLYXEN3Hxd_+`!S6DZ%r6Q`IPR>6r6v>o%E1x#*i zezQ0wqj=-9)puh@QF=PFh4%bmYPZ4BWEhIREl93M`^zH5l1M{S7^7YJoWOX!Si0sRA05(DO@+zfsH z+YWx!y_kk~d8d>sakd{rjreN3KS$}yBdja7@@1*Jgo>p~w`%s`uH7gcYK8}7Y+A#2 z*VB%`7nr~AwwmWJnfFA#QAVvwb(%=U=62ME&m;jaCjfFwn-kJ0O?XT3hL#tqTzRRh zxxB1U;L`?XyooMHb}cWE@(-~St#p#Qknkl7^QW%M3g%mLfTNoy#Otsb@XLS6kwfd# z>i1^rEih|2MW-j)EGJiqnM&+%BFH`OHZQ0(qll5@$#C-bxnvK0%u+^1NK^AG;5OC@ zsdAh?&-c@<3fH7%MyiOjx~zJ@%R+A_B8six2!vO=ZUSaMnAt@}dA++VN9wCbQoW7s z3eZSQW9-lkW@SS;xOW>(pd;$Xwj+Hb!fzgO7U_58g?Mo9xQqsEjTL$V!^?43fNoxd zXpyu9nv#aVd4SZZ)nN&W6CW^>l=)HKDpIv8j1{TPP6bF z<3y~m?9O^_A8jKYLKJCB=l62?!ozM5+mW>*wnlq}wb+og zE%J?hkL`gR=f+U`tlSI$j<1HESfwcBhqocS?sq&MevjFJhM(UKPn}Rj;%luReFH!w zR`u$i$IBMbMJTh-92PEiAISlh6hNh7@;bTq3fG$CMmd~3sNXMI46g3&t)|LUa>to?X&IM=L;f_9s{V0Xs5uj{Gh?st`Jwb6qG6}L6xp3;rjLJ*| zI4I}XhL^u%&|9~sXSStO+oJtvk?U}){)`_fSPR<#O3lO7 zi!GiLfKddf1M#N=x29+?U;2X&=V+WMgwgm?lkCO!RUJ96UE?e;a@34@(5$B`cWL?V z94r%(Vp6rq$cpHHj3UeQrDua|;|NnBGMg-+HpObR;3O4@0Rd!!NB>TM{u@H{zxj!R zncbhK#V1e8hYpdO?aleno$;oWiT(z|_JQi#R`F@6xldEgS)iZ6d5*iE!KFsal_g)&0(S_zS&b)fcsWIQcf%W)Bq-M0H7a zjP-ENE41s!FI&XIX0P80;jvK`0+)S|mpvA=0a%=fDgf^Q!mWhl=_RiQf4+rozV1M| zZ-{zLIh~v`9{{<1Er0Qs$g2Mj90Nygc-^5m0z%xR?Eor2MCCULONE!P_=8xlJL+QAuy%8-n)h*BWF2>TK0#$R-h7S%C{SlIZRxHs|&ma_I z4)v#v8M4o-b<;+vM>5-~3g`Y~o^HELM<3xQsTpZt7EBuq-<$?4>l0Q`%iyHj0;mi< z9M`W~A|(?=-)Txu;V>mf$gJ-x!4wTzwo6$c zNTNxYANxuH@|_ENs@DzVmic@~jW7we`%RCNfz>GQQ45dwF{j%4hP4PC+M65Ita&*~ppF&x+8?Q7Kr}!Gd6KIiDDOg3Ctu)k z=D-(w1~i9ezXEgN_tU+?b=)%Ljl{j+1ABgWfZ;d9%!!fJ;3V^G^`Q9ndz0BNMjJwQ+%Tj>2U-$iTKs%$)MMI-K;@$h+`ha{6v;5ikP<4~lgu^RAC5vy_MuPHl}& z%%jy+*7THw3wc~2`1+~< z1(-|fZVSj|))1J9;V?&#DB#!9J}X*sBks4KMnaW$VQF?R#2Z=qj7f9&^qJLtTE}t% zCLvTe(&0|DpE*v^V3+1lmQ)BgjoU`&#ShJ4g^(2!{x{z=fAqEZ zSDo!&b-4e(AO91PCd0oHY0AFxX3FZ?y;5MlvTVxJ$QuGMB0GIUdjQv_u(g%L>jxb! z)6egO8F1--{f`lsp7xh>Ot|zv@8ssD5pr=5QE&k8Wdd#zQDDJk`FVv1pyUnf>wkbN zWbLf=6$~9TXk-P2X%r1z9Dbqh_?W`Sb03H4$1{HZdpi!Vvw9~b+w|SkHzAKG@!XM0^fQA)y z_3QzcC;&J;^&NhhJD{;wLQeqq=r4q$uPy&ZIQlCusPHQf=&#J6zY&2lGBN#`2h=64 zM`Ouui52mabNmZ%WVT8^v^R@Vo;(VNEq(Gx9Et6b;?Xc?KdR$`YOZpA^~5U8I9yB= zn1NnC(n8xee)?b#o&HZJAlYHH=; zYHHk(e6r!-;#xP8?`9nmd{0CvF-1E%ejoJ1*`VP> zM&^5A!IPWY`J7(6d5la0qa=NvCO*bCZ-KEKxNZzvJn@f_Knkbzss}@*xtU4p`@`bm zha~Prt=KoQe$cj+*zbb^90)ggB|u_!;=e}hbgynPS3JK)_0>-XN`WY#C{GkBQH zJP!yq!hEXt1+X;L<+S^!BG71rQ(aa};e|eL;}QE%+z7}>Gx19YPFo*4FCTtk-5u4n zP}1ft8utNKAi4f-vYZqA4qG)^SHbj`?As9jz1MwD!1VI-ZVQdW-VBps-><64?M z7JGB%w_qV$dabcS9`nZHrUQ`=x;1s4vSBE)!1@XVz!e&(-JPOc?%atpFSXMvo?)HX~#Vlktv@9Jjhw0$++nF&6_gdEa)|mu4%mf>0EO8>FMaO$Z{u#$1``XH z-(%`0F}PGgd;4ZJT+-SKt5931H8?i*=9G*@Ym^`5oy;vk-e9%dC{tb!E-Ip>W2aJH zgZg};rqohSs2ROR>|?l9LT;L^JRx-_u1gno6;HII>t7E6odO}4es)!IEc%wKv^0+w z9q$*FRh-31LAW3sTVS2z-V@{vK|7$YwS*_nft zP>wC2qccUBn{|L<1Z&yjxAayGU3E~-7#ZnWyr;2*5F7D?)^jfz?XU2`c!7zyh;jy5KI^N%!ym)w3%bo zykM*&9mC_$U^6Qr{l-7{*j#=*?oFL-|VVRZbn(vRCh zRA);<^MEvg+5H}uUCSu-i(S>BPyT8{)X9luIl}B4MTipl`pa$P%^n~kmR5L-UspaS zINduXuy&qsEb^XqnYphPd81IxH@We zr&f1@<+o<0b>TvTfzPfdKoPfXxHquHo9d?U>(zIs<&}<<(if3kskO9V@{b%RCO=IK z1f>Bbf!7^dV%&XeDg88QgAuiV#-~vd@b~> z5XCiOR898@yj%!6YtRRVf1PiVA3Bt)I+qktG(@_Hk$U!Xhkdgue&-L`H>IFnV5Sgf{VzQOUj|3~YY(XiUBINW{T4g0Gm8O*PT!%@^ossey4Dut-6ueH2Of23*!B=qV zHBn=Sj}$Sa$X}K24#=nI)`GS582S#&_3!CU{B!B3N#H{o(|3@r3K-di^ryS1|ydqMhoj3;3LZS7QbhoHGhyXtb!M3!rsm*R>(DKLx^CdTm*W5$Z;6g zGaVLR^gZllUmcG4Q%lx;uj`nVO5M=;W=1MUV-ZL^C2?DQITqa1MO&Z1cOpbL90vj+ z{o#Uh6K;K&y6_Je7hz99Y}P3R!zQv8N{P>5#lJ?wICMKnGpYLqj*eP8lv-BQT z9d50@Zxwl-1&WG(?s@_CL6)uhdrtXRJ@z*h@2Becs_gzwDF1qfmWE%~-tgyXMN>;d zduc;wd235uD_I38MH(S107ty3l`)N&0YDiwb#SE;1t^*J`T!MD*UI7bCV)=K{8K?y zv{te*ePxsfP}4Ir)4iVii?aE8)z6V=;L`onn6+^Kq>8?t`E8v4599fb312`=@U`>T z@zejJ691e4;IyK(h?t<1uFdZwrV&)ZrK6>#r2%}Y;A-z+Xenl8WQ|MrQ&<0~`@c@e z&eX=i+76eF?dMzocL3(_YDWBZ4zKt8HcA;g14BE&(vbePG-S8{tHRh6K$q`I$_LP} z4FM+<9BphY3@u;nj-OomzpLJ_{ruL_?{fKLAV0??t!rsW^Y1bNsOZM_xD50(Vh*|% zruuwV#ukRSv^0FLQUNghv(f!3AqQM4dOBtr0bQG4%LFj9G0^Zi8UIp0fRUDtMoQP^ zmjilcI>w(}s{B$=fDy1 zEx`O_VR=>HHG9V-LfpT+gxe9{=%eiauT0|Nu#Nn`vM zasAn%|M~p<$DWV>b$5-y5=Qg{ z_&Y$q)c3Ev@6=>1)-0~xVhBd6I5NPA;oPgv4HqJ>-&1`!basQ!1ZFgdIjBn4Y9Wlq z4LUX*o|~Fubi!_JVfV7Pafn}OZ@*YOI9S{JvBmmexO;Ve-jF^wmq@}v11~*>2C1?; z)H7N#vySq?&CSlngd zbAcy2;v=IgXPZB8?6Zs)a+=;UcpX5exq-Ep?^J)e3%#pZnfS4-sd&~*Vqa!_azxg% zbAAb`*aa-Ew1q;~@gP)1;?$5$hX_DCbE}SUp+Fp|$v~uCq`Ps>B@Huf`?|v?*%QV3 zN*t0^82!g+xv5e#qce4KaD_fjAy0<&&%c{dxNHoHixq4nRm8U@1zBZ}U$33i+kST8 zvQH1*NqwV;jsz);*0ht1A@^d;LBo5&v+8wCOTnzT%Z}u$o*e?wXwVEtfX}bkBq}9{ zN=|dQr5LAVs37=p^kjcQ=Je2=BlYq}^urU(Z2d5`id{WI23LCO0;tOw=%X7wi=M~E zW)r0m&mz(a(Noot@wN$aaj`wOoE(zEX;PA5**Wn$r>z}I`FXOkhzWgE?Jg`%4(NR7 z<#rZ(U8A9f>-^5KbD74P-Rqf+X)pMSZ*iubcaZjmof5bFH)k`P*xFx{6VJ{=i9Xzb zt<;ra5r=Wy{aDPf+v4Wru<=4Iu*Vwn;z@+C-~ZawYO>!Lx>hycRJbWw7dsp4d!f>C z0L*?tRtdtKaVo$HQT$9`e&18Y4Px46d3O^AGIQ-NvX^qaR?M*yN|YgiBJF}I5<#>C zKOsS0MZznMqM%T-fG`sLP>reR%(CfV;|w=o&8oZHm<_?U>;{avXLYz0A6wdT=l;X^ zO!nD|ID99v#d*`#zw0OrAqNg=PR?cOqk}`9KU&rUcS64|$so^eGn8@Q3GVDDpVe8Y z6Y}#m%yGXEM+R2g;qwUZ+}`-K9>e+4$m+$lnf1~F+m{iie9ukpdqn$b^+`8}3=tUb zfXtWD84JF-9x~V9u%9$a!dPcyLdL#pb<2u`ksM&dBHOuf}al}qsiA#8QwmqY^MkF!NWS6R6|`C z#&hs^cFoIW>KSm|-mcP2{{oykcju(wCGIsax%h?A5tV_TF8Q4h+^8%f>ebFie!fZ* zv-CNDc=;8LnP_Yui68K=TWvgNvOYO(tdv?(&2x(YSTX9QZED-9c*3&1t9bafls?D@ zDLLwrm+&R+B@!o+Uy;T;Oe8~-KiCkA{ZK_fy`I~LMw3(6_8`b1ZqrSginNkF6Fahu3QD<6*w* zuI;98aHne$j)n84^yEe|Y_OBpL(f-%+7>Kc2+0+S04K7dMnE}n)ZzUXyWt*9g`Id^ zBw+BO5NP@4?_lzsF0{}uBDNz(og+?3(6+FT%PPWY$$ywiq z4fUo*v2>ICvxwIO5Sz4-&%YgWS-zOHnM0arCoO(;)$uy8$&_tTWJXv6weCC{=X&d@cWTU(A1Ln58m<#s&tekRum8;Fs%IqyBBaE^UF`L5s zvSiv~$&V#Wva3jk zSgsueQr$wy{Cmb*^zLeD%X{1p3^FpkKC`e}<*RSeETbNdwL^SOw~DJE&bP+ZZ02d# zW!3$w$l#k2`g^No;ao%^cvFHfXNzG+oTJP9z1UFr&a2RQgkDtPlovv0@6~Pil#5|H z;*=F9Qge%bwBR+MLs`ha(bLgdzH;`HAk51X| zG^*RL?F7xvjH7_&eOen63RO_l*zt6=9TS>V&t77Li3pt{Wj}+IIpNe(-cD&m3tNOM zFm-EAKwP#AqGN*pG9_GEUZQC)me_rqFZ4lSzD(-tz8gtnnkWT!p=vKDAt;U5rbfmw zH+RoA>32o*Lz-q29rr!&k@(VY@sb>#Ct{O~NpqB@#bWZDHJ(#xo71HYUd&omV5z&P zMqC?s3#BBcjdI{5ndwuu*Hea4npu))?7CQYf`qZTz;c2$<`bWAz^NT;DBf`E44-;e zS`WJ1v#zP#c^53t1hB%tlYS&Ba+?@=+w)^S_?@y=miYjAxAviyq1)NiCz&lDV}_5~ z++opki`qqKC5Euc2c1n0k}Pq8kEmoGh-di&C62f!l+}X*+=MKI8pFt8Gl0zzC4*#3 z)P)yJ5``f zxXCKQU}jGaq)ipt*U0rFPcxX4GS9v8icXoeAvqJb)th@`8qb{hUGXqQI6u86D`e;k zst{DsB=-teilhr78m?hFiUA#Iq;;RB#cX94m_z<8L%U?K(ka2mw;byX}l zSgOx89oAUkg$Aks>s>65o>HvDFuR(=o~6^%AsuHQDEiVobPy31U2JVmI!NgoI-Y2y zWZ7ku$2cmUCFB(;cBw8pU&Ku2X4!cvOd%Q1Z)&c^uSPWIK@iWZfSy=isWrrW0WP_g z*{F@T3rrKK?{}m>ZLBF&>-g~+T{6Gk1fNF7fZOiMS}!#S=hz;t4{9KfnVNYNu1CD` zIGZHLW@)3iLA;WjPe~(85EZIPFK@OF zPD85p-~)Z#K8!!6Qzg#wQin_U5|$>559l0P)k%{rpnYaCqD3z?#kc&luy3ZQo8J^e zP)%Nzq!7s%Hr?>J$gydi;;xtQ(Y{9G* zq0EVOm`|GWlQ<9KB~Rf4%S80B%LD19?HwN(w-3hyKez9xdFa+Sw2OXS!3kRg;UY4mFs{Xj5~Oz+g{@9gSUM;xukF_n{`9rvt96Zj zF-*@@UZh;@oJ}zChaM{vOc7&x=W523pur>9N=SPH98~kj@Lx!lH0zY3-W$X)1gqzhOA%$^ zQIVKsRAtR>W%p^*PscENMw}HmX>^#)kA8!!t<1qv;W5Xr#b!$+lI4v_-f>(Dtcj2G zA8jzT=C9-y#b7nqyI%OTr-ozF)@F$*0n&xI*hd?l-c74;NT@VDpxWvspYLi6?l#ID%GO!~E`q40R zdPX|>@QF}jt#pRnd5$+jj`SNJ#W?IqJEUxL;5C=Ac?NhzkQS;FoP!S<$G<#NExnD1 z){{agsdEKqkZYAe;!}gE!7Fh@{|m+pUqv zBI`OkV?p`AkCkAfgPF;3vB)C5vnZ(1NnoeCO@{)R+S;~KUw9S2L&B6%w+@pP;uNbl z?O|)LFX52erL{NwMt-6b5zUCVv@PGNqR0)8&G6BO`3CE%QmLhL8GoF4k`UqxeHLOd zqBtH!er=s1e8Li`fgEkB4v4QMS3pd%4r6p6-Ex3LCPZppE7of7tOqyd1BAuXZVJW^ z=Z~(EY99%sAG~}lW812cw&MkF((QP$v?+U@#Y{ju9lJ!Q8Mc?xmD;68v9dniuy(6q7syi_Ct0X)0O2U1~jX#w)XVPhpDFuw)6pXhL^!J=p82&$v1~ z@h$~QYu$Iz#xp|LOWcGMWjh8Gnkhf7meP#WsttUa{QFzT9g>B6aU?vSy1+FDrgENk z;hr?sp`N-4amI2EKD{b1(Fwt{C6=f8QfXYd5?Y@^QccY-MrK1t)nF*wnc@n`CUQ*} z32$)vjJdB;8m1Js>3bL_I_n&EQ;2hWb;S!pdo48t0a z`ZrYmiQf1|n}KjJA_Z-HISE+*3dq=?bb}~DQ$i7gC8F~=bPq#T4X^Z?_*52IjS=#J zqFXF6gQF*0yJ^@F@Y`aa22Pk(M<#PTgISagwHGauhl`HqX==$1Ka)ewIV1i;P2yl> zl+ta+cRk>YWh)n>s)6)Y!g^rHP;!FR?n2alTy9(PCV4OG6f~69@3A8f3=dF<$X#L< zsT5BVWTH~!+W?~}PR!+_SvD@O=d!YLbd9FY32QlS?#!zU>l4QBg5;-0?dm1cGV-Ug zl~<}1!7clcvq2OLs7{0P@IBai_1ry5u3hEKcLa%y(1A@4gBzMN-;<|PF%_g@AH|t= zi4)L42Z3qn!|ATBWkpF>^RdU~Xi9Hg08i&)DevfwW2nFlF{N(qolXh{2Jin@ade83yWp#MQR`NwK|f6wNn15k+5uBZ*FVRR@xzM zVO6I;uxcuO_0lt>RJ>N_L$e^d;V1XrYaX`T-+yNyAc?JxB&RwpBj0P-y3Kt|ABdeY2;p=e4^3Au_4AJF0VG%xR?*`Y><@o>;DIM-@aKxa~I6T<1`-|>S`FXs8uPuGH8s%D$s8ppyHucLNZbdGon zphJ2=EZ+aX-XEDA%>jb-5mP1fO(J(Tull}mOY|Yv(RK4GayD=95W7qQWfg?zhaL=U z?^hbOfTdHYi0czrQm*nN30VyFSuQIDQ{WT`afDmJ%Z46 zzH>wsoHrq86AV1E#sP8=aV7bp0_%ve4%zAtH0Ebtk^UAXqW>M6`OV?>AG-}{gqd;a ze+!5D-wl|e|1}=#eEd;W*x;Dp<()zclQdY#6TT+2+GLBB)T@gkK`7^$A9JwM8%tz@on zPF_`0^MuK>POpHydwiUV%F%2f)VhqxW&R3A%EYrt!9aw$!zpLm zo;)$aEKa_z2GD8Cq#MtV$amGQ2Q(M0tcC~so|3+#{;WJ9fePj0L=ib2;T)6^35{K9 zwRc0L68H1?f8PP!Cd%EGYm;|KM+O3ZuhV>Qd+CZ@EXeTPWJs6KY6 zGB>*)JrEPt+aO(zLK+uQ<)>hn6OLrl$#cJN$cw3;(uOR2x&IWM;9{vlx%)PE$ zigUFodPRc?csu#u7E0+9COi(=J^ds6(Tz;&h1j+PGD#b0tDTP(p{-_GfDLshHogvv zCg(v8mvr+sHgRYj$J|-RN5TDgyMy2Co3>=ohOpJZcmqa2lU2Q$g99tj&N_pOC^L0Z zO`d-T@xHNspcE~CobRq`cYZzXMyJ>Fb9&b^r1Z*TidaJllf4_y$ZnR0IC8L3tU}gc zI;_I66fX15{&b$l!N&KYfZXpE)3H@kVI1So#vt}EZZ%blbg(^|7v2eALy3_W273`sTPqf{AzA*txkzQIj! z^!Gu@Lm*h1vNA}D}GF`D)je>UA)5&gFJ3cZQhTdU0czQ$lVr%KxVLxcg#g5?NEfBX_ zhWANQN#S$%COrD%3urSmo9AG|PH5+oaCq43%bA~&p;@tgX81fl8_UmNZdK|!%t=9# zv_G)o>Sv4L`;MeVhS9%89}zemYNeRLa_2L+Y(Ys1`xwQJUJ{}-`0gg z^O#1N&{wvK;2VXm{Sxgy*#a%14X~kctkMaPs?||Cms`AJDKfim_UnDO$1pat{Sv?? z5z9S{3tSF9gu8|i<(9y#urB*iUSuj2S+hw-2Td^Xz&QFFyDyHLhGB1a&t(JewCVDp zTN|Mjh3Ph8I=mFz^Sbpq9cXjO(O-c5pzGuR{-y9|u={t2`k$ab=0Bi6egQ#YAt4F@ z0648@XZjQR{3DLw{|3+gg1`R*>i1W8_Get|U+|s(GN}G{L;PF7?{`?81%QIT0==&g zJJl;B{s*l7`ql4X9}@%fpTIsA*1v##|BB82f~7Mt`~{E&gdn_jfJ;XY2tWX|{jXR$ z%TIjl&+}$@jU4{%we+8%e!so6X@u!T=_EfTMhg```uw1LI9>T z1SIIz-XG3d$BMyAr9@!dkDX6h#PE<33d&CvE<*S@7UtD$DV;hGV< z=3)r;djFO*Lhq4f!?%ahf6Rh#e(J~V-ki0Xt%rlBy@!L_2)g9*G7gR{Pzbtla*$q6 zHDh>8*a{`^P9Oq$Di0_(b3x1U@{^6nrA9~R>cWUjpNNY0(e7prP3#kSCinMAQNxZj z#00jDeQjN#60sct+s^XuT9s4SEg6Z2j!i#Uo*dQ6Z|FX0CW;A*)8VO~2dR=eVdeAP zA%8h#R1F~Ug-jK>Pw^um*RdAB^F2CJAT_MaJR^Ic-V*C5=N|=yV;30bcvKCy@$^` zNPyBVC|OPOh#7>LOc>2t*h(*!Q<~bzgR9*s68&Qt`Loh*HE$0m4b3B{pNv*=_K z>4xreAfTn7$j=SJ#U;W2M$>KgLKWjZeQW08t>jfnQ+BUY=!yRbBP@g}!U-xnPUU?* z?Q6#T>AG=PxMTz0DxiiXojYXjC(=u%-8mNo&$=&I9|GlrZ_|fXP*od zNWZhY126h?1ib+leLtnRQzEb#VRS?+3*8uX9|`B@&_@tz6Txpn@Mya(biSdNZfR@0 zl)WVQ0d-Y=SE$eUm?XDY+L)&>vCUy@JX5!}Qus7|!L)~L{Lr27vMQ%&kxjl26AO)_ zZ?l3;WsB`~fK|fv0$G%e{pNO6Hwg=;<&pKtJfbPYN?-}WFXj3}5H^m?Jn)$?Jih^} zrahHOfrhrIT)FRm`Q#I7uD&PFbA#kPQ6a`7#fnElnFkI zlLPTaN7K+{ME?CQ)O*bAM7Jo~6uwT;%P7ofa|-p33g5pSLW2}iTsE*u>%e>0KDlO? zVx-|&9>Vmu(PZb@HD2gxKfblAxV44OVud$y!N33yb%n|R*Q!Cl1GBb|@`XyD3?_q} z*Xk#NuxtDnfDfk(#;p;k2_DJ>@d7?d{&|-TS?%pRlxu2EbiOA-M1}@KBB|xBbZ=RR zzUpu_!CV_1{h1%1O((MvrA{9s8+9d$i`|!K%k+{k9QRqVeY`G>6vkkOw8Jq0`005UDa| z;Ra5{KYXZu8sC-X>?L=1_ELAnm;s4t3j1u@LfuKo5(`ewpL%XA9!XupedyZ;8@f>?neZI)N;9YqhNwlh(ny>j^HpIGy1wAWQrS+zAb* zJ-f(wt@H=q2@I!J;9fs#J+ZVlyF-fifb^Dw(o(KlGg`PV< zqc1CR`<@USJ-C_yVqw%V?|v*gm;$vsi+O{0nrJ$(<+;};1WWA z7-j$-6s3I#4{FH7uC?O2pwGDkK{#u7M5E>dSC5}(;+jankX8=l#ZIHs*fILWT)qfC zQV3$?Zb&+xkUAaUxNvjUEYPM~gBPf}W^QVKy*P^`VM4X%gR{v)9MW&#w;op*Lc!kS z?_b~?_GKNugd3T-v$?Y9JBEG^E+3=Qv_Oq)bS?Fwdp;w_ zta0h(`Rvl>@x;7s++9XmT6bl&`B1zhWdJi39%C9eG&X-EGUyM!Xz0IdDI-ECqxJ(! z_~4D$nxFxtnjdVp~PO zf6o^Fh0a!P)4kVj*;cZF$?dI^e|VmuZVsaqp4f(+URzc#aChaPdw-J=@$qIyarb}< zR*8AYDJ^1s)+2?SqLuTK)%%;pIyNfzWeO}I*S;KyB8NE&>B<`4k$S=^H1sPrzfw5) z*ltg`8vkah5I6a%L98I5LU}V#wlzY_nCc-cq#S1Mr#$M7_t$B?ido2L5I$4qkC~vfGvx7VYOHD@ngspTOPCj5b;xkNRcO}WUQuGS!d{}Z-n~~j=qP|~{$V6VNY8qymvQpFSXji}^H@KoyY!^M zjC3Hj$=K0-ZXQi81-79j_DdkJc%TT6Te1zYrHgx{tuo{f9-ZQ70#KN&6R6PO;`<@O zb;G*c%;7bY+aPS1H-Q<w8HqObD; zc?d^dbo(YA(t*U17uj+~4$%#z+edrgV7V&hpoe(Xh+w41Damyk#&XPfD(Br~|LLfM zGt%~qoEr??8ntS?k|n*ZKSKQWsyoLJg>AjG2v^JDx2aN4h@;7bOL2kwjw_mHt5lb) zJPPb&yYR-0nGl8tEmXK?D50r(_vRF{6H+0L;w6KddYfq!QuS{aU-xy6%MaVFumhG9 z&lwbt#|6JQLY7$8aALp_s~dk=x%%d|T8=`8eU!>6uUl`DY1I@do*Z+r1sZb(K%^1uky4S<>*eC@lSMXL+_OJvm~E4pnqHk zKQFUNjtLNHWKlFo+ry<;!~)W>MJ%UshBaikdNpk9a%ik^iZG&Iq_ab6s3(e<3mj9G ztBZT=#%|hnLPw0d=6yd?$uIPs(%Kr#C2F|Ek*~kcsB?Yfxte08x{^v!XEM!S&NOy8 zc04?>_FYBxKQ?2*X4@xt(aWskyc#y>M#^u!4(dJ-EEpVtOfqkKr;XGee*z$7jfx!n+6ThCx?j@ z9(3`UsXGR`nuTV|`nZ-dvynP1@_Z<=>{6L$U5na2&~MV1>wJYHn>u-7HKHst0y(=y zyZNy@e4Tw;ArSn#7;y2>PldZN1|@lGop7IDe8QMB+g@K z;r9Wfd@JNJUn#Hsc2e^Wq#t3EKk5O0x62eyS+sRH=#eoFI4+0n*)%0mo9Y-9E!!+( z_A5bqy04np_j0%rH0`5+-!Wu6nsgueuq`X&o7-ueu(J4p+!fa;`sOWN`NL#b>yo-D z9aS9)vxMSGDLQ0|dmqL5M@{EpcQE>^h6!FWyEu^n*_0n|zP5Zl7;kW_e73H-HSZcK z5xKuF+{M7HrAcuN#<6fD+bzZ&dur?Fx_L7(gR|fJ1Xn(b;Hu?Em3G&ztE*&dWxKjO z8C-stq(*e*gs$%I?nQFLR@~s&wsJDsv2=W?xE(n&SV791FQRmTRvk-+E%G9c7*Q6< zYR98=C*n(;rrdaST�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ɤLAM?8s*8fUh6x3ruLf3=4+X!ltpwk;TdTFr+ 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

NsuQqV3Fqm+!YFizGf2zZ965d z?S{TKr$llliXBKuZ>fxhUZr%=>=MuXj`fs3U`>_&K+9`mlDtC$)ORpl=z%$^B3s@! z2VqAEqz-R@uP`W~c^*CRS`89zQesmYteCV~B%iqt!ye6JEyx1yukZ<8qL|y=7BfuJ zszJIW(>!a$ik;#bt&ow{FT^PYa08ao-59<+4m)$Q^#Zb;qKv|FE$>bPBY{XVYyFhB zaRJZ|s93(NrE1p8D2`SzlcB0k(3@aoBKSX--R5m&ib|C^eow4~xM97ewEPl48Rh!? zaYS6Kifh#U;J?oLs&FVBQ^0&RR(EPyy?F-3QSz?N>wiZqJTy_?rYs+WU9T}CD}MQb zq!Yegl^jlE%z&)ASPnO}sAc~dzO-$VABgEVJOKidEFPa?+H(95J3 zkPcIne5T-WwVeLJq05H>(UHa02>?YDHhOmyNI;nm;J!E zB2_s*UF-scANFWf?!9ZduKKo{G(0Np^`(P>*OTMQ**V0IV#@uvW#^Km?vdD6rUx;( z!DaF89wn79WfS9<+STW@m44l*d~-(86iV6TcN}3v3eD6ugaHQbQibrWM*VwI4bHHt zZM^|)!nFFgbV!qGjz}~7LXUoNG?jh|tjM@D=$_m}4eU|Pe2i*e(BWb>-;r14*UFrz zj!z9Z^05CpW2+~t{RDQ=cJf5P|%)ZZhD=}5wF+vBWVo{IdX zaPCmd;l(Y=OTRc}?Zb+=1snz!LKxC?)Usdf0D{{Wws7+#Z^LvHngh9^BvN#I>r|g0 z-VSmd6rA?9WNPhmE_L1wmM>5R2+HekQOD--FyXcm1G{h4p#D5Ez0D;y5b-za zkf%o=*JQwsK(53ahpYbekr_n7=!LA5ru7p$3zkiG?7a7q=%)LzG2`Ie;b~*UcG}<7 z9xk7&kHiQQr4neekfbgptk)W^#tkqecpF2mw3*(U?vmB)ozE_t?M(w_n=Q#t4%uAb z>{79Y5I8K7clvd^tb10wdbEernd=U7oG>5dtP23_PRmkm`2*aCv0Pj5M(q_5yd7g4 zJ5b*pR#fzd8Y#-7`@5jUX>T6ETUV%;gsJ-TYs-GuCeObCWzqX9kF_oPfAaw6`$QMS zwp+U^Sf|yjZZ0^i8aT=lXSuFLZenr*dswSbv}qHzx^~w*UoW?qT0f)Hu+Oh1%hI3j zFp$f1@C6LI_@kt~Y!b-f?$I@;@IH)$RF>$S@e?BBqmKM$r^`X7M%*S&dQcm(JjmJ$(J|ams3@B1>M|YDpp$LAZvrs3admNUdm?W zIv3pRx!mbCx4dSjSL@tN*gQgGbxo^8m55-)(+sEsW-zwzte>py|BEnFE$MxY#O{;s z5$IR#U{#f{^#EJMIGtWLrc!~Jb9o<6HRRMIruHrrod6=&BwJtGiDVJD9*>D?#-$tH z&|V);NzW5^eqMEzSCBT?ALjg>5nY|5 z>BDlo`0yC2%X9J&iqzBw04`{D=>}~_CAs(&)y|L=(6GFwU7jcq9K3hf&>anF9JUVW znk#8glRm{~ZNY5>O5od>^R5x(94z}r{Ec3$-Ciu}^C&gWz)px$D3rCSRjlU`wqlwn z?X`x%1@Hv3u`QP$=@%h}#1!F+zs&9MlP$vaXfURL`rBcRB zor^QAR#bgST^uG!+BI47|U4&IHvR3gSIFt@DH) zb*hK=XJp0YX@VDcEwPZq*&L9^^fK%o4C>P^?Ha#!MBaX&;QTtGr9~OWj?xmisgpr|D$&C`C?*AmXal zC^4fuAmtXcF9lb>1DVQ&D;Wa3LXX<0XSUy-K>*fWTcL6SRs-g!XK{J2_R7G3u~aVg zk#qQOrqI6NFB~N*{@uC%U)|RKpT(MgI-vi>4~(O&xY7EQjrkRbpV&2|mcZ-EIa!p{ zeA(EDUcV8#&=dvrUpMYCVI8`nj zXXLCTk7#w!K{pMgBv&RtaHPGb%%tJGuj}Ea+@g7GUX)XsMk>KiArKF1j>K(6)^o}5 z+pn-I^b3%*>y`T(;|V@N=k|}Rxh;doCDU@p!OFz0t~b(izyc2;H^T!~h)!RwdhRhd zLpsJ(4H&w2!kBx_yZz?7Jbd`_NeMxmGh`tR6ce<6O~ENF$2vqvpU^lGb(C~?Ex@Rt z1#oZri24T#7>(N93^FTCjNn`TLp?hz6IYP)mwP{%Ohnuft(6y`cs8FG|EQSSD!|7u z8_v!`BF8sEhZADlzA`{WFEW@oPH>&_hE*kZ-~e478*g@27i>ODvOW%if#R(^pqh(3 z$;fA5Yie*)etwq|Qw)lBm@uM9I`Ux%we7617#b3K+=55d!8QoEydV?l%eVr-elEa9SHp65@ApK>4*d9VC`6?cYrMU^;C%k4ovCdiZ4K<#FmX+ z8|bL&#|3w8JZU?M7>4F(HIVpNBFd`G(TOc?7t8ad0naw(V8UI%ewrsJ7C_`nocF z>iA)G3~USsYtgY0=<$fC?|IwzxWW&IhW(IS z_1jdrl`f1!YUpc;--}ZQi;K_NX`i63hOl{4z9%*LA(fIX0++NN1gr#f)+66Grv7i z9S1w1{cfWs@8V4Jq|FfsvWsHQ&?sw;$c6@vsRXD$P51)%xIMxrL%3sDDfg(Gzgzwy zY?&9o8e?Q)P5uLaQh=X>5@kAy3*c+ra*YX~Ocf=$rgY`fv~UyrF~+|?%=Qb$%2;u# zBJS;%~_iP*U6RdC-F`HFTec3#>oZm*)Xv-Frc3n+c7_ZAR>z$Or>&h+LR#q>}Dm6nB@c@ptp6yaNXH0VH~@d>FSY6@mc zOkdAeONF%u6V++~Q*C#*lZ@k3?sqSONs{n!V!xE~HuROwpl(_gBZ`}GFIYAWD2Lr= zNDE2@Lf9jos&vWvfz%`lNXoOe-+0(5CS%@+i5o*rUXv0V5ITwv-+O;SF}z|5?1Wse z1|HjVYPwYJ{mM1s>0>CN`}P-Bhe(;9MxjF^(%kW_Z2}l_$H@TO&)+HK1EWIV@##%o zBVLIfNN)v0W8Ln*R@7YI36VnxCYf@t|JZtbgx3WS_Sl{Vq_a%&)F`0wpoD?uE!txr z%NsLpLvK%Jk{}Yi5t5T~;(J21f;u_|s29!_IIotuJgfvHU;^-vP>(`N_a{{c(Ptc% z&Z98kD&m%pW6@YewGWSWU7PBl#%4cKRhoYk;n2)TZWdhYh23f^iab~)gV{vYnSm5> z&x_AtOinh_$KVck!0ld=SoH7C6-jj7NYOeEBGWfH7P3AM@=zgn8O>P=#|`s!W>jJT zT{lXUC}R9|9e2;`DZMnMD9IXbMbbir9VGe-|{!s4fj6pTGk)@S`;L z*$NKBunMB^l!=$_gBWS^x5pRsu)eW^Jvne?lBT!XiKB!;9LTT^cHa)vd^&b%gbsho zi@%mB)JQ)%WX)_V*Q1MUV4RQiiILQkoh!~#$`zoBd_v7$7`$`FCG2QTgn!R`aPql? z`F!GY!E~MYhWrSp2(+6`p+cA{ZIX1x(D^6-;zU zz>UB!*-RP+c7vH0Y7`aztUYjDc8gJma85)ic#u~#T$&A*gT!$b=|7TTy|P9lJ1G3J zk+dAL58Px_1$AY?(017Z!y%jNgJrjNMFaS_k$Pq6XD>!F@+!5Osttn>DjWP zErD$6Pll`#4~V2H3&TL(R;0ugFd`F&LU~SxNS^&vl?CF*CRAW8Jj(oXn>5qkq zR`|MckN&S(06{IqdRoig*R*lSvAfvh)h*45FY(d-MHCdMysO^LNS%6%$oQo;GxIM3 zW8<9mlC?R0Enl+6FWLN4X%8W!mu%cV(ZLvt<^CH(2HKcdi|PK=Fwb*%ji4)4P8IUBFuWwuk71Qs_p)B%4J_Ft z6IvG8;0L1p0QU8DUa`Y<@VO0FyG=qF(NE&azvq+C0c&ZzQdS=^dG=1nA^ztmT-$WD znKCY7@ErQ-tV@CCq~Uy8ssNu9q|Wt~X};;!B4H5)VXsVeQ;_x-_v5{&=JOXT;+VwH zkwc|M^-oV=5}GC>|6E0ohl(&XZKVz??g zl|Lq2*GJsqZ4IgdRp1TmU%%8bDFA>X(mt1cc*eNcMH9(=9TfHQW>N6j(Zv@}6tWfBx(f0l!C6k)Hgor} zo!@M)0!M8p(>>0Kabsuh82fU#j6$xg8o(-pqJ%71Co>pDm#L)P?M~&Gd+l@Ps9;HB zcvQi0KK`^>Mh4e_?f2QqG_+9BB&M)Y3scbY1g!|wLnp<+aQ{({g4~O*qnk9Jt?Ma1 z9@>x?Te1y7^#fx`2kCkgM2J>kCo~}sa|qzc{rEb2@UlA#C(1aS)izal7)KU0AdIe-$CbnsAGpOqnyX` zKKbcEXL_O}4JZl`Z2Z9*hO z^l&CmCZy$e>WZ7K-7EjA#Q9V>Hkzb%n~wrt^$xIOWx{^hR-zDx7s11%V||6kyu{d= zOfk4|TSm~RlZN?TM;5;c`i7N)VslgXtQ;?4>;6Mn0JjEK_ioFV8Lh46m8!TPPET@a zafED`Q-#mM_!BG8A=`J7&J<^_c;nFX%3{0zH7Y*5JkCM^EK?W)q2LKB`uFLS__}-k zYpFVQdR>Qi4s&JV_T!Td*w?nMVcAD%JS-t?X zS!MX&BxAAvZx-19a}u7?zOdb7Px!_o_zvW8xv?>dUvxyoNHa>9q+#_;A9M{JxFj;` zz};}Qca2@h*51+eHA3Bi7q40-N#(zce$<6(&-KnXz zsaaX8F-70l;+>|&b6qjLQDJk7%<;CQ!d-HcS_)vj4yfj>D}i^SJ8>EZTPI1GMS zK>X>SH08^RJB3%B%kw(JYm`|ctE2VX+udN%3t=a5U!&UQ)3*P}~EF5_b`7g>s`vWPi7p2jSdXICZqM(7cf z0^N1$423!l&p^%6y?WEAkA_0KTc?*AV{>cZ^TlPXqylZds-ys#+M|Y27ZUH2rj`v2iw=J=DlYdU$62xx;dCYkH(uHVGqoaLA!{RIhID zZf`Lg_)D)*hAD3jaI+9k&4PMgz8Ltoi&e0mojz^`+>tR2wbR69W9q4gYL^w*)gs5z;IQ53SUROGq+$<%a>DhEY@{}$eN^tOiQ0J!ynt4n=ZjAGgo-xJcgW$v_3*_zaRuFi6|>G`eD&=4G-2h@OsaiQ3%oi=+!eo zYK1I8=+)D}YDugQVUCjR_!a&+!SLFsW0IPgiI#e}2CB9jfVbuB&FjUtNDrqfoKW)> zqbW&`T)2bxoFw#Jx{Qx5p?S%h9#U9wQF?_8z~U2N2|%_$me0uLad;zQJY;G1TMy|BDaBLl+Zq`RXisVO5v&ei_X;5x?Sy3pOYY^HEk-Ks?OAda ztc?dbDZnZ;L<7yRUcK4f5A1Nmz#P5MJ9hv#do6*tQr#Jh=5wnra}M$@@MOh)ODm_1 zoBJJ>wjBYqP|Peo5;OBYoj4fid<#Ji7~!CNc5d1?KqRN;tFgdn1wUO<0nKPu{<4CC z1ZoA{TR{8y7aXFtJeQAl6t)TKudf$a7u5->$5xS_5-AeIF9zV!DSZx0dJ~@nciyLk z0YVn|09S!qWh1#x`>4G8Z&6{b9!M!F;2>_n2Y7Z#zfaAZG|$iiPHacwoBiPpgwc&a z_eI@6-&EFQmw<{1a;|%6^cs%9fQm8U{*6LGS$bg~5QEKFGP+(!YG}TmbWm0F%TPa- zp~MW>RDnLch(npGLk9KTWph5>1!ox0bK_~lerb7o&_8{fgSrMaHdV%HT%m-1{=Qf_ zDBh^i1}V9E^a3OKS&xQ&8aq(Z1KR*65-={K7bQSxbU`dmAcB~W3gYUK^$L_SbnTTt z0$R&ze;$El(hVdZVs+2nAVwgm_J~<%Y@S4jRD)P(te;tk)STFqA`L}|R6=uud$i9OMiU!0bIX-j{I#!-%xsYRG*a-Rk?9S@1Cz@L7P+zoT@ho7i;$HFy0k zsh@!RSR%TOO&N#{S=6c`kD6U#ioP$LfUsDUk;%2MaOD z3KX+GhuDeUV$P@4V}FL5a-K37=mvVT@}d1yP}&?^!IVGEZFDYp7s7kJcQ+x`$#~5> zO%$nXz&RST!jFD=%cC;p%OQ^dG?z*XT2o-=%u`i;fQC)Ts{QMCZ17Ep*y?APC&(ao z3<58$^VDD)2m|HVCdZnO&U*Ju_LD8yxxAfy%yRJT>q0R4Qo+3uH_<+vmU>?mS!7p_ z|LyY~z@3`7o5kQRtD)G%%(^AW4M6c>EkiZgS0h~b-B8bDdQw_*^pDDDib^Hr%)qkY zFN*qA=woz->A8z#QEnQO#XiW4bo30_fcCAY$~9o*OU= z8cE*%+gmt0a1Wa4iA$=A5026kt~ZANTCFA>DE0~!rowLjGowBT+6GY2mrjL0X}yd+NESo(ck{6%53 zs}5KRk%^&2#!lstISQjW7><6<)$DJ|900gNJDSkdB#Kp3b{S@49(gXLwz@cIWr#qg z>7TNg9xGgDH8Db$Ht|?e)GR#F1_+cgvwKbfr?;m0(tNN_uIfljM~&xVox3M?vt0^i zy*+n%C2RR4)Nk!9)sH$acOAsLcAk?r>+e_!#F?aT(kxJyX$};+Rd>i=nmToEF-69d z_~R?9<#SzJ$`_7QI%(5FH%lD$IzXNYm3nMeL$v`0@n!)To;s=ZCuoKd5ywMu7e?WD zf>rCxA|O70>-ibdYy?b7wY74XToIzFu?HxpCnK>a*9Gq}SW$3akwc?$WVxwa*?Un5 z>)R7DZDukYp>TU@PwtAQWC}vxrc{BKSvZ`dtQuI34+X4t>A|`&^PaHkqlaQ2`Ca+6 zOzE4{BwG3^FJC-3Gdw#&iqSOh>}LPwxpTv3Fm-;@`yC^<{Gnuq51)=a*8ip_b6t{U zS9-D$NWzg?#L?Ax%SrD6wQDe{lAh>mCC$WM>2qerp5AGW*rUJ1Z-yqT*Uv8Cg|V}M+j~M+ z(&+>rOrgn^U9p0J>Hq?qCZ=bMyADiMsPpaYLLcdbmYuvQefcS#y|kGdrdYHk{zLEi zMyp>JFgxlXeck>iS6|A#B{XB% zyDh+y`Cj0s8B(-pk5}}iP5k^UiSq=3Oi>B{qg>3uQieze6|zRg_@^lzQn+WJ$C0Cd zR>t~P;dmC&CHtGsu;pg0ytCQS(xo5bhz>hDlH%RosN+bq=%{%Aq?_>|NT&p~QeG7& zfm>y)V(!B{2}Ux@IU%nJhyAYFE1UQEJVksWe;)01ZG%qmtMhc;dLSJ>J>vm^@$zqt z;Q|4?%yX56b7;N82htO0?uGBQph4Z{NfW=q*o?{k3-DZlC9ta%$Ba(=N) z?d38l!921gkK@Q4(D&B@ilGMWR_<@2iNy(_$K^XLVlz zMx-Uo#mPviZZ(vjo)9G*K>3cITlYkY<0zDNBcbed%^ZkuDzd93F;VPXCb3uq$L0Oo zbs^W$BgFbpkeg=!h~zba!7GFh#HW|cC_HR{iXF(XFT-bS>Xa-VssTv8h@z?^qs7cU z?DbW38;nN+b2>2?VfDLUG=#cw2{5cBWV*O2l~&JDTgQx}zO=}4t)K3`b8AG*#6EG9 zjGZ%HfW>2i#L`tx)=X#p9FIxkqDOS9I;^upr4UE6)90K>AKl=9Cla2u{KZq2S_{6* z8Yeo#aby4zx*ygR;!4Q6to&dr`t%~&d585k)2qNg0RRkD$UVh-PEO8*I<9S^AN(XO z=yjfxO-mtgBAvzNC{uf*p4Q(&E6uvMcv54ApeE3EDX=zGd3-??p?)X-6x2Mf!&s}5 zd6#grYCuNJ@oYf8vp2WCH;-#=75&-x8YeP=CSe9uLv&nepH&?Ho3!}Sp(t+L><%zl zfhPjYxY;6S>o>56!`S;&&6^PITLdvyCHJi*Ft3)|+Zz6(_z%s|7#f57?P#OGWciCg z5q2t8 zJK2ibT^j~SmQ%qN%-?9IgCc4B0fh_9Bw7M4W+E^z2uQY#=((`I5|%VwoKm&Hz(IjI z<;fh}ZH+FzEpSHM;9)8hl$rRa8wNb-!EiL6l86|e%h9Mg$vp&VtGmOS)o<|IWPGVY zHj_Vneb&0!Yc_Z+1gOXy2=n<7u(SQbK-dW&A;6;B&#<=e6@XuRqg&l_X@g&x@yqqQ z4@R$=qErM1RH;k2wxhKM$I^>)wru=&FBR9kb$?ms8L}7_Nbp7YEFTTdz*0@%%<5x% zoM8c=x5eCOGT&+s8hEy$#CB!wy$^^IE1Xk6e?j5WMOJe(igTx02--VX0!fK&aWm%F zfZ)v&7&*dUe^dW4POY6*kn?gxaF= z_dSKRqxWJL3X*=1_mcEDHLMbZ;B~Ax!_qydl$K*D$G(5=!uGzf<{ccA?G2T0fzz(0 z--(c^gzY9yis7gKph7ju_^q7R@OobMsU7JtHb*XpF1%t%xgP9*j?0E`KXm#K>|#g#jb|@E8~rinKe=EhN#?k-GSpP7UKvi1!f~l7nU|@*T}FF-`UvpM zRsT+VkYAIyKHrdFY5#FOO`Dk627?Z>HX~=de&%?x$DcBQ6JqwZ=j2J@w>OklW#ar> zdjV#xsClxr>L;3cXkZnYpZ&MOe$sdseKab>IBzq1qpEl0fs$r5o})@u-NhWdhLh6- zVH$OAKUv@Rh4$`-+z#Xq0>az~u78#Z{O^?I{)JooWhh6-$^4ZNWTaywWM*KeWBp$V z%UQU%IQ%7<|6h`Ut`0W#h9-2*t_}|NPA<-#&Mv05|IBob{U3bYzGVFWLwoMu2*)y( zcGmPtUle3*LdJg$n}vmr^DBAzWje?77c=^c)y@3B$zlFm+%A^3rgWCh^y0EA|F@*& z-|Uo)?Ctb=KR4$gAmoC#FXk_=->9HEIR&wO59T~KrNWl28pxEq`6z7}bu`(M zKRu}Linf2()TL)%d8ukAONCBUIH?XdQz13q^HJG~kC)(U!y!;)(((D(F7>@|1FK z(;K>NgcSCeA}C&QP%Np6nfx-N#|Qf|qbIaP1HK|*z`eTj0n^WvCO}c@lu9NP$PC=p z91ET`Gd|A1^;dAZEp6fNkghj}7N(?@F!vKdW;2vbRJHsD3@nUFF64Ku{G662QM_V} z#m!mR$o_-Hcr}ZLpGd@S?k2=+>Qec+Iv2Usr_d?yr$Y$-ZdWqXV^CT4&Kv9xA}Rlh zbC3>>ot)O&mKP#qU4+w`6s}vU_44%SetSP>r-3Z>(^nq*A8xBzT9DPdw*DW&BTSda zTZx34k3kt$3%x3c&`{eBc-V?r!g>g2F}SVD?PL-Uo~jfVXAM7;h8HYc9of;9>|t)T z{VTTa-%it|cOpbrg+f;}H;e6=WgcSXo_Au2<|D+XPRX_H2g6CSJ)_{te z?R)>eN`2$axA)-OueazM({?-Gx)seavF^Um3`Ven&{O~m(88_t{d$qOGJMj-D#q_p zT0R=bdnlZU%6RsBYlBL>**sP)6~DgzsW&n!6jmNzL&ZwZJI&)=XW{!#8ooP}6| zdCcX{d{WYWEK0aP9$i`tTi zQq)R)y9?)*=89_gK@YGkE$-82T7<97UPeT}2h2iOc8YOl!kGTYZR)VM^`13GpF!)M zrOa`X4O+!s*a2=!vTctj$e1iZ00u?d()gRKNqJ;rhh-5XqNo+V0#ObdbWx!=@o5;@ zyfB&0OxJDlDJJwv_GUYAj1yWTLJhKbaYMBz7yX=$T?osr1{UH;OA;IA4~5^%%TEkE zG)Mx_$C#0r$&kO<-=-w;HWK%dzq1Y1sLPc^>xf+AG&-Vz$ElK*8q3t6tL2tCx*C5o ze`tHmoK&B2ek{-SbNN)@2q$rjOQyBNI>Pn&FpTmiR!Dp%2R2Rc#}+MhMMD9Jf{)w{ zEq>A^8ThFR8nv8SDH2njuuM6wEH>kSYD9i5<90)P9aECAKAc@#LQwLNM%?Nzotz!a z`GC*YJy__b1}q;cSagj_4x;eJ0hKUZ59jOC?6w0;?zJ1@afw5}33I=s{vbQF?g~43 zJOLh}OTiX&43pKrYx8ufj;bI*(&2~7o!p_uHYgRSspV*x(Y5lKh7TgC*Dqq=gWx10 zE>K1N)5}p^`gah_h;$zLv+o!&KNs@I=}@3aIenLE|KhH4~UT=Dxd1+n(C zF);7lyFCo~w_P-k-TI>!5W4 z4A#bsm85a$N|#GBJqm-J$Ju|zFKJLhWCoW((L;--q;XVaW0+z))thsVa)uNTQC~A4 zs)v8h)Pg%QZSz|K1FQ13=3)t*94_VToOYoP1>$BEnJyA8#74~m5_sT2X~iW7XFB&% z5YZuaRU>(Y`!U^X=!>d+o^jFC?iH$$rs_Ql>RH=GY3W5!#q`Pj6yAzlw+I5~$Msm` zb0I?RAbf=cUC=B$e6Gv6VDG2>b0{_hLItv3{2dU#KK%?B^mV8!&Zs?yR${fW#TZk# z!eF0S{pdVqoAOhh*;Zv{uorDk2a0|e6PnR;fT`O@sg)QbVOa01Ck;?5B7#KyJah96 zN~VklLZTf#4`c>YK9YD*Uezpsq}0fa#?(M{Hkb zq6cNe(lA(}YvG+UiAGN|F#S?6epj498_yES&qw2uI+k+pPL*2oH>B8s{^-m!>m){4 zj0DpFsfYW}7M~AXDEC|mwkZ)I>Wn{cg3XR_oQuEl4ii$*gx6wAR8m~}dAz37<=7zC zM3z*fC@9Aev}Ic%NZV_W7IYItO-;pP%EBzg1<3;*(k(+-_T@sKb4BVf#m)1WTu=+$ z6!p8zsq=k0MriK-$7<(|bE76MX0sE5@QkGSNMW|&LC7spfJMephr$9b5`~73a1?CS zEMD#4a+e`R;2bzdtCP3Y$wcaB4bno(#f2?DzpPQ~K`g2yD5T2vU1NlDTN{1#)EHHx zuOdRH^&N*f%~84>SBjpE-Vj;1S(Oxfsz^bIZ9Ic-{;{eSqACBS*N&1mh9X6ywWen= z!M?z6v(0l!R7!DoIeeK5QB+C!Y>`Mbcw4J959lQ4GQ#Ky_+dIhu87fME-G*YqfG-0 ze^9|fZE_@v9_-c2)8|OJ3-d766yy_O66KWyG+>2av-e08az6X3T=LSoQ{Yo`^@)(I zYE02imTrWX4f+#(qNtE|jM2$2BhgTR9Y;dzEbGNh%?1k7^EQ<3u^Gc+J_1(G0=ShC zch+y5b;ud9zzU#{=M*@JgalA6fL=E9pAz1M;zRgVQi?wUb9u5tog2CB$91M=Cipq5 zFfy!b>58oZ1=o32Xd4huKC{Cw^6F+(}FGbx%ZgskC@fa-DmI&fa+3&m^D zdm~JF-Ps2yZ)Wp8SB4{5h8Bo&1jb1Z@75V}TrKhi6`YG>UY7c*lh24)SMimUd(H$| zZySMD-$f^nTbO-cXcyPW8+22>VpAs4e1Bdo9lIe~T|DFEX11oaB`R?DSko+QD)8on z@Mf4}NCZjO*&ASI{Col5dVdf-dDBPR%$^csG3b<&wQ#pG z=LHm1qx4t~trX^~zpQUUITS~Ds+MRX1xFlyx6@O0HqH%SGfuPR zcBC^nPO_z1@YldgVQ%f2XK=xviltMT+GTpU;_d4 zq|7~X0S-S=H&9$B3tHd+NOQWvih5D)>o#r2upOKI;vQUtY)u{?(lwDEHL zhKBlP6dn~N`NS*~w5x+eR${-#SoR7z0VS9Lg}gU<-}~SyUyR&>psUd=#$lP3o#llf zuwg8WP+Ozwx&)-*iBw2}A$dATU23WxAW_d*Sl-3B4>*x{52CCT=--pj$aA-ki<%a& z$KM7jD^aXUeKb2K)P1cfhwQRK{GzAIE604kJty(yuZTA- z-&~Re(5==O*sTZ~3pVy!pjk+Wh0K-rLNb`oYD@j#jlfF^Wjlqs=18dcBk`k|W*$Xm z|2atV2reN8U9J3MBXMCbg1k5mrkHqEgJ7h!h@Br^P~;J&PoOdI(*4l-9n_m_)e$DZ z8$ahu7z0rtovZ6=L?l|c=6(Kb#AZYF?`fzV9@)}Yu&((XN|t1?*p*VK z_g4;AGE&*{E-mcACDqo$;b}GP(*xn6MJ{x=e*cs&U!8fHe3s|V;NF`#Ks)bq)>A4e zg{ltEW?9p_X=H!xJZ9MMw*sY%5%X2Fbaz#oxL_a-zN>f%{83}L|Jz;O_ck5=lwU)i zWQ!A{YWiNg1#x$mT+F5YvQV32Y6B;))55avk3YyJ?MR2%_uLjQvugO?`N+?i(|m_! zN$AgB+R+-a2tv--2S_XGL`_LY50qJ*Uj5kjnU$x%;x% zCtekAWe74)2(g}_YNo0wIdLL#Cu9>RkrTv7fFD!zIvY*G7x1r%ej?~t?92X>=lNY?BWbA83~wOSBa7MGEN&<__u}^4wtk}b`udLL_xA%b-N4#8&Mn_BAu6}y zJLmdMGs&)lmAfAr`%ZtjWYvy8_Cd3Cvx5ot661ZIqZonsAP2osQGUt~7j^rCta!Mv z5ybyc$Bc-4KKBS2BqlIGMA~OY3?+glX6VMS-rN!~cqg0!v36x=cE21hs>Ki3>V4bu zaG{iYwdV0!Ig_V7=|?9n>&LXdV=e)* zSN8>qXbg~$)(2u9g9Dgw{N)a4_$F^Q;u)Iz2}vNzVW71{#AD;KuvBL?wtnCi5j>9r z6yw9)tO}j(SPO1aMk&Hv@^% zEi%-X0SUZoVSf*7A{|H+kLWcCFlxsYHY6Mzu!vuIHw&cVyzLHaZQwL0jhM?~xETeB zVQpdojR@wTE;wIBkTPoy+KI6GF-p%hQi2czA~56HgO<9D!9R4d}U_>S)+;lpKdfLCVJ2cmT0U2mKv54CmS zL)yD(J&?q`w?#dA4>r_a>4iVj@_@l*EZuEjFQ3!`#+^nSY~KhZi?iF9Kfz1aFS%MI z2x;Z#_o!P3JkpQl9ovdSQun+(>k>L7a1aub%}3Up)~FOA#x|zR(wYx@sk>CPQTMRp z+|DIrvplYFwL;LVy_e~2HL!vDk@^T@NHkq1JuJc9xKr5P6t`9#<}s7hA(5>P13Ees z?x!WA%sROVTc6pHRK-h504bU@hCH0}nlx6O4fSep9d(6HHB1jOALSd%>u(e^1Wx5r zu)z|#x4zYV(0kWw5bk1%>x;_T-eiCgP&>kJkVdGpe0#wWocLlB{RysuXGqR3b_{st zyVlZq_l9}sykd4H2vfF(t2*ZxC-o22sHaRCDXs~}iltp8K%FDW5NTOWG?`RND+kvb#VVkkyG2W1K#90Ijt?#Wra8j3Qin#N`#dhvg*1jR?$(dDeYKoqK0@c zE@hWwDz4tx&`}LjcU6$uxn}0A$lYCu)SIprOf6i)>jax*Dbuo<8g;dGe0b=0TT@FG zNv(yofEI*qi{?GGCp`PSbL(91kjFa}?&GpUn++?hF3)gFJ?TYBOkyGH%}9RK8OXDx ziw%r}%W|0-4gU8C&@%dC0caVcz_5FVceqtA1*_eMs@PPsod-%wLWv(+lNFmcmOW8Oz4NiG*r-FM8IEYgBG|pb$UUH&~En~fG7~qQ8 zR0FEV?__>2@#;S|CU3ky?>>0Bv_funZEWb%h^4Ws?`=PBG&nsBU#vK}HNBd$wC2R2 zw;Z@UHnwS$2@}+a?NvT+>Rnx25k7TwqJ<{Ds59V;2vYf*gCQKMuW5I`)27?mcXF?7 zuJW1%@;JJ6b`I`~D)t1$gexMOSYi)pIy}hg-F~pZknx*%_lo$BpW0uxwD=K#_VWid z=r^~-nOJ|WZfem#2x2_He34DbxYMqFIJf=f-%>=DsC-Y#@#2Db=5_e4+p3Yg^``8v zlNv4igYP6xGDH&DVG{=--UAsIVNQ^f;NqvtmF=(omHf6jf3f}?6GR_OCq50miEtrU zyZdX$t4E?}h~Almy1>>uDP6B}KiV)Jg7l$@g%=A4CKJuMiv@-_2>$(VGkf=z;1ugX zPDr6xOg$}%cX8*oq(!A7bjT`0KY|57_lbrY;u2?tB3_DRa z%L5N1wRISfW=eDm#ffuc;oz(~2W^_SB%BI6)^5n8z<=PM+`2g?KL^Fbuio7~+Rxuu zo~2B(G2vp<6+15d-kFqUSyMDc+e51}@BU}VfM8~y*uwlJYi1!s1Fzij`SG=}?TBICLE*+s})=B+$YEB039ab@tiHTT}b zfp1-bT~R)p^mn;DZpJxuCz(g_AC7%6L%TKZnX#&g`@&PODTovJJqDjzLgcP0Tsmhi( z!Ui%S0=Z#~yNvXC!^VZPWi#Q>&&yB4D1Iw5)zx zlAGHH`)QDziM3CF$B5XpY!~RjMkGgnsU`qxCx>}8q&xaZOZ+Zwog{9#ibv_=b7G8H!KmRzVyD(rO@**;f{KKxQY8$za{x`J zt_Dgr8iOzK?nkKfb74<)oxU7^x+N@M^Y{EHh-L`I9(Ad1*Pi(nmt08l#@LKzDMTa? zhUbmIs?DWfu_b&hCbcFmB6*?~XW1dDu$NrOod@15`TY8q7FN8A&KUXm%?`Aaaw)@F zV{W@2=2=#g(P0fQcoG{G;Uhxj;ysZ2rD+Q{(b{>X~ED=Aj z3=t9WEs~}UoGFZbQDx>WV>w`jxKUFSFGlNfv7b`0N`IdUD<=MmoH>{U-q%^s7))f% zg(_P0Nh>5=9#cv~x+O2Ta^%wcF z-|OTyJ8048p4q*>bD5-xl?0XOg0`y~r*K_^keW5tsk&z^uYB(@=-~S+s3*%EVo|H#oX`%g{fMNAb=G8H8`R)knOJ1d}1hvf~Az zwgIm3(YtV?%eqi7zB5Xx)k~5}AT%qN#2u=re$vNL(*6{;6MQ25Wb(YMZ>T?4%ot6Z zH3FdbTfsRuv*17qx{{MElldErOa(5}Zt$y2Vw!lA=_%b!!Uh+FX;t<_;H-mZfobBD zBzycY_}Q$xzJ(;11Sd58@I>jt`N*7P+p{S6thBm=_53*6z#(P@V#o2ZT8@+deFq)^Uz zROL!?LN#xCM0V*qvcm?4HWpj3xL#72vr8F7>D>hC&Lh^vIpGGt?Fe9996p{%m0;_t z;+B)MT<>d!v$x+gv?NO#S@jnT+rDGrtjK(CuV9rY&}y;#&a2IR45bC!Vv)sG zX|kl>yHINtLhHSGwOJEGI5N!h`Z$)EhgVX^xV`WyZ32O|O23uSQRI`W+ckho1%a zu}(BJcRR6E=e)ZL9-q_p>QAC14v$wz!1heN#&>}I?C}^z>>*s1(jI@^N>5jcJ$S}P z4MVhQAJF9kir#ZjhiX3L+*vDmpz{R*yviT+5mCaQN44#acG-B0eRgZU5al|$g-*h zGis_G1ys2sB=;O);^HRXuv;~VOx4`x&KJK~pb6vk;QDu>(-Ot%jiw1ugk8e2TBn=x z5ti~#Nnk~nyoPv{ZC9Lw|{Hk)Js?)A+A*Rl>P?_tS!T zU3oaG;s-sQ>$~=Jtv<-gc@#$w5|_UlyRO zJE22A1ziJ5C(BHAVyHRP;N@9RZN_kKTZI%Fo>5HV)nXsMYX3fhHG8dBIwKO0G188~ zDl4925BpG@=mf}e$&!wGu=BR@r@xR9%I<+DB(ani3WdBhxU0UP;Xtv~mXejmN6V^V zt=G#>XRyjj!mcT#eZh0B_i@tMyH0Ziq~DGwy>-fC!;;Thn&%l zBav+|xDV4atO@5PW}=t2Nu@H022%hP(@;TU6csC12^Km$z6_jgj2X3{8+7+rN@U3T z4k)n1Bcl)NQ~?M>flQp;E8oRSV6(jyPu2-gncI0ATZJLG?t)neVwMos?ex=uIS2~J+_`YJVP*xroLPHo9V0UKjON&hlbaq;tz2(} zfpkO_9$cAF@uEt~gNl!}vD#OY(u=qUZgZlMHg|Lf*KxFA#k6GXDbvjzEno-tls4>^ zL@dROS4HP_{5S-&@tD+i;g1P^9)+Q$-y_R-w9oGKY@XQ3n zy@+6}yLE9P)`sIxh~W5XrHw&@UJpVtoQaD3M$t(JE!*8OGKe zw!sGlVj#IcNc`?bB9CDqv2L7~dUNepQ~qSNNq}EM_r{RF!{DGoc~HoMQ;SK&xI}Un(IP0 zj8C1;Omyf$f}I37G_F~*Yc-Yvg+2b9e`rd@^k=J}eY~!<_4*t!p*Q;!_L^A&ffQle zZ?ZpLe$rk5Q%sP;<*lecDmFj@j{}oZ^2^rRAWctS!nyTjjH=Z%mx`28WvL3#pW+Yg2l|JFZV&_%9?gwg1`s`2S2wiHU=W z?Z5g(4B}eLO?pULZe zdVKFp40*8hzcg%&&)hGhjTI$}L}?_Jo4He#m@zVHrI!ktdEGPEo_{+vv-zWKh z%2MUCM_~!C`ZPCWu&DNYC!H#nhJe`od6mvtw{Bqzc$L^^Kk%~Te@E)`P8I3EZe!6pio?X^r$I8<)lyNBEfVIAekR5L-^ZS#=$t0Do zK|HREUOKa`(Td~1RTmNnwpq-Icctjx-57_c!c*P?lZn^=V}0YE6>Q20>oY@oS5JrF z9)&aG&<-OC-?te6;EJ9X8N6ILg~0`#dZLc_algXVLIJ zMpCHQ9JUS8Hm|)>$t}5**VAi3>z%lETM2i_kev8(vDZ&8qu|>{dJb*&J+cBPbu~a2 zE`)r#6K>~8S^r%Jyt>E>t$ccUM8-H`M>^Hxew_qxlWLa8!Oy9k-x|t*z{WYiXYIxe2KRzbEsHNm`maa#B>AT6Ci3SKyb}l>A()&8BFus~1`hU>;glb1b z2_k=JI#Z`@&V?(67kkk?HoWnNV*?_|@o% z`{@@56YaMo2+4)V;E@=nzWoG^hlEcE*QuVGY(Y0ip;^d3Hww-^xj%RG3o%&KpEZ(@ z0F#A{49fRZqRIW!geP@8bCsVImlUjN9kHhw9bv+v!lMCrP5>T&78b>lr*4MhrtPuJ zLRO=u8lFz?DQvKqvtnzCv70rNO#`wVj3PZuaCHtmfGzkk)6hh~qqQX{5fhJSz_?t3 z>Lo&LdThFA$>37EPy19?-&1Au)|9)vZ+~@)U7ftObrOH!8 zkzaUdPEjLL>u-**GkWQ=yFYRm)ld9YFjJZp<%*}%M8u=oQ!ex2l(uXejybOEd=qa= zMQeMzSHTq-94W@rqdho1j)O|>n@x0|nL6y^8|p(AZI+`uebO}YU(wShmU&+ulH5dyS|0bzjwQMEsf#DhSc9FPk#lH-UQNP zL?l;bII*}=gc1+JOg~EnM~Xl0f^w*?K3p6he_nihYvR&)kDru#@_Y2yoRT@bs_?~A zkLOC}b#;^#bF#ULWgZcNj~PPbJ#n%%k^2^3jVjC{+Z$_~CsIGTtIsE>zs?+&Ot*){ zz9y3UBW2R~f|`VJr=WL1pMf#R#s-Cz_MDbL1Yz~n5FbwRf#6g zLWMQ8HDbJK7sc9&XDegvFuKAL*t=#xr^pra84%Ma9M-4sn#}P~T|a(WuS<)@mpBru znB}3r?O@pKoEmaCosrCX7PkJG#xm1j?%krQ`WzI6|32j$73liR@lsfeOU($8#3M<$ z{oQ(|YzXq2B`cfttD4S0VR8$}4H(mX-oZ0yaQiRYF7AgXQhlMH%$A2Q7XfzxBn7ep zUVZv)M>DWSaL%G1blWr6|E25v|f`db5*# z@{)a6@eScOvWG3Cj@x(INgN5;%WExUiGY^aC{)$tstTcdd|hz{bUZu;JsdgRo_r;U z^Ek1Ry_Uj)+2%5K#RpBym4~2~%EB4*8HDuZ+hmsaGTtSYcZs;<;Ki^YBRTfeTKYBk z4$sp_!=*L#nt<27b0!x&lu}6lrdb}DQAyv#HmTb4h2Mu_+fCM&s1y}HmIX-U*i<_# zS^(N<^Vu!R?5;%md@{!FD)DmrOcc532p0^dWJqMRPcE>WT~Fy`8amFGpJZ(&C6D2M;f!Idia3L>0ZF zvxYT6-xm*Sj3bYsBz74L2Yr^v(7w0(v>dFp9UeN% z9Eg&W(cwO(Fl&+Hf;;BhrBjMfC&fRdT?b=1!Va%U&I|#5Z`^!}OTi%c#+So8u?V>w z&t=5pKpdnVeOMuuA4P(Qk)T4+KK}liqswpVAkT~*B^LxS+n%o%{A>UX>8CBQCjuND z5$xW+H>&|Jr+j?W9G%N25tDFh=b44?7T&VBc;v__)ctf5%$S1XH0LaP$r~m)}BmfKq2mtm~1N!<)fq?wI{;Lj9MEsZfUmJ=@0MM`1 zR~7x6BJzLK|2hr;6qXMF)Wv_U0fYgN;NTG8V2}_H5KvH%(6Fd*urM&NSjZ>{sCd`} z_;}d3xP+v1|$!4}bs>1Avi$K#+hw2LJ?Lk%E1-#9xi^uL}?`2q+jh1SAwR%+~=; zhyY+95D;Kc5HK*%FStOyU;6=|NMOiBjDp}OiiQxxj;Kt5i3N}(LUp}pN;6la%tlT@ zP|)ZYm{{1~$jB)usaROq*f}`4ghfQf#3dx9lvPyK)HO7X!XqN1lD;RWq^6~3WEK_`m;5L#E3c?;Xl!b3`PJIi*FP{gG(0joHaj=Ju(-6m zvbwXow|{VW^ym2G`sViT{^9ZI`QP!Ldvzi1S_Qy32&Pm2dp}Ct$YnxchnsWAANJCm%AZ+x?vy zMfch+dZ(NyUVYwg>K1r}C(S2t=^|MBe74K`Y25cA54-v&KW%keIey67)<_iKZtq&Y zxBCw7=%bVD6R=BN)skUXU6f1dE>0XSwiXjS!m~80Wm~j$lA3DySeijX5IN}U3~C9B zG*ko~g^D0R8JJgPjjjb3tZ(J+CtCkg>5yqXH=Ba2^%L-<~3lTZe_(uXR%qjsG$sjq0^DH|W*PmDI*mE7ezg%4#i ziPL_7wY>Ew!2c6~SEIf&Sz-ABHCNq2pY^jN3V|s7`=o1Yg)DElcZSwbt6_dG-cX6> z{xHe2g^0|4%MVl(P2=HByiY)W%+?bK`zHWN6QA=}`}aXU+{T~vuQt;iX|~{3Spk^1 zxjC{HvF?K!pMXRj|7|D#PzILs4(SrzF^Km&aI5s|!+>qHu2xrG z=;Pa;{1H+k*E}s+Rk>JmcIRM?X=#3@gI!nKRL()-dJCHs6%?up09+smctao8om(1* z<`Pm{5-@qLDUDvf3{#N%%GKJ)#!h$-gL(QGr-_mx(a?Pw2<4k#4S$q~@BPiqL_kS5 zFPO@4;*;6&V+|MgDh*FrG}VUQUd>!i0$^3zV-0L)xxQcw?7!oE_&))HP@jM+@UQl6 zWa&mc&RlnvEY+|2kQ@jer&2zF1h3B<8Y$Cwa@W~5|KJt>1fc0$qa<+XTK((PGZf^T+aI$X@)=G0Dpf6CR(brjiX*bE1 z=}I2gwk|$(Oz;JfIq})3hJafbC)Y8CQp% z-tsbH1L58+t`bQ5@+V;Ho#OA3a(i|f)cfx+aQ-eOMFHYvp{spk67Vs6OPPm|O!!S1OrFw3B?go+H&sny)w+|eR=exM%POBCLs1;{i0 z8for|{w|Aei$-+!NKIhxD;~9Ct5Z6@ugfJ4;d50A_UxAWRdZU+3yOE#a)ya=v0Oo0fFugzZofe;D7Xt1>Ol zcRYW%N=&1h83zEW_@Cr_===}4|7zt>fWrsvm4EmfM*et>W$Go~dqY99d-6~9b zEPz`*FJ{QeJ7N8(T5XlsIxFMS?AFedshfj#wXl?!Ckb*-%$yfZOtL0e{wnrh1i?kL z!!JDb6L6}YhV5$A$;z3OJmJfCagY4q;q-?&J1&r3(DLH|fn`gk+4467fv8k_S*vlgytPM=GDY z?O6=J^r}iD|5)_}Mnh?h-HipmRqUL*r)7Jf);>iy%5}OBhYJvVt3Y_F;Xk?+{Oa{e z{;}%UaRsQ?YohjCBkbtLIOfkP=$SbBPbRYXelx8(o+rFi-=cgjkko&2<=!VcZS}V` zmsDw<=n-}|=g?^Tb~aU@2|NuQl2=<Q?gezkLF;lylwwfZ1xcKBlsx1*ePHo) z*9IWhJ2lf&e8a$GUEqy@l5lz|r&zvBZ-4S2CqjPXcWtM!rI+`Ka)-aAhFgu(;SY^b zvGFuDa@A@YFWQ5YoR1W`9KOYtRC>xZ-nyux4(1*9*+UGil&5*S9eJvih+WKK0p8!v zn&&%eL;g*KpMb7PvdJ1+*NENb^oB^cpi-i89+Se^WOoFsxdw4t|6)n^-A;PtB#*_- zAx=QV`=R?De*jtvdH8)b|A1CpWq}nN5i49Q3%kWIY!Mcitoc*dPM+3HKdv}-5YXk) zOH?WWlIL~JHarw3>L#6?9YgFH{>uuXPk$&3oR7uu+*L#xbaP~-P&d4*WEOh}(iv0f& z_m*LCEls275C|k_Ah;(G2o~IBAPE+n;2MIvd%_?gNN|F?ySuvwcXxO9;VhE9ck+Jk z`<;8f`<&|)U&%&{=+!IH(c_IDdKwsDFj{@@0e zipS=^>hyFTi&wrlc(ue`_zdH&s_F@qm&uV2F=hDwZ(fAyN&277bLQ2W z%y|Yi`GfK3Qsu)jYN`k-oB9`wDaIuaABKH*S9Q!!tttzDfx=|w9r40G*i{luW=7FP zab~cPxD;mX&_Q1bXOO3hnbX)#RA%`BtDJOW(ZjEgcu=d(Sz#|!<&DLr&36tq$%SLS zzTTNLDwN*#Zvh?k1aJ2`xikqi@e`gEnOd2aZhsSdLmM7S`*ngrR?$!vhDSd^rLlhS zlumH3V5KM;Cwd861Y2ZsR7S~6*CgkGYKF!ooMNIWrs;Wdqhnad*Rrk@zZq2wiR?B^ zyLy#eWWt1{nfG9-?$Cj2Ma@J*lF5C0mO~F)+CA~q)hOl;*18fuoxwtBc&refIpWFy zjv*mOGmt3Xw#(@SSmg&B*Y_@_H|ExG6r{-3edIl62&Qx8E( z^35pRpOV@!YEu$bVXaREHun;=9Cmz0nOzyCbxjsgG~~O$Vve9y#f%FMOH-nV$q+QD zoI&Wb9IZ39-mx2Fn>QUR&@L+5f=!5nep8+|Za_Kv3@d4TE0z?QujO&Lp?ZRqK;PVt zYaAL=Cwn&YZuZlpSnwq>;&JAO%lXork#$d+dc&t0H}ZwUumX#{FNqn?V&YS8!B?kk zTTqTe>~dwZGOD){V;li(H=ee@uR}^%{Zv@Q%E*Qbf>CelR9UL=mUpj4tTt|r@S7y^ za-L?6)Oei$Rzq^V=FF84zwIh)`>aQZ#klQ=V2IBvMqDp3ru0+b+z=S>T^lwOM3P6O!SGilkY%Z@GS2@ zBzbqBPYU^=i;*ljB^IGP{-v4756wS(tbDmhrngeY=!s=2^>U2mbl4WYOxZ6+4nw4a zqK-h=Rn?HKNIO*<{JvLL}#>ES31Z$kEP)sf|bS=yrjaB42ksNNS{4w>f;(p z5u22JAMW7$!dJ)N_m_QBrNQYkS?3%_O87x=ezF$QTagH`P$dA@%xUH960y7+NXsV=1rW#QRO+7p6Vi_D{ zYe@5?+$~HMepMW(3n(VE0sCX7nK4D zbAIUizGE&!CGQj}GUr)lqefbj$mEGYjTr-&h$<&C1DG;`42Un2UH?D3`Vye8eeOVN zcc46jF`GNk5vJ7D`mMo(i%mfmn`Bp-&4eS=Z--F5e0e&0sKB8M_{ZoJh=xXPNNY44 zvyyHlMK@TI-C2JqS0Zz&agCGwnU^$r;1TBht}!WOtm5|C{2+D6*^Mq)2s>&D=@yorRoG2bE%plI*Jzq2|4Y%#i$5Ia%BTD>arAw%f=|hguYmuspFQZ zyC3tT%(LI5HwO3X;Cujc5gr59B7R`(e)`mGEv;_V!`dQGQq5Dw_wap&w4*`D>9jWJ? zt_{4=yZ-&BRwx!m62*y5C7VWBz)RET{&t>nu)YN*W7fdyG!WO87|`d-xt0L^DY@Yc zJf#a17gNmLW660`Tcfp_@APQ;hDIL8CYp-E7*QqVHcuB&3e|h1khv}Rr>&5NlbH>k zIs+e%HtbJBJn7HMB5qE9>JdMV0icXyn)f|`F0x;1^gx{|Zm-M_5|K{i>F@P#>$fWY zYP!A}lmnOTG_2=9=F{&$i1vShJDFd+2M4~_=h0uf{Wqq+y8gxl&_H=s7x)hinb{;$ zXMfW`e^&RKx_i3+q3&;Jfd2m%x=H>T1ONu9CuiP)j3*)e3c&fv6pGpK8^B+E%D?&~ ze)s*FmjyBY-SuZ1#?CkGUwHeI&%ndS4m^BQ)DgcKAo|a+`>rkOz~9Rh`{2tH5R5fa|h~_1^?XmH#P-Hd1UyX7($NFes27ubTt2L{A=bDx7Fguy^6C? zYpD@U{4WhEIrXkArq3}jc9;X)W3skn3ffEeG3mY@B=II!*qVH- z-&m()=R;c$NVrUH_{=U~?NgTor^$N{_2@o_<BDFX z*7kHJf@)$jWoJOv{w)ayx&0S!GeSgP={C5TBefou)n!CreE%r4GAH&l_GzUHX8QoE zf$cYEZ~7%B#(3p)XOqNNWCV8b2qaV;V70M!p%{l0A!RI-0Zv3QS`(Q!Hnfc&VD}7n zmv~>85yM)3<)1XCE5}F-fz?LlM{pHgDoi@??=CxwkBHZZ9*X11tWqiY%x;~+W98b=LfXXdu&O*Hav$;!?l=V9`c_%(k8xK}XGZaE z(BP)rD%l@D7a6Q=cYq5i61Vx}%3P{X?YxYor-}IZL$UX45M5gQ>$ec+AHw3c%LK>s z9Epz?4<)~En&g5|=)dgf9)5Y+_i~BzfC7|9@pl-xq zu#h{+eawSgqE36PEU(3ej8&7osX1}wJayUrVf?8?joFN2 z2uox~`Hl-wW+5{^8iA79#O5#=|F~jk2a;-TVllSK)8Pu0K|ZQMc}i`Y2mF3JbE>A) z4Gviyy#d$O@=FJ)jGOqTfsrvg>jByfUtlT5x`=@PRbE-1%NARxh;K7V8xg2*r_wHa zfXw3D{#d(ay^$RG;r8oF1H+D`IAUdm7nP>Fq=6_%`D487I-e5HDDid`=xlr0&JL!U z_%?;?R&i;T^T)_g0xl@ARJL2@4ONrQ;_5#g^g;_V!ZEcAIH$+UjlzQ$Hdy@M5quB9 z4w&KarmLSs-QTZYu7Mq(uQ$AMtFuSE6cSv>lb+vHq|cXmZZP8B+m2xLV_sQud|(Wx zJoP&JMc}TY1bXnOEWj#sqE?>Dn6xqwYSx`x>BjU=ST5Uf#ZzYU4RF}N)o|kM9lzf zOvl>RYNd{c&A&!6dy_5qpr#J@eEU)^I$GAjOVXDmI3IOf_EJvU744* zwzD7~JxEyn-hfiY0CMPs0<8;)NN!q%a^tb-if7bE(1RV(56t_+r#XsO#u_Tq%_Y>1 zw5UW#Gz;26xFln)bP_plt68r6E0057#`D)^eN4Q`AR`Nw|9FTjOF)|_U_s8bXM*dC z9AsEz_?iymGmAuPvOp~bV-0V~H0#58ucYb*v4T=AG^*tgRvE7sc6($XD*5s7B&FVTZdi_|ag8e#*P_QbR$RKB-K2gV_P82*?qH}ewaPb$FF|YMLoRJP zSsFrs$H~c8dGerO^Geq6-1X$M+1AAki7b4 zmec#nxQxs7IP68(JAE6U7fFkB5)`?`PqvXwnvZDg_cj^u#MOL0jveJ-F*N`_xEzbW4@CY-64b{@Ih^-wd>7wYWciq67lX-? zK#vJtL@NMIvNE@6F>-7$Pht5w&70cu2TR}{E zHkGo5KyJp#;}mcsXJ3s!Cqdq>J2y<*NzB`wO40nNvy&`7*+X04bQ>;!3i(nQe$kT> zM2O+A06Wg2yfrZUZqO!DWCLBu3UirqIK!#e>$S5|u<5H-aczTDK9Of`A17hS47>R1 z9D617Q}V)&)!X>UgJ;tT94tCWZMS$`>Pul*$5OHcv)T-?(o#~Je7V&aIMnpXwAQ18 zjKhPoAE&`g^9bQJf|e-*;GJV-drWjk=<;iO>)%!HcBoJ6Pp8R95G#?}m)D_3$)(mL z%?4Kn2RMKk30It@ALgjrjp=C9O^<`Oc;dC5=u63%8lu+NpYe@T_am)%c{ zjAavv{(DoXy%l4ueE+WVGn3FLSDzNFkB>SvGBV0Owk)=P>D;!(wGYR$2+|Vpi=Xyc z=PRS$2=NZVu7}4B8)JRq=Q=+}9=p8p64t0+`s)>2$b*ab?nHQxZXRK2+v*rPISz+N z>na}O5@mYIICOxD+MSP8xHle{LQl*x*@yNMA6LjU%q7l?)w@#63SD{GQe1%&Aaw-U zC?_?*s1ft?O#318#K-5?gMSa3-xs`j8>A8H*k0bn! zDg_9UVTav;NGBj9Yet)!a-|8E@GZbmm{~CsHh#p0Ca0z&nxKJ7^}^0W96nF~1k^qM{(kssXqG{&@r8LI#K&%q0QI06_mI0CKjk{RgYRW{{jW-+??y{+W(& zp(ro-OlcLeNC03a`$LT%nlru27vqlLXt&w zbxdS{Zh{fWU$ax7=yk$ScksmmaLU`-NJM@A=Z!x{0))MyAp@B8#atS|=5>!P@IvU6 z+GK@`V-Z?igHR_2>m0R|HSKiLP>t=1^B1t|Ag|Bs*GPE2H)%U9}D=u z1NA>B&i|N=zjf^Y9-kn9j^B&u503vS|6gkQ-*D>BHQmGcKjzfmy8dt4{09~PDBb^7 z?r;8n{{KbiXw2Ugg|tuigljT>)3>8}?F*uz-iN*pz5|Vew~Q5v3&1Nh_giPWD;?^0 zS=8^+ur|OB`3Be_H-rl0i7250K~V4&dd>()MiBG=mupy5BDk4Kj|a7^OYP!X;;X%n zb~t|q!FLPecQ!`yE=yIOCKA-xXCY;M&4JC8gNILnjEDrsJJ2&I3#7SqxM6(`(h2c5 zKBc|`b@xGbdFYQ*ihJ?$*`e4Jad#lTW9XY317HvK$92BwaU!MPjaYHM?4gI`+<8?9k6LHJ66w1xU zPKl5);7tZ_{R2buLdgkobMP19I}m`G7QkHei$damrSP9w|0B#|_m~?H!HCO{MXk;G z<9+Z7xIGZSYkzaye~EUOvL$~93iCRP$GIGw)bkrBxC0^mXC{)!6x`&3OAqGz0(w~V zD(5ehqW^~RCpWLcAgfxp8DF6`cAOcAOMuH-%W(1zB*Ss@(5Bif1wO+df^EN=oy1@N zJ(@yv?XtEJM>lH%9j97@vSPzuKi?{&xiRyXh`^5;;PlVR4G5V4JU*L(Ac|1n$Gj6l za{Fj>D=8Jy`HH0D4)mJU1&BqY>a~IBFlU$iC-E>rTU0e|T&{>z?1;?#NP-lG2B2i$ zmw#QaClVhfhw{h{zz9+}^a56hEvD;Q_^)UNRZP3Hi%pGJ9*E1A-&*XCQ23XnAO;oy zE=(^S2=hIVf)>Fe{a{c87hT8z#vpx&w_y^F@-K&Bdk5}OBD5(4r$4P-b#kFwvAzB++q>M0&wZ;&i z8d^b_CR>nzIo!BxXCB9#55D_reLV83<-}~_(WJ8;)o-c}=43ISK-oOv@QR#Go%t$T zPF8VBE)tIQZ$k`1_w{{6#9^=nXak;@nnm@m%Df78te3aMG$wdRPwq-ZnTSxuYs_zi zUBP8LHA9w4wUR2+zHA}i$8~z1XuP>93L~2G%_{PT2@)u$0)g}_U-$h}V{*G{C0)Ha zzvO7T?W`Btff%?Aj-+Z0iKpB0&r7476G~D)h&)EATzJK`axK5@uO|7tTQqXd?^3Ue z30k*@SKHquQ)_0z9=-LA>NpkM^>RI zCF6^^HMN+XThj3nwj2h?i_&mYk$iZeH@c0s|HXuQlDjL@v?HqmbbI%FSnbP1zKc9` z%gq%GqHf+oe8qCflkCz7FMM7&U744fU71BQpXJXfflb%cIp1{#dq|&2kNk zsQEn0tW-6|(5^jgG*+0{!4MTeV8&XEB1M-YKy)|NF@(vN-PJ1-E}#l8NA|+2uhQ4? z8HJcVJUqC$vW4m_*YS{Dvb`JEm}OFh2-VSS(R0~>W7TxQs#aAsr~5Oq`#*o&s<>4s_w1zlD42AwX=^P z;h?(y6Z-zS|k8>-M^Mv3D-|o6)`Co>* zN^-IJ9cYCH=iY)p)}O*|TJrTHewl~>Y|BSTUWb5f>#v!O5593pJ0BlEY7Fi$QM8sTBY1g=!nf3|6`B9sAYns@ia{7_c~(!g-|NgL zO+r#P7=|_0!X5(x4s-aSX(k>mm0Gn=!#diF|H6G&#NqzIDSUCsb=rGlAw5q z>X9_N7hFqSK?5dqbn6B-q=1tv`F`&RSqIJ5tJJZb?K{w8_z=?+M6MYGIW^~9D+uBT zQwK6-FNp(}q@_Ho%W%5aSE3_Tlt?v3)PWXUXev`>7e47?ws7orT;Z`5wAfR|Js*R+ zrNoIR&)cj>&~5AoKRsJ~NgB0FTRPq8+1C8_#gk8!7+5?{aL<>c3znvld``F>$~3)) z=BMUG+~<%?*=A~cgWY2+95`0+L7VtXT8FcwPr)HJ(sLTi72MOYHob-#pWX~D)K!(0 zmW{Adl#;890{@sHVmVGpM(%_h-3H^;p`>W32W^D4ByzD^$DH@%@(hn#xQ;=(j-)#! zpoyBg)wjsatBmW7Z?#WEO}nv76kbd{gw@PAbB@cN;EuWjRpaFE8>Q$U5{QMIO^qG( z%M7CoK9~~Qw#FBWcO{G^(e_;|>y>&}BZXvKt^%2;2^cz(RG^d zwG^L~p>gq=mv3wh$^Z44flC{qI8jsuY?b8%>IqCk&c(UtAnS6fT8GW~*GV%nk&kma z$ZfAP2}6TE*KK_#d3qu`rd0dwWaOiTm!z@wnfvGOmVuv^N(LX*QbJvQ-Q93ou9ZX-N>%GJ^|(Qdk<@APc{4dCak6#(L=tZq%C5S ziemSR)bYV6Kg362);~V1XPxBCBkt_(+&smZq<>|$n;tKk621h3{wz>BG5&EEiAvU? z(A%%u%~su8!RaOF_S&u~GlL`OWmy;f5`%d={wwSskB%4y4L7kjyBZfVH~kileO`hG_^)n3{3{A_2G^W3cN|~^8@O8k~ zJh9ebT*?uhmng0ng+A-aY;m?EncU4gnLz5Ec6(^|VZk2AZsa6Hp4X zQnKk}R(0snsu0~fvuXS=ucrB%(?RA7MUEE4Z59Z;gTB=0^SWXE%J4PhFa((pX{JZ3 zVo#jT^A(}!rZ}yDjrmCewdCWgl&^iW!QugxFBGp+6>XC*$Xe#`;#K_#BvqADCH$Hd zO#&~T;$wFrD$YM)nO1+d)I8QNJ+epFu)Ltuv_=b7=)^lC9PNSN8{)*{RgdSTIhvYc z`E@?UcqS8)CduGZ)_p@$Uow1>rz&0_k87)He7RDitVZ)h_1WdtqkScYTKmHriP4kQ zJCKj~L9V4pgO#WZfiwLYm`mydcMRCu$@VmMyijRNsGZxc@>-^%)eKWNOq5r6<+D-D zjnV*L7s^&sX4l6pf4UjFw&X8`8$Y=H7M3}lr!!`M!lcfA;Qus{SbWv=X<%KV3qT|KBTeIzwA+7k7^FdSwm)LUQNN%i7DeL$)Fyx-fY@H zIByv7=U+M32mBNXa@+7-`WC2Pl1x4!glV_%VpUbF@{l~#Y*F2=Qb3Y1rZr`b%g!C7 zfZ^p#M7>rxBuWp<-BgipwTdcZxA~IT?Vk8F;fEsQB6qtKvBSoUq+spSMxpadZA}_- zKOnnosaI2KgpcxqZK!XL#wRZ$vhTUYoW?4FK*wu~8QZ0t4hV5r-i>s9$e=mKQ>3yQ zD{^9yPQJPN5u2wo8&a*iG&{S_@Ci9;hTbC17p9NBVMb27h!+$!GmNmO$`c;m#wM#e z4)B<9Ju&Wd8O;Q@Y?RT=<4x3t~_!?!15uoTTAD~1$L3oZ;ct&U4p=ItK*V#g*vu&6}?+@Ij{y_K;h>TGjGg@ZE}8yaRc(nh1ZjN#y7GCI@(CxKQ>i<6#eVh)FI~GqzN6 z)OwLChF%W?^-lCQxv*?fv-x+RR^sO+2XlT`aeHU}>gWojNZgE|hkZexJh+g>$>@^?5|FZ)sGn6cAL)H?D+^t4#f>MPuFpv zu2d(W(NhPOS-#DwrCCZ}>|hLGSn>zLc>P8{4)lE@S~YNo>G#q~#ilbWco@NNLL1>i zr?M|98dcD|$!bRES&FPPZ=*ukj|mA~?fl?jvrcl&y)@BSOzB?_meJG^HsuQvZxXFo zbYJo++HpC{Jkd|{RT22}r1U$1_=(zE3b$o5zelWV=Nh1T<>{T_B)^0Rs}*3QJZW!x zA1YVm{yIecbpTfm2YhJ;kh`ta-SLX@vDlN4%zVd=8&Z{mo3n4w3-Ge=A8n0qwe_Gg<^y>n*pp`d_)j`d0h)mdhC#rihYk2Uc|QWSCXive(J+k8m<=pWsbN15T1Rr=X4G&zMt{A02P*h4>js<%zc^6zZ<7uFA1D9j z-@l^1S+ zU*C!#^CY)UCz`u)+)&5|AeG2Ha5s+quV%toYeO8u8Q;@O$kRSAS6gwvUckxgN^+RL z-*UyZQSCJSm9}*?W@NNr*Pr7K)U!i)2O1Vo81-vl*PICi>J~;f$oOTHWycd=C-it9${f+sf#~wdV zHwMx$5?ax=R#4v2eHIe9t>`q5Y;{$^dNy4+*dQ(-0X|1JX*1d-$sS^;i^;C&U%ezp z*!g*5#72T$K6*%Xn)Ak;=Ch) zY$9dl8Ec;HXG0ygy?iY4YSE}+UOo_#7Looe$;gin z-`u++5jxd87Q@p(+RkQrGChnHk>wb%m2zU;zV zR{tZxoY9dFa%j?Lcgy_Rkd1L`Xv@dQ{Yt4-3Vg^E;Ia9h^@qY)4&7+0j4S-Q9*p%V zi>juIM*6jCq`u4?J2Lnk$d`z^9p&A+%-2bby;XU=@3t0o%qO`u`*0T;fMX0gP&;5k zQQfx|oP?*nH5<6B5?!8z9hy34#JtjGjPzqsND@=$4n%!?%XGd3_GQ`rY%EnjXtT}j zdHk#_gd#Y~+1#vSlb<*O(-85|viw^aPkCIBJe{J@a9Iso@yO0nb-9_iRld+?mol$K zG;|}bys{JgUDu+9;q;?5-Tu($XExf?9+%GJ?;;p_9z}D?EYehR6;cc58^G!JFUDc4 z3x9i8IkcNz=<~V*uIQ^AY&!E$gwVlS;Npb}5v4?Vi4d4Q4EJGuMplkk<|Gf}y9$fQ zRny?gAg$?im_5UfBRiC_O;{@!;#}>;4_bh%M6a|D^j|*l(dQSu7cEzfDb=YA#xV?5 z&9`joH4@8I5g-$$`yo@E5!u}bgA}X38Leu(t=dX&Y>m9dLBWoUu*#1j^?n$?xGJu zFGte19#*iUuzY+{hHZPT8= z@Q^Giu8!51s%b(G)sIb#X99EOEbL>nEhV5TZ*eCnuX^(owqMs4TQ?=aB*6!3ndhh( z1*;@$%uuHe2i7jwAZ)5o!da{BfBPh6zQ~JG_Bh3GrZ51>=6YDfK^~!EtZHKMBF-66 z^S0(q;m4%*cr8PCuEm5*Ky@}x0}(DD8dYNc?}bZiqBt-_ac2WxI|mxo+W3R7X*WOi zVHGk)_EwY1O>ep>%^@8Utu<&{RmXWKZLz(_ef4}LiR>ci9KO7-AcOV}q|biVY_ih z=9d;@dKR=R@dJK&gZiZ{4S`QIEl(ThQw%@fTXLpm~3j(;!Q~$oL}FCqjxx*B^tmDgK#JLvg#=jU5_4#8bUwpbB^WM(N31n zd{cX8TLdCw#zQDQ%M`Nk@DNn$p;`VjsFMW28~?cv9~6nJGLuJkbfcaH9L=uSB6}A< zP;zqHZE)8L=rtrZ}u zJi!~kVvEa~RZ-JWNgY=1TAQx1^{*4uB%>D2%#h(H+y+WNn>iQHzO_U@@6$Hz(k0A! zV%kBzryb~07PavC!M+4^Xq469nV0;i8S=3(I`VT3-xx172-hxSFD5L*{taD{QHWX> zByC!aw>w*0S7N$(-F!9Fw`?nXh%TDnRr`G=0Kg$}R%=U{XaG*}8kEJDbDayjE(g6o~$+e|oqmGPgL~GUdeD zjQKs6R98xxahPu+-+k`UZr<`&%*U8USeSO84~RvAAW9X+U9o@nTL1K9e+>r;fgohU zx-?Wxh$5^jJG*2NR$`1@QjP zvpc&}i9K!X4guk2YW06)qH-@^trvwWtZhoXCf8ErF(+_xKF!*rH=Rtwb;}c#@YN+> zKp%vBaf>~mk;-YC8>a4DU-Zui62_qwApH#PN_Q1AJ#QCXs)nnYc3e}_Xd{0vE6dQh zY8Ma4kPBJCF6X%vt!xV^Lop~A_J>B!<$0Q{pBAbvO?~6Q*zhX_dX_HZ)fLxyLvajl z+ikg7aWlE#Aj>dLk~lTTC!0@%2p!$^$n9Zaqlc@i(HPkxESphU@RSPi-VZEac$F!Z ze1YPadI)KWBDIvbz@N_4o??zZjC{Ez$*4Lst5WCN81U`oTRPI^AJUTVr}HhvY(K@U zGDdz1+0f>*q=kogLcCxLq}mfklV>lR+n>I9t`=ie^_{Ob@w|`meSi9_YI{GaUp9l{ zBz2Ljlm!|V??}?=TG;ySWQ;`^f!$#Iqbta}czuC~E!}6$7ILZOyFIZ1A|!#*oLL!? zDBSf)I=W&{o0tVjVMZ4GTk@zpZ`}C6c4~>7KqkcVim6qUnPa5H>2;Eqv80m$si$NU zvbW{veAugSG!8rbE^J}Aq)z&*nhNfkI4jt~?DK?rzBA=vrlwjltR-UWBG=-vAVt{V zfl)eHk=1YXEP#Wu2M{@V{0QCOoL?K#q}Wfntk{mM}~q#-{7op;@vCp z_iC{K3u+R)odgZr)hU4}RRk?pjf}DVWot#8vX&@S2i|xB26w*Z$oP14ILwl-0gx$- z@rSjg-~t5UNF%{N%`gyF`zIjDJVYNj#f~>Xf6$cVN?~poFKMD`Y#fOXyclst_N}7n zEsgj_w3v0$m1HN$d6FA+lL`{nD%HoZ& zGptECrHp^$^*PC+yy*=r?Nk~NYV_t2aLi*3-7ohwND1JWE_sr&Mm914&lZs}?U1nq z@#(8FtB~1r5yuWcM(OnJ3Tcvp3!Mv9KWKML+aP8tFR2U=1YT|r?cty@Sz>F+gknh8 zMEAS*?v+l>h2^Mk;>WZ<4>z_|RF<=u@q0vW$6^@&u&AVP^kZ#J)yS(d13$$I>mZ_$ zEHw~^Gz}FQM+#sMa}jR_dI1h;BdE?xS}^|Wfn&c>Ag~i zbgB%ng@l->_sEQ42NH}PYWt1kEdmiY3Ffz>jIW{$(~wHb&1-0L+pOj)L5c$Ui+N~o z55Frq*)~r|S(?d|UU)05g8~!GGf%O!H4bd>N6Hn0=G8W@(tN|*&!!1n$$|tHy^7Ke zG*Gzg@~8STa@38kk^;L`eMY5)qE@KsVR<*+==D`Ww9_{tBBB#+9NN&CZ(`~ty#kgh zjlnQ8Z_H87-ETA@>61MqQCOu(W~41v40!`Cwi^`+K^jv%rq&o@$l0=QErYt9Jk&65 zn5u>&cCK*zSmT&l$iK;JQ77_#ub9PzQD|wcF5633nny9-G@FVK)B7>b)`I>c;EP8< zN4iTLjbc;Zw*z}gJzYeWe9;ZQH_<}}=k6yBXp~d<1-cU>dhDW@u5BGs#%I9ubl-s( z_+}x9J3Np@bprka>#ZxnR6DMK=)*2^ON5?h++iXg`OXA*t(D`s4(b}b>IodITk4%> znuzn@gkG~T(=b0B&X~*3fnqJssi~qE-xq;rs8og^QMps=*v#?&h&)dl;EKIHi!ffI z_q#GO;*V@7#CD|Xy42;T|U#V+4Q*V$*NIA||xDbQZc16jU2Cl|6lP>6NX4T8`q~xkcPqlHr zS3LC;z;}91kCb4P$f@bYMG>_WM*&0{$Mc?#uoBcvhP<(2zkEjkgGo{i$}L8XNxXS? za9hG{SkCriEc1tI_dMPUm=of#$^HYVs_E;aaqJk?c1FytH6 zBY{y;xsZ|{q}$U!W@WLoc4T%8>Fi@rx*CEd6Fvy=!f8>;FlC!kjbiET=L!C5|AO60 zO2hI}e%>?MHmtyvB__sMDLHy+5?}ult4+LyQjT+wLUWC zL&Xc_Q7%(u#xUHIP5!4BE$vSzJ!-|TUi4kxvhrjhX5CH~!E$a`Jif^ZEIZgefno%_ zIKYlyQ?lLD8yMT z8&RMX@oKBibwXE9(3Om}3wb&dwrbp!3}f*^4MkOk)3D(jpLuGu*sNBh9iOZ3#>AHr4vk7oN-UhVGyD=OODcv>x=f;#Y%U5EmUoU!xC`MCzv6PVbL91V*5eQDe!@xG($w)eeN3ky zRBa0{6=}h|0S`LE%1Xb$?w1@oHQ*b!wEmo(LN|NcG)uNBLTCfhccsy9iGIDoM_dT} zAvM!vW1-KZCeswW4kI{Y7+;l_iCTh~(lGyn>!ER_-&yfn4%$?`+U{kc5xO;l-jaGW zWbX0oXtOq6{+pa{IBprf6<`5Y>n@;%4u}@7_o;wO3Vwc``hU9}yp$<|RD-FPpsg*J z-@=HcZet)oZjaRvL{Ag&rNx$QbK_j69HsPV?ge%yoY6fT^`hp9xn={B@jk8IWI=v` z)a-0KCm2>16 zHt*_~SY4}`M>ae*yfT|?AGf0wPBY!PUu>N3R`cpe;nCXHh2$UwiZs9jrqr+X zM==AcoX#t`a_dc3$DAjcZ!D4D3p24;`L$c0*MEmG^G&hOoSww>Y|X*@9t5OsqJu)O z5N*qL*zGoXnBe^fI8K}JR_vBsiFk9_VcrgsyD2ewNm~fNW}eG+bMy7rQ zbr##8Hyv^yMvI|9iZJda^`{-Msjfe6+_dqsi=AlBRkK7Ru-i zwnB)y)bm`Kq~JgeP*+C*CQ$j<_f5VcY7)I`%HoHdE1&dym!}HOqc?1)Q+1NUm@vFp z`0w&-!rX`x*RnLW!ppJKmmGz|aVZqn$m3mM01MC`3nuP04f8`3KYd@gqJ_9EVYLO;cVexeXZ0)aJ_M;HXA9dCdgs-^bRpt?2;t3^p$?y} zv$t(`Onhu9CY`&r>Rud@0S7x2G$Vwh_m;rroXi&#@9R2~yik&fkS?X7$;?n!3P>lPP~4rh2`gqRgK}miqd;q zm)$-ro>|P*{srJXKnze$s=TFeesEcS1g}=+|EWUTT(ywM~RO! zvkf7zwcX@+UIbkW$bJEaJigj3U|&G#9_v_=Nyy?k}!!Vh}5|eGVL`{O}L$~S;TW?DD4@hM!}^+rpH9+LYzH> zsC=o?@Sa#t#l0=|vZb=x1gsrVa2raxHfW+9*Q@7OS`e6e$}{GWSnnqRNocRRtaOqS@Wg9ez+( z_HiG24Cg!MH$3<6;V0B_f-65OchUV~&#e=c;bn0d_;aMvp!; zUQ6W=2YVT38YL}7zc$)XhH#ni*TQ=){E6_59J{`I7ipb|sHnqI(fjgs4z%G^WFzMU zb&cPpeZo%9IwU3Dm@dXim};#;e$aM^O@JEMwlA+9r}+l_B~)uPf1 zCldkU7b}uw-b!<_nWCxbOd+cSSzN`tWvMA`F}C5(vzB%y@G+ zXl3sqsJ)g9y2H=PzBs}p&83QTw}y8}!jSPwe$J_alL;0_byg`1ao$#jwnmg6rlhEr zfM7UUtUEGqj34y1$W|WoR;#LBesk0^!1|GBG6iovpXLNFHy9l7680+)c5=GeYPVC4 zIX~*uRo3R0|L$7#NbM9BZrSgw?M1u?giz~6(U&&Dv!ixg(%|yYninqb-TVk)$604} zWP+Te5s<)M`@OZ^W8bWfRB*K@`1yJ%&bi(AYQ7)#_bB41T%UI zVIH6Es@r2)@)JgUEsdFFT9RR{7KZVDrIr;`?qsHBrr{Kv;FRaM*ppE%6u?|N&oi8D zGD}S~?Q%eEA;Lj+nm_F)dnkg&JW7WemEmo^d@UxXORF#-@jN`>^$(#L&|}ifW%CSU70FwmHK)=_b^(VlKYqru%JK!9Kg?$9K`9fG?aYvb*(ROP#;&A|FW;0W9^t0x;;C~# zE8k$*s2|<&(k~38B*_SA1t<6=_@)hHrkttf6UK)n$HPFT zP99c{0dhmsR2>NddBm?B>(&RI)`lMBiPaNOjoOB?FSNV|86`o^b6)!Le%^1EzjJoZ zW8oe}ED*k>&I%dw`RrryobAbwvKTBQuT(n_L&$80>-WWwwF-$w4tN+S9&yxT`esR* zWZ$KU?6aX$n6Nl!Cp~R#4qwc_=(a7`dK1FIv+^KGkRA_KS|5?#ao|JJjlZq$_)8og?S7h(+|uQ+`a2A zPq!vV1{Z|pzN$_FV~#lM_o?_}j^yX{@$9?9VzQQ|g#Jh$)vfu9ypU4RMMiv)c1~N6 z>D5||3_*15!H^ROid@P#8Jxyy>pB?@P@K0fwkT<<@u@5&8U`hD>tcNkK*7xV!uLf}_z zsE`rXH$oHdXzzt2A7?aXnzKjULgdH$+HAf+>l+@Z#hIZX3Hl~^-rU?JV1&2L%|Kvi zpMn|F%cR-L@^LHMN2j5jBJhN_K#et+lfCkVB&9dveeo{ z`J8oUT22Ka2^FGf;$d#LtA34nZEL-ha{qw5=ypX+^9)FoWD399<=~Ay*YaWVf=rv* z-T4Y{*<=>M`LvBz-zUhyoP4M2B%4 zO{-~!I;Pr!*Mvo<1XGV9P&fLFM5V6zsvBVxn6ER{U@Xk^11+M*L*mI|vv{4I|Mc~r z1R6ewMz-+?YNZStdy0&KF=V=Gc~Wfq7f{-zSZ1(x;=)jePDdUXjcZP5^m1(p_6@DD zbICDPIebUCe*Dxp{bhsMfk|dEElgU;ze7v$&o|3EBO6=m@fEC&YC%w709}BPosc3F zDXsG5JAFZxoXl7mIe+4AKa9k)TSZ!2&hu6@sIj@(SGyo)8;l! z_oQ>Y0YjSx6t2!*z+ti0&3f1L>#6imp@Gv|YE%5p7^nSO@B0P+q@MiZPyG0X>noey zFY{#5b!j2Oy}JoMW|gMDp$7V1d8?ZUUE;O%N&FLb+}&iOr4#P#CU#d}q0Hu(l`SzR zS^he_R0q+;$6RcwDNf@*-d3C>pcVqRVySyU0iPw>N@1A)I1*fO)^T-Idpo$gtM&9;I$w%r)C-DW6zD?9Gcx&VEwQc;Fm6w0?l zKBshjBCBOC3Cd{{wv6*!$_{meYIQ=G)?|a>jC7Pk_vSkdHrP3h9T&NRSWHYoD#;Zi5 zA)l8YTcp@@AQW|+6Ce}A-&M8-<(R6YQ&{a-flZ6?5qscigt^$t51%!B_g@nKD3E25 zIiMRrUJKa|--yl3vLdB)HDJ)?`$p+PrvoXc3v;gd++T$y*q|tQHj7dhI7l|i*c)gK z&M>e%Jo6;MVRP+2?B5?E-gYv@8mjU`0|bomPm%#xo$Ux#-0OXH@X{8$S4k$Vf{z;z z%9vz8qGhRb{~WNAhi{D4>%CjNuMj0u6FO|x5T+1H{8E~MGIl8gTxz7;(F(IYvF(1H zv66)PRW2OabviNR_abrjj?S$PTd+WmTND>pM>-p%*Vv^vdxuo4af!V_wIe3J#D=qD z_X2qI03Ddw(T+BN7`uo-ps?R}o+Cs^-obLQe_f04H4Ac0#93bpCOry7HIzM@zAeUy zbRfS}`w&h_VL3ZGz-f*Zz5T72DIWoj?OhdfB46KWZd-0`@j9+Bi4we+)+QRf&TwLb zmQ2V}BN2y6Ga4wkW`w(Lz=rNjUNOOD)QUC?VM0aX)G~U9BRYsWu=EeeRIjEf%(5PK zAkbz1L!Ck+#`|OnjMApL0JbseMo9U`Z*S3D$>k|MI<7Cd5S3o?Y<%BrHmAGTlE7O0S=w+JN^Wb&R zg78vHaRi5Q}v{-!>7o!{w`FgbzAY8TTS=2q2CCWP( zEmd(NgoYp`toYSO!^3@RF>X7Sega50T84RD+b&UdwMTvOhT^+PS^ zBWu~6(OWP;jzY@m6@2FIS=++rKw;JbNutSP7i z0*E#vqO3mRST;2yE`1vco)j4GAj>ZfNq1u!jeo4V#TC4<0!x#zMVgT!Wx>Q65We}9 zY)lj#k$9XpZP~yG=vp?eYDNsv%2HPM*TZ%qR{LlpoUQT^27f}FOjAZfm{=cGo{4S z$w%#xku_FYaW#IL(Ka%+@9|?DpT=b8v0Wq%X zE*DuGE;Y|PVEszMGGrVPG$nE$&h%hto+7uh5^?bpJZS4R z`SgOO9*+5Gv;aG(>nDx=N85axoo#�i=9Vrw*W&X^wE3vciz7Jq4XZY$#$}eT2Nh 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

aV-u5fJ9s}>kT*vG;QG2&N$vV)Y_s;K1OEd35 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

O!z>3uMa6WTUkAY?!P!rJ^Z(YJ-4?dO#| z5a-{7fSC3?IFC+}cF@OdMd%pMmYNa5@a%I;cEfaq5FNt&1w=Cv!AgWy<^$xG z)m1FZ_fU42Nqen?qRiT@`^ROp%}#O??hg4Q)O)e22LJt!z{$<7&9%AuC<{ur7(e)@ zx54h{BMY|`y~dB&#dj{^^-eb@mq2Et8lhY=W}|<@FAo=T&l&nghJ_^L>1vm^51p<~ zD@D2G+5u8|s%~z{t*t9xCY*URmzAjh+crkd&e-yI`4kkN8=yqci19dcXpWEVTQ3+F z81TEHbIM92#J|g{tB3faqcMSRX@-_W3UKJ{iiHa_0-11B(SGsrI2e@Swq8D!V?D~* z68+oT<4(=utf+KS`|Dd;t>x@`V1@!C_d7JNGGcDJFZgXE@6~>KHXu{`W^CRPoPJ*C z3a9#xI6H@2ZeG@&5hP{ZUpCx?^D>r5*+%B%(aHJ2`CQD%S+E>BG;<--(ZuNFs;J_? zrT4XAmacqtUR1{26PSVDd@1#>l(&?<2&Yx@9FkkTU!kVj#E(Px7=ELX6Ez6#x;ayN zYcE4zx2R51n*Q+ElJhHKey#RTYOouqD{-P``w=aPcq)L8c;4KOkjey3Vt41}9zjB~ z3JLjRX^BqE*Hsx`I)VhPqZ7uFALe+i7#GLHG-1v)8;yXBxYk!aNBEOO@(N~x3LICd zqgQ8%V?L)D)CSDfVZfyzWi2lgLnS=w1NK>9rCTV7W252;J-vC~JC@P}%3 zxg*EBfwH4gYfZFCk+xRG>=-@6f!mW5@!Mqpar2y?>yK-g%pc#5zJUxJ&3-Iayo!aMX_mXEv*zkc)W?kZULayz%L%H#dkU0)V74_d1ltvJkn z%-eMT*iER5ebwEFXqweM_5RTXQsTzT_MH8VP|F1Yi~b!fP6Llj&%qt|(&63S-oEG( zhk-XaS(gM5aWMj|KrpjFuO3Fu*mTf-5K~H~@XpK@*DGb+D{b@W zwrO@J=a0d*zQ6si4?`1j$^xhG_WRp0RV##t&`09kDK9^>LlcEJ4o`Z~bC<7Um$n+k zv=V=K$s{#9_b+JxbEC)Y7Zq|?IeYsX;}4tYirlbtXyVuEkQKt3-zx*ej^J0rYwC11 z^mMuyCDv+Lbi$rypqaBa_hz^Qp?Lv61Z9|toK;y_nTdwxBe|tF>B)FS=bHKYveheO zXGf>VhNjx+v}J$9#>G|rTTpZ2wr&fPqOb4#{Cu(fYZ`=KFktI-=?l${&RiZocRHNudWuO_Y&SMx_69<2FG^X_~G}YRf;xL$#KVEalwiMx9e2ndn4cV%Uz z)hGG2x!QVS@P{HQ5+$1}`tDv{r$8b=C?cW+q@}IyGYuzQmoWeQ4pc|RU7T;Vnrt)O z5zeKX8m8y}LmMFgKnHJS&XUINt=!qe42w6N$uh^0Jyg>p#~OmlITdD79TW@$>s(i-oRCPs6aC)J zNW!T9laC4OYkOmo3SdHgC$gP=igSEf&{8@wHrF>l4-7X^{|x)1d_6to&DN!co(0+r zL&JPlAJ6an{2wQ~B6<6x^Y$#?zZVdbbs7yvLT6R-4liKvf=MGF(1Ab*2sg*G`ni-I zKe@CO1EvR1eAWJKR~Y(X@wzwuqNJo^u%uV?)w?v^mckmBZHjs{@rtNA(6`H z(N<|bMxG(a#~0h8j9~{YeTn;rt4mGsVMmsHCh3I4ERIhe`k9PdJ(luw<{)e34i~`& zFF#kpufKZHn@PL8YKz_0Rf*s+Tx>+>W7aSej0vGarM{V^YG@%nx8a7 z1IsEK7ad06Xn82+W@;jxC^LJ-s9!iRo9)JhC2 ztEf;`R8-UybofBlFGI}bB`Xi7B;hZ*WgM+lX}d<}6fS}F*E^FlzgY~Kd8Gl_ z#TBc~sqwfFdtj9ntT62h8c#6aICm*y4-I(>3`xR>U5M=$GnH#zmA^p_k+a4!S28XQ z*sE^gHG)IWzk509#}dPm5F%4|GP3a}9$iv#&;&fF5cwS!KkqWb%Af%wm1J%NotN_$ zx>)f61a5N#+TCII9;7XS%hHP0eN}iAfS%m{by5y=U}8!$KAwPvmWhkEqN-uMDrG1X z(9ysGbWk;^>OccO;S3NBNUExC5pw(c`->#vh_g>o>k(lH;sYgAF#awrao$=83qt?| z#H$F5|2nz=5WwuylKKtUDPmzB6m26Y4nKK#&}q~RS-@W?)RO}pdUHrgPK?}n6wYln zhaTv_N`#}W?plO~dgZ{3tkl5|lh>cyV-**tT}m=M#gO1DThi`sT}Q6Ffw`e?MbpNj z+oF(0y6Yw$y0lms*&&mGXvQ}?mv&~h%G+iTF)JW$iCM5~l_*)Oc{%%4j(}QIQd*?0 z?A)8MczyMV;A;S|=N1zZ=O^slXXqww*jE>G87$j-Stp&7=z{~YvqLo`j%7Wy45Tgy zu?TtZ^>!)#sd+sLAEWbv<#8()UT{PzC8;P$PyFjmd%oHG*j%{9A}lT_GSNeI<#PG- ze4S;}6~cy{lm-Pu!8DMi*2fa@ar^&!|F_qEn_XoCG|XFsgw9nWrlw}nkx^cro-r{o z)0?{*Me3aL(b|1Q2yM3l-k`o^*SO?la%uBl0JC=OY#AVCwZVaz?1FjYE-WYm)iJ;| z{%*zj{kx&j&!)-wFA@Ro+Nl*gLV(O04S+E%Ei>L7jtM|lz4ZAK zaCHKS1D`JB#GIxXaJlBw(^)n)D~T#_pqtIM++aN_zRgW9Hy%jkusCy{3vZol4K=m1 z)3Yg^NON=&5A`qT1pLgix^p&NKCdmM9UV=@F< zD6`D7h9e*hj}FaTkWkTi{eOE6n1=cejSlKGnjybnurcFaIO^%SsbkASzBbbv_9vyK zAxft4G0tr2rB{~&bT9NTXq1$cNI~l&aZ9FpogSBV%i9K}zIW~SZ~AmTt^O`^G0j6- zD1pZh(^<-U=;Xn{ZtN@5)0&sDzk2Hw^~6Gg<0TbzIt#nJw{8u3FP$A7=M^>R7&6T1 zvcIh!vsi(n{w^)0+`)2ob|M`ZoXz9&I@lpmA;U0+6j1^f0(3G&2%_Gvfy|8{$J-Mt zE3Hhewu`?$Y$S%QNf=$2vox3`9y>EGkUkg~a~VC!|D|C(+!2$Ka-TZmzpL->?*kDK zPft%#M&A*~(Xn~KCL$w&4VsXD$OgLW^WGYu1a2o$ZFhOHey+)6w}g#WC5ujFE9Vkp zpZ6f~g4U{s$h})PWa2QtWW9BEHZ3kjLPo;a+XLrw-uvUILubun{f&*nl=2r$ z@-LV+(j5aJM0MxKt6Y|kk34Wz8OX_2RaQb4D;+mgiUnh8VcjWh-?CwQ*#3n3O2sjs zJ)Gy}=fR_M@xI}0b-%8)*InS++K#(!7f+4Xr6$-iFhoVZ*YHfw3LbNf8I^wZh}F?j zNl26mx0UUUI;2;Zk(qS!^2*2f{$)Okh6cC!{_)Y=(5T17kl*~5ZOre4FUSeRN zW8{?NHkMXqb~YWWrn4c=$ADZnJuOW`U;W|kbaDRqCeVx}kChMUQg#+5=Ts(Xp2?uF zMz_Cd`OhERL2Wz$*aQ$LUC|J-)RrA^Wm9g9tH+P``ir@2c`XmjFTn>8Pj_EKCmjEnfD}fuHg5 z@qH6h=-B8tlLj~kagZmeOG`ZA!}LUVI&!kI!BDUO&bTmc=y*V@P=5eDo5k_Iu&@y6 zn$gtKwW*A_5s>9v`H15%YP3J zMw^Ye>u7B|Axbs>O)^#&n|r^0IH#Nxu4AUo_iEJ;)NLId(}W@Vgtpp{PRRRF*Llo} zviBt7{c<;cRm|k{^;}mJYGqQhKOg|V$_5}C_3%>xPy38W07g`GE`zn8zn@XQvwDgl zzrsov&F$c9LBU`tSv3rWKpKGm>KX_Hn+paNpkQHvmk~I=jla-l^4eN8)HgKL2`WXJ zJ56LS%KFaDmgp%?bOHR@Bt^-WFvr zyHl0#-|K-M-FWHj-#P~{=uka4fcC`2G=k7#$;amHn^h6>z#VF3bEj`9e#rGE;1YVQ z+F(qUu09EzfoWlg_*$(J)f?kJW%}$oyIq|pM$AB{Y)1~sZH@)LYsS-QKAUT}Ds?a% z)up>Ze~z2+bp@ym>>KKvo16IEo+N=~oHCh)h=?c?8MUshGk;ovcPYE->Xy5mLHLb8 zPC?}S=qOZg>V)~n4}hjkPC=8A7gdOXAg0b4XC~$AOZmz z#q+Gb2R%l=^SK!U4o+H6?BzD@*7;0mNPR=y)5{CQ9;`%t0KFyvX`%BXEulZ^yY!U^ znTKLhCEX7mZS_}G01!aI-XG6eriaw_pj-6W)p3~;fROA! zRi$Zx);%H<;`b7imj;-$n&spJDC0Njh$L7E$fPJ``X2gakq5Bk0Cp|GUM$eDh=>rt zSszXT8Vr^%ykL|tp`yXT?d@E+%Ov zES?+VAauQ1>3Xx0jha%8_hm&PH`Bql2SyWgi>M-O)asM!(A3)5@jraua94ST%^#5a z^DgshU})>+GW6-}!)g=cbQaELmaz^SejH#3{5o`eg!LHga#kdyOtPk6ipS~{Sh-C2 zqWlo;vGK~}JyZJBkW-)ZeVIFfY}~XQYF0G7q$Ar>UW>H?o=`KOzNIc+>IGH8FvRTT zTX3{WRF<#ZO^3xdRbd?33LM9MC7icM(8Q{kaZytpC{%CW68UprSSPHuk+O0wBdZ-W z_bQWfXWG0Jd_RbesNZi-l;h`lVwa4Lxm9(IJh9 zpeH93}45%P5i%r&BY_mi_UEXU)2Td|^a?J(1@GIc{^nyT_1I`um z@!Yq_Oit|pH10;_JW?Do?>={>7?kbfp=g`oQ zy!6=T7@qyNFfk(5QefHf9EuylN^gY@Z2Uw!t4dl@2vnZtxrO4p*HBUqol0uh@SdIV zWAe$#gz}Cln?m&!6z1&DLpKt}6qytzm|nl+-1W%YsC9MTf5Gp>9yj!&?NT<76Fj9( zQifk|8g!3*DQrRUv~rkGY>$|1e%p~=djlvG*vheF<7(wl3RzL1O&!1Es#7?Lm>`h} zBGLnOyscJY4}M{l2A2JSrWLX}aP7Qauk2-9`^_-i^Jt_#+IpIQ;~}F(SiMvH7hDjO z+WPp#mrqye!o=atotCp8&HDV)zsAf zU9Ues&^9Uz&qte!NZOxKze}y08`|FX;_Jhi23TukJQ|14J4$NY4!DD>TS0L?r_ale(q-3de0OG6 z<;5?K+FL%sXuLjgHcRXS&fj`wK7sq>$y{U((IzT+t|)oiCZ@^{g@DNoEnfgeS(+@`E= z#?Ds&PP#f2>rD;K$|0kqwSua|D);*Ue6t>X#kIM2e0m)oHbBP)HX0(ydxn{<|C=G! z8%uD6hi|pJR(1k#Py;${3TzIS^Iw5J$8{8-lw~tbS&Kx2NEBC9gu{(n*IvU1-N6t# zXkegQSzDigw&7YQHPdux z@=K}~AWf&YvjUAe<*Z<>FA`io#-6?~9C9qJ0Z~?pIk+ZY$xj zF4jh`pGnXo+%m!-z;D3{u+gC;g-Grjd_@I7vf?&L6}=pw-O+*6)>Xap+si-}6sXc_ zw$d+Jd3wTS7B3>F%9C5LK|>Ff!L$A*m@5_>GAt^AgM$NTt6g1<;!TxwRElcLtPKrg z7cx-b2oYFV>`_stYS2tbAkMG+ka_QZ(@-;8!vu9(*&FD(rkFQWL7}4m+<`$#_!S_N z+g7I+lX4-b?t8UbMX1?BqZ+P#Vq|#O+Ua3l-a=YyEUf>UgP1FfM$51Yyx`r9aD+ws z?sz;zgzgx}KMlGgW#{L~%9@?$FTO(r2Cg}IP*OF%d*J@QVEOcYKeS$GFco*cN*=nLOQQfIqwX0r1v<=+!YeLf^-)9@=m7}Ba#FyE+YsM z)$5@jn}m&)+jzY60?cXLa&$W!9D#mxE}|^U3y6PO>7O#O@qQbQ!T~6F02_4`z1B(a z&%8@%5?U=f#+S{jLsv#pQg%uh8cScpFTx%)gw}LG6`I`pV<&W6a`vaS^=qX*%7Man zz*dcnq}^;9FWMMQ2~*rs|eP$X@B)?5)n`Im`|)Ht{c^j z8m_jV?0RPGN=Q0?OIU;=q5Cw0pl;kex1%B3gAR8g$n+j-g>|l9Cel%{O5fIlq_Heh>Dw&*s_+g?<$;EAPdH{;)pmk=ky^ji>vwgAw0)Nyg&gQw-P^LV^80MUpa1#+ zu-*91wzPg z$0Vlqz~=F{YX?X};NSr*Fqr@Ap8-h|&_B=cxbHHyY!9+v@;*O5LqNON#vMQj{(D22xS4z*$9CzrPs6}zv8qSRn+;s|Fz7g?wKHkv2jxTKf_HnG z6nzXL&HC^Z#VoxUeic(`y^Sc}q}&khZ$-equC;0pIz&>4ss=mOuIEu$?-6jioq=nd zCw2Cq>}*(mB9Ts`)9IyR7__s)Jl?|5S>y;lLP90>_?c8EYwAf@Zav?4Rrr$gX{PnE zT%MHb1w3l_ucAIlk8qTXHmfE25xXVu#B4V z7nGU`843Bq!W=biW@WiHpck{1lk?TzIvg9jHJ|;}(Vmr+{`KSx{`y8JU1^D2G?jEo zQ7I&ibmQ>g_*^GG&p<=R+Qg#GwbDmnmbZv>N7h(mkbvhSP089WKG2+xLqS(|YN}{9 zGmB&GFJQ(RG;=pRv$K<5%H4#MB;D1g2tkAz2k;x+mEPG?3xE!Ig@c%!xXrQbr^%0B zN!(?i!#9MTSbkq^jX_qfPgnY)TgOur z)!8Z#^h+zPgpWvr0w~5M?y)B)k%?6;V)T~aZ_a`m@wuC9)kpVmZ-et*PH||+qibis zg0Te+K(g{HRHtx_lb#a1r$OrrVHn;ivIO^*>FiTRGPP@^B;unDdHTUQsTvJ-;BE~;#&T>q3#)H>3Chd@2I#f`#n_73J-u)i0IQj#&0l1w z%JiI^8UTn0Kvbd1yg%O7j-MQNAS0A2=jZ1M9&`YO_l#KZK6Typ_zfnn{Z>~(Qc@9d ziQiovxq*b<93Mw5B8*Ica4Xf}5>A+9ecBmEiIQ6>zL5We-!NQ#e7 z97Qsjx4mIHTWT_YN9!&BbRm-j*nhW6hIy{*zt1FAcijxCB>)lrz<$Ub%VM}-UyxMfGKX2SFy@j-X%j8G3HZ_7m zeL1UT^2C!yKx|;H)3S{&xB4w$Vpe?DnSabL0DtRz>-2~7Ql9DUPY{;1 zoCgy_BpNT^a1HK!>{#C*6*UNeUvT*Mi1AwvO^wIBM41sEBO7lu-lNW=Wj%{?S*|weFvTZZlMrMlIc7mb3oiFt*;ZZY6 zHHf}P&4Ko^p`vPlH^CAicXTlq5*V&iXFBJ&Vwvf8JyxK8)+c3mw!6#5MB`eXnsIUi zDx>tKBoi}}bX;7}Ey##GCfq+iw=}gg>U_^X1oq)Fh+NJ}TKc>Ag3ErD!n?)=kg`n8 z$_I0m04y)SluZI9;hKhrj6lJRJ31__Johiy1UUM^%U^ClG3uFA`B>jAOVgrDf4 z78RbbRR@|$i5gYI+?ShHd@{btoaj4Gzz%q{!299%-PeUkD*;1>BVA;cq&eO!4c^l% zgIy99Qegzf{_zRy1|P5W(Kzy4a(Z21(d4uw>+!C{kOZ4E1Uw)@ zcz8k>?GA?iCzTG#BS1u0+VMgJg~~&B9_mWW>T?4w=PV@^0jTLv*js|*0+;0bgJ31e z8@ju5yjx;eRn$R0>l&Q?Hf&PLimfvZZA-d3T0AJSPy8(I{P%b6UOID9!7SCs;5Q*U zFCzeaOR5?Vx;m?9(aJYBtq)Fz0RN0ESPltcMx`W>yiTsjMlIPD=HTbjbe0XE(s8qkR^Rr801eL<7 zTB|YCd*mm}A|EfW!;0y2kB^Qz9=VmAbUvyJHx?EZ)o~h=Xffl%<0BAGMK?K~G+TFV z9*IbZ%E7@+`R86xOXVxJ)oSC~aynEhY}v(9@$d2sj*ThH4@QkTC{%=d!{$Z`9^}vF ztoHOLSYi(_jDfVjPfxCAH%7t(!py!f3`sE>_RZdzcf%~c3YR(ffQu(!S(PClJ3Ooa z+`qaRJZU{?BrtdS~N_|VAhJSSv*`^FCD*33;TnY-alru#*uj7#NljU^x2lFBtVJE-u_wTR>>2*)a;KxDvmLF6h59TtmY> zBq}<9`kR-7_~j!)aLnkx=;37Z5`h}R@s1ZMP=3c`3;iMvMp;pbJFiF4n}BK!A{yXV zrWFB)INDb4_7Bd|+L~+^3D8A)xnBiDg(LJo4LlMN=XnsvC+-=UQ;nKVroKNC5z5SE zoHDX*Zs;0xS5PK>7s)tP>frv%DRZr=(R-H#$+AfGH7F2g?=RUmM05QLK z7kxY;qB!TkR4t`8je`oY5>Uv$RO=X9lUOb-FEeP?^{uV_Zfd%lm3X*w2@AepW@V#j zpFktgZF3Nk6}_XbnL9~MJ=)oc0ampW`1I0Wyi6b?Ml|N-?YXg_hLDf%J%@+OgvF*1 zED&JMR+dn7JUBf#e=)E~#~?N5EJLGKtTij@OcDw{eYhvc5Vg6Hh<3a#u(}k9nkr9w8z*$#4 z<^aRYs;Q~t!$aVAfdCIQ503x0PK1Rel*gu2#BPrSxUC@ouDOy{cJ%&$0dmrvtoPc@ z^Xf+iW?!0&S*Z2i&Gtu-oYndHSr;!ar`DP(W(v!K6n)#{!L@N~1|y)F;Lg|n=RVU~F^jh7J$;kG5 z=J&%AnVHo&Dx3dp%fx(C+CXx||#`KyW+3Nh}Y5gfz&>$tiebW@Ag?Ed{4c zrRI=&jbWP>$>*H7SP_~nD5Od&VW@fIyH!Z2h#s8=;g{U`T$s*J8iwM0uZQ7R{id`C2Z1z$=PczQi+(Z+X^xng_l=y@B8(NCOC}bjBygZjsS(;kdV0Q=k8*|PgFcg&0KEAsqN!?NAO&6^WL4+Jj(^Xef zJ3ZfrVXZUQlqNF;c}zQ?>Z-Apcq=FZ)w4Lt6-lW&)zcP*2}#6 z8AJwGY}QDxOUipS?RSt327)78+Tn-Y&ycyL+uGfT3Wu*#R8|j)ayWZ7OY8a&^I5KL zW(Cf)o#Xx64QcSevYMJ1=Tsglx~z&qWiyzF{(4}qwyCa8KRKbFp1Rte{H6jqnp-gC zQU+{%d(*O?PuKe|_vh2HayM7U3FGOpv9WrcZf9?ltnbSXW*vxQvSlXu5?6@FGwYg~ zy9}4X$Q@BbgMpTdrIyr{@v|-PuyBMnZehWo{+}|CI2?e98CzXT%gV-vtft_O{6lZ* zC`XB>B^k+udsiuP_XKm>s(fS+NyC}kBkH`rtXdkzoVMZ`$nlOv{%X3Mp!|&UZUUd-)v4Ka#J%}&mEm36^VYSUp(~+ymtpDF15=R7 zdCT5@30R#uatFNZ#Tsl0cQD3D+3DrgH8YYT=RjKqbP9i^W^(xfk7rb=QrF7W9o^FW zAIyQHi;MrIPWtgXIe>ITMcWz*mET;QQbPY*O2A-CNl9LQAmMd;VF4Y#OG!m#-;Gjo zsZbXnw3n(VU4uYqhb|}oP7n9@fCXh`^-F<&of6=x`}VJ_uv@&p98nhf^|nIU?*XQf zjb^UK#$;SbkkJD69FpOEMT9HHFNHW%_K`ix>&r1%jVg^2*fYPo^KS@H`h)&02w&tC z6q=Qn6*f^8H660PK-s5qj$Ky_r>UVX?H)#&1l)a*AT`;MpK)GR%ueeOnnK)g@R6gFoR!M_C!OeWocS+24pj{-|PHU==P!%`P*=a7-zZ`3K6el<~PKb9D{D75-`--AG&)0 z^&=GdbJruwt$tCQBz!=jwWC@%?aiQ z^Fmv#(}=gg@cOV<&H#cXc5R|(p0iHn$v`SXEA7}3%0_BR#y-TrBsxps?Yee$8gGBj zrT5;H$`|(am=IehCskXTQd8F_56_abbroLV!H-)X^A=Fh6DzZBH|@QA)5QES7(VUj zdcnF83*QF?x-9L0o1*G0{l^h8Wl*R-;m{~8cC_p}u)6@%HKM=DK`b-!4EA^#A=~B| zG?ATDeAfOSi+Wv>awEK@C(C6-kHb2CdZr9{g^@6-GO=kLKlU$t#E{8ip-e*S3z{S> zglu0yd8L#MmtL2>!%EVwlAyZKgCk$wUF#BKLIXv1Cl!JFmgT#Ry!!^mkr`zhO%Snj zHomHvjZ`hZqdm#hl!LnSR5-5eu!0G)NRr>YzlvK3A0Hq7*LFnMcsw#%TUGs)^Xzvf z?Nd&6RWXyFj5~gCHh+*A54Tb(%TL-BucaQ!V#WVFdmbuIY`>m9R`F|_u9Cn9 zB6?>nJ8S)=+9su>^feG1RCJkz3WhK!q@nnqpv>+9Or^PNS zdYJ?TpOZM6ao8FEDgls0pzk>}Amjqt7y>U} zDZRhHv*P0eoE2y1tN2-V1aP?A`M|Q$qiR5Y)(+O3?+rSHorbE4E`mn&ww0dnT1uU6 z>~6Ch?njsv==)iYoSnnp(NTJQtYDo_ZQPp5937G}vh}X-Jb9JM;fv1uim&?9N@~{N zvn?YOS^nB=t7qKR|0)x*1 zRy*!Ql&qu)9mOJIagYm#03V)NSuxW7p)rOUXyc30O%IkA#jdrh>0fjWy*4looao6v zM$605FQ3Q?W#Pd&QEE>b*_-9@lIt5U6|G{}iG%%%)DT?as(}?%xv-y^flOExLxM0ZDRsiiGcLZr}AHcln2i zhKVj~_axlS`1CaCBA_G7YjkNWJRuc@dpU_}C}p;gnz$Pl2a8M;1e784TId$$=C5~_ z@EOsbT54SDqoad^1b}*pDvnSmJ;Te(D`3h+x~Q!65!4?v6nl1gd1Pj6ZfN+?YMdeg z76@CmBUC`Rwq^;~eddi#;UlcbZvHDL-f4UE7USWTZ@L=cG7ys*oI4o(Co)(EtuSxJ zp~p^Jp=Q0>ZT)tSO{xjH>qfe5P;$z4em<3HDz~cc;G9%nnR^uecw{eGlfXF{m<}31 z$eKU$nUT^gDXVI{^iXI0ODH;UIs6hC_*OWRMS6=TP=MN&)wQK4$NE!4d%CRN`}MFrqkoSy|IU)<*RNobZSX4W|eEBG7GQ!F?_;&Kh8{! zhMKBTet}kti6LNActu^5md;6?lJ9-;CbF(umYbL!&0al;#5R35G z7B_M3_RKtBuYiJK1V|P&I#~1o6fJU;&gc7(9unvs!+ib-2;V4 z-TSMBg@u`yXVNTtBm^9xZeZE(qs+MaE=D#sa|;U-FR#^G29#e;LO9NT!P$i!1CTbs zLvAI9O$EMMyAh6yY5RKx#wN1zFKh@2iv71nIe8@&o5NFyL}A?%+IF?o&DTHv&h?y) zaXmyvk=CrfdE|dy-Ia1B8d=Nhg@|I4es`&-Ma^3sImaUM?OF)dn^fJQi`4_;G6}ws znRB|<@-Za5P8mJpfs-aBl?9ooyZMT-ZMG;SGIJ>fr(DO%F3hKBxz@Cmz%EA{fOe3z zKNvj}!!4NTW^FsGl9%3FHfshp2sH!CcAA15T99`$ z(-)OuEbG)yj%)tv|F~;~s=w z)O^-O_%FQWR}tD_k|ql1*;!!hniyx+!!UUKC9HO1 z3uWRJ@bvA)YOFq$f%Tv3+$k@zitE zN#R=Oaj2`q1NNN_n@4f!$Xp7rrwkOf>39AsH_FVrHfR5Z zh;IM43f1eY-x&6Qx<~HN%=d&=euwArS$ikrldcTX1|aPj%%m;XQ}tDaSDhNh z8`U~(r;2iv5EW3q_I~Ostqwh}wqg(j8jSj`kV#|@CQ)yB{2v7twe*l&v)zQVIL^Nw z7!)4F{2Md;KdH$m$p?lf3VtvVH(tIwv?_N6!ustB(F1MoQJWT>BTZhH#+%;L2Y%Cr zstn`Qnx57dR@LBgNR%>yH9i$FlbL7Lsd%^?pCXq;pRMpPhrYx$F=8XY8TmP!) zyI`q?hLd=d&i96+PLz2&9XWEke%;eXhrzzk10aXL0}Kqz<;HkH20y{CSmOV|$hkP0 z=@~M4d}MjHm~d#kKuv^JhP@t1H)_Joq*DrpgH~X?%AG6Mwv(`)o&9zcl-0Ny=y|)< z^C0SZp^6e!hxwWCEXKQp3 zag$3==z2xYDWq1G_+-jOr~qRWWL}Dc#otulf&ix}*dtnPU0*+ig!J+8!TBg0XpV=~ zoOfjd;1q(G0KjdnUb}aANa27^^p%2+WPD)Y=FJnpvWf)#cb?_uoUC)hepif^Or^a8 zeslw>s=PuRjlQ&#pE_yS0eJ4-Z!~%DIcO)K6p4t4=)e2sgo7#sfXDS#dym(|pOAbm+5A3{ zW-l&0bk;X(;u&E5w>B$Cd)gi(!TY- zqZ0Xu1z?a-INP=tzmH^6O3O)m;u}|8CaWsSdq!UTR85X9#>AmpkF{Ob4)=V+FKBIb zKQEnj_@abjmU?99^PPkTb=@yfApOWFzM;g{tJu}3MrWx2-Gs%$Hq0c_)a!%QK`Waip!;b zQTEt8%LXtOF{Mo*tqvXbmQ?lpS4u}gK>XC*a8h0X=0wHq^#ICu$!<&ui&z;Dd%3x> z@tq^FP*O@>U0IP>6eNhx?II~Hytk3TYQj?5(!$Q{P#@Xgq`X%vQocYS?% zbv5bq3=HDb!hUsmiBuhQcYi zwdz*&Fd5#`xEPN;qTzw20}`Bi%#%@&@!A`rvB1VX9tbj*Sy&8=LE6dIjh4;_5&!h| z0PO?>)G)I0br)4{E~2BK@9XsdrG{2WKq#fd{6J=AD}X{n-!v6_gf=cNl*qsV=Nl9% z4(uqu?mORTqzn#|d{Lp3dtONQSdb+lg0_s}fAN-pmjzJ!jl95!A_tr0KE$GYLzH3p zD!wc0+Ao3xVCFP5jFjx^bwx#k^YaNQ5zpe%v|3Ym)A2iB37U|=; zJ4FUkfGVF;5QK(OtOJC~++Kc}PeT?F)l84i-ll_rep5w^84mzVv|y)1vRd=^a^_|lF}|O6?9r`#MAZw(-h3v>MRbm5PQIx@4pZ;%FCbhmjNNAbX|A%k3@Xl=?C;!z&eLz?lIZu zC@HC#8R$E)F#o)uiAdp#CExmlc<^KthU~r zXJNyTEt<{eiZ?Rd7~oHl49pA0#w1O}hTE)HNBfz<4#7@m*IOHbl35lR37#lKl(eAz zTjq%;C)c?7dNCLrp^>ALlab-iDbgNyeZUb7u=AwDaJF({0f0ELk)%5v4z}f`bc@rj zjZHeb2(K;tUBLSa*gHG{XliOo`qDm|0}4;g{Jg_BKxzXR)qfTgg(IQjU}I(;UwyvZ zSAOR}0>kA1M$nOt#stxkKrroqz)#G%G>iE_Fkd@DK(_UC?x?aD6EYq2<}HJGOCbX{ zAuHgz2gOQ8riIZAmMpHIFk6#DG9^3Je;x!!#Ky__bhb=Kj=r|Fg(9c(?CDvnkNz+B z>A%~60$vgZdU}8ZDfRUG@!=*@UJT2Rph^sqlERiqV8+F1psoILi=>_q;7It##i5cB zbayvTCymC9t_(;`EG8y?osoAwe!*y1NRj-Qasey3{&@GYXu!roC$&;FH>U#TWaVJL zFz>pfI^EQ?@oQ?UF_`Ur|Ma|%N5BJ~rw8?E=-`22f))Sy0nzT&=<&EcIZUs&%FD~o z?K6;U#`uwNaI6jt{dia~UAS=r_pcuYeB!`H9#s%M>H?5$K2HGUi%pgNPcsu6D~lfu zLVkE>XQvhx6?B!<6XQ}5{S>0ZlpCsb30_HPUsQmci};jfMfGJxrRC)%z@$IaE-vBQ z;Km=Qm$)CgMl4&X7gbdNc_8Zq9$Qcgcpcd5%9Te zB*#q1ZzSJ}y-0jsqb>=2zTuvpPD)A+h>22d{6uF5#)&I1#BrkwmI|efdw_WEum)M;I4{56a^Sqz9v9iF>7zL`u+QpWz@2wTuohF zzRA`9df)TenMgrF@>WnA=hZA86JvH_OpsWRM&Q3s$=Y>vcAAn?MBm*>yy3ubcR+O2 zRo2&I*y8=vJv}?SadHP}6u3$}(hW|q523ymwmBAy|9uYZNvFs6{TItoTXr$#kN&Uc z-^OI59v|;d%dHz&Sh&{K$f*AE_C0|PZ_R<2B|~s<5j{RxNg(y7Bdt>cVB!H^@W0C# zi`d)OhWyTm4J|FGsR^t?vZC&yBE0}(xc^}R6W#4(T8Io4pVsN_td^Vt*gpfxdZ2$j zx3V%6b|=Kflx?#7-&LY1a{duObTQkyA`5Kqsuu$@{*rbr;EYR27@uE3p}&8tgsRqI zg4<6DkikT`f6QiEgnpT$5E}*>>%cjJ|E}?7jD&;)c)=r$3}bmcqd$E10#voHgyI4@ zp&aWdlXP6&@b*=UpDFj;`iG-&QvfzjwOk?f-6v7?zKZ z4>$*jt(0>e&22)@d)_rN>fwA zu=w`B3mh0bIMj7DH9hlP+93k?D4+#HCoSyC)@?vf1eiqoHiSQ`#>QvZ0VktU^K>3_ zc_4p@$x9)RSBozstLlHt!5kaQ|r6?AXE0A-ju}OsTu+pIt##H6+O$Nine z5Etk1p;|{rTbuGPDVTp%(?*tkKIs@0`I~d)7hJNWi_$*>sk8g`U-r(h4X_*u`M=wE zJ#l#+>gg6<@>~BK^n>}KP|MJwoK56>gUnr!f4_ik|IgElsq6BqEB?*+OUeohHY^6B zuN>zo^=5Bh!lJjG>PJ?uuN-For19uc`CkSZ>cRRe6*=z{Qcgrz0d;qB5`Lk!mYEwm zsoD>YnN$c$COD|QpQ@PR4{g&f0NW?iA}ajn8C-5HBxG0->V&j({T%Dm<6~`BFcUZ! zac-*D7K}8AVHHtlRA$}VqpeS9mXW*X3FGoTobH>?A!n+7boDFEGmupDeh%1`2QpHi z-&sRJ%~F5Rdl-q}L~1?Rc`k(9ZwEYnt+zg)u*I#k19|4s!XVnyREBGv~& z9yXgDVIhX6x&n#ZcX6S?-r&j6JptokPZ~?f2g&g88tsEwE(eUyYTGNEq_Om>xX+ ze4{s#c1Fdoe467A|9ZXKk8jPe8bvcpRD9LCl(=_jh?aWG=kaVh>RvC@up`7~kaTyPRSvqwBg0v7yV%XdJb?%5whs_^uW&2107$AB%EpQriuyckFY~HP7+A zYqABimNd{=KE&wx%gxKnjH0Bqo}zQR#g24!RS~YuCG*!$Le|Z3Ls)}N-ws<}$v6-C znu+#f@SR=o?#I#QhM_Up@Z{($(^z#W+m+1*Pqf69-?9Y9EW36Ke{ph7q2;a?{dgbM{AvCq`xmt?g`_PWOP*X(oal0rsvih2oQV?8;qFkPr8vatL@^ZDC@=)ySWTo+}=$L_XoQ2uy|t3RM%S$U-%e2Bs9z@k9ol zk_#;$T|k)Pb;_F+QzVJn$KaH=_qiy;>#F^caGGy6`!@Hnm=9kpW!q_VBsfoQi0zVa z#C$gD*0+=wU)?Z5Nt0H%o%N10P$hk1#drvGQTeYUNxb&b8JMs+S=`eYwT(af^`=>)p-} zRW*XQ?%=VHehMs(ty{E}jIWoZ6jeJpI&s|dPlBFpy}XS>HRU(IA-L^FJDuhxJaesu zm)||iUG4R z=SS?8E=d|=s~=*tGOJA7A#n{U;yyaGQXA$-AL<)?jAtW6L)rZgyY}t0I3Ic39 z?L19SDFlhREk%GR169HN|EPPb;5ND@3eZWMIA&&MX0~NJW@hG?nVFfHS!QNtJ7(q> zVrB-J*ghh+eU5fT2n=G>_P@Vf#QSUV_g`MtR_Nr0 zIA`GO;B{P=%=}k_hYREy!Nk{umqY_?6Q9NxldABCT!hKnYWJP*Kc7pki_YW_9InEv zG90y{yrcKIWaEZgXK4=9Qc&4b)<#anNbUDp1MGeSrkpV zk`RbiX2~4f>jQ2wBXsW@jiCLERFCnv6QsW(21Q}hrJ&9I0n z*_g_t4bLm$Yg9v$Lz2>1kJ2`*j)dI5cTv za_y@Pbv-Q}0Gy}z7YLcgCL;H<e$^w3Ta{?q-|0ckG}R%t1L3B=&r2Rgb?U~y zQ_WW0lcVA>qFvX6%g5pQFdmlOs_$*?Q+Rf=Ff-)p-?R?+deB*o#G8o&Je$13rc3&_ zID_$-OH|ozJ=f#(1`W+D1k26Cu{6og`Cu~zI3Z-~cMhN2VNw~kq78gMYk2;O<4P46 zJHSx`=p*W1%Q9SIbw=#nf@+m!*6gXwb$=nAVtMEIj>Y;^zC2IIW}BN?;*lV*U(Bv& ziC%1#eC+=IL;E=;&`xEt z=`9M4Aes+Qc#-gODpT;X45QE+tM{Bj2c4{AdwvSHtSdyq!JpCH*y0xId7dAp^(yL&sFK^#M+DH_ z(OZIx=hIVXqEootnOc}!BgkAOK_e?-qxwcnL4?NQBy;hBH$ZA^nH%o9k_=kOmK9|? z$YoACWC5fDI%f%gY7ta2be43Y(^T!o$9R@->LPN6)nR*#6n>hBt!ke!Lh(@Bl9N${ z5wSxH3Cr~586P~uTz@F8Q+rS_ZE-7W zw8F$g*8?&GGecuGxbC#>udtrJJbB;%1>z#X%wwy9QWC*$cK*qPf&_Y$USZ&R1q=+d zH*aftPN>eZym&ClxRRGjN^&I)Ei(cQeKp7%=gpavTU1expqyt^nNon(zV7T_!Uz;!eh5coDE-pX| zUZ2{t%Mv^{Zm;kx<8R!_(aG7ef~?4p#B@&a7cQU-R*7eWjV5d<(U?0zM?;iF8!6La ziqRQVR8(+3xPFi4cYPU9TwEz8A!S-o*-Emz%$U5`%SQd2rmmzkIY2fhhFH*S2r^_a zM6_f&-22+m5gQxpO~bKwJ~7cuK3A{Dd2Dg)-}+#*!@PYwdr&gozAQI4*SdtH$K%6A z!6_uf)2l`m$lFh%^3SiGw4aCtrGrw+N}HU!JAV=pEa)ZNKhB8h-Ive_nPK>q)7J3y zeZ!|?cb-#0Z=m?4)?g^TOh?fGsqw)o$WSz3ICuXo34@B0IVTe0VAF*kcl9mc2g=fnR%5Zw3yuH}4=N1}(9rB-DA`JLR; zkBFKWc|P#Y+0D|*5*+I4b=ZHg5HSl1EYUj(4Epx=4(?WRJvkPCSUYp%Gk>bivb-f!Hloy4=$~>1f^$yt=UdY@o@|HOf)fMP%ZOQy zR(LS(9IXr;q&|o&N>}`j7A2dxM^CsCG9#c#QotyzH@2@UA?{4T0;eg%15{utWkzcl zI2U>vOjnsKI9UjeIarO}G$fK`6qx~_5jVpY7Kt;hsbDof>rP}xe{~me9f5)~xdvX! zG_^lD8AeW-JkjX7`W-0XUMwO(9OgyMYayj`vgc9{?zowmBY z9tmYEzd@ujMqv^R{x0t9_g@7 z=fA@NX&wP#Pn=E}U@M*JrI&`*5~Z*7I_zY8&rzheTRXQ@aetr(V*4(QdYyzCvHk1}swaYVv;wk4l=z51-etLTcJg{=t z{+mCDs3+Imo_|M>XjN{7mPx3-Zi#^b5wT#eqy7hL4k)9ks~q~b-|yYN0n7%gOMI62 zJPHl*x17PC+=}s9?6TW%WWZtW;H2Uw%n}Jr6trz#%&cJ-2 znTMI{`ELp`5~4!Wq{S|+8*hrMS?68BeNm+aC(Cp)K+Ol9EjP>T2h)IADL*eVGc@;4 ztsif2Str6G^Ib+-v7*V#yii3rwU{crpNi`e~d;&1Yw znB9Nl1LgOgF#Y5Cc{`^qS->pvE(*4Ohei;P=f@A++R@%TsVH}($Gt;_&EgPHdk0WMl9a@rj%^|3(x(muWSnQ?U2Ytp?W-Xc7$ zux_670i@9T+SJ5PO?MvF%a_PmWo5xp=T@)cW z?{DKfV&eYt5u#C=EA7;sAOI`N6ti2u9DR7|6*S7j{qT1=&BoL?<qT2Wp1HLarJs!ScY?!uEnkKcl}n(l6Z)L5hg2OfAePm?Y-FULVVSoBx*j$!P_2CU>*In^1X^kM6dojQ z%&-nAx>!*kS0;~$A+O2r@jZ}QW9+{rycU2#1Oy}{ZGL#F&N$D&0#eeTI%v1Y&V2uN z()sawDxG!4ZOWMOREMXU=Fdsd*wow(f$j?R9s+FIO&Y>G8 zq^6OPkqTtL=UK@O9fgcK{B)dKK>qc_c$8u!@d*|S1&amW{62oyrZvU$4h%k-{*nw5 z`L$GYBx5b!gN^NN7|{G<T1o!Wf&7A zJcF2yw40=`y;Hj|KVdNqh0_=HNlJY7=W368c|21KjYm%hF@0OP45O8)0Lq9knS+D3jFGJQ?asM zHdt3p%{V9{v^n1K*8A2Dr|~225%gzRKvh4eN^=AlzLW@Fz0(3B4J!@X0WtAC2h7!h zAT;3pKYIhJX^L|CbvlMPFEPrvDm5eR z-hkTufstGS&`Wh->YSJRw%g#dxd+_%seYj=a_!23hc zBOch)Wb3N=P0PYYuYu$cTN9n(hUM>hZU~f*MCEM&5be=*NVea$&qKDmjP$18*&R!T zVZ8=2M-bxAvNL*yE$S*pGU%rhP3EVv`)^4-sJ4GOGs6!IL*;({W}74I-<#Jj|GwEn zgWX9`*matTCfg(4=jkKyHsd!A=9{Kb_{eU-Bc=+*-@ZGNSRzB9SvtB7nHLTQram)&C%y0bt ztO^IV-5K#qti7l7QhPo00KkvpW=7<>hyK~`Lm;A%u+1w$3$KJk$S_GI+X-hv`Rqoz z!r#_vC(^tg&@j>cNoEW~-Fg%B-M%mKFklAw9VMr3-FMTmD?*5;y=S`+GetV59Zfj! z(;~cnCqUvXg_cu6QE7(-`ZbNckUv}Ay-ss?4U<{gO3A&3G{lTe-1~U~ot-1V8~~!HfoY zKNI`HdW*8ckD452UOxQkOn8=8T_=54nRhgQ-Sujb84reTdsF(m>94Gs{5-F9RS#o3 z2Wjw{v4>sJaAd~GxOwM4`1?|F`1CQ9^!-7g4)ay0c$i6}_5W=C5-_ojOgp{fuGaA`$4-2}IJ$oF257+3XaStF10F^4PmqJ8DN~p zz(jQ+rw=RG?AS(FC_N+mCo@0trl~9W)oq;DtXk8RkFrajdRQ2`87Xp5+g(ERWMVuK zYrfsjnXrfTEC)=~%lkabXU|a#gu-v7TDJ{d#)H=!NJ#Zg7GWY?Pb_G0itfW(O#(M= zi>4(1Bt#^~hnuH9-;xk!6T065V!W%I`5|>%^)5_lrQ9tKF@YgBn(h?hMZo%6Eejx* z2>>-Ue(^kYU~kk;`u&SF-DJPfNN8hdt2I)!sJ>eNZAN{A456!*A@@Kc=0)8V>`Z?; z3PIf9{3Wu;gCw?Eer0=cS*^p!yG?=hLx$#s{a}>vO@Dd_6#77+C%4aG#`j<-Q0W&~ z=FNWkQDRE$^v^b2Y6Mc7K9~X-n65j=Oz7en1)FV&HEs_F9QfAg4oRnUeRqC-CnXeR z0oP~6$D%?&`yS0O`9+4#Y|tp{7V$4Rv9AXH^YeSP`n4!n`poKH+ut!fNzN4j49Km) zuNP&690N1n)~yN)m(a47z{E^>7vIhnDcnwDz?F#aP$?_rhz}r~;ChEWgOaUrEuX=(k%(V)$R6C!@CP zmoIVqon^ci7BU>mhr8;C5`HYI?m@Ll90Ivk{rG=nqwhB1xeSJzJsSP1-1dt=?rr5% znwr{#4cjE2X884~%Mle3srHo|M4rr^K?AH5MSj5OGWq@-LuN}V!dvqIV%isPW zb6yJ4Hda8XDbn?{u&|EAnXd(310E5;-vsWwU z#l03XnTU7`E$^=O$^@|P<@pA*nV(YEkF{}{P25wKoh%peA?;ZkXjGRszQEatcW)9g z19_tgD>4U-epNZ&qg6LzcR33WW92)jGdELqb)Bipy6T~^O$Cv?o*$4Tay$0aT}>Qr zj>w5=o2&;qQN(4h4cwAVyRKn`{Rz*|LARrgO|O*T&hC1|2yjQbBpYg81G5jn|8YwR zc>NoJP1a@9kkGH}&@T(`cVTI3PD*(U>SOq zO#r-9*!l*urfaJ*qaw0&fVx{%GHn*Wsp-S>E6gX#M}~NHgTJRkKPFy(=rZ+A$OPfscLOYN{92$xLudSAD&+@~yINd1Z-lSEMl*YVNGX65V6?NhDz5 zRF$?CUS4xziyTmwgo8JD=1r*nkY71)=C!tReC%_z+=Xk!*2g4$RzyUZu^BPnQcLK& z^*a?rwAo%66@h&OsNn4s%^V=NwVcO5BKX7dgS|*}z=gcj`o)j=JUanEe^mTBw2(_D z<3f6{&k8bQ)FEc`;;&E^P!n6^bsHwmr+Cy%!Kwn+;IOd>@9BF-FR?fRUc zqT}OOHYU2Q98Gkh?_B$FZwpOqM+J+NySN-oTwE3oK}5u7h#mjWtsZKw7B^V-!TCp+ zA3GI3BR!dfQMTQGN#8s@VsT~rLlup!ySs{foH zCtpjaZh6i6tjV3x24x0J(xF{4t1Ear0C!Zg<$Xu4%!sw zB5OvkFh+~?^7VQ)0gut|2I1oZ0Jtuu7seVNn6%yzbY53S#sKm6|{jlV9#v!=A>mtLkb}l=MPZ^nsap=^?1HN<31Y+P8`gID$!{(ilnL!;?jbU zQIzLrS$@sw?YH4#KW58V0J9JbQ$d4X=Lg1ao#|Yxicb7HCsOt7hm=Gl0nrI<_}kt3i1yd8j=+yBNr5~zp7zP92`?7G6rgQbX zsTk2AI?&C+061xkSq4zAW0kl)9#;Sa>{z2naxB z?54>~z#7Mbh_*9$jWz1jYi9XUH}0M-Zoub+6(}0_Z#C?^tlieC8LUi0gYLDFpu75*RhCmmlg_e7iM_9EG@w>Zq`>plw( zoHIH*8H)o!Fj^QJE&$Z(v|g^AaFQ)CAt@9g7DfD=z50`gFupr(54t!boOvPWIIP}~ ziHm)4i>u#1_@wc#`;6iRmlH)%_(byhCwVMBtw^pbU`tC2mVXRyNAORf zgjy|GvO5od4nL?Cm0)l%tG}+yhwcuE2FFtAhCPr)T&ZCbq2T^$vNd(7Kb;m(7XJeq zY{kRRPvU?4XVxcck$~7gItkmfuakCZb0s|=44^}stX+zZAAV5uYAD#wM5L zP0g3?-ZHx^_7iq;)7WI%Nu1H{1PI)77ktUzawB#$rTY!U0)DJIA@Eu(R(}H;ICg%# zNHe?$@E0{p?0gZ{^6w4ZqBF;afS{v}LMIT}`EH_D=3}Y#>TIO%tQwOWFubE>`zleH z6AG8BH6B!fjY@^EjAE$5lXT}y+#f`2j;&~8Mm185mGJRX(=?^JzAIU8@LLm7(50cY z4fVo=`dKed_a`(M`f?PqA?Kq1##lg(5+LAguQ2Bzp#6^QdsalsnA83lvUCzd|NYBL z1EhXnYA*^9*hH%KwV-2!#mpDhEyP2Mc~*m91Z^PbEeCzqiiYe6MVZa%<0ErHu45b_ zw%A_8%H01uZtupwzZqG2?z1-}Ay7tOQ*&+_3<&ByD0hmNmQ0dxYk;Wkxti=}vjK0!QBNH@@&i1Js6-XFx?ZLKyc+b{2gOTifl2#^E9BUoyM zVY0C47|5IC9zGt1^wvo!t{k{M8r&?H)=vB(X>+Becq)>LI~k_u1j9^N8)wrjPW0g| zTy*&x(t>RDN1G+P1MW>ra}-s#M8@n++@K3VM4pxfh$oKF6CS2$`4zV3M)|#21%Z7# zP>htVOGE$89AHP?*QtNm=&m>2iNYX$m63*eBZt`e0+GrJhG8KKy16$+fapT?zWBhq zFEb;IS&Zd2d-d?0oY+}!Cl;C|G0z^$u2gF$4*xE302ZLev)o#1{sg|vd7Rv{pO)Y=s!QTjS+n!$&VaX-a+^qJ^x|LqGj zbZwoavA6B)*anF-Q&9-k6>ZNcwR{ss)SWZ|LA*N>NF5>=3XG=oz`k7@sGBhJ<-X2* zUeSW_LxCUvgZ|QoMi)BkF=sYtDswYPnAg4M)Z`E1XD)yqvELvddRf7NCb)EvgZ_EM zbibquxijW|l zA5Nuic1bs?{{rzR_sjnUHbP7g5P|ts{u`-$|N8>)jLz$SX8_MM9{#&||BbryFa6&j z=-l{SO;ILAyu zteu!qFhkie-MER81D7L0{P*2<+inNOn(T3=?7ubqoSv^SVP`(UEBA-6-!KHcuy2}^ z$OKQ_)i>5!{24P|guI#{)Lrh4_T?|)cVHfj%0D9_vXX+({~!#Qc?g$RI8#)xfW;-_ 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

+kQcph{y}3O`TZjiacDi6J*-VYxFN;yW1YE~ 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�B`h7(|gyqQ8~YAKbgrp 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%0DhQ8)9!ISv5v;mD>1(HX4Jc^L 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%0ABjD{Pk$eC?+PR%dH0+ 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 z zYW2_Ctwf6sYHXRa+=pL%1f?s&_%)xfO#6#@H@Mv#35lMb6Lk518*h!T z<&`X_`H%Rxg>|gq*uj0T5nPBpz(8Fm(g*(vWXz&dFiV}} zOaAQ^*^s8^Jzk1PIPGb4{-ieZuQr}*_zWF1x2XLHnS9o}{E9q1wI?4`F zsB3DP>Js%qlSRYGc?FywUTUVL(f6a2_ustCx<6ZIHJ|$g|CrQ~^)Z=yb7pL|605s@ zE<)Ux^QOm+zNZH|a4|%|>iM*q9qa+4DnH^EG&e@)*+ki{0s7xFOnj4Ot%R|ew`YAv zAm;XX%ol%a5KJSf7)$J0GznoA_<((*K^f$adGCQQQ`tjo}MP zZj?h_de>YIn@k-VHtLqOEzA@>Dvu>9E{Ynn<*HXw7pFe|X8{g1qq*+S6PVZ5narjY)+`XzxEL5|8Vq1r}+w22@=5kwFbgG)s0w0-i3&7F!@}~LR zSZitDwJuTDBbWa`n{9h3#D?0$WD7`)Uy7Qme8M>!&LW+5A--mxt;4cX*6|8n)I{2t znqg%d;~T^0`EJ`6AVguA{>!55y10({I$W=J$HXjwHpOsIs0TzoI*q(|7jf(-cCez}NsZSZKb?O&$ z7fudVf~0bpYTJ*3PgX_mqn%Ri_1Q%5G&;CHQA8=D@ziJP-2Uy)W`7~>WsGc281%~i zJBCU%hEWaCZz(_@$?ZNy*a2UfYumHttD*-p4ZQ!ddT+#TJAJQBFgab&Q|B z<=u4jItCr-KJH4*^L@yO{=VY}5sstHUQ&?TOA*+3D%81x&`@1?&x5U9JkYwMe zSiq#62&Zg%k$>|26@cj|u9GeI-s2Fd#|-DPh8av>UB~;`?>t({QBvweN2+$exGQ%s zx9MZ8fPwmO5gK$Ks~`uF9;*TRRGIkx7pCjqPCW_l;TriwGy<^{ts1Nrcm*EQD{dhE zVeInq@a)~~Nlb#p;9pZA?xzu4-*Vq8LRiPPEvCMhc-L?KEWxGuLv^$lyKMpfQ?C?C ze8^C8s$oBNiimYKgL~_<55ju)Gv+<#lnAIWUEA%&y~;5KI+^s_ zul>zK=*G?JZO{-f3=#J&#Z7|GNj}(0wDYu67NxGyIaA?zqH8qkSzbs%%P_xH)GO+i zC)Ax4VB3tmEU5nI0vqYrX(sXhT;XCkZHyo9df&^;Ur7IdwnYB3Wp#TR2!kuU88@@x zW&NO*jBd_#Rbn(8Qf=>5sSGtScl`x%J4g^C^W6!>=a{OkiLMDIHsbe?E33bEm$?b? z4jd}Z)(dL1r%Q&vt7(|b+MKb=e3`iEvt2+J?RAXb_lmf_uimd-;^(#9!9Gw|kF~wQ z`IW4;_zT3Gco9rZehbm93C@_)!0;;Obycaw>m83g2nY}%;2gnKm~yuEVf!MD-*~Kq zrLg_tH(D-TbfAG@H>p+fD7<{{z_ys(pppCSs=qLWZ+jeUa(466!;x!rSRito8xX25 zXH-68)B<~zjNJ5hXEy~)E44_`R~SCbInXS!I|&}_?x5l|d}U%{^?Gpz?PwdGWBw{G zs7?Q4nJ(Vygv0t1NJdwk6~keA7wxfrzh9;d)-47TRj}OX_7% z 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ð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≦)o{5WH?ea$+!x5bK|J;iibF=estl!MXtHekZ` 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
%9AmFJONpft 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
jA$Fm6VjEr9&IsBw8H5MMCN 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˴(%7`|H$G_`Y1G^cmk&B(FNAjS!`@< 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 z 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¿%g=a-h3!LSl0299zS}naL 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

ae|= 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

n4am^tV-M7%73%P)g= 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

Dh4>>$jjkS_50X1_MOlMViSW^6;nQf> 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

XpUnfh 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�vGK(l3Pt1!voVYw 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 z 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 U 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 -jCo_@r7@6Se2 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

ATI8hd0;tzprcQ9 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

WQU-r&oRs-4GWU+~PA6B~YlGxAn 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

  • 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

    tLNzUE?&D-@9{PR11+EF;Lnx;V&e04b*CLTZ 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

    )e>!c^5wRIzufA_V0Qt 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

    b(e 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�J<4+^Wix?~>% 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�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 z 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

    ^$NGz9$^kE(PRN2mu0v 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≪+_DQ7Upx5YrkwbSTN^^ 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%0DWDhC^OR8+{c~SxN#p^t{$>cjm&^Viujk%9v_|T7 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

    ^T>ATq@Qy*~l37xX~4KejSV#x}h?9o=N* zA19LF&cWyYF?;DVDK`M*3NE0~`; z%{FTI3#bU3otal;>H8H#ANPoILPnHg3JXZ3L}SS5huMSA9WtRHFen+mv(2vc*$D+6 zE!TA{euT78PGFd{P!>J+5H?P8KG)+WjeYP!)Uiup4uqJp?Q-UpY z<|=K3+BPL>^~CD}clpVRiZbNU1pZRkq1OoS2$c*S2OF9qhct(LyrMVaojo< z5+?_ai?Ze&m_pflGw&d@Z&l?)x%|z%X!dujQP(XUTGe}-xX*Vw+jGtY-@R3;FWx0- zySA)mgLlnMF2-o1S*QuF6{FNG>Q!mXVeA)PQxyR|fC56~b-AyDSdJB8O$g(UmjqVS zkF}yaA|QLoS?Wm|8V#|u$$@7 z8B~(U-+dx|Ak1#28c2Q45+hl12(<@2+-3@az#Pyq5RU=7e;oW?(?;&)Xa zkfZrGRd6x@Y!FsJ4_E<;GFX{!YpUz##yK<&BO2@OdZ2t3Z{vS@5d}D3^oC%B@53CNU1s`$gt4#^O0+UT)M=K%viyodJbt*(3uU;)mSek%QM9Knic0$9J%#) z!-UuI&U1n2u(r0Uxd4HrIO_m`6zv3r1$^EQFqB_kiqXEti5og!uHy1+$P8O>c`|BQ z{D^JWYbce>#mtN7?NY*HR#<34bA7SzsE$<}+S{?U66?^c>V{Ub3XK8_4?$&=L)8lO z8UyqBBg3=SZjf^HU2xluPuY7_eN+x-cBoF}n2IA8sF?b;NIfe81O-f4&189fM9C98 zbFuuB?Y#0Z(SwKH2)mSUbdiblY1y2QIbOC;H-9idR}@xE7hFKdtT4tHLY<6 zGvQ(6TNmz!*J%8S7Mg8$@iS5s${9#L+qK>MM53~NDFPXzyW{7h?m6{$#x2EK6@(r+ zcfz}lbK;AkG$AO)4WV$))M6YV!!MgS%Lp07w6hgS1lNILX`W2ECWd5qL5jon1g*#i z$=}to%W^^3Jx~y<9*)+&#GpMVAP}!|ww#N{@F*1+YUxPk+ZTOrfrMZ12*c$-6GmXh zr8(X7AmZ?Qj~Y<#SD^6jO7w$HGttgzNRXgn@CL0fYP}Bi#Xw|i+cl9mvf z&W32ak{*~cqA!}pRryj6R@HZ7uOo2oL~i8$T<2P`V;IxAFkw+cs~cPTCXF=E`Y8JZ zgLnNunx%2f2y_C4>7w!_SjIz+`fz6RRjHb5EX6_d(3+v4N;;*u7}jRO(Kj+3BQ@G= zB+F8IZTUZxm9SN3ba4f8nJV_(E%WvX&x1d>Ph?QVpc#tAf}5dAFqG8|^Vo#Sa<62>;2Aex0$k#3ez zty(aMYV#Rqf-quaCMCX9_cRPPHDma=r~zIhpH=sZH$9a4)21OOx-6W zEE~i=I5Vh~cw(3u?L~9&{U{W#YEsyg?P~^#gLS&2vwCIxq8q8CDtDIKN3w-TJe{#c z{IkmPA4%mHIS)R_9|Q+yLB!U?fjB^yCtHP5Rv#pB6q17c5@X)nd3ZL)?Z8fooD79T--79X4yoGF8Y&;TG;fdByR7@E^M$3^-zK z$>-%$>hi6_X1h*>v_iF(6DK{1RmVdzrt;2=$K_UvU^r=@eiPfVu0}(hcg(Wua2l)2X)uj{K|lCBD1~*BJD&o*5w!^PHN2WAM0AM zaF*dHe2-R5_tnN|>NK~mDKg4AO1EpyY&x8M13~@pfaEK0*q@0Ti4e;d`#)1 zwazF{*wIHf;f-3g^f}R}++6rQKrB{bFXOe0;KejxLnmDthf#mgq>%^t>wFevzwPT@ zqvm2-pxKj_=U}$v^AcX>OCa;P(h>Dh2lFH)Hc!<8I-A0QYrj_u#twE@Dtbd-Q(}0N zdoN5te=VF7o{?>zcGOLXji#H>>`%h&jRLORP!C^uQO1^URJ$vsE#%Do4JZ*cB$u6$ zH%~Airzm&zG^?Qfo)J@seWfVMf~VY9#xg^M#Edh-~C8DVVODN5|q=${aN zb78)c_E|lCh1IS!AO7Pn_+0L(E>}2?)f`^^in;sPv(nozC88n!=K;`IGP%5?7)n6Bu)F-aT z3P(#1i%|##a}6}qc{0opzi;llPmTS|-h9O;e%KTEssAAI#F7E)kQ zD4=XlP*jsG+6^Eda60;9^!I2&5}hMtN+WWpX-c*tu_(RJmSSk1bBoq2=w!^R z_34P!c_f)YizhwX9~tOo3QX^T^CM7=AL=Z=s(`;^Q$lVlzQGb7otAyFyP2@Ag+&ZJ zzSmJRbl7Gqmg(gBYA;QXZ3Z!$#CsO69Dmo>o%Ln9I;F6q!^d+64fnm`{l+FyIwxSw z&&|XKKoHC`9gh%&hZ+o_Q7BAC7_x*{f=uwDzVTwQaDOs08HERJH>TLEW!=*(nCksz z0}VXTsIMPJjNSJaw+sfQy3J31uXHcho3jH&SY}ZT1_CkMP+)B4bR>jZItSUs#1k{m z)mnQh3b}>vcHj`>eOg^j?$q+IAX@VMCs@vINrP*bXc^HBh{sVLGNzO-((2Ui_+K0F zWItR%eO)M%8TxQ$)SYTVt-X@NbYVJQX-rNO9M55y`G^=`RFYXxh~3p4W*{i~QBQpW zGLLB6TulkrrA!|j6KH^N+Jm}Wl!KK03jF=TQMf~w*MR#2jc)jR38-#$Z)r?zzRxWO zX{;|OKfl5zAziH9+43nnh1RE;PO-mY2USRj?Q7)Y8!H4z;Zg8|utIf5H)yH6KfxF{ zq?a*9av!6%0%}0ys%9B&qdchMN&s8t3`8sKGnjISbyA==wUpmnS6s^vJTdM)%rLy6 zIzrCUKx$z8mYawMoc_V&^2J7Gg2M9dHy7RM|Qr-?ettk#hw* zb*|DRL<4@ccvwOzy9+RZ?6?kDh^3%nDj@-Xd;DtyEy#SCK#Sr23aP8Alpc%Bk{ zq2)3Ip|!9~_|U_d93-cR{h%pXKt<5vf4#s%5E~vwigKp8>HrD8i_0kGCFd2onkX)a zXE+_dmM`(HauCi%uM@JDq2uARWJdkmn>z z9KhT{gxkY{^$tw5Rd8-cCE-;!1`kJ!%?fzRz@$UaW{zPP<{Kh>u8p6!_P2rfrO$a9 z82L4bIa3lvBdm5{#A3uo3Kt}~NKGheqC{hv(etz!3F$<<4alRbenf?&7oBCw*BSbd zA1brzNANmDk)-n;0NcL$o*H!5K}qEJkn&KEfG*2}rY=pauybyJBq*^1XN13=sMtfv zluE|0*U+j2A70xqoFSL3W$);QVu!ej9Luv4N~v}co4YA6nT{M6#~r~P`Bue{G2*-` z{D3+1;X*OUU3=7R;D!HIdzQ6eEh+=m>Jtj1yf=T6M2^HBnop4&m*tWZv)lPmtLpmo zDcBQ#7VQvhg3PY+yP1lzlXOA!%(07l zO1)t?2BKS=7TDnz$VsBQVow#ihS1J2O2&hHYA;F!d$?C|7zPhE%eF=msEfT%oybgKl<9QQP$Snz?lKiWUGS*8tGV$O?TorI;~4-q zO9W*hC#M@oQ!EV@KOK@$DhY;GtjWM2p|8IIweOWT5lHfAH|g@GO{0^*AOdHq?@UDA zGX)OUwCrev#++UDsFT;xIR0Rih%tbuvuhN*SAG2vFB+q{CrllMp(4Lzg>0^sH3Mr7|vM{ecJR4f@f(#pcv3y{L542psjh8fShXFGWSy$3H-6zC_&Zz_``c6Rdl1BKA6jc(BtN1l{!XKX>S%m^@0 zBavk~MtBUB28WiPLajNg%n*`$1BpRhZn#^0V4)ZH7}EooZ56Q?_~oEd=ZK|&8G6u9 zJbc5_BrUSi~{?B@NPtLlKAfe1phH z)BrslAJa0L@rq-S&x}GYmUhLKMfYLk5bWKOvHD7PfDHCyM6V7kqh97|$5vcmu&mVh zaG+lCESqV@i=iO{30d9E-nl+Z{pyE`CSYB2yjsTxhpoG()P_7^?~m?2SVhK$B8ugp z7TK&v*<#_R;gQ0Hb<$=QYJ5OCWl6))_{w#XfxP zNuFT?wxZ+#-#I+{oip0AXK2yp= zQiU$H)~PCmD-Y5i6n(M}jADI7W~gRNjO&gb7q|4!2Dk2c^>H-cvhWe_Nfhu?p2c+a z2-%!o$~#@dbw%z)bQayz>Y&qC%$&O5>13La6*WlA8xMiw=zmhtU!8iWc*T8B@yR#i z-Rh@r$2uji%!gzka~aLT#=r-DU+TklY&Ef@VAB=27ohf;0N>zkdVO+DA~yE6<{X-m zRJ}sm^+CcHyD_!pOZ|C27IX?83@i({%RyuYwu`;ji0AF9>sc4Sl+;3TXym~zVbgOt z$VQ+!{aoqS(=YHsv}`@2V&RHYpIHaF)-4$8!^+&ftmoz7q0fUa}!diPtI=A%5oKo z(ve3wp5qf)F=h~N$BlIhNPV-rS#{&p-qG|Rt=4A^Y7F%V~LJO z4f%*Bkm9pPFrmzf(9G$!)f6&4zlMf#brUps76T1c*ZU{yLmAOP<#COQJc( zFA-&ieCpKn{S{fCa)sw!5)yeL)Stk<9;;QRrFp5K%zp7L%qPOtip3}|}y5f2?`nVbz^Az9E{7^r# zViQQtK#6)aoT`;WI+3X{U#1^kdB+p=u~0wrBZ1%UH_e7dI_FM>5ih8W{`W~|>)N5! z^`-n1I=Aa7sxx~llHYVt1vZ3ovKH6Ryqt|p&L6AyLl#>_I|*J4aH9uXi%8g0-MEVJ zQBWRaaZZd2i+i1ib!}tqvk(?=9Ibk|cHN2p1Q9hgph4P})y#jJ|pLD=38 zjbWNe&;zUcdJ#8?t#Se}m!erSalC$}A?M2i?XqW~BvLg;gpzTUzq2vU@d+T%9mBX8C{5M%W?4HXr zRhcj-UE$nGD}Z5GvUduj){?M$O46u>FDhjqg?Yy`HMA!NrxSbLaMVPPt+m`OuM?H+ z+$o?IFM|j(z96HUdLcY5eif-9M%$F%@T~9by)|*v(X0~mw3LcH^Ics)NPhuN4bLO1 zx9>gO-XUUVZ|K7=Ukjtc!TgTxNZ7-XG+IJbpe2HefnZLV#1~`)=vji1wX=1uej}9A zj(+9_npyH~=dt0%Y#Dhkr_oRw{s{c~o??%9F(bk+MrNwQhq(Ld29G942sUf!lRL+w zt;HcoirY-7N4dRv0!F1q4|@c_l%#}~D(EhC%X;US=IdYG}--7 zKGJSm-(eDLC1T!bVMs(2#8HmBkpEaLmgpC+lQ>4QSk>p{kxa>vv7)Q-b-6`lL1z`x zgEymDtAG!z;bE!KR*V}&areO(%x^)NHJNE=L9p!zT(0LCT?wStmk<(17GS8XBsLkz z>0=Fv5gn{ru`D%>#%b1$tI!ZYLDXx@tM^pDBA_b@`jDy3Q~$1XJ6X)rHU&qkY@*GI z67(z9iSmf{oW~%}P*Ckq!v1MM(xIsD1E%+Y1Bo7U^5dfh&S7i~9N*xA9cc{$)qY&u zvUthjz^vQgJWDC|LYe%W&kq&^s~!{eg-FHR;(6Fb`?;FUYa>XpXJYeuy=v|pq`a^5 zDRq}s#Dk^ORv8`%1P`gneFD!l(f0mBV0Xlfl_1=op4;^k>aU*S2@(`wGT}?AwRYg> zq0cnknkwR|w(Xb(?C$!><8Glp+?dV~v}ArNboaKSO7~n0mgjR!yRJg#3GttPX3vZa zzaMn~k-fv2!?~u2z!a&uHRqYR&`d|kX{}yD`p`lfMfl1lrf?iTM-x>;Lcm_OJDN z|LL6lfdS9V1t7Bk{2YJ>0?=Y_`{DpWeH?Ej*`IIh`wbcc?3Vij2;^UC-+yiFdrRi~ zD=dcvV5q-QeE(4eAmj{?arT!*F#l^i9HW-D4j>H;kWu$X6d%{`K+GFW^;cD}F#|vx zK+xTVtz4qe{mvg01yX21-*e;q|H8GH0ec7k zpclV$m2be|U!BOmHaW5ZylucOW99&`TmPED_;ZNwA63Eq`|t(#-+0{2TmUi)(2ReT z@pe}M;~M{J%|C6%TgKu4x)|KQ4`94C?5~=^0yq}`d!NbA0Z&heWjjfQ{mcHg$XxRV@g2Yy~8b9LD z*qa~)E|_iuJ(Im3k>e`el#LiTgan741w*z-7|&IH)ikX#qDGEJc@jEK8|2@eS-z~5 z2+cvB$BtkjS_0mxd=0wXSdsatbEm`WFef5}_K?5O8;-Bl+JEAitxQ|3+tiN6}!yPQHN5sr-Q z9abAJm2A~MaX^7F6R^L_jElWZo0mNgb|JNkl;N>{Uof67pJ9b4`J-rQ=*6DQb594x?XQ@MJLe8p4Q9k$;`HA{>t}Lj@8+-YDf+-&u&hcNVT+7 zimWfIC&BtnGfCQ9j3r97_j1SN6st3a?JXOp%!{Wkyf;76CS^vl;lCM|6(D*CVp^c0 z&bUz^yqBU2XaKETH0&tH?=%}@9?WTpo)`61Iwd*my(3m>PIhK|{w~n!B;_)<%FV?fys!dv_6w@j%krxm-i7z8Gx4QSGAb{ary(Z*3+D6&#UB;xg^1sPsLO3_v6` zC{oNvpHz(!9KI5pqCrz93|)@bWbJ(1oAo6Dz-cR-%laH^qNJm_oTiM5$PyI7>F2;)1 z^N`*0bc*>sfPex>@w6s(xW>)Hw{v$G&P;)J7MN38b_2z{qFTMh&YpVcw5DeE2Idam z4NCRmpF|Z4ehONZq?`6CwJEA2;cYq z){jS=qo=1U?xlWTMIyZEuxTrpV2kcHH}z&W>UG9Z z5BZ$yUQgJ^jLbIO^!2*yQ|+B{A6F*%D^02I+vP{Q-jAt!zN!AN73nAB&F8JFEgdkL z`Q@lSR%RkyNK!nkc5|n1Xng?iQOIwI90b1aL#<8J>laOBP1BE!Zw(u&)Rvf1OYwet zo;CijExgvnY7UCra@FsnPxT5r#=wg-{Wl2gQV>oXoTPCNMZ?Ebbo>y?n~{6 z+2}*Oz8Lc$kh`Bq=Z6inJ`^#$_k`dV+hi=y2#My9I(a{yNVoTq2h7M+vj5!^k3pmi zU#D*p$m|s5l%-x5U$z4i&45PVf0jZc=aF*a>qObyKis>gOksB&xxslyR$hkm9i@Cn z_@aa<(|%gA=Dia-3!RZNg?l1F{(}jltwCHeO&LBiBm8(_HWrZyRN>=NyIy5~%nZT0 zuAGKWlVp3RbWDS^v4HT$qtBoQ>ytyv{{WcQHR%jxkJ4YSR}k%mHCoR)wk-2->TCW*AO19ktWhvIxi=waE&6fqgvSv~2zOrVsa0ZC)Gy9WGj@$mG zsHGx;zkf-f8aS4o+N}ZtKb|KynxkDmgqqwPe!Lu>wyy!jKtRcv>!WFzkjZI@Xj#ibdSnVx*-aE4Cv$@tg+Z|FTtqli*eT)0364E+`^d|bpa~q&oNuIzO`y49@|EoU zMh1wh=;ZRJuU!boS%}b1RcBgafedA0&rhk`xrPu`NV33suKkdj1@+W}Bvgu1(6J@- z$Z{us3$qUPXOtkalmxnVb7oKuSc|yc7)y@5`wTEUPbD00VKj+r*!*Bm>})?~)u&0v z%8X{wpK1P9-zR<*k#q}%?AVT927SjPk+;AxUz0_6c`BfQ5d9PUxF&Zz%Y6tpXf&eT zI=8R_8!$*$b1yP=>?_L>2fqgCK-y0hj>^W0y@Xsj^8T%T@Tggf{|QF|r{98M zZ=D8r(_2&DZIOGYTiRzkGAG{GWN6f-KoYwjDOo z6iA(uVUl=du)G=BZ=(V+_kGA*xwIh!D`d9lxBhfN)6KFp2zW*nP2>T36Sv)cT#AOc5?7+T7ou?{tSy85>QkQ^L%plA`|n!-0B6+oe|?tVxsM zxIE&rI7+dDw!vCQWLP^3jB9qQi={Yggc?kebBU~EBov}h7zgO0PW(cVr!jn}2udMfLe)HeL2Zm- zZt=7DPYSV<+Z8Up`yPu5_(8PKRy1@2&nwRX@w(?js)Ub(k!YnjuO=<|C=l5Ua$&kq z*a>@bMTm#d=w<{VE0zbuQJ1{9qAfQXwNk}bv^atI@^OMU6gkeGK6=MdGgV}F}S z1)Y{ss*q8*l|6=SZ)hs_42#0=lBs?^JwSamsy?}z;6o~SS|pwT&k=hkvJ{ZWx9(72 zkk9I}bOl-zx=Y|+_h1Qi%9F3Im~{c}A=r6PVg2A~8-yb)KdEw?B~cI)F%*7w&5oVe zeu0=u4hHj3Y#>@46osA|ft!+=Vv$Yk>NUHOBq2=;LAqa3RFtI10l;wrZqcf$;KJek z0Nix?dqTCnkmwP#P6M(Wh)+#)bKk$~BsPjLMQH*71v9OA)_+r6#kb?IRC~ z+sQ!++J$_2mqjmBglE*vpItOaC|64!bg6uY_9$|G!DYj?NGe2JH%IBY;c+wOu z@=* zJSeJ1b(kLow3^poN9{);i`Rj8XYl1d$~%+^qWr{<@1RcX3yTp>V=+WFx*QT*HGB|z zP|WF}Y@z{<1pS^3zp9kSpvZQVwoi>?j@>Nb;Nz`A4%d8T7OJfq_)`^aX)+hq!zbyc zBQ9C<@?+tidb`;$B743XD$UJ$*+fRDB6v2>B(U1atZA*+P26!xoW;X}P&u@F`d1Jd zwyRI(HfH;Spx%t>m}$xeQK6LNn1*#(hy0ki>V=*VT-;8(%UQ*D(Y+bpOb44i26ODa zWepbWiCSOmXbGbNBOo(f34WDPO`RUa+_;%V*!q*%sMD#IMV%7o#yKc z6tWMj8}ZV`wf@Adxr%fl(8EpP(Zv#rU&qRL{w=#aXv+1__$7-Fm?5cr=<;`W%Gk0`tN|$OZ}r5-fQUCumx?-Jv)VFE(h+Se@XSh0Ltms$Okr zkZ1*VaUaWXeTZ>OmdePaRS5w?HO9YXJyy17ImQ8(4UJs@TEWkz9_!Gnx(CkU&eKg? z0h!P>39Nn_3_l6jRgcWSQR%8!A?k}ShX;f6baBi5KM3)6wr^J%?a4bUs!wAL(~=l) zCrV2!PuJm>3E865nx-xuK}#bq%e2|^2qW#VwmK*Ul$kht{YUBIdqrvw8f4wo^sE6a zw6&2r+BSNN9&@*XBMpd(OUKE%L0R8I#=t})a~%hRLj5^sJ5qsyz*^~Q(LwN)e$OzP zNawNk*Rp7o3QmtT=7%n!e|1!R{!+T9%gekLayZntE3(NE-IBsFcy83A6MVu1$3g4dUsWrxZ* zr?w%n7oIjx#@d5rTG%wWhJWCC=N>e9_|!ML z*~GeK5ej1X^4#Wa=N?wSDuE_lGFJvBcF$vJ(F(fo~SEeEmu4FR%*0CwuWt77`GfC-xOC24ZOq#y$(X5k{Y zy0w#g-y2de1zUN`*L8Hl(1j21dMXb!##-@e89jS$pnQ%oX zyFN~lO`;oCE09+;rc1<>d8|dWLP!&w(}-es>8*}ei@NWE96E?<57lWXN5F>`4<_@+ z!b#2At|`fj`a?0v%Efwp9PvI3UTN{=gWyOH+)af&=4}g6X;mPd2s-j2n@`Xn9O;5S zJZ)Alvs$Qgi5>rPFmbE*6*lW+dxT?}iq8)d>%{CD=44P7$QK;dqS|b9eLOHc_0(KD zi>>xx>l>xS=US{T#7l9fTPSL~hnZLi-R`n2uq$5`Bfs+ENDTHSpJH_K8<9Q(*jfm~ zv>!CTNv#V{b1^iJfZ4>#59Rz-#$`N#4Ku_KU9ce`5_}J6*9H`grqb?S?g|n`w$gl% zq}*M?MHaOX_~c{C-Z+a+2{Poh`ido-Mv{T12jggbVKut03i?CmE4i!e=#IU=f7j3g zSLOr;^FyT>-AAM>V4?+LJWs)8(L>uGT2-!#1R$@GZLl&0c9V$s+45Ci(OJEDJ2Zn_ zZ!|S$<`d^3?0}C(^GmUgunXhP@D{g4lIHfQ%@B`;`JmiPT`1KN1ly1Bx)OsF{RG-sIhVlhV!%mf6 z*P>Kh&H{|l!)Zyna$7gV$(nWAhA7zQ8PdR;hK_j{W}Y-=(d3hyQc9~53pNm>W;DN^ zu&FPWU0&((FXBK^K};;_cNbnW3}PHx&WDTX^XTIzwA_O9bMFy=&!31? z5f8_zFUj94RAwpI_>L^vCt5;Om~^VsCmLshkRNxrw9ug$y+EQ`pxj-N&(vHy=vCb)Jz;!eD{ZB_;mp=XQ9P@i>$*-t}Y;cp?Moj~UBo9?*g0#_Mzs6WEBCYYCesg7v-sez(*+`$u?zo$o;nP3%?84s|eq=dC z8hw9(Gm~}-UW(@YY!|%33eo$3NR;tjm(C>WpQji=c~bG~^e|bFimS9#xxaCJH+vw{ zI!edltz!N3w7AsS#|l;*H_kGWYSt^hAgP+vFmP+rw((0@LM~b@<}6uc-Z$~Uj8dh+ z4R4IGqeWtKx&}J^PFd3oUH&zDV1;bo+#vrnXx@`CMkiZiSsFcScu~?^c}$X$?{K#O+7i!QDKx?tGVVWZmhO<%Id@y*Ll{E;&SQY7PoWQ_t8aP8?4fiWD z@RFi+lfX`h7Rc$pZ!1e$1|^)u21(fWTR`}JTVcnz5UVBt*i?-PDXa;-UgmX6BxI#XYPwCebwZfk5C2w#( z1WCHsUwlg23JOi~ruV0P5`d@V4^(nE;+z66{kj;*5sEeR<>(K~oP|ExSF~FUwn?>> zfPd2WH_=VM913|;&lB|{Z~jd|m7=mC{qY%)1tQFO+}2OiRlrt-f79dn>DT0gp0$N; zrkn6=*H%nbOy|>!00`5ZJhqfobr3~65{o(kCU#{c#@9&s_CY_GMO@+KB?&hLHjy|6DCch20=bflh+i z$;tQf_@VWv@z9&F%VHYcdcy{(x^Ii*={2(egLAyybcK|5m+=wi2#7=D$5He~(5<|L zN?#>wraBIrR*{R4<0>&K(&Kd=w)C1dJOv(mC6%&bDoBmGaLu-|EaB>(3M$_QuxR1E zDx^=Mo92Zg?>6C_6JJZDN^BICh>j<`8XYd}qRkN^l2ImaRfi(Autk0wCbfw`=j%_cs#rMj&zKuVGYM97GBdbHKe3Krq$kw4c4lWkAjlL^2i}|hVC*weo z@_=Jtyup1XVt~2)xjRGusPr0KugBNk-J@m5kZ!HTo@?sX#eEFD zk>Z1YrJ~|{@gyQo(~#wrTD?)qHn0BNl;>*mh2{rIqXrAjS47j-%)M)eRQa%SHlos1 zw9S>qx}$y5;Y2MrU$}&TMZA0$^{=Ku3(*gKwn&D~9;w6pd*_T7!H!obYU z-USE|c1^%x&n1BiT!~L$<2my9K(nvFTvZv*k;xZ4-bn$XumfFeiR>lHJiI*P{@`FX z-NKs^$H;{Vfij_t(#1%mYXy{OF4zv4K6(YV9@qh*Y^>Vr0)IYs-2939;tibC5EXcu z%WQ5kO2BpThUHVW)Cx4D9A+Lc;!owJQB1C-`;sb?o8K@d8-3F8OA5*&^k)13KrR7h zBa-{@eJNy=6Dj|tp>%*TPXQ_+_$QMS5&cRFA5u|O{+<=mxl(0ra9Q(wI|%V$#=*=w z7E8YfIt)*tU@0MZA4W1yt|~Mi>;g zBV^vEH%zK7+8wq*HIJk}(>}g$hgVEsA~!tn`wpzjlJgxiuTuW4 zy;qS~`4{?C|Boon7%YbGT1TW5Wqlo=_%jAsTucD)1j>*lRk}xb3h}yT!ONQO1su8& z-`NZ{fn)1`?&jFEl)(Cj0-jNDA4(e?QCBGZ@3bI z%CI{?K^W34%(~(j))hJZlReD~kS#)TgDm$BM&SQNe#KYxnG$}HUpEx#^~iO#D@*pwW5Yly3u4cMFHu}}qiVz&Fk?-PKpWAl4D9YJ+bzn! z0TY@z2Wt|rBMr!J`~yxdfGRwKnua{PLfd~;5Z1S?R+Ap4jC4nHENo$cDhXy9tYh)X zMVAbbssKly#x4^{4--kC(i0;(h9Wig3t4eUV6}Nh?My$L2fAXbJs&Ix=SZ}SS$wyj ztCWnygcQ8hG$@jvGxQB3Bu|S?byBD+d z8iPmqnmdx7v4#>|6ROla*KZ&JhW$rN0)1!&v!+!Sv&hnilCCi}#`C8Hb3@o2-Si3= z%$w84O(*p9-`_M{;R;>sZyy#D$oxH%(t!xQ+7Uds6hacFPHiOPUIU{_q4l~qNDyJS zsKXOwL_vUe{w29>YTmq{CwPy*ir>ZxQN0yY5Oye?@vTS3Hy${vsD=VZ+MoUpR5M50 zg7+XhWp|3Wydb9u;5lASA~0=%T26iy3Xq=*tQZGN8)~12{^S5EnCmuDJHKN;Ug@qw z6I$c`o_m`!WE^aJC1o6G2Eg+isw3=Bi%|{{7ca8O<-PVEODH`D6@j1*owVO)Rt#9R!iE;u5FHu}9o%j#v=MKEdYh#6- zVS?DqeKb1Vr2ZH7#p7~ zt(m5hLiajSw4PP`KzA`KjFqWWeOVtK#6oxi^IHI1Nmf(X5t?N#JU{9iu+4AWgmq2L zKHNIMa1C+1mD@O=0P)BIqWI@$R1`8u)sVfG=Ms)^t zBvycN+kOBujn^LpgT80`PyGP~gPdLb46o>2h{z+~ynT{QN(@4bax!wIazaT@=xy$! z+>>DgbVZny6(05lAz9A-)&h3XO6S#EJV&AN@c1m@xS9L8_(=sGgN*uFS-$X7KSXWt zW>S}DnI(OVa$a1{=Jv-+3A3K`qAQdw7VNiLds<1?$t6k#EqYOH0kSb(MRt<*-0y}P zzGVt`af8#8t@_)YWaDZ8${rWuXaZ6#&;ZK zrnBPv2~M?4dhZGLbzT*tvFxxT#Vql;PMpt$3gpxRwM@lxSJCn(CrFe$5A&>{l270| z_F#jazm7Ae%ipu!gM5EqZ8vaUlkM3jo8uNV#e}==Ucx-!G2&ul34>DRxq?ZN6wC)h z+!FbamWM-_Qx17x4oCUivLnPWe=*IPy{M>bZ+`OPeDRiRE^e85{;2#eP?ucA)QgMe z;W8D8t&thwS0xT^&6OrQp~g?w%0CaVYj!-CA+Xcg zT?gT>QAJL6S*8OOFs84qUrTSvZF51f?LR9GXqZD!?C>D=qx$PjVNPpuCFXn1W3cg& zO%mVT!7y3xs#e%YPpa8!&EZ0i}g3kW@1KWFhohhqGCI~FIRvSAUI z@DWL-2Oz0b-?dz}*j1GhaHv*WWV|rWv4Y#$*^VJN=JimLR7=0Xm zUlpO4m!Lp+PbAnrV&U!Pj-b7MF^2scM47NSBeklnBN?U#bCRFyS3P3+#OIBkrHl1E zHCY%*x40F5*y)M*H|;4IMX&yfZW{iRK+od+WZ>f`ZewXHw-O5sqtgsy!PC#*D1|3M zo|NR#VEoJvQZ3)3w&Sh&IRtt<5RxU%@I;s^)S_?#`09vqAB>7tNVP$|ldgqC^yI2e zXspl42qH>IYwC_T@e5UDC9f`SZlyEyHUIvZspJOwHj}%Y71~0}RYM)e;6|mtd@M8T zA{w>UiO4wq0qgYiQ4D6>tVjQGAM1o1%-YH=jqYp6$Y}QKt<;bQrgjsYxp()W^*Jv7 z_YgSI;R_gE-l>7al-w{Ic&69UoQ3+Gkyvnp2P%&!od3KpoRX7{XNl`2AdW+C?XNPE z)^CAn@eoj{hU93YsRs#-GVdeJa?~jnUzal8CEc=M_9dU37^WR!$)Ax)2e8p(s+lcE zX5F2Z(pojnzBA=c@6$U0<45pQGtA^`brY1~pd9heToV32is8PCzx!?d!U3GYHbyZx zGrX%>q#Iu5L51?U$4TCMdT!4k0K1}%wYkjXyhv-`}u!7#5om5s6MYlQEz?9Adzl)`2P-? zHwCK~Zh|*xA3?G&B?YTTtb(_i3Bv2g`1xqiLJTUj)HhRx*Em~0Qk!tM?k($`tul`9)*I9ZA9b$MDxiv+aX)iYdy zKj?CS#_lUQ(PviKRgS8uU~B*_a#j;Zb?!ZfX(>-BLSES=H_r3jZkGeJx0cHoQ-Wmg z+OlwjIka9mOc#@}Uw>(|s@@fC{<85W&D<3R+uxiEKu~uAevNmn&4_~aK&p&Yw|>8atXo!J z$`$z(>s=gL?pAbu=%sT~v&-V=T;Q+lQQ|WkX5hd4z5R_-(tjpoXV+b$HF~BpC4$2l zC5~oQU@EN$DHds-jN@WWh#YJkF8wU;haL zh@aI34fv4&zhM_{>uVf1KSnhj9arU1^0`7Wm!iEv{TWnQ?@_Y3qSF@){mq4;%BwJ~ zLP83iKsU`bU(Uhz=|s)Asgy&p+v2mrxl-@zM+tVj&|~Mf=s@c6j~Wqxwi5>xQDCnoD1Zte@)}f_)Ds zU=kEus*;ea4=?Tj7IB?AeV5_Z>32o>;*aMV75osL_KUd|)&7gu;#auk44PV5llIGI zSM}723{)ka&;y~YL_?!r+)A^wtX&f?Y|=(IE!MWnb(D7|kkRF6`qsMnQ*pEwnV8JZ znz4?`ey|M>gmuwEARDP3^d;fz5=0UYXw1@ukAvO4dZJunWWeC<5FLs`mj?s*YHh5t zxMtY`TddzQh7X?rEsI$E%?6<*q#|X^J-U4cYeACtC>q9GB5A1Pqm8rNKJ-=6ly&dc zCLBubSt2tK>!m@n1|1$?USaKG6vrk5vNIN-q^)U;7~=Re!1SO^sGWARiHl`lM&ZRm zCuC2unV#UTQr&7uoLR30*lc#Y7{Ju#$2iEK21OTf6)P-6_E|go#8S+PO?k9MWEQHl z)@vqPc}BndTc^VO}Zr`%eTySZW5! z3@^gnE+z6`Ohjiwnr-r4!8*c~`Uo11d_ee-?x3;Vfml5QzELz!cka-NMigWd^>#qi z2kA~W-d@;zN&WB+}HBjbBF!W7ZOIprrfR={&k%C;k zP2yU?aZV$3qgyGQdCo zt!*TmgTV?38&Px(cQ-=~tf|FSCZivj{=x|HE;adVMJn_(G^h@n&4bJECU3LxxIlj_ zYqL>jE*M(ViGkPNut4C{&n(D@?F4kOl|O7~wHShUM&?Pl^Y&#o0= zY4EoU$M{cF5ow-%XBCM+&A)`fPo&vs-fP1@hqf=6I}Cb_UTN~;1yw!_dUe_$cWS;5 z6(4r-kAO4C81$nwcy9XelCiY0byX%)+RsHf=a6;mug&r#8gzWRc_XILLMTHgs0=Dk zEcr396&8$&Pid=y&_-yg9eelt{td^!@~$la0rM)NzTBp??z4ChUi^X4yDC`Ni~MA5 zhPSOH7hu{E!2iugW|yljPH#RUONcxAxH$4q0;aKtb78$h^o-7fX2pv7-_K)6_mX0?pN&S7Z_=P^M;@ zZLkh!OBxN>XOt-G(O6Mv`zS&b7Y^u zC?BI-%#^`=9pdWHregte0@c1DT;kq!1k1#tVyIo$X=g-{zA^4`tR(@HR#iQh={Rn& zwwLpPcF48jh%Q27#{_TdV?EMcucA2P1uB)%LPKUXS4jIIpy%Zmid~C0e+3)IJUeUY zQN`ibgf0nu z!Nq*L@6b~{U|SnMt=@^tVu3$8w1RN5+9TKz1|~@u7r1~qivvkA7x^i?KgW%Gsqzvd z?a+Lazb!iA<^K0(=zow`SOlFSGFtR!F^vB86W z1d2-j0BD|rxNBP7lkJ5x zQsWTfk-N8He)S83TDe95eizk?S|k~co2CAB!msmGB`B&yLP+CO5jgO7hKhS8IE5Mm zNbNK%u&p86mIM z-W5@0(poqMdV820;@bP(vID(m{KT}8SP_?dv9+zT>9zmOLGga9oi42?vE#iBj7m6t zMd$(CaR6mmO#h4>Au_~T{V0esV`#hGjZdN6&oznY=FfL-g36zCHVEW7- z6Z2b%H!)Ua`9rhKEYq*LSPv#Nrz29{fC--h3QKZ`gMrD4xf^fgR_y7yn%zUjnkK%>t8UbFTLIWz6vI$ zuf*Q3@BN=u{9}G&`tPdv7jo^tw5~DH{|hC>`sGmj&wcUl+umO%@&7CLtn)u}&w9lE znO$eo_3s6d{gHZO=;$)FdNcvb`jvauKo&{uN$SD)B5`EwyQiuWk3#06l%V1Ci?ojV zro8Jfy`!bAtnfR%+qXeVI?R~zyYi!S zl&#m+5!;9dM80oVzVArypN}$VqR-^0jG_L3PZ>t6im#@(&xcfv$J^n@!y4OBwlJYE z;AH#t@&X4mI|9s2tc-qEAWu4_&lZ2%kxz%L_X9EuYkgkM{9#_scI({{Mfxwg_TPt# z^qA{`zdmm!&NOQPg5qs-b^LrAy zzzHzOOE}~WRK~TSo8ik!R$>CO_A+OQXRMi}^}zAolfuRS39$kADWXz7o=kjCm9s!K z(arda_;UaXeK=RbOP)?QpH-H)PyN}BnM5`c%;B9(axR*zEiEg|%;Cn~qlmnh?D84C z>l<=YAHgk(FW3t!PXzhP?e**o0@SOU#VHcb_uyL1rTnnIJV@ zDAVg@Qia|J_(z(2tJzfe$?^&FqW%fEZ`d=^mtUQ4wEV_>Khzu;=G#C+;fAL1XC`we zv@XbYESmllTYm7;QfUg%46Me|mo39ijaaNku>7$3fzY{`76ov(k|dbg0%$BE5nPil zzb<01e3ggFS)bPZ&Mr zvbT9~)!R|t1Umfn@NiBM4STo8n40+V5n?hQ*OmQ2%n|oJExMmk5uNSRI#a zg-Kh-_P5E`m?<*60i=@|1HHj*L};;4%D|}fJV6-0{Fr$1kl1AQ3;MiqA^c)lk;M4d zUsZ6o1;v80`0_Xxg+OxKCI$!hYD=zlKHsTEdc~|)q629z`2_{Dn^y|IzPN;*Hi=ue^f9rwl zweT-cveYR33Y3Pw`(MJDf^qz+A7GhMOQKUJviaM1LEowrYLMPOL0tgqMHwB5h9e6? zy(%#E7W`$u?6kIIE0tTl_(QNy1Ou=jwjd-k>jshsPqBED;>kqNssq}?y^M^F__NdZ z)L>s9i>aO$28Xw=%E`DL{eF>F`_LdAK?bdXWy@o92s921_jJs1@gKwOqoA5luNWK7 zoYN)f+^E-$OZ)-UjU(LSBiumP2(8}=bmj5bvONZW3PFxwtsqi&DtGj?6vpN%^5!72 z+W_wc@% zKwzBpjIl7iz(V2=qS;1Fg5`fku8NIQFmJw`5;37%0{oIFBflTg!v-;5S4-~dd;305 z@ionY!{cY!JV>F`t|YSL5%>A}YYmh)$$%n! zD-7+c=#AJqzi)lrDZUc8qwETB2GTuf)-RTI6^c|qRrvlXl8qx*v?B`G@CWFK%r*Iw#Xxw<vBYpDCs-4LJ@l zI}+WNB2|R4x0gDyMeN( zfBf-}dB^PJ-5P|ju;X(Z*JusV;u>L0yc2eEC`z=jEcT7bosG8cfq(L3CRJ;7UU>wsz%n}6hB9H@$=gv_>Ox^$obj7;eeD!Fz}D-KiUO! zx4RFxT9|`;OK1#}OngHi0+ZHKFgzGXO=~fPQnE+$@~PKWo+jDsGTppfC^%(D!=ENz z#tdHrk|C$qicHF8t}~7CC+gb_%itS5)GKQMOz|^#rKj{J zM!{TA*kGsI{d}r6bSMR1A+>BD)#3bb#%flv#XTuT%PgSAhvVN}G^rlTB1b*uO~ZJw zHE6T8ccj+O9+lp}e&K7N8#|97R&b33XwaaAj$*PH-(z@VvVZRu%GZphPwxv{1AD`T90&#AtMC;I^K2x%MdnBp8pGt6Tl=ozrR90^;f(awT9Qg|> zn(*Ag1IkRsn-&^Tf}PGFU)%s&e~!)?1jb?>h***lufTr*hh3a`a~~_2KjRiM0*jVU z?-A50Ezs!h=YpKTca{_0hnZo@VC=5~zb99!ijt4~&*ldjKB1PD?METh&_Dw#N-uZ7 zTXf?L$>4c7R4L=i=(Kqt)mQ-R?Y4VBHJogiT6s8{li^`3tjMp2EP!HJIFGMSLok-& z3&Kg(!hswY+$G9Jlu_xUx7Z~Y<7U||r)(~{pfP7~2pWAhxJvC0fwQ6Y)UJ$O@tnd7 zfuD(<*k_4t!L0s;IYGp=mm0!7Z?7Z3(7fmaqeM4YTtR}FDWHH!9j=p7NatCOm|qpj zUTOGgsBd>ISJYu`8JH7pekyYVC4aOE`gVaWeDx~0Qxq=LX}&pIev38M6vvqa=r($x z7c-uf!IabQfquTd=~iY)#CP{!7>$G6TD)rRgyk(95xqo7fDflBt{9UV}c_=WX84=+8g9F&QX4YszROUc@!O_Rx!1Ki_LSl_eh+zESS?X^Ufi%8rW2H@^>vG$>J-RN7IxDbp?`zXOL z0@`$Jn`>W%h5K@a zrYNL&%K+zXRXKBT&Hk9Oo_X#`)HIOEG|PA%*remECT)E_>M6%}!ybJymz}-QSO6;TIYvqI!7?Iko7B$ zcZ+k)9Bx6)3ad26@->N%ba1lCF(JDqv1-)myjk>U=C~BH{4|8X5NIWI-T93h#B%u9 zJFwOE{ax}~xsf#2zNF;O)MVi&8cw#LMgr@ZK4lJ4szrPHhHP=>Ul$VOV3i+^TI)2x z?C6)zl*p`8T*Ae)L`Mr85pv9lPYseqZnuPINNfj}%O2RAKX40Ty5Dc_xzd`-QX~Ub z4`SAeD(NbOPR&+Nd-rWuPeC2ntUGh45UvaB^C>R{-r^X=1VpwnjDQXTx@ZJ9B~v7` zj!D|-B8ad(PJhOBgWx4hD=SXs`;`!HKe;T7dG2p8`Q3k2X~1dJ{0+Y~JRrm8u2rx+ zO|LbC-;VgRdCc_bWrCbVeGAem>(ehKXPY#K4`b1cxSlm*&Qm&9q3&-2*DhaAo7Ol` z;_AW~!;p*=zMV0G3r5Q zrfr1)4or&;e(s;ldVgAn^P}Mc#J7`UkhXFN+{u5ll=KiE-5*1HA+PEpo^2bYuCA?Q z7_m1dGk0|q!nxngM%C`Fz}EC^5lkx463ud><_`NA!0d~G3shrxpwzEY|km@nXY;EFcT zBSv+>Pgk6*DW#!rJ&^MP5KDKvw5K5U;4h8ZkS@0bhtZG}y+K0XWv5&n;(P*e`h1Do ze`3lLNk`!fmMH6p*##n4y(P^g9nOkpcd-U22{yy?s(}f*jmwjmV9v!!A>}FlwP>Q} zsa%uz$X>VN_4)NVcne`!49gKsrJ$3p!_(Za4f}8sLPt!f#di)gb5zTc1q7+O*<8zK z24al`rtnu!9+z&|Gw=lrDUjwm)kPiz%Ly>+nGZWL_Y$NQa+tDD3?`ERI~^rNmgqI=vPOIbGNU z+Z5}>&Yqv!Qy5+-?<8BV5|f*>xbd)1%?6)2GZk%w#{idME@qB@U7 zIm#1nV6rz=S`Bo+y8b%5czBr7g(ZiM#U%)njLzf+551)-zY;^-9)iC)D; zwZWfWWSIT#!?MQTQ95mthF?(6W+h66X{0%s~-cgjPW7ci=)62 z4d2YbD#mguBICO*1P&)^B1`A7DV@IaR&uO^vw-%q}a01hO@85mM@IHfE<@CF-=dtvP0GOi(y2=2@Jt z)vF{J&=}w>JKD37d*WEIx;oWnt}~DPU&Os-P+aSRE{waoySux)ySoQ>cXubjH9&B8 zcL?qd!3hL+hp+dZxo6Iv*>Z1vKjsfqQQg%~ziZW^>QT)zlMAhFb=#5#&YlRJx(8xm z(^?PMy-ZY6VZ{8ny0aD&MB;bpV(XVQ3T4x9JNx%Cdn!#^ju^ph{qnAwM#kfwrKYgH zQ!mwX@<;6~(D~!I`|rNXs5d#dQE0gWHl&)?UNsEfXoo}VQ(w5cd2>4Z{fE1+Yr{0s zv(_896x*_>vC$%rTC}eAGB~nE&&0W5hUX1DZ-h?2MmDi>;I{}y z@9dA%i8zVO9kYI-s-E^!7?mn$6>XPDLZy%GsY#u0znXn-Yo=6a;6*?^%k?U-Jmju1 zLDr77%U=sIw+*1JpTL+RG?`dZ3uIyZ1)==Z{yihhqj(s&lM>`7Bt9=o#~`GDoGis| zyWz~$f!|4hMIOI7elyzV8kc^NkDX4?2dd(xK)L zo4We36qga}+orYr%7|f8xpurE$I(UC${$eJ7B7vQK{Y;!92&Zz99FN;ucEPasE>Q` zqZF6xScMdq+=}Wnv7efcKgO_^khOqjhF2~B8EgdF{aBYbnJGR<<8hvyiQ-x4dx*cJ=$cZd*q0VMtae!@SK*skM1OBXTPXU zCSx~p3cs^8oD{z}k=h1ekB?|!X1D-ZFIqY0UU9hk;jij>Vc-^`6`i)$-yzGl;vR3; zf}JDl8mYFMU)$|%mXp?D(GmY`n^UZyH^C$Xq^~tDu77Mz854??dM>Pwa3ETBVzn`; z{2CKk^Nw+Xp5QZ=K**rO2k>s@UY=G%EK=&F4V0jKO zO2`IiA7kYJbSQE%Fth%Z2FComsP-?xh3&Wbmj5ZZ{GkJl1E8_}m(=km=fupx_1g#k z=TagI^Y2ZPY=E*p?*H3;LJq)!+@HYsLkk)Q(?95yY=A<#-wl2NVD~ z^UqNHp~;ei`Jbu+e=DQ|OcVZ&f|Z%=H(8SH{{_Wg+!%jUM*%n8Kb!>@1KV#4g@86u zz%O<-20&PZ1<=&T{FmFAzt0K%>xuxx+&?>uKZ>Kw|E@~@wGzk9!u0$5{yl&q>$1m{ z+^s4028mZ3#UhUcM2L%yzT@3mLec)odp$lwbOg^bipEJMwG(aA{-dbt)L~-+Oqw4^ zC;3YyPwOoSD=^vhl{tx*m-^xXUEad(+sk-G`xNDk35|bGr#}Dd%k}+JLF+5~hX%t< zyBrsuk0DU337p6L|oLkvMF1 zw{@lhGAIkX?)Ud`p<7`f0#Ry-mPu5oMVFKOujeIMV!pZq{6n1HX&e{+0O{@_3F||5 zZ5=g7lpwXgKs+N*9>FMmbMcbmd@^J#bG>Yl_#~f1uq*uYA8!kE7&8V zevC*-9TUaAKrxRMt2yQSK)>C$Vr41UVeEOL?QDeaff-yXE7lW9zm(!ih?GI2y|`Mu zWHHWBeD^+nt%(#7P;tUbFG^UbSpHs|@|`Hv&y|fd2Mc}wQucEZBi-!eqeysR1>+tp zKZ>F9ZrUS?+6v0nK6^Ll8%KAf*Nm~6h2B9%n+ zk_WawMI1s1VclkId@w+Z`{X>|s)XWhapZh6{Z%JzUxL2RYS)#ypN+}C9K^o7FtoV{ z4oiBB>-#grvo-GN4W#kO!&Irz!7z7{GDgwWPKH`?(znzgU*pi&P&K57-%6ySNpLn7 z_c#^m>tNI_9wDy0<}bsr{hCA%9=u*GTmz*pi;x8RpwLMWNn_!XsZeFWGgiMs;HZ8> zO5axM7owb_s%x_hE_h)S&#`el5U3Fw&uZ=T`kwZEg)y(&A7kfW`sq3g3w=B$PavKf z2rPR-jf}X}rtTBum{M}A!o6!o0=E}}OOz)65mDUh1hd0pA`ygO0WBOh=5Cn~r2}&q zr-`zoj9V;4Qv_Eg!!7N}lQ&&qQY)b$85mTrE_XTj`A=R?T}KgKh}ghidq)H!pPVOY zhNXLr%JRs5uGls%h?eI5l-1jUddJGvY4qgU_7OlpvxLZa3oM{92XUbz-U^RzZIa)s z8A39YLfl6W%r4$4wRr;$i7~+v zA}sJWh^#Ti?vDqtdj`scg=b`VUepTCthh3-^9_YhUw-7RuojbkMrbjO?}^&3=PvIm zYZW!R&EPoMj8Fgz;X9B_cN%aQ zhS$+#^bt+JA`t0mRC>lakWWzZb#5#R*yhy;$psrtz_Q1HP`+?XYt6B|$!|%HU$Rm5 z7%*VLQG;@sJB5VfoO43DL!lXS;4;F~pOj)%2w7l4WVmZ5XHoJKxe-uXejW((Mr_d_ ztbZtwn}}F>_b6x)czfOH@BKKYe3lCLEGU9ie}%45G89;ES)PpmduLsC9a^%x@}Kh! zU%rBz?`CsNdbJdg>JsJnd_DF~5$oQaaxF{MKuadVh?|N)llO>sfciuvA?J7|PZwH| z6x2f#C4Oi3k+NlJCs@#2dZ`FK>#QG)$kjLb*_2KQ;{eC7+W6Dr5N%6JnjsUdl`Bur zP^+-jrHJZBh2Wvuy2{ENQm!LO5dqxiASI zUb07K?as6w6d6m!aj_j@&;p4whiM+PPt7Xk=9lQ(_J-nsy_5k#Gp3Rl3cxNnD?XmV z6z&aAR*#bA<+B>ljcPKMHwDs;HnrqpfDC(p8#rvoIHIZyFfvs)drCwJdqmm$xRfnq zBe!s{L?#c!{QAOlPt=O;_hkphPV7UiF;4Kc$#Gr4G~|1?=pO8#3y~I)+OgC=+Rh^P z*n*iqB4JQq0n(ZD65mIN5ckz3RL~ET*|yGvPW$|1?6x3;CjqtGDBO|TZciz!xeH`KvB$Eu8bcLJHd?UAQDNhG_^S;{Pfw+TF z2W}_Cl?;ovDWBs3*ZQPtht!kR?w!4mfcE-55_L!!g0FP{QpRiOu#)MXe4mdEtIpP` z0W@<&vesSW@&U#AymlBa-N(weOOoA>FLnY7zOUBp(D-$ zWq;RrfCkcA@HciVlyrV^ACyzNX_!RA-kb+6T#-c{GTX8ABm^<0<6co_oD&H=6kcAq zxS=nTJ#1O9;CP=oz?{%aLMfr{cseVwr7fe@0oKsC#_+@`@;Yb}4(eBiviLm4ww#N^ zUh{~glKNa12+X+-%gU=57?tVRex{j67Zs4J$j`E)&&&|;aweFuN^oPf`>Jq6?Y+g8 z!Wg<36F-+}3hFLMV})_pJ{O!%mlMrL;XGLR1r0MavynNx zVQ;ymBn=wIgWkXaT!l|FErzE`$fl;#n~nv`Z;GuQ8|ac!K*c4cJ9C+M!kIeKE9^Nz1& z^oz4Lrl)ih1BF{jg4hr0B5*hc`)U&9((9pC>L417{FF>{`zF*<(ihY0Z0ki35m^=C zSQ&B{l;aEp1yU$p6n?gdVT~!`iiqq%?#5Ai2~a}tImy_?s2R`iHhIHF2Fe)3 zImQv6ttyM$t!z1PJ%3f^Ch>2vAC>BCqL`Pe8D7Urxg>TAVGehm_6xy8L6OOqN_b;P zJ)D-C;M2l9M>5)mAc`<0@*@XIUQ9WePv>FI}^5YLPDq3t)Jpk$1x-OX!v;b z9))mU=;x$S(%<-fWda4I>Zt&a1v5}yHhXIxH;&@RxG79$0tuyV=nubJ&HE52hB$@Y zm`_-XV8%@^8Xd0YfiGdfS(mK?6qScjy{z!Mfku#+f!l4lri~wzLwC-$zJl3%*ueLs zAZvl2+_W4!Ay>ltr(N+(nieZ;U>B7ny&kY}%>uaDHs0LiqthnLD8-ta_uH5QFsP(; ztTs@F8EOVHXyk+=KS#JRg)PC!3|K>w(%56WawCDq`m!~@BKX{vmqTM_UuM0q!KrLD z5;Sm6N2B_Uz-MkthNNfOaz08s$y|!{(RMsyA#yW4vfL*5xH)wHXvdpQq*1$v>Rejl zEDpYaTyZMnm%NdIKQ#xLHx@-?lfJ4AliefqsI~s+Lq;!U&8!Pz>p?NUMou7lA6uve zjVxUCiTiMo>YFsKYvQ)k&*9$(R zQ=^zM<5XUhF>9qqWhzwHyUE9wwKw z%<>id)Lt#O-JG1qSPe-5h^H-1lEf14a z-O$FEMB+JdDD;6^_V~k`?`h2^kdFz&&k38#*zMz=Cp1KiO1sWHZp|1+o3z~718uS^ zpy`2UjlsUE)z&)p*`Cz1edrlKFN0@kMNA|H=>DNn>u-}6QnSyH6N|9~JtsxM8 zw*A0}WYcIpLXWZ(w&Y?!XmeA%HRi_z`!=vdR8Y2TCzH%Tvh2 zaee_FcQ6yEqM9t9@?`Ik&TNmaJ`9>tJ13#C;W$T_Q7uQc=khv=2h z0<1OrezQ9>HSM$O3Q})}RjXVgAN}N-J-sA&=7p_RCjuI zM&mDTYU^X83u)A1WG0=J+FRC6`#_TID{>grl-CYtw!5=Ii{=5J-1GQDfr8SaQZAT1 zgMl&oGH?_r(cMZet3aJRwONZ^#xz&GVoAK>CXDLAIzN+*lh!eQ(h5;NSW)n}AhGN4 z^HD{R3%`>2hJaznk$i+i1*c27Zv%e8`SF4`J%JKIb2NS>Cf7-}6Rgk*NZ_dgVb+6fKMq_a|4WH4IzF)I~FY?@I7qwX6NPUhwu^ zx|OJ7W-tVNohD*BWHB=q?o||K0#(+1ARb%1!lCeAeu2#ltL{LG6N*O#-h`*D9HBTa zRvU*NHo+EaB<#3B?v&Ert}_ZqL0j793-=?1IDzsvU=n(Ug;Z?=D^rKe1cOn?vskXi zm&V{UH!~}@N_%HviAJMcvel0bcil1ME;w2d!~zL@EtdM6n!m2+*o4fBDo3YXnqTh+ zU`d7{3y;#DeGqAwcr;eXH+jDiTYplG8g^PCR{jK&HkdlFFBRF)Nl*1Gb!9zcm_GmCt2m3D)(IV*j8h`Ru8I#fGeJW11))0$Bu5<^nkX&8=L zEH^|UH|h2fKTSgQ)AXk93RRTO<4j^FuXm}puI;7uLhct{=&D80#r5+Bj>wMlna8*k ziPI9`4#^2;+jvoRsUNIZ^xkXO;$nPb2&A|)U)8o{zJ3VqZ_qMP975q3SmDyxA&Xx@ zK=Xa=Ixd^p5Mr;Qtmpquux8PBxa;+xliO@hLfWFB9;2l!4I3EIE15klxTV> zCB;kmh%zFa?xn>m5<97lRNpd4`K?=+avbzAb(M-@3xzL)G}?Ybo2Vh}jt*`&Mf_<2 zVj#S0pK(kNn9F)h8L6zn(OD$M*ad^`aL;g*4Qg`x#$O|Q{{VN|Ja@u_^p_RwulAf5 zQV<#!4WR@4kOE4noQm$Q34}x1@MC-LUt&hfaNE>6Mji=u!j;*gg;R z2y@~i9++W|GHyP0`ArxH&T$<*Vqmqr3o$F%>yTI2o4r*Sk=X_YCc#|Xd=5X<`Nlzg z3i9PFSR&n93(Cj`uT{g&8HO5ed^bYhxH`~EH*2U_=+jUufqjbRfh<3^qB=&LbZgU9 zai!t>(<*f6Y(;<74~sgiWTKA-# zZf3HtNk@%F#FUR>z?ZVDe_lbcxR!zTvwBZ9o2Sh^oL;K0s`EqddNozwRSp@8CLskq zQ-yxO=90*sa*j1D9ZaJb*1po*rL4hyh5ho#!2K@cJDrH2u{%HVQ3U#nDq^&hEU*%< zBumm@!CV)j(brGaq9!7AI*b$WK%~TC_W2@Ci$yauhbY*ciKps8aI>tf<-2GeM`-9~ zk^SVV*57(qnpI`JNhl((75Co{!c! z$rxe?-(U(BcQ4n;vQj$9LFr<0CoreHxl84v3T?XRO#fRZB(K_nmo-E4n8mj&9YI~E zkP>*Y7AAQ{i7AbaDlG|!27BE-@b%cz8=Z;vL#6b5oD;iQO9Wj`YO>*NgD@=9Ry`++ zJT)}4s0fHr&baT?WL{eP_vt3P0XjztDlh#eQ2``ohG@+q+HIR(9Wl`tKJEHEoF;;d z3&n^lAKX9w(4g(S6J@6UWG?(bgN>_#bxP;%Io5@f!QbjIq!Mf*Ks|iw8>^a2h}J+@ zpUeZlkMMGOKN$L$e+!D%S&08D3JBZ1Yi(0T>t~B?!nIoS*Tgmt*4AzYC$AXgBSWZ+3m=@nid2&X#8%JZ`wA%XzpC@)b4Yl*3G@724(7D z*`GRbkQN#obw}i|ZYox0us7h+2>9_VRO6QJE5A!9x-=3aTTDBV+;1i&BXrd*VT7%K zUgoDKg+B%O73xa-Y1)Q^`5#gX|LbA{Ah_|jWbSWK7r>YJOaIyal znfrgUKEulV$8^VUYf^v5um7I00calo3FEh{$NwvgKaILD|1sXd{14I#3kP6!2S8>6 zGA@9Zvi!#u4hsMc$6qNgzt2AXi`i!VZTaYb2rtZkn84v+{s-ZOg`4%ay{i8N0SGkx z76STP5WjEx{0jsJASUxCApWTSF#m(>!pg$T0GNaMKOoovcL~QofcQh&25=|+8Hhh> zKfmb!e|J|fGXw5JB4#GQPfj9cb|wY@YGxKdAndQM#(&qr0263`auR=(epvopbopzc zfsLK>ckuruGz{qjga!_j?vAk!U`Z<*IaJ1Axnh+AFSDhx95UW}iU>J`MmgQF@AZ;J zpOyrz06kZjoB3w^Kp7mkYuqdK!%NFRIC1AS9esN#UaW02lJGC@FMBE9s3rG)CBHfO z`ujZmym}hYcYC$*;?MXpx$o}o>mD%Ms~b==Hg5esfOrZ>^qh|G2xk^u)@%nC(=`~% z6R&jg@IAgc*t&aOKEGaWKT1w8u-jjzXz$In6jFUMd{wA-jm z39}cJJ}SroPtyLpwynKDfvXCb)BAv!4CEK{C=TLM%$iw__#NqCQLbntN>EVjfGD|c z)2OL%Nk07SPF#XAU|#UJygpf*ev3=d)n3J=Zuo?HVQz9%nR1fZK52@LbD0W!+<3I_ zp`05vOfd&{O7P{z!qJ&G`F<9X_oi`4r@m%)OGv>OB(pvl^CINpNZ)eHp}nq*S^Y&omMl4s#dOW3Mlht8(tT8f{lGM7gKM$ZTt`a-6Z@t-M%L^r6DVY*7Mn5~vk|=9GM0bRs@)P_;HSudhgK73TSqH4;=Wsy>{9(Wah)A|x4S{Y1m1tA!Z%~-}_gsf8PQ?cJrAaT7gB-N%o z?xvS|dC-<+mBS7+# z;Gr70sgQ68I)vs`hy+F_-y-ISvkn=BH9}xiG;*hA@RUZ zwLH{oK?t9u;ew%#6M2S38za36{Y1C@!0C#Vb&uAj{%O`bW$40I9##-oxmf-plj%c; zLjAx*t5Qm~_yT0jpYpRW%l`An}8Z& z%FMp!B0l6`eiuDycRSGY*2xj*$j~iJw+nkf!=t9kifM^ONaPN5xJtt+lerx>6o>Rw zx11;!Xa~HWH@60~7#efU{|klb&B>&P01tZ5tuM$6MaxYPBV6})Dr}|#v^TcLpot~6 zN(+nLTuz~=Sj>gtEN7nneeYGdZ6%??i^zwsi?OLVJ1~OV*9S$N4m)NRdb#eh$KjcirDh#sxpxlsM53G}u3{_L4RyX%_c3+_4hTgB%uhtO6B{{H9uJ2Gy&K zAiEyO9lE#S0o5ij|7*@a+(ORNQnS{ms>>~&vOA-{gAqUe)6=6+!j%xaV-N`zh~Uf|k}oJ`pM65=5%CXVJs~R}q3|kv5K0O% zyc^GAgsUY7Jj;&*~qr7aIv3xJAWNzptpihO-*DNnm>vd8r#VpqFSowM;F5Q z_0UQs&R?yhz(=zX^QOfn8LSnm%M@xh25TK%^l?9Cm*+7^qcJQQbDX;o<;>WzO~w-n zk~Vooojc>l`ku#mv{#9d6=q2uKRE%k9|QxtH%l9@@TDD*pb;cH>feai;7He!T z+vqWSEK{Tlr!Twfy(QQB9OOp0FW36Dd=tiELLH)SH?S1NjD28w9GT(VfR4aKA~~Er zi@=t4#(&b~S{hNv=8eJ1FsMaY=*Nyh>%gF*%I&K+m;Mn?NFhphRfnL@t>2CPG2 z%D9R41<%3o_AB!%xPy4|c)aW}dK6!>b(h~4XDr*>}rAO`XhgCcuik8)ln%N41ZfI*=5+UPCN&kaJPhqtiuxP^k4 z40T5yYiv6QdGmAcCwKG8HA(XXz@x#mAVihXbWs3ezwl=vsL%`t**oK^ts|=oz8(<~ zc#u4<@PT))0JvKg5ru#=#gSuVi=Eq=r#zXXnSb)$F=Fjs0r9jz!=(bTOb!>7lxx9Poq=uCpu5 zd;7bkuBNM*cS3@qMKc8r4j|ESy?YnN7`N0PD?-Va#-uK-+UZ+0Ax+hFrBg&h`~)cs zB+8qwVKB`@9)o^NmOtIqR&jqi5P#Du^ap+xUHd2{o{1GSiL{(2nvuCx@R=@FV%ebp z^Qoiq@t+u;BIH%ds*4La=1X5VAM%@Mlw)P{@+Xo4mBPwtX3Rc#imLBaCC}IxAtHA- zcL%**i#K=*)la40o9Sz%p1atC!TWaMI7|&M4Xn8gF4Qq0%E&VBvn9@pSbNiq*HGPJ zH>;X1l0S4OgFevs5;T>>ZDk7u<(T~9HN0CIHI779I zE5se$h}!(@{}Zw$NUYy(}@p?7g~L7RU*e5(0u2*3XQ zegcJ5J)hDXE%%R70>6Dn*idmOAo-aOli`DqHd{_`0~3>yZ7dh0!58f#xL^1k@S7D8 z`*F?VKV{MfZDSgTCEQ!b#AXdkk5;}1`rg`_0hRI}t@_2?X;`vray#=dN24X50y9Hl zdm31}0=l!~V$5~~IC;*}s3pi}(^RCOk86NtV0DTO><+}B^ndU%3u{kPxiF~E62a|G z_kgitg6WJOH=nHt<+l2FHPe@dlpTu~d3m98C4-s_47r!tYR9(6c<$rD-WuO*-xHsn zs;hV`qh73x!cOY!(e-lO*Nkc2VqS0~ECKE^2L_;9Ps8s?v5xTx=)u+aC#HeW-!6OWa`5~bNhpU> zX1gpj*!fCTLs(h`>Wsr0o@@6$h%fCZw0wGR?c@QOJ;||9b>)zHy!xd%x~UMdrcl4x z$X5Lg?UA3jOKuj&@rP5cA8pO34Kjvz8T)Da8EHZZ-ktM;Fr!;2mbS3_0D$C!Q`^ zypv2yV9k`X`j|BR+XR7oSNB;;J+!+U(5@GlHI5+1%FH;X$<|o0>{L5-8{>EXRr&>k zF+cDAOK%Oe(QgJXcn=g6=p~ zz8JpO+IyMHy0$M%5c6UJUP~HBXW2m?Jl~!XY%nEKXw76~FO-w2^3WQM^S;+vFcICQ zA`688KSV1*SW&Y%gOd@(L68&p_!B+v0$Hhesz?J}oZ@dQODwj9SB!!>LYw}K*()^P z!MFRUJr4W~$DccP?&uhI5ni^6cH>oC_Su(|d&#w;zy(GZd>h+UK{$aL zzus*n28qdPvt@-@#0bAPed)nNbOe4Uv4Y!}n$WG3zUGpCT$ozoe? z_7UW{NrH*8pHguq;6JBtx#Gyz=g#Y)NEi?y-m-3s*y#XDyJKl~B|l&*j_S+mH{r2g z)q3!d8V}oRpn)22N7DM5y*aS{`M@^ja@t(hSc|X9}3&ivWfj}OhGmKg7L0%gmgo}T= zd&J1D8$HFTror1&rRWI~ZMHxExw1{AN3>3Na^hz`Gm!(t0PGmoB5T^$NL$rYDUnD! zj1l6-s?~5Mqbz`jAhkyK)&`X_6S4~`rLh@TY}ozC3*)F88ot>;B(nWRaCol(F} zPrer>VcljCix2n6n$@i~=X{Mwh@t$;CzeKeZB{6i4Q9thqBHEBU>;LZ-8%jpd0fG^ zkeCH2*;XV$pp$ij570spER{c}djb7Be@j^XuhYFO|L&Uo6H_-Epv#9HF#OKRz|Bd- z4xl*!!`AE^>FNG&l-i$rcbWg_AO`dU{p~Taa0B|40L$xK08crfQHYh90kDP5 z#?1|&J^wG6y}y9*M+-54HvM}T0Ai6Fz$mf-9OkS52Qz^2l{|m<75RBYhzn|iN5sY2>b}s9!$nUusuaLfOe9z4INXPHlb2iwke7oA( zIuO~!S8dIt$;$FY_(~xmLhR@%h?~DIPX;=-1HF+F-(rpcAApRBpd_+Ar_9Fw^7?|8#D| zAD?BxcHuT@fcEXK1CWbiRC=JO9}QAc-toBUP}&Q!44@;dD9%* zP=u$-h^CaWatnSjp(I;LOGDTf_5wRk3bsWzh7@`}MZvvSqNrt>HM0UaiM+s^vsZL; z&@(~^Jz~bLMo|`fF6Z$SoO><~gFgy~Yc5ICYti46)gEzITCTj9WKx&XlMPNEC5Ux5 z&T}vDR~$8BI6@<(m;XMj_^shM(Yry+|Jd#SGy~Z_}5_W`Rli9AI`t zW0i=nFEgfdlm_KwDDQn1dQGmOKv1)zPdteq$WI7lm|Z^vDo_yfH|{doJL_UrDYS`A zw-mPwSs!*q>%EN%ZQb5C7gr3BaN2>EgWrf2fW=S?#<+~G48}A^2n55rlmHZCd1?@U zRtLlv8W!Ysp9!qzqzA>v3y4l=u{{$ooRC%rl^sU)Z@o=0%fOnTrxakSwH;1i#FQ%v zordwwkpes8)1laD+>xH~?^bmZa0c62a020MODKi!pL}8L7~>++SaB?Q4)Lm=3Muhm zR>x>aln%ILd^lgQYb>Bu=xzHs8Sse{^zd`KBZC&WBc<&S%3Utq?)Qa$*&0oE^WZ|= zEnumy5U6j7b2;SmV7o-}N((nEVl+1QNYWjW>n|r=BPP}b4#CBRo`1*t+$y?Qo!9px zc9g>wkg+y)$0Fd?&WZME_An~+Du^gZg}7@)MufU2n_6DIsk#u_F%|k|KF#v%f{4^E z5fay~v|r)G)ISI;t1-=SJn{q?dc3$v}Fj~?hD zqEtc=65vy~`mw-7u|Xq4P3*vm==$D}Q;G2UQ3iFEAnHJMcpx2%#YKtm?ejm>_j#yg z=gufM!XF|f^Qe2UA6j^Vj9!zS^PsUKqkAbJR9Y2jp}3Gs>O(oCp?&zPnuoBi7;Oo9 zBwE1*QtYBDD<9;7g;JM&>;lD;7*eC%i&ZSB<%u;f+nL2fM=`;sd2OOt&odyhayJKP z!h*!Jn1(?MiRDA*M!<}9wGWF;Q!D{P+XURaIoy$zS>-z9t&S$}nH8MY(+>6G@4Vrz z>m=)|h^43rqo3fOv8ep-9b9dnewsn+Om5SZ1}vG8&&H`IY`^TViU(afMrHnt$B04y zLL<9osE+!+=mYhjD{{%Ad+184Z-910qg!0{%cpJE?kVasM~1E|PdA(sJbbWE@s!vh z`n72!hsSYe2r~a8tv*2q17Z#1be9JMqP_mPp`py_#DfkIxHgkgyP@ck?yFLDA$&cDsuNIb~g$ zM>I)TqP1V`H%#*JFAQB6h3C>BA$JO)`o?e!&PV*VKJJnkaQh5xX-86`(%}y>vNGsN z^mqt~{7wI1{$}GKbZd_E5?7GgtqjsJ7ZsY{LsW}ic{N!=~8lM5c5Z6ggK>^>o_WP z6YoL3<{*h}XuhPirO}*3_>QuwS`i0+*1ihWCfeWwvLj}Tm9WjFPt}eFCM4%m!z**< zKjSE%bQCL>czy{#$tB3ouiXrF8E1dhaorZ%C&(r{wq5!jlPvwkV>q9cL?#vkK07h~ zQl4+Mu_!;!*ph^;?-i#E-29Z9hO#GIB=KA42EX>Y0kSMOnfzD9gE#8-x{Rw}E|z3T z8M%%J#qz7~psAzqweJt1Im8uUzE<0XW%i~8?k{n)i_Yq@HXqg8rG; zKrXkPfi z-%Vms68=@YIw2E!v+4Voi6&2TEcTK7=scSO0y;Kc=}@XG;cTCi$YS-4k{j^pCcHZ> z`j!FNe#im@5T4}|E=VsnRFDCfK6<>6WQMAVo?)>ngm=%B0#x|ivUu63x=9gES@OQi z-gZi}@0XHCsh;e(DJaLL#x)qKJt+N0Cz56BJ|${n#F?g*Psa{wKZ!ncOG&2AtxuO_ zePD$h`RtgVtT#T38-(YQGsJ=X@YG+F?l$gQFsU<;{&}$u##GfsklzcMXM!@C%c^gIOpVVb6%(B_v&$zd#gs$i#uh zLj)DlgX0*;nR&KMRy8!5@E6w0vU1zR;V0V^Wv*qS*n{R{Tt3qqlg))Z>Tmi35sZyt z(X1k)w{0@?Ixj*zLCShlHG9>t&Mmvo^10J9`N8Ou2CLpc@}WnH=gaG=(eZ{LU2vl{)~x_u^O@6auQ`oVv&CoWOr z$t^5Qa+3*8Ae@=8uO!goXfOVV!SR?8`b4v|)qFRE&u6Tk$%4_Y_1vu<;oJdS^cj87 z)?mp_;$ix;*9z5{ffB*jL9%e2V6)LN8g06@GR#VsV=lzcfndO3yf-C|ywX;f>aIh| z^xe`GCOPZpO;R)Oq%!C{)JhOFKOZ2Gbg@oI6ty-wjj(S0wd}uSA-%*DT1(H-z zm^mCp&x`+ge5@Us%oll8o1Hr~VX=Q^oZ2T;s**2Jc$6&RrNsOvd(N{4BHv}$~=*G4xPLY zB!{&TZm6|(+aLt|)(`~rVkwKV;tT2`bBH|Zd($ucs8Z8mw-71zs9rbg3rF;zZ~PMQ zKkoX75(wOt^ppwV3>vz9N+ zq0GT2{#=Vci=zD01i4sNA>#4whG&>PPfedYu}@-ZP?Ke47Wp;jv$0@eAIIexGkY;8$yX4`YMWl+gOTq- z{k4@zsnn;6vJ+OWYi z%-z04r((+r6nfDuWO26x*MI(MudT97LyK zs9tlCy+{rA1=f=|E10B>vCmt%R}zqT(U94i0w=Y4HqN_ z)qO^X5AjCJp}1l>UHZ*eox|{z90-vMOgPdPx+gUiMP28u`*_v4LWTzqfEs1XuxRnv zo2p-7Xt4Z>+=GU_t^~`|OuNw0s1iX|dx+33Y4yBcIpxx)IWNfvSzn$)yqdfjJjEeY zW;Aau0-clm#`9Hlx<&O7gEjO#5**2BAugdAHwqjq3Q6G<*be(g>$L=X`gj&~lgI!f z$fgMK9CZ`s_~nw_OAYcGjg)N82vGSR0@1vF7lxYK0_88u z12#CgN)GwJJ-#C8SOMz%KVTqVU}8`e9BMs4o5lGZHtGcCamV7E}?Z-<=C{lgHR0 zi7!I~m6TI;Pz~?SmtmI0!tZulV(>kyGRqHCZO*rLqeZ9|!!ssFLv(DaaG3;qS!Fu< z<*+1Q_L?n@89#u19K$8Vldo#EUiO?~>9Dx!)_%bYrzIuIs7*sJQsK7S#@%Deoj5>& zeJ1Z%(?AEQ0%5EeDVJ<4z!(sv*~Q{&O0P*_aWt_fA` z>1h1g3r$K|rP)L09s$#xHjX}w{pNWSG{fH=yYmy9D4SRBJ?p|)wKFdlh~)k$vKTdU z1NC_JrDo6vHeJ|$Z{53>I-S5U0t>gv)pnNJAlfobXb$$K+G*6{uJE-cSRtIA#Sb z9`e-k&=1L&x^1*wRIZnzlwlC)_Gk@pk8CW5a|iTECzpK?R85wJjzB4fRk96(b1t~q z-x3V*do8hn0znLJTQjUNeM^_UuL4gL-j$aGzf}r)JR-ls-x)B12HZEiLx^}Je0H-+ zVE2@dQJeP=flgI#TF)_Qv63{J!O!w++;k-8JBA`%&S1yq(bm35%z(PkI&CKP6@&7yZHDPk~$P9aXB7sOp}jXTeZX0H+RhuH`}HA z##A)WQqs?xS0*&fjWs$=D`i-TtIN|Nc=A|m8{5YsUtBWT8GWmGGhQxs z#U%Mu8An8X>^elpLWHJ^l1A)MUOw6Wk|zQ2MSiq$!CeCl`pZ_%mxcb>1THm~c%FtQ zlLHAtuD1(7?j+x#ndqfWe)IiGL1z9q5T%=g0>N-<4=ewcfLs6^nfEbhKEmkX%iS8a z)&)2waF^FeE!v2bTd5@%!qG^dPE|juPtng)8-L$26=4;L($MuZZ z+k}O`#y0N#JCK)%9x66;QeRb&j*mpsir-@A(?lvlmoa&K{i@<4mN{uVr$tSvd4~Y~ zytyrN3GSVN^K4+Xi->;T_uW}9#8<(e6hW@4KH4Ew)1b=^vsz?UOD^S%OjTz&NIM_v zjnh=!gQ|19e0J@nP_iTt(L5cG0W$SG)qlbM{)2n;f1myR2WKfO03o2=ff-QQzy)ZI zU}6Il+7mGY{>bu|%?-a*xBpw0#%~Q3|HI$P@<)>`%Rg94Sy%x?FQ8AJ31IRC(5@T+ zz7^2q&H^YFVgF0^m;E>5{a+4O_TOmk{|V!dHe1$zH<$h$?aKP!XxB-7Lzi_9lz?fu zZcu{aEG!D3U?Sd}DX#eWaryas6GL9kWuJWVH4|D{25It1$@a7?|G@zUskb_yjJnj^ z6H(IfdjA-3_qvw>6EANK_5*nVtCeNLyj*s9feduj`gj&SH%gHwUABm%;Eg>XLlFdX>;?|sQpz*mg>4^vt<;#AD?5yG;YqO)2DkAikWaZDUgOp->Fn>~0G6Dw?pxsv8HxiA`H+%9%A zhJ7S<*rq($8m1hj%1ePR-iQy=ypPi}At$tLM!p*hK0-rV6s82BJJwKnjtk5)s4ffUA+lmwe@( zkRM5=bOq&6$>az{Sz;;lv+}1YZy#i`HV&Z}Ln4)FyDwyUDXwF)Ob$jBi4Of#5G3G* zcs~@fbQ^+WzP&+(PR*K2kzk_&Ei$3y=wuWcDilpw&=+)~p|X24rP1=aHtPQ)?wg|{ zU)QW-t7EHU+ji0&+qUg=Y$qLC9oy*GwrwXJv%l&yGxy$}Ip^GO{+fTPR;|)g&->Q; zy=(7h@4Z9C@mgzO^!{dW!0=ZNz`=|SdibVWE<8R3iPaq=RU*0d^BV;;9F`BHD zXk@;7^S<}gD+PO(hFJk6TP426O1h0QFJ*Ba$jhebp942t`-a|k$B?3Vz0Y-}!2`Xi z`K8iW7cHTpxGhIoBWb(X(n0M@+yZmr!!5D@+(~(QxMW#qS4djIlsm&&#wwU}oN>}# zs^;>&cQH;@Wi(aA)Sd()H-v&Kta_W{{*1%jFT#EWh)$B^=7`C{l-b)wFRPKf*J z0Ank=EZtE5V`sCbH3R*M+5{AdxpY7%y8JUz$J;2bPa2EUu7c#qSA?ht zIlmD#(*=y7CXfBNjZe>7s_~c-&=2S+A?_%$a7nkq4BQ7aF#f#j%EKLU%<)8t%$U

    B;nHYc;2MOyg-c@GENTgJ-o`2 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 z zFt;E9H-gBc#VJsO{Xf$**!=oW9m0puUF1o6+s>noS24>0``t2#XIz zk$ubXFOBDO$oOce0qdjONRfVrO-yIMNnGX6v>9$0Mg}2*$#Eadj;aWeXnxRJU3zh7 za-}&muobQT!7%Y+X39Utf?tw}s+Z|Z9RP?sm zeh+W5d^}GVomL8(adMyh)<*gW457VXz2l4 zYeK#Qv5(ffbew5ZYJH;m!O8BNfJsf)UC0AW`9N6@?Wq#T6b7-g97Z<%`KmM~+z4@5 zgggt_Di39X+ey*=ZI9-mi#Q(^kmz>dk3u#?@q8eYqG{^&8A>l@(sY8gd5Y_mj4IP$ zd<-5k)3UaJ&9obuZC+l>t;;3gfnEw2y=n!na&#SYuYR-=;+s^g;m3x-x(~MY3HM%p z!F6`|l)XDT62kABRSyE~#)?gma&;u}eD+&f+G12o&=3g}#&8A$PA7r3K0164)sk-cE%K=N4A#RKY5O>CJN# zc|%K{E<}+{>4TutVRuwb%?IA$IoPAcmh)1rca_Si$b}3({FWsAuD#gnQ*6Zgicipp z#kZDsC!d5zoKJCS1V7{pbCQf|l1NoGZ{twQG{k*Vqev%%km=^3;&dkLllD!TnGQRR zv`>Hz#s9j+iL~p1Wb7g;AJ+=3jbxZ;2(^?aXv(6`G(1({mXp8M7|Hl;jD)OEMqqAC zWTegWXOVN<8g12gJwC@`2YU-$Njw-ExCv?{U^IxB&`}#ZNm8$YM9xxLe&P)3iQVEM zFW)suN2o-<=LPim-~y+Rl-k@+CITn5a3YY#8_pTEN z#|VmDwv1Au1wjt-lTD2-i!1VWu~wQRb2qz?>04O(@r-`*i z0=@7@>50^y?14#CBempbW+dIW{L(eGuA+KX&P3!F1t^7bc(7r4E@S4$8PIgW2=ldD zf-C}DgYZXs>9}RRpYEgy(DA_6fHh$Sf?1er9LWihED3T{YbM4l2SoRmkTJ6YP}M9y ze`^Egg^Hu#;T)V2<%Q8U3&8s5QejNeAt8NCfS~L(Kt}h3S!heocPiI!O70`L#?4MR zfkIO)KMQN-4qx;mxaEj=mPE=6$rbytX22lZL6)OrDfZ`{SngR6;y!#xje``9o(g>1 z7ho(m$8ul5v2jUtbs6+3T)@QI)Rpzt&Mn-``sjU;jfoKj<|y*E6+F643Cf(B>?tu2SJ3}d&NbrJNwwzapiLPI`I$k)?>Bz~Kky=&1W`eC2E z{j#iak3*JNkoHaeb1ZPcGkT2v4q_sznFSOIuf*rL zvix}66-f*!%sVzCdcH@kjg1Nmi;%~Tb4?FqMy*(7Es>U6!S`dSEgLH<*SmR#h8}Nq zCk*986+zcF4DJbxhKAtC@-&J2OABz8RZeon+`e* z$Ozm`Q|b1?R4PN+}zEJ^mxMo!c+nZQfCq9n=Qwb&Zcd%H_PAPGbhBM)lr2r zh$IA~k6EBs5Wn}sy^;&^JebCOsQCUE&g~kIIi%z>G95%@ zYwH|b4$}&~jfb4-kKUA5WjE4IR&FuK;!TEu4}*k664_dJriVDnR$Bkjt%v^2PnLNM zGU!{I6f9T4EPSzQRI?gRf$fbrcibZ;X+yy&9hRYPCS|?!_Hho8$h3~Yuo(`1y{6+m zGt*15mqFA6T4vudgpzJZ$?!07Z(0WA3D}LrBcjOZICa)eqbm=}YiT5D z>Y|0eJFEED4^cnVo?f4Ni=Hbz^uIImb8E^B)%o%nX1%S2sMWEq~rcSiKL`yNPAlo@*b} z(mn66Xb-~NR;|{jz_Q6GS5i%M&9^Hb2q%a)#`U6?d=1LgAt9kYl((pf{LvS( zhT7Y;A;_h*m}6koo4%mTlG`+at6ae|rMxGY*jY9NdSs_M&B^P&cHX-gv@1sU8AHY` z{6U)oUjPx6o1=S2dRakiZF<`c6+Ng37Lts1arj1jz6Y_!pxmD1ZK)B*Q3>r>U^NP* zlh7v}XA0cWPC@VX5W+d9#qD*_WdXUcY3vY(6%PMxp zu8=2wi!>{JD8B2RhrZ$*_r}0SS)o{};-|M5KR zRDfkWh#Ax24v2Z}Rv<1*Do!kPtZdDeuT1j86G#Y4SYVjDI zOpyeD7R{20J!cU$Aa#pT?aCN|QO!-Dqdf$2ZnO>Xq1>E?GSl=^B~YEsg16+r4&gq< zoTln~@)sG7@4<9)BvY&=GJ8TwnmoSE^Z^onunGhWrtAn+1F_4{5~W7b_v4^uo@oBk zMc%98P{kjM(&cY?|X~N`4;fdd2~WYYkS7-CM4fosZTn;WretK=vlYe zlyH|EZ*fN-D5rTEl-u=zuNPuxOhC6MKDP`v8iON!&49`E)J{+m7ivP64IOkT2WK6- zui##iwX8VLJ}f`icjGjo^H$3&3Qm=09S!iuAfaI2l0kWitwL>ZkZ-6iy3+H~Ti_#>4s}MYOOb zwf(hmb813mwXw4e8r8A+sS^|TOWZLiBAGzSAcePQuXGPTp*4<8#v`~r@Vf65_}(oL zX_la!zvx|M5zf>^zu|ZQD1LPt_c<-c{p`d`ojC?#y3`O}TXA>MDm@S1slDXkWGJ_i zp_?XYa|3Nd{haa5PIvbzB98JA4D9O{Z_gt&_B{a`sBa%iz37eoFxK#}_#rsl({{u$ z90U_XaFBiyspAU>CMvn@+)0hVhh86Hq~fg<_KJ6EvE6^?!0jg7{^r?Lh7-x6$)mXN z2E0gQVA-0)P=n{vON8-;8g*LF>nYp4ZZb!+UQE)YDt)F4HrhRDk8Qr2(zpzL-e~&t zaKF_R8(zSX5e=|aB?=!Kg!&2o-E}d0b9xoFY+o=$s-xq!V-j5sLI1GMm6uYrtmU+~ z^(T$|4GKP21FYRU!E&73!MxwdPV@ppGi55nBnnrjvGVX%T}Mo`Rz=;`;p^j9%QhP z30LHdpG?5gA?7?ey?dizwcAXgUN2jxmU`JBvn2yy%Pd7iiSLkW6qa^>!7cpjcI|5KsF=ipN{eVK27{< z)c5azY(Q+{uPoR9EQ6JS{TIjZzboTU@pP8or-}b?rurKy2#|#P2fF}3kO5k-KVWrc zLe^hY%ipjIzfE|v{u*Te?^Fvj%kKfZ04J@#?Zz(zAMhI1|0sin@sBLk|5X``?0=T% z%JMtc@+*4w?-u0`#s@%hFasi80bC0p=@t-B{2xXA)#N|GCk*hJ|JWOVw1_|J#_wDU z>%Sp6m;t{ZK!p5f8O*GJ)nNSJmGKwd_?>I{wSWGu8_diAjUZrCa?r5?XfS4gf)Kzp z0J4`k+1dZ98=Suy{EucZ{rL|4ooWGaTmP)$Z^#8Ejz4zxKj+=&wbvb1#cIF1e%%C4 z-cy0o_wienDwJ|b6w$n|j43p-q+W(i@h8bDl%RuN-WTU$Kg4ov1&#${6h;UOKFQGH zAc5aKO+7yTdEC;h^>y~eOF?Y&%NKj~q^G@_<_Mq8W^J0E?)ER%>RMi71VuOP8FU92 z?33A_9*>iWJE>LpUy(ZAuC;G37pvkq{C>ji$|IYUOq1 zhKWY@heg_4>UJ93w~*9!+I{%OBn5CjeqoorZ^^cuInuY@#Nyp*Du2JfIaTe9$-Cyy zU+rx7aW>w3)UDFJ^E)7mYFG&p>+=!d*)g|rf|Xcil#+okA_%YKYmcDgfqih1Pl_P_ zx$;)8mPlfm{DWhg2{}x=`=Z%LBXaX<`o#QIEHZ1*fMs;>b7Wrnr-`D+*y4-ichoJ zz2fp|d|(TqcZc3A_rmF%&i4`%ON=E`+4z-mt1t`-NV%oBvu%!Hh_L5*<%b zr1)4R=sTTrq}jJoSsJERN_X@tq+Rfy#E!~3aYpzIwL*3tor&n2q9HCl*)NE7Dx*d-wg&i)S3PKa z5;f(CN?4>$*c6mE_!?l|jnBeP4Gl`8)}c{g`)KI&f~r2U{M|_?9Qye{6vEtt;s);W z+ni@wTpEt-IX^|P3bxqbM*Jwl!jnc!v5P{OOQyTr;wZA@|((=E^iwT-An3RJPt zca(fV4Ubf&A2_EU@Cv-sYW#!7p_b|!U6DO$31C09ck*2G5K}CZ2U+>m~v-$DgAtY#0dlw>zG>npSCRTu_lBcjp=ir8$9a_w-RP+J7hrRa!{}3%tRv z-_m}c#ExpE9h5r2;3P!?#8wZPt#l6?3ikz~zF7=Cs5OXlP+S3~B4qPJvMiTn%qBlj zddMPdqwjZXf>*n6YB|B>Q9Rv5hEHk|dl~kUx0+x;xpr!5zGujTBn2528Ks_IFoDDn z{Fi-(S`M6ECh;8H3lBvTgi1>Xq84)r0(wtKbC8X#VwGlNeBiZgx@gHQ>gC5)ry>oe zymx}s#c`j)zqJ8`Qo zIS!n&KJ`gQw!#1c3$4PAaf;*M)I%wsDlqPiiM#to`9l$@CJ58Y641v~&8f6O;>EdB z!yljIV~&|S)?h>q#m8n!4=TX!FINSTEDTdlh-SZzq|P?RD|re9eU8SKm@1VCRK+ef zdvxH|tkHM|=G!Am(wlMj=kMk9zfshB%8sp+XxS3K`~2RO{R?H|z?H$CnCV`)sK1$P?=H+#1yr z3Ai`;Q^z!N%-Ukw&{|URe(_zscEiK~%3d1=&2G44 z{gB9vp?ZpfZs0IMwI*1g+>*qI2drP^tVUzP#yaBL&JJ$zKDyZopMb*P=b{E`2d5pw zf$%Xf-ckD>0>jjmYcTZ8oJ8ONXNyJ^U;A7|fpA)09l$<+jmx#?z4b8jUx_Isl4a+O z5{y^&2q2FdUftMtRY;ubqo$;~$DCn(^up(!#Y~^fwi1ofXX2ME-D?AO+7{^z8y;Q- zQ&49FKf9u&nzgi!cB68XfS-nu0kV~it+7zjz%18FgOt+N6GFbcrll;xYr!l{zaKFI zUsX)?VI+2VjcHS5ImC%FFS$i(lD?#6ml87^I-G+tdjmczBkriB!ih|NfF{h@&@@>J zG~_>}LjSmVFdo)`YSniRQrvGSOOdjND}oaw>-b*V(=diS`FRwF9AN-{xFs~lvGg2C zFSkm90=)=&Fcm>aX_z_$iHU`u6A4=%GuQ&=^a=!Xy3K3M_?_?#=WRS#9{yCh!ptsz zu2Nv9gn|V=OO5>#OVRhFQh^yg?5&BhMaa*A3J4#&+E8;dC53d{P=QyV z+Xrqh0#iCxX$`=SIKWko=eW!BS=-+;Z>U>QJg2D~Do1%V;I%y;BWDD|KVnbtQ_bQt zsQ-S{AUkgw5t%T1#~$yFU<^qS_7G{*I!R^A*)GsQ3O=-D2xFW|9}1lREF$P1^bN+o zH46Ae&Wd6CC7v_zN1D?RvQKCehWJk(i?}VJ1b4tEP5v5*kPx;iWdbwwU~pvrZkdZ^ z6z*@dOXT)|v{Ckw(t$oNwMJCQUQM=%ml99Vk3oJ+vd2ha*Ngd$C~`3uLn0Y9xkmqag{DIa!vnyCyN5Ce z!7WK;>fHWuk%h})U}aP3{>CTR{(J_c9}&DvdF@YM1nW3hF(0kLCv|U`-4shMjh5v3^jV#hse(Z@gxn ztZyG@B0ZpQ9vy}B!Qf@`l%cYmN!J@=zpL--2(ZDzluf!mp;g-7t4K7<$E!a$hLYJ< z1%PFEwaa~-02&{=O;W(L*laGEW0Yd^Bgw6yk|Z+gpW@C14~iktDFdW(!_9Mvj*QUNfk9WagF=!gDMck}EI@~WoET<*yA{`=YGqs*ntoIb$1*{9^|UfzVDnP@C^ z+{T1SM6}b~PS~AnULKzy!T9X;%BPX;?(|H^j(Nb~36DFlVsf{W5E#yMf)}7ld1dD6 zx$-1~*f@BKi+z0256Bt|njdtq={S~576ZbVyOM<#*XN*}=}K_MW019m@2 zorcA!xReFI0eAmp@Zxw$*&?fdY<*aQuD0YZ9+sggR+nVxM+WRujbIBzcK6e<&86YTMmc>io=a7gEDz+~ zfXH%sQXeK&%su6Vpch4KL}&XYZ4jC=P&fGDF*zTM<_JqBQ*N0kTF#A(G(!sPXP8?c zI0}lyk~I!D3B#fRU=FF^CBrhkykHSql`yeq1Yq6h_UA|>NybhHGXly{{UGKW3eIob z0TdjeMi+CempG>Dy49$ZOZd)T+YT2)q+YPL_Hrl2?JVS`EjZykdt?jqO6sV0kdH&C zv>@(+nfFt2JywZ2VFv6@KU4Rh%7ddnQF~gAi6K7eA444^L29BW+W#1yyLYtJ{c0R> z-@J>h_G$+@qYxHvQVGL%1Xwm_@oXmj4)NeTk^MbyZPd-T5u@$}IthjC=fQf`L;4;0 zq%6^3+=9~QnU8v`@&422!d)SsU(IllL8u`{K0%ryaHbI@gBokGZ5R>Op~%k`p9msP zMK-IBk=wjXVjwUGA6i|G)vWvz2Bk5o?q#4VY-Au4^ zhxsuPbeH|R_w({}my7#MFi?3#6bnAK4mHIBs8*c86YbIRn#(lNp|_yANaGsCecmgI za7T?FAti96rJiHu@UnmkG_(Aoq$UD-o`N0I!TWSt>vm*&85g z1GvK%x{3=_QFp#Fjqu`wt$sWt=JqaSj(WJIP(X`-0~#AkoFtT}@H2lRFSvTA$Wp;* zVA!riSkK)4@GLh#nbpPpVp@i#MTBQ0Y=ZUHXP+QU(vHDaQr4`j43+-fzLkw;1=|=Z z&Hj1d3wKC?CIzY&ZwOFExf>2qk==VR%*)KND@%s6r}*jW>PD;N1Ez3z?JPd%+0_%E z%>dH7`Be&Qq@vBfM?c4Di1hV}#twH-yt)8yq2f?ol)gH%yeJ{(+R*0SP!~736@L8k zFU;}^cLcKeVDIv!!%mwviW0hkN~0X4Ju8Eu;g5LQ8B?x`D=rc;TLh# zMjCH=VGejS!=}JHrz7yLi&B`0Vn}}>Osq{K-@qhJ1vT!WepY{hJU6lSX%Pl*SO*W# ziew6kX>grD2?VJF?)UKzJw-WR#TYX*)UbIfgXs$$FfN>|)h5d7p zh%U}ag;hINNmkU8iV9}1q3FoExkc4;jW})mbY9P=iYdhkOhWz6WFUzFn(I90;3chGfk2WZMw#)?M7H}PoMgksSInZ z5jZf@_E`3GO7bpq%=-Q9mJ5_93*53Qr1E^`L&HN|nCPjPSU;~L@FGx_9}Az8a(vZn zbh2!$d$?t_qjy?`zD3r*>dk#q`c#dLKUns8r2a$L4c6vf@=AsjE~kGF6)?2A!g4hW z&!WvI9yhlEJ;=>Qr!;CyHo_pQ;`Y5QJ&|e|Wm)$Q$(#v}Dg>J3foCqv zo>$XY#~40K(Ir#SkSeDp`|!J9=188nj&@M=S?df8c&g#<3{?9btWrDrI6-A86TxBO zH~3RTBk*ss2WiZPrNlN6&{elIVUvXDYi2o>LY37%;lR<=LgE4J%l!R6kQ1$PDixy6 zZimUKITGxnUA$1^Qx)4F`s$2@tTTvxf=R5S$eH%L?L%h2?hcP>X%9qY#>CV&>#dI$ zOm&p8vd;tGc5CL;EKSi-HfY_mmFbR>xbErERIa&_b}@-6#I19GlbtLw`5paIa<^enrX3n3EnV+@@fK>1c(w~9g_|1m!$4(ix-$f+$ zzf*61{#bxR1t6Yq{_;csCMNv@(Vu|;Z2A6|gJ9(Z2qJ)QRd#lCF?LokbTqYf{way^ z^ZyFwUn&|q;J*K51TzEfCg4E-0|g5^BS1X)zk%X+1qm>D=&w;Q0rW(GxcN&*V`c@| zr~v!S0pY^_ry3{c&%pmr<%acV)c*IQ_+3Bx71@8GEi$tLwz>b5SpR|Ir>OXMC;)Nv zFDU-xR{X9XvHuOFvH$`D@X%NQECINgoWFcKtN_)M>rWZ$_oH9}4A1<7qxjvZ^J{qK zUmOJsAT9w^@edHJfO`tK6n_ok-%jEW`HJm#+WZw#e*uD({gmE{exA!ONdK!S{hc#^^6Fnon}ByN zz++|xP&eQY7Iu!GD3}44gXMn}And=BCcq)~*C+teDxe49pC|wi1i(OljpE;~1v7v} z|67={|4y46e@B}DwHq+pjTzwO16&Jcz*zv^L73S9Ec(B?7VN+CCcrKDmuJBYke2~t z)&2to3kTrA{9i%wJ8uHy?7u|8#KrtGG?_R7pKk!ZI%WW40x&TG_LBX%2a znj4q^R!>I2kLLo=C}0s9!2Zhmr}F>r%=yP}BJ962C*Wh`U!&mq6`TKof(7s)3vfyQ z8pXez#UIDW@6`Fr6!{mV#mvd^vlRp|mJ;w#2!Bqg1jIJL(Miw#KYSPYle74pI)A>? z{M8d-0oXkOy(9lb!TQq>{WmE7M`!UncmDD)|MM*VydeW%ApSSEXP1tR-5xv2cYMMh z0R&Yd{o#cYnqm2Z^$cBf)m~k)_HKf6h>=x;!_PKkZBcKM-wu5Drr^j%BqeHa24qI zbyq-M9wA^!ls;=Slzec&zj3yWc7ucv)_9T?7s*?)^W`9>HC$$6vEJs>?c+w5KD~BI z+eDL$3%Lvo%cHl>)u*vG{Li=h8*obz*puV$(*jz%gO{%!%@j|Fs5yuSe_#d3kSk+? z8tHr*=S&j~;IA@|z*C8l*bpqRT_6p^^gi|=x;2E`WCnq+Vm&{l&Bn=@uB6T9{DIDW z5acMg#tU)3%jFrHNOPhBM`1kZa7-8{Ao^rKf~HGxM2)A@Ej`^3@aRwD8^F*PLU)~S zeFO8V?RW`s5G_lYh(0ftJZW*6Hsy*1m_3Nk(WQ<6zP!*t6tBG0598>%!NYcN z3Q8x+5R9&|u_k|kI8hW0iZ~ZycgU;CM`5wAEYp3D_giO-{RTPlJ@oAp;YfT2!+nAqkQ`M|}&bnp858D&8y&`24=;A zKTyO6e`!zKyPG|4iFxdfIT5jz2`hBAx4My#vOizz*H7e8+!pXTN_0bM4JG}6h|T(4 z9<$g_s9GecrO=M&cJsZm}d{8RKGmF=ZMHR9wC_|P+|N^+I*F- zx;eEyxX`#*((>IA9amWgPh)huR&H9O@*U=NVCH(gTi&t6+9BMVAuP=Wjdwh%{^p}3 z)K`+$Cf#i%aHO6S9|NAeyId?*W$G3=^W&rs49?de-B**MjvZLD&Tuv*zWdTM71Sv+Y%1rhr-9I#O_B*<& zogUp>ZGK{-?LHwmfZJuHV461cN0yoHL)S13--%8!z{lHT+&|5rnxvn_x>mMuWE^6d z@fa=cR@AxH8LtWBzub)k4017TNdwu|h^8s@f-l0}UwHuu(djTo5ykm*^;E7boQo7j9& zLkI1DAF}%*(k&V)35}UvT;fUQy@t{O%0e+<^MV7H-a(0JJda0mOKtMONa>p}<1V_K znPTU9HeZvCI!qc%JK43ksB_?hz4U4B$BWpnp>)g}aZne2kLPEuai^i&r7P$(c4&rQ zVimVm@y^pPyN7O0X%+JE3YgE{UKKcAn$sL0)Wkfv+WiTTKVEhI#M zrfvs1%!a>UF8i7q9zErSGg=k{;v?yOWT0;&sLwG{zT)~IJD{)FXSL53+7chi3(j+^ z29U|TsQjGgxUOlyU*cun`1@&l$%tWD ztRP_j5t<+CSMYFwtL02N?g1_JcPi-o$5Uq8oE5ny)it>bc?0_lAa}K6P08>EMlaCb zl(rCVC)Azmc3}F(s_vq(Eqmc?=E<}y8l7wM41EWF3gFC*ix#z28hjWhWL_~VNkC&^ z9(TJlS8U}$<4#|g1BSmZgF5>vIM{w73HH;wghDLWJ9i8gDvSLBH6Yl1A-=3a;7F_ zYDXk|QUhfy&&g1>GUmB~ft~p&g(hxecL{NpQ#CmhFgL_tyEQD#2SY-rHQQQMqqJm1 z=~#22|YwG&@1;sTC4GFKX9F}}G4TRPaWzW9ZVCsHdmK*em(QZ?Us zV+W(d>cwzJhyzm3A~xVW1iduZ-Ghjw=_nKY6N8s-sebp)psK|azwOR+X@K?x(Xo(A zDjwbjvd|NcKZzhgVwErPO|c#aYVFy_6nQd!gLO7GMGm8Otf_XC)6~*uY=`^xOTM1O zgLN>zD1B!e`R|FVXm($nE31Y-n{3b{J1>YW*lL-kvz)t)L%6x6a#F%IEI5W5J*IrE zUVCmO$h=J=$~uiKwPx)@F0nTp9Yv(JO2=ysGdIYNa^?b2#x)#g)}N7jEYV$Rv^m%ISdM5JPeHNthP_QGx^^w{ zOf1kYXLw|B_U_YFj9}NQQ{VT6$h0RP< zTlUT2me%YMKsJGH+DgjZHH{Hw^&6D_MhAtjpvE4{vKv?4il!#*lIAyOD_z8_ol`5R z#+gE)?yvW@nM1~*$b>i~F>%PqqcxG!)1mW?l_l-a^|spovqN^ zBTZ^bwbfaO^n^RkH5Ng{D`ScnAea3xV6>m&nYzc-Jc{)I{TcG2>s-kSht@<%BhX|? zIn`NV!2|kym9jx49tx3$C0owL0-wnV>8~Od8+n24o<$%ff7AYu>p^HD)pqp z;D8T00&#M-&O9K9UYZ;DgJ@LQo*wKb1~g8YG3GKM4KKX{&SbQG{11M!^hXH!vEl(6 zP6_?*H@)>02DY0oB0S&ElF%kH&hAmeQ1O&7wJ7!DDxU{i(T;q zPsfKy6aCuPBBm4&#S&e}Jfm+oXJJ~~zzlMCCs;e)+#+CC0j;(IGL1N}UJ|)mDR4I- zkpk}!AKtr3LgYy_&UBSGFxlCkl*&5*X0n{b%lpMhhzqBy^FGO(2Z120-dNl5eLM0z z*mn3;yG&iy=LvpZqJ=cZmz?RdRpHawL_&LI{0?zm_%zfF&mXSoh)ln@Z6CbJq+YtNqK=lbMa3qj zyUf4>a8&&FS{29dwJLyW@Ru-H0Htie*eN zFn%vq{S*TJGZFu*6!;(Fz<+rXx^$)h1CNlqE2OR%#hJ-s82zvetgI?bR`qx^&9joJ zx!k`2DaHpgi#h_&M&63G?PD)&g3czfip=c`^0x}Y3@&dj{NM{pTxhSVj*^`4eZARl zw22zC@fhOI(wW5c%hd7KO`;%(%J`txxajTb*xhM;Q{iUnpt>aRHmKLdZ|sMUPs-cp z*A`D}NcC#xGSuwfub9WxA)!VVlYkRn}IhX5a{mBH{jMrGrJS@IX`*8_yh zm#2;T42bM8+hgS=pXaCRorUn29|o9ye7x?U@~0pO0QbqBPld6#qG+_L-!^A$hb&)ScyEbm^3Zq?vnfMY?kIO}O^=K?s%*!^En0A? z6<9K1d>EXT|MD!`sfxxd@&zLNQU5(*k;lhSf8x_31*&DC-0hTwI_zY4+!B(Adf8zN z`rW+s%yrseTVfE?(2C>TNdnxQ&!I;`04H18V33rutu@q#BR0=SV{my868%oM8NcN~p);R=&PK`Jay`y$0 zLzSJu#(JGf9Mlh{DcRcGPx){mj!L^JkYtlbl|H;U8 zKtzOs1~Kt&N#taK52X&Swkz>K-?lrhsG@F z22^(*z%pu&syw0T*>CN+o~SgQ7u_RK8R3IMc$5otMLWvSO>t7z5|7GNZC^{l+}eR6 zT9D!v`^0m$!uZds;7Cz0av980!Xy;{|Ho#N<9n^qV{>iVf+M++hh$>*8Z2NFiQmT5c>9 zm5hUIABU7sqIpN1qoR^y$eng<14G|D6oDJ)oQ4rQ8SKl(HARc7U7PIfK*g}C1Cxf% z@BF(Djid>4%F@0DWo(@=5T?fP&q{-Zm5e zw&)ClFYA_#@Fv04C5&s-;xvhKdMaR#n})HbtSwV={G)q!Q`}ndGx#f3Pms7wA9m5@ zmYr=xdMC$m#;J!u?f`{u%nk6+Im|0%g_*1-PkHqUW+t~#8W+`U|Cd#~cOBJpCtGdp zgaqiIql)u72X*fv;!e%ZIUTo(1dqWmX&GA(6W^c{~^7fqlQMJr`i5G z#uP#SWP|Co+a^di3l1@wR)z6plbX?OdV5aAz%fioM|l7^NtBZQGwLaSJh=)BBlv^u z7A{yq^ZWL-4@YweHB*Vo8C&vFGTFMmXW;z^S^l%(Q*q@n5or!|dj4E#q`a^o2?M}I zEd}hwW0C;IAX0E%&DzTUvYnU{o~nhD4Ov%kSc|PLM99(f4BTMxHTL|Q;-oA`ps}5U zJHAtskk{!~91#QfYRWUCy<2EWj1GZZmHtH%oIZ=9fFH@Snm)IW8QbB{E$=Mkg`PO8 z<9xHf^17CnL=QH4J({X;;vs^#5Rqy12x|6CHCual1-(49@R3^5yUruSS|U+}pRk!m zg$Axvbev4#piHscgOul^PM9Jce{-1BLOLRNDIL?R8iv0>OT)GGNfZ2NLR_SiyQ4kZ zqP{($?IjuX0@ZmZimyeE>%TPw)-UG?Rcet7XO-?KezY&&iIN%B?GHs%(I`ZS)0^I% z-X5g#OmFl#C7t34_L?#;Tv8M&T&jW!!{xI=A*%)5wR@1Z3@3LBPZiL3* z4?M7)5|f4#cCWcj2zS6#DXHbAgDUD|8&|EQYN^&VN=Z8B#M(5R+GHzNE0}O1+1hei zg@k1lV3c4`242W*SC|<3GKC<71sCcqYmc_KFpgtZTC%Z7{O*rd?$Kb+`46{XtQdOA z&^f5zX9~lRK2Gl&CiQDIx4thqZ4WvwThdmvXLGsW-*f9A9zsy(<;XDASwq6yKg?hg zhvCmIE>7$=$@114v_9YAC6Wa_jUG3UNHez0S^g8Z7wW2%YSruVM zF)#x@1#>}Uwsu-SER1ad4pbgX8A!=Fk zeZE));WUq;Vf@PO-DuaEcm@t6|1-qc;j7@=Yzi|7hn4n1w%2FMwYc5ytb9hSu+|Rz zin}puo1A^-@n;$IOj(3(90hq+%JazYoXu?nTF$dhoyRdmzeODOCcT?QwJeanLGQT# z6g!wcAKc+Pd=E}<)J)VksN@dfBS#RTq0i~$D`gk4n z2$d;ve_By2R#KJt~0m5ax?1R?UTY2FA>6A5gjNONy=`J;-1 zU1Z$J&fMb+MK-%v3Y&t4blH`6c!0SpwPWlzZvM8pV)BapQ>+sjjH_<+Qz@>@VUd*RmmEIr}JB8#fcq>5Kk8K}SN~G=^ zQ4J73ozH#iZ?V~y%ndLE)yJQcQ-}n=2xghDyTo6X$)0*KGJ88i(!13s?Z8;@_4^Ud@vsD-<}AQgjVT>Ln24eG?b{W?ReT$)%6_s zA?Uy=B7kuNUK{?C9VKo$8)cSbAiTX2RS!K83JL_F}rIYZw~GRUb`EPcLzd zDN`@pF%{4fXj0*%9ao))>+X{1VC<{Vl#^@E(-Hij517?0aDQMc&Zo+304u~-Er7pd zg$L4Im^|68)j>v+;a^xgJetR1~;kne}b1;UPs>pl$BEhK5RFLPXyNiD1IE3BNCobha~jz2^Yc zEOFzPj|dLC6NjW=i)c!jU?1}Azzl`cxN*>CP+8aR^{cizKORbcJ4{9gLB8=@iw6<< zlbrZ(RPg`zIq}~J{$?Am{kK%j(xZ z`KKKF2Q8y4fW9g~C)R(UU_Ay1TD5eBxIBHA*VDKQLELt-ze^#Lxf(OlZ4lrit4|128dt(L%`ox)o~ZE9V)owD z7_0&NJZZ8-^&0~b8zL(R-Zd0kOmB)XZ9@fxHv~<--@=M}RCrc`4=35)QW7R$Xq!x`H(gtl9xVb1;#Xj`S2Lns2wn|R8n?vB)KJ;2W{I_y+izkq zqmNMn2fN{ASCs3O=up5KH*lIKM}KfcDaI%A&Pd#8I{r$Z)Xr^W?o&x(3xo{86VqCK zqo7|mRs_Ka0dpY&U8Tjy-wTvqtQ5(f3+Zft$soj?x72bMinNpZAY+&H;x5OgO(g;a zS732cx47{t~`TJA0ios;t{F26SVnQ6q*jV(T2=nYom7?xNbWT{F#cR{IS%|NqC zr}ydvKk(&U_b9Q(~u`|HaJ!!PUF+X83u+M$Tbh$&}+pOeluMv zc<(wDUlql9J+X z$P2I{wqVK;PO!?YE~0N2F(UNWVTrh{`*$<1c@r%J$O;}3hcJQT&~@M4#>VCpvU+7( z3P#&6zgWK_c7~N*%sxFbOh>hT<)1d@v-xgUy&zIjdiJVllz24HZ@CO@)a1z8+|iDZ z^^QzCr)SPhUTZ09#m=DQh@nlS<^}#CTHE@M-&uZ<%Rede7g_x$7cmISGROfIq#If@ z7#jk1pmVWsF#j9V{cG#spOXn-*!zELf6=yE=lr#Qvsc`T$;=(u1se@`zA)>;2-caR zZ+c*omoj$VV)#>KA#28)_)C3{!wgrFH3hluVjj031qR*8yN^d-v*HTnr%#*P>CEW7 zZV&e>ZK76nJqCRF+O#%*_&VM@>t}mY^Q%wfSE)@TPK2FdWPI1c;4t;^9N*H*Z1BS) zfTq9h(E)gNL4L?P4V`{{JpR;EdvG(iUa?n@`0bHlCV(WVvwPR z7}MmV@dqbnAM#Fl&&vu5rG4Rkv_E9Xk{=2^(&PGJDiw^HOuA9XuLwCaSDmTy_5Jhy zAn*Yx7U4)vKI=M*=%+cA$g$N93mo|s$i_!9-(aNX!KnNpnsB>0)-<$R1E~|vqhX#= z;7vaE8~iX>YRY?_4T^U|yH05G8Wslf~C-tc&L#Ao9oztRtL;rrfX>cn{mu zkxT?x+Tbat!@=f0if0DPAQi|T`=ijgV*8QG(msB(=Rl>&4nCWuX*wZH0-HhWSo>7~ zH291ns4Njq#B95vgx$%iM%7lh4=g$!eAFF_pBbd0A0Hg0#O>fR7u=>6)#>Kyz)`#r>QqyUUxC4v%sKX45O6Z??X#G3u+(*i)FT>= zN+~ZK%f}LGbFJGAYssK+Di%taTAIL-GS+k({B*;U?{(HuSh*WRk@xL&i4!kI5s^N; zKkWMk$F`#m%-N|vE#z#8ZEFNm`+>=V_cocBOVl7O*;6Kyro)${pX9ExBFx3V>+Xt>nIvNyC9#8q z>)vzF4_H{#gC7B*#?Vt&q^yFrHj8V9)kV*I#leBjgOA6KFpQ8xD}$ zu;d)c-3UAh8ORF>i6VZTbKIgPdH z>1Vs>z+RH$Pw|WXJJdJO<%cRIdY{g#Gq(xzfiNG1b#NA&Y}jZH-DgmD6x3)>Qeb-e zfaa52qQIR!K$96zT(22JkiDg0MW^7hwJ?`7oeC`e17wjm2_~U>l#^4zEJq7h2c?O2qbr|{6iBl79_vtk2`XnNG z4Z5T?4ec=!;JVv22LT*7om5TIRIMNs&n^&!;bRobz|g9>xnOY|Sv}vFs5%WTrWQ6e ze6%M^D`o<;II`Cx={;G)5)x+N#MUy5V(TDneFw2?5OmOQE_jQ;*-N&BT3Qcz6ZwT0 zu{nRtHZA&SVxoCgFi3oJbK0)LRYmK(&pQ*g^(5*0YPABzS+J_nSpo4{p&PCY@@`0j z2N%UkoKVj=o2tdN08G0jH}3tuKthI&o2Yzy00sv1rh?fIqqL-VP67eMmO$vTLG|Cp zDXG;q#seonG%Tot#e}3$J9HiH$`o2%rq_93iZsPt=ecD#QWi{%FG51jH?2p-Cce4s8VEif^yN!wHPBETcMmKNl;8PO8*4SIY1*ML@))iWr<>s zQJrd4?YL4xa@BWpa2uxf<|Za=vpE&*18LnrzO~*~j}a1s%<`_N=G0HIiftrql>!i} zNN?94fpzbP`Rqy)bU?Q$_KqfHuj|0UE_bqQp;mnA@U6y9^0NN15a^MW7~9UD{uX76T(Tz-NwI;w1Wt+zPpgT-n6VlIpM7}_ zv}W(f!cD)Eu--U(pPNz8_=>=e4Lj<*Mlou1m{ruF$ew)<=+LROQ zvu=ET5;)aCd@Xu5x#B}od?kp?X_6q4N`gWQo3Q#-9$8P+9i+T6X z#iC8h>MM-Kp2w_!#XD^rnVtgRIbXrj3S)ZZ98c|0hyfYnM0M5p4q;K2f+B;4x>L5A zg*Io@JFL+C@rn;&S@z4Dm$BEX`kGxjC(RYgz$~@Bpp&-nFn&Xo8=Hm@DnGPem}afaD}kPI%wZNmNa~8j z`|L$rC`8y;Fz@ADnJ$(`%PqE(!pC}mm_*Y8>pMxOEfP+XUR4!?xr5v=1%U)Z*J?wO zv$4D6x)wUDrZ(;q@G1)L)~FgFKsbnFowK+5MGbo)Xw}TeyJGzT<|fw*wAdL51a)KSG$JxOg-D8~PKwzOVEZcJF3$}5G*@fb@;QH8W^B%^XSU4%hd?qy2cHi0k ziAq<%jCl#pcax**#gO=;T~sA=4uG+QQu0KeH-S`t`c@tV7%{koj)||B^=yE zg5l3)eaM|}{1JVD!k<&}Sxl<0qW*$|Of7u{u|Zs+=jxIquzol0KH(@`xA`8lcoq9HJ2%rzI{YZ3eZckx$ZgE% zdRmun=8CWbbfp?6){_4?L7RK&IN>ZdFNghR%$dmYO*t<&Y7&KX^xB=+go+m*iWwa( z(7s7g(uod5RLg??X7BcBsmJK!zQZ>fax0?3ksrW_1ouvVlEVG}-Z1lP(&cYCriQ%H z2UBC`|6I5y21qj*{alX2k-$FM#2-zm>o^IDR<~f0n?w*jRq{@ceZN zjP*a(zWrCn%9PGTtj?IjCdcd#1uI~ui2yy@O5Wj8Y zqxWi?#8D(4aa=Wn(k{JoqTSwaEp6-lAL8CA$hL4>vrXH!Z98*it~6HKwr$(CZQEXH z+qP}z&0Xi7TW447eX1UAL_N(IZ#~A0IY*4||9WdWV{(d?TIo2G2Y2`9lGq_o#;gQE^l$-(Fs?m)GB=DZjpD93$uGdVIXv7RK@EzH+|XI~Uv^ zoXgx3{fWD(3PeJ#(L6qH9}jhObiSVUcRqp24;5fa*BHH;3y@ByMOeM|0Tn-0Q5)0G zPfLdgC#Oo6@)onBB%){jN9+C7_YBxo=fgO> zTZiR(-*D!rumr{>rfKjLqa>aFLY-URW^kH*Y>nk@(&1}UMt^oz;~EjYo#yLZ;0#%B zWFbc2{;Bb3$*IA8rzrV(V!9k}z&WE={js;2z#GQ8VsIb_=dRjRZ>kPn1T?aH6k9>N zRMXVHgX?f|nFEgz;115QPZ5F1~Ce;kM2=ieIm5J2m03PEQcCDakZd-yXs7CTa+?!x7|)9);@( ze0ai<5v^AUsAxa^@(`{uyYzqJA6&zq83XwP%Z0phi@X3mj*&k zZE{?K;jTAjq0-SLh`cdY=ce66XKL!s06J-Sk#9JHr*_|_$2U9#w8>q^*h)Y>0A;vc z*B?||n$25d`+QRsfIy&g*c1*-O(pf#Zo2DhkntvKUX$df8?u5>G|;gdIEk*+y2H!_ zWeMbWx73BM_^Rh=v3sl~*@SJl%f>Q6jrf$s7b}6&z;oHe;w?n)IG^3!w3kulqdC8+ z2qpY_Vaj~ZyAv&j6$l{1z1YR%XsGtnVwVW#`!yX@Qr?c3X(gD6Y#z5Bdu5ld#H~)P zmN(oLThbRr{d}8iYCtO$XmdB6vdsar!JGK{3TTDnz0PCnEo2Px3~myqEdZaiaxWxP zl{<;2k&87%_3fj}jyvHQ^ni0z_Te6D|4yu&o@1rs;$zwx(QHd&AM`<>YW$*|h+gjt zU1(LHODyn6JqV-Umg4D&bcLIYnV4Ws=x-Aq>I;5@l>JUl9oHEM0j-PrJ<2pXYvOn?NtTFplUvS;Rn5q?p8AQ*Y z1AWA4~QTyBx$7F-nI^~KLx?S(?mZ7(fV6#o^aRWORJjw*J?5!gY-v(uZ zNKcTlaEPuQ$b~=4aKfRa>H*^ll-&i>k+oOv!71Ar8%~`V3kz2Biv5yq^+18WqZEG9 z&~?ajimRCI@Fdd|v0n_v+lO!`Xf|*K>-ec-ebM#gzGMD_<`~Ik z9j8>hO*{jMAEbjkfY?iR&p14q7Jc@Tw*0cAvR3I{BmwOsOc@_i+q$F5SJ=K93<%D^ z!of2j3juyouV=6CYt}SlpGe3^cb|m*4P=^}epL&H!wvFKn3{Z=mY0xrV8J{;wvSs8 zbXvv4xSOJ|s4giKTDaSv)uKLc^sa)<)AuoY5{$i~5hZCg zOPLLUn4~F|q)Gay+;Fy3KXWdtU|Bh^1QXXNW6Rq3-jo8W3t1WZ!oa;cal?Bu)!BZ& z6~6MbZKy#3LXumOvIHBBSe~U}#FxH=L{f-~`+O?jDH<5ctJEPpyg|jQS6()cV-!{6 zcwTiH{Op;j`X;9E+KY8V2HF~;}BtKDgI9Vc(7-?^l360+J;&!qW zyLjRR>)#nj00W!8{lXNduq;G`s(wwYc<_l%yFj&GZ8dn83JzYOhpNnD`*y9xp+72x z3yhn@O*;tKBs_k@fK-)fxntuv(9PCrH~1`Cn?%il;IQaGiUnywkb_6*V1Bw_8MqD| zd%8%oz{~|Uo{g+#=to=I&f#WFA-sO6j0m5H=qT3(cN-q@oFm|wC6U=spwwzxxKtX8 z!{E8*K!?-yL}G5{VJ$uc`dg-Qq*9N7#41n@cfY~mPOQaoHJ?|5xhCh#(lZUddG=lP zT9<9JLg0Bhzl&MizA~)@nndb?rA2|VO6QPP7`0xE)Yd*kO!z|VjGi27c%6=a} ze6eujEXZOPB{}vTs?J`2CQ!3TdOo013&7S7Q|md)ySNcDJM(M}2r14v%2%{OaP+x- z=;|a} z6qI_#vN|?*ZNsV4iVddDn?XUEyF5s(rjkLU!&Tpgt7U~=wZ&AH5aMoAOJV}3PI@!W z8E4C*ex?N@7nsJ>?IQd98Du3r4b=SN9h~{Xka6*TMLKKHT97Mm#2xDZ361+{ zESN{qMkueY7NCBt`eyWo=|vSe5iT|^?Jbr^Yn{~IRH4zKc?dI-sYluM>q|D5Mb`5> z_I4$WP#2I`){ZpjTe7ZiZ5O~@@09Ka(`I6A0MQXx*;uZWPm2H2^Hf*B($g$SX^Zk` z)x93+;>n6p4m|KHt2e4A3`p#90b_@TMfv=2=X9AT+FGT_Y$;?$ju?Emuz>vno8oK! zwz$=}s6+QfpEGer!QnfO{zT_E?iWYtg}lx}l=H1vuYmqReh2NAVvC{phyujGBROr( z`X4{V`iFOMx$>dj@|%HGUnUmPY~-T>V;6{-!WI9CH3fmyOl6ZZwmPABMGUrMiiZFW zPlw~ZgYY|nP25Q&;4SBmMx1se1ga;84pNV8m-?z2@9SpwdZ{hggB*#l(MO~cfKVry zMs(S=$x)BhA$C68o}7Sj!-7|*)%3J+Ljsw<=f7xB4!4RiS9Bx*c+v!S%w|*}Di2j? zzp|AJ49DORz@5=O$=6H#!j&9FKrkR=xI=3s9TP}}@qWaefqbfhu)d4cw`>A(o|u#h z8<^oX+~ImHHHQk1bRTxGYYpO!I%yf&UCPC_A^@nb-=AJWAoj>k-!+5r=<_c{ z1nY&B>I$biq5@h^?>E-C-%p%#nF$G93anf8bVK-3P^0OeJ~fOMFq|6l93n$S$AjFy2CbFKk1XN@uhXmTgnENLlMQ7&1)9}5 z7D6#;Ce6r#EMNpBx0g2EpSm!>;P$P|8I+Y^&gPCqpa$kNAUbOMg1&SNY&kW;qf%B% zofkf&eZd6=j2BB#Spw(U0L^1>}ummNJrn2mI8k9i$F^6>tA^c7L zJL;d?II}HLan=ehDoICI$Anqd2E;@ z&HdpO&lDggVcLp4GuvjpI*WOu2$B_AzTXHIG77OMs4#93pQME#kpx(F^?>MYCY9|u z7zy`6)}vZ-FD!|OolMaxEXhjV07D7NLJ6w;M+`^PU1sH6F+ubvCkA*%a1@3saWS098TRJc98r!el?9HO!T1WV^^_ z5e@Z)sUtT`=Wbn6wBAEh`a7&LdJ>)P4bA26!A*fwrbR5&q49ku%khR}|IPe$jwwjU zQ-$ut-7jL+gfRNg+sU><+SrJrf=|1S(UASlQjL;m7{-u-p|VPzqW@4 zdDpG?N9wMDf7(Nm0H?jhtL)lvFu-{04IKhtD-CRH@T)vCOjdTH$&DneQ=anL{+{~f z<>F_1)@gC+e9#xFoyty5%U$iR&T31825e=kudk~{S|$l*U%g+>&Mm56pBGo}Ouyba zJ*bYVI_@xw3ju${qH#l9v$oB+$bR1*EnGm1{Hwq}^9>pilo@4#9hm$Xg zQ7ba7d&e)xLMu4%^;j|d-BB_Ha%}g(iHc^qSwc@ER}vMxFvqB}7sjnQap9};s!?}# zXQ<|VS$An!eHQzw^&OC*$s@!wiXd-Vrs?GbPC!7grJ^x-e@_{HTZ{rm2aw5*AkPsC z8FawNh*$OP@UHx!Milx2b0lGlf*kZ??q6Q{NKa7`FkZlkB+DTaNd;MhOZqFB6dFeA zwu49#XSajhQFP&lIW|AUI1Klsl_c zo$cu#Wk`^<^ zbw{?3e^67h+1u2=`aPv{3MJKk8G31NXv#We6$kO%{&AiadipDVGG~P%C+F+N>|z=+ zN|0eWUxlO#nxi^}AIxCNB_$H}mp6=eozg-$KN;NzoMFZQm9By2fHVKG9!5p%x#Y|D z+wZIpo;MtOZ{S$Nk@@im1-IxF`WyJ3HnHhRR5*ANl}$mF-NCZ6t6pk(AOB-PhZeCD z`QI*%H9?Y&E))|TFp6ABedqh<5%U<{K67BMtwF{(vue0|v)ChKWquK2A^z2S6oA}i zO>M$D^VA(KK}RS(ojct0f|mQCbf@=^H?{zwb=v!20ll{a*bjLwTbj1f$1h}1N9}H} zpu;VigS1H#5b8{SIoeF8fQ149$#0-1R=&uIZ z1+WUtv1^7%DVA(U`iZ}kEMdAgncwg*h{|`+UO4d`jI0Yq?|cZLmvh_hIr*M^n`NDQ zdKAR!7_s-ACT}R~hTby0F%1dmCFue$;Z=XSbQ{QG?G}EahVCCfRKXT)% zMX}55Lb-{kD1;j*DapAtMk`|F>(|c5bkQ~s@awYzE%SH_mXEc}CIE{oal7+b#Tjd9 z>}u+hSPy0I>Zns~Qy?*h2tE|3HI*ly$V^w{Ys?r9o7{u9f~OcL9gB^029_kcnFEbG z0H%adCfj=4;|#Me_A>N}V{ZMix32Vqhzqf5hQHnoMC5CJ}XPhH|fRx28Uqr zI+RrAi{#AoogJ_kZ4`1I!)Fp|zoXD3;vm)Jc#jMgLZPt*SVO&Mxn{9KCT@N_`tSoh z_W|@b%78cr`jB=oQkG+-jTJVg4ME&n6~xA7b`Vi7Xu~gwS~{#WT{d`D{S!b5ovIj{ z$~UjF(+F{ir2wCm7mYYJCt!p!CcjIyG8pQ3wWqb$DAE+NuSYU)mnV4T_>{M^@zX8><|X&en0Gx^Txs! zE8LuH)&5;rKM@9A)pdUOfVSbzq^{o`g{7#NGG!k&q>e)!GGOXQbI^3_M4Ux6ineD; zngNK21O%(FtoOy22BtA%#msao8jF0s;Ze5mO5P-XKiCmvS%UT-F>W}@PFZ3D_Q+K~ zLXIV>;v%%L6Wn|$F+N)hV6=%n0h?+djim`7sFj~J+L67>)cgfwRZx98PZ_FkZGL`QTtMETzp=kOhcCe)y|Ibw#QN{y?qv>jb=Cos|uH zjr*VrCp)8dFYgeKr+OqDgV@G*i{Z>{gTQ_VsgWqoeuC(spxp|ROpp>d39PRk1luZC z4Ev_#Rx)G`%=rThLCcvxB|)5TT(W-794V`4dP2zmblC;NU}84F9^ehLX}y2939k7N zEd;-&1)FiqD1{*nQQet6bBKYJh`4Rjn9 zrmHbJcRm9v%bVjR307l!En`DU7r93zgHq=fL7w?BWcYq}XDlvv``t*P8OeAEK7FVKyBHthfy%z38mLkxiRT6^tqEzgKpT}V+U`( zlxY@lx!Ug;@jw)G@EO8BX@vheKM++P#}WYLAc4>SqZFY)E0%f!PqhyFcRV-1re5zT zK22>U5jjn*9yT6bLp!U1XL_xz#EA<**$&e9J+AN4SX=;ty9jp{jcTIZ<}C zc7GGySpm@eY<3fx8MK5dWRhlQ)S?`t5OoD*)VlkH>T8qE0Um!(sv@^iyDp5Cpu%g^ zPWeI*P+8b7yJIhP?nS%WG5%Dt7@hvF>o-)#@>pyx~ke4*=`t-^>GVSao_BF$u)Mevk>Ga#BFF&TYigYNf>NOCc zAH~i(^as;ZqKPV%Li5@qCdt4`;yodhu<-bXfnF+FIvetO*|N#+nDCx!IW?x}S&Z$P zdiTWRh=P1=55?r4dqOo1SXwsoyqXc9fQ-Q1s^g#;HVBgVSII=?vUtf;^ghWs?|vO3 z56ggseiX}kyhS=TN+Ovm1q#GTlt!%u{5-b#bj7 z*>$3{VBIVO-BVTf^(50veNk%xw(iyH!l8l7dfv517+nn+uI7BB&3wUn-)qM%ZE=ze z))AL20S?p(!>o{)cWGfiP4V)ovsY6JomOm(JZ`dQAN0Y#zJ6=f;6`@NI#J|3OE!MF z;7)-kv?+qgQ1*{;g$OE3Q#YQ*A2AvoJAmi4`QHlIVB7?AB311b(yGC{v5kyEV5)&! z12h@^70j>c9*U`sN1#zZmEN2hb{s3CJGnH@dZE%*a{eUI z7zWZo4%~oyOg$A(_*}lHke}AvQf}hTP*?u5k5(q>M@n(V9u2j(U||!EujdjJMN}9U zc&=Fqm34&3O=^G6h`04mR}k_vB&w^rc%(#p;3$R!wRfqw$4fc+S;7Jm?N4dTFeVs7 z&P`1uu`=If_G=Ku4X3YwQ1qJx_1PA+BdIFBW>0^90@HwLDez313_q3FUN&(((rf8R zgOk??hSQbaIkEL}h&Q&=DeqLM8O*ASm#Q2WReh^Wv;);QZ}pfI9%{3#N}5_6wovFg z;AU522Fyz3z50wjl~|y2uqBwcaf&d7MR*vCM(p2I@_^bfCyf5gu_fczNTTbl_9re!?Q(hgP`PUMld-`9)Nga@ZXB~iYaHvN11Si|e_5fH^V+R1w-$+LBb3s$et^EZq!oufpsfl`{ z-8IkJQ|+~j(1Ufb+!>dUk~y3By#)69PCM0>+_@l=J6iz0dLYq!Pj;P4$B4=as-UE%74Zi@yknHCe^|^FhU1kU$SI0rX62@rJL%CqK(BAie zM!fCfpVnH;wd<|*){<7#_y9aWq76TFi*Kxmk>UnE6(^yaItvIvdy^sz4}^mXntJy^UHEyoPEsXcL;61w138*mlgGHu~3L25!#7`ilVQ z%HP0UN}lo#dMppwUfJ{Q4F|mg_>F5?XmMs}cSx%o6>@O0m_I9_6;=8{6|Rgi{Hhn3 zx|KE5&L^Ls5a;41fnKmJI|2=Aqfsweb%RTG4jj4!b3A6(raFKH(`Ncyh;q5}OIa$dr<{a z70+>s__XP+p(U2Vq>I*PMuXrp>%Yivy$g13qO7tm(A4&VG!Edok`nCUyr)C%PB!YC z{rXHz+1MU#=@E-I26GdS%3wCMhxU%X<_Rg4C4c0h2i3lYp}0%+gTxvx{jnPL*Dm7D z5Hh+?t+>rJ>L7#mAmO)*ytxKqhP$>=1`ljBpe(nwvqg=%DtF0jzxEBWOT0-DkjMyo zUlAEj9|Br_xwqDj`CzIMon-Jk@43^!3?oN6m7#r_1Hvi9Og@|J40;zb<^SE;r|3T^OX^Fg}vW+iXrhHmOWej*IB>u zS7`I(p&{9<3ST%|j+<_QH+C=(3y7-ardLG^WYq|O1V90{zBBK@&R5NQ@*MC_7fmsmJ;qL z)1_)w&?Cuu*U5=Et=C%RG)2E-A4n(`fl5%cRh2dDv&D2p!(dfCtQKdFggQvk&aLKv zL0bAj%b}zFCrR;_%vWbAjcQ+33%eHVQfmJSMw=Y#cBmuJ7s#}$3RH`1>Ij%~l*yEI z?czbhHO~$(b~u~l9ZRp)A?n5SG$@4&{aTa7L->%g3u?1qsy-1Q+el4SlV4tkI;txotf@^Tph`-dVymK*?$bvs5{yB=W;G=0M4v&u z6vvEWtkL{XUHwQ|O50WYjKMbD}jq+MMME3>Y-^D#jK7OP7xyC~B@) zsj696iS1#w3>0yCpr^8+af~ed;VOl!b{YL~ceVe3&rI{JGs;psf#>E==+v*$+*oLs zBJM5&zlFiX>wg30opv?+n{e~Lf{gyf^63Bd9orv@)Bhwb{fhya8Gca9KkKYNpsAm& z)*m7DPY>=N5Gc-n^x%Fg{A`Y@5d1*b=|u=w=!J|N95o33k5+8|nY+ySzgzVEfpP!m z2tU5~ABoF_S_z$V}f0D`B8UC?O`=71G|1J#w4`a*!tPytcj@z$`#k+{U z;Gcbpe;`SiqP@)BL8}PQ^E**(IHEM5Qh0COG8q+eOuJ|7PQpqc{@CMtQfbT zEQIM3+o;s;iNDdL*ugCdAVCUa6M)L`^gHJBlo-&0?V-FnQCjPMyLnsOHrD@gvAaKB zuG#9R|C&BmIrddnLmDtfXA$6mk42(_tapWv^)0bCe46DojWjX>+@G@;`(T|GS#F~ zR^c>hdJp!)GTzj#0bn+s0ccWD*Lx(}ST5EL&<~8I0hO2odB~L3tyg>o1o1A=IMCE8 z<7JZcNa8XK#L@kMkba5-VdhQ5hYGSkR0vS=M~oZtUP)7yQdC3I!jrRS5XZ~S|r#YJD)a@+I8XzDnS zj4;*Wb~bqn1nHDCG@vap#ChX=f8fYMwkR{`HU(-K&b^b@;|4umS6lp;QVYh%)> zLZN;Yo#k^zum;YfzC??qKK{aJDvN`s`{LvEN*v zM_9%y+YYNtSLL-CZu#Z<1A5O_vUrmJJLCOej|L3-1mO+r*;bCPIYfUsdOh@gcICbd zN&s8@-Efng6|I3O^1Ffm4z*102Rc zlc0{~Cii-mbXNyxaez5L|B;tZYad=Se)`!pLPwwH86hzJcE`(aova!yLX_t=TXL+E zu#t*r)8(0#oRu>ZCDv-t?9#-vyuI$7r^Tel3Nm0`Xh|-%eK&p$UI8;@G$1g?bK4V%o8}br=JDb_eMNz^KJ* zd~O>^oBbkRj?|WJE#%wJF+T-ENOyz3YNui=p*&)Pj=OHI0I8xLJ?IHnL@^%1l7OAc z^m3enxci02XB+}0QlYkgNUnUmP;P?^y`CzS#m*AQsS)-ah{zR>chcI9QV{3(cT8GS zKeF#uTr&TXX7if+tfjhh62@4ihEvE|5Fg_bNr&*;=g`Ps#F5(r@QaXe`A8oRfJf*? zq$#XO(WC8#10*{I=3>CV>$kd_JaL9@Xte!N$;omE9O63D@Ai3XX6NYsgil#Pny$rSLK7LPL(?+`RxjCfP ze>WwbH)$19ci`e{lKn%3=>XeQUT*UVu)T(B8)JSQyihXUxR|KnptVi_S&3LzoafG$ zmC6`x%XqCSE*uM)L!CJQw=tR37$$@5r^m}x;vs}Mse=|D;v=$+3ln}#mnTDjc{6+0WT;T=VL+))k5N(l5!caDavueIuyKeHyLM;@S_8|s`3+RhLbX6X zP+nUE0X(idBmc0Gkg$`#%zC#b4Rg=gY_NTp7{5@R3dL<9X(8gyAHCaJwxNVfPQi_< z?LiT?k7mGO4P=w#ZzX*}rpL*iyG?n~Gn$d*dCyEUbi!e7|F?J>7&M$biH|=ZM1qt- zEoA}2^}dy5NSx$@&m78rE`t5+sRWU){J=$CFhIH-oL-uowQ#171In)2i;8|xC=IwM z&f7n8?2nTHs~_bVprdfJaiAH+rbk?%U|dLgCywRZWARDqb;hiC&?9Ld9OHfpU;fCzIfkotS)kc!0PEK0(mOHNG#0FI zGio3Q$Dp5^xYS#QmEbc@VJyKY>TwO?3R5rb7-61`zyroRabqsqHvE(xF+YWp#ZU}vIEaTdYWnjdjm z<%$rvDpTwxve^=I__5tw45YKplo`-qKKHiMX*d)mHAW)I4neZnxB*;?@k_KkoTA@( z_Bhs@2x3zetBXIxdQ1@>yD7o)EEXH6kjPJ3Pnu}UnVCz|r%N9^>8vQeoXfb4rgg(M z5d0C5Pe|xpHIT;z_qPO-94-9ou!0xB<27FcX!UOg2FKHcoWk-_q2tBy<4aI`lC;+GgVYqV>Kit+g&lq@GSRB z<9CXt|3t~ObTWV7tcrHXIJ_RM zt!f={Q#ZO@Rr{i_*MbTYc<_crhH-q7%Vy9Ne+{MHGdG%0R>(Fu6PFDOIWi3XA-Z(m zF}IiLt~%Mls;&>J9eI5%Ep)W<#YKn0^c=l?A(F4uVTT!^i4}o-I~c8xgJ0UuR#|&b zsE|V*igNc=%x(;i^2zro2E_wF%Z4fga+ctarGT_0@!;V-c>b#3^PFk?Oo8)Y*qq_) z{!A+pPL{Idut?0K;j96>|AhJ^{E3970Z}ED>!-?t0?{Gx8|Fty)v5;TmEapCHckff511uQ zHB7mB^fM83C{fXePjKh$Bb(T7fb2&2ENe=zRzjybR&nFOV}t5rr)!?4kSHA!m&1rS z8Mky{D97wncf}~n=#@`-?DVn%jZTGu8iJfQ136vPg+`{4ZCECWR5ll8D%ew8oH!W< zp1Q*$u1_mIrs?OO^}CA0gqK;?Db_wbry6UbkGuqqzU<`ZPLkzyAtCuDrRx;hkZ>^#wb9;rMFBku zv!bPi0l?hb!xbj%kR~D%(~IrB8G(D zNWUq~<9zQH>}s+FFJWf6TIG5sF=d+(9^a6RLz6$yL7vG(0^GO2$A3wJ5_zW(JQbbG zVcVm!s2u?>9O(i!p(x0X5EVaW*W98XHII!tA9*R)acKC`;NMCPNs>_6x2g_yg*JE(ErG=hpEG}mnMfO^@ z=@qVmS}-zF7E`7r{H^VFOFN5~bXNpn-f-gvHkeXN!$TphMIY$eHf0^57kjk`LttP? zpSAUoH@k&*1Zk;YPoJMy>m{q$d@S#*65;MjL;qB(lK^NJ8{4uYCaDQ>mX#01xbv3d zq#E+trMm?4DV$4J6k|MFX>?fv6zUr*ad}H}^{H)p9yW(tgt1AY^U3oh%MhXS z!`IA0V^M$v!?YSJ2zHjz@8auK3}&F?N}9lNAwk-r$*<%n##v3yN-bvCk&2@9#&vLw(EI$JqYV%j|M7#X-uc+h0`*BC2h(io*GLAmlqr?77sLAZDc4#z+FrJWlq4 z=>;&RQVs#XMiHGm z-_6RGU%MiOx_e8&;m3Lf=164+^4+1Pz)t^p2?cc9(nf_9zW=xRbVg5V2OGx5W2b3Q zygMI%xtJlD-J(+EPM1xUI|M^dJyIVT+nl%wv(AR)5%R&s;#Rk}GB=UOWZyXaPyjD5 z#CKu_L-dl|hH`ii-3m@n3NLz}n!KVRC7@YC+xXNj^6^kRY_|riNjnU=hw`BlJhq83 zW%D61dH3!P@$y;Ea)!8MOM=1k;BN>&n1Abm@h^WUO?VC^&`Ik$L>WIccMY~aHysd> zBVzjK%sUYgSG@x8SX@~Jg}^3FJBc=oj5zP!JICP7%95!!elDwZGx9{Hj>~C0NT#iV z;ZHzi=P&pI)hJf?6}$o9u|ivkTcJ5&tpd0K%A8`VyF}O1!h3UnbPjRjc%l)A;T2Ny zEfdhoOjm3M(uwg~yoS*WCr+rS+H3wN;G!wZp>a6ZdNpO7S;_hv)1eRt-isnmu0|?% z6c0|h^s%M^yvG?I&MYU|$$N+)g|=iokXJ29_+0eXtQ2?yVJ^jc z5e<+KL&4SNQMlHyfvr)TkuY#72Jg>vuA;hxC2XrwJIriK(4VgZ_xnp$^>>USSy5+2 zyLVx&;QPd#M5AsLb5|T_e|OuC$f%r!Lp$7!M!qj)^9WHU7OZ5QCv)Wwp#qO@G|b$- zq=jol$J|5+lnHoMJcjcV08xoloWjuBf_?!BUT%qb2qw1{ljUJncBvyp9p5zYiL)5a z5fHcmi;^6?@g$NB1PFB5Y8#@JehjAs10jR8PUgon-py(C&>$ys2~74O#A)J~T z9TEHJV5>DhhL3bG8pt}O>^l)lz}NXNfS>Ncla!poCC`f#$M%HdC5maodj5Mj%(a$5 zS61fQ`jHHFrXX|SCBqCIXHN!tR5fLa>D(5e7XPZ-;Vk9 zeV@nmCA%ekY{c7@gYV=1A-}KjOXbk1iGw$4ik?2-r_(!W;HQ^NflDd}_Dd_TK=|=( z(dUCOy~o?>>-Di>pBj}CmE7#%_2`irG)I!iRWxIzD2|zJYL{MT*Ws6!{p=-DHs zjobaYOpVT`6H3%Kp4Zp@xr)thn2+11Ilie@D@VhB=qREaBO)#^V}tmL)nOp`P`bQ) z5OJA-UA%RcpLJgAI@)_`gomb1IcCiakud(Ie73ja#5C05Dvg_FMzM^sVRE|?hFpcO9OAU2 zf{a;N4h*VUO7mr{wd&e^kv>`B>ilo3b=gW10j+P@|fzOnGh zkDgpyzEI!_U(4XI zr?DA6EyY65FKyGmbZ`WTahej!A=g#67nu1y{6xS+JJ+h~*9*Kh8%2=$hsjV9CKE^| zb}y5`KQy}ohF&~_?3S=N-v7@7*L(NCQ$zmCX;b2qOcS%bYBm zA{IY9y8S8=OJn{1CmV#R3~~*UcIF=^qqcPZ&ymlk;0xUem~2QMRUiRdJ(Y8NXk-|4 z2N-m*!XZMQZcaRh(^$IcV-e)g&2>e)qd1<{mZ*;!^l4es>}^Siee@qMpW7=YiD)0n z)|LggCbEmH!o4b;|FX{G-8<-43UQ$0b$2mtgd^E?7eV|Zc0lp|Rm!bKo;I4DP#^S{{20+YCFaq#is%wuPP9xzkCrie|<*)3P zD~^D>D3P>I73l>?3;whecNmott)R2dCHY$>ROYF!gkZ@6QkUB42h$XO7)JF49d#M5 zZ4pjGdzYC`8~g(PDW-6Tcf=AHortnN{!IbeUkm18LHhd(p3f16BfO`wV`Tl z?c{B}KAEL!#+g4}F)LTNb>SYCasp=T1W=aQC2G#)I8LB>zo+8luRE8yapzCR~kN3o2gCR1anZ4`&>*qk94^IEn2a5Oi3J zMy4(|f#aYnb<76=w92wni4xW?b)0+IWO%F@u7(44Z<2a@2;>Sqw}?xwYC9zlNI!or~c={XjtwDi9!?z~3sI z94eNK_oDF?idf5bt(3PApM9y>KzsI#po9fU@rjm_h>gEZu;!G-W3m)N(fWwgmyCz> zUmNM>|KeS+V25Xskxd2YGh}CYpZ@)`iLlWK(PD*Qj)l^P#X1R=`~NWamO+uNS-LRp z?(PnSyHmKk7E-voySoKySwYnIx~Hz&rF~0zTcnuh#&%zosny=_f7WB z$5!#yB)p((pJ1QT9OM4E0uK96;0@q(IiQ%-eb=L%tS z268cirYxj9Ku)?e@$_pH(8f?vgT2E8HYwJsIV;VO{3vIOdR27*5 z0go#bbl~x&@R2nR`tW;6pc#C zn81?vXdh%5B13O9F4;32=o^pH>cB0=GF!6al94q1j21)jMzLAN7t9a+%qQyFOoOXB zf+HS*yVL{RQYhihCddj&qC;rdZr zuc%-WP}@!RG+$Bpr}V8{!G3A*V-8rl>meKwhYnoumyPch4vO-WdvKvm{kHUw(_C3Y zi=BrJHQWp-v9Q;gONv}=5A;?=)^|GS6U8?!ZO6Wf?CufXz4D4;{`{@SnBkQ^AmOaY z%C##}iPP_pwl7Dg>5&}M$VDa_J znXtagw((;O8**2x;y_2zfU)^W%+YHFtdAM(z&p_-jH4O}Zp(=qJy#s`oru=RlPSBh40P;b{tpLqpN`Kz2tqW#H)b z3yI9io?DtZZN=@~=~e^*ARLnLC~yyuMUg~Fjy5#u6?;tYJmD~kE@WsD*pR+y6iWH3 z%!i|j$LcKv*P;i_f#HVCExnnE?asH}^sx^yG!uWrb4?X4AaAJ~*1@8@j}m#$;c4>J zH2Ap^$%WC0`V5imwbRDJ*5EbXlcl&*lN#ftPp2W+Sne);KqGay9qQKxux&r}GhK~2 zJZjK}FkI$rO9N$BXgQY$ZMt;;7x`=4#Y}TCCa^nCVHveVtPl){@dR&CGA}#N&YkSLabq4UDlT z)RFB|AcwD-VHed#6RyT9WBmmZRD{asFplaA0`uB*%Dh7R^2=-SLf5fClr1o<_;d90 zHIx?1lXX*?-f|?&alo)ji?DZCnA?3hS3mKBB$ep0CURI7MdgCX{^&Mzveu_oac>XKOl2}!9Y zZy81lWs$IpJ-65>SM62_*epLp;o*%3eRioR>(xIyjcLmD+{1sv^@Iqz;J{XQ+heK9 zslIIaaX1G$=$>#ifhO-dtiR+L7}5oe{YHLir75jCvV#?H9+i^V_WODDX!W&kWXn>(P-s-lFdMguQueyDx`1@v;>u?6{nk*G zy@%Q7;Y{;fFQZAx{P6K3Hc9dy81)8KwbXn%AS?*6mcQLB$&DEiH6)$K!uGK^K99UpIWoPQtI)RGWku@A}%lwt9j;9d4KYc z$;3j8+G3lTXtwx+9>S193laIIL4uNX$OK{5U}MNK<^^I}Qn}oH5=?G%3Aj z&qYYpiFG1PPV%@NG^-hJx-e7q#!_1Yc@@&oPP3X*a3d;T8Xk+thF^d*K7f*KH}!pg zcXej2I2m*1ZM)B8TAkjEL_j6-+~u2jbmaRPIdlFOxs0}_=V;Zqyl~Sh9GGxSx7HL{ z4>{sF0{BFEZFiUvRy&}vA&JlP9PI5eJ@E(5aMLWhm@qtDP7A8=nCZ$hPs+DmJfB%J z-obmHEs-ojlobdeNCY&NT zQ&5|9cOA{JGU9FLs0)x zY%MV6Y@n3pcF~cr2qpE+Mgk*NpS~YnmlZ~9;*xVo2>St|D1K6{>M_4=vU|Q@5sfm_ zpE!hMtlBMQD5H)~jkqv79cC$h)osb+msGJ&rh@%AzzkQiMNQSby!dJEvF#h2 zB9#MF=O3#>F>3tI=1q6?(Ka?m>N(5X>x=$z%KVYIt3v*6emOBm3R=T}#y`=u!3y*t z*2UxL(Qp;!=ozsw`vim8|}Jsd9(;QQH`k_?5cyd zyWDq}FDJ2Mo&Y#~c3l9YeG>FFpKPNd{Sj@tx387;bOK=q3HzQjkq>U3~=%iLO)>(3s+pvG}y_wL;t<${^ z^Zjuqm(=F-jt=8=JhCyEh?+q!dC2cs`zQrofCch&pt@wAV2#RWUfWyw-qo1(75;l0f<%)?9dx~t{Zq<9qVujrs~p(xo@m4@|-ck>*WWL z+1Qm;+!xk8!a-_Jn&GjRVh$LLP1JyaQV2vHWxik>JkzV~fnpfxqVyl#$3y4nYqV2s zMObXhoy5oAv50yc?d+#=49VzM3rN_%%;fU(*A1fhhUe^oBW+T*|IyvlrD(Do!Tvz zqAW`%i)NuPJ0l1%d8H`FxG<7k$UA%^e<|^OaOu2m#I~;n^Y)0|cFm}#K7ULHa|A}I z<4)6VT!-TlTvy-ulM7w0S@($356$!XvR7bBIj%!kb`6C&h zJc?(?RGv77skO^HtH9Cha~2i~L;Jn5Z0upiqoO$WvrD5OJ!q^t&n~vDp$ZNEN0n5Z z4T8WM?oIglCp&pOU-#>8*q0Cx#a!0_DXm~dFb6k<%?;Yqn}#L^?oxfIkUHP|7E*9{ zEudQ-x4rM!y067yJg=mNq2C*Hz7T*R=fHP z)(mE^G?Fjg1uwUAs^0(fG)f=gYdjZn?F=F~(J*~@y^5wCRo{T%n13R|y%k!cVQ%5_ zh}F)5Z)sIF_UW#0;XE(Y1nbOa$jxD4x9v!&6u(Xpy~{xEk!)SkD%|QrP8mp6-LGW` zUsntaEFH|ZG*NKn)F^Z(qY}^mjkPc`$t2wSDP2iL`COHy}os9{tJ{`>6F@cFJ`UQ!_p}cD* z>$Y$Yx1sY41Rf+7SRx$QOkmTH2fIADU6_!M2=2foR74M6Jw8lr1p9&bveh5=7rel~ zkevVT^8$Y_NB?7d$v=#i{ruV1?F#@XW+dYJJ^vUmREZ5RdFrm{&&c&3S+Rfv{u)yTz~p~G;{SyyTWd($fK$V*ijU&2LnG}^xsyy7eY4tsk1VT` z6)xGJKwfxMXCG{TjL0+Y*4O# zSSBNu_DRbB@TrkSuqxC3j5=pYg8SHM)rjVh7K#Jel%D>X)}f^txO9Y11Sd3DrHo=i zfjCF(P?p0ONntBGXxpuxAPn?>eGYJfrOknM8N^F#aM+|R6uRAByTMpG(uS%Vnj)ru$tEp1<-Szoxj11RXBv{qG4bO%V$ zNkyY{)E+-MoW#=DU3&)MidW9jTIP)-8i(nKlt$v?<_UQQs}Ak8O88e_rc>-daz23s zq*NHRC?{mQ$yNl>E%bJJB|7UQ%+1rYHa4dyU}on~Ejy~6Vzb@v=2YoS%k!qAc(FtSfP^fl8o-<5)79BHiu5OvE5O)RTn z`%WI^imUHqlIs3`YF*ShzoVmg4bfFWGY3K{`PB!hG3lsRAUoagkEuZSeHDlnIkk z@0Z)CRVBpg>sT3}0su2=Rw(l>0@@wDxelErR~D@^#PbZHTWP-yid(2j@8m)E6!>l= z4J+0RX_uc>(Wpzj+~zWH{T2N8s!f|T*ZO^|XFIwRpFv}G(mAXSkLl~%^v|XoF5d%B z@qo@(B|dxFkGbdz_~u61C@idqcWEI z*{GO~DsBY$_~SVsw*-OVxVWcDsVM9G=~Stu_3FmhiA<_wD+t@~)$Vx9PT@#W@t2F? z%khc9puenYbLUqPG|R8B!`y04JnuH}KTOQmv!3dr9M*pfhX&#)9jC!VB2>#7fhr_K zxHfCc!qbPR?t}Qy=jzG!i4t_jEK-(2ez#0anHrb>y2K^=j0?mzV`IW`Sv9xRP#F;% z=rw=~o!hX_(Y+53PJRKDsl?#b!$ohJwKMym>;c(??s_`NXOhR-VAbBGUoD}=?&E;Z zd20ZKbq8(r4b7hW8I@C;sh&d}=3%NJO*O>r9zV+NZn2GsIicx9UmYBRC5wb(+UYB= zNV(iJ0G~o8H2$vBm<4sYQ40Ae5+rkHz+lXMRRII(?7-D#g>2_Q+i6D)z*v| zQ&A8G`-U36IbHGq$?!JE@Lfi=%5os3z0u78L(b(;NQ|54T=0@wo~&k>E;E2NPda{t zZ>!^KOg%kLY`^Eey5Bg05!!gAorPxb)xDXE%VX^F|%{gb8-@~F>?MUPgxiN z#4bA#8zADG{V!Q<0Q>!SgfcS|;1&KSq0I4{3jM!ECZ@kPGW`Q?orRN&o`d6WRj>l+ zWxxQze^JG6p8P-jRDcU9;L7@ss`!(!i~~TK|8qY1KYGE+4luLGxCqX6pLuUi@bj|JjRwQN_Q}3od{!@9$USU&suYSUBkcQUMkY zPI^GpJqrgtBfw?{5E?Ku|Ibzk0epXd+!zTNI+@$rFeo#qDoOtSrZRJKvg2l8a5OPD zv30gF(*ONudP7@l20I5^CqO#Cxr?!>vA%-?z$)mVZ*Jq{Xk+Z;$Usd5un_)PpuolS z=j#83K;duI1MGo-A)tRN|M$84?^OS1iN_y`jDNBN{#N~OV@noXh`* z@?BkB=}pY_|7g3JEgEBd7Ff;z~cK@%t)D9gz+nqsVUxCfe zK7OfSS;r6i5hBh_ud6*JR&!j!^w46&L>bNFk$CA@u1C_lqMTZu`a+TLwmLZ+Zb1~y zy1R_EtgH`~b`QP9NKO8#pAQ>)9W^Ij+zjW-0yX?Kgdfg#PfxWi&tH7HH1_TcI$B%3 z)8{W2OGvtCM_n(L?+^)>eb+m~3$WftTD~$#pZdyDXlS;3-~7s1K0eDhnX=u`_TG)U zp;9}&IX%O*@ntZ%$0sH&Nd3kwbw-JJ|KQWkcG_9DF>-!Y((rUN)NK3CWw7I0JLT*1 zvOnmvv$4_11*v63A?1XLgFFR_B9lrb?c&#~Lz=HaMPcX}@aF8T9m_CK>V>5@Iy0vcll+uAhTP_DtG6+oMS@9fW#bq2fea#v zJ|GDd7RT^Ih6Ek#`Ochcu^``I$B68!?M`hi!{M|nMjC5SHMGAHzU1}U_&r080{3VD z=Z7&#aiCPZL84*#a07(J?Xa27%@>uZ;+rbozejkt+y&h@W zUbRbM-9CA>&S-`N#ZEF(sdBp69$AWZKo}n=W(?YJ5X0)mSInE2S{(G9C^WV`p{H^B zvn3qTp9f{=pRkF|C`jIDJk!glU_mqiVSFr~Iq@mKegfZYSpb7M4J$-ATC!DzaJK&7TMZd*6gp@ zDdcNuvI3@q7mpcnLV-~J9rQ+$c=Is+QA@)g5uqFgx=3xM%wf(v&7IUM{D%)4{#{xz zRmk#^{&(0)$oZSC8jI-qg;X&GiCw+e5z7($*dQK2xcE&CASTt=cK7}7VHlq90ux)5 zCc&iV?}YbQr-O5frp$1u@Llj_VJ*Gi2)eUKyS{C4Fr_c@v1Hz1BSXWGbPQl`GOD|zmi~@ zipB}6WXd#j<6+n+1rz9MV}|*Q+@O%g=L`4(pxP@j$YB@* zXI>bV*{AThj^CUndy1;UvOje_p@#=rkM=+oxq zO3e*N!r#6Vkt%Ft0zWl9qi9nD9w&t19ztp>%8&sfzxgwelK;!<7k{wymIih<#*uwe zJ4Q@3X3h0D(7KRhrv9v$71EqE+DRry(PcP!BBRqk9sqgw@9SZOt@|ztRdx|Q z?-ClycGiCd!dFD6`!T?PX^E6IdmzZNmii5z5z)5 ziS<5OS`A5WO=Rt@@Va@#!X6$(pf!HYPhdSDa3s5X29?vg_Hv8+cF@-9=vSL{zJ&fB zl|F=|9*oug$?pD5m^fbsPN-r$6Iz9qck&wM5b-!LmM5zv(22 zGPfWT$wc=4pm&N>Bk`lX2-U8n6JAHn*Cf@0aD9gIH!JNhNGn#faG{PMwW+G)jHl4w zdwb{UBB>%Itq?alp@khIK>iMCtM~e{*H}2;s{XT4Dwieht$O^>;#7-$-5*jF#nhe3qrKet9DEO;R)7jfn ze>!_0e3>8ZVD#l2X`7mqd@^6wsf&aPdgaF`rA|cip07an_FyWuX`MQVfMQMXs&Rr) zuxeaS^PDlVzKNICRhkCDKk$UYSTYlq=a+D4)$m8jc1#N#@e*M+rm^v}8(*jlvv6>({muP4U-Z_%I zdAmip>snHR^16;G_V~7|W#Gna5Q{`=j$$$aZp~bo@m<@RT=QGX#6hx+6e7HVYCNQw z2&8q>&z#wTB$FotXk@lo5HMp~B?AyAPOf+SObYTsw5=jSQn|@daWcsBZ!_Kzxg^Bi z56p_Ul41L^PhlkJB;jy7udIfa>Y>vi)|917$>((%MUa(gfwQRiMUdbu!@O<&c;6YQ zWxrtK4ih{|5>D48(S*A}rLcO$Z|?!-b)9OB&X#d9YXa4pNozn&n3~5A2Q|kxIp`MC zL|bR1}6%V~9bo zyjxmSH9#E>6mo%q=^|pyED)@6bVG$X=@BfyTDr6O`RRwm9`-KXn~0ttY@op%EX9R{ zqbqd-KY|Yx(PkY|3~E`TnV48DTrT<)kT|vU9P21E1I{hDrYtl)a+#pBv14D37O6r9 z=dAMq9F;<>X12OZ7Wyi{Mr^Q?U&Ax{qa(p^b-h0Sj<}iQW|lo{33nw>1GgC#Fb^-% z5@BGhk3o)B1xFX}ypCnDP`33BYBHxds$?*3?P1QYyI|w6XaH?|mLZw<7MEsp8{d$G zG?oXFVJU&qVuh9(Z28!`cFZtlm6LB<4(6FITEQ)u{}|#&l25MQVC$Db{s|6bMbkbF zRI%vMb}g&pHFayK!5wiNOk(rQ>6+<&rZgb&)?NA|<2c^n(DEc1!jf%WF73pa>8yuI?6zBjUAw7QXoT zE%Xj_K03k!!{O{jm~5!XDa0zJ(c1+X2P7?gmy?*yd@vrtT0O2CR)|=qHy~0JQk4Gn zihLW@U_RFCM#jhPz z5s@VHGBAJ~)^-qy2G!MUiZZY%u%Q?+4Xm{5p_`6n^@q|+2@r}_)EpO6Ev!%w!O6UE zB{>;lmbUzAdh9w)}$|w^>sMf_r_Z^b$_t0 zs2XZIjpo-D;@s-%szx3M#5c2sy>4+xjiR-105w=IIF(H_F?Kh`98eys__Biaq11fe z91n*SP(bY>lM!_o=7Z~^8(@0C0g|HfuUp!ZG44n}GR>!x&P05^6ofAC2Rhl1KYx&T?K2`7qmt%rvy@K%L?!iYo#;u3Rm+=(Y%&`Uo z3uSCpEgi*S8&qU|L5N&0a@?wPs%{BHSWxdc>flp|BmQkjkq+&p29Z=u#6uWp)RW zCsWHZ$!6*Liq4!?;x!|l#!KsVa6zQTSa_T9a8u7`SNT)^*Y+DJcMh3*5<#M=#Lcxa zHzMf`p>FdU)KKI0iL4oNNem$7h~N;+s#rpOV6BN7n&rE!$Ko~keEaZ>ZrMp;zu9cV zC*F}(UuoMGSeY2-MTD7Rb7|!CUx_Hpfy~qVhfEwny#2G>_V%sOli6{w3AcIZhKy!XoE~mIwLq9@Hbz;kGm} zD$@~6Pzc6oZGhw-AX>Wx`}**IMlG2t>U>`b7H8LzDnm~mFxL1@Q}Y_y*K zYP=wZ7isMf+t@gIe|Ch&Mp%qbvpjA>k7BiL2)*#Za`J^@;)^S?hOHe=j%!`H4IG#Y zoXqIHbmg8pDK~3lp9n-yXCOh9oX>(Z;V%89EjuVhxrs{N8(K+iH_X-SoGC(4VqEp1 zRe60-*ET}KwN=M)DCi^z2R1KRZs^&3M^Z7RuDNY`oU~V`2x1iTuL)Ev@|B_Q>aBh) zQs4<}&{vfjto-eU=alZ@S}#Ea^k2KpL(|uSO85iVpJCWiE>Gvga!yVSS2x|d4C=0g zQ=A(|T)35+3uc6n8qo6_c4AusM4oazfj9(T7+v0?E+$KTFMDag2Ot>eC&sLV(LQ|#@er?LDsLN(@hJs_~mD~sfe7WuqF1`cFdzMLa+@Y zX{Q|14sv_|-E~w-i02OCP}p|0aIF{MlrNwk6AbWUdJ6{$!_V%f-yPxv1$$t@!{)&* zxaiwb9DjwR98OK6Me`TZNY?YKZS5!@15aglJ+0}=CvMg*Aa#Y@an?+;75`M9mZY+7 zmF$``6+z~H@B<6pd?riwv6$%6Br(!LZ}?u+r$1oW5I(~4FdH|~F}-P#KSZD}n0(x6 zbFoM|{yho57*d!VM=6xSrsTnHDq_ja`e}dk7;dzoZ84`Jiq0XmBE|u4Ur(47yednw zC+h73y+tH$jE@QSf+H5)Ey6oq4ln3%NTNsd+^~D^*KKj7G#c9jE(hvc=kq*RaV!!x zWgOxWsskJcoT?#tuHE42dXOzNZ8>m61!HB4{4&u>Md*xKjTf~2#fuA-35Q&m;W{oV z^ysgLFYo&q?zFOj;MWUIKitSzi|f%|gZQ6w15l~Ra z$aJ?mrx@_3b5cz1Vmd+#+k);ykI-CvQk08tv`#_iVOSp8dGx@qw;SSP?P-NEG_ZsXPOrcQi`XuB))Y9vF`yPpep0VMm32*<=faRLSG*KOn&Z>?tS z6Kq_7&1a@x?g}DvAxfJn_)?Q7)IlGRYb@0EuOfs6pFTogwg<<~Rkb&RwHB=u+tRc4 z;BpE+pD4OX@|YZ6Dahvr%1yYHoEmcsr{f9zQjpI%nG+*4Ix}RI_p_ZV!@bvN%~LtN zC61IBBPq38-E9wV6P=Uo0X{CHfK=Dop&Oba7eY2lmEKxUg0(3;dyYK%iL5EQ(i)aqX7`imot<4v9Xo;P33LZIUE z$s$o%WEM^gy|X1}eGb386!1yx+I#RNWV(tVw-ll>$Ga6`tCe8T`6a9ad_IiWaSQ9R z`h~|cpvPt&FY3hF zqEx$0J&u7U<=h_g1sRRCuvSf9(UqsBb{%HtE%E9b8sx`)IE8m7%>BdzQ`6!*o|n4K zeU|!igxu5BML{j?>oJ_ZA7Ur{H-uC@B`zY6BT@v=k>yc5x z^RI-&D|Yw)nBZXg|GR#G>F@Oe{}AtIr)Om*VrK?K%CQi!GIP)~vlFoc;CIfyWF7u{ zmfUY|B>)-zZ;<()U2MN;ntw(+FadZDR(2v*mOrxn0OM5v3I!roR)Ch_FSGpsIQ8Fi zFaQJKKPrR$Pssgmp5~vG!OY40J6rHS%lPf-V*@nh|EY|BXf5RWGa<$NFQ_0E4i}S~$pZXG*y6wC_2l|99mV|jM9^O=QCK-y|C_t9Lr2qgM4vmrl0U&BN@?G;N$*PA@d`BBPp_-CMELb zWJofY@J(fxW8irEv$ppu(fiZA>>nwEq{tCi@3M6gl@ZOhJ|B@9?cR=eXJ;8VQ%Vxp zL0VpI-Y;Uk&Ut?FBeTMoN}AsgnwiV3UfpWmO-PvIGMckVw$5G>1KYQ zDh@-U5BW=aDb(l|(94koYCPMqlFCKFI6RU|&4Nlh@$n~Y9bV5p%Eb0h4PU`}LDN|I z+g`(L`1|1I3>0`xiY3kh5(X2-sm@mpK|zLK5+A|O)iVcPZ7RhFI1NQ*i_`@oS=_AR zsjjS_hp2oSiMR#psTc)}%X;lfbhrdAt z2pA+tol(bCvB_BCC;)W}U~t$%y;bPBVeB0y3TMt!iA(#$I-SZ4J_Htu0>S-FEPO&% z*=el{Lp3|7?6Cz6-g^7>nOKiVUr*rmRWazGYd4aIi3Y<|uX>Qd=`(2;gzRU=rR~W? zAK`imGi`FOD=EZ5&RqSArCQAA1z@n0bD1~+KEbZtuZ?`&AKNfz(IDQ|c-CwXZJJ&> zG0K-+Y*xfySyMO(ACD1gzLGJ)sK$+EJ8l`kxx*OZEo&Jvf*Y$Zc7i99$}lE7kj2hn zW_{M%UJWb|EaHFWyer!y*bo_q*jCEm3Kb%ifo2t6reo)lCUek6v;+NjFTeh1{hO4AHUF? zm3J@Q!2I-Qg)^-Nv3egC?-Q$0Z9hf>O_y?4U{Vv2rW+0J-r6^i#j#CFG5Ttzge@}L zE|Sq#-t#Luy#unbsel~y*-RWUw;><9OmabA!b{TwO>)~C}!v6N-}5SywTxRmNJjxkYVJ>&;84hi-% zPF3KgS*2dJppcyg4{h{zJB0*EtR#S5FEMcu|E5 z%gs8tG`gQ^yhh0~aU4~Ns0W(tqFZ3DXqt1(4LxZ(pHCDkeGZ5J&1BTn81eidI zxS>!96*{$|$PXVH8wV^A0}?ITDsk_9E73W9XdGs=zt3zYq7w!Y;<$$h=+9$A4BI<@ zM(RF$D=I8o_2YB$WRA1p(8Ne3E!QEWWWbkbY#TA$2VvGbsPqv8GZ2dsH*HynJk};O))FQwuk;_KoaEZ`0VyrzPiRB7MdA7&ND96PTcHL}k z?}B3icZLkV;roNb>$!%bRTVksEZo4x|XVFZZ1IcP1MGlMBe>#98XJQ;{%uxr{ zY9zpHf@-f8PvK1#E)WMFpU7p7D-xH<8BHV`3C@IUzhR*p^C<(Z>f_5$fkv>HVq(AS zvWpj#aMw+Qsy6U!Xy&iiDI2%osLn#@t^C`#_HSm9cUEH-q6-efGrBzWWJhins1w$; zL=5!2JpnR&Y*PBC1T!xR?tCb?IcgXnmEx{5;x^J>Degc}~G zsO^zU`4z&gag=FP2%$Vc!2DcFf6p554eitXR)r)twWD3B5F`cdNqj?v><$4~Hd;1M zt}Gweb$yjBMY|2>LdmKjk>}J^9C2O` z{bL)OV_?L=vS784Wrg>SBFSI-HK=X&b&%q*d`L25w}gx@T)MVg#L!!V=p<9Q>a%tI zG=hdLdNdoa^~Abw%%=wLy2h$-W+eXh)qMm^bW`=vUO8;aE`x93#3pMsq^@f4bxUo> zbOW372=@9wbZ{T#WEd4~Z}L6`q91tOUX-%vR*Qj7_f!~Xi+ls)k~5Nd6~gJzyt#G) z7Vop&T2ApSyNH!s;kY87e)vNuNZaIoYBUP$X8)qKhdQZ6kBW6iy3ZNX}ukP(`~aG)5k1wG+7p4c$5S=Ngoz7q%%>e+-|l4>1EQS-R-3E>=_BV0N)zZX}qNMQ!2n|$#y)&BE- z>ICqk*f<>Yz=IuQ!^v_B^bDeJ0!9+%L>+?GWPV^u3UAz6&KYpqXAyE?rP4i*QCvyR z8aKu!LtlMEi=e_AaSPZom1EWb*;jSH0~MbtfOu7)FGlzV90awT&(cw9+&nM zZ?6<*x=}VPGX7#MX{~||ejfh$(_w*d^g>okzvA^V873m~iN%I7!E`3%Z1`ubXltTj z#wWra%3heS*A+HYzc9``w7+}3)?d$}b%RKwJim?~O1g+7=~Z*CwBc1=ZtJc&>8m} z3cC9+@req>bp7p;F6*ZrIWn<=ud3xJCXNx(34u+;5Smw9B~<8-83VMA`f?su{Rxi% zYt>Hrs&lO7J_8fT6qbfh=&^OOUbCoZtR8r~r+pVZCO2K5-#RM^zALMgdq4f z^X}l#wGz8*3}w6kFAJCw^ZSDYn>G=(dh-OhGab#jC-1j?+qk;g zQhMvCy?6MUQ^W3Ttbsfk0qw(wJQ;r7Ozc-n`t65Ow9jcex|!6E!`ix=giqm4;NE0s z;zy8=_dCJ;kX}#>lMNkk0_yw6pF=MBVNXheAIV^YmUOT^L|)UfO%5j`qX;~R3#xFD z!8*D7rh11vKZwryG9K!k5WJBn~+!)}bJ z$JqPI7?|#3?q}{u{Rdr8;^IrQdHqNXdOfP?uSj21vDj{eT|p{WrbEomDtojuFuo0U zSPcznR3}XDFKo?QPA+3f1cK(D?G=+wmQ|-Z>s5o36`o#T(BDBZv)h~yIp%)951}-I z2IOyywFdq8G(4C}P43>mm(MR*JUMf!YTyu(u8M@n3%X2+(aPAAL6y`Ts&uaEdXPZg zqU8jE-RQC~@;#aOfrtF&$1rAUa&M@pCt}8CxQX+{5~?MpeAof0>rj+t(Am2j=1e!_ zxbcoyk@w^3j~)bPLE_{(+_R0>mrOeL`K=(Gl}G0c!&m3REsrK|ER`y4YP;?ugCZdu zuCT9a-!<_Ltu~*=>xdE&qH2B(NqriWo!-YG&#Bv-lZEgs(2wOPka+A{?kU|y>SNP+ z#%{wz&oXs7Ga;)zDx$)INriX`_dTrfw2{ zTib9H8|*=F__W5u)Od&N<}o*_#*l{#OV~$Snb9qUC^t5>c{(^`y7Yq(ZXt!bw*RDC zccH*U9&sW5XOXpEM>)@Xfv2i+*7s`Rbx6-}ij0Kk)dLJWc9@ykE+v-2K;cx*l^#1D3(UE_pM^%PH@aJ%KIcIsqt$I zKfNpmaQ+N@vug@*M1NcFqd(}(y%M`2921M?cyWU7ZNi6pcgdh1bSaszYP6E7ZH}e3 znsl#ixBPYcy{Cqr>=UM?#i`|qCM|31V&bc}sJxyiMABK%R*lF&Z-j#L)2VTl*K^@v zSAEh{u5qWddW{;t(`socwRt+Z$L&p80yEh8rd&|y9bOVDC7W>8H}aw$i-auI`gB^S>h1BUI;}>{3zggNyq|KN-qWbFf1La$v8NIaV(xtL$NHSrMdW%hBcRO zRKq+uk!|931dAsDG>X4&Vy%tuf+iV&v!u6DG`a3Sn1kmai7yJ7xGtBqcr#olJX*p@ zJ}qLe5m$sXcMJ_zFDE=%qF9P)+v6xc21eK7sAZoxPV?3cVw+CeW3)gBXC*S5f1y6{ z@EsLHigjpKN~apQS%%0`E9fS4wngSX*$^;ah7H1f!x!rrTcLc26#ad@rW(vdi?A1; zBY&^nT%=m&XcaMx{R|m!=W2#BN{Pq=_nfqc(4UF0GF(PAm@JbFtDhl&F>kRrD4RNE z86zVG9pN1S(IZug))Ban7|cv!Jb(LBh`Uoc-K9XrH`BAaCtgf^4{C?Y*uAtxDMG;R zus(Cu&2zX>T0;%DsD~$rD-%jT8v<)i-?`4b9*0+!K~K42NQ73d=T!U z;q3ln+!+x5_D`|9|8?IQ066@o1+sFn{Z{_}))fOrsIW0J|Av2A0LgNUe>uYhpho^X z%{>!9vHw3HPFBW0E42Yw_CKxS_aK+wugl6x4^SKbF6OuN{*Rje8s+>G>mE&$33ki7$(e4KxsX!mcR->i&(7E}Yq<^0obFf+0J zA^HA~GMHJJ>A3*7^Z!#B{|NnNW&Crn9$;q8KP`immE$)E&-8n3n2A^cF@H=fL`(oV zI_F=SLjJ9-@n=SYOa+Jw^6jl%eSswt`+PR>Ge|h% zuFcY|O4oDs@tcz~jHB7?m#oVo33>B)PRKN+^hVjP4-e<(ql_cHRZQb&FX!j6hl`cl ztqrooxZ;Z%xe~Mkm1DFqI_GCMXDRL!3gycBME*5=XpMzRWtjTy29l@W_7u9kC>(X_|KyVdI zrEFdJE2)OP+3<2F?*%1NI;CC-nuVWM)eYalz7g7XI_ z6_27{8KO6$_y-7ZoUDEybEDD}o2HdJs9=651tRoh%_I_}K~f40R7jspqQWPcM44AN zDP+f#oPY+WqrH`t}(t5_2332C|M~dwv}I$>Z;sUN z!}?MNMBv+qH)Z?K;PpVFu|noW4*5Gk)$uTXH^l1hjKPGtL=%22r8TH)<#9_~&qN{7~ zDG`;8hc(fr*a(z6$J;A)DIw|HrZ>Yhr@?^Y${yo;LhdoAsU*L_k{3YFCELtXh;TF!P-;**sN&M;9HN zQrZ3h(3LFb`Qxl&sx+o@5s8LqR$^sJ_aHnfVN4|5tc)||oe}P3U?K0fDH$yY_4N!i zB1rfelq<*M3DE~RrQDB)s1#+!q*%uxm{k<0kexl1B(!u=df;$0-;NWiXF!{?`ru5L z2IigCrXg&N>O=Iskh_B99t@t#$zg70=BqLzpnx_o5i-K9p>f+s%x^GtSW#ZU8cE>^ zoC_ObphNaE!o0~?lo}nLuzS#4 zm+-ZKM?M-nscoidl!IIhx#|Y|eYID^TlK+ByY)VJW{JcZd~2jM_r`()BY!?5-JmRT zYj1Fp*5iRDf>l1BJe&4x)w_3j%{^cN34ehlHXAB2ZUSBI_+qsWN(|2K2z<7({<$UJ z&n5ma9b+ZGb8jEdp50h`c|PVawW;dSUvI0D{KGirp;w3HHWEKy{mnZ?WSp_3R5)we)5i7vaITc-x>5fP;u*SMbYb2-W`X@&W$NJ9k@a z^z>fW?+fHXU~4JSsXT`d^!3D>oqsT|*m?q-(GB+q+=5DlXB1i1@TCSqAoWaq*PFK}d0Nu&kj zE!M*VpVy~V<*u0CWlEib5U-< zAu#ojheBwepjaY8oSiQcD{OKKl&WlNC>fr+1N{!^qFI+aPJ(M|ZJ>j&IdN*^E~l~g zH-z)9hLYEdT{jr4nhE=QEt)z*M?CUM3$(z7&)3`;juZznOYNS4#vI#Mo);@YaruGBopve@Jjk=f|tP=P$* zNBbSC`nwGKc;m^XKk#anAb#WW@6;jVx`|~Y6@QPEFf5qQefBs~U=DHI*%rUQ?tI$= zko!j4!vvIPt^0-l8qY?%?&t)}Co>87lemGG`2l2U{sg|@xqvzjGSlNSrk81=4ksY? zU!UKgi3go&##L{lsitY_GhsAnhBe8pWU-Ndj|;piwc2^tx+d-{mibQti3~5g$7*rR z8n`3JoOw&M9|#OPX1W^LNa;s*E!C?Gb?Lx9P$4oJV$D|Bq29b0`CW65b%307w3U1S?^liGHMA0!yy z3cS>`zAs`l%^GHevbnzn!@zE>qq|lRHpRY5?9i~t-vXh@e?&IZjUAafrL(G6hmm4N zE_ix9p{>7o<{mK|o!$nR#JiGLzZ_^ov|ISq*n;z@e0GZ!kUdL2s)KR09i_54xh3vc z@KU(?lDE%0yhpzag3*$>W^V~re)?|)^rrgHoy^hdxry}0o)x~!(typoLCG{6&9(~O z-&-Z{UIGD)_B*1@i2ucn=+&41_p*-hUo9E`=PZQu|Br=G($aVoep`3Wm(4OzrlYb_ z7w#7$Vr+k$Fq%K=2qkek91|dCw}yUnhgT2# z=UykQ_1o)Brl6W*+)-!dApia!MXiFGa_U?g7zNdF>u_V~V%pdZ=qjd1;%8=3^`a{N z2LioSV|Rf1nqul*b%%XX=;z(wkuuRJ)hVlFLw$L(IyK_TG5!mxXf*24uwm6ltXjTwzS~5+@`nU7!c+ce}M9mRL$81kl>a< zDkSSH4Xh+J822Q|5jL0V;~Dq?(;>QGmdX^2pph$aDkGsdA=3KT`{z=?m0kgqnk1?8 zkd!CsG-Wr(=rzay_`^!#ItJPFl`R=YqM+I`j|cSq#1t5!HHuw--3Cp1mi@TNQ3Uw+ zlmM-ufewAoP7S@V@F8=(kd12bpX0z2#1O+V7Q0py%sz7{v=bqe_|#O=3TmtSUH~L3 zu6`}$l70dMVgjgX|Lyt&6QftSJt4KC@zsVYuR*p8)fQd~*f$WwgL)Nk=K!h{!v$KR z_ntPcqeQ^GrJAP+#O=5P&cN{v#)fWR%N>W2nLJK|Xp(pOl?*u~|c2qu?){aK!s7*ip{B1m-gU84%1bb+diqwa>Xf|3klU zu74oQ1_mAN7w2Jsjr5KJ5@@Zg$XmYp1ik&Ypc#;JOY2#Nfp{pU!=!91YF zvAY0@8~q{wI|bC(+HRs~;LA=gJ?&+C9iv|XaUy|Y&d`HCUXDI+6GQi?WT{8nSmPjZ ziDFw56YCR~P9DQ7iwR~lwWmfX#WG6-JYhn_M)OK}J|VEaj^5NPl`9yTN>$L1)$-c{ zFIz~}A3q+I=s*d>>#IHAQzQzTFAg zP?IywMthk0*u`avun-oQQ5(#8dw<)0ZQ;|~z;!md>a_~YO--yRnTrd^QmHKf;!#T} zGbW(^p{Z$={4@w;2esv?g*4bYVRa-KN(^k`T1R!M1Fo(=;&!iH0T zO}X4Nl3=&npIP%WyC$ySolP7I;m#>K{<7pQOx-w4Q#AQZ+#>QjMU?l_Lx2f|FEUjo z?p3(CORMta4+TYf9e#wqZyQp;wm0)Oy|E*(+Vk8L0t_N7J>N_YA<03w z-(X)mJLUU|%e;>FvvJo#ubw@U*}bj&FMqFDh!Ips(}Encj}rJPFhL&*rr!>P4_v8T zTj}p7TMs7V?_~`MVN=*`Vx+d;Z6GK`CvsChZfs$8wrvycZ5!y{Wr=WFdOKNsz!A0J zKU!B3n#zgOmvv_>z%^=7-qoq~Inft&=-+gI(0$a&rCs(_Q`6CM*z6p3NPMk^UrH~J zAQrP+WN{UYuA$w#gPO5Qzk zWon}NdasmZCs$cUbOdhxhZ*kW!!+AC^%%^Pd^!uRQpvqE&yNRd3V`5Qw)dm1k_i@0&;O?UZW9YE&8naS`U14%5S>fkX(4a27mfG{tQ z*mjxQ36>wAi#^>txsWULUkCfr_Oq&kt&JO5<3u;aE(z$pZ1$(nm3XArr!X$`=vWv$ zd}Ge%anxRGj326ImIGr;#bigNqx@f*)qJ&r8Kip5b)d{{$6 zjV%<-pE2@b>mhS1`|342x_v9936zeoz9QtA4HSV$UcF0)UN~gqPK6nfF(wNQ6 zempH*Ex)3K=n=15uh|+JAAF$z3*7>kSK#H(OJ8wWHe=y4nXukd_1; z>=LCdWCXk=jyswjaOeCn#=9TtQn##(D0j+65$&CwKKPnvs5@lNT%akm63#h%8=C)= z6t&uVxHOk#C=t{rfxc#y?$fB~@n_X*RDKKoYzijfNFMlhBm2{V9sHnebpp2N0Fw>g zR|;QDdyq%Ept2&A^3n3U;(TF-k9U04HQ4)sgQ4P!7Fl~IhT9Y_S7AenoAm9RrAKy% z_CBE@m|Fw+qDt~|BNWNu=;QGVxHuLn@)3gosb}e0qR(@qax?thiZ;y{vN(FdR#)BLB_^rp^kmLDpapl3Y;HWc!N(szaB6D3sdKe?(0 zwZnM^H#@n{l@(}F6Zjtv9*mx^SC7XVg6{9_ZJ4r=7F?M*I=tH|Zs)ni^i(INrk9_C zARn`L@w-6ZAmwR#Fn?e8>)qYG9xq_6JiMHI9KD=8h|`m_&|Ds#Ud0BS1Nza6+gYb9 zCmmmpacVx?uGY7Ja>lRs<+riCxp>|e4A*Thk99{yQ*VcSadEGJs{>AEY6L}xzWk6B zbAGo18s$fe#Q(TmFYgyYIIqy!9@LemuRBMtEm$hWMrJ5!lJqtDz*;t(nI~nGY<+UG zPqz(AJQE2LJ4S0hZr>7Ykcubj9XX?3aq;6=wAyI!2HeS;4@wYEPe#Q}JdXm5Yf9^E zg^%}uu{&TlPqa@{;K*9F5?xK*&b%hna5(J$PA26AI>c!1fIJ=3TO7EJXI~D`2eH8b zAMS;YooI%fa&X2MtoBaHNX34IG5SQ{;s;6J<(1un?Q6R1dkhCnky!(^W@k&CUXNr@ z!-zs0c4A*MJ{#Dlrt74GC@g8YjF`Fr#XjjYX7;D%BnIX2+kdn^n$vMP0rf+edFq1i zRoRWDaP0onoq~D`AQG%>9^G=ANALQEcB&V)6OX*x=$l)-|b4#&K)CC(v$N%j#^N6|sWpQD!y zgc;Ta8k(SFia$+H@fWL(#&nJ?MxN8Rl1eZt`v;w&CvDTeVhV~K-q!@)Z&@fW;F&*dTaV(KiDzzInT@(-ln;nNs&|1&ykNyK_d$5vjiMgdA}Y zsW_V{e45XF2aRW%_IF{#k_5rvZ!ciYOPxR1sxQ=F{7pG>YpFyFcOds38dVL$NK3o% z2BR&~1u12P5%x`#L|!_z5yrvqvnd$L@Ut*cU-(*9u$}MZU`BNN75yz?3MY4b4C%+Y zDCWJ_xe>^URK~>R&A4aCy~Q{b<%k6Z9?o_jApnZ|oIdPy} z(Y-8(u;&kfwXrXZw2kn41d+Ky^1cjvMU5`D5i3er3pDB2p*K8|5EHCrwQ0x+CeoM1R;9P4-J>5*OwAgR~Sl_bwJ}sX6 z16g7pgd!zn)V+L^AlCMs0pL+MT8!^Ng>7!A#VcSKSGq)m%{4ProkNB&V;E90z6fuD zgG>jw!cs!AC^-x~7c`6m!J!^BI3s0@og&;sk0X~oydwOi!pOg5FpL#j--rqcs(;x7 zhwmJP`bE3LsyUvJc5JiF^vGLSI2}?!}GKcNNK>Cu5#% z72HrCqS=M#*`j_)TEf|wlk<&z#H-(K6=6|WHGPVIat5~wdNBBQ>V?U0XZIhzLPwzb?yjd;R8J>6xGlXSKw1StPaT#eXuXJZLN5F&q=vI!dIPNf-~B z^lmcXAi5)d^Q(99>}N^e2uL*6_lwR8~s>^NUY{_Q+Uti`Q1I?Eam zhgEK+%3U6F(3S2AAd>^dRZAzsC2XsoWu%s@Efv!lDJau(` z3`aH#x|`9TDckBxBlc%s*ENnHBQDuxA>tz^E(srQvW^O2r@dd0NL13L@NzGKj;?$XY|#NP*DC;LI-+%RfG^!wOc8X|_dX3!WPnQx=qHUL7zQ|N z1r}*gi0=yMNC(7#RDJ?X_Jh6~&P0LgM!4naNm>>tPy*_kY7*DG>?wW#FS#aRukQW? z#F2wq*=N;u3%(^Z8aN#`duBs7*zFZwtuU0m^8=wj4Shhz`DXW_A+3xIH`Jf5Fj1%3 znSz^Sy!+FZg9Hnb!memT8^py7AZA-st}B@j1*u|YgUH<)Iht_8k4Yy;RwA`~?#W1Q zQLBAIEu?5Z_;4FwcAjCfea*+Xtn*evlYy?`f*oMoLJu>^u;F&duLSNd+-FTRfER(h z$xlkxLbUybLF&*gi)NwW8RjAE#asJqebEGH^Mo*>h=_U{I74SmjFQ$uuQK5qSoP5{ z{&2_L)6Q5siB@|Mz&J{gt=19dxh32zfi|_?L`8Q!dna%4M&>{&kMN*uDg9cmZZg#$ zfn79fFIx(YUCI8t@ZB~E$<-O+3|ofWPJ<;1%JEYa{Ud>Te?qkvwK>0X!H|!wm&sU4FQoiVOVf5KX46)07J*UbKZRJ9nhL!v3R3baRng=Qts5FfAKQ8< z>CLNvVeEev)P-V{sEH#Y-bDH^d$N4YyK!EQ&ZRq}AM{%4O@I;0UE!fG^~rVj{pwgkiCvkF<7g{J z$FW)KvYn3kbmsJ0fC>FN_rtY}^Qco3Kg!RaWkJIksG#(^j5zUJfdUf;{tIi$Odd+57=eGte>9{KWo#iVbO)|9{$B{>MDyPZ{I?tFMHC zfsuyw|DJ-Gj)sNx|Kk+@-re#)CK`W;kN+{nfAa~Sg^h-l<;SA)Clk{#T|BMmmOnI;Z|aXl`j}MrMt|d*iNs-*RIzU7vdjs>KNy(H-K8 z#r@tZl`eo&0px^z`(Q7vc<-E=32JVNFf{DSsJO1VC_kT^ighiugW-Kof@+J#WO%jr}DjmFOhHC|vKjiA&FcZImPL3o8#`;NTR?23RRLZ>YGLNd}bA zSt^8?-kz;QhP(a{5+d>2$JN8t^?mVpY9J zzkS@DskvZ@_}P&x&_hx_(NM9XKkYZOe*Dn~i0|L}tX-c8!9dka3Y-&+dx9$}IS|GU zA(&OI6g9YpCNZGmhQ2T$)Pwd2n3EJSXb~Dh6>In*2naUzY)l~hrk;h=rGtRorX=z3 zv4y@L@H1XzV7zBd6HhZl#ZgHMKEDLg46>PoJp*6x%%0K#5nSNB7lnCRGzgIEe!{Fe zk-RW8a#E3zB7E4;9vy%<2@qZ&q&JiTun92`dAn@}>91)0u=)eXe1#!g@qpl4M*kGI%5c04NVS)mpn4O5}L2T*yIcJ3`{L?DW=O zz_H>w@nJ$m{&?`=LVE~ckpOCkN3o?z^C3`#eVE^17QISLJ$#S$1sN( zX&6O7Krj@9L`4qvlj;_9ws;~!KGH=I2vlH35l8xAm<8_CRIxys4FoaFQHM`6aEBBy z1bxW#zv$L}Z)=ltQwA!?NhV8jW(71R`n!vnkN3F?)cM=W`PoD!2IK^&&)r0Et&JWp zh^HG#3Y<;Pg6+O3V-Y!M=}CI)YdJ63uXY2s40RW z6`J8#5U)C;k;&N8Y?YlwG6KlCom0v$lqHd`k#+2QMAKU@B#TDI=H!6`v_Oa1$@Y;| zaYnBI9O|1FcR-w;nZ6Xj;7a^K@s3xdS@b5mq%MB!conE_Vkzc0lHn_6+{DuLXmWWn zpe8$9kWiQ#oJtSi;TM_PgaN>@pEXM;nlp`i!3X^{6#(O+VI^8r(6TTetOSR#TxDrz zUkbbC!?Xaxlb1-M1Qm^TN!FgUztK-Vh?_*<9C^)yPNU3B!cRoDH8uxfNjyyR3oa$U z#2-F@*@Mjw00xG0I7Ch!eHu_&eT^QpAPO4^iB-3ZR*Y+!?9x_&+Rp+LgM9(`h@Bji zA-;SisRm$L9#|Q^ENX#P;>gMjN4d~VbX%7qg!oWPW(B5gZ-!^z0c^9Q3Bp@*6usFF@aX7EJnnn+C|LK$9w zFd$vK+70UlQ)KL-ksdFHt-Bi(A?Bam+Gp*w5bDMGJN)#HMko-BY1DYO$;psK{bEKe z7sxGxJe4Sng5e`a$U}{2FX$u|2FfK>BLb>b$q3J{nNsiF2r7*Vr5Y%n^&7`kuYWKT z-y5usf#V(t^9^+>Ea>9%QO)q8IxC$|GehU1ECavh{)m|IGZwGuNG-(lH}@YB)aJQ) z04`VI)$KIpg%*u@Lm%hG*6XY#76M6Bjy^LR6$zLlSM} zLb7N#5&+YPp6?+brNW`$Hp9q4S2CBN1QugB4avy3 zTUXa+)L82mL;iSW|vvu!-&5y}v5# zSg=%dwNHk6KXcxOaV=0B98Fi9gGXe-2Y%;Ng+>_fg-4R+Ql|3kACq~fFyEZ(jWtu} z)xq2s5Df!Rs^JNIE)Z7s!hp?#EMDvw;lamjN z1f5M-ZV&wYvV~aSRY$ozH9l~2+Kj|pkz+=;C>(59#Z^h1UwMhq@=tntl7u%L&gz6k zOMw;p>Gqg1U01IQ;?)V!^vD|v=1cv@)*JOnH=+;4qHnwM+n!6b*cG`qa$B5Bv|r=D zeeWHb);{Z_swos>8v?cWuZzS=wYuGP>7?!oJ(Ao7eFZAVMk9CG-6l@-Yq$`dHkvz1 zu3s)OMveT=m21_4MnuAOo3iEI7qcnlwF;>f>*QHjle%C^8MB|0Wvm=jLn@(D$XU%z z?}!h5F#oFcxKLzb?eMupc`CJACsjgO_%OwKbPmwvv+|MV{^oEeIbBh7m6m4}_a>1_ z1gyA44iBxuE*5q293&tlC~BwfNqQlgCq<`5FT5NMQC+cSTWz3Wwjgz9kgBK77Qwda z3EEn{FT>?JPsMpkeI9dYIeWYqU}-ixDOh8wnR~zxj!ob)ZX3g_o16{Fj-njJG29Nx z&ebNIDYV}97tMs)zI@6;u~V@dh-rs)xl+w=O>CFBJmirbBEnIUte?z}9pPC?rer?i z7;Ju5U^TP7Cf@b=>QT#4iT1krZhEP_*h>={tA#d9kCdA*4)z~)^0{Tjy|@|>Brelnt?#i9q_KlNT% z);&O6K6|^cVM{I;$bRk_(T~JLvB=g@e|z zuacW1yQ^-F#I#}?joI?B6luC}R)YpRpdSjQC5OrLPBk@7i7+U-1J|v4vAtha6dz{S zlUaY5YmqeHl|y(d=Zm>&=zgY$?C`_X*diTAV}$;UAh;s)U2_`g6E7@HFYd4HUe)7h zHa5pR&af^gF;47aP^vE-kLFnOf^_M1iG}G4gxHC8QIy;~xP%zY4JMtTL8p0)%$2M% z)Zt1kY6FDDTT4T8ECnsH*8>>FfL}@>Dx=NL?-Tv9+yeS2kscCNNF^WUKjmp{9EN{sC z`aWd;3a9%ZzU;Y{O?!M(zvO8HPFzl>JDqPjY&2Gl}2In#gxMjEZGr)1#8bD{Sxmb=Rt zW*m!iARNUgPcSLE|CGC7uJ6r_&pbX}rL`eu3%nuy>PV)SrOXY2I__?wUyDDm)+Fj` z8;A-?v$foGXewx*qLXr}R?k#+CAM~CmNTjU*hvvz!X<%=IqUUk*ZA91T$NIKXLPTj zTzg~K(oU^440G$b-sJ+J!_!Xqz+KrApxHNXJ8@XMz0FJ30P*)50(&>>1Nv*}&!YEs z=rcsowpYD0zV?!5J?__S`iBMZZ?uB76~#_tv2W@poq|0^5k}5yb0_s|*0;MS?+F!@ zT7?~HJUayjH7wPxZhAlxtbw|}WO(<#VV;pwzVy<1JEh*a1mb(L$987f zm6y30cZREqw1a}~&MVKaJD$qVH$Gil9V#u$TN`#ot=K<`51B)Wi;iA=H?#jfZ{6d% z+?&7cY@L1J?z9|z`Hqj#Q1NbO%iz~^j|`_alk|GEaR&EX1TXa(qM zN=ll^^#;|s+~Ulk8gQYRJIBGUGb6LC(kSin`cSt^oYb|1&CrnuJyTRGNRORG37q(D zWp8h1`)qr$x9xi5>!C)r#jPMQp!Yn1uoRPskhB3-DAo6NSdhFV4M%91xrd0(WugnI z;RIFCJ@QMbecmqy@P6ya{0klo+I))ot8}Dj4*L`cdqXB!Pz zWuC(z6&DyBm-jTz0)Ns_-f%?wxMcw4TxJ$48e0bFRGUE336VNH`12r_ES&+3L8wbW zJf9X;{GMM_)8`WsHYhk!m)-%NV2>a|9Kk7_zjVMMa>86Gk-oGPvjU9I;B^RmQGygM z_Baqj34Qzxa5)xw%o0OsNm0CAyx*@8c>P}-sKQuvzx3rQ2KxJi`G%O03G9{e=>WL|;vyjtr)`^1Zt8DejPaN2Ju`=xbj1)A z(ASczl07mvkD!s9jTH_%iVWMOqV;BzPS}lgE&*zRG8M$}cS_pJF~Ov7KIjd>9DJg+ z%a_>E0m!_X6T&+zRpYCXL#Q-Mz(yMF&Tkju`lriTh7ZEhF(}R~#s(Dy=OYNIM*LMF zRqJmCw}dE)<(Ej8a#03_8dvkR(gQZjA1lHr=8-F=pTffYkt!baisYV2EaSYf1Om2l zRF?1|iRIFMg{CA#`3ZRip2L6vn2k&7c_2zPKgc2<7n-IDi+()pGa)`|?J`iAycm%~ z$TA^Y#hLY$07U_cC!&gODsDYC+7=-(DS6d;qJF$!HlTp^NMpUCDrKBAiHPY$in2f0 z{L+PtsgP77T0G^V0n^J6LiSZwJ!YRnO<+=DPqG~pB!1e!f%js3Efh-pX#^@zq)HM9 zVQaryq;Sj#k%w)Q)Z$wW+?Mxb8I+HBK^>99unO0tU6C0PmQ znjOzLc@dyNKn0k1+eQpnDooNB8<2(4SL))vZUZK=rV8bvlMYLrMWi8zH_L7j;D69A zRyq?&MYS&1n=3(kpcD27G-M0WA=x5<)EpPoPA(*2I8_cKQ^Ph@$W*mX=?>YKooywa zD&n$r+&Q&$Reh|ub$8u}>RIFGc zQ4U0Sq zuqSP7uyVkME`UHCjktgoROI@<%Ipc#YQ(r=lTS`kDw39d@`7z`L!X?F=BM}(l9P5R{J%y15;8962TL_zzV`#*#-9e2P@U#}= z-U=vh%@&O5SU^~`fRH-?I-h++%4>F7rswY=S!lUp_hxIsj_+MB;}WQNOmI}|DncoY zxnc&V5r>vo>huiG^KfTl#Y&@!J0XIcoiUmY&i}Td(}<2yjkb`f`!gEZC*HB4dyFkP z?qQWk&DV}jM>(^PA;>*y{pzN6F%DzHFz_*2n0lrLAZYc@VV~H%yi+*W%sd{uD_J&| zVSXG6{DG0P^=TztmTbUbX~w~B%Hd_>(AxVo3i+|K@k7Y^M3*OBHB&i{iBW&^N4=1b zdLY6_8{D4Ym5kA7)5myw%_^bwhnYHDR_u=ZPiyJ{u1xmHOcsIlqb%`^b}K=m;9fqD z^{?RU9c8HVyNqg3lG+pjy!aGCeRa+Lsbax7rM7ez%Tmw0BGXro+~V78SQ$Tl7vmkve*unA2I$j615mxB~A>c_dD<-%_qJMH=f)&mHeu22|TzU z!Fc+3Mu&N{0F#NdWC4k^e9G|EwA7}@M2?4148}s-P&Cl#C4nx}Brescre~XujAtEh z#}#xK*pV;C6ki;4)cWw|##QtK!MUT(wZfW?Pnedp`xi6jk@bre6xQB8gUJ5pcKww~ zy98HQ&gFhhGP2O<*^TsRo^UZVqvP|44JLK;>gsj4zllZVU%RJ)t%Je|sWXZ}%8*kD zDpfR!hdU}OTxiCvy4-%L^j3Wq)=%OPD^kCRgD`qG$V~T26we)b2adT(Tm~Ro;0psm zcd-Wn`3Ctv>y4?*hMI?qSQSe$_j*vnSRLrijc-^sv`6xsZc8)V7PD9JGwUUbGUS@8 zRLm+g(;LVhS-Yq6#MVHzel*?~rwfSurJh*Z8AtUcr1kP>c@(s;t11IA3DEJ|7Zikc zqegOybr`UUg4Ado7{6H9doVLWO9gEOB4}QX9@ZexXY;9oVpBT_n>nFrGV62@MatJ z-52JFna^p_p!gebW@pZ#>)^hIuXw193=HGNQ*o6^+xVv4Ag#w}E%}KU38aEZ8*RNjP{{AXfT5dXEuE`kn1d#OrWo$W z7)h}n9&{qw!tv0_c2(Bn^ZoDj3_il^Bz-or83IJaW^edH;#TROnB}iE}6vx0cT( zi8)0|{$g47bgSM=v!_!KcCG(Aj>~DrCyp^{lzY4pU1yPZM|-X3-emmMSHXrNQ|%xq zHS3=Rjh7&9XDcWl5`Eyn%lJ^W;x$$S+IZ8(tl8r+ap?X;`QqBBER?HD?$FKF-DvFy z+2m@~2O}qI4@#JN4O&{X=S{jCW*Rh#$4RY3D_MTxq%91 zEAKc?GS}IzXq^LfsSO93e@6Zx_Fv#@aXuvP9gY$2)rMzuOGi) zyLORJw)L41V88Du3OKiE$5`EOc-CCO?(+v}eI00uK2+!TM4w-36^>$mWSY>Ym~YRw zv-`{9)*0`Fm(YFVUX?uac#_ zxSkT7*3*!OzCsp|H!qP~ExJz*Z3%;R#wCx#L$<+sD5Gpz zXz^lZ7ORAJ@26O~Yn~~vw@#Yyg;e9{j0+>J_PO^w*$c@p=Ei>%4F_aWbyb9YygvES z#L?7s&kaZ7b9L#JSHDbaJG-$^ae7eeD41L;2|UABF@LqMEuF@i@cyEkk7#xfL5x?+ zElNLx{e1^KdC@oXX7Ly%_9Z{Pi>l_z&a>z4c>_KTZw?Q+K>pTV221yudu6%|DLs_V8o4qdJB=LU~$VVqwcK ziCd^!xS7^Y*{{2YsEfH(#jZS4XZF+}$`Ke-L+IGh z2}G|rDvc>l0X>XT?IiW@b#ZZf3cI~!n@ld-S^q@VY9z@+GK)tk%}bIjizo)m30^GV z=y4fE;b{@1V~B)R)H*#OIOHm?qqN$xe!gvtBoh+bC=RLgsEQJ{07qqnrUR=R;}Xh? zmA|6$mtW1z<1vH2aw>_=?%W1r%RM@bh z0di`-{EKj=crMfN^kzgJBmBELb;gdyR z_^_XVa29w!4xvFnWm3bT1CEhxK!Jc&)qI^~ zLh}L{>Qwto7+ZPUx`bPy7<0Rfea+9`4x7T-E;TPA#QR7a+h2T}i3Mt7V`3ofG^RFY zg15F5Kq!CTx^GqS;yyv=dT|aO<8Gqa{z%%-HpX7g-&s|)jM-6Jaws0 zh(oU^Vr5K?m*FftI1w=d3ul1xLL@2+l027_`4EeSdWThokn5)ce#E66s|~e36a+U! zyJOwf!UWw^p-a^_=>UA>`I(fIv}YFuGj`p$Y}g}uozepuBqPl9Y2pCJ}sbw*@XMc11|Zy8Av1?hYUh5_BxvLvI!HrUPg zsJf=71K>aGQ19tqXS>GpQc#~9wisPvZ0$b3CXjL#e9V}x)Ay+IXB_g8Kl;qoZJs8W zMT_iVKeZ5et!EWQ;``GNs{1R91z;u*@qzfZ-k^7)2s+!>CmHEja)T!oVbzC*UU5WF zxLzv44}*y!%O3z1?$IF)#{<2O?!D6Fj?ipqEf)R2m>x{PNLjn<$9=^8Hi^2iqb%Q$ zH1+|>Ot_<-Ja48XC=-IXFp5&P_H1D(&}kS=PrI_anSeDCNA*=FB3tNfHa)?>g}4iI znm*;uuo`pQ{rom{FQrjXzp$QJ&tul>At60GT8@22^&y=oofaxI=5c@NBra^dW3hTa zLQuraoE=~R9!3h@#WTV}T(=fW?7upSoYMQr>B_8$OnpIlL!|-P+_I9+>8CwCU&Arj zSn#|gCZw)NMhR27H-~{MeB)zvW8JVkVdPk;(wnrO?8XB!M_MhSIyX6PQMhGs=+Bd~ z9BrQ{qq5l3QDu@EZ>%v5VYO=8h>;y3<}CPIQN9ylHnmRmwq(_y$B-L`bPXGt7(%y9XYPMH_8@=bs_)HjBVms0oM6ChMdYP#*@f%Y{ zXjO7#MgXed(;o@eGlM(%53AL`z`hHn_oUu`a5-xeN7!ai4N)kj(~%}0?*IppdecM| zu7B?Rlhe=W9(KY$&IQxIPc_= z4RT6QivlT6Z2MC*j$s@RPHAzJ6T316sgY7%Lc7Z1!n0q6`o#cw_wj@Ka*fwFstBk}`wPhMYeY z+bk~c$MVUD9*y9(zbexHebn?_SkH~*Y~9w%5=S+CuV#GOkFrvAyupLPAX-M;r)yqu z16unHwdw_M2_qQngEKS@>9p?|-Sg02Pm|aWS)e@)tb3TH(Rvk_AJ`GcTKK@6og{6X zNFVyfwCcV0o}-XmpL9N8JU70r+0{Le`Ex4TdQISIrF4-ajVA8EbhKD`7jI|Y(y#ic z<%Qcclsh#Q#@xB^;LeU^#FFu%u6oORMDWgwPAzm7f=1PIBBWU@KL|Un%MPH<+L1gr zk}B46Lvw0)Av9Z@ces$Y_bcCQ3VR!1JX0HOV_T%1dDJw0A4k{ra1gcG5=V8NaAAIh z*?-NHh(g=Dr>88ESj0c zu5_Vj^NM@F2)nUii;MgB_1V{)E5pb;hx#k#temGi{K{&Yp{ZqOEGz9b2$^x_Yepxe zl(l(#YXIX!)UnXF5c?oj{`0Qv*lktF{)u^(oAN<0XMgvbcS<^oC3Qzv`U@5KuV~f3 zUw@hYmDls1(`lHQS^uXn^04-n!v72jF7@9=$x68@2O2r4(ib*OJ>sL)yCpO z!xV|@Thf=kN4MAO>e@FUVYYH`|tl;oD1?BKn`+_i1&NRj2ST>B%EL2I=_}q)d;l1f4RJ$ zV9pXX#LlGU$L`n$fT6HSO`v~1e<=pT`uvFadUfoV;Uu%(W~@PX*>-qg*FqzCFd0UH z9yYQ(q1W~`Y3w=_6YX&qh0_gpY=#HNp3^|>@ZuJ-Rb!9Hx941M=NA+-00&zbj+mou zXGXLjd33w$Q7--*7C9l&y*y}m$~UdpWM=e(?j$uvA(vQ^Fa7vp2SrNUj6CBv50=f;thn43$4+IUIThF z9S{_stjI=gC{@Zbo8d3hyq=)yj*d(Dd97p1D_C*7Girf?peSDjWuqi(CDdY3bEJ~o zI|4QbS-B+S4gqUUMbwP^a}(&v4DDx5Je=x8u3_6I6bf~exR~4~ogf0qik%~I8ukhi zqa!W{67~e>fuExhYwK^$y5-+Y#c0!KM9d8OCG-1KQY=)U!=>ZI14vpzXDg#RT@c_` z{H>3jqbNZ4#W-V#B9ZM~NJz=^OI-RN?_y$NB4pGK1stV6S34g@f2AD3#u}OYfHSxy zyUs-NtPwf z{V4C6BDvJ_D6M)sC|8AF3(oLxytC_$p7jw&+gYpF$?<&rGkFrap@w-$#zLZsI6euG zk2~r7IDqK=hWTNsun;Cert_vqheQ6Q-JXz-E`6z)3b0<5uh&tK-w+$8DAnRi+vxw} z*<&2dY)IK*oO?KfK0Qx+5=x(#PGAG@odWW#Vs9Ii4sWa1&t}ec@v)9%&N;k778Am& zOM&%U*A{H@`k0iq`4#6qubASVoSyQo2~w}bE&+5riq2 zjxPsgec{c#3{<-dm!98w0 z85w&zgwVaeQocQSnst~D*Lu$$_1rQLWWpLBu&v6c`i-@!vG!X7=XG$$R28-mrVb`J z;rW#?k-+vEolqAFvK?7RojVuQg1KfiMH52osD#7p8&dUWz?_{q#jueGuAL=PHkf(?LfHkVvZa4Icu_cVB{w zph8urQ8Sb^&SPGPMc4wb1aK9~fM%C{_c`I`)z9%Z*aznWVPq?L?*0KAgEfkbONWey z1lqSZXCm#9EfVVukBstklku;qgBQPU>+WcIwkr!6n=Ys1w$OQuCsKlnCToCC`E;)e zWljBWn@%4Jyz5)N2X{*so@V)N=+X*fFyt|zK@yx_U^Ta{Q-!dJ!7T@P0XxH5ye<7H z9+To=wq7DYA2Dh!0}q)KUovd0evpeVmwS8a*D$uj z_#jsRfkXSMo|A|)D^r@~*4sK>k$I#Gon5L9ku0D@>3Sc>J&UnKFdWJRA%X7rExQ%O<@h zP(X zZq#Z%w#ebQ0)(6i0t9ijMl=P@Yi~wt{kdb1i{o9m<$z0;*t6bbGT3fH_zZ44CHS~K zFW<2B*oCGXOwFsWWhzT=vqOU@Ux!FxQDAAHHp)K$4=Iq>zwYSLT4(Q;66!fVA)0+x zvvTIU03k2El&ZTQT3C#`4{UWUrLKleS2#qOFd+#4yZf2sYoc>vhWonz_wcw`^_W=L zu~LgUD?h^GHppv1K~iVkFR9(vH)J-RPA6l-k&Oeq-Lhh<{`Pj>U&5OW6<$m7bJo9P zgrG0JY1{SN2;D``_AH!xx`#Df~ibzbX)M>u^%rM)=JIzog6_dTQW&Kpp%$iJy z<EzKmI+f#*T%BuN(sxaE~v6r|`lZM|ds^~-%Q zUk=yaMb*4n{F~1`Q6$hMkxcN-v<9|Fv$sHST!{0G**b@IXf@M7@dMVW55hRy%{K~C zo}>$@{aZP;5yqfZJtnGJ;I`x;T(#@`;2x5rYw(<05wH}TeuGc5&nB_FdPjma;AC<* z!6oJI#c9}>#r=cNLM}ECx%0rh5Rf+%^1S(Q+dy;qT6kxN`VvQWD&$T*kh-UR{O%5W z6j^-D<-4d+9*{{;$8^VZT>CnzwUXy%^d}OG%^=mt`5<2qW7NpH=GAAM8HzqRv6k%( zZGJ49Vhe=VNv@z%IU7I5uybteRhC4dY4%N_<1#ODzZPBe@OSuAF}8E^L?ab?!)J@L zY+~g3GII@SbXN7HpFD~5W>drV9_fMaIUYy*%CX(4Lg-ELIQK$s!8@jlLDJ_txrCY1 z$rP6ZYZIsqmQqxcQ8>VbEWGgMqQaLr_H&!$Po0p7OPBs$S~vo-diBYfx+xHsc>@-P z^uL3I#S6I7>mdLEN-Q;}xwi#JG^15Dg|o!N=OB;%@l6u?SZx-cO%imhL7cRAj{&U{d`5MRq>5F zLUiCrl^{`bvC$U=oefk0i1BU*-^ZOG;L~y|rqD8QyR6o`zb{?w$kz=gPk%o-=-m|F zdK2o|as(XVJy*yIKJ26qm5tGm%j)@|?AEL8k;P|ZLUZOOLNY?u6qFw=ZR2#zJn6Q6 zN(bRd=%1jeaR;)dY~Y0g#D#dpQgB(3tfLcZEp|2;LWD;=eE{*m+j$-r)$D~t?7CC< z^A-x;TmGaC%!|ZC!ub0MkSp?VB7J;mo>G`ta_N>+37+X)l!$wn|! zj>}6JK!KsG+lEV{bqfwK+q*VMOSQp8pjBbR#aYrIjh$qW9iuQ?3A~&$ru1#7DX77| zQ{XedX&+-gp27?9srz&22nh>mZ+321m}9#jQ=Y;`4p+c8NxGUhd7rBHif;>kLpXsv zaGZFQ2Yd!5GYNJa1**XY;XTv|3KDqMWMRXz_qK+Xo_QVIf|#szUuNi5DYFYwMR+!H zI#s2?G&3Fg$>X|pNH;X#iExTt&N&Sd1NpA5P)S*0WpuW^{Yh>^k#GjzOexeYg#|D0 zmKR1B*MGmvxKU z77DNJ`BY7Ni8iO6VSdsxrm(8dR=19*2J5B7lwD@=C~Kn;c?faD6q`GUz}Hi zQt^XQi4MSZjqhuO^fkW~yNte^U8XY?(j*!bfHiBAM=Z-SQGVcrM1Zc{i5@|NGM6ou zBVEg9pEpX#sQtm9T+qluNh^6WCr^k5USF~c>_`Ty>t}=| z@eK)wM*xP;_Zu}@U|EI-W;Q&D!OW4J%z7xexmUX<{4>Aq>1*bK8Ao!@t=IccY?A5* z!H_)#xpC=RyLy6zAWyH0Oi3zTXl2XvqCxlatSxggNCsjAqb1Wx6$pyodQ*WK>k+{TrwAr5d=BigX@&Lc4`_DfMUl3P>RpvXEfp)Bn zUNU~60e6g8$wncyf{ko4d$Nqcl7Ti(Qi2(?U#8>yArNQ^R$E4q=kOU?E#Sx+0;KzR z&AE3O(wGHo8kQ^DhmvZJH5=_1<})742Nv>K#hq1Ad_78fsNd#83DzlwSK>I)fFdHh@hDTM|d_ zNA*Kz%;YH4jKJ$G0#Fc4w+qj-HDqsz`9N@nIn-W2?_RJeSl}x~I;%%aNzT<4I(rB6 z(i2y1y$&JQFu&{Dj|kE|E1op(SL;SpOOW_7nB6KQG&i=&5sMi+o0_Lir*M4BlRa!{oF03 zabu{DaRKB-GINSmbPo(&d>&$@-i9)+xPeKsdx_EVeHq7jAyDE^T7Uc#f3hh_-zV-h z!v@F}tWQ)igK!v^L7&`Ex2A;!!L2rqa{L5-l^Na&XK&!BcA$YfsC}ue9l34(J^@@A7XYN!4E2eZ%*f%gQb^;=^ab4=)GMS#`>M`;0RUwmd zfGJoG!!4yIj5%P1@lX^Ge-RTLhDLYRlg*`aY=%|w3-qiU5Y7tZO;bxEm_gfKILGc!ro&903h;<{;8# z2zIu3V{e$Lzj3*~TcQ2are?=VR8>VZaksVrJA7DxO|vbVo~FunlYKQ3S;BX@(*WBT zEgL+UUmpEQ>Xz%|ybSgSHf^_?WheXjuE$KsjiO^+aJ1L-urJ({s96FW-GbZDVN9Np zJyPT8U7w?vz+gQUeAvMN#Yz-cBTB5j%!ZEP_#}zP4$@TZcGj9&9<5pe>afN6j(@tP zDo7{ms;MEq26Q>QnWTlpAaAO{F%n|T2H$Bj@`}}^JZb&8TFZ+eNCrM!+t6P`@9H$i(sX{ z`)UpEuo~JXidqe??H9=9x$?f$@74?;Qs#I+2A}7Jj7a(gEzPNiW0xmG(hMLr56l9* z-Tj%dwt0DAWNNg#!hzYmsv*C@1w^OfWVAziII)6S2$bUq-1O@xL{(JYmki0mi_edK z3bVOR!buCl4;L`BPpT4RS)hxILSE;wPPD|+Q&XFKpsv-0dzH3hFS|++be-6#0y*Eg z-%V8DicQ0kk(t? zp{AVR-%%w!T)Xzkr}Qgg0&S+i9IMl|+E>xK5-gaM9cRv0EI1_*9n}J7pOd|VIEDuR zvV2x__2+S3PgJkY9zNXQeblWNyyGms$3ZbR?JpCjOPb4P6zfmxa8~WSPs!R%?ZzKG zOE%DUEYt)=7ZBD+G0yDHs;#ddCTQ1(ULINW9@bMQ*3eeFWm`zT<79{n0d+@XNpfXk zqqx1nr7>@v9Hk-e=1>7d5m7UCS(?{edNN9{N5iX=;K1up+uEM_QhH$)u{#bHy1A2*;H4 z@ICstpezyv#*&|*D`8f6CEyVlA)p_f`2m4OaYAUL{&VQ4xp|0_dYTrjJyPP_lVVxr zs`jWdXsG5xAxyMhrU=l+G5zGDxilak23jO`#erH6C3Ysq;d+JU&V}1{Xw=($&zPZQ z(oGWlwPlbYEkWkqGA;5)$RfN-K{TA`g!MpgcQGR6?sE?FYB`eYOv(!0K1GxC%W8hz zvq^--s!7%7O2xcM$p!Sn3bZwd%EIM!gc;$RUXCXpH%(J#J4&27;UI&Z5$i85?7>Rv z&q*~^Pzxka+CG&Za360cBzA{IS?1BlFdw=V-tx%>*@P&$OU>XWaqB!uivmV3Wa6iR z9?vt8y_{_j3Cu12rDosTp*CjdlYts;Y$?0wPW1;7zpUjE+}VK1bWdUG66JgnSh8C$ zn2Vq#i?uhw<7Tc-LdP11h@5kJ-Z|{d_@4d98{mS|j|ey0vsC5THw$vAR^fs$AdbsA zVB*<9#Pu~02TBCD{n3vcXe{_R-Wkz?;n~8Mys+%c?P99dY_dn-g?C(i^GA<3yCfkZk&FqP_beBQt$Yo1xQ7 z!~bGg_`gP|{{`Rn|2YT&5MlqH=Yju1ATuWu9U#k}jg^BA5RCsDz{>$Rq|DAr$NoE} zT}T-a>aIq}@H^q1kcIxApw&Mxw*LuxWd?*v0iLVuVCQJ)prCJOZ0$hE!uV$r0s!v& zw=w|H?|@eXaDaakUI7RKMmhl4fDOP!_}3g@#y`toVg1J;2!L1k+c{wb3c^L*Vx+V zk9uJLeJ}kjs2aedU;yA#H~?LPosjt-kqRt;%fB29_TPW;Kc@6#u4yG6H%90~6tI zUI$<(m{nDnT<8QGW{1N$=_cTrVb9@x#;QbznOir zakMtl|NUz^LmMl4eMbiyJAFelYZH1(LO>t>bAS6sY{Gxe+rMeE%mA7R07?UBoxd*t zto3is`9GxppF{TdV(kHHot>TOzM1L&q0`jH%Er>hug*MG(#Er+@W+ zF!tVcVwX6980Jx$D>~t*6*;v4iWJ+l_0m|_r^%Y%d4IhfYn>#298h_4`T#^eKi=9* zMGrhDy;W-OIksr0dwaH4TvvEg-k2%sXor*`EbV03Yz7F1{4!PwRp`HB9*HjofVV$h z$ZK3)4^GzB*bmu%gSTU!*xUi&ZTlP_=Xm%y36fO+c>4xu>ivcl$(i~|&Q`puV8W)W z-Sc)$BH|Za=lkgzJHa;2uiM|`?JtR7H7fyR{c}F?3X(AcS^^M*n3QaUE)pJZ9<-CZ zFwPC-r~Cfi=hlg1smABXXaQ8nTmfk71WOZk9))5HeE|4%=Ahee@OE_nlC;ZvtPNVh zKfv1r#4%BR3=hDJHwE*yh_1d~o~h9j#p+aeRZVsAUQ)Ja4739${Y)F1vzlaTmx8zXG?(f>}+@d*f-ZfQ; zU{;-1aoexs@UN0ZrtOsV!Wl?KVo~;WP2il!CAHaZxZx6|K_Y%A*Gaup3P!gim8u{$zJM1AE_dw zr34WX!vxQ?DG<%)uk%7^`5V2B3P5j{)DlL1&6K3YVkE{I1|>EEn-x66!40#nK#jb( zIgUbMTl9U1vO&yXheH@Yn)#HVb$CB<1eCZ%z_g80uh4Vz8@;WVGR-wS4uLHplj5iE zCk*XR5i1scPar$(@JoBXB?#C{JuH#U_T!!rfZook;`c<{e(pN_2YS0pJCYL@iX){& zLP%lBfc(c`f8HFP#sQIBrjYgyDuSLzvzg&W$!Ay0b%89~F;wug6wPjgS*a@l%GS+q zxq~JbLrlHSU(+cDI>MxS2d^eo;FMm6Zj5VLxHUAvHFk(kry@Ej?%+}~(|54l97d-N z`K1R^`ga|Ib077S^D*d=jh7!$FmDNc*F|cqDLDM!1Q3ku=v)x8m)TeHYOiy84oHk* z)eI@cMLTP}^@AzOUdW04>HCe+dw0d-FfZ4R>IHYleRhTqR=-;YkiZz-e4;MzreoF3 z9_#8p^UNLzqLlw$Gf^x8NmkK~LV%}P^gXflSO9L;$iah`0Ul2Wr^NY)!ZNhv#A6aV z)kihyS>Sv`c_Z=~arPm7v}o7#4#5Gh%3L$RfHCnCKj?#QRO~6~o6OZxcea5y@>pB> zIfX<=TWzpHR50==Ly|bmz7a*v8HqVm&KZPxV6C9*NN`F{;6>kh%*f+#N9?}t-TZ8-tC~&2xHU0=gVCe6%{?S8|%nFmfh?ppH;Iw|_BWt%<2uW!DGeh`6npB0#zNK$l@W z9k64yn&Nb`zs71DaCEv-vsF^?!AIyeTzd5Eny$Wm)r^W3bAB-76VjKG*~GHF8Ip`z z7Irf;RWM$ud%);Mo??NCmflM!rL)a*T$8M4yN=33jeff5dB)9ZpD1$%*({UDb+8H3 zNlUTm=HrFYO&~=7( zMtX4Bq#)?P#pcJ2C7tK1XHgAyerZRqfHiE9*T}tt_@{tXwa7)SJI1WuHsv?u{_Ked z(5#wG_f1Q_w>iK0J2y2e$4{gW*}>2~)|;939&N1_U*A{FTd6`NX5QUyLz&S)BA}PW z=n;Le)XR@aR>nf2NxqVE8|v_{O=?5&JK}ba5I}?$=sl2UX83TL9Ych6vDN75Vcb+f z)j@S>SjDk^2Qh#Zh<&ar9v4 zm$DXTP^RUVYe?co80AN@jzl_H!ZT8ZfL&*|LN_Q9HLYpbnqFe~<7J#qI~9!Tp$E?f z+|pmqPotQJP_1hRLUiMu9d|i)0O&PYFQIhV-*pe`0H}whQTNB8QO1v4dPthDd6cUA z4IYjb&-f`JPTe>60=HV7_}SDJL9C4zk04&zZjWfeAF#c)fikKX;)6QrcO+P&;a;H5 zwZQIM1;(K9E-QREU{3GGK8;_q0LP)9kg4JZtU)+glf;hPzwO{pI2lKxe8QAD7--}b zrW0J`2!)P#KoZgI*qnJC!J_fKmFeu&rsh%R6~>tqty1x;A)LCZ97aj?K1`R-^J8(3 zd}e|8$&ODb#w|0DGjZnt5<6cGvx*iGTL&OVxB^rEjkHbx}Z_qxIx50S1&Gz-vfx%laed#zKnY_fwVIA#V_VxBkMMN8AS0v zM^>d8QH^?FsHCFPNgU(Er;_4PDcL=RNl0CN=*SynHMFu%zwF(%B-3g&)@OE321Z$b z7)+*|6jStA^7K!Yc*bS9o zO;0y_d)A03oby9SMp7eZQ`$&5EHbXTDGQtWQgM-*`ZVZ!Ww1vVlfU4r|mE z{g^@FmBebzw-wS?m~)B;jA_kxmLKKJDf_`dC+7>q&4S(ilF8nR>aU{j{AJegt<}L% zvOjrnLfuac?zs19a@VRqW)}5A?R?E32MqOp>C8*iHhX8Pa%N)BgNEWp?fIm~FYH0r zRhtiXparTJG4o`JXUgPGB;pQ;ad)f6Y! zQ00lxXlhy9bGcKf+5I>ij~uIx@N%)9sp%E!72fT`^-NjT_7qbDDk{QA`f?y*is$AN zwgSs(s-#?~L7nZJ#>iMfR5Ee2FHFmGI|?MGOd&<0LD4s5oy&+d4tlptR`!dcHGgUG zYj+xxO+j-IGv{ou#oJ=2e+2$;jOJy_jD}}v*o#<;Z}Fxe^{Q4EOlr>AXmcFW3Ew-! z8PCv)a>H6>T;t1OH52|l;T1{r4zTgMFku(d1@KF<{Dov&f4cQNNmGI}s>_cedxtP{!N6R{F95pOsH=e3uzR08Iazd(E@5h#V<&?R z7LJ4p0!@*A2H6qT4G>ziYhZYk7fsC1`uG8J+6l(by(fWaMJ5FPNYUKb2eS~=^IUj7PrXX8o zrpv)_n63In*3uQGn^7W>t-|tiQpqvQ41(6@=Ak<3GSZq{O_dji1y(@sT7`kIQ9{8Y zU@d-gAH02Oq`u3y53`?iESyPTeoH^4DZDMgh_Pp`Evjys6|%5&@KD$6|E;3ePC~O8 z+NiwTq973E$g_Atyws;Jm7PkV@22VLMMx=OU3^feo?@Gz8ixXgiG5PljhDJz`?ai)q{2}2Id@o*_d_WZe zT8;+TP4YY0Z?XB#65m^)aRnyqK;JRkHf~RH;E?q>&xmz`YD!0dZO$D}^WNl2UxI=} zWx3SYma?h(cUy-*ztkGoZ zMcM7>Q@{&$Q&(?876b+2UaiXub(UjD4&|Yhod^3^V|Alv?@v*YD~nRQa6AuY5ePu{ z>h#HvYS z4F8V&=Y`~?cG34#)(^IWc}dpA1lJh#gsJFFpfx4)^N3tSjw%P@dyu znhtQRCfxGOgUG#@#Mha&R%n$>ekUx`RTSjaJ|B9uc&BDX5AuyWz7Y+7L92?aD^7E~Oyn6yxg6wfI_x(3Z=PM1w;3_|`CJ&}`IkReqnO(CnwW ztB%7BY)KQD95q1$mwNG`kgS#E2dhAzf^_J((?fWe#CMr6Y!)^nC_7#qyhB;rs-fHN zPRLfUgMXsWwge2DR&!Zc7Nd44bE;ae~dCXrjBpw zfIIr(p*$HXOEGkVAa7|RP~_e1!**7(!WHhP-sP7)hc%%53d}h)dGTr*O@!D}(yrKadh6n&{qEX{dh}F_92yOam^>&xz^ziirq76|pw*zo;tZ4X z-ha$6!Z5nuk6(@g%65LG_kcq8#y+}2OR5}bUDsjh>%~3_rywccVfs@APJ#3cxK-cz z!riBsshNu0RY!&!<5$XO@)RGqjR%p;DjgjF4hwWD2TENWsC84F8BfXb$E*!w`dg3p zzG`1Xbyn2jDzNz)?GjfBwx7jMfe5U5Hi9w#AMzJ#)*Cq5YY>HOEf08CCn%at!&BTI zQgYYkcv7?$R1q|3hgfx7hUKP5O&oGwSf#yqI8Y>jf9cdto-+M8RO^7-pW3N21yiWz zR<9$`An6%uxT412>}U2;g=%vi8QaK;YUs2{W0rT_QY)9hY@%f-_i2WFoFx%LkMd}6 zt`5y!=kAW!0!>2?D~uQV-9{HQmzD$^ z`SbVW=baT@ZPA-=KijgGo6q~aDW4^!zU9}LRRo{>e7Y|kIWairE*6e-q{Bzvumu?~ zg>duXDA16&#zBa&%3VmeZi+9uLP_4jMC)dl)aYpa`e>uC21~JT{VX5KJ)`c8pl#>r-v)<$GQOYCnf~M?;{41 z1Eb%G!Uc+m*F#XaT<6)FIueh!nw9khX1kME z=VRC4WD^HT*jXr5mbgeoh?Y0ys*mgjTakYk9eb`e|z2} z@g^%LpMQRS;r#rpuyk3g(#@?VR+KnDXT`>_UKLc)PsRQZeG3k@Kc{@N{u_gikr7}3u@W+|bI<|2JVpTa zoZ~md9zeGL8$bQ`ME!?1#>DEEfS%}y zT`qy*=JE35`K!V8$Ip?4SLfiY{FvEWP+P~>kBorJXOK*a^8w!w$0O3K5nhkW$1(Nw zgsZfjs14Hlw$071S9_AdU&v~|-amd~z3u#J_ijQkO&HWg?F5rWd<4x82Li)$%nTDA8qA<6Gk3k*XplsE&E)L+`+wX93Yzj6pgD?#mgrbal5_haPCmZINQa z;LTi)RpEn%c4-xT4(5mEfkO?N_p4Ui>|8U5m8lUmVR>);xn{Rv;>!ak{3rw6E%B#BfhD@ltb z``#H1eZm4Zqqn1l|I(xyrt19WG6c;wo9R?(gP6sB%}p_CnlydrsOaD$ag`+Wgh{Lt z!XtzvMXy>iy(-;@F)d&?3I>9r9d-#`1KXhfJ_9EFSml}kzBTHp9R|S;D5)4)#G0z2 zEdEcwuB02AQSv-&uU7gP$zc1y|#_76ZKMyExsE;pbJ5=3*WD=uGW0fm+u zZY3JMlKG0~Q(4%ujjLCrr=og9S+I*}Njto-$?$VNfcdz%_wt6+pa%;QW~ci!Kf8bX zE9Z`HH>Jvi4dEh!`dp7*+U{~7cwFAFSJV$hK8&kN-hr_xkYCQSJLIV%CeV!-;PAf! zBp|k8tDWx}M0JhOMu^`9I|T$M!rM&V7K$`jbwCQPO-g~C_~hDMEX=mpdHgJ@eL4o8 zzN&;Q)i1&tym%-Z6&oKgyRdvlZwXSfXj1~Y$oC$jf?PVwR7`uyDar@E#UCZXluGeQ zoKwwOHjO*QPbI+>`jM|X4>3cm$`OeToC!(BZUE8_u3Bo$AeM4(DBq$A8@5Z2Ob1NE z89y5mkI{@+te{W0%*mAnVv2+V?rTGh?9Fs0%9lfaYm&F~6adNVis6)>imx!P7*ASK zmX73v?C!gi;RE;VkuqIj=9hujbV z!T6255zHS&VICOjNUAqj41x3)mTuGF^s*2M+h73&ISfmT>9)o0C$YeVP78Wyo#MnV z5I$L)a2Q~PB{13uV`#Qobmx%jY<7C_Sa>Y2(4}17cx}me+;Gu%_;*qdJrXUl}6MC3;qS}5s~ppe-p+M0r2*c4K?PJQX!qbv=^SDQZ& zMH7c-yc#}m`&~CYwvh>Va|nFohe0#5!BcN&#eiXQAo)2K;^BwSt3kQ8z);BWvqmdAg0zMv2;+SJg43EL(uzhz&ju214b{xseS;f-~ zqREJ)W$RJ(tNYb5q9bs4IPAd?AqwRbdw52@$&$H7*OI5=thO2zqYzSkYdt;7TJN3qJiJ8ht8 zQFCk0OEw;`2_dNmMf46E11@$l)lwDL;!pWzD68tkHd5VBHHx*oXbJ{@BdnE_aac^x zSI)P~vm&6laFv!lJ1m_Kqrgg9m8|+20Nzia$0xwg<2%9-$SBq|SAWXI@Y!F6aO|Fm zi|2z;m)&?Pm|rid*@(ql5QtCstk-%dz_(*4sn%4EXiANwwPx=AEpL7 z&lAZD4EpRA*v;LO*5Gcy^cFQL!5v6wSdxQxXivsBaKjOhHO45p{QQMTyupJ@4UczhDhJuA=VD9RzB2xOAK* zzZ(g~NQFf}m@r0!E%5FS6ul-4JCgchsgI<%S@z zazVxDV0@#N7n+3Z$&M3#LcU506~h@$}3+Jk4@7tj;Fko_GzOY z=QCSjMk=Zy-4Tu6Yr%>U5M2ZjYy}%MhsI6-dcM$?dXDj9Fat%e>~aO`!ZuTXY`SrZ zYsuI53H~B~)o9rUILXF-Wpr>}dXxE0CSgo0B=L2=ohmts2-e~GyFR#<6#dWEs>b#+ zgfP)%xjpfzTvE|<_6P!rLKp)t6bl{5%6K|cAt|y6mX5raE?k{?rz^mzU4Vz-#rrq# zc0_aSPG(!KYH(sMML$oa_eHCHzm8gOox(2#nGR`-*)|yEtJLz-#+v6)@Y(aY@kc+w z$Cka(4Qw}kr%UG&XMV;b6;1^gHN=(Jo8e5*zGZYo?ROlVMT&hL&RmZa&SgHVq`Kk) zITp%I-AU1ho($sr$)BQ(MM{0(P+AKAt+>G@C{%Md6Nr2Ry~2MceU0u)K}!{i$>Th0 z9~^J8wQ!+R`*Wih4_)eQmud1b=-|A6BC0(XyAGwK`=ptRaAY0ci*3DZ&T-B`GT5wU zp5{_BZ=8x-u^<^d*fWd}om4d>a}LVlD)i2_5y2X)Avv;tJU=Q=ugbtyT8WWB$tUh? zvXB?<+a8m23Zy~aBonl(oS>Ma`8b20`cNYZ$`a*Ia5KT%KzDFE2Uue52D1*(2ICR% zoT?I>KPf_5>R}?kBrxyd1(*21%`Sr{)>wU^{0VHDDSJc`)jVk5Wq!A$GsDu&GIIxK z6RB1}>8A1iG&Xu89CxpVIZ0+>LAw;W z2nP-U(BdDHS6tec*XG4;~B11jA98 zYNzrYEYV|4j_2(%8r^60b%WO@lCK0UBuKo2*J~3LD?QKDcgo||%LTArUtR_~vd(x+ ziC6KPs~Ga9L!(h(*_Q@6IG9wB@DY#2Maow7vTmj+8m8k0bcvk_3L4d%W-8}FRbUhpFgq(y0OT zA#)e%lQAf68yT;m35w$#o$(9ghKaoifhO+Qg?_l{9RV}zd%%#WZ^6MigY?XN3kB|pbkQg$g=x7uDAX4AUmdu?In{OS*%L6L7| z8sD0lcE5cx&<}I7*ag$-JitZ5%*RyXP<;(qQCOUuk=WI%+jdqI|7>mqnf-vsf8OnA zy}q()NONSxN}8lWk-9Uo%!<8RlCur%vy0u&6%V;qG`{yA2Dm4>Dk9)E7!fTQJuJurXPTZ?A>5U z8sW6U)@2!let0}f%e;+rP9D}daOd=0vjIwYuJ0#(pM>`-(4IPK0?`Wff=6-3$j{Aa z2kqzi$l7tUIW;~P;ff8*3-fGCgDRha-#bO$_EYY_jHpL$o zmSXPqomP2qfR5ElK4w?Ii6oO74DqsJw zOK>y@X+<0TvfNopo!-z=a6lB(Ft@l2mF{;zQ7qU}8o_53t(e|eG~dMa-P;EvBcf7H zgB*Qli|@Sf;(=6mQOCq4YC#V?&IPaPD_`a^IftQq)V8)*mw#?mUcDMuxpZ~GhEBEc z$8~9go>mREQ1!XbWM`gUFv&7gcf8HW>RWd8(~?cBDj<=2&(d0`f96Z#-C&}3n;}|N zUzelL!J`eHPZT)|3>!K3*DlkwY3j3GnrhKoq9JI~r}6Q{PW8m%NHxO-lfve}QtZ1A z(ieEnFD-tGE4ZAL52nqvleST;ja6K#gPcg*g}Qs&kDqYt3Q(r6!If@6MkYAma4uni zF3UD|$_+*~8W(jHu=T@toE8~fY&&$L{eeDvZ>ElLaUt&6NINPTgfyx^(x{*w9ZsB@ z36kwktwmF92IQA)){HMC@G{k}XWnvE)j)1gDR8U}`(B2BmYYxS;(T8UBYw?MZo-WXyf=T=H@ z4)+!RjO}*!v<#`V&~ilcK)OSsO*OK~;#VYkfK)?|;VV3hIpN_MwZih{w9S;2C1%ai zIu0W=NfhC7l`zi^eY0|KGg^zFQ9t|3UW+$ajCvw@#}22 zm*XLcnhM$&aeP3+1|iz=!$#;4BCfVankOez>-VQ5b2AAo!Zj`Hfyxv@={EZUP+B!? z!*%6pwMRWb!X5=u?F`Gk0jXW1lAh67$0Y+I%qIv4Z4(k%+Ons+4lbn*8O9Phsmvuf z*vJOwFSDD{`hy(FhiS?_<8V$t-hh)fzb^^bNm_8ZD5o$xF@u#n)Q3xX#xLuA=J7CS zdvK)IQ4Wtm8bQO5Y=xz z9P$M@bYYsGloQjSww{@Q>Ct3nJ?#d9g*i7(K44T3G}^mD&R%G!ea718k(`vazEW_|3pXNA~KFz?_DrqgmF7{*hK{wv~?2a$qcy zQez5()+ul=6<@-eYALb01Q*=a;WL@QT zMzgLI&RJ*4@E{_#lie@C-m|mEf32FZ{SQO`|Ldv=+dt0w{|i$K%U`AmW&&1*Z}S%m z0ShPdH>W0G{jQb#Z@e|%j--FU)vSNn3BHwp|IZxp&*+}*e^8fLzTGt6U84WK3|5xE zJre)JGQP#0e^>^~Unz0_c^Us~Yhn8zG$dv=R=RK39@F>tXXpI(v#`@Ka(;93Zw=`` zOCA5t?*Eog{-1!r@|SVuKdplKpKUGQEdD>R`M=mF%-?OLe+d}h2>&lv&9^;}lbwL^ zdoj$c|K&2i+g1PJ$6)-|aj9*W>fw(0i8uKgYRCSK8^D-gk5Nf9263 z3(9FAK!u!$iHncgwyj`aSjbB+IGIlY5(y$2MHm9dExk&5t?jg?X@-E0QAJRbZ6ewv zGK@`9shIk{48DjiB}IBKhvEBj^q8l6H`5&NKmEA~o$8sc$zlID8_0?5OD$iIXQ$20 zydT<2XQ}VIV&~Uc(DT71_RgQ%9vQHHbjJ5I_1;P(8L?#AEa^XE-O=8LrY>*6v)`gy3Q z$Hxikj6k}R11o_nq6862B+gy4QoWr{G}+R}y^JhgiDmtGiIVK#5@=`lVMipBgo6{V%sV|XA*!eE zZ=ykWx}u10o_@MAvc!^((v&)!2=KI=Lv|Aw>zUvod7h8Qh$KZUUuS35Ozka*;gOa& z{T0@GLX0}1m((iJ^@?}7AX$hmjh+=3FBb*n_^zE)2yQ#KbT9Lo7&&pK$$^-2Ggx!` z4e?pK$FTo`_?~F;cc|FPRFj>fZDUdUcw&2i0Y;=rt)N%XSBAdqu;fE5Mn&mTCBA58 zHw}{cgAc!-BqvL?`)O|Suj@-RPfg^6^Z^UT0^@ZKN5WEY4oNfu5ln;_l@?b`-m{{F zcHZ#z(Lw^y|InU_*un%S5Tt$bvG<^=>LNvH0h{j!WB8tnx|Rd^vcMqy#qbl7>VCDM zy;@>h4}3HHX2r~CTK2gu`j*jyAyg4J^%lUHa?nX{D^m+XAMwx@0{tU3P-$mQ? zI7;9dz@F^5Lbv{$SaS1AL)B)tY;owD;_sF@BDL$GP10E&7P{PmHqro&Q>!%*^!am0 zEW3L}x_tPnRFuJx?GltEdU;3og|;I;J3`Vsy|38q@(%p$ol6}ka;)>`k1W?XDe-;;Jx%Gi7=Qq!yP|8cJ7LB(NwB*L z7$RZwL}onMF6f!ohV_^w5CzBufojmFcs!AdqC>)zp*+<{F%n#ih4Qbc46NsHa^w>w zOvt_>hBr8I<~aL5nJ0y;15Cd!Z*-I8qXXz>F<4kJ9T+AFb$P*wx3{gCM$F03TmtMS z&2HUJxwM$P8y3Yto#}Mhq*~k47TJ}BBBI(60i2O=IoQ%tMCJTgRLan~V_^e&otdaB zFon|UG4)ASp9v*i!CZf#GGYxS73NZZJKj~q3=T=*m?|eEyLy{4rxuMn^>Cw`EBJb8 zTm#KAot2zJE}iWaTR8yh6a5!$@BoP&tC5nw8$9dO!`mg=Vj#=Wl;Gs86cOKRCeocF zG+n>6Hr0x5AsL+M0EC^>A=t}juUkN?MMm;@iKB=8URMP8U!EW7ZzxTR;@Vsvpoy~> z?(;_lOHxm$H;Kd?8B1?ww7oa?#NXQHIm6nZZCUNyt<4s^}RsieToAF^W$^-dbV&${RZ@qK%r6+$M! zv>W@;+*>{L)_w9D5V>E%M{&CkN?}b618@n`cmM^Vf9TVo(Loc{PGAr_lC+vavL7+|##F%!{RtL;_AB%h0IN0L&=}zc8NN zTWpsQ)g_V||HcT_2a1@x0jULJC(tKqj!)^gY|uS)r{Is>dN|U3eAdrXWYTwa=V$!c zlL!HYP)0`Bcay9LMx*%)uc&`)DEySLQ{MA?yhAXjWmFT z(3sk+aN=ocCM66$uohI6)jbC9XC}Wh2?KXLMUxrQdTU@ zpAe4=$vA2O?@S>f!>t*||8iHD9qWIC04HA&v$AKCg8At@L1E>fI+-p<2pCj%%% zr$*nH6gBQnRG<%LvMh?*G6{c2>6>`AvLU5-=(66yr~V`$0R;MUJLugq<)UCX}vN*?9_@i`g}q%~M8j1Tf$DhdmIhasH(d!8uC9ijPU(kJ2D5Kg2M=DpzGL-(VspHGWR8k^c@BD1rR}SYzF-kE9 zPOt)H>fzKB$hBK^h0Npl0GL|xCi$z|eNm*xnp(`6|H*k;Q@DTN2i)<6DSN_%#WwK~ zKEgg?V@O2Z`!-S)?1O6}ET#R_Py`SW9yu}qUSVV?ac>k)8PC1I5?Q%*TWpO20popk zLW;&-S|P6isuHFmY)4RtJS^pCJ(`W0f1zaKauSQT;sO6Mrv)q1ldQU7UzxUG76DI- z)9XZWZTeG15#$&9A8`F|=E9eRYJ2p%u26v0h=PX5#q8vIt9RJI__cegkcC$#wTYgx zRnJ8-dFfks7xXgWa_I8}>Sy7y2YN(B0L{5d-77)_;qT8+`xtK$I47zw9b4-{Txhpp z@nbJBGm?9E6QW^??38HJFlfcMosCTet|bMZhSb7twS!bgX03~Q*@V2>hI7CcVe zuroWy0QFJgJp*)OmQj}PI#vYcgQ+B3*QX;2)=bqePN$-(d5 z^=9DhmG&GXh0=j@!{O6wP7J{lLO-_Y5UdCQ$w3@AJxe*0UyEm23M@*y!sK~(Nr}pG zHSpqe66l2Y?TW_;efnn`%?r}{PQv+`zhv8vNDDBmexTYTc)#AUe{g4#nh>7N&$U1x zKTm7VZRqO!(9SUA61|I1QirvZsZy1x8+;^o6Y&)1r%tHklw2D^*SE-x2amtd&g!DM zE@on*134-_$(#j55hBo~<^bc$RAF|5;0h)r8-*7RJ%j*zfj)(Cu4NvDzrqcs`?IEG z%?jH*QW8DI&~KG4wx@5Ls@fJp+%vy~3@`R{kM(_h4w3FnyN)KrI0Cc-#o}JcOU%S| zh(mv?#W^t-f}B%&Z>_8VoriPUym7JxCra}Nqi;?KQqag|2WTLU#Yup|e0a?h9Dv_3 z0>ny&_J)a^aPo}}Ib|CLWD^ zxg@s&zV(S^FpvQ_;V0DIbsdra3LTeA-57QG?I0BxK((x#C)@;%9i=z5X;p)0dGLO4 zgDE%cvQc>EylKAlEasLp?q(Z-Zia04qpUXc>+3#Z@ z+3T5$<(P#g5oUrZ_xZBM%$FoJk_9Tlq8pr(Df}SFdGX_RLZfa!(oHHw|Q2l?3-b zKIsixVNZ}Cqi7ZfhSBTfc2~o)t?|4Q1|HIf7<@rcKe3edh#$P{g@}LZi4+BHH6H|p z13x|RBYEO71jmTEx&i_^;;i&ai@<6gvftxW=h#Q%Y~Fs7RZY6c1K+rcPa$%eZI*9s zXn2hIPMgV@a-tVvPEsV_N0V}!|mJEcmW0vBF^OC&V#;BXxgRi%{O38 zvDLFzHM$&x276FL|IwZMetIE))JtgxP1Rz_C&PuNZw;73%xHI~-B>1CLhBh_y9w07 zCMux6oD`x7dCppUT>-`5)_igfl)Xy>6xBH@IW8is09-j<(^#>JI3>;tYr#~X_1=di z!UHvvsj8QU&cVKq`^Y!!#lA*0LoSL7Y(eAwMq+S(qWAEA9 zY_ZF5P}D&UgkUPReM|tlc(K7)7eE@&qR%V9YJxS_E z0pgR`J9GpwJ}P&bBdwdi09-JA#sLr`rEBpfVR6tL<;=cyqf)K5->keY-1xIVR!U_= zR1~v?4Zahn5adjnEIdkmFG#*rZrw7=zywjp!?fDkvIW+<&h88%RnbY^0EE5)E`3&* zOy>FgeGD0M!ieTj(luIVeTk2^d4=QQ~ajJ92&)LGjE;;3_i@)CL0% z^qGqEAE=NaFT$Ah`HCK!C$1;S%Zu65nE4NK>P{oCjp+q^)Ki0ss=WMizL?suiG&`Mwot=`GP==B4DhvrW`c^*Y zc+QTiCb{2s^OgWy_O8N2wNy8Q5w{l?7h;tvKJiZ>TbbvAy^Mg-rght2DyMAWlrR4h zojd%ErcfI~;4T<%;k&@Sm2(G-^mTmNw8t(^`4IY+ck@Gv%vziw7QBAwM+snAKU z;AqOEC3seVqqU>1XpURrrNuF9FDL*Y2z05Bky>o ziwuKEIb3M1bV<(MB>Dv&f;?CHEIjVTK3;>jmFz0~XN(4(7#5N}Fomnb&s@poDxeNk zN?~T;j@2P*1~7jPXv7q`T==cbbSk4)5wR^dlEy^bb*#qx;_D^d<7^*d2j8Y1{3vE8 z-+KN#hx=Y-X{^z-P1pb7Zw`t*ww^pRwt5+ z6h*$F$s=}MSMs!8vR5|iRdy53^LrP9OkV04_ontz=8l{JCu2^`l+s-kUMAO~IaZ}v zKRa>OvefxbB^mY{kKuAE=v1T%pF%*{mKe(_USmDu?TnrA!;jRKEF&=UacSxvclk?1 z>jpa=MtT#)4K>DXs4gW>v|M%L%(PMTK|BZ0cxSM8Bpdu`5%PTD0!0!X?z`T|QoSEU z&FeZpZ*r!c8N!$uf_DX$0#gz=nNxV<{uyRODh6>SF=4z}Do9Po=e%rj2(U;~gBBr4W|4c6%*=Fl#P+f-9llaj?RtxGlv{$aCR9-5`bKl|C(@ zg*E?!ZlW~G#5+y!Gv8NNPZ7z>nG@!;K{(hOCv?u%FKOX32h+ zCmoG{%Gh<4*5|#Z(d~Q5CwdyQH_E5NyjkTn05HTAs@N3w-9hT4yzQHwJo3--MWfS{ zOx?j+(3~rSDrJ{G@oBg5iT(=#;(wTl|6dm%{tln|zm)l3z-}hCZ>`}wLF#)-pN)X| zduX2h`-z2_j`?3iIQ=_v|Bg@k2iDE@SNz(4X5IfB`^Nr{t^|ekAEdlIXOF; z7}&rrUUqr4Js~8~hN*m9gA5QsV>MMhc~jJyZ53J0nLDxfn}P2}%&|LBM&zC!Tf9|Y zE-p{?bk)9Nc;l+eN%9pH8&f_((q9zynu;IK1@3QGTJN{7$rr89iJsl|q9R|zW%T9y z4;4F~WNI}(y1KkR&d^h_{{=Y-sQ-J&WCU z-NJpJ7B19#|gch^|a@ae_mgxm&83TtcLd!S`@ou5&n3tOBB-%7Q!;x)g~5U z56{S{8A>+T+va1PS}5?i+~((HRa>Te#9e_8cD4Y08hQA%@H~?*A2}<^v@Uk6pDfPK z4BKG8e;wYY^7IWHV`aF-j|?{6ZH*6)6K%UUJ_HdH>ak5(uvc0%#FF)%tm2M73*kL? zI3ElT_cV`JK;oKzbuR80KLP))z&(4{ey-+KQalW<3twcfnd8e^bt0M(A+MDn4-DY> zLK+$iAZ^dm^St`LrM_oM4TFz+M%7Dz)ZUX_-o;&OIWu7yOIc1$5IheamTWG)62!n! z;HU^TZ0P?8)SSdC?kh|!Rx2aRp5u#@_O!;4cKG$h7fuu@qPzpyGm%*wkcb5t4-P}_ z6nQAbF4SmDa1u`rk&8S}B#PRR=|?uu>(U+C9ujaZ^7tKm#Lg9bC&9esW6Ou8s_Tf+ zl%G3h8n#C!$04UWD-6tUntYEFNzyecDGU5ziqC@vpKy+CrqbKGmMOvSl5l##OvxL` z0z7jI7d1;ncqUTZ*XJy~b28Vp#gCOH+nEZxBS-A&cNqi1L;GNMg&6E?s6GV23w6h26oWV_HrB z_sIqPb+FgN&f2-4OvKWWyj{s-!t831J?(nNJa;H=K5aWy>{Fu57EA`p&q*{F`v1z`TjvRL?ANM<~8N24w?q~90ETM zO}JP4uAB&*9(pVLmrOXFB(lQS9QzO%+e3+MqU)m@(VjPM8Gv1W{&COk z5icdB8pbK_6c4*EZXB*iOCM(h%VnQ2w>r`_|j*9Lu6`>8pu`d#snH~j$$y+hM)^K7D|5U{o7%j zb!F9&QP=8f19%My-bGf%YHOyEi$eGa!!M!=Ka)VQA(xH@R4}`($DCx3`R0$i`#|U! zmPAhynb_|3!K58O{4@w}C(%0guwNpvJ1wVkMID4RPp=^AUvTJ59ss)Qmm=$T9Or2w zB6L*eGh9jaolSQAEhGEon$i3D#*1W&q<{$0#OE*@iu>ARybrIKoeM+YXH51++_^%( z`SG7&vMdOJLk`@S!to`?a$<7Sfu$LfL~7J+xYMf&qPNX8J&`n6zrF5-U4B&rh=nlc(|A@QZ8}6$zPZwDD?mNdK|9S8jIkI~>RQdM?crZl3#pO$*h<~C zP#@YK_E=nTzJuRBMqz=Q>@kP|qfuQ%5~G+0 ztCf0b;N9Dz$LA~u@l7TOLb$L1QEGgJV_eCFNgM;;0%p>+_#Cd!l?3Y-m(Tt0S74ts zG%yOG9YVxW9@M z!4jyLx>cdekw%IQ=Z)7-rBR)RW_G@NW$1(UjyfEC7S2&WaH$B9mi>PM5m5z93#`0O zdgdiQdofRZXXGZq)&;t0CPJzWPz}UcvPSM!R8LG#+yel_>Mdf|PioRu@4O?IN#bAk z{5W^`dZA88M$hQ0yBM8isU>dYtgD*hN`+Fs%3O`4AowNKdwiIL=}M?6qeb3=TE8&C zYY-aTh%Wg%djimMA?>QtAk!=wN_?uuYSw*IZi<7FfIJ!%4UZ1^#YOw}^#Trcn{ydA!R5!1seW;ivTPSK_40<|5 zRSB2Mp?(dLYz3xu40^~ALvOSJ$29+LZ;?xsY%rfJpANGOlZhsEiquZh^A- z8=&5_)SBPCt8i7vH!q2;B77Kw3Hf|3yrIeErf=ianmJgbEeGfpkHGoTSW3;HvW5We zFZxh>{6Qpi>`$>@D@s^i!f!Uq41tH;So1KVBEJj*#(l}I~lhEX-{s`K#KZ%O0# zSVC>}nS&GCI*miMEu1s%>l=*?uxuY9Om;=qKyR)O&!E6*i>N^dY219ptU&C6HDt1({?Bj}#7)6kN@Z%~Jq-rf z;mi?^pWUz{0)6E6Ny4&=oM{!t#01q&KtA#dXV@^arF)q&xJ?!IPQWjWxFXq)eI zfIxNCc=hvLCxw$YG(0l=PzK&22QyQG22fV=5hH!lPn70967R%@v(R_2g9uA z`tp{?TnO`EtH_NrO4W=z%p>K5>$$sw#9lp0Vb{Yvc(+( z_10pi^G97;Klfm~7-;+J0f|(AB`coo4hM(pZfl|D)(Njx_kIgcu1fONfF1pMFfDgN zuG17Atq5GMrG+icu++V2kGi~)mzuNjH4jiB50X_!@a!B~5NO<1d3-Wx@IVz;YQgrZ^)OWKKr?rREap~o_&`qFO;MJ&8f zTX`&1sG1!<%UFC@h_(Pcri4IpgBhAwbOQka-@7 zV1vvi)U6qQ)!p4W*{fEpfTx7a+Y+<0!uLPz;G{@ygme1V82waZMNRJ+nX-4~de$(X(t0rGB$#zDP%R}vmX!7f1-O_hSeH%wrxXX za`eXBLDkFg8Qvi*_oEB6c>C_~PBoQ1m|z|X!`AgYKGAlQKJkj#{$xjXcI$(`4uPrm zlz6YsF7c5`1=O+kl%BnnaIgnbD{V=21NhHuFZkNS>*a^sv_{(W28yNgcg&-$W?b-( zCb*Fc%0dlR3`)o)%egzp+5K5|qjS7Ma}6#9ulZ3W?L`PoV14!*_ozHRb?hh@?~yI$ z#e0?5d^?QucL?Fj92I^%_C>(b;@4fA44$|H07b%%6$o`BdJli8=R?btNxIVR@=$JnjfElrGD&J{Lt zn|svYZ#KWPO+ttPM%qLMN+N&CN0t&#|B8r7K2b#FE(7i-55Wq;A;kTuV z07v&E5z3((Q}=NJ#6QBIj9AOUfAW4GTb=_-Tq1E6JU;%urKY`%#Lqk`d3_-~72Hdf zE}*W^nBK!qEx$U+#x1OWDnjYCzy5E2PcC%HZxDrqfRe+HXtCU^)!{Q zwnF04^yR#|%9_=vGf#*ff_wu4q#_C%e27@aYk9@@p^fo$qE7SvmX}2MCnGNN6#0@0 zT$#yXv`4T{)BCVdJzUul#~E|!5l5a|azyWeT19JLaz?yxkxde6LfEE|2wD{wnvS2E zVyD_+KyiZkMRya#W*@Bo;StMhY@b5JNnwaMm_b*ZHp`A_sJK@Ai*DDp+ptu z(9^2RwbbPgpCOEK&_BCXeeXu>S00uvn8v#q*$M!{9zDEywA91R??e@U-1|S)gO9p@ zjMHn-b`$H@MpY8~h%+?)xE(hHYZ_?ckJmdSdE0K#Kx-?nb~5wo?)qrCj#v@4jnCiG zy-RKM2;Tt5m~wLC6K+6o$tF}^WFGAbWTmv1z?sx=mWqU(^4v)*S^#t1Q^PP zo8IzAN5|QI&i?cjM;_(Zc`7+rGJ9Z|OGkaoO^np-0G@YQO#)h&gW^ z6CQW3bU*?V@8Qdx?4GoudDzr_P=_=T&p6a^Me?xf1_DM3tvucC0|+Y z+0gJZ88Lo$cREKg*+&J`!aeP09t%W_mcYEP3ak2_y@azsZ_%?L(feW$KNO0S*-|Kt z3p-dwM)ET8if0Q0BK+Cqs=Me&`aH0z|Im8cKzyd9c-TP1g*83+0yGI@pZM48@$Wg{ z{|4>-@3Y5$oX-9``&~oc(9*=n`Ttceh}k*X&?}iZ*||6xnK*qX#EZH+iz_=DIGcQL ziz{;w{GH6f_x+$360&pG{sxZ>-x2Pde`TPseP?=bFn*IqSp#QBi@)BZV`XLgJEY|M zGjt4Wf5&?Kg(m+S;K=lE!7={<9JjQ(Vr<83Cc#^;?F~UkK1QyNks%Ovdslk{_9PxH z2{)+)Tys~{RpYmqtwzI{?U;g&S9+`yh75D=u1@54_}aUch8H%tr?TrnI!U{xqdFGd)4kA79VL;rdN`A%g?!JY`bg(~NQ8 z+huV7akMcq)ARPIxLxO6b7Hr{_j&fjzi0ggyY}bJ4qx8q^ZlJ|`URQHF1fyr3cgQG z*Ussk`Yr1-YUSx>gqy6aBxKI2r|U;wrk%wB%#@m3RSfscjnWW}3ET9b}W6P0w)5&h9jv4mn2T0IXBs|MoIH(HbIypjhC zDazUw*)`(O$A?EB8%pg=PBcFLk!;7q71%G~oEO>5@F(SS?I(3;Xu%Ept(Rv{bg`z} ztN9p8V`wL9zm0n0ReN1LzMrNS3j{Ix-O$?^!r;@udyG5gc}{ehfejNFuNS;u2Ny3@ znHS_@NBm<@Xu(T6`?4niGi@Ni=%2cQ-O)fB#Gp>BpnDD=db(tbvVkA%+@Y1IKqFu& zATUE5LJ;W<1;{u2I$@M~~un_@la&29+O=(^y6;dGAY_ozA zWrzZU-?jjBFp$)cUA3ZN1jCI@sp6i|nm6RLyH92d+^ts}BmPI=Jyd^VJX%GEII3+q zEl?4)!V^m{V2gu%tL}zAvslF%`gtSs!dfRqb+~ey1-g0@VxPx!BIG1Vzhx7$a+DH- z+N*N-Pp(-`8(dt`7;yQFhS@SwDW6s)Gq~@0>xok@U!EaUf2lZ1~GsIAGbHLk#q6wL{U zQ+C73eG=@$8UX;uK?rp90axqgTxMJghc>2xF8CsSpCSnIbI~N(lmvtim_5HG??nWe zpalh65}uu(1-F&rl{$x@8>?z+`Q?g6RBpg*AG<9tVBi#+HrLmR2xQpI{u=~W?UFpx z+#8#9V}XR?@+Wd>qZQKi-U*D&DNEgouMkB)IH>e(jS#!}Qqk;ct4-8)3Sk2wFkTu& zffGr?&*y&g@Cm~T^55#L8?d(g1GWJuwSkhzah~ijki(1)(aI;m0LRmK11t!_?llOD zVJw-znw+3FWwN|=f;RO58ohn3bNuDk{#^nBTe++b$~r!!4<_`8$1T)dy{_$cYup77 zxxMq)b;>q&p;d;1Sm{nz7p#}jlBVz{znvW+)i^%lEEEuSPY}Zyp|7bywwhwJpP7$0 zE%BipgV%M6A(RMf5mF}*aLWt0cBv3~2y-=!Qc%SX+Uc@QJ(|TE`Qd}0)6$#LV3r*A zS0!N_ezI%{0K_rR%#u8kP8+o*fhdey4=jBDu1+p!FAsB-NOSZ93@3|4SlbGbv*2P(|Gi+!6nsZd1ogSwn?UiPp zqX5BtEHyI;1}xEk?jk$}i7dcSL)8x#hy|?X6%z#T5zga;7E}4`UQvZED5{G^jg3Y};F`Ku9>M)%5NA{2fP&~N76k@U&DQqMIG7zLC;)Bqh?bebPnrEsn~e28 z%2ug%Oy|Y>m`W%w%EAnQ!!9##L+KFSFl%lF5=59M7QgG}hDjt+Q8eTL_ki8f8KzX! z;toqR7auLnmQoFpGuVjeFZ(x}#pYkswerakb3WjC4nhMS@83ZuPLY$}Yx9q^_HK_36&dL29#PK^1IK_Yk!_D8+{tHVs zRaJ1wDcih$k&a!WPn_CHuVhP80q2bBRGuiZ)`tUKKTlczzzMb33O?|d&jAM@)MUee z4W@RMao`-%yVqMxw?~s9QHKIc&y_{q_k{v72OMU$Yr8QNNJp(m@(s}%(s~+sH2SUd zv&;h{gEz_zO%)Jgms1XF3BJ8gll`CqU+^G~QEvN3(QAGtE9j;br++F##MYjW{2^64 zgZ_1$1kkhRGr6$3!Rkod8vjD1q;W`lNvIZq|Iw_6V@HVQv#=cN`!P0FeJC!VOz0tt z1(b65be6X)J(wcnIfOqw(q;@J;ue#+U1`7y)LE9K^ zBE(1D|uu$tcn z7)TME!Vb5OY<<@|fQ0S~)A;KIZcBwCfRGHd5WrSm(4TtVa=2Sgx|x_DJdjbGU?|Rn zM_v+56c9{#w!83JuWd_g7?nhyrfL(|mY_D@!)6Hb3^qE@(V#E9Q~;1ed&yT*i#Uxe zgjZ*T>_itPflx!lKu0`y=+dx12!$=dN@m;}Xt_Sd@G+tUSS>qHg-}ia@DL^7S1#9v zbHyx9RJ2ZGMnEW>b<3+IEpb2Ov=cOCb4ih zMqz!Lxfus`!Ph+TSPYIBi;BoY;hT1zOR6Dm!Pz|bxG{y%GH=jNPe)m_ED06feRtHN zD($SE-=rFN4WY%sR^U&jO;In%17-Jcf}BZcaAFx(araAIY#Ogwj@nxnhE`gG~-^xAllT=_WV%Fb%QD)ta8MILtfk z<@53oJcgPl0a-wFPrAffJl?Ii%;&OeC ztm!l|wY!C>^JBV6mMf!xZ%7#MDXWHFWPh9ijiv)B^DL;jAk7G8jJR=ZQHpkl{pL+~ z#=F6+`c8hvskqt;L&L>Nf(a@Z7lisnO9(^}5Zl0&PY0oAYW{?R#b7DWkfIL3kF1x- zXcXxs1qtUM?oBc_%;~^WKBB!zMJoc;yF;l<+bdEbPGFX4AO^(fd#yZQVkmJyEs+cj zG{l5P%E+uhwOB~Xj&}q_fU%SdbghtocL7(7Tous*-|6eYy&rM6d?+=zT{dogZkcGa zsuyMIrSbyI*(Aj<;;56wBsdP+oY%-j2*LSfgh?HqZp^CNi1>~jZVp*&=umVzmyu+l zvRRnBnaW#1Fd>odywp%e11-4!bQsSr?r~^d$!UYQS}2kUb`lz5loTp2j~qhM0Vk0r zGt$^4QoLpYhR|rmgdAtPe~5Op1_^Jb*ULepDud?*O8$$DoEd1k-fqsgU25v^vzVcM zaBmiG&!$33yb@GIjZGI64atjJy(@j*%&5A&La*0E{W2c}R99D2{QguiQExFT0`sW- zfvKo$v8&obwyQjsm-tdk@Y^-Fw#Bp*Ir~Y{ZWXR$6cwsW-=85xP0O@CM4WL>wYO|l zu`WfeNxpfR@PLudum?wJq8@KHVl-q+^-@2ITxp~15Z&cE8(e%n5Z z$PQX^Q?X;w)2dw(wd(K1UB`lf8OS0}pvc864Q|rWgy3Edyf!hROFBNlPW*}BSz zT}f+F%DINLICXx_-|D@UQjAuzKsK~ZZ+|L$bT+3#n~Vj5HLWAKA#~;&lG)S;{2`YZ zFu%QKfO?Uj)=?mOJ6heOS{ZR!OX=CG+z8yG>$Y5D;KVEBpx%RUzmHJw*6Q$nX9)*S zP4wx#a`Xtb(o2iXBW*I|{VL!z#XmJkP5~|V2MTOjcePN6{RM4cIdLO_q2Z@4CNNZSj=*q=Q*!M;4M{xd_?dZ|hj`sl}? zmOB)*v0|0JPw4%xj!MYxptfZW9Om9%LA?q<1`thQN}jY9;awuKDKG__W9v(icApfLdAG^UXLAzl^{ z=F!hGa9#uG%IUOZm+@7QH*3>Ouz47(3G|A9UDTe9*h}G0&QZmapW+0x54|gtE=u7p zj_G>ZLNyla9=9>i%7fMFn2_C-4^DCTH@d|$$)+TvgJQ^K^ey=#_Ig1p*D0qR>Fys= zldcXZe2ZfBrrxV(@*fF=h>{uIiC7I}&sy+uw&7i;GShUtjA%rbH?$5})I?EtLBM?0 zo_Y}OJDxbWZeHKG2l8s0Y9-ATOXnz zIv@8)Y1euW8Q@3dfo!xLRAC|YVlbdE32v|Fk97}IU;O41j=~np#mW6$)3z91vI-+} zP!s$`4lUuvbPK=TtFZQwKtzO)jAv$6Ikv5e)q9TK4HcBK249bjU}S|MzXkFzKX<-+ z-+Z(A!_deF1Rs~ae#)sde9PHAcf^K@N*S!lnH>zt2jk6%Kv3RDZ++0dOT%btw)=&a z*q*yTgp+bOhwP{l7MxKnuQFZCA1i*oZ_g_`ynZi_d5!=$c484<#F64zxZt-L&=lZC zX$qt|T_lwR8}GYJ{{<5IN4xodjXhWy8UCKn`VZ{!x2Jd% zvAbjZ%OJ*hJdlAIgQr=i`c67Sc4&-Di7nIx4gpefRH+b1KrPcRN!r(_-3uUr$c#ec z_pRC`ooL{1F?o6Z?kkJTZkzVk@=TZghl_<4UG-_(^0w!PdqbC}*oDX%x23b0BbP3k z4$meY-kzS{H&r|8N1c}2oru?bo#I%JilJuz)jh4YfXr%PTSD&X$iI{*%9-p*G`-V*5$jz+p&HZw zz;MeiCd3uKzbGE2NM9sZFerUm^AuT@rc#w!j2u!QU4q%UTab;anDSPNEhf|!&eFjV zxiwXSgp8`k^@U1xOq^UCKjvMS{oO6+%!FAqFHUYyn3x{`(<7qks~} zNw!bE_)OXjg4{gFKMwZ=^v1?3Nq!Un4Fk62~X@(i91`$eZ1ngxv??yIgMgZS!4;)kfA}5h;*t8i9D4_@J0-R~$Kc zE+q+(STap4Gchk8}gLud?%T8tI|X*~eP;RI)boNa02PSNHnVyB% z(zcRr>h=27e~U)9R-&aoxEVf&h_NVBUS7Z%xta9%$CsqaIuV5#Uxjh#gjCmP_0u0F zhGtk&R$nnn=yvw!>_r{UlPHzR%TYuWzfX;uD9W1{zE}<|lo!M(;vW5&Z9~GRzS;x&#RW8H*$L@Q7>fR~;Fh=6LTOxgJSS^C_z~d*EPw|6lAJMX z4b^s}HPvqVak8J>8q|YeVR4;-rE{UbaAB`^QlO_rA$J^zbVLj=oPRZ(?v0-VGYTq)-w32MT+QLb;yPi&qZghLJ*7k-y!Uu<@bFqVx8JI#w$hYG6vk>k6;Py^FE|RJ1W>fK%2hyR82d8wmn*F~M3-NQOvoRT5DkjbqO2L#6*A8%B`>YG7MOyT6|b1v>!HmzsII`&kQ3Vv z?=)_8BPC{<$t)vyQTxr?r4#6GL*=KF?>)-%eVf2&HNpi(zZ2Hi8r3@hvh{@ru*xf@ z>3gmaV=!!U=BW|l;hGzGPDy5bQtVzW)isM}uK;Bk130&J@;o98SWwXh3|P&Wtq{LX z1YfQo?NF80q+Y~T=!QG!Zb9uJaK(^$1vXSt*F!J&S(B&(C0fQWu%q@fu;gO%NnNR0 zWNU-wW#Qalg8qN=DZv4L|R{=6= zmEe6z=H!_zflmXSfKs=>eA*UZBi_nLZv8R96E^J~NuXz;7BCU>2=ptI1!CQ||0ldVH{{DpT>R-HuuKoMDSz&S6DjlG4X zL)i~p6V^4LX)Vl^A@uyC>CoU(cyml22ojDqj8;Y2Lj$=}@I|no6jbnwn^axl!JKI= z?h8Y@aMO0kEVo0oDJeC?v}*^sGNO`eGG)3Nb{KBG(rGK%sl7a~pSz7Wp|138NFQUF zQVva$L-}?YaOu1EYfmec+eRRCtWPhoDzGJWV8GCOIP9+mHTohtdZ572U;7#WdL#Ig zg*8ZuA)A*~z5P!9Km^=5plMxrWJvx*TwiVnEMpeTL)@fGG^};(=; zo{BUDTRWl#selH;FQB>-!v@OzFt>(KAaUW?VBi$n%6tJ2-5M$YZ zZ<_=4P6JJzKgNY0Ri?rKJ0K$!3c~&Yy$HcB;Q@eQ52?07+-V!2mbo$+kk%e7ULqU@ zxRtm>o=@dfKaEdlD;@em{q~Oqob{*6-Ao6^P^>Eh8;3ZAlTg8Nte^G>mkPSO@!rCLP1AF?>~DZS!xHP#tocH$92vyp1KlIk)x+7=R#~k^)YomggDO507lp!42}#Drq~N)#?-ELCnAihS+h0W7 zLSckW(vE0rC)=pef+wsMynneJP0zOKW*}#N09XenIWpnC!p$hrl>uL2VZV==enkMI zL{@XZw#QHk2@j-oAAsV;LDDZ3#&ckd2~&W;85BMO*hY%u-j2dsPozd4!?iBge!lEZ zMuh$@x!x|k>8@Y-w3ymrFdXR-x-tlGBQioX;p5VRnD#|u{W<U8RmIew>-X0QJ zXI7(SP+x14?WZ|%AujFmEfJIV{1YlMy{TLv-AIfMCuF3>xEvK@b#L9IjjubyZt9wE z@>3x`rkw;TRM`)_K3_%%@v7d<4(Y5TmCo?s!hUD9nSpQ8#9!EmvyBTrWnz{*xD`*x zY~4UEhvb(;t~&lA1JieEEIyvI*sLf7DCwD8ropSq6uX})q=GXbncAm&^dOl#gbx;_ zZw=AEG&zXq-|?D%6ss3KBWS|&oWakkC+SBV+gMYY$p$5MRTktFzgRC`65dyrvoA;+)R?dZ8%ou1 zr7&lxhvWcoGWMX}9S(q~b74Xs7;1yGSzVc&Royaz=0Mx_DoEXKl?`5j3yDoP&1loU zn09ljo>P^5YIcIdRm`1Md~dP4{^|c%;ijomT)6z`u{teWPg{UcGj!Sc>z0PLb>b!fIENVuZa90Pl&d4&J$UFZ@7>SB9xtXOc zHddVd98uJK`L~7v;26=srp)%8i(z{T175B$Te}MFhyT=-ydfC(kH!4L78zbQX4B?6 z`0&emcOHOL&M|Q>F$4uE|E9TJ7_o|63Uc~ZI`tHLM9G#oK>L%$JZ$$f3@*=I6P zab@ys6xLM%CfF}_pyMZp_2iu}JXA(1o^IdF#Dw%yza0@b6ly4tW2~D^^P!)TWJp|? z;5DC2(f07^xUT@YLu~2^F7n1dvIL3ul7mx~;(@(Vm-0z&s4ve|!lz!y95x|0CN;}N zHKL@U@yTL_9Z-5FrQ9N(U4q4e?p%b0v1~}+-GjXEbHq_qu=H}cWqNY5eo_cbS&+^- z+j$Hpf%1JK1=xR|oVhFUFq`gEF}O+4+I6d-a;!Y@fZ*kWW(*GD7M`GttY4YXUN~5m z;)X7S_eH%=rF<&{qu(*{lhj@#eYKy!<3nhas(n9JN^|L+^u~)fKqYUXvBI*e1LTwv`g@ zg$U3F`8;gj%G!c0sPw|TZ4%iopN|wXxXqjEp257XzM+t*JH?2%&AZitw#?^g*gZ2n z-jK#MHtCux(8Ub$Vc*|$U&6t1vUfZ34a6R2n5pImlq8=Syi{l-PF&@XbzDK@(`mq= z(opZ*Imgr;yPOm1PD4T;&+Md%fAE5E_?%}mkc|bjB}0sK?a7R0-X$0f`j_cNBO~9g za)8#R{uhewY7ixP`n_@F5ZjMFw~XjXD=cL#Ed0DE1EDGSm0W@N5Z&oPNKa+yAg4v$ zt|6GJWAG)<#VDr<1UHShQz@F0S37tgdfW~X;s8QDg1!7D898py@zQfkYtrx;RDk_#_2 zv?T5es2cVwy)n_>5QO0Y<+}l%6r)#UX8{~j1hPsEC%YEW*|?wycr`a1)HZ%+D-zH- zc%aI-H8-}^Lgo<}2w@?^qbjR~njZq#Hou&YD8v@qU>zD16~k^gRyk9cQBDHQ@Nn*H z@q*}xHQVRpbECopKiyY^PpUY?=Qa4!rQExC@tni8bVMgTIkg_#pEk0OC^8o9Z|y0J zz^{&Z7D*hu^Ny!51hJ~h5>|yrjug&m!s;pE@hwh>$Ke-tP=GFz$*n4)hTst32|XLO z3Y44|mzdu<;AyG7QwzhOCzKp4uYgV5yhUU}ZE*4OqlrnsC*f%`+cIX6T~jPv#_u=7 z$M_WQ^FzsTAG~B~huDAE3T=aYSmVL1%+7O`8|VUSZ&rq)p@ac$!Duw=8MA9>8mXOd z7;r5=Q*>O$FH!mgFX4hZ;mmQ7s}VL#$(RQ(X^3~HvFoy`S?zBmWnBX9RHC6M(20L_ zF{@tS3JTL;VlTgp4c8uole3$On_Pt%O0oxifb!&!ya8>M^lI4!5;@4qX>Mc=1dS7n zeZv<|JJpT#Hqp=)A$%TmTkmBg9C4_AjZwdF>ODhuOe4h>ziJK_VPYdk{?; zCs-eSMwQjc2$yV=AuhhCu?=;+MCO_FZZqor{`LMkt9er2tq5KAynKB;Jdrom;hzH? zk7k(xqHPSky+T4L?VFtc+xMpooOPMD5c0eg5%x=$bt8&nS{N31Q+m1(wPQ;&VCg8Y z2v%5#av9mAJYkO5i4405g8Xhw@Sc0w&&)o7iL$Wox3ob4A8&!qu#_^MRPyA+Bp4H{ zNrd#HH{ca$Vkov~kjZoMKuXLHFr*$mvOX~kSi;$aaGN{=d4LfcJyQS1~N`gsiQ#$-+HNhCvu99lHQtbeEY>7gT;7COeOLA{uOZ+qYmYxN_f3L z(>ZSNM?RhexKuc#C24&!1LR(MB`V7l)cxz5HYSH?94gCjEgQ1Hmf^xQvPrPE zG}EO1u-XPpKY~`yBxN`r_46tlv!FNv7{Q%73&amx*&FK=Nybk$5Nn-Q_aml zf*x7H$rV*hzp2w)akV3KV%1~oVvZ6$UMt2Ic}7YGJ4%vb$B zm|tfLC`hT0f3SO*|qm^XVfm7nM#K1xcw z9hNSaJaJ0u^JWjZs)SH&3nK%VADrM@Rv6O(9Lgh|g$|7sXBM>!*xM|=d+C5Jl6#nG z-_&u>H0VJT6${2Jaksy9(U|LZ*_{=@`diqVsvX-jxB4TDH+!0M-yst=;(3ft&zZZ2 zbRjc#*P5UU9Du702_Y|saaRL=f7-y$0@w$7fo-~?$|zs}@hQW3YBmk~Oh^u_753V3 zU|DE;3KOZ-Mul`_abxX@0IxyWWiT|Sr9%yJ1sNCG3&obU+j|pd5~-5iU`+oH`?Fnp z`BO=SbyuVJvvb3t02!6$E`1RcD}Cq@E>&mlPg~elQ;V&v*ScuOt=5sSARNWBG+1!B zY8hi-`NT-KW^EZ*x`@;xAYZy%J(+${yq?%4@>1{`tE80a2|4{`PSH1P0M=PsQ}&yx z`Q?Vn$dDlKL2Ss}h9mZ#BUn(aqJeCIQj&6f$ z2~{>4G$sQ1>U?X#2;db^@lvrgH-|P%!2! zBK8?)eIAi=*%|N|PDFf@8l7Grrs!nDeHgRn+CtBS#{NPsutEp2t^zLG;Ai9O)b5@m zBqGIa0Pfq)^A(2+f4d^Sfc{8MS0gVmoKMdh-cY#W3~+EZrOycufYQ$^6-%kFtI@b9 z!b4SkeXWE8kF7Qcx(DVE36%wa*AJ7ZZ{!c~(3PaUGslCiylr&&e%_=V6jXu zUjZNr>SC$2DA8Je51`x+V7@o`6gZn?nifjEw1Rx=b+dbCq%mRYX=a5NEnCe{f5L=yZWSOnd zgEUV${f^jE!&aYueVN?*%>D4VcLKq;^-jAC%iyj1Wg(6$YP1D_ce~N+cBOutbR7U* zBN~fuJM>mI!2bG^p?j_1b!D4>`~~i_XRcg&x9o*~(a!dtBt@|Qo77=OW)3>Wug1); z{>-nViIM#)37Um~oq>&xmHkV?ETr@$h*l%`3Noe_BVeKbzex;#N`hu)_{-GcKX(SQ z|C_o=manQr4vsHzH6z`ZzMO^QD+z-A|A6|ZFqr=YgN@p8xya{5N5+{&gE3kf~b zSA-iQBLT}-w(sHaTNgw6#3T3}pa&NZ$2NKB_^Jp3hBG|+ zI0MwVw!Bw;37(!$OVn`j-Ff4q@ZGT`$DO&JL{z$+$qE*gAVQa7>f-96gNM1EhqEGm zk8Bd_c(XmRzF4x}q|4ryv$f6dsr#+f-2eL!*rhw|ZhiO!l2KV&MvOAuyXg zQYXX1j@70fmlOSIaZcxx#O}S~yiyw!O$ut!!G?!YPp9A5*mLkH*lXurg-zZ?a}7fJs8H1A*mPD)gSAfV47oyPPI+C zC;Czo%=g;Q2%OSEYz;|4(Bvm=F-9rrMeIg}Wc^7Y?ByiHBG=r~e92UHTEkXssctso z?F76W=iB6gT#K70C*?d;&=16_{#I+*v7%yH4!6N_L%jCA&xC|hh`ko}VUca+0KRXj zd8#yMEXIlG*Fa2vikTvmSbBi{U@RgN(sx^PY@Bl2(|4A(`e7~Ex;*D17w^QEj@o7; zF}+LqG#}mdXjufvSoq!dTqn^5jh;nO%d3Uz%vv^5eg2nX;`AX!un5z zP{xmEk3_LrN4^d2-x$FU1659rukqFKi`UcLzjoZow~H#Y%zpfg{LFkApIEfj? zHBtq>cw-lYKwgFYgoI~_lY9xovpR{5EP~&->|;!l8EjXLEgc?Y6qNydt@)d&9EQ}m z#uNpJ;+sA`907=;5YCSk2wv1lB=Ke6ZuO1^_>_I&%@ zBt$=zzYoPDZeW`vt4*!2DBCjqh?iU+Eo*Q<*@@k(iuslD3SB%mWco=qGh`~Xov`u? z&M@q(R6x>&No;RtNs`*(k~X(1I1Ax>4uKiF)9$$(wHaN9##Ct$4+IkuHoHkSYmyj+ zyqg)^h3ee=hzT%^sD7P)<6F3ro!Cu6jf3-$B*aG1h#18M4dq)ghEKe7 za2SE+x@AmaQ-ys$bgC3K_O|^Tq&B1KYTCljHSu4eXjS27Y9Zk>Hueuw_xUdmqQye4 z830K5FKET?ztru(^I+XBBX&HU*L+kU4O48PK$;jc*9*(bM1RXmEoHdBTNUOJA1u zRMf+8PU2n1r_sWHXRXbQH;&UJD>%3adB5!O7nakv^^tC9&fQj9YP|6Gr7e8T(}T{F z#@Sax_>Ps*J$fzw{p3q#ZLovXMZt-sYnT=u@^fcC5DJ% z5Daw>P%scaEM?xwJ-SGsmM_jGW^JKpz?YC`dAvp835eSD@_?ZC#PeAeZ-4e0)!}Mw)D(<-WzJl2LQS=#}sXq*q zC>a6(Z@<~Q)p@b!#EdFyoC+U+O0^S1)=uW>4JZp?D0{R)6pHGjfXSvVjnJGFr4gRq zvm1`=e&mYEC>o*2lr#s)$YubxCM3=GT!Pryi->YX@bGcr>$XGA;6tgmOB|B_u_7>ZGBnNCo+oybsm*AoaEch4>=0{c}dciMahB406+>;&?;oJpB6x zPpOKK`I2{x^F)z+1`ysJj6{g_K-ysWM0&Ew%@2Xx#~j~qUxb~{It0yg|8y$7^!#Sk z%E#DRM`CK^pgB1d$_Ht#(&SoC>n2IH98Lv{?HIUPVG@Xv8l<(M*Skph4Fg88O+djHg=7aZSfhYT?|su=bN>}5k1P+E zGD}x%dxUI)`_vf5xQ_@Peu12kkxi1P*>5LW_W2A5Cx>7gKWm_mbe}rj0Ag!o?>a}W z^DC;ghQE<_4UYhLp-Du}JSKlVn|y@kepB0Z;SHSZbQEO6S&g%{#)CEU3UR`2qE$S3 z{0@3nQDbGPYxPF&jAriL5MsFx@U9qP z90sHxqr-)o>wTfSMIu_4n6RnH6@WL_=0~>Coh3-n z2ZaC70WHiOu?U)w*|IrQgHeFRuJ_`DjyUBa{-H{Oq2;)w+JT;P&!%uiIn$gV#4c#k zrx4DKhrt5T@Vj|1L&0+6{W%PJ?wH-YM=rB^Y9`fvo2xS^ny5qR^3}{vL(y+gU7b&^ z626=UBAXZaO}A8lSTmOAPPD1?7>(gnZ)9krPFS zusnrl^Z3U1?@G-|QrkG3FIRCUZxD7f@nJ#U&y&P0J&$T@=fO1(i{`9`RX*__AQ#rT z)Z=?-wxV|DV!#_0^T&g>7?{|6-*h1$XBc8IC-3;%nknDj+sfgFE7*q5>xQbo3ahnN z@C){z`a)fme~oeUYIdbm_zFLj>p@$5e!b+~Uqy$J35Qv%s#-na?`ON45KWE1tlXL( z2a#W)qeflKN@C0D$(xe3h!cK$dn&KTViE38!8iZ6&Aou zemjCUznO!o#J$&mao@;IGkv0=Uce%407YFjACkh0z$l1;rc$u1D@rtQDV*j!Mw-sA znc{pwicTU~3q3W_3B*H+h>@T7Ft?`{>T4iop}?!k%7BvIWpIJD-BjCv(DPIap?|yO z;i9#_dzH_2uBrs(-LVJJ-`Y2a; z1pH}gC^d_zku?k5M_vXFQ)EA9j7O>*;fs-H4`qWB^; zr;wPH3?uO=nw7ldv~b9**$t!>13mzK#JG9lbj&|TP0NKmPbHr5ZuD5$9qjV9zdI*w zQF}&tN7O4V{>JkwSS|iZCmXVo3&`V?L&7Y(5ZyQJ3uoBQ`io--dGlEs8tkKl;H)7x zp`G%nIAjL?&A3dk6I68AhPZ1hy8(VSum?Sgcr87SwUaclmPl*PwMXG7BD!BGnGdGP zxp8aGxB)|HjtSz%zt};^LVL4}0Fy^`+;4OocQy&_8|bJy#=)~AZSayVofqIcU?`f{ zN{At0gNH9pXpsBO-kIwb&_+-&mkv7*M?pya;ys^Z7cFpaUAT2+vjvFQ2Dt+=HR}thnRxSQ+dWH+COZ$)Cxtg2Wzt{gvZz_%L1QK6AY&#BXavi<5kVjE`r+yR$% z@Ts-08Crw@s-EbIN-HdqqA4vk*3?4d_izOb3CCEOkm|Zwjpn5tVOkD+cm&ew28CbH zW}pJWGHBqbLma)jrRc|qDpxYE>hWy-PVr&5@BIiGZkKL!u|XOeW4F#%Fu}ZpW~DUF zR5%U}vKT2$qd#hK9FU-Dc%0rA6ZFwc42d5aXzEBU^;3tM!qdJp6{>Jp835&+>C#%u z7XhRLN78e8>8tn;X3Wbu`L`KY&M|Q%D;c!&iQ%l%@IHHrKlFfoy+!*v#|=$|fUTcR z-MKK$(T6;(0dM1L;LwtF{nj*7p7WrRyQXS>-sK?~xhwhUxLv@UN!A%;4WTWlD{8;K zYr~Btj*C}v2*p|XY&mj6Vj}un!8oaYf+H43&?L?o|{%8|ez;luKJ^aSDS8)Nxs=Zm34N&XRE9?G30nl~ErGg^y}V=sTl+ z{`VW<2?LD8$yL^{`zM52Hq*Vzafyq>vQ0qWdtfnD8?^xW9I4r3E_R}xrV9%}W<~}+ zJYB#pD#MD}QuR^7tC}qauOH#5}Op-iZ%4;vH5NYaKD5sFnXl+J9m`^~# zSA@yAI)l=z$;6uAK%Y<`xMN@2cv}%oD5Ipr(73)@Ktip*K#6^<YdAXFds8Tg%-ub=gtkx}%;?`FBO!q`kHtUWE?+pkX_qLE8#};_|?9N$dF@*Tr zIOGxcQ|>#Nsv?Zz1 z(zKlnB#i2?B-J{@bjpge3~gu!Y)4*0f-w&XGPe8IzGL~)qpOtcao>bUrcnZc(C`A) zAnI*n-(=$L_2eaQonr%kz`|k}WlswohT$8;>1yltJ$)R<5v*?S0sQs}Sl2pIR% z=^JKwiMpmwbGNi=ACB2*xU(!5587)r3H|20jF05{i}0tn`E~3k0<+2I69RMAr$eqA zyoxSycu1iCaWDPMkaxb5AmemojQsKa6G*wEyX=QyHGKR}mN%D;?56dmA2T*x^PlSP zLEfKdp@8!*H+i87EVg(tOspyvF*hOYF$S>OKt>VwbbdR~Q(HBxz&1F$h;O@9#xJ$? zm{Bmt)3F^F>sKQ$$Bnk}#Z>j{%INt!<%@6=-_lv*D18?y3jnPdC(s8!G*YYOT&>P+ zU-xQ*@fhr~yBMLzeEa0%XPl5HaduG-4lY@U-Hm=0^?q7d9L3wA>5T_rSYaMTD-_(h$lu^rRY3=T zO=xrcqZ#HeqL2T_32lylWZeHlX#a=M{tu!3A42;-g!X?3?f+j8+8qBV$NG!om6?&5 zj)Rkch3%_Nm+`Ac_p3jbjev!njgEumpOdG5@PGeB8M6FQG5r5wl3D&-E%3$5{+%-X z3mAW__{YNk8wM-mS9aJJm-_z#gY}C6{tFm?(}S7V8vl(xX8+>M{|@7yGnZct2Y+Kc z|AD#0)%jvB?|211`}w56Gmd<3Dkz{h9OjPbESw@{^UdD{q?1HNekgx$+J6^+cI>`2 zHIc$6MU2R z>)ztwIJ%h~=l;h1SLS}FckeD|PA@KDr$ns;m@Z7tMvoJ}Z|sT-L1r~Pqs zzvz`0de_(K6#A_m?BBoc1{rfjkvt4$KxGi(fJsurJ4iNwPZ&j-%Cw4{!A43lo!gIHDS2tJOmSLc>?<;Y(;f~J|;W}{|=1lLt#kA`j z5Q*(+#=qnU3n+T{ngbui)3?I#nt(o>x-!CvX^al-N)XumasWZU$`y}5A7ncT5EgLQ zkvu;5<{Bbb+9O?Q|2ZCf4X2FZDQFD*c)+_BhU`Fpz{W8~n2CUTaHEAX2;OvZ|C01x zaR0SBtKoJ0eu_IJm32gSA?hdCn~gVC>|6+QVWCt7gu*&qzY>#t*E7x@8pUqN6`C^%TO;J4Ak!}&Yv0L8CURy=NU=m|wM9+>1_ z>Ev(;lGbAc68O%6rWx{_UNSEPk!>l3(6LEULeag!-TkDb4Z?4OyuSJ&aDbBZ4YY77 z%_xDYZoXcZNY)g*7CPGmY<3s;xhILRRP~cq1t$R6JM67Dh<{Z0g3#>fk|2>4rGVg? z=Q4W0#6r>yJ}VCZkFxo(2rmB;RxLt8bFVdowY|8w=h7iE#MkX^*Z*97clMYRTfKW2 zRx@&wH9rVyMY~FPn1fExi{?7?jY zYRfdU#)+G;mXl`l=JaJB6&m0nNLR{koKTdh7S)TQ?Xsx8KbUO%#^Dv{*)y5Yt~S3bGp z0G?W}?YOmPU-%tnHX3JTM7Bpy31(>zN(4_DK*Bu~dbAW_KRj!WwQi$Cf{yubDEsbR zVISV3d|$0D<3%1~TPHd84R&C;Dh2?1t$SY;1pKP_IMZ~W|mfs*zfVRfq- zdy3ClFW7m7;1e?sMs6wVSaCw(v!!FurRkflxV$#*5P&tr3^3gH7{?{}VsmgtnCf=e z{r4Dv^GDDrB~}=lXsL+$2?4lx5tm^1ibbbRu`p7?|2)wJ@Oh7@z! zEw(@Zg#Q*X=7?0UGk&&1mBS0$&!!lr5^d-ol$K=7s&uT0*NLWBnNvV)EO3=DVa4VA zhRYQ1_Ont4c&la}DvcS6iM&gm;Ylc#Xs$(%IG7~n&hfjomNJh#xD{(PruAaTsB0Tb zS2&&YztWr0CTT4x+6>Q^vMI+uptc(9Pn%djD7+^uF>L7Ss(UV`Q_O|yT?9>iSKIIu zG9D$&c}Z!)AG9H@s$H7;Yw94%!utaq;1AK@iZ;9>C`gV<`4?n%TcItQS(^RV^_$y9R!at#8>TVm>uj71V67C?frR@a*t1(FW)webY>%vN`n{G=OtbwQQf!9~$DF?|U4z%hkb5~?k+a`>RmRiU=Wr$GWN$v!3 zJUtLU0a}&+i=s8x7@zX__)vOb5E2O$vSOEv-ur zFiUAa017tI1T?|rVQd3~ZBPK!aL-cAC`x3^TLyY`BH6@nx2W%_>_D>@n89rjPEfQj zRZkJ<*2u7pOa;MIG`@HB$lJ;D18HaXhWe4}BpU|TSB?x(;j<+SEy-f|GYcvg{F=}b z2jrT}fszXkVo*RgOCBdC5>Q8rmz~ak0pQj0%`?oGMQL(vu>$XEvzr*a#*qq%=HWk) z1TuoUDaA1{H{e_74(N;S&wjcscnKS>b<9aa0qP`VR<%8c_yG3jYXM1ekARisvT-6V zO*R&%W+g+AFmx7y&7&j|OOE*^VZHHKklz>Pt`I7IlmD)6KN%%f8M-6-C4UlO;_-7X ztt}@8#%>fnPIH|>kN$Xl@-E!j7fC5_tvj)oLNi|d;9Uy2;cS~|G|QpAtxHT_t3qS> z{=3valYx{TC0^K8Y4EuPVn+`%q_SnJ^IkHeX)Oa@Jd;Md1tKE~4-?c^d1op$ID&{? z!m};`u_&((5KxXMn`aMOgckva3Qu2frWVo^+?Zb8V;ci9QF)k$J@Am}2=jD~oY*ne zDBIu;<^XL6AKKQWgA0597D>PdcS1tGm}f&W{Q`wxCu-z;*^Zu}1lds5Oo_Bd6Lt+_ z!`?$>J#yRPXP-_bz=Z)d?Arh+$gH){2S3XvN{sVYdDM(6 zRPz)h7gJnhBTU@ZxS=`)o(fYP;Ioz!S#Z!ob#X8)H(S3JBJ<&}27nhbu-^#ZB%m<` z6S08((F9&V8ts})yN3O|?;h9raGOq?xC_Z^R{>x}Ztx8A$zz8DVc9qs$#z*@qc*S) z&E>xe-qKwq_HO^($xS!_7NlXFXqUYe+i>5OC$`IpUKsLJaw~B$nu7D032Rk3qU6cA zzTj7hkMVqGR9<5@WUHXaJj@9Wv&QQqhq;ueG!^D%V$p+DHLPL#Q+F{_-xlifJn9dQ zbHl(xb@A+SP0^dS;D|b#x8kX$%f8H}$0#=x&Y8VSrm7$A3ez%7b(8WItfZhv?{Mu? z4)7phV-*?*&N-bm0CT9(BSvevX(zt1Mw`Y)c(7UaQ>IQL6S3?t(34|-^A#V&8@0gSOsWxOGM~PNRaINhG zGks1D-z;@Z3~ve?RIZ$LVE7ArL6`}psBY2K zT+uE}Lev{l$HtM0*R$y9Q(EM?RTm7^-U%XWrcgDwXun84v41Lb+3Kdy;;!9GQ97g2 zJ~)&OsRY-?`uaz^Yza4>P~Q9)~Y90|Admf+jsn&Ez}1jwg-Edh4sw z$J7F57T1!}TjrlWVVGgc3(2z$9T2l3% zzU+xCJg&yTJfuKhIcQ-)jx#jcC~=WnBN;*VN&*Hx5%HjE2=x8R;i8Vy1o)M79z(tb z`1A(xp&`E%9rmJI;OOmsMZDFek>UbLiw6_= z8QV!7Qgz&2ik8_QBF*3DnC^?hcDJq|2y5YXZfqV6q%(E@Jz3-kGTkcxZJqr400jRY z$5szm_tJ)YIDf)?i~w@^dINwi6=icH2Ek&$>#sXpMSupfnE}Qog&_m1oKRJeK!@KZBRdf6VntFK;*Yns z(q2(q8yUE{E;D#FN3s%|v$9l(o5JbvyU&2RQaJz}WV*%#soj`{FLMd)3R8|Gb#6^(uuWCb#>{3l)n8}$iSOr;GqE|$ zeB~*`DwU0-^8p&T%IhQ!`V;8q?EWy<=QfU#CyMF3348W<87~tW%lc%;0bitjDHGx- zC>lMUYB29m>PX(02n_^WPaK-mLZm&h$eld0YOCbE!B9wG8-XNEQR0u!&=%EtcMij6 z=Zf@Y&fbP9*uvpE&vc9R*hMadR}hoOaio`QRz?g%_bxT^%er%%Fz~zFzipS&Qrgtn zzJVd4*qV{SJ%ZjY5jofBrd>cBM9p2^O-=;v4){pjmE4XuP&MbPtqwA^x4O574CxQQLle;+}p0qHnQazh*d{Z;zJUxB{}Gx4d10 zlMWb7E8cB_5@6#ZC-LnUMKKDL%v=@=hE)9a{F{KQ+dvz<)HZ=mc&P2yXX!K9$UyN{ zPgJ&ZpB7}FL0Rp$PVKEPBdo61FtY=}SB}@?2*{q~g$GGQcM70e{I z8wgIiXy$<+Qq31Ja#_Jgrz%l>E^4709cttG z#0aUWE{#s(CtSD3e;n6GjBial+5h5HCuD&n&T-}XO=-oXRoT!|DWR06ab2iMQesL#>TpDAJpXD@Kf_j{YJ?&P zaLavB{d$`<^qn`B3qt%5vfYM_p8BSi$cJMV?^n8%ba_m@Lgq}d=>gSGmq-$7IRs3_ zL@tv325PRnvKq9t$JMF4KrbHE;$G%;Gi&%9Ran%GdV-U!l16~H*0M1pt7wo-D>y@? zz1yp@H8@@=e1=Db_m+d$A394mSxYiL0_$OA$5f~q`%HHHK*unQSKo5p4v^ehvUgZz z6x{X&``pySNP=Tj;l#sA(I06iQydTqvu$&jgu+UDlBO(+)84Ky~I$VotUT`cwU(?_l+CW%LVTH)A%>HzfrU} zEtWr9HwWI85@SSNw!p^mae0+;kiZvOWKT6sUCr*5ghmQ$BH#$HP576lI`^_&A*$j2 zKFPIHP6-UT0*4D1*hQaFmoMgQFVrjtJ@saWhGVJPHl!9Hf zG#Ri9Z!?F^l}_;o;#r~b*ZjTA(Bi9MfWbf>bNFVI|hl zk(KwHB{#F;povBSI()m;U+)iMCr832@F;LViR*L;VaDZcW%P53M2&MX?bNY$sh`Zx zZ~5F+3w%jS_FFzS%%aV3ug8;{c$TkKvkrrNa~5K&;6o(l41nh#jQKoq0O56U{t8yD z$n{D7t@{-lc_UwHiA*mG+OJ@nWfcZ0a!%ONpJsVBZMBib4erA^LNX~ngYlkXq7Ej$ z;N?}e=0!Zjgk2Z0zAU0(f(%)*&z0X#NMq(v1{e#>^)ed*Ds?qIvrBD}i=qU>TcOFao~Ub5dDB!QCEFZo zZO9*)Ir8FNqg%k029)9Y$R^UEj&N+ADo(4OqZske1!$G-C;wKXF<*DbFaErK?=7dk z1Axvk%y{4Bk!Z=m)r2hwer|3X9d~@61Ce zr@72#2X{5;@utozn;`2nk&7sLHUR%AS;Jpd!|cUbWJ;xDtL7&-;+MXkd$59hzL zk8pB)H6swPuzuNLzvi)DRj;gnOhCVk9RC8wAGiL$2C+;me`V=m`Lm^m^WParzDBQK z>wke^|MHqJv3?nh2pAdJ=$QT~3Z_4<{_iN*8UAt(`)5ZF=YP*Z!otGL`sb$EO&u+} zeKs^-`1s#F;$8_9M3j+=3MdjsOLScAn`ybg*6ZMdKa4IpT&XA%r#=gOG%n;eoZv`b z#kkT_v1pp$f!AwY;NYhZxzX#;Q%rOw>Le$-em(8gRo9R5uCFRP1F01 z*+!YDqE{RazK3OC@xSp+7kj*Jx?P+dLO;EqN@4`R=#7CwYrypPfR^JHv-VoYb8P$F68@v5`_axd5M$!Tnd09d)mS+i3aF{7-!b`T69QnxAOAf5V z{RQg9VD4Yc++o9(w5yK?DG9z!gqq>SMDlu~#TF=qvO)-ei{?iOnNUU|(r}JAM1sL= zguIF@D<SAhq3~xT7+_c^vAdEz^_J9vY}11wR1Ny@jF~Ad|AFg2Kdv z5+(0?h$ZpB%dGP7WOASxd`d(xx!7|8Q7qyI2F7jEyiQj^Ds~J0#r&@~6R+T_?`Jp8%xopcma>F)NSopeXUo5Sb`~m96E1;U$vC zr|u~B5zJ{zHhs>5C_OiOWJ#*;jH6n47@=QZ*OM|mJq^OsYq;MUHFcO2czb*vSzZ+Q z`}ciIg#)Y}^djoaMn`QYwq`yue85Z&+dME5NU9uSce1bK1a_gSr#w&@1pZKBylM4h z>DTLNc77*)@#O2gto!LHJDpde_6nru*SGB95~>@TtuV*DGaLUVyGtn=^Qrxve;Vxq z4`16=ZuCcZ_m4-zNvqHY1L56>fx)Cr^p_$@S>xeMuSR#`362;-wCgdX*XfEqSL+pU z)iYFKu<&OdaWP4W#}5B)wMvlU`)!4M(X{P=0ey=Axoc_wthF6d4X9qxG2!4;RkK2x zJFw%_AR6Yf8P<-|i6Qmzp}MS*IYoJT@$PG-IWw4yc8~z>5Ft^eBUFtpyjz?d+|Ku- zq!b)qj~>dk2SL2?5b#lX`q#}TM`3|%!O1+l@vyaL{N9K)*e*?61yaykMMI``wjS`dgLL@zw@hu;=h^aHd+BG??P?3mHPeyRGOqW0t<`Yf51P&+D;osjpSF6vAZQ z_GNNIJNdFgKLow|AqMB(j`L-Er#3;T45?kk@Elyl9v2Au^lJC76;9b zLA28DVrETdyL(aD9pGNPg=*XSxA@GqR?ylDF=36eN8CpLNy{n8kB42`58gKye|lidrPdDo1*$@kNWQ<2WQyP3CS-mXKw7OOfM>;o_1su4Bd3oA#}U z5AUTYirV2ZA|1GVa9KisVN)ei8rz(TRfzL{7d$8Xy6mxPd6gqkkpL$`t;VcoCKLmz z1-}@ArE@g4m|+~%S{l@rDH*1T=H%FYN!9h*nl6s$4y%E@z)$(6R;LYsjRD$vw`COk zs9P+l$Ua&NU*~G@>kF*A>w*#>sI0@5~8mGlQT-tdP%PkJtdMhn?Gv{wLDo*5UKGk$9HtL)v^QNGMx@vMu!8~ zM09QmTc8?@vlj80vNJ9G>`nm%@HBIbqvsXL^F2c%@jcdLrQ5L3aXRJc9yUp|l8=%F zDW-X49`+y~?IcDmovc|{IH_HL5#WGDLzGHOC>Ynm6C%*?8KvIhpvGw+S7lh75<3_| zxs{60&f^dn3ED@9mvFS|Urpgk9)5ct8^4j>z8i`KiuF{;K(;S)V}bfsc-8Rf`Lj|C zHfDSkyG@PN2Ci@)Wh@UxnBs9X?U}4HN@00sgQlV{3Qsv)D=jNwBS^PYEaD{Y!&>AW zT?LBUWTgQ9OODprOT72oL{42r`hhtfgpDU5dsjY=hR2Xt@~;C|_#Z5(ljhtX&dP@+ z(E~Ie$1zujs6Wc%;f9fD9{S`YV#Ek6pJ|1tBg||~YW81$U9W;O7(iQn0>9bUc3O2I?YbFXJLq+7w4y~P#r=~gE_N)C_9RYp1W1fqjE z2fiJN3^K)YYRS_LqJ>#OW;g61*hN};mu91W6THUBK%zIo1?1+FTt!c)-toM{fZZ#Q zd}J~HOS~-h#96GMTd|>wj(91Q5`FOT0z!mkxwVS+UuB4#4&J5oS%QiyCkw2&Y(JfvN*iMi{-Xb3|AUfiTeSRk_a!UYQI_*HBQbk zPX%RfPjU%fU3s*2Ys{)E8!?}RFD;dTic0XO?qhPSTTkqX>^S%;g&7GwDJF{3b?3cK z#2CbcBa*S|#c0~}S7vqZIxeBhj8#kOqFMx7%3#2lnKVF)uL0VjxSX5F`V}rJXiu~4 z=xLoH$B<)C*iuZ(S}a0&DQt8mckQS9wL&&Nd3Zglh-E=nz!#`GLo`Hd_lGz0#uy*i z*f`#yJ*UlLNmO)hnElD8(K(Y-3Cw148|<*eA%<7dRybq`SB zV{3`M(rW>9IJU$>Pc_)^Eu1{)BkH+Q+hzVB^hd#?4eeTlLY$VMld8G7Cp=Pp($k@)Oj?I@~|1 zJV%{Xx~6q0RiiRlD!df)v9cbMkQ2+bXcw6I!A~TR@AC zT?qUQCQhy(lRl7!EAh349M3zCKVrqpARbSCu2&OonPl`U!byp*804qYcGyO-_OEGG>f4`0t+$Y;%-ngNOmOifL-1G+|sYxVAd^D>=eelc6^j!8CQ zR@iAoO>NDxrzm+u)*(|6(~Q?lG0S$e$|D!MCH(Yo_u=fLneQN+->K5_tr~SJG18hy zA#p_W)xD}F?wKfsnHYy2MO$aPZ^N*U%^{PUS#yiz+^@D*_(+1UkBjuRs6;m_upsGi zEVy94VAHzVM^IHoql|s#m0r)dX>`x%QA?`kTp7$>{yW!Kt9{);EX}oJd8MOrzM~5D{%*&;)K53sCn|kfF0{9 znAML_+~krr8X-4;ZIA@p;-@d zLHxFG=zP3b?SdsW+B7?!I2peeALGl~5#d$AGbfZ6=2+QtESb*l0df7J zr0+w-*W{+UH?O8cA%BYxPMo~Di5C7ZVjb}D z72NccwXoVc#5b;K8ZxFY>E?c}HNH^u2L)=c(mhtffeLhUaIbe=s>3CN)@7Cb*PmZ& z4Wym}?Gu;a9kLPl7wT@jC=vAnO)Lfq;oz8?Re6t|_~5H4r~p7#9i5^3LWkqwd3BC- zp)Y5xQBJV z`qHz2d7}r;oY(s?Jzrh)&+CQZ%;&ZebUxtw=2P@$Eh}~xLCgh9>1iZR%-qp$h&a$~ zQU({ag%)Z^N!a6xAmW;z$@au}-z6aR%}$bQuQeCF7pEZAT$QJEk$R#@W1Bt{*v_lPmU}9?>W7H6y^U5 zJs}(0U#@aM8jTfbhr$N*$6*DMY3yu3W0-%(>9PIA&;1vd1^_Pb&!R>yz<+my;r_p9 zD_L29YqPTaWf=6A%#xktFH|gme}{kt=;8AZ5P;bKPYCQB|J@IU`~RY=Wa9?TTjd7w zc&v=TK8C+MaR5Ml1Sc~i>%Vn`;rMUXI6zOn{}Tll=RcwNM_J{+*bN|!#|WhS{u2f8 z)58w*rTHIG0RG!{a5DdkTKtDd^M8vwfwbj+eQ5u^xRZ_T?=DCGCGMQm)d7k-vA%O| zeKN->qsDQ2)Wg7WMI@ChyEfF-L1sP#q*_Il(YImzVHdPAc;LL?4lA-JkgjJ(00Zx6k)y*N?ZSHE}D?BXbu0ySyep`1m6{gFn$owFc?m+#*cH+`VrmJZ!zaZ%$tB_TH)uMXn?p zPCMq%K{umtI>|9TGP%t>5%TzYA2;;4-35U*);{f#rZ7f&^R z(TNj-PB!XN=tH|OQdEQrXLzLGHuJ1Fq)%uaZ&#T)9=7Y1T3S;??T;7dw(3wTywqM4 z94e@1hCX@@76WYDUx-32tgqNrgQR#ctb2blZrz);>S3^o17|W{Z~6x(A0(WUVJI?% z)a!bnz1#sG#DoDBqP+26)+~><#JElvw;3-A?7`3?5jFaTGHmhk=0mA-Tt5a(F=CUO z)>|2sp)ZxPV$s(l8F_d}2&0hdKN*~_QyJRvaw9Aqow)htz#oV>zDEMNM7e7+hHJRD zwX0u9vr^0@$?~no7|ud2OX3bJtv`ZwTl##z(v&=k@{fi}DOS`S-A$h%*q>$_FBMLM zQ-h(&QE+a4Er~dgq9zRojy1%N&yJukC`NJyBMT7EQUs+@UoQ5O!XvzPFtQhyu^(VK zlC-ymq3mTX1aN*%MS96ITf_aJp%@G|wtrK_U00QnprY{?^w-#-|mMK4Npsk*3WL67fG7=;a{M$YLe%l5T@HiS{Nm)l4)FpYGp;SRUqmvI(Iu%64 zi^*t?&br&m5!c9QU(fds#Hgvy1o_JqlC0b=9}Wa1At9sTUt%CjwlYPRrSbHC{BMgC zv$0wn$F`dA*F#h_C&j4Yg&79Os*XvL>!o5RCUG)H8R*-8B)?81$Ml|0ZjmF9KMCTi zmErcprpKi`C9!<(?`@RSOm9fT)y1^^Q0;~MvaARr$^Sb{o%O4Sb}XB_1_Ef|-1OB0 zrBl58_S7g;p+ZAr+322Q`6&Wms7AVdB;7uD6PZqYJl?s|b&v{+L>yXDM;avU5prlw z*9;xy2Y5VSzq65HyWiussz`K_WNL<`QxfaLV3lBphy6GOC*f$OkF zjRO+R&vO@4U|Pz{v8e}Xm&e#p%<#}#?g%kq*s+)7198O!-1Z33QWw+TVJXyp35SU* zyxm#rZimE%g=jY7VAVZQpjGMjdDvU<_g_NTlA;%MDl^c~Rz0CA+g?3tFU{-sm^l>V zJ#2j3a0o^Rc0w8X zO%)-5;qUzTt!6g4Kl zfC;YOSR&B=_)e-sTlepPVb&MCs859}ae@@>r>?KRil3l5n0CW?7sSGK$;@AFYI@YFo4$W5802IVfJG zZV(@I;3Iq|rrwbxB;k+(S4%YMyUP3P%6Dv=PWN$wobK_W6d?5(rR7_9TR_+NuNGTS zI#9j+94_2geD@ovXbuCE=K)F_d6yUrt3ndusGP&V`-i?ov*%l*donajrM7 z%xbR=`bk8i(@}Nsj&u%1zV8`s8zaela@lyxlY&65TCHh0 zWE45+r$s?i6b_k*Y6eQx9A984HyA2;+fyp<3?C|j-w(fyU^WuKMp%9kOBx1)WhQ7jRRGn^KNjiSFENQBPqgI_ET`5d=G~)w z3VqxWDp6k?i72T10Gl)X*>_%or6Uh1KwqME*06Obwj&7TwY3~?P^S)pB^IvmK)XIk z?TnYk;zN}>!a5SWqb|1iX)b_lxPogHBRKQdikb?8S`!Sz`nYG2w@ zdHQ&<5B^LQj$h~ut6vAJp!vAZ_lGW`S3(mht+Cdvmf(HYY?9mMU<`jLH=3LdP#l+`&woD3L3^-XQF>2em?Y$DD_x4T z!aifn2}(xY6G3}e`%zvLzgxQM`y5Et_wB2}Sa&er1={W{&Z=$~i8&DsMz>)yTrzZX z`Fq1@>d3I@V+*MbEw79JDfbR2$T><8HBOg=6(mt=0JmWq`m{4Gvcl~M!oca5o(Y-= z7#*Vpfoo_xGaQ0S>$y?RVLX~suWw(mh0@8yD1(DbJu@5epC!axG;&}znyhP#h|~<$ z4nCTOHCq?niMb40Cf{4i9=1Mo*xfrm{bkd~_gm8aVRo@lhZ)F)Bv&JD=01|&xd-X< z1*(Ky*?#djLICj9ce(fZ?m!Yk@~Ao<*L||-p31kxFN=o)2ekFtls(%n%MsmFmF#8o z+9q|L+MTn8$Bkl^#N^eetbg6PF>F(o!I7U!`_18^mn&KNww?yXp$ut*b;7ix!?ur%8gGnT09u`e#?Z9 z|Ll5sKf5bSTmo$2Q0o4?7;2cdC@Y-3VK`(1Xq^_~EtNRAfeyP$sTF#Nd9NkgiU@p1 zL<=81)6dmd?hC`S;g^JnE8dt1vWTXsEWA0qVA+@Jeo+hr#2{m|jjdp@%W=c;kVpoF z+f~$1AM;t_=i&LkOEWt?QG@_uXcvh!>u*Yv!NMFoehyb=`xgH}f|vK^Pvp1ARVGYv zx6LSBH?2Z$u$pUq!mXX)Em6Ia0kJoW>vRRKUpR-np<71-g(&i)^kwf`Sa;%uD% zqQjAkll3oY%730dx&At#{*N#K07l@U763G<1tMnUVrFCqI_I(g(fnIV;-3hCe+h$~ z+5NI1BFmc?8^T7v7Zw$HzV`u|f6c8>qn@5#mdj|9@cH%(AB zb8&EUHZgMn`X-Bcx=N_H8o8PQf0j_;BKaE)@t2dbgS{*8PvU=b`28D0A^`ki`mX^3 zz{vsJz>@xLoBwKBl{0d6w(`^=VF7v*v;M^s{WU)Tz`^=g>|dPDzo!NOEdM+|U{Y7E z#=OOD!@%%kpaUts<>dne4BYBB1k8*W3b-DGmYfc9WEPkd_WP?Zk@9T5>qXOu`>;D` zDS0;qvX~Nun9>rzulL(#SeoCY4faY8Oj$CKy#)lDff6O(|T3ZbT*(Y=J{K`xf^w^Zj^XT$xx;-==>w}ySh zNh^p21erE-ZKtnSoO;~4uamog@y5E5^oT*%wcpuz!GUmiSI31si$M^)l4T+^4H>1il38qElT7 zyy+j?*NJltB_gqkI5-DS2rL33K2Qsw-7^t0q^2FY?jgFU_ADD$L$MDJVKcMg^? zFYsP7_4b~G`KI|kyl+W(?g95De4sV(Lgx<{Lw8VGc|t2rpC6SYpSI#I8GB7mEGp1+ z!}D$PJfx8@{$biI)+}Sw%+9f3>V#P9Ln4V6YCqdGu|v6?a4IsH_XbBzkQ1>^CzTSL z_S14SqvPtwK(2((enD@Ulv4E}*CNCwyF@4P2n$4_K|3k`_GbJVX9`&-gKk`!WJ&fw zt@KFjwy%fur5~q9ljKk67V5p* zxkRhTH<7fE(hYn7_Jh}rqRltMk!JzUnN4}oPd4le;kc`K;ynYuz9pj1Yfl-vs?R4o=QtPeZ;HsNG*1W7=2!5-Q06vei%mvjF@wDSSaIr^8HS0uM7!3p6U59t|gQT;cxgDh1k3> zF6nle4!+~!qv__aO&3yTMjFc%%f$%O=_I>S{z92Uupn7rEZFLS@9XeY=&(j*$uV@{ zN|=-^4U)2Rc!ba{xKza9@M6&EJOafk)FjM=ax2u6Qjrv;%m_Dfi4}_}_ID!c+-!*X zk_1EAYbI&S;@M2qw7)4pN9pdz#3PVMa@j{5(wN^P^J>f-8lfG%IP; zqe|ckR1}t|rRTa&lz@2(&>#H;9s2qQJ@J_tbpAP=!{>c$uoonQ#N5C{ld4ty36cA| zA)Lkrs%a}qJG7SMOeG1}4?Qd@u;otDa3yaXGvi2l0RH$5&aa~cViK(a4MTyLGh#+r z@oc3-D;q9ETX*x&QHbC>Qt0R((dZJcm?!L43Sblpznl|6%)WxGh<*2A`$lT#1Q&8J zXLGe1yqC^SLVnIlX<8HFlCX}TjP*7>YPSuY0FA-ul`KV~xAQTkCXw+?g7vj@ZfPRT zQ{ddpw{^e#PlAsoz>eWSd4Wf6K3Z%I2?H>ubjd~q!)u9cC>Ynd7dbHgq?Gs`eMd8@ zRG}AU4${_wfYnT_oDNPmmhsEb=z9AFsp<=Na9{tF8Eu_OpIt>%hNdKC-8nM-aJ6L} zGfUZVZ$FtUuf)MR1Cge#EfEY8{Siy93q<_$&%S;ZWN{BeHSSp)dV0$$YAo529TIMb zQX({DczpF_4B!-kprpQjq>ECbJ=;8btebS#IdH!2wZ?rEe0y(4W!tt|;}O)id2s(p zj;I9`9tD077?);E%#EXY2>%5gxh;QRX-GwyMQda8ErB|e$<77!y|HWHzqe`fZ+*qN zZDRv5tsXIiEEguw93>tvVVIV5Hr~eA;pFdi{L|(K5}k@U!St+(<3(wiF-l@%#C>rQF9o)?P_WzklXgs!w5EGRKhys=f)Y?xRzXQ!z>4oj~lIA}Ui zyRfs*)z>~?76R5;n>owyqby_jz1@0qe0xIDh?_^DU z!)6<4wMjxqzF$R+3yPuFB@EZ%Pky#nMK1TcKd^g9s+s}sV5&d1re2cZ8}ls6z@Vz9 zS)D>>h-txYhH9JJSb6DW?7}o)-e9O8gw~v9anhBc{n3l(-;`RYIfzg~erYpz-N+1D zgAF2*tR;w%2)Rsgu)-8M=tM=Nij#EQbVd(X8w%w|n1t~z&Yb|M{59#C@NAI8A5ESA zP$RLpOqon{=uJExJajG-UdD4?nE(w*`U^L8E_@}$uJxW8vkQaB_Vo9cC}h;9cd2X4|XV6i+`XEQN&?c<>Dd*hbsE}IPfTJ_yiTY?r$j&_{Kl| zIm{~h=o_ZNxgl=`Q;jdKwDYZNO>EXulNKhnwh zCd_Sth<+ zu>Y~k?MLi&>bQj*tPws_H@@QrmCm`*sHOTSob-D`x`n~eicup+9Tuk}V?wuy9&O0fVJHbfD@OfmgZ+yO0I$st!Ik9K3 zLXm*UC1}rvkCg7p>ivb_m?aC4eYb_tMfTV^C=X#d z2a2kRe_&OH*H2s=?R7cI=411QW3%C*6Zu@3%{k(vtvF>uk~^r-=*-CuI>@C|Dp%r% z>k3xgp)Yrk>+~x$nh$)Q$6c7m|+AzI9oo&LakA)-EQ<8A*W zi6jvnu}|lEyc~pt6#id<tUb3Y)*IsW$L(45B(cm@!{> z>?ISZk2{g)6nWzQ=!<-*R%5U55snymV}&DBumOr6IKI5v57=PUB)pE3SEeT_Quw z4#lqC4J~GzxSA#E0gn=}8JG>N1)rD*IC>!)Q046j&r`V$#cuX(J0?0jNj%3kNrm?Z zk4o!xk5xA1-A`OCFg#ui&A$ERCQL+C~g`Mt2uznH$foXj{29_ghDTt+*b$>W5VU?G4aH;TA(wQ8GoE_5ipqV%`( z^^Tf(o#w@$r1w|@^EaODdRpxVBEe`r_I>0lK zEMF99TO4yr24IIoLB&wopl{iHNH@e!mlvqcss5(x{asmwGm_NG|}m z+Rh|p3Yv(wk!F(f9Iec8D>ZwVp;eDR6VHraM4PEDCS7WuwRkex-|e5JBkh|dQy(Z= z`LXkYX?(m~ASSXp`~x!Y=%-9Gi5wshGwjn{e(jcVdcP<@Cw_iRlw~$;>6SyZZriwa zFGYymgO9#`drmi=i=b22uRf-acD$}K;2m@vYHdzN<%iddFkPJJMO&T8A~od$M`RW) z4sYsE4|oKr@=Nt;r+ch^O~uLccT?B5)6mI}Eq34#P76=Oa|e^UhVE&^wcRz%EAwx9 zYyjH{hbT%p9ILZsX5wSnsvbh<;E_DSh6@kxE-yVQZ0V+9FPW3QNLq{TK*d}?K4ijI z%=MIQgEUTX5)I~;Y%wW&|MSR*mL~c^>SHZMr^KY!yn;3E+Daulh=;ctxl`r-L!abR zBufx+?sUw(uZN2FLeN5~g+^A^iF_TviC@l(U-%s^YOOOY+MO<`u$7Ggda(QY8QIns zsaKFU^@6MHaaRvli_XD&u9rl@FWvxIqb<*AF{YnWJu>5ilc;-zAfw>17SZLJG*4h* z)wgC3dlS`uIsOf;nF2j-`r+6akk$)>aUC;o4jeu7AgkHGZ0!@sCW&es+{;FY7deSJ zw@}I^grhc>23^3um48ini@+ISI%*~OO=b7ooz3kqDO`JF-#UV=op*1)w zB4f(bOx=?-U~j`Y%qpTCu_{GQ-@4^8+ztkRhfQ$WayL7JNJG0?P)Zt+Z#%*7xMqg& zFY#yWA;TII3O1BXN+50>dWCPfBAP$#$qb~PX4S-c=Qx%uq6zmB&5WpwE6A+JE7WfJ z9a7aPUAxH;dFGmHCbiuUG0K;sam_PZzF#~4!@rTV0YR*KltlJ@7Ip%@JD)8@ia6;y z)Sr9_`vyeyz3rszNRoQ%M&#l4a0#?_&@MVOTKa4WVYovirERh_x&Fw82fXEITFQ*k z7r$D=8l79m3`0+-sXFn1(?hrE7q_!7zFzd9r>y&w`tRH9JVIHS^j3Y$47F-uv0tKF zO|4pH^7u7HDx>Y`R@E1t#idolB*$QbR^;Gr=?~0!dL327PEIHDw&P7?E*Qy|wWxBolGf8iH8a~#JFOd4bwV3s>p3tcY^54Mr3 zK-Dx^R==ZLb)+rqpcwdkVrs&R#yj`pO6--hlbx1z7xD5>5U=3R;ydD=*OMiyb@4VQ z?A&$13*)=j@JYNIrY06~N>j+)bJJ5^Jd-DwjG>e-bvZO~U~sY8a}{XkVH&F8N7^Tb zmcWN9+OPWd?YeG)8wCQV>Re-asD``?=ju<`tC~QA=91odbb^JBJCGA0z2f@Y(TxOo=y0Ip|9FtGL z`-ii^?yGcA;E6`2;o==~=T#>gf4AP$&=VP#3xH(alcU;C~#JHs0;KRMQy-*CzxWRcO#rjq*}ma( zTKO>k@3Tl*dPCQ^9+(Qf#^}gCZ|pBL0D$lZNC5E8p)nohT$(m>Q4h_PobWKuW{515rKX^u7+b^(tE)0 zZ^0do=5tY|7C?CMv5weNw%)*s1JfWS`p=jhU<}`X#smXn9RDF^3kdk{F~A)9fPnwL z&N}KvAQ02v)>*#t+A1;Li~|-l$vWZ8_QCOR4fW#fZz+}#Zcnw4uRs5lQ>q+)e@=}= z>+N4zxC4AzZ}(w5K7N$|%c2tNcnB=?-(#qVx2F#OcMMN|j>132T>obbdYt1Sa0mV) zhG2Wj;qRr~Cc1dKG0~_K?9UPWTN$3n*S$P~dHsN87_4^!-s|E&Zec|JhwV@8b`AE{ z0tnRt*~;=$eVx%oXPuUR)FcUuZBgD-eYr#{jXa3B{&(|$ zTfFF-Lr6n6SEcboEE8Pc&TiY_?PBfUBSLSdQ!g8qV9P&SGkG+-80Edcd37XEm%!VB z>8CVWZI+!baY8WNqAPXijYY^Yz~Kb{iE^BTc{C#yK9#|(@q0SasVO{}zQ6e%KFT|C z=|_0~$(ajM_HW*j{i7cB-@jmB=i>e+W62>s8JFE*)b2{@Por2+(N}HyK z5(+{0l*zs+&_I#|fS5C^Wc^K?v(!FyNe8sQq;cq8VoVIOjq*3wX;}rq?(bK3wn{OV z^_^&&-(0-a)wBd??T2bgml~c06>1C)hK{FK-aRwbc31B1c6a4M{9f`$?W2ZTHX|=L za-*h4B)SiG{mNDQu~FafOQq=}cMJXA#AM^*x;q2}czmftl5>f}Pdj$WVJ~kX-^8q# zkiJ%lG6iT5ZTW8cMGyJHZqi&FYbgu9emos51>k(B=zg9*9f5UUr|lMsN>;Kz6gXzE zEAd6gqtQOhT81dX*dSowlX@n#w(?+?#s73Rx1%*LM8$ zXxNUxqbCZb_P*kp50U~Tdy@#{_U*!Vt0dF*O}a5(6N`)RT)mBo0f*rg$9DEg9S!W7 z;vhvTBNPVocio4v@NE?mmFj1=mW4$JC(g{Bt!4Z)5Wo!9KPkF($p0pwth5(W7d5|O zF<*=>!<5L#14^C)gK7FHfkBNQd$fD?^(CkwYFmmKN12cuWUYVTWUa-(0UUBDq;{29966!uQ2v2Hua9FV0Eb3<3?OpPj-SH%I5$I{Yq2}RMJ^G!2dcD0kl!IhWm zN&&!Wc;sp)l)oQx<`WalN%-50LZX8kvD>i1DskVob-xTTB zZI1neqe6DDM=Rgr%hFyuZl;@5F>y7l{6m{ky5>!ep=uaw4cb6M)(d9Wb4t(A+?%Vx zdG`nQ4qAU+Fz@jxqEbE_U&~UL&{tqxC!UoK7dt`6=aQ_^v9B1xwwfrk^)OB+0RQ5^oic zaLNT#Ta^0}k>4Tk?fTGdu^G1(q4CyD?F7-|CoSSbR@{Gzxc}@QjM80u*622wOK_cA z+2$$`#UiqskxAGzJHp?LOLAzr!MN?Ph_o$@DHX77OqoK?b~RQIL*g0A^CTaFab-Q6 zP3)C%Ul&=+pzJ_RHFa}t~{3&uGjsuRSbmA;R> zRZN9&Q67LBw+VG*;YZO)_X)l^YF*G5d))fjrDP@TzS7OPg)F81XfQFD^wTVdZB_}? zi%Xqng#anbMTv)M*NpNZApyy_@8{$M_E8(3O2I;K?cP$h9M#dRyjX;T!E2 zWUaeD)t-B54I!COb&ZE=8EBnUZ$gr5tfHbYq7^x9IH;&SFx;jr5}C08Yuj?V* z>OwP~mqa^-C*vjU*PrF0yec+?Ffg@_o{(R&gyqX+OU z59tyIM=dXF;4}{zObJv@N_BAw>?tCH$pN^uNVBUi4&XJqstlo_o>4J&&A4&)JQ@gs zry#UE>Q7CgYqhcaG<|E~Z84q7T7z{AP- zQK!+CCbBs}Gtqlttzh)*gb1a=ir0T7`wUVRJ2KpAQFB$z&PNN*(!THnQP1Fl30R?M zblNLk3kIwQ2!H1)!P4dp;)kiui5KP}V&;|1wb||7?XK#$%GPEa*0uYLl5m5|4-7&P zhH~lr=4nG>nvYN{1>rJGSNG6gQ?LDFi&rDcD;}XRVb#U#+z4iGNt5^}W4` zVYk@CR#y0#{d7i_f-6NTv?BIS&9o9+G3*{v2#vO7k?vLzR+;XBR#1Izs201^ZV- zZM_{Q;8P2EbyI7cSNJ3A?A&?!_g;7>e^(4gFVauEXw^|);fA63vsY0LbM2m1Su&=U z#LMi7V%|8W*1$Gu0N5q@`Uka0ahxTy(fVz^-7ZazUDzAiOa_1X3XX2*MoIieb!X&@ z;uo>zUXM(L!r$~4l5toqCDv6%*cGS(Z0zO1JGg>;tYW5LD*Py~&7vu4YpK?qDyvJU zf}7(V3^9D608 zfBn!-)^uJKsX|#~{3*{3ONr5N*F6pQfNO%qn_uByncIYo8#5kM$9xYyEX?{2%M&Bf+LTzR#}aUgk}mb10{ zQGLrw7f~fU3el70(WPK|BT}hsP)5RdMiWw>9au%M?MFx=J&0WRlf4)1Fc~;MzAmkC zZA80rKxj@uvQo{9&ge<)6$~yvVw{Y273fvb`oJ37sRgNe0~^i&3l$y9^FbsI9uvVS zZ340tK{GlJ#x&5R2zrCA;)Ih&`wVc=CR9vM=~d0gw3%Q`+4@L4qLlTs+w8q6(xXuthv4zrMe! zRSgbc=%f=4ZnB|8Vtmo3BShyNEb(&M{IKPnG#!}Q+3z4nrKbZA#CkGSaNHC(Fv>4? z{cWLJrVQHtfh4jAT?p>(fT7C8jHt2@odmgTv(L3<0FD0D$J~s?cR*4(NCSgQD$zb? zf1nl;H2T$=Z-J$|wzSlApE9B7)?3gz2L%$Elzhx2NjwMNX*m91py2cf$)o0sMA*gQPCHFC??|tizZgc?`SfpG^>wc&qZZ$wa4kWxs%q5 zIA+3uPEvaGXU4`a_IwK(NXvaBenbPpM?2Hew1}&+mVH`ykR^aO zJeg?8w=>t1_NeHF#^?e=Xnql+TVs7Q&Ls29$?5qh|1Acv7HTR=8pdrV8GFaCv4tdD0BLyjzv{?Or;s@4ScXIvRV9D)ZM9YIz9qbeY{8Xiqo{uF--J%L2__lH=_`n zI(i6*o9cxf;`77!7<&3je!3Z`5P@Aem^IXQC4#i4;Uass+Em?xsk>TcqdV7XVo)6; z3W!IOSZJA{kO2o;;0-hKjYig_IzfD)-Y#Yl(c%)ShEkZ?6iJ^F zv|I5dk%Dwn3=K)d3qf&Z=u07wUd6(N)DZY<{qrA zbN|;Z^^x~Its{(lZ`zu@4jU?iQTB6*@B&0L<$GF^xTy}BO_CjmaJhpHv<)4NWKrtc z^k&7!GA{vM7eR5jxfa76V^W7Jas%m%NX_j+l=j8U59dO$fR?;O>=n;hSB8zOzzLp~ zh9^FDJ0vP<0jml2r8Ok!jr^aqV8SVD9wXkW&;fGzBwU2bVV`K6X&57@WHPU}vP1Zk z%h>dnKIE%E&tWsT?sD?vn7Pn!K6|#-V5O)gxFl5T{ug_16&%-^W$TKWnJi{zW@bi< znVH$LnAt*$*XkN&a8TL&u(m|+Q z6LW_^;Pk2(MW0!ghqb9&!@-68no#g{F+9;n<$ozRq}`?LzKoladW>QF<-oe_K#oY3N08-fJ$>2W5crP%_Yl!~ zS3=iQWo^d^EoE%c-y?Qgf~SrTYDyI-!LF6wphiLrh4Yr7Rs8+sGP|-#v91Eh``dbp z=Gf_Zv|e;$rG@7KWZbdH? zUgti+p*${+b1~Jxm@UKLH1{pbs42W3xu=B>j&{&T^Vqy_sF9gpSr`f1L*Z|k%8`6k z!h{o*)k430pvc1LF zSU^tv(+da_Gy@;>t|ui8iMo27*RFUzV<(oue3w=zxkU|UClqjvSiUU!Mk$|*1DfEC z3?@<`IG;^t8M(0ry$!`?%C`k4yO2O+Iu;HKZM3}QaEqotCoywVW($YEZX`@Ixm&1e za^ob3V5Mc3m9=RKKugzVHuVi-pq~Zlt?Fn(Qm_|Yyb*xN}&8fk6vacT=g_IwNp!Lag zn3Y71KXDfz0+OwGeYW)Xw$9$cHWGF?H7d_r)tJdlV)c0gj0(7EWg}(EXXCL#yTZaDsqW!9!N%*afxOjgL`)eQC_VocA;^s=P9le@&QX z0Jqzq{WV?N)Wp$B@K)_Mo*?#k88?9NoUvxTv9(>KgN=|KupiCN^_Tu@);}!Fe_Ksw z1DM(W+iE&1+n=Ds|8%4On~iLC0Ob;JU4R*!lZB88kh8To1+`AlP5D;tIWWPiDRpYKMvAnNMUOh% zVkg8z-yAA#BX~M*N$#|Dj@FddsHF`;su2*A7-*AUizH(xZ8Jw*0xl%Q=5iVvdtyU+ z9o&4Ut?imAG!JXXLv64A*?w<+`dJ?=pUSp3m91-;dVD(WPm2tuozxjiRV&X5m}jvm z484T?pQbw1aRXN@02;|?3d6^%z{)GcAu@=!(!1E&wY$yH385K4_` z8DVhOdhelMr}T0PM%GB@w7uo$+7uu)sL^1|zb@9_|9JPXlFGQQ`*Dh80HjLhit#RLJPb3<&refg7YXVZ(Bx%FKJQqB zV^ZF*mT39CIQb}q*-s3z<9NE(uUS_Pjt^#@D0Is_^H1=dV3>_P`Zoyvpr4Jr;h3K1 zQB>Hb0ktqIxh)dZ+(r)a&}43buN2ZupS4jK`^?VLZ2Rh;_Z2N8ml4MdALQAaUp*T(H4K@-U zJ64Zh#bqd%&Z#Gf+Y(wjr5OcT=8UUi^Rl8qr;#G!CG0uItzf*IVcCpA_S{vVm>#X` zz$lvt;Rw)4jeMDn^5~8&pC%&0?r$8(J^dj(eKLvP*-VN%Cir#fknB*dj|9cnP1tnO z(-!4k5n7&MdngY#j9jx!7&Z3=S2lD~H<;s{8f z37B@Fb0S6+^FgSKvl?bbyFm-Um3)T#bZmO|)KOJ+VRQ8_33Fe?({77-s?%^%R`;(C zFn!eMx!(5i>XPsxMk@n3a!iH<)Lt%~W?FaEayBVYgN>BY`6bk1g0`?`#r!N{2|z1w zh&7!$e=FQl99*Sf?bbt?SnW;~PAyoO5V?fJiJYVD{0=MB9Da{b?gCBN!YaF<=#QpM zu57ancDjhetyVYH_1SbCb5UYfTWPI`0)ql>{}oM}PF&U}lw7)GdmC34w&enU#6T62E2bUJG)hbhdS zV>8}#1UtHuOJ%+Hz;i-vmfTcQ*3VNL{7Yn#5KaSEaiy^r93 zHy*zB{8&BVoE6M|uqAq3b6{mENyW!KkTq(wwBhMnTH zSe+rVG}1T?Eq2%MtjSe^*tdfG$P@!}X9Jx(1@U}{gJuPD5+hPGr`$s(u>8xasezW9 zpBNuizBs<9(F~tuw~S2zkYisgwFbOdPpTxlY`Vt+q5})*Ktf8u`p3N*vYH*QRYwCAsWBzDYZ zM`cH6eL0rbS{la^2Kx(USGZ$ zv7vcgJ#Ds8p4h|*C!8UhT!hz-=VE?u?yayhGd)cJ@x=xiY!xAO$*UAz8uEE6GIT=u z7oA7YN0>(Ouab@I6q8hwQf>u7*pe$6K(1BY5#I*ev!EBfZ$Tl;BpzQu4kUL!ktvu~ zQzoU_9KU(zU0fugcNtVPIoe1aP_l7^h1qlM9t8?nq2VOa6n@+tey<99VJ3`&`9Vl5k& z&TQJ&%RsQOM36;xr_KF(>Le|0Fr8JPr#*uAuVq!9@W`|d=?#*+_v}@MFdlobe9Ba4 z5emx{>D}23cf;e^#^<%OTuW*6LC`6Xs4zd9(sCxND0A^^g@POug}&4h3O`wy83yP~ z`RcuGDhI>41xQM4eiy;27%nswOrvZLPBC{EO+5_}#YgpSs`P>slm~wcX={!?3=I!{ zN=FIPzANdMSPOWKeKaHv1&2{3XLsbG3o?mY?T5b5$I z$v#J*kwIgxO7)nZ_)^OM`IfO8gTg;kf&Jy2w){91G%6poIivuoh?kscuLtbGELUof zlMwB}A$8f=M-OlH_^noqg%X$8Cxb0W0EP2Kf80=uhVU-;7jx|_A1jSC8S0&4+~dA& zVI+1aQ1gR&rx?9zh=i3HH+PM8^l+~n%Qxax9);-vEx|nGAHhvmCZ3_&RMlq!5Q^|D zQyJ;(@Jo)r)TD&IMc*Bpwak0Gkr8icR{n@vd4SBk4?>^nC6}X#0Sk&eW2jm#?CZyW zwMl2jG2OxQ!p1X8!ZYw`tr2Y-JEgjq<+}j6U}m{F7|;gzQ)-0QEZ3K^DPhQtJi!8 zNJ|3SWCiP*?$Or!?M&1YfduPTlEyUjFd|jUZr91cC~l~~lv{I#>53{J62!nb*qZ}6 z-Yr`qaE1kh`Te;J1-;S~QG_%4<%zo>r(hJF^sqz@ecr--!%GyU)iq|z$TcnSJ4PJp zw^~GOUeZPqbxsqclC)^@aOrSxe4p!U!(H0@C}OZ7+fl(|_Zo4{GGfpX>xY=DvDbud zyv{473wT^ma3vQDwyiQdzATBuiOXH}`tq;ISp01#5L&PNy%qIJ=x$uqxBy#KmWsjc zGy;nFA^L0NNyyjy&}O93y#C6uHMWKAR#9wgly?)al?uyCoW|bCf}QOjS9SCRU`vV3 z_9ehSd^Ub)KhA>HjWYLnsz?R%E-E~Sq@z_62t|rkm5{K?Iw#YOwvr}araR^~N0nI& z$qC6&@|+Kxrn4a?wch1`1Ct$De|i8Jsi`Q3fWC$ZyQUIKoLK~^UOA3 z3awaApZ2+Rn7g$QST5DYxouUN6S3}<(^(<~%sM%O%e;rsi(|f8q?V}dac(>uUd#S= z=|PMWE&|DtB{fm))Y3eTk7A85W{n)8?HGw~Nox{iN`u>T)MT0a&!gq%B(Emj72Zd*7y39I1fOqq1YpiMWgoH(5GF zZf(WI%<=BIlWfC!V+bWIB=nu*y{;u4dW5N zS|ifQ>t^H7xmxynYkrl3knAI8SKC`UXei9yjT_1@cAL(pddCXt3f#{qJCCzO8nZ~tdpFa5IHIP-05 z{7w*rJ?qeLqmZ~(F;b7-gu5@B2ojjRB&0tlC82mFYLM~}w8}emCndin_SCO^&L$yT znF)i{pTWVOJqFOvb;^ZJuEC~@Qf@q0nW;1_9gSo@uEJ&gm`i(VCjmX~oC}G8iyHTI ztTPk7T#xy1ifr~@13maCAB1Qr%O_c&qio*tcaR!#K<_O)OL3eH^;>VV2~iRnrML)I z;_+#K93BT+R(?lvn%yvpxbQkc2>Y&@+H#xQjv;JL4?W5OlIgtbF6BI_h|-o++2qsYH}H^#XSi(R72A;pL^#mY!F6A>li`fRlEc zS79b>zLZ1cTFRH%=SQ7&6lwj&fVfWDG}Dq5&x;#gNQGUH_BE|Z?R}$AZhIuv)zP;b zu=tWo_tt-&R3UwY!+7Z(HX)FfJRO}imNSyyc8%6x{R_SH{P)V0g&jkROPa)Bl7xI> z(2Vbsu(QedwOiG$#bl6__%ZAR;H$=;s6m=d?32?o_*DIMo!PtnOrikZ5+pUoD!qxB zN|FzS2!8OLE1rRIXgE7%+ML{_Q#+0y2YraOtEVx5-rkLTmne;TQME(^{7cS)tUJyz zFluP3XVenHQwq}e+hbK>@$)M+LK$RZey%FP7+&;Y@q_k~%Cza0xdL%97r9?)Ng*3h z-978%L^R7?=(%{@W^U96x;_+}Atq&_UIo^Nt>HhBN6#J7D(&6Gsa<1L{RM(g0^cKO z-Ge(Q;FI^}yM;H@TSb@7Y$1Z=Vwbtj1bUb%E%L;%T<5jZ@XeMp8LMPt+mnyUFWOV% z(x&&1UI}!acbM6_`AuQp?X7LB_vP~;QY1&ZOu#i%Pcxuht%V&|mbLOKxa02h@d?&cKUtpe_-3_Kym6CYxF)?$W^)&ItzSty ziEUkEuVjk{zQd>l;T78k&K&p<5fSe$TQDL*hw~B;|gs=qase zwR$r(4*$9osD6*SB7uIlTt_5+&7XQP{&ucQ9~VVe^KRp&hqfC{#7PQj7<oSVp{fTsAUA>}!elim4HtY#uee8BJ3EygULr=sV1@oMnH z)G(hM@caXydx3aV)gjr(^@8|EY;Blm<3*uks_#F>6VbC&xA_43&r?%RXTI&Uw0!Pj(>9F}s zKxO&X%i0_=q~q#*FZw$O=h8N(`A( z0&rf)IM=D$I;82V`(jE@UE2+jO6Qv1y2&|)>;WHf$juZxEl;D6Q)D-LaORehpc(`yH z&$F$Fup+mZ5-p(Nc({??oL9IJ@^E~PH8W||+RLbs8wPU+x$v5qOh)2lKr7vJ&AqE$=3Bl0B<5NAeQXz>IXd(~aB~82W!1gV z{%A{$la)%&vunpqut4BK2ZvY{^6_f|yCyU}F`Xr9-BXF3B^Pnu)?exspK=YpLSkM| zHRe&}w8Z;%dJA@OOMnj~*E5>q!(~f%QJJWBVy<75=kc@WyISl&7aRXbl>VD;^iSlg z|8cRA>F=2ne@$8VPgDZeA5=^L?*Sk;{uwLtAE*RIdO(H^(;v)+KUfKjT`%^@&Y0nmu z{^$Ga^UT+yx-Mnd(#NIC!=drq$@XvAuyGhx8DKglpj*qNL^6KKd7pk&atJo1I>M-P z*2K6^oi+_l^NJz29*^-DDMy?=#VThyIVL&I(DuSr6+`*A~cFX%l zGvbJ35g}~w3g!ZbuXn>9QA20!e~o4=Zrv74o{n$FDG;nT4T^9fyC2k8U$^iC2G4039lm0g}ZP$KgEu?%) zx*09$&}B^`h&LO;5VW)d$tFXQ?hc@!$C4T~d9hs}B^OoAl2OMmKf;Nv0mP>nglk@T zXIt5Kj%XaFV-jk~&)a9@8LV2gw+fN9zD$?cfggGJl91A2&|;jB?Pl8%gm=(8>E-CG zlQ6f>FFM$qVzKC~LpAKEf}2M3Q>dmvIx@@?216R_aD7PH*%MS@_%x3z>?}eONDzcK znygSizQ|wMq)_QAwYE6D>fD!rWE_9p_)gd@FEp{Nj_p5roFk!efJvhF$6IToF8H0D zC8`Lo^P|y&vM`ooR&iPa#r#0vz(f5sZ-WGMH$hUMIBD;pf7?^bP@V2Wu$qbjdj*#X zKYZm?XN#sW0T0pz$`j$s+DH{321o(Y5^eDGITVSL(jQkls1?OT8k<-dpaPJDvOhza z_YlzT=`D3>t+{^ExI(POOXG)3|w~& zUtRIrF3r8}0PDqp_SA3Cl$~S_tHW#h<}O{>oWrd;@C*;=VqH?$+i}dzP~aQg_m6z| zI|jim`oi)^P#}p(qd6LOEr(2KPMl?qnlVs$SO-c|>6HehbW{lwonHao1M*7{7|x6P zS`dPa71APW?p>ygFIJytu!O1RxGL;#8 zdbsG#f9}pcs(3**qPw3B@|oqb*4wmq8CFWFv->%H;k+{f!n%jHiAQtfenI8bVXEWM zfO(wCPg4u=c=!_KaKG3_$eh@CYN!DY!Sa)sW7@@lSF}ui8giNonZUGKx5t+`D%ofk z&it{az$?C?uYen(z>&N&pW80z(d06d!KCvJU2l-@EGwK2qi@RDxpC6!rmR?)%8W^0lcUtESt%TDlF)%?3 z<+i>2W@-bZ9|u&8(h*SRp}LB8k}x<>B-g{A4~&MsP+}uSyqebytndSr|3xtc!8Vz; znMyw`KhI{({1&B(v2aeEaC$}jLwpI?Ii;uMMSa7RF%<=2uy3e7-sOr1NS3!LhVLq> zRgMEG?VWZ87;-L~Tyoq@_mY>y`gHxL`7#4o)1>of_>Kmy=G61k#Lh>~o9C@F7=fKn z+IeUOU+uf4#1}E+O(6X1^&a;N&BLV20LW^w7y`S&m(qTY=PJgo)%@q>ErGEo1OVlr zOlG_ENnpX=j`%N**MEa5VgW#l{~#uD05Zs!{|sgW5R2G30SM(kC_jG@%=X8@^|w*k zKTkws`v;0M=by*ke@ut|$tlmm2)H7Em;?Yv0m@)y{sZL9#=!=lI{#G_9RI*BX8+>? zfL~Q{adI_wQ8aWiwR0h4W&a0)GUuOxa{r%&@riZM6xgFbI za-5j})&AYRUp!rxnErl<`qu+HCbs`da_-QQ0g#-LI$@{%Q?*AxzB=mb*dc>mvB)Xr zOOY0Yl0ts{Dg|aDU08zkEY)$x;bulQ6eG4;*5QOOnV@r%@i^XeLZIf#G$O&)?zJFL zcIw0GZ2YuNK>tJkweM19$v;~mlDR5UY=xkl!MgRnZEUF0>m4UXLE-nM9fcwEd!3FT z2-OFhy5N56&n~~<+BGhGH=cKAgv>h89*5a;hxHVoP2>b@aB-_2+le&mk7fo2t-bcW z^ZKT1zc@A~521Fd7=4z`Gq*7XTzIAeFczy-w}KzSra(~$;p&bR1aVwdiLsFEzSl*f z9yM`ZcqlDJ{&L&;$$;UCw1wS+k}F7l)T7%miRq{yx}dh6IK%y8hBvk)%D^G$w9Y|q zkCYml=^-Y^;t2!IrPP*<`nT~-c&_pts?DcJjRV=bwpAfMZ&o(hs%+OXIAz2NL$7E zsHR2pqiyr(ct$+mnDIo=Cg6FPBK`g%b*43#pf7;E!fy`TQkGw>0(O_7(e{Jj!kW`` z5$vTZP##c@i;@j2IfJvPCftH{Qqx8%S+jK-sNb;EcBavs`X!l*GL(P?%7U(`MzjPa zvzXV4juO2c=6J(Ox2%+Mb}(k+dTVKY*Ao&T`&BcqAz9&|NVQgr@RIGQf|f2U_~4;4 zq{+4Kd4|U`$PhJI4fONUnkMof4ZgpsJP{P&3c)L>6%gXEnu}}3C209VV#rWT#pTAy zL#u>XLpL!*hxO?X6$m}(Xl}z zI2>2RUuKiSr4=d~MGRza*{8{Uzd3}m!ueHgz`TZh2NW&~yaaRCNGcqToYeQbwPcqT zXQDfnek^sDSJQAkF8qzoO0)}{H&Ezdaw3b|!YKmk3!k=jA*ayIU|xy|@4Xs>d2A#_ z;84^wYb;v?X7dvTB9QKS=1IBLl?~jhm6~h~tv8GkFg)F^N8J$cc@Z6dPzmHAu!yA9 z;6ALTsHDH%G6<`_O-bn;MmKA36w&?&6u9Z~T#M!0jA^g(D+;&v2$(%6_1pF)3R}UZ z$SK#)YfpwlV^+|X7cccFvl4+QV|ro^Co~4G&ChvTEJmvlR1L)U#^;VqN#v!hI8QduH~rb)6dTpN396voQqbh=zIbJ3?% z#3gy@=Xmz{UIzy4gKMffP4Rv9>~fMD+2b=Llw||jr=CF(velltw)}5oc|Vhz7WnA2-G9k~mDfU#PT9LcSymlv-yi-@*5)^)aJL=GjYIpDI z2j0cPjY_udJ)1F~&wYtv79~s%Ih9LkSo}X;E4kx}L5W7uGTWO%Axc5U`IJr+ zX6x`j+%-Gsn|0Y4($`te2yWKpEsKEuiKI;V;|LRqn<}n2l|9E#kdWJCl_NUcCNmfT zGh9{v=97TlJiFwTQCc`qw~wL!d`C&l=E{JH6KEs_3WEgOK6=z>$A9kb{r2MNbPzZ; z6}-0J_ckxS3Br7tqXTwV`}~gnjas4kQa7K^3lmY{S52Hro>pt1OO;v9>xT91t9$gi zmmG_s?l?fC+V}U!H4J+=xaF$se3hD=a<|*3*yG-l&4$*uc&t^(A43ptZ82zkE^uUl zi++SI33RYqqg@x;Da9ThQu){znk}RN&B9dmQ`c+3iA2<~!(Xb??iEdRRr4W<2{Iv! zBu~yxuB;vtQL3~M#@TYZ`+@1N)iW%y%S#xZj1`)GX}Kh>07)>~BoVr5^#X555dQ)C z^v(G3FP=00jTh#BzK#ETo6P^V@&DV#|8E=rzis^gw(&nW>@@FFY-+N6roYopqI;Uhe zfm3F&GsuCy3;dKf&s?_LkeX$6TZ=5hte4f!9Ilm~nH=%VcXrOYKBJeE`T-Q2{NqGc zStkDe93=8x|7x$kY;4U(HS)4cfU5$~z|!0GXH#e()^*8Oc1}hlB0lSKO`P5sdO1CN z=Pbb9e*K1~EcjqU0M~SN0g9U&s^^FUuud9Cn;5g0f zF8Q`C$mifM1E{wY4Cn#M)I=o{p2;mWhhKuAQnc3w{C(n!fc#>O5aPjW_c(9#o z2C$ie=SBn}7(#M9d)+efst2CP9ibN8zee8lL0`ahEZ_cq@gS$J}wF21REM9$Q|Z8o_n$=jqF|=>z-L%gHWH+rRTHB zx?Y>d!=q}Kz0{P)C;I)9GDv|@IC!`ZiX>3fRQQyTg~kGa0DuXAu0?@RB96uw)5kG9 z`lu{%hKI}I3;V(D=)^TvEVzSc&*`Je&|M_I~gczs@PJBF*1Fbp8=?Yyc zYlJepHRXJrk^zKJB6dl+r)KM<(CWPbXf*?nbNf?Zi^T z)PAwY;5M1S=5ay;cT%wAjrQFo03Ygt|3;i)a&jvWqO&(OK(7n9&Pu?Qo0aDB6U68` zD_pivEspF9W*-@pm4eU}m%Sq`)3-HEPEL4Agpjuzpd}Oc76%Up!#K|xcTD)uEr>zt zjX@J&3O~3{1|?qc;VUqIYAj1eB5^H9gT*7d@y@2waSI23-EXNHQOyPl$_w#ADK@9R zCf+gzC=$r@VIorjh!GULaa-i{tD(*PsGX#GJDj>oNPfrQtvHwNd$VdD37d| z<4XVFD0bc??FJif0{cQpZ@UeI_^=>6vrZ^FBe{1F0CvjjagQcH{|MJ!XO&)(C4W-5 z+fCtm>vexx$iyZo1Wj|*(OR-(UYF=txS|#(JH5*3Q~ip`jo2xtH}1EbO!Vv?KZJJ? zqWx_%4=+wL$|<2GK~Gj2yWU9|u=qP#D~L@Xbl=?j{i_lqYzauS;)|lW>IiOpYZ`%L zZ#r$csz4%0!-Q>gtN7j=E+cjxHPazK`OCA5Y~D!z<@>N`c#la2q=g=FWV3?vWR$mX zV;8DDJ$Uk6p+KJv3uBEX^Dn+C9*e1Z#PhTk%TqDW)&Rd=W2gi>M3eU~Sz1IwoSLU2 zjs`wp4&?+x@2qZs42O>D1WTKMk)-&=1ariHalNo)L)`j|TBxf5#xz~-2WsVv zwRb=hk!9`ZzsuFSsaw;2TOL|D4zS@EO>F><BK?=hu?w(XtBVO_%L zb7Ox~QN%$jAA^3KTAb)I=C9^vP8B%S2XO%lC`wT%KQ3UuO#tp=Dz+{Y!Xw6KWY>Ta)zg09go|@iin$a(i#b zOE_eo1v~pRxbE#4;mct#LFfmpdphcTUed=cQP1|k?e&<1xGa=>J!GN=kui(xd2C%rN|Kn(2gCjh$f%_Wfv-;!TR#S6%fQ1 z_e{ZVGqJui<)}-ZuI(cLB)CD`pBAd2JG{lEih2Au`Bqf7(ld3x?O()8Gi;-ld-6sR(yGC2K z>Px3F*CgzM*@m)EM%PgpA4y`yykFD|f2v!0%EFnhhE>wr{HsTd5=t{92O>)(J zAxs{&$4$$JnfGeC%@fn9&ud*#pU|9ycl=hj7Qy8@r>FH!m(PtHGilfA6{Ga?OR-E- z)QLy+vxFhHqM0Co27CI zleaUP2EDm_tb3pp9x_->QPYF+5$$px$0rC;KEvb0PZl8xxk2cOa-hwOmE&-le- zZ@u27hR}DPuR*FtwQ0-Y+l4h}x0Egec|ZJoIug&B#)^9Mf@+kt&6C%5>o_M3F-{`W z#rapJr`XJ6tTnBzPjX7d1@3ELIte!Cnj`d{>!+HAAICSSuE|xl{kQZ*4dg{m)RG;m zy-NHHGfi)+U%^iqrj))Y<|9xZiZzG9B1-uoG7Hb!j=uazQ0y z($IyWCiWPK1_iqT+`?8&kQC=NoTgec4u3LAy4vSA{jplku#jmL)Q;IqEuCe=P%xCn zqiuxkKsE0x%H8T=^YPfWi~LeeG9Xk<7tK|_#r_MqrruH9>*n>#GF^*3BD?>^8mMT? z<(#vDVtYfNU8+Cv%UdCkDar9iKM78u!l z%muWD@lihNmIlqt2_;8^`q+e~%=4(LA1S6rSCv$)VcxQ;w2{zDZm1;*yxE3g5VWkz zX$QnqO9K=I^OT2*bktMUE1`*cgRC`6<87Hq2t=dy)_WHBA*dg`l1XL(ck#VmJx%>1 zvWU~nh$y%E4;xvVq=N_oOHKm0thBId7V||F8Wd*e7`-XaJw{dxSz6H%CpT$PH3y0b zXpp0P^X^Ka-U~U6Siz82A)mXtQkIf;*@( zF(iy@heY;l;-xL4z$Z@QMLx%4uHq9zQZH}fMA!+UaMf*XvOjL~iki!1%3%E(Yaq;* z{4lT>bO8@03L=v&x>g?7-(2JOJ78ifcMDOYYpz%ldIhOL{ZC0T7B*gZ2ypoVFdykF zE93~tzePhIrHO2r8CSs+Mn+SzE`zBOX7QqKx>^r3+rq z{($H#Y-ws~6Wzd#357xN(iiE-egw3-ROpe0A>-~YaX@eds_y6ai$pCGmg{%_#JOS& zKGb}6Bpp`S>PATu-KBxji3e&~+qoLU`p}s3TtZXV^29QJmvUT-U7Xz_|F{}%(`xkJ zKtA7hl=O0<+gI|8;Y8}SZi`#w-Wt6yVifi4J~TIs{G3$F$=%fJOSR*2i8)W3oSI#xp=mX>nG*T(xePdX=k^9T{XuFhaVE}1 za90s>kI&1}Il>TA^=P)~fD^|MoptmdOje)&kFrv~G9X-3Of$)_5|U-wr9_&Jo`2IQ zI)ESyf%3G#j(hPIM%u)YG-J%LLFxk{k_gY~{PU?lkMd!=Mo&Kf2s-2Ew@jSG4#DXY z=P$ddyBNNkL>f5f$u}ECQ-FsV!h5@%*n#sC-jhBrXdW%k1it)g6HWB%xH|~kFMb>C z^W}CIh}CZU6J$OocRFv(12hli#`GA8>Pf9swwq>Jq53g&>y0=bwM(FheEGpjlj0*oWzknG*1Moc|D_Z9VTrwNmo1BOVjeaTamzUldh@q&HWC z-RymLo?Y56ztr}0;6G!MA9NNo*bL}q zpYqwu1-+z;Fp;qPsokMr=O^HS+EV$MGYA24)1N*Yarr;Udx270>6vOQePsX zuHaPm`vi2^5xWnfyFlRCe*Tn<%w6ueDg}uyi~d+_tcw$BEk+Xi7oW^Ik*`Lplb~Hu zR@pz&{A)*vn|`{VQcXp0FWpKn16fqSn=nZ)jj>5{OI2G|XY|h!y$FbZ&FB2*^Eu{! z;{*C1pU*M>VT}D33MUI7$()^&keP)AU`--qW#pg-B*Qba0g~4_{z~Cw{xgm2Kcz*M zegM@=10MS71ECRgxASd) z`3~i2598wX!*|>c$Ai2r*InxI;x&bVUw-*c|LmqXg#qKLUth12Go)V9m;uK9&yaIy zawCRld}J8IsDNs5C_AIbro*%TY6o+7TW@!3y|&1Cqo%ZIyTD?Z zH61Eb+aIS7)_Z<;J`xr6ewsL!^seCkST>tF8%mggZT1-vwUh5p#Ax_@-I7JN{CG!L z#t|6Cu_#pBMGB=n0`1J}anx(#vk^Be`I$u06I&-3l=f~$`GEU3`#CMv5o&AM5yE@n zT~ck;M?yFR%1kxk8m(==L9KDSqMm}(BK1=8^{^=$h}dZ35&GNMM9x}CR&>25xdT@C z_IXJtw{8a~+jyNL2@5*xVaH`?ka=j!_`F)(^(hmqr_CnCCPpMZ6MI1kr@1smJl46b z!vhf|4ze^QYsPe&bS%G}V6QSbe4MaU)dX)0sheRLIZ)pR{PH?Tq5Ei-QKWSn`2xuf z(w7@qX}fr{ZazPQAPi_J24;AKTx}Sk{0w_Ln}p~Bis)Tuqg(Qi0Bqkzp~5ClIhK=d z)HiBOesM%}-q^U{^+>VNg1cFVP#i*Xg>I&v+$TMxTgBS*6epLBEeu7~(Th&rES-$@44TnL4{HfM6{NL$$w;e?lFT>l9Qg??KF>xK( z*_q8%%moXYh0TY%C+L(1 zk3>LOxA#%>@&aCAl={tRrO30QBFpyF0zRP zS!h_T)U}5{Lqh#Df26FEd8(qu3bWvC$#P;coPZE$hIAxq0r%1E^F}$sFg0h}|4q%b z9Qq;JLak1=o~|)~=A-r?m@=9{wMjuihx29S#R^B>O$u!^Ma?QvNel*WahWm>`D{gjDm{1O~8Vs z7mbuSkBoKV;Y>{CC46~OE68X$Qr1$7S1BFj8Ae@Ia^LtoO4ph<)9twwCin|}m?izDBEE`qU z^IEJqNuI(*sL&|fmmSGBUr-%F2k`3Sl4@K9aD|JqveTg^Xi;Fmgu-5t!3}<5LGeZS zXh)q#GTt=5VFbdWGO(hwf)}V5y&&*Ta@VheTGNg!VkuD>?&_H)gHp62 zE%;7U4lJp`W2cnc6re5CrbVr=j^F&+dpl%RjKQxfw$Pho?5BmP7O5t^=LOfw6ILe0 zFzxeTm7`Se^Fe0NLc7V z)Y-fu#9RUj=@zLArqA#|GeRC{zF)9v|D~u4MQ%_4Ns1n*72QJuS;Gz2Ymw&sUBXK^ z=`i?9ETd_L->Tzin{Cs1yy-WzReWe`N-x>eWHt0{IGf4l<3SHPmlk;G_-^iW@ur4~ zvC0ykfRU#R#Tl)XbzYY&mpuwZS`K4=k+ zgb`Q)$ge(ko87Ye0^x-eJezWI4Yt~C(^h^#L*$!-zf*o;IYDI(lp=I_l<|f-!F}Tj zBZftzp!1eTl2tfbQme^OUj#>l-X0Bk_{~j&>%a(AJ6tVn;-wiNz^JLZ2KM4KY~(II zOJl>3wd7saMlaIU!I0`C@{8TsELi zgY8V(F;cn(AFJS}upH@4de!`RZ-}D`;$xfQ5?Fcra(}}_vpkBYke7ki;(M6D?ul80 zu*a&)@;$^UJT-IKsnIb^8%UN>g3G#zg-m!1j3umd^cVGoK&H+VXh9zL}oxY1@5o_nFNPWh!M#yB>bsJ>tgkIEOQ{ zVAmlofO)8^#))i^@m+Z}5Ij=@Im{CM=inDsp>RQ#pY?-Bk_L2v*R*eFap~mc9)z+W?G&ln{rkS?M9M+2b46?ooFsO^6q&>o7~!+#}4WeHy%n5fv*4s|$LC zrOX(Hm$cwC#Zz=X^swEaL|iVk)FH`{(7Wu2yr@Dpu|zvCY>LbGc*m#!2l=0H9Mn1F z+~jDdKOdC7L6@fys+)ts`4{*$H`=f8_r63nR($ffpa~=IUt-2kj1*@OQHX}jy42(e zFXdkm3Mc)gf_K`?WGlQQ{??fAve^&?r-Vo-Ew-8x6w}_M?L}yu9UOpC!G6h7T!t8& zQ3wB_L+=@H&?EUt4&JQ#79{|L+iz@cd8rUi60%I^C~K!OXC@ADy#B2c{yd*OJ$?;iF%dEWl&6s(=BFmsBS^bIl7M! zqegItZ47XI@HIcxNBGS6Py z{`CoLyi1j}ZK=NzjJo}=b4FE@*@+!j)Q}vK0hQ~+{p`GtpuvXFZ>V$!8;b29;QY*} zXK-0FG+#0{8%IPu{G;A#hd?nWaA5So1rR|K_Rzc}Mb|0ev{oybU-dZ&>+y)=clgO~ zMs92xKT6++Nz4#bnP%2fKQA+WQGi-XU+yBxdf|)pnZmmEjPO&m zxNV%CE}TdI`0kP$=5U>&+JXC80{YGkzsUPc{IGlV4)BqW+Zp8+I06JTJ9+Y~x8gVi zm+Y3fa&rqF7QCe}DYVAb9QV5v!h3xo1X90d_|4XT;punSYrei}tpT1f->vwi`?)ik zu?bwQFu%lcE6%a&7hiU+gyPDX1Zh7TF4Shq_eij-ApyZdDVnb?JcUopYbQRuYdM-} zxgWEbNMK-UFp^^l8XfwO8MV&~ei`@AI!_9O7{_ew9y&*QEgn!JS4$z0UwuV9WTF;M zjQFc?$<9fpy|El%VoYu5^WNo@*Md$pqKXD#%{dVI@#-8lyVj{xYN$23tx9`Mr>PoC z(NPJc!CeHA65EU|R@o+9eChRfjNmTK;1$awhf(Ls7nOHUMfVuNY|S^LaO?GoPTF}2 z3#Mc%rEr5e&RxW`wSNL`RA&m$Tl7_SS-jTMx*2SeWvvAYNvZEzPuMhqtg?NFKD`yS zxdk0UqElJ&=)S|@%xF55!;BiLX@@~Ri(L%s^*V~WZ1_X(NHo$dl9Z@8`a_^QZi|EA zLx1h0$5qE|A`(gU{h7FF&BSM{DX=V`20d8@r>$ zZvYN>KGDL_>;q|aWMrRzsXl_uvtZdbZzA1w49T-F3(R(72!D6f4D6o?GmoX>Ebfr4 zxqc{bFmq5Me$CR<62E7JPBtmVcy!$xCvRdUH!M6$U+y9wzKP_?u4u9GFdxE)6=_Yj zNeehzHLO{88nzCjIywghX^~1gT67z>_M`H9JQnIfiJ%|$G1RX+d~z@!o!>((*OACn zKYVH9>kofvFxa9&-HlKal(P-HH#_bHn5@(jZXp|*zivzz^emE8*3jqH5Mo=#^3D&b zJ8(34P_B_~)I{DwD74l0&duK*_ss*4&lCp7#xci<)k)&weq7~~q|d!=tNYSXzI@Hx zv5`CYVZHj!(YR(tk32IhAMPHbhw&@i-vs-mMM-?;`vKJ=aMkC3AN*DQmqoV&Tc!WR z!rf=R-K}oBP0tV&Q75>w!eXg*=PT!A&5qY3k(CUUQSEjrQCF9d1^> zHGY>5XzcHqjMXgIjEL>j75R>D#!}kLqB&;cPlKDtqRP#5M!BDR5V5edl7nvr)*Hir zDzY{WUhs~XhH0+v2XrIjS*x*K^iWcMD0gO7A#MDKw!Jsz>X%u(Q^F;n+a1?vyw~Bw z(h60Zw!q%UM)Xj(A#LdSq;#eKV-ZMOP1W#h5(MTXsIE@71Hq?cA`#UW zSd!<)Dh?Lr9DY0>=(soDMhwI$S}M!o+=>z1u+in~%gXeET=|A)AoKbrXF`N6DC}QF zOZY0PidkUyO1~^JHdf?F%I!vpD&MdiD?rA25jIY=eiH@HZx(GZs-a^Z2i?2f>zYha z|J@Je7J4$0{0>-(3mCi<=5|(SsBld(K_y7*wNsh#r=y_^KpGL5V=C-UQZh% zM~aa6e)pe&=rKZY>>GBr+Gl-Ej?o?m%p#Rm z*7?>QZ%InOpWNR0iII-)MbL;Y3ejXhLrNawIo}2d@D)Nz>u_cJ)B`2Bw^sR&xYc1w z*MWhmRF5bSej7yF-jXwRS;^)D;&ozZqTCg4-RrH`aJqTWwo*S%@0AFe!^~&D)ablZ zj*#&N_U0myBrJHhEb%Ex7|&9dG3ZD_B&xh7aH>qw|FvY)I*jGmm&`6CfVe#2BZ!<` z$!!ihyn{i>KR113{)TP`HFew2_(wb?0JTpkA&p*Og`AojY8??`dzC!Nv)0Mf=IkU} z8e{CuE)oL+(<*Er4Dr8WUHc+hm~i8dl|dq1s#WbDgK$zv`S6pA|y7 z$^^?pfbXik=fJomIk%=2Y?;(YO_Mbw^z4}Yu9_U~T@XQy3UFErf@nqO3_ zHK|gOmJz$|P2#uF7oWDHka7hg{kr_HMnHa>$wUbaT>B+hDPvr1|GK&wIQ!L(qiiJUTlro#m~_idLIrI~$0bz|59qe;p3_;0{fZbMXILNVd22m zKGu8$VF*1iBD=;jd6KTrCg)l-Eu%dXt#l?gHqX2;f z>)qbF>NXegz&}gOiGP3(Il(&&{T0<(Jl|-R@XLT-wYq2Ut(@BtF6)D#; z?+WNzgKB>l)_OIFg;TT7ie5;U+jnr8qn4OZl5VsJjuw&_>gvru#S4bun*iG}-#y&FC_=Je5U>4S>rWqlVa&#~>d>P_?F>wjo zE)Zkv;*xj%V_~M8U%fT^1URVL_j?k0D}!`x%CzIW6jp zmn#EPy(woo=X+ox=)aih;c?s95VH~8SJcZG^m^?3 ze4nwzmA{On#mY76v3cGH{aUkAQid}+0yd$6fLm>IHc6t|JzNyI+q{ZPXQ zo7wbDpQ#5<+NZ&(9P%6DVSlR*x^ae%x)2K78MG_2FnteiMh#0swUTc5=bO5Y-e9zj z5K`B`?Y1x^rk${^%^6@*BFB4&;|JD0>F$XJ;1g(#SG6%Dv*!aoq$93bVNa#`8WRRnM)^ktr3+wz z6Z?_rM8n8~E=llJ>kZ@GosmbrJxD34gI27hk<(b7=M@*C*)|eS!D_KgZt@4LqqG=D zN&{`V%>~Nx_4+_rP+zL=?OCxsM1UK3ydsEP%Vp&&V)-x?dJ{oAA6Z1ZXrtEQulD3p zC2D0Ui=`l;Lj3}3F*XK5rJQjIfTtpQR|g62NB9${to`T8!A)EQzPz27O!3%lEKo2h zdLos3A~(}t`x^J~y@$&8gy7{4BIA-fmdGY;dlZrp)VN<)Q-lKY@Aoi8xyRi}#K9Sj zsWlUgPQN_5&GA)pgA0bdARxhWg{6k5deLwVx4OGUU zs}MimsgY3XXFkt{hQ^iF9BcxMw9KBgFx!eO5sEQhw`P zURlyY;Yhgu)zo2ooZL4bTG!ng%OSM9NjtoK3jTzhv=ZF=&1{v9wBfz-L7c2`WVqNo z#-wxjL_R<xY(*?uXSI86FLs*x{+`6^4E8b?EE zQ;XPx1FA;m8z*miGWpNZ@;eNUjTUL_0wg3E2CEq@1v6~rhrxUVq|y!vrrw?nE5ViX z`fxAFpaS}KWdUDMmM)>myXAVOJ%q3)wvQ)4EJ0tWlAjmT&r29+G(01wS%~;QT$+$% zmVS6x)_0;1cCqVFi=o2<7B}z7;SUL;U>H$05YFjjAsKRTGaFOW@ z<1aFenezUMmsi$^#Vv?&&N7mVlEB8(5+tlmer8>zN-_CeY#;U#b||7AXLa=hx8I}O zTR7u#m@Qd_?Y!fooh626C}?urCKUWCP(QoEK1*f^)yi!t&8YlHTm7W;Ri3@S?E;mH zZcD-)hKO&ZrqaJX(`&@<2E^%>HHO*a9Mro02RkMHEh@ZPqo>$t)8fkD0wX%!%XX9c zT2qd{tkI@6UO8Ij?%QKwW6Z;4l=T)CQn>($gju9^uZ}+=sVhX-&3swvstru`W_Yh_ zS7omqFZD8bW#~~2iT~or#z0J6%BE0mdyGJpL~bggy6zR-nPH~`hEJo<-bO#9fCQiG z#nh^yVupJiYO%`I2;7D`WTdGXhnU85Vlj`H$Aa`Gb>AKosnKYz0VUOVbwX^yyi!&6 zh2K`Hfb=%sgL&6Lfl_ArF&Zt*ZWq9iN#6>m$+G_MEMK^tDAd{ ztMIk|6dJz(qK{wF=P;Yqtry6NXCbHDU|a&_R7mKo>KZxEB&K)p>y$ zE|G%%(t>l6i^K)3yp%tAmq)jXN{Y*$S>vWp!Z&m$@xAMiU7=amyAjocxulx{(a!3XTS7ljnd@pI5 z%RPaJsk@Ec1o5iE{9jIZ`CRoCU*ezHZdx;g{Xmc7(hwoXqN?_JIkixWWbq*ymz3sA z9sN&Hluy}T#`Ehl;5MFE?_kRkjzIns@EcnycAh$klt zKvkh9PcOo=XMTR9nZx<=UUC^D@HiZ}X!ZzR+?!-T(G+`yX@aNaDYgWWu3^^1g7QL0A92ya1k%_q>VUg!@K&QstYz(5W5DQ1&P8 z;3&ft#R918kLME~!pG4KW#X9>Vw{7IerhWVR#lZh)%pf}W2w3<>9v&u2@qFmt@yL1 zdQY39!)-G4d{VY^3qPv`eZG@|uhPE0^ySbdO&l5a=e8hJB?*KcAq*4MZ^)WlmVk;t zN??<$Aj2`UCzgq)_AV72GKLcm|`uG zRWa#qgFS_82C$=~<2OIW$!~IKa#C4zc$5sDS*_BAPvJOVNOrCLq?9BOB8W-eym(kB zgVnlXj$hYUB2@+V0L64)-FkOYp85u1{|kATb<{`i2jbU;!jxI!bUEq$K~wdw=F>a2 zdJO|*t4Xnu7&KpDQVm5eok*=d&I;@*nj*9+rmzkfs2f5y8%2C8H-5!Y=Tat{FWc^O zq`p~v1;4bb)o($iF|HagJD_Q!!PygvZk!xE0nxAE7kKx#V>GX{V3(;Edllfq zh?{{4+s*ZYFU|xEoHam~ZdYnELPBX6dPhxR6+A=+toT^ys^Bp<65y3j%dWTx46TIW z0mv2a`CXU-Ypb9%oN+YC^h=Th3)6ZZuj4SxZ!@8zn2l z)>X{6>#VZZwtvjoB@v#+8&MlrBg|4kwa4zya`9AB?9BlwBvFDn-FPj;K$CO+s50eprq=KhHjG-688VWNBx$=Th$QYF#ln!Q3us?F zpU!ggAPg}$A-g{>l=qFr2UzD9C6JnwPo6;Vr`$kJ`YYzM63y5u&%p{ZcQ&8E9${cg zaqlJ~(1G+1o$BphG`1)}hv4v>g*9g2e(2ygX7EJdiG#KR**KJMe=@G47Ea(Mf!Gis zgqRTCe|!trYwA-I@s1s@aRm{!>%6j5$yQ1LxBT-<({My z;AT;7*8NkDIk?O4b{$pgKpFQWP{=uFAgR9f4(TE(ZK`8fLW?$v;WQLgnkgXajqgEy z_I7vNTcVL%*$Fcn&0GpFnkc4;&I*+eRs{^f&8lOX6uT>i3*?#c;nRsdDGh%vy#>jh zG9UCc`Q^_1P3@=N+-iutCduXqJkKMiD>J4ADwj~i&9^YO1~ct-=ku5r#+0Thc%7H{ zw+XUBHmi=LtUXGO_J!NbSd`4{+!boNAqDNQ{60}TK6LvU8w?kFS_DVHtsIJ79_{C9stcXqi(~ZgJJx_Ai?=@}paj$G#Wdu8c3Qyn3xSC(9ogA)T+8oY& zzP{=Vwie8RxM=6px(**^?HAU3#a!=HV3P3o`X!R8LJ8`Mslv>|-=KEY)<@q&UbmhD zF$9-anSTJOmdu1=PYr)}Uj38&KnU>ntoxW~&)ozJ6>s@x}mNIc`rWM=`z2{+2y5u0rJ-G&>6p-2$(gp_#-Dv#RKSw5V~;nJ~2 zK8jpKQxjnM;h&KQH8RFFLDl|hJ(_RY|&o$UD*41+Q%1B8suXQHX zDL~~~|0bE!S0|oE-b?B5IfYD%taf`#(beY!Q)4fI2+f3?%si8$sxYW^>kr*|{6NwN zq)ihj^g6*7!v)|zQSydDN$$r}Z?X(xH|CaXRZxC;>uyFxNwuo6c*ch3) zfNuasW|qHb)v&Yt$F@3QptQ?hs5693T&*1JnN*q7Riyv;p|*5&b>v}U^6>Crbg?sM zba1v{a&a|vp&=F!`1hP#f0m8;qbKk0wf+68eXPKv%&f#LTx^W2Kr;bAZq2{J4E7K0 zb1}CvcW|>eHTuJRMiU1+CP!xnS2N&f+|4Y^jGUd#fE$WNR`#wg_GYdwOn=M#znm!k z9}+-p|KLFMznTwZ76bM!0ws9E}Na zu(ACYk4$s0{JVYC$v@DVTfX*;xK@_Y zm!M}i5uF-bvTZR6snkJ^B(=C^q?4nH-!_9_Mr{sW?mah@A8QU)nll;T=PtRiv@{8r7VuZdVhJ0{Ppp!-G}y`2tSIN z($~$AT1lHL_%`if`|`dzjx?Q1(2XevlVka~d-lQx`b2?HEj3tWu7Q)&%f#upoe4iK zP_vVLQU8|0zP-ig_c$Ib?`KBz0sJm^$4$xcbg0ny#_fWw2=9QAP=fUM-96#A01j(u zC=3ZAr|REr#<9>yZ^9fVNY}(EIt)8-lkNACpww2 zo3g_cjESu3Od_^`hLe{t#GCdP=O=T~wl^QN35)8st1!^n_ z(V5J&L8;bOn@Q+d$SU9Y;@IzZ*txzV^)19bQj6|Ntj4n*YrlFb(h7%{L1OXhNWpyf z#I?bXw5KSt**x8}kXcc4!m!(>=5a{5IGGK?DE~2qcRq_k-}^!7W8n&3Dz1tlhuj~% zqj4lhlaq<4g`73tg7{VY8yy zf}ZU#a{M&MyexWLEz=(?wVL-OpK8})#%+qbdIqi~qVU6Ir_Cx5m1FmX z14T3&o}?9SB5BZniZ+YU#d1f}))00)ygktQ8u4on9VB)V28p=UR`)4MEV3vUX~$!W zfQ&F5`uhB3zuTx|Oy|Huvj~l$P!YL zP^bkd)Pji^`9nCs1<;85u*%SRoYjx&Z_+ooKTt+8uo~`eS~#Fw?TYw0G+^r6?! zc~$A0e+-Us(YH;gCK>8Oox^PLI81ZPTatfs4vFco??SP!kD;nZniG1ek(lMnP(Ao- zkP`QN#Lk)jho_=+;34I9E<|6zOzAPcP#+vS$b$Z6SX){F*HR+*@^@l0>e!#nW+>{b7*OY4*RcZp;zdWD>|~CenO7eJi*#c9(Dc9XT}% zgI*R1m1>GmsyxgiUcoK~>#Lk$q5O;|lBc(8E(cNSYVIcAeo8LhR}~}N_R?Z|96zr{ zS5memm;AeyR=c9cfc-9>^>V;5J1jyp*Qr45?4kyPq*MkWbq}^hC!otnJ*mQmX*}{Q z0T~rRhk(FN1x?fu4~N?r4czwd#1dnqa-=)8p_96;x-pHClD=! z{Ai)+Z}W5%!GVGjZeWr!!-nEm%jw)wz}0$SRuDK=c|z6?dPMSwV5EZ%uNH0>Y8TV| zR?Z@(iGA{*o0eH}0fz0?f53@G>G*NfGl;`#Bg37Ww_9M*A7sKZ!rc`mI+G!oCJObU z;^8C({2rGnnq_B;I5)ZIr%@fqm^4wPtdLXg0ti-xjF5mfm?3iF>L7aN5sgo%rEEC| z{MvbV5)peE9V=)3Og5eWZPy(pDT~D=0JWC_Fo*jjsAW~wPqiZfPD0GDY)8m6Zz0^DcJMLfc zKs@)172#RSGY<6zC8COAJVKV&g%XYS?x8#CyU{T)jhgy&d8x-RX2n6%-SpyJasDMl z9vlzxh`C+&j^)=z??^Ns5~SD!orX`k*QMiZkN|6ta~z~^r4#OyrAMt%tb~6#cc`-u zh3THy{uypSzfrJLXP%xZB&$6H5{`#~iv+$h8A~F~+K7O&!?%|X6YT|#-qKcr@q#nq zP2wQu;X3Sm``|JHC@*b#CC@3$!R0{Y`Gc0Cl^Uns4??;NDZIf!(S%Ejp7)%l1lI&!|44Drpo`%&0GH$r$T{}K@Tl7<>9oFFo9>}GwfomMF8*(!^wgJt(Eea6 z&-idnQk0{6F{x+UDO3{FC;g!Gbn166=U~CrdbA*qe$8j;@H;Wn8q|0yDpD)^Nkzrj z1^B0i+vXlKKj~-L=U{GL6t6e=u?|;&<~xiF3Pes>UCx6kAR2NN(7Gv>_UPhqza z{abEFfh3QVMoB+B$WWut*E6wSv&5>L?I)XIy@%UW$~OKe;5{3T2a&$g*n$@Xnrosw zVF}_YUzCnF;JpR=T0G((VSQ4AHsXyC38Ek0zryoug4CZx&m&Op*O?`>snbEM%8IHS zurOA2(Nj>iUCgAqA)P^eIdVT8H#!S{FhhZCb7bc;??wqNFuwN8d9c;~Q9sHbS+xK? z&W>~sY8QdTU?OB-7Th((ocA_jOjyWlM`{vsS>`4p5%(4MU>zZ{i|;VKRq+Fjj-I-` z&c_c`LRm`*i__iD7)Fx};dKOwI6%oLUWR+MiwQOfJfF3au9*`yrVp$#AkiKnM7)^$ z@`sNq=8gCh&GPKTa-qdatF1k3J8gpFK>Gws;D)Qei{dyI zLU@6mKIC6rB4AXfryQDMVGV6cZ0xFfrF)38AI=CYN zt(2%|WpDJs3GO%h6ncLHM&>p%x<0eR!swJ1krpX3qL@{+TjK3f&9y^+ercV0|K4Wh z5o7VJxs5C|WC^kf%OP?Z6g!PvFt?zrb6(P%WB_P_mjs`USBY047E~E7$=(a065g|S zx6%f|W(_Iw`S(u)GSU;MaKlEQom$I(x~UIbt_8gc$qg=x))c^6Ht2`w9@c zf{Ig;bhsAx-=fzm9o1Y=mM)Zc4|t?;=hKk)v(h8J(hyW?>t!dDLmk6nix=KYkKRbep(5%Cg0HaYZ72IVGl;V|b~@ z%-Ja7S9!H(IpdA%eTeTdp_r3N-b111UA9@WH~L&_T-yUsWT(0DkzLi`?z?Z-)=hUm zr3Gt`O3US}xG8OE;HG7C@Q`I`O=(HJ*)di7-Y;K1hD&`v#^?K$A!p0NWF`#`o?wm8 z{eZ`H$t|*?SzFVizOBR5qr#1_*y#h*WG08(4vV%Y$O*Por;wzhS|&j=|>79{A5z62bd?yQ0G>u z_u!3G2$^INYKyx|S+GN)aC|gY;NVS$S8dSyzEz;}4C^>-CrKh`fk7k81b9z{zJG^J zheu$G7?GYkl;5qjMag?($4^08veZy(8EY8k1=OuOU`#t6GIlQvQdI^kC*-W;-P~_< zWuxIU-EuW9eFooS*`~DW|7_x|#5n@lH2xW_I99-x1Vi9)LME8^ZF$_JhOMBVLt1lM9u2`GD)a&Z=hrcJagCKTzrp+Hqh_l2A?h7 zQF^Ia(kM}g`Rqq<)R8{j-$;hPsxV(7kbY*S$en=Wgkbg|zQHW2`E`{m93-MJhPQB> z2|PFQ`Tp34Kg%v}K41Ag9}tsrT)C^8vJixiAQx&`4%d<2Z2tp^a=jh`vh~ZQu@Ju`M~}KN$V1mFI!H_ zg47M`sv@u97bvtIczospLhICEyy0wO2AmX&88N|i8Iw_iUzAcd(s--Sbu#=hmuMo8c z63_KV;HCPdSR@&9P7TmiXRrOxg++R;`kL|m{TB2$wF$UJ1N@`{k~B zy#4LnPqzQt4;8ch+e5|wP5S%aq`&`7`upFczyD48``@I$|GyypWn=&Q*cclJ7b6EJ zkY5)7r1>QV04achT6G*8e@N*3M|4RH2yN*Ck+VN(_W%Gu{0jKLs{d9thl}$s5YYd` zxczdcd#pCh2`Kxh%@ z4Hlr>4kys3e;LgG8T0>4xy<$t5axgJK05$N01bo~frKbPsuy;k_#oTgV1EAl-v4JI z#($@41mvIouRyu%tlW&id-AWA{>AQp*3tj8rGJ(_`h#Qo?}5$$E}&K;7f^xeug(Op zG6HE~06>VGgX2G1`p+cRpRw;hlJD=C!NJYQ3A`>FkVPAa9kcyG@cmbl{@0B7GlC6F z*}rQ93paof0F=Q3CImM-F&hi(9|Ye37GQk+r@TA=wIcIpd>Zf%9wk`WI2f4$#BA(; z+yvko&?qiqHejt|{u^QbPuvo&KTCuG{_O+9e_kxuSpM3M!2L&>5wihpWBor=>;BAM z1o#It#=jH`HfCU8v;1oc{&g__F{b`E7mGhnD!`EX`(gLjz7$q2VD9}7L;qs-|LcbS zyCnTb(+5!Q6&R7Mf7CHxd;$Xl=vZJI4d?$_dT{-D5(5VN-**?VP_VLa{E-x_+`x$p z_z6gq#r-#Wc>bB(`14Hkm!-qMQe*v%+yDTx0eF2DU~U3uQ1-u8O%~u9UL$_gMeu^2q*gr;5KrOUA|g zA85&RUDhS)zIr78?&nJ=A&2SN$&e|MaW@@qZ{oDEdRizmB_c*nazroy^LM{bd^Gdh zcYgxev4aX64OPX!f{eV#$?5Xlu9S!C-7jUj zakhLw@|n`DOUGc-{?f+hUN&W-?zSX%pd$Bkl%PS^4+gy7Q3RSRr2c;WD;Q>vw}Zbw z;2R7di;i11y1Np|1HBKUwUNs=D=y#sBwnF#v1Fz7L?o}7w z?;j7NwkeHYnVg~{@P2;)fs*f=TtL>`RDd#&?22w5)XfJoBtK-E2&j?FYYnM1}#8LX;tu-61*bDl!a*k46v|ui*d5`JDl-Fo&Tn z+kofs;MLsgRDOVW;hCZf0;_3&C;`_G>^Daz0;P2CP}05eI44~C><0h#ISZGDNdD^1 zS8*CjBvpq5c@vHDc$53-J=87^grXK%zsz73ve}i!_bbx*m3m_`l5qbI(w%O4-_53&P^s-K2y-_3HQg8*!-wIyP)h zHSVSISHpHnS_da>PNLIo#pNr=>MJx2w~yGDOTn$#bEIo{mJ^ts$oXc!TsqBA%;zj4 zo8_OK-bY)RbIrt#$bD8#L=%v?6f#>7NDH16m zI)_Z7hzB-%A`u4W&1|K*k?aODTRO^30)d zn;p$45b!soA34oAp5_hfR)UA{fk=Y-;7V+h2)GZvBxDP?B-a)2*Eo=^bo>zLrCMBY zqU=@_*A=fOuI*h>sZr`(s<2{yfzwGzzJI~(4yzGH_DnfW^ZW>u$>Kj!9nSnNKD3&8 zT{ZIillR_G{2?wZgQG9`EpFu#v_Rb)q!tR2UhWi}k3F6EA%q4PXOD3#)X7Rb8uFZU zX-I_Dag~Nrfb1frarVt6E@S77(5f-QXV#MGJzk1J z3CVbj!EIp``-^WjGianG>Zx>E7st`JM{clR`!qR{lU8873y$NoRa86KbH3k0@WZxn zPN7mPA^ZwpojrBoN@-oaaUv`^gBx49gvQndgw_svZAsL!^XGr=VN75uMUI)3CrC~9 zqGqrn-O_f?Mkft9i7dk{yX5~-gy1t|C6_~9vFO4knz87029ZcAT@R`9c`5pU0vl$n zF2^TeC__CtuXx@humY>fUuI0aPLSjJTT?0Wx3p^~sF%(I4GH}{`h9HW#sDRlkwIm% zX4%6tRV|0HlL9>{vFNjrQ~278t4x?G;d$oxXr9l}x*6J82*Cm(iAHpbFYTV>!F$7u z3Y_<3=uclhvg+Y{_>l*Dhy}%1kVWF;fQq9(CM-bskiYt?Dm@o6CT8tiK+-BTN)yd0 zlN-_}=V3mO`NU>HnL(#BvJ~hEb7v(9s2#mY`C6^;~`L{`Kj((UCP5 zeq_2}NZO3;H9^kEW#I-If}tS;K0axJU|S>BC^&{AJ6_lv;=3~O3x9F68^`_y0P@=@ z_9+q#N{%|&1zR16?MYgZFIgfuHebcJMGI3eC`qMH{P{LncC-V_5DlDZrkY&y$_Z#6 zesfz%d4in-4IuLtGL55YM@gCP4KA`6DNs7jAlnUR3oI@g}s@JiQ zA255wZ^_pdEQT#dLxpVuBHA_5M`LHy>f3z9ptwX?V~ooAK9QclEr%{WLu!tN2l#lR zLr}tMay$PRwEM!|cjT2{{n2!hg&k3wHwJ5m!2^PdFpB7*wBRk0o!9_F?|hW45dB~Z z-abrhFDa^(2*!!vlr!Elj2ySThUfPqix=|z}-;MC&jG1s0oKG%K!MdjID z5G&Et!$rQek3<)^nW|-T{nTdZL(niXl+yFVZqE8rd+{pAIv-0mYna_M`W(U~s13C$ zjjMz)oA_)u?}3k?Lj-$C0*rq1&`kBdI681o7?Rr-ja&%JycG2gakne5@yFplUt7SH z>onVv*^`MAiMh7$gZ1KmL9-gZOGZwJ_}^Y+f6*@9wB1_%Q*9!~=h z3%8yIBk*hRfhe}egG$oICc)jo6ozhJ#VxH*QgyP{(8TIbm9LE&StKmJZCsnm5}5qc zjT`$dEo^n3UXL{d+5luzLT!Lj>k#DZnn3oarZ}qt%}-w9tBAs=(0-5<9VnI`&A&b1 zKLWQ}UwYVytirfHIOJw@iHh*zYL^!akgrG6 zKi7qYkgWS@;M6+2+3m=wN-Q`C`YrYf`33*H(moM}-D&zs#lcKO(jQp&`lRK&)#oEd z^d%GBQN$O^Ga1~hP(8IivdtF@PE5f4^g-Q%=eJ3#XtCL5eYqvSx&?U9JMbmH>FoVe z?GR&ehi`etCv9DQ|Lgj&aInBMoPfy;<#ZpsWUIJs64*6lcHWAD?-omgUDKRwyp=NL z`rvN}1Uc!c&Uuv9+Q!3(RS(9E7u@Frr1kYmV!01zIQYF@55d)`h5_YS#ZXdXuX!}< zv8j`BUMupx6rYzC^j@PeFxBPPD#%0L7_QB~Dn01m$&^BQh?wy zihZf!IZy36)0lq(G=g}=4AQVK%zi4GD85~JQNqh^#ho8pdvXlDE{%9gGa)G!a<5BI zORcb1*7~MymXY1|IRYG#qa%;t6wXW9tDt6qi0-=9#C$KU-ULcuLMptG{diBTJ7C5) z^E4a|OkLl8&P%lkOMb(|j(qqN{<&0%BJxPjOor>VV}g)3;mO8+`EV8_z^Zk4^@j|U z6dmyuEG}Q(H?^MJqO4I8ul3_N% z#TOWA1tq(w8yzgt4wJQ+;J!ksB^!t>&u|L)8Ey<5iz`7mdNOEHwKICPMex3&?<#LX z$Y1v`Sow)JfFTn6#Nf&d^P5?{(+xp!{BnY}%WEfihb6yQIAN9+{!O_>Lt7}RRw9&F zx&t4qm*Tfk3uVMI+sO6_0NI+vvkSU+y_abr(MJLCsK5^6Dz^mvY5k>Tdovs&99G zuWYh6F(XtpQO(Fd{iL|ah1Sn9+$9uIL{F-E0xopUq3jw}(z(rzo;@|1Hh5OFm}@d3=XKcZNJ6E5TlpbBg4&7#IXbuVY5 z3E`>WRziuN%-FK!K1;IcChR*(2eH+gO?u5y|ETiZ5wKL>ue_Db?Sq;raKB&RLh1q05RRM}E!|>0!8qFCG!su(c#~X9CcTxu^e|@5XQ#gQ0W|H1Fi9$o2L#dG0b*a>ktz>h^z%Oh&+Q89#Zg(jNffk zzo~~$BN?{M88WA(>K59zu{_BAAYlZwOivjS;Z=>It?-sqKE=%ddF+k#VJ&0CMKWss zGB~)lAYrG|Y)TnJ%Iw#oIbw9R?u^dd4AMCPU5sZo_Pvw~Zs2v0R%$SU+KQIF?ocuh z!JK>a=~-h?Ax!zFP_x2moc#UGe#T8oZF2A>fUdFI)Q?IMO8%vv5(+2#3=qc#lt(en zy(l2G41Ojc2H^SY@`X3NIyE!a9=~Sd)2$R&?XQ2?x8*Gkv-oY-xalo}FB#-Qd(KIgC^K-22whFcDK==OwaTX&0S}(DI$xtINOzwIG5SoaFx@ z?ybTaZMSS~+}+*X3U_yx!rh^8cXxLyTnl%1cc-9mcXtYho%;U0yVuvfRJ{`kcKDRIYlTi0xZP6D zM%6UtegzUceDk5|NWVCf&X zu>l_|*}A9jQWl$dgx`diLP;KiMPk~W(JE`jbvyIoeCz#D1>AjHft3@9mXk(z2Xks$ zDYeLLrRN92h_c0U18~Sjm5nK8B|H4c0)pKOtZqqB9*^G7PT9IOMKad1wRMStOO)|> zd4j2c>q0a)pxE6GYM2p)Xzh{MU*6bo9DG$ASZBRbm7m6nua}mBGJ}L?y%7OI9}#eX z^C8a)x!cfhn7yujgo;g;Qzh%n^%dqHbSM{Ex;+hkW!7nlU&i24A9hkqw3HgQSOQ0< zV;@k6unq=KYw!<#0sUT{fZ+^7JNSE)7v}tHZsZ*${f2vCXOlHUWq zUgU7_aI+WVb1Z|ud@ClXjjD6vM_5x>%&T?b>A=_vThUqdFv6|zrhy& z>qcg5{|;yXW*7l*hYi4Zh*(%T0hg>C0D${XFv9<**mC^QFaIOUfbCCC0YI4iJGkZi zdraz|MA!d`FR`$)GqC?*N`KYB!O6f02v+$2U&P;88{5A@5`Q=#fETj>ULK$tGXuyQ z0E@A30f@?f*IoawcKz39{|`$6Sn2<|6s-S6KWFmTP%P~T9!Wu zmGxiM!1;HK4xsS=q=diA=WPE5B(QJ+R^UHMU}a|e1NHysD!BgavHw^Ijz1y6|9v6; z%bxf*Ab}b1x|}QkmH^Pf|9}?&dj#+d7J#JxPv&j^A4~ZA*8H>9|GkX=vMc_P75@)< zHZ%KQ90V|xYiei%596NIg}>ssCVso2`V!``O433H<+LsR|T|LlSb34!4Ytv zAhf9-upsTKz-rq2@Wmyze=?^?-@c%Sq9l^wnC&Wl-R=$?mJi7Yq&~Z7`aR-%y}#rBK3a)lgu3a8hQ+AI z`k+WRaPj!PyX9v-(STX=Wkyfutrz=9sC4<@{2Y+6Aq>dafI}HV!3L*(tM`B1^pRYa z1HCfgxTgmUqGoqJaT?AGEFTC=>ve{3e7OGJMVlp&3FKS_mqStjCHpQJNaqVg705=j z1CO*mxcTuGs>{iK`A}}74*R(IUaQrl_nQG(hzc!<_NJqR11uS!2Fg#L*Ih%SgQuechEbv310wf`q;>LQHw%3@p%INP0}FZkBb0<< zd&HzX4WjsEXFNDP9$Y=EDbD%+8b^fzjH7lA+2w5&AKj4UdWlGv(}ib={-(O5`3ea( zO`A7JZ{I_LewSI6kvu<1yO7NDz`_%@L=j<py35 zh^&J)d`!>P>re{@V=C+!T`rKWR^x>6hZ7oPgT| zRx$?g`70JO2^-)3Ax%b>$a@WyI3jeYRVp!e1R}a6r4%|oMM*3M$nTv`PF^RK9Rl?= z2q6F-BXXrjP;EgARC}~^+C#Ob13l5%qT;v1A;>$PLrB>;a#3;)mb|VIegY#^3Fjrj zxFJHuPGTM{zy}2QdH@1^8OY&O`bo!{5z(>QKXsbhg28=zjPPyGcL%ujNsI(~JU;ng zzxa-)aaez4nAz&ed66U{Vp2{G-mV@}qlk%+s3ACE#&vu{+efMJ^xqzc%`}&SryekX zG$CwxLv^!RFqr2O;6{ugCxfWdC(*fw>kXpDBe#>*PNUUY z?BEe$cdt;z8P&JvE?a2?j)fX)MJBt#s?8hDe_(u-ukZv??0#kKah1pMb0~ z3M-USLH?MW+iJXisB8}&PyQ8rRx-D~woY&adA5NgKUFG=E`J6=EhVCW6(y1zj`;D$ zd88$D%Y-aj31C|pGP8}^tifO~Qhktwt3Iv5+k_+-W&ao87wjJ)Xei+laP444l3U^9 z;#*(8Wuw`c)-TjpLKF9gbnbPEN6_~4!Ri&7F$Q@rGpsCA;EZjHF^7EHG`i|fwu(wa ztaZP^!a#JcfbU?U%fX-S=+q=`nXD)yJDja#T_YMubz*h?xM#%NXVFA{7OwP-`iACI z9~C1pN(0|-?fo?h>b}$}L~n;mHa8ZLQf}jnX$M>@Bp$^uU5yvk@A`*ip!+tr4RdDn z4<%8oqBxiJrS{nqPKHMG7A3Su{Mj|MbRuC9_BHoKB3@XgO&37|^$@6Qf&&&s^>Ehk z9PoH0wLMT~twDtFLWnVIOS0b)!O7nR30t)?Tg{B0*Yn{_?t|y6AVl{m4`2~IHeA6Z z>^m;}N3VuU@dmNG4j_TQ45jlpFgwnsbo<2;G{&ww-Mcl-$M~{xPDgx%Ox+fMY(aLO zu$ScJT5`iW2j7~367YFEBaMF1c8x*yJo2Nh$#E(TRN;me499GNYNd(&vaY#Z{sg3x z3#)=HY=6@}g9T<}c?lAXVB5d|YZPXQi}YOS_`@V0LTQ0!n9_6+;TStb{Cg2^rFj7` zR8BGiSDrZ@)XNeJf?#$Ib$Pp>RIbSP%29%VL*fm^qynl{%ZN5Uwb>^AM%(xboW^lTUVavMD{g! zOM?!ABH_{Y90}Tk!5ct2pL8{!0yR#p;5%CKF8-_+9Aq%@wt@v-1qpG#pF-DA zass$-Dp(or#~dKKiO(3)xoi&|ih>pM8>ku)>3V;fH_nN^?X^OLtgt>VvrliMpRr&j z;)cwk3P&cLlaZZ)YQIYJv*${-W@m%50%wb`o}0uEtK z+W6cI4E6$NMky1%r{Rg~TP5{tTnIBq1(EU8EfR~LV%C#zKnQRHz1L?wI+$!y%kB@C zi$d02pyS3lt1Gyj0iqALRu2!+J@65C(`r$bbqiVjjj!K@K2%adVFw3NiqpoPr`DiMdXr_ zWfC=#9|u_`7Y}%}8nH!7r~~y>P4GHH)FPYv$TCLgL8QLXcH{%{6{^5fmAQZUIQmGye=LLfAZvfk+<(B^h{4KOSnUSKxu<^8< z1>`O<5ej~y>?o;9=2lO#P>r5iBUjZm0$P^e9<{RltO#s}cnZhKd3~dM^Z{wg^Q+dL z{}&?>TeKld$c3dZFa1Gg1aPA$dy#nw#onsiZ4=b^sxQfUcrEcWf=~f_7<0g`qxPQb z4Gb9HzU7#@eEWu1@mh**r^-?;BH-Lh06sMczpsU(P?<%sxkiJePN~!!;(=O0p41Jg z_E?NCM?q;CZY@QNZVBEJ<&5QzHlVNQTiNa5eeh_r$p8c*p3EPJSpLdLlt9+$R!E%= zHs?e|K+Y1(2p8{iv588t5djm)O^j&%JO~8#ZZ7MbIunrhnUNZW!qR;C)5WR>)Q;B$ znC}sqs+e&GK{5`0hH7)+2kuXwcGOyrh!nz&6nz6Y2Ff9by$8IgJMR+C&mq~t$GH9= z&Z2pa>#fw)Epk$=4{%Re1yC0!KGTi(=J#NSx`Iw6&8vN>vP&I~+~NfzQ25;6FD**iC8e5_-HC76ubC5Gr9O#wr^(b!LuV(WHKxmtp*IKe<_#dt zKNDcw6|qEvx|kQFP?B-hzlWk@`F#Gu}Ff zdZ{tu0-CeHa~f}U4bq5NDpHVkokn=O@jt9j`xyu2h(0(P?ZG%i+r|192zCZC!MX`c(l;alBfyMCq4u?CvVg=nnIMLt7@d^F}WpA|c6 zcXz3l$XGq|1{n-T9FAH==8wg6`wN*6*8Vp|@sbj1c)iajT=-IsL!`2@(^oC?3QsVY zg6d^EZIXqFFX(KCTXnuq>qJ9@wO^PpXw_i(U}d1yc$a~fG^SiNz4bP?$1Py$yGpV( zE;a?_vwiO}GAz}s&TD{`TFv0CrKEX4KD2&Vh-Hpfs}IxUlu;JgkpQ(|6c2@G&tf4f#V3HH?dwS z(>R01!jA()SxpLPk@%d=QGEvC@tVy_8yPSAHCztI;umYmA7CQGFmm*j(4P8UY3JI5t=kNW}q7mr`R3PeCNqZVqI8T1Fi5!Jp zNe>(^I`N)w9ygLWo8LYV{_R%+C3!O9{SgeoPU~Cm$NCdzBHrMO{ z*u>mL(}E@}e=s&j-$Z+QDl3SdF!;4zSOBLylpjAKHm@d+4YDa$JiD4Jc7;U(DXBIN z-)zmovn(HVN@2#QjzO-9$Pw;^EYCT?dm-*K`>}!UTm+@q=4H-BS~}UqR}Sha>OM8g z5vw(uo)g-WrNgq+m$!Cy0olHtsbQ#m#FqJ5QJ(;>s?ag{62m%Sb)U0h^P~d$4x*oa zFF_?Vy)655E83{z%DhQQi21lU_=}jM(mN3AVX2F7)#<9adtB^|#PED8F`ZSlVtwX_ z4AaS`KbtCv&%M76L6FHVs}RN=CkscNqM}|K#tAU7dcrZn0>`6n-?Yo~-g+u)q`|_V zv--W^H~+@e!SVSaAb{_8`@|1}EJp~hU20R3@<`{}vf>_Z`4XI+v=K%+^Mlvm2=DrR zjSDi*ZNo&;e2=Q}hu|_POuK;HvR2iaz@jMY^f7trMTv&$*UIrQ+3?ajiUNG7SOcAN z|MplCOJVk-@?;;>k!r(x_kNk+&02u4i~Ss!P$|KICy8`xp4YU!67WN5T5g7JL7f6v zD{a-Z%uONlEiwqbYxOLg0yQ*YjD~!3B!lM=zD(lxLOS+=U%BSYq{a zmgobgW=^qC``+JFC3t&|lzFb^`+i4zt}vLH7KAF^viv7Eq6!@Mu5mHVo|{u>gZBoR z-Bo2D%D64yf>&t9q1-D)FVrY3a9I!|=J-jLl(dUD+mghr*7N{g>&0P0~k$55V zmMR!DXV1Y3o;^2IaVEo8e-q&_mo(Qp@l1Bla|Wl+^qY%{%bms!<=uvJS1fRdvk}Cd zq_`8LqjqOc_-!yN89fz$O4I>i5;(vypX6=8VL;U(eM92a^LuQx4Hrz3B}E<-4v6r* z*6`DD!;x{)aYGE6eG=eVDl7iyf+hRE=|B8m7cANTvBmJ8wRZyC%a{OKB^w(98}CN{}iYg0ix}HSBC!H7|i}}gxx&eltrcQP)j>e`=0B1aLJ6q>JS4@EZc*Z|s z-&cV7otV3`gtD`tvnk++gfb`5ANdV%Kj4V4u${X$;1(khpi`FZkLw;l^JMzdH7sZ7 z>}UZv26#_gf6WL09s(Gq;rjF3KkN6e^)e<_&cC`||5GoU(vXS5<3Q@>nDm?FG7u~O zdIAiv^*0J4hTIFmi&n^7?mLIb!n=LEOHnyJA(*-B`|YoZA*Y&l`W}D(Tnk2MY1zc} z7OxT1Dw@*}g-y6F;75?U<>%-}n3}mZaChTZe^9d80rLrkkv#g8*5EDqS67IQew>|d+*f94+D{KVuO7_lh=}z zZ7(WcjG$94vh6$5u9oTGYVLNGUuyChz`tBjQ+BmR zs@(oCfPBT<{o#GEN7s;`r7nde%@6!giov8KWf`NeA}?`yW1EWATp;;UZc1LS05_3k zHs#2^e71nDx|MUi>M|a=dTbvj_1-rg$%K|W`(Gb#5OMF|4uIoxkG7#C;E!d^tIDg}Vad5ZA1_zOG zMI&gwj0uOUkzfnS@FEcT1@qBJ{`7jwJVv7*erk&)xR;Q1vXx<$p`~f4% zpul&m!FiGJ@`WtHaQtn2(~zW)%{WG1q06&EVMv>jmx3vgW%COlbSkG{Rwa(| zF-o~4MYQT87a|T4%(-L|cjQV4Xiyc7nE-ypr~ZHf*HNSC=S%i-B46q1itm-gmYUG* zCaOn=vMA#cOl(#xcR<;4*#%1l=hbqd4K^x5WqJ`|-|d4nMctq=7Z!BDCxF>gEEtUz}pC;!$@P$ZY9y=_o zF+`d+>8TnOlQZ1VsnRw?E83C7mJ5wkO%J+-=t4(i8sgNla&Q-PY}`s%d0PA^n?vf= zXb$9(!32UM>zz4tkFI~yb+`DiDRI|h&QB>=TFhDRezA6`nuF)J;AASkw@hX%{_LeI zekRhQ@<_38W~|L%gR$`I+R2f7JKNuJMBUy^>C)vO(Hr?#1prpTfC!r4$u3jax5}gkx5L=ETfVnm- z;?>-TThk;h!MG^3dlAW|zoIj#WLJiwEC2LgdbEDbJ(glj!+I`jQHh4db}v#QH1 zc%8>cW;#;~=0X>q$c)HsO1=ASBmXBQ%6ud9w^NzWD`4W=7wfs%?zW5$N0vg@@Dd_& z+pfhJ%&eG!`DEi+DR`06RPG1|vV;ZtyyAFyW48D~PFf?*ZQpiS>^muQ**>5*n{rDO zf<-y4>~(YQLc;#0Z(b?pDgGl?CHlg@Cgo0h!v;i&JlcL=f|~*VdIuM73Fgu|oU=EK z?)-omMB(9)15XdPmAERtKM=p6!fu@+Lh^YpQ34{I|-6)uj4uN2G;zN zeK%&IM}Ek6_U8WPvzf!#{HsbU|9N*U36I()C+BM&=*YE?S(o^+nGqb*^uj4*`7>rZzRMst7N= z*WVWiugWKHlar=zU;Q!+#pVCSPm6!#eE<67z{IiZMAN|E2;~ckufT>A&4cM zLo6SEyg+2@|FU_A$E5FQvX3nIgh&=+da@fN?J<0eS3VX%Q&)W`kuQ*f2Ga) zAd{{z@p7B!)7obC`TC)Y75t<>3=XRa=a(c~+wT2&nfp0#2*^MB-s$J|k-#z?#AuWh z_ISmqgUQTEY7#F>mp}t(_c3q1Jn8_r5?{;ymdyQncXIT2^?_A))3dx^bG5b6kNWxX zu|ZuVmI_w4N+yS8O@*(514h)%c`hhi{l$*o>#+Z*!HXuQ~6dB5amz^F=dOA9AL zLrx;@?0a|c(TScJEcGSG9h-BclW6dsJP6;=?YpV!X&DuZOgb~z{p3SQR6-hN5GDYG zmUD(@1$Wb#8?({ivd2n*9I@k3+Hc4G1yl;Ec~PWQiMkZbn>(IFivlO5jy}Iby(dKO z36e8>mFOw-;r;_u3Q#?YPzwX`KG4Ze0@R&3`1f{>PhGt+VwP*DZk%|*(Ah^2J)&|2 zdtzpGmH6+5lcVbexhPlm9OG1+4f;IDlUp&@uQ;Qg_c(D<_9kh6{Y6xQMgT-5X*W)3 zoDXG6G|zW5%SU)%Q1e>0GdPx^(U!VjBaSI6naQsoQ5q8iqN^8 zAf=-*5n5OZ_NCKZT)iz#ppp}i93b=JJH)trN}mX6!ffJxfJ7oM0`rn!Tyq~gFO11CR>*Ur0sVt;zddiaj;JIo1woGBXs??Eage z=}2caHa;MP5eeRf@gn+?j8m1Yn^5< z7pt%C4ynf(#&WJ4adZvrZh0DK1MG@lNY`~ZLc#Qg7Ez~7qTx#&1x$MTF2?CWgRQmx zyKLAUT&T5qNGf~B{D~Qx4^_k0^l64~+HS=dum6z~49lT+I@SSc?+Xy_IF3${wTk?f znUbeDa#ks;Q{5A0Tpcet0@5uus|pR05A@0*CysPh5+EEkDg{BAASr!1sAWaDq&7_h zIZ+t0e>}&$5e1MpI7XQd7hf49ugQB*s#rmi8xu3_{vgRS0h0dazk)_w0&Ys_EHJD@ zPMXTH5G@uT;d6Jsq^}`3lK$37(<3!#ZHqHA3(cr`%|Ciby#?uZZyw*{4t@q6tF3BM8kO<(w&35G<{GO%wdx;^Jhqs8n z&&nTTB89vupb^rG!b>BLLyci+hElR0?znE3t^%2U1Vb^BX9Vi882LzTZs3uM(x`st z;GZhnrflQ2t?3_MM?%>rYNQo%3PvKsJvRjoTwwjhx5^&vr9vM9DaplG`)WxC{j1Qn zTrpt>l8&A6G>VPhlJBMb$&JnL9-DAZSj#&h=aB9MshND6vx7zNFoxDky#0m{EFGt+_V^gMZ zVJql*`8@|a(?xGxa2>oLpghU&g!g#ZX(@4>UM)e1TWPEo zbb5!*sIMHOr;V|+ewczU=XY}Al9%`_(<+~^or{v$5uXh^Kn=_V>16YZr+}_w{l(PD z?`cK#sRz6)UC;66H5b&E|KDmqUP5%~$!LOKI^v!njaB`3 zy;bLP4on6X=My{?&>GVm^Cz4|)z3+$PBENt&ZM>RkGr~^mM{FHS8M=GyfwsVatOMAU4jmkj;Xjm#s=xWEWE(A+86v0G52p%_eK!ZEGkGMsn`j4h$+_u!SwGRcc$?UE6AYaY+2M9ooEjfB27`f+ zwrV-pzKK#_nAzr*cH=N`}4En7@&-#?hYJ+(kbj-C?tco^xCA*Yi4&LpXb&O$Rt zgRDi43uLS_C@eRGKVX6Z6QWRA2~zg>TDt*A*K1^Tbtq>Nj!Pu)_)7G191EyykSjz2 zraMJ(81$qdDXxisIO=eBqnO&iY?w4brud&TGp9=CP1D>wgTe=Ri>~xO6x0 zpN)Eb3D&$pdG&qtIiYprcTOisp^AJ*5mPLtErE_*TftS0*e2ZQUy!fviM;`MJ67(o zpkSZO2cW5{S#>Q$z5XHTSA!;Pn2F|#z=o0&P>z;R$&YM8eD%P?2U3RLecd?(A1K|-IGg+YpGc2sQQ z_Q^*r+0C2w5j?n9c7q7A;si@bi?A)QoMkEeA>y@17K<(r3E(GP)1%Q(cKS+mhM|XX@PoDLrz$h1C(UT|M_5g_8c#Bf>r}X3%znnDAT%%1PQ*aS zP$I;MS}#gN5*U@w_SKE(5};uo&)j=KE~ap*V5z~JDsfiQcotC{C>m-&27#8s@Z{&K zfcxBQPLdljwyv{9#~3k)#?i)lH{*peNk3kHkqxE(P0Iz9{>C6qiW{kwYf-9=S?ZEe z{e;q$;Gs!sphtW72L8%dtD|ggB`caq)5i@TLqNesYds<`CV($Uvy=IakiTV7bTQp^ zNS2Ddkg80nl>%ZtrT8*fVyAKG=^GhS@b-3BTsv+#ABuK;ziw)G51t;vPhxCn9zT)f zG;S!LoHVn5c+{@!aSPchl4|m=p;OXr$Uo=G3cR$qs66N8KG&^?!4Qj_;djnTH8Gag zhHfF+7Iy-1t?@5mc-3DtG3AI*ZjOHsf46sJT;e~0!B{-_&IZ{Yhbq#gE7(^?e+I2c~=6!-wfM`+oKr7CNNd|y)}l8`Hkynh=DSupuBiSRw9Byy2TclFW(L}oX0(F??+153Y(|Z- zO6W{B#Fk(IZr##4j0s|KfLoOMHgp7n!>MBhNy(FOOi11aeWpM43VlDxS$?({sNtJ} zSu!#IO7^5>BylYYpOWH`7q&?aJ~VYXH7z08D(}4Zs460V!y-y18h+4Y20=;H3|=rh z^Y1B$;bD+2)qoNUKdq9xp1u&%izW4lY&y>eRpz5i_S6=tR2NjdEj3$mSSUOt$(kEY z^g~5lW@u`Vy0G4!hAvth0|5%lt9nO{aQ+t5_5l-F-Tc&rluGoJjRxqfJdz=v)TMTL z7kRBnn#?-3GOF?F$&#t74x%-2O~l_Mw&?Ab3q<`eg*f?a4n1u|DGyn?XRw4cALQ=A zU4~(M`h4R^h55Vs2oUcQIC#O_!45oqqU}u+HZ!1E#6*IIr-N}4kTBIHSgiU{_?d|Y zewiG{gQ|%1dizQkrg-3*zd;Yt_jV#Xpp+zHB#c(_mAb5fxlh-Hxf z;+qjlju>(ZyT|v)R2c z<}#JfjGEWT9sGhZYZSl8dV+hj7s?osFTItL48Xl4S)kYN;nzXiiJf4`Xj$-ckgIoo zj3mUFM>~uIUf*93+bU@_aoEmU-POzYvOL=oi{6Go?ZlCi zAd`OBwyv-u6U%k!;$}A9OU07qAjXE+s1o*yLqILzhT!!=6vDr*K72Bimh43Zp86A) z?wk5(U!Gs`DN&=+7b`kAF(r<1?cA21eH0*(rWFNN`P|B9^y1^~rOhb(&*jodTJ^Fd zFO;{5mt~FLR9_+ss_s@O5d0GsE-u8)YOsLvc2CO539V_bJr{}BCDzqUQd`b)RV;k_ zd)KSAkNh&~ek`wIb|^vX$om=n0-eyOVy?d!cyd;>pAlxj=RN5iEm%ZOsqQpzOG+J7 zq4IdZs7KoSaBT)TY%|98du5WsTX;Dx&UaPZUKYO#wLDe&Q53o=*f+feBr_~+UN4;% zZ?LHhS6i^?uESwzwV{~$Oj%y^cqzBGVwL)sJzgREn+N;ge8N%fry8-Je(Ka>s%Iu2 zp++SlOrq+YQ7E_diWp@^kNYKO^72~YOP6$oeKuNh>;|zDg5Dy51g7ElqBJ`ew%*|w z5YT0{VhE_@wUf6yXp!h4)Q)ULH_{U!uZa;oC=_^??p4Yl)#MOM>CU~aUoCHLSM$WfI9dS-&Wdi1cC5_DfpqO zoh$Hz7wxM&sH08;Ufd$5zI%5SImb!e7d~aKo>p0sHoPYGg=-@vNB8NO_%$RG*>wbd zc{=Q4B}=~mdUJ&r16d1s>C&y}%|=t_tcAOV^pDenxB+@q`pI1D#MaAfkJNtG0avgr z26gc<0BVDymc9YYdd-mYjRWL;fZ19Lk#6|itn}a0*?)@g$zJL-tTCJ+7DZtt1tEmKnFW}L_FNlN znkw&of;Tr^S^Nvl?%%Y<|L^0#f7db3#KOSD`G4)^000hPI>S!H&dJ8W^e>y{nE;k5 z|G?qc|5&p8cO3Y4CFv3*dbNFoa_LcOH0uFN5`ux5|Gj zgX{0UQ0#vy{~x?>m;m-MfWN~EaOwJ!@Wcg(djbqr02t*zi_!XjV+?;=jelAOC+FY& zodDAs|5?VrR(b&zYySlUcImD;?r|pi)P%o4cFG1fDuqIWbjmq9i#BzXx3CxUSWe`m zhvj(WQIGGY%CDbx!WHDbAIl&jC9Fh+YcjT z*y51Ou(?Hle!n$)yuO;qED3wNb@EhCwopDFpE!HB0abW6&#AsW9U&Z35YSH$*zCS3 zh5VHHuE2{j{wW@zQ2ut2>GuIiz197Ea(IzB5f{xU&L?EMXt%}q%pW&u?k!I$L_#pD z(e3zU>v6(G^wRP}8>(ba_Xf3KO= zj#|~jVe(H_wM6fOy8SE+7O#`@+*VY?Q@r%%PTHF~it?vWdHyJNJ{u7+ zSkhN9X+iSM2%U`7pjLwi4bz=Ck35Q#f;7ONuMb~ZW!dy29WGcx-?#(3za+l{IJ+z+ zR8jU)_DUtwZ(miHD4K@+nj_3GBn!b1YX!{cT`Vd6?w*rx+Bh8KFNKZ*JstoBe^3pNC@ zz~{Oj2r!dMi5zort3OHd9q${MxFz!aoxE8H_BJ4%$^OxU`qTRBb1k(&@3rNLVj5P` zr9}{XIxx=&oH&RDRRAH+hGuT{@mDHqQ7+S&vm-!Su1Rz&FcC+TFGE)eGip>`rkp&G zf_JOta1`zBn*7H+nkK@Gko7|NgEDj~>F4ysVa>!W_1Q3X%CzaK==apn+y>Ts(_wen zen~9Wm%h7#rxEiMl<5nxeyp~EN$EED+s*JieO;JDu4Xv|q+l13Ue%59uOuiEye z-#0;BmRW24ObwjAMf=KXnkbjAw25u-7jddt#Cu_GIfm^9V!5rJQ|yNkz*hz0oH$0- zC*+unb%I-%z=?kmDdz*Dz6JK4iP5>Hb;G#NTE3xYuF*8Qlio=dcfBOu?N30p7EdAZ(_zf} zAl)*oVUSNAyungG07m-CxkI;J@S;!xyZ-^s31`2R=irB2g@gXU2p5X%0=hWI3L@viv@`e*no@K2fgA31HIJ(C<^pU_9I1udl-U`&_OR{e^oQC%)N?=Tim@1)G9G1Zwl50Dm1XI_aRw@*dCswg-)9D58gPMBWeae zwT^xgn!uwS37>$O2s4G;^F}?e-qZ>YQabG_9YTVU*h-dn?3s5{H9tj(7->m1facwI zN$a$#5EuA9z0=5QHa3(RG}JE}KD`XPK`aMJ ztY)F1@O{5QQr9W9H!tGSfNo1YpEK$we!w@OU0_sJgtuZpu z3J$IOQRqv(!;09!V)ta%TRY9`e2Ooo#6*pKIh!r|gsX!YG6^uhQYQcW?lc@WLJZVq z;cBUJLYHV>1cNV1AP09K;e`GY5(7@E`Yp=)k*S~L7$USO!57XL2rWC)3^tQOBK+Qi z^3l>=F%jc?h5i6467zNhPBUz0r2ej=8)1eENaiKNPWTMh!wPL>=ohDwSsEzyy}Kq6 zhX6$IN{c;a+s-!kIHK*|{1|Xmrm{-`%qv5sSqH_G%UP0A`Ztk$crTwCXe3;|=S83a zhnnApBuQfaPAM<44Rhcj-)?Fb99kLtv2P%W9gwa)<-z&qt;=;MrrFkVq{>uQ#P~Z- zj`_XqDrLIX@Knew78{!~(5%8w=ND`o)J8o}y?42>BEmWO;VTKX( zE@@$ul{$z8l#DM)79P^-FdIN#H{6EMC}$HE(NkCbid1tCJi=Wa#Yi*L4agO*Ahw!n zvjs-y%Rd{|T6Lwg$>T3o9CPExsOYrf6e=Un099$2#iJ415H8u$4+rrqEq#UGdu5H5 zFLr~+?d48w)G^eSB|!%C+}>{osG%R0QJnceBK>mP#^^g3lL@P8@*OP0T!vsCa-JD? z7+J4(_WdZ64zu+TR+<)|6~J?vFatLqb(svb&Enw41s9^NCxo$H^jUAC2Yvalnk0#n zNUbQb8GCme-Q_+nHcW6Q4~mGNsD~=Q3qyOWodt)o7jn^C%+9RQ`Pu1PNZffy;G&1EP*7J2_`kB&$vq}x@nI5D7a8xJ zr(^Nuo1D)KNob*E8Gg|)+a)+hlw%7ybh zhsi168rw=7C*~1;>6lupW2R3&Q!X-vg5q;tc;cEh%@g8k>(IZQFu|ElYOfhmaz^WT zj*JPcyneH z5qJ=TM~Lrd1O$O&>FS_Yi&I$bqqS2UaW27}PUb3EyiSeqq(dPBp4bjC7!Yg6l#XGu zVsGbLoSp=b=ZH9wvriU*pm`$E2ZLe0W3cjjK=+JsL3?a6?A}O(vF-H|8@xp;$IxGE+=qjf0aSG14;$lrRc~x z3lHO+yT?zC{4yJ1snq+U1xkdo!vcBVQFIW>pg6lge;-e#9NXQneptsN&9zO&M4voeOnjpIV{J8Md!%4R zGA4Fh%`e@MeGdpHM`1n&6OArlrX_1_;8{PxOd`}fpq$ex&5B$mxpad_Ry3-yJ*d`y zwMmbFzpOjD@KLKN`pW$I)9M!I8N6r*Lan@2yPWzbli9&-HNi=JtLkks%ZquFQgj<# zndV#81PmpWyIP&^q-i>ORv+DDAb-(HXzvY=c2d}YlRHRF8SB|x_O60mi;tUx8~<5z zjju^2p6>2aCw!kt$Q0#q#pNn|nmO+BmRPE7UD`Qn@gkx}vHUR{mBImi@6PVD$~vt< z4NnUrHi(xIZqH(v%Met_LRR?m==$fcA9?novuFz2olSx*HueNc4wWdI(g#CygVJu& zl*dQi4ZVoh!@NnpPI%=lP@W34Ds*ysEnjPHA)rdElNit?Q<0ghkioQQ7U$6>s%4H5 zqN@?`{QyBM*BmDj#T{O=_yr zH`Q()D!12%aT=X}u0wp$T*%t3&r;XYPCMA~X@^J~N*QR+-mP6v)BG_YJvlzLTQeEB zSty2i;96GLbQuz_DYHnSNUZ}^r2M%?qtN5Jk@tFucWKiC{Nd~gre0bRAJhKG2?~=@ z@N52LeHrCyqiv(Q6mb^ZMTk4Rr`*&WhCWezZ1$1&^!w+Yp7ocC?HPelZ9vd z^#y%gcsI?Hqi70Tm}gfKz%jXJQV|qXoS0{JO0zy0=Ex@BjtDO^UO2BnLAzB6l{zE5 z3wk<$@Wsfd;5*t=EVO{aPv@@aZi6Sd8jZ-DK))4+DpbgDE9URG5?LVnUte6mb$5VQ zx6&pwP?l$cab#bXq#L&9XSlDze@7vUyV3C?Rn;U;%0gMsU0w)W(D6Y$ttc1dGe~o8 zz>dvY@H$bQ&(P`mw84I`Z6P6S@tpMYmCD_Zr|$b+nhL6A>R+lh6x?kEwOnTW+fFff zHU-xEr4FlT;nG}woBV^6uV92M=dwLYOQ58{%uX6I#D1#(LG_{dln%b*zR3k%iyUh^El6|P06~_IHTs4l0xOao_QPB4wxp=(l+#qR5?HAma z;t^r+KvzG98yDU$*YRlOc%dZRFr|>*%3{DrEF(se z?+PGdek>{c3(4qMg!O#i=AFfIBNsA1hSSBTBmx4^OHAW@1zjLrl!F~!T7_?y>$An0 z1BMA5)6&|w%YUqE%YCIYfM2p)@)WlZZ5OgojOP~ZHdQcL7s)o^8F2ROPhP$+87N0< z1IK2pK>Gxr+Dv#r_-+)4zw0O5K;Q07cRTua25I4~VI@#)l#>Dz>W-TvW}L=lKDgal zFE%S6>4%0w_(8SJ6yoB>sWlxhm+se?1x<8eT{u*T!7%j9^wv4k=#ZY(W3RXSlMZ>^ z?l`x6fyDQOjJebDN7+kzVfU?*`!Mr}6LPyts@N!q{!_`fkJ{>sWV|8$vU)i4)CQ5> z=ekjfpJflh_ORt*v)hM#kiqY=xn$(D_Z@KuKo0_fSH+&_af6c2j__v%1b8mh$iQc= zWMNJC)^|ACL_@W0aJj$(fr(<@x@y)xK~y_xNNn3-pxPRC`g96hHDCu`!5UM4p0cys z;U1UB{X&Mw?_jkLDu*kfa_NS0!F18Y+MGYDx5^Q+YcbV8=m5^+%Vo;Uqpo(W*7q_H zf|4K~3GikX>TC18>?_!Y8@9n%0DYzubkmQ*5JRxD(m+>iIPri#w~$pW*ZG0ZdS$0= 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 z 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

      `A4TUEZQ9BXRS#h%8o%0ZB(dL&q*nD? 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

      R&3ZF>C8ulMOgs@E&b2P?^R+ovphi~ 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%0AeHZE#=4jL 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%0ArtNWUidAW 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 z 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 200 VDC 9.6 mm 6.4 mm 30.0 mm +Table 12 - Minimum Spacings23 + + +EV2.23 Insulation. +EV4.1.12 All electrical insulating material must be appropriate and adequately robust for the application in which it is used. +EV4.1.13 Insulating materials used for TS insulation or TS/GLV segregation must: +1. Be UL recognized (i.e., have an Underwriters Laboratories24 or equivalent rating and certification). +2. Must be rated for the maximum expected operating temperatures at the location of use, or the temperatures listed in Table 13 (whichever is greater). +3. Must meet the minimum thickness requirements listed in Table 13 +4. The TS/GLV requirement also applies to TS to chassis ground insulation. + + + Minimum Temperature Minimum Thickness TS / GLV +(see Note below) 150 C 0.25 mm TS / TS +TS/Chassis Ground +90 C As required to be rated for the full TS voltage +Table 13 - Insulating Material - Minimum Temperatures and Thicknesses + + +Note: For TS/GLV isolation, insulating material must be used in addition to any insulating covering provided by the wire manufacturer. +EV4.1.14 Insulating materials must extend far enough at the edges to meet spacing and creepage requirements between conductors. + + + +22 Outside of the accumulator container TS/TS spacing should comply with standard industry practice. +23 Teams that have pre-existing systems built to comply with Table 10 in the 2016 rules will be permitted +24 http://www.ul.com + +EV4.1.15 Thermoplastic materials such as vinyl insulation tape may not be used. Thermoset materials such as heat-shrink and self-fusing tapes (typically silicone) are acceptable. + + +Figure 36 - Creepage Distance Example + + +EV2.24 Printed circuit board (PCB) isolation +Printed circuit boards designed and/or fabricated by teams must comply with the following: +EV4.1.16 If tractive system circuits and GLV circuits are on the same circuit board they must be on separate, clearly defined areas of the board. Furthermore, the tractive system and GLV areas must be clearly marked on the PCB. +EV4.1.17 Prototyping boards having plated holes and/or generic conductor patterns may not be used for applications where both GLV and TS circuits are present on the same board. Bare perforated board may be used if the spacing and marking requirements in EV5.5.3 and EV5.5.1 are met, and if the board is removable for inspection. +EV4.1.18 Required spacings between TS and GLV conductors are shown in Table 14. If a cut or hole in the PC board is used to allow the "through air" spacing, the cut must not be plated with metal, and the distance around the cut must satisfy the "over surface" spacing requirement. Spacings between TS and GLV conductors on inner layers of PCBs may be reduced to the "through air" spacings. + + + +Maximum Vehicle TS Voltage Spacing Over surface Through air Under Conformal Coating +0-50 V 1.6 mm 1.6 mm 1 mm 50-150 V 6.4 mm 3.2 mm 2 mm 150-300 V 8.5 mm 6.4 mm 3mm 301-600V 12.7 mm 9.5 mm 4 mm +Table 14 - PCB TS/GLV Spacings + + +Note: Teams must be prepared to demonstrate spacings on team-built equipment. Information on this must be included in the ESF (EV13.1). If integrated circuits are used such as opto- couplers which are rated for the respective maximum tractive system voltage, but do not fulfill the required spacing, then they may still be used and the given spacing do not apply. This applies to the pin-to-pin through air and the pin-to-pin spacing over the package surface, but does not exempt the need to slot the board where pads would otherwise be too close. + +1. Teams must supply high resolution (min. 300 dpi at 1:1) digital photographs of team- designed boards showing: +(i) All layers of unpopulated boards (inner layers or top/bottom layers that don't photograph well can be provided as copies of artwork files.) +(ii) Both top and bottom of fully populated and soldered boards. +EV4.1.19 If dimensional information is not obvious (i.e. 0.1 in x 0.1 in spacing) then a dimensional reference must be included in the photo. Spare boards should be made available for inspection. Teams should also be prepared to remove boards for direct inspection if asked to do so during the technical inspection. +EV4.1.20 Printed circuit boards located inside the accumulator container and having tractive system connections on them must be fused to limited the power on the board to 600 watt or less, with the exception of precharge and discharge circuits. + +ARTICLE EV3 FUSING - GENERAL + +EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging system) must be appropriately fused. +EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating of any electrical component that it protects. This includes wires, bus bars, battery cells or other conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current rating may be used for TS wiring if greater than the Appendix E value. +Note: Many fuses have a peak current capability significantly higher than their continuous current capability. Using such a fuse allows using a relatively small wire for a high peak current, because the rules only require the wire to be sized for the continuous current rating of the fuse. +EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. +EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating equal to or greater than the maximum voltage of the system in which they are used25. +EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit current of the system that it protects. +EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an uncontrolled energy source (e.g., a battery). +Note: For this rule, a battery is considered an energy source even for wiring intended for charging the battery, because current could flow in the opposite direction in a fault scenario. +EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at the branching point, if the branch wire is too small to be protected by the main fuse for the circuit. +Note: For further guidance on fusing, see the Fusing Tutorial found here: https://drive.google.com/drive/u/0/search?q=fusing%20tutorial + + + + + + + + + + + + + + + + + + + +25 Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating must be specifically called out in order for the fuse to be accepted as DC rated. + +ARTICLE EV4 SHUTDOWN CIRCUIT AND SYSTEMS + +EV4.1 Shutdown Circuit +The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the flow of current through this loop is interrupted, the AIRs will open, disconnecting the vehicle's high voltage systems from the source of that voltage within the accumulator container. +Shutdown may be initiated by several devices having different priorities as shown in the following table. + + +Figure 37 - Priority of shutdown sources + + +EV4.1.28 The shutdown circuit must consist of at least: +1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 +2. Tractive System Master Switch (TSMS) See: EV7.4 +3. Two side mounted shutdown buttons (BRBs) See: EV7.5 +4. Cockpit-mounted shutdown button. See: EV7.6 +5. Brake over-travel switch. See: T7.3 +6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: +EV7.9 and Figure 38. +7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). See: EV2.11 and Figure 38. +8. All required interlocks. +9. Both IMD and AMS must use mechanical latching means as described in Appendix G. Latch reset must be by manual push button. Logic-controlled reset is not allowed. + +10. If CAN communication are used for safety functions, a relay controlled by an independent CAN watchdog device that opens if relevant CAN messages are not received. This relay is not required to be latching. +EV4.1.29 Any failure causing the GLV system to shut down must immediately deactivate the tractive system as well. +EV4.1.30 The safety shutdown loop must be implemented as a series connection (logical AND) of all devices included in EV7.1.1. Digital logic or microcontrollers may not be used for this function. Normally open auxiliary relays may be used to power high-current devices such as fans, pumps etc. The AIRs must be powered directly by the current flowing through the loop. +EV4.1.31 All components in the shutdown circuit must be rated for the maximum continuous current in the circuit (i.e. AIR and relay current). +Note: A normally-open relay may be used to control AIR coils upon application to the rules committee. +EV4.1.32 In the event of an AMS, IMD or Brake over-travel fault, it must not be possible for the driver to re-activate the tractive system from within the cockpit. This includes "cycling power" through the use of the cockpit shutdown button. +Note: Resetting or re-activating the tractive system by operating controls which cannot be reached by the driver26 is considered to be working on the car. +EV4.1.33 Electronic systems that contain internal energy storage must be prevented from feeding power back into the vehicle GLV circuits in the event of GLV shutdown. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +26 This would include the use of a wireless link remote from the vehicle. + + +*GLV fuse to comply with EV6.1.7 + +Figure 38 - Example Master Switch and Shutdown Circuit Configuration + + +EV4.2 Master Switches +EV4.1.34 Each vehicle must have two Master Switches: +1. Grounded Low Voltage Master Switch (GLVMS) +2. Tractive System Master Switch (TSMS). +EV4.1.35 Both master switches must be located on the right side of the vehicle, in proximity to the Main Hoop, at the driver's shoulder height and be easily actuated from outside the car. +EV4.1.36 Both master switches must be of the rotary type, with a red, removable key, similar to the one shown in Figure 39. +EV4.1.37 Both master switches must be direct acting. i.e. they may not operate through a relay. + +EV4.1.38 Removable master switches are not allowed, e.g. mounted onto removable body work. +EV4.1.39 The function of each switch must be clearly marked with "GLV" and "TSV". +EV4.1.40 The "ON" position of both switches must be parallel to the fore-aft axis of the vehicle + +EV4.3 Grounded Low Voltage Master Switch (GLVMS) +EV4.1.41 The GLVMS is the highest priority shutdown and must disable power to all GLV electrical circuits. This includes the alternator, lights, fuel pump(s), I.C. engine ignition and electrical controls. +EV4.1.42 All GLV current must flow through the GLVMS. +EV4.1.43 Vehicles with GLV charging systems such as alternators or DC/DC converters must use a multi-pole switch to isolate the charging source from the GLV as illustrated in Figure 3827. +EV4.1.44 The GLVMS must be identified with a label with a red lightning bolt in a blue triangle. (See +Figure 40) + +EV4.4 Tractive System Master Switch (TSMS) +EV4.1.45 The TSMS must open the Tractive System shutdown circuit. +EV4.1.46 The TSMS must be the last switch in the loop carrying the holding current to the AIRs. (See +Figure 38) + + + + + + +Figure 39 - Typical Master Switch + + + + + + +27 https://www.pegasusautoracing.com/productdetails.asp?RecID=1464 + + + +Figure 40 - International Kill Switch Symbol + + +EV4.5 Side-mounted Shutdown Buttons (BRB) +The side-mounted shutdown buttons (Big Red Buttons - or BRBs) are the first line of defense for a vehicle that is malfunctioning or in trouble. Corner and safety workers are instructed to push the BRB first when responding to an emergency. +EV4.1.47 One button must be located on each side of the vehicle behind the driver's compartment at approximately the level of the driver's head. They must be installed facing outward and be easily visible from the sides of the car. +EV4.1.48 The side-mounted BRBs must be red and a minimum of 38 mm. in diameter. +EV4.1.49 The side-mounted shut-down buttons must be a push-pull or push-rotate emergency switch where pushing the button opens the shutdown circuit. +EV4.1.50 The side-mounted shutdown buttons must shut down all electrical systems with the exception of the high-current connection to the engine starter motor. +EV4.1.51 The shut-down buttons may not act through logic such as a micro-controller or relays. +EV4.1.52 The shutdown buttons may not be easily removable, e.g. they may not be mounted onto removable body work. +EV4.1.53 The Side-mounted BRBs must be identified with a label with a red lightning bolt in a blue triangle. (See Figure 40) + +EV4.6 Cockpit Shutdown Button (BRB) +EV4.1.54 One shutdown button must be mounted in the cockpit and be easily accessible by the driver while fully belted in and with the steering wheel in any position. +EV4.1.55 The cockpit shut-down button must be a push-pull or push-rotate emergency switch where pushing the button opens the shutdown circuit. The cockpit shutdown button must be red and at least 24 mm in diameter. +EV4.1.56 Pushing the cockpit mounted button must open the AIRs and shut down the I.C. engine. (See: +Figure 37) + +EV4.1.57 The cockpit shutdown button must be driver resettable. i.e. if the driver disables the system by pressing the cockpit-mounted shutdown button, the driver must then be able to restore system operation by pulling the button back out. +Note: There must still be one additional action by the driver after pulling the button back out to reactivate the motor controller per EV7.7.2. +EV4.1.58 The cockpit shut-down buttons may not act through logic such as a micro-controller or relays. + +EV4.7 Vehicle Start button +EV4.1.59 The GLV system must be powered up before it is possible to activate the tractive system shutdown loop. +EV4.1.60 After enabling the shutdown circuit, at least one action, such as pressing a "start" button must be performed by the driver before the vehicle is "ready to drive". i.e. it will respond to any accelerator input. +EV4.1.61 The "start" action must be configured such that it cannot inadvertently be left in the "on" position after system shutdown. + +EV4.8 Shutdown system sequencing +EV4.1.62 A recommended sequence of operation for the shutdown circuit and related systems is shown in the form of a state diagram in Figure 41. +EV4.1.63 Teams must: +1. Demonstrate that their vehicle operates according to this state diagram, +OR +2. Obtain approval for an alternative state diagram by submitting an electrical rules query on or before the ESF submission deadline, and demonstrate that the vehicle operates according to the approved alternative state diagram. + + + + +Figure 41 - Example Shutdown State Diagram + + +EV4.9 Insulation Monitoring Device (IMD) +EV4.1.64 Every car must have an insulation monitoring device installed in the tractive system. +EV4.1.65 The IMD must be designed for Electric Vehicle use and meet the following criteria: robustness to vibration, operating temperature range, availability of a direct output, a self-test function, and must not be powered by the system that is monitored. The IMD must be a stand-alone unit. +IMD functionality integrated in an AMS is not acceptable (Bender A-ISOMETER (r) iso-F1 IR155-3203, IR155-3204, and Iso175C-32-SS are recommended examples). +EV4.1.66 The response value of the IMD needs to be set to no less than 500 ohm/volt, related to the maximum tractive system operation voltage. +EV4.1.67 In case of an insulation failure or an IMD failure, the IMD must shut down all the electrical systems, open the AIRs and shut down the I.C. drive system. (Some GLV systems such as accumulator cooling pumps and fans, may remain energized - See Figure 37) +EV4.1.68 The tractive system must remain disabled until manually reset by a person other than the driver. It must not be possible for the driver to re-activate the tractive system from within the car in case of an IMD-related fault. +EV4.1.69 Latching circuitry added by teams to comply with EV7.9.5 must be implemented using electro-mechanical relays. (See Appendix G - Example Relay Latch Circuits.) + +EV4.1.70 The status of the IMD must be displayed to the driver by a red indicator light in the cockpit. (See EV9.4). The indicator must show the latched fault and not the instantaneous status of the IMD. +Note: The electrical inspectors will test the IMD by applying a test resistor between tractive system (positive or negative) and GLV system ground. This must deactivate the system. +Disconnecting the test resistor may not re-activate the system. i.e. the tractive system must remain inactive until it is manually reset. +EV4.1.71 The IMD high voltage sense connections may be unfused if wiring is less than 30 cm in length, is less than or equal to #16 wire gauge, has an insulation voltage rating of at least 600V, and is "double insulated" (e.g. has additional sleeving on both conductors). If any of these conditions is not met, the IMD HV sense connections must be fused in accordance with EV3.2.3 and ARTICLE EV6. + +ARTICLE EV5 GROUNDING + +EV4.10 General +EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a resistance below 300 mO to GLV system ground. +Accessible parts are defined as those that are exposed in the normal driving configuration or when the vehicle is partially disassembled for maintenance or charging. +EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon fiber parts, etc.) that could potentially become energized (including post collision or accident), no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system ground. +NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or similar modifications to keep the ground resistance below 100 ohms. +EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV system ground. +EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 AWG and be stranded. +Note: For GLV system grounding conductor size see EV4.1.4. +EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the vehicle which is likely to be conductive, for example the driver's harness attachment bolts. +Where no convenient conductive point is available then an area of coating may be removed. +Note: If the resistance measurement displayed by a conventional two-wire meter is slightly higher than the requirement, a four-terminal measurement technique may be used. If the four- terminal measurement (which is more accurate) meets the requirement, then the vehicle passes the test. +See: https://en.wikipedia.org/wiki/Four-terminal_sensing +EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS communication) will be required to document and demonstrate shutdown equivalent to BRB operation if CAN communication is interrupted. A solution to this requirement may be a separate device with relay output that monitors CAN traffic. + +ARTICLE EV6 SYSTEM STATUS INDICATORS + +EV4.11 Tractive System Active Lamp (TSAL) +EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop which must be lit and clearly visible any time the AIR coils are energized. +EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green for TS not present are also acceptable. +EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. +EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. +EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles which are covered by the main roll hoop) even in very bright sunlight. +EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The person's minimum eye height is 1.6 m. +NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily visible during track operations the team may not be allowed to compete in any dynamic event before the problem is solved. +EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. +EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator containers is above a threshold calculated as the higher value of 60V or 50% of the nominal accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at voltages below 20V. The TSAL system must be powered entirely by the tractive system and must be directly controlled by voltage being present at the output of the accumulator (no software control is permitted). +EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. +Note: This requirement may be met by locating an isolated dc-dc converter inside a TS enclosure, and connecting the output of the dc-dc converter to the lamp. +(Because the voltage driving the lamp is considered GLV, one side of the voltage driving the lamps must be ground-referenced by connecting it to the frame in order to comply with EV4.1.4.) + +EV4.12 Ready-to-Drive Sound +EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 seconds, when it is ready to drive. (See EV7.7) +Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque encoder / accelerator pedal. +EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter28. +EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one in the front, and one from each side of the vehicle. + + + +28 Some compliant devices can be found here: https://www.mspindy.com/ + +EV6.1.13 The vehicle must not make any other sounds similar to the Ready-to-Drive sound. + +EV4.13 Electrical Systems OK Lamps (ESOK) +ESOK indicator lamps are required for hybrid and hybrid-in-progress vehicles. They are not required for electric-only vehicles. +The purpose of the ESOK indicators is to ensure that a hybrid vehicle is operating with the electric traction system engaged, and to prevent IC-only operation in dynamic events. + This requirement is in addition to TSAL indicators which are required for all vehicle classes. +EV6.1.14 Hybrid vehicles must have two ESOK lamps. One mounted on each side of the roll bar in the vicinity of the side-mounted shutdown buttons (EV7.5) that can easily be seen from the sides of the vehicle.The indicators must be Amber, complying with DOT FMVSS 108 for trailer clearance lamps29. See Figure 42. They must be clearly labeled "ESOK". +EV6.1.15 The ESOK indicators must be powered from the circuit feeding the AIR (contactor) coils. If there is an electrical system fault, or a "BRB" is pressed, or the TS master switch is opened, the ESOK indicators must extinguish. See Figure 38 for an example of ESOK lamp wiring. +See Figure 38 for an example of ESOK lamp wiring. + + + +Figure 42 - Typical ESOK Lamp + + +EV4.14 Insulation Monitoring Device (IMD) +EV6.1.16 The status of the IMD must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must light up if the IMD detects an insulation failure or if the IMD detects a failure in its own operation e.g. when it loses reference ground. +EV6.1.17 The IMD indicator light must be clearly marked with the lettering "IMD" or "GFD" (Ground Fault Detector). + +EV4.15 Accumulator Voltage Indicator +EV6.1.18 Any removable accumulator container must have a prominent indicator, such as an LED, that is visible through a closed container that will illuminate whenever a voltage greater than 60 VDC is present at the vehicle side of the AIRs. +EV6.1.19 The accumulator voltage indicator must be directly controlled by voltage present at the container connectors using analog electronics. No software control is permitted. + + + +29 https://www.ecfr.gov/cgi-bin/text-idx?node=se49.6.571_1108 + +EV4.16 Accumulator Monitoring System (AMS) +EV6.1.20 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must light up if the AMS detects an accumulator failure or if the AMS detects a failure in its own operation. +EV6.1.21 The AMS indicator light must be clearly marked with the lettering "AMS". + +ARTICLE EV5 ELECTRICAL SYSTEM TESTS + +Note: During electrical tech inspection, these tests will normally be done in the following order: IMD test, insulation measurement, AMS function then Rain test. + +EV5.1 Insulation Monitoring Device (IMD) Test +EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive vehicle parts while the tractive system is active, as shown in the example below. +EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault resistance of 250 ohm/volt (50% below the response value). +Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. +EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take part in any dynamic event if any of the seals are broken until the IMD test is successfully passed again. + + + +Figure 43 - Insulation Monitoring Device Test + + +EV5.2 Insulation Measurement Test +EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive system and control system ground. The available measurement voltages are 250 V, 500 V and 750 V DC. +All cars will be measured with the next available voltage level. For example, a 175 V system will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V system will be measured with 750 V etc. +EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least 500 ohm/volt related to the maximum nominal tractive system operation voltage. + +EV5.3 Tractive System Measuring Points (TSMP) +The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, +EV2.8.3. + +They may also be used to ensure the isolation of the tractive system of the vehicle during possible rescue operations after an accident or when work on the vehicle is to be done. +EV6.1.27 Two tractive system voltage measuring points must be installed in an easily accessible30 well marked location. Access must not require the removal of body panels. The TSMP jacks must be marked "Gnd", "TS+" and "TS-". +EV6.1.28 The TSMPs must be protected by a non-conductive housing that can be opened without tools. +EV6.1.29 Shrouded 4 mm banana jacks that accept shrouded (sheathed) banana plugs with non- retractable shrouds must be used for the TSMPs and the system ground measuring point (EV10.3.6). +See Figure 44 for examples of the correct jacks and of jacks that are not permitted because they do not accept the required plugs (also shown). +EV6.1.30 The TSMPs must be connected, via current limiting resistors, to the positive and negative motor controller/inverter supply lines. (See Figure 38) The TSMP must measure motor controller input voltage even if segmenting or TSMS switches are opened. +EV6.1.31 The wiring to each TSMP must be protected with a current limiting resistor sized per Table 15. (Fuses or other forms of overcurrent protection are not permitted). The resistor must be located as close to the voltage source as practical and must have a power rating of: + +Maximum TS Voltage Resistor Value <= 200 V** 5 kO 201 - 400 V 10 kO 401 - 600 V 15 kO +Table 15-TSMP Resistor Values31 + + + The resistor must be located as close to the voltage source as practical and must have a power rating of: +2 (????????????2) +?? + + +but not less than 5 W. +EV6.1.32 A GLV system ground measuring point must be installed next to the TSMPs. This measuring point must be connected to the GLV system ground, must be a 4 mm shrouded banana jack and marked "GND". + + + + + + +30 It should be possible to insert a connector with one hand while standing next to the car. +31 Teams with vehicles with Maximum TS Voltage of 200 V or less may use existing 10 kO resistor values upon application to the rules committee + + + + +Figure 44 + + + + +EV5.4 Accumulator Monitoring System (AMS) Test +EV6.1.33 The AMS will be tested in one of two ways: +1. By varying AMS software setpoints so that actual cell voltage is above or below the trip limit. +2. The AMS may be tested by varying simulated cell voltage to the AMS test connector, following open accumulator safety procedures, to make the actual cell voltage above or below the trip limit. +EV6.1.34 The requirement for an AMS test port for commercial accumulator assemblies may be waived, or alternate tests may be substituted, upon application to the rules committee. + + +EV5.5 Rain test +EV6.1.35 Vehicles that pass the rain test will receive a "Rain Certified" sticker and may be operated in damp or wet conditions. See: ARTICLE D3 +If a vehicle does not pass the rain test, or if the team chooses to forego the rain test, then the vehicle is not rain certified and will not be allowed to operate in damp or wet conditions. +EV6.1.36 During the rain test: +1. The tractive system must be active. +2. It is not allowed to have anyone seated in the car. +3. The vehicle must be on stands such that none of the driven wheels touch the ground. +EV6.1.37 Water will be sprayed at the car from any possible direction for 120 seconds. The water spray will be rain-like. There will be no high-pressure water jet directed at the car. +EV6.1.38 The test is passed if the IMD does not trip while water is sprayed at the car and for 120 seconds after the water spray has stopped. Therefore, the total time of the rain test is 240 seconds, 120 seconds with water-spray and 120 seconds without. + +EV6.1.39 Teams must ensure that water cannot accumulate anywhere in the chassis. + +ARTICLE EV1 POUCH TYPE LITHIUM-ION CELLS + + + +EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion and compression requirements, mechanical constraint, and tab connections. +EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, for review, in their ESF1 and ESF2 submissions. + +ARTICLE EV6 HIGH VOLTAGE PROCEDURES & TOOLS + + +EV6.1 Working on Tractive Systems or accumulators +EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and that all team members know and follow. +EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated by using the maintenance plugs. (See EV2.7). +EV6.1.42 If the organizers have provided a "Designated Charging Area", then opening of or working on accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical Tech Inspection. +EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. +EV6.1.44 Whenever the accumulator is open or being worked on, a "Danger High Voltage" sign (or other warning device provided by the organizers) must be displayed. +Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. + +EV6.2 Charging +EV6.1.45 If the organizers have provided a "Designated Charging Area", then charging tractive system accumulators is only allowed inside this area. +EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a (minimum) 16 AWG green wire during charging. +Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the competition site. +EV6.1.47 If the organizers have provided "High Voltage" signs and/or beacons, these must be displayed prominently while charging. +EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable accumulator container. +EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the accumulators are charged externally or internally) must have a prominent sign with the following data: +1. Team name +2. RSO Name with cell phone number(s). +EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed. + +EV6.1.51 All connections of the charger(s) must be isolated and covered, with intact strain relief and no fraying of wires. +EV6.1.52 No work is allowed on any of the car's systems during charging if the accumulators are charging inside of or connected to the car. +EV6.1.53 No grinding, drilling, or any other activity that could produce either sparks or conductive debris is allowed in the charging area. +EV6.1.54 At least one team member who has knowledge of the charging process must stay with the accumulator(s) / car during charging. +EV6.1.55 Moving accumulator cells and/or stack(s) around at the event site is only allowed inside a completely closed accumulator container. +EV6.1.56 High Voltage wiring in an offboard charger does not require conduit; however, it must be a UL listed flexible cable that complies with NEC Article 400; jacketed. +EV6.1.57 The vehicle charging connection must be appropriately fused for the rating of its connector and cabling in accordance with EV6.1.1. +EV6.1.58 The vehicle charging port must only be energized when the tractive system is energized and the TSAL is flashing. +i.e. there must be no voltage present on the charging port when the tractive system is de- energized. +EV6.1.59 If charging on the vehicle, AMS and IMD systems must be active during charging. The external charging system must shut down if there is an AMS or IMD fault, or if one of the shutdown buttons (See EV7.5) is pressed. If charging off the vehicle, equivalent AMS and IMD protection must be provided. If charging off the vehicle, the charging cart and any exposed metal must be connected to ac-power ground. + +EV6.3 Accumulator Container Hand Cart +EV6.1.60 In case removable accumulator containers are used in order to accommodate charging, a hand cart to transport the accumulators must be presented at Electrical Tech Inspection. +EV6.1.61 The hand cart must have a brake such that it can only be released using a dead man's switch, + i.e. the brake is always on except when someone releases it by pushing a handle for example. EV6.1.62 The brake must be capable to stop the fully loaded accumulator container hand cart. EV6.1.63 The hand cart must be able to carry the load of the accumulator container(s). +EV6.1.64 The hand cart(s) must be used whenever the accumulator container(s) are transported on the event site. + +EV6.4 Required Equipment +Each team must have the following equipment accessible at all times during the event. The equipment must be in good condition, and must be presented during technical inspection. (See also Appendix F) +1. Multimeter rated for CAT III use with UL approval. (Must accept shrouded banana leads.) +2. Multimeter leads rated for CAT III use with shrouded banana leads at one end and probes at the other end. The probes must have finger guards and no more than 3 mm of + +exposed metal. (Heat shrink tubing may be used to cover additional exposed metal on probes.) +3. Multimeter leads rated for CAT III use with shrouded banana plugs at both ends. +4. Insulated tools. (i.e. screwdrivers, wrenches etc. compatible with all fasteners used inside the accumulator housing.) +5. Face shield which meets ANSI Z87.1-2003 +6. HV insulating gloves (tested within the last14 Months) plus protective outer gloves. +7. HV insulating blanket(s) of sufficient size and quantity to cover the vehicle's accumulator(s). +8. Safety glasses with side shields (ANSI Z87.1-2003 compliant) for all team members. + +Note: All electrical safety items must be rated for at least the maximum tractive system voltage. + +ARTICLE EV7 REQUIRED ELECTRICAL DOCUMENTATION + +EV7.1 Electrical System Form - Part 1 +Part 1 of the ESF requests preliminary design information. This is so that the technical reviewers can identify areas of concern early and provide feedback to the teams. + +EV7.2 Electrical System Form - Part 2 +Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. This information must be reentered in Part 2. However it is not expected that the fields will contain identical information, since many aspects of a design will change as a project evolves. +EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the voltage level, the topology, the wiring in the car and the construction and build of the accumulator(s). +EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and show that none of these ratings are exceeded (including wiring components). This includes stress caused by the environment e.g. high temperatures, vibration, etc. +EV6.1.67 A template containing the required structure for the ESF will be made available online. +EV6.1.68 The ESF must be submitted as a Microsoft Word format file. + +ARTICLE EV7 - ACRONYMS + +AC Alternating Current +AIR Accumulator Isolation Relay +AMS Accumulator Management System +BRB Big Red Buttons (Emergency shutdown switches) +ESF Electrical System Form ESOK Electrical Systems OK Lamp GLV Grounded Low Voltage +GLVMS Grounded Low Voltage Master Switch +HVD High Voltage Disconnect +IMD Insulation Monitoring Device +PCB Printed Circuit Board +SMD Segment Maintenance Disconnect +TS Tractive System +TSMP Tractive System Measuring Point TSMS Tractive System Master Switch TSV Tractive System Voltage +TSAL Tractive System Active Lamp + +PART S1 - STATIC EVENTS + +Presentation 150 points Design 200 points Total 350 points Table 15 - Static Event Maximum Scores + +ARTICLE S1 TECHNICAL INSPECTION + +1S1.1 Objective +1S1.1.1 The objective of technical inspection is to determine if the vehicle meets the FH+E rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules. +1S1.1.2 For purposes of interpretation and inspection the violation of the intent of a rule is considered a violation of the rule itself. +1S1.1.3 Technical inspection is a non-scored activity. +1S1.2 Inspection & Testing Requirement +1S1.2.1 Each vehicle must pass all parts of technical inspection and testing, and bear the inspection stickers, before it is permitted to participate in any dynamic event or to run on the practice track. The exact procedures and instruments employed for inspection and testing are entirely at the discretion of the Chief Technical Inspector. +1S1.2.2 Technical inspection will examine all items included on the Inspection Form found on the Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) plus any other items the inspectors may wish to examine to ensure conformance with the Rules. +1S1.2.3 All items on the Inspection Form must be clearly visible to the technical inspectors. 1S1.2.4 Visible access can be provided by removing body panels or by providing removable access +panels. +1S1.2.5 Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification and Repairs, it must remain in the "As-approved" condition throughout the competition and must not be modified. +1S1.2.6 Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final and are not permitted to be appealed. +1S1.2.7 Technical inspection is conducted only to determine if the vehicle complies with the requirements and restrictions of the Formula Hybrid + Electric rules. +1S1.2.8 Technical approval is valid only for the duration of the specific Formula Hybrid + Electric competition during which the inspection is conducted. +1S1.3 Inspection Condition +Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, complete and ready-to-run. Technical inspectors will not inspect any vehicle presented for inspection in an unfinished state. +This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). +Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished. +1S1.4 Inspection Process +Vehicle inspection will consist of five separate parts as follows: +(a) Part 1: Preliminary Electrical Inspection +Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the Preliminary Electrical Inspection. +(b) Part 2: Scrutineering - Mechanical + +Each vehicle will be inspected to determine if it complies with the mechanical and structural requirements of the rules. This inspection will include examination of the driver's equipment (ARTICLE T5) a test of the emergency shutdown response time (Rule T4.9) and a test of the driver egress time (Rule T4.8). +The vehicle will be weighed, and the weight placed on a sticker affixed to the vehicle for reference during the Design event. +(c) Part 3: Scrutineering - Electrical +Each vehicle will be inspected for compliance with the electrical portions of the rules. +Note: This is an extensive and detailed inspection. Teams that arrive well-prepared can reduce the time spent in electrical inspection considerably. +The electrical inspection will include all the tests listed in EV9.5.1. +Note: In addition to the electrical rules contained in this document, the electrical inspectors will use SAE Standard J1673 "High Voltage Automotive Wiring Assembly Design" as the definitive reference for sound wiring practices. +Note: Parts 1, 2 and 3 must be passed before a vehicle may apply for Part 4 or Part 5 inspection. +(d) Part 4: Tilt Table Tests +Each vehicle will be tested to insure it satisfies both the 45 degree (45) fuel and fluid tilt requirement (Rule T8.5.1) and the 60 degree (60) stability requirement (Rule T6.7). +(e) Part 5: Noise, Master Switch, and Brake Tests. +Noise will be tested by the specified method (Rule IC3.2). If the vehicle passes the noise test then its master switches (EV7.2) will be tested. +Once the vehicle has passed the noise and master switch tests, its brakes will be tested by the specified method (see Rule T7.2). +1S1.5 Correction and Re-inspection +1S1.5.1 If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, then the team must correct the problem and have the car re-inspected. +1S1.5.2 The judges and inspectors have the right to re-inspect any vehicle at any time during the competition and require correction of non-compliance. +1S1.6 Inspection Stickers +Inspection stickers issued following the completion of any part of technical inspection must be placed on the upper nose of the vehicle as specified in T13.4 "Technical Inspection Sticker Space". +Inspection stickers are issued contingent on the vehicle remaining in the required condition throughout the competition. Inspection stickers may be removed from vehicles that are not in compliance with the rules or which are required to be re-inspected. + +ARTICLE S2 PROJECT MANAGEMENT + +1S2.1 Project Management Objective +The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team's ability to structure and execute a project management plan that helps the team define and meet its goals. +A well written project management plan will not only aid each team in producing a functional, rules compliant race car on-time, it will make it much easier to create the Change Management Report and Final Presentation components of the Project Management Event. +Several resources are available to guide work in these areas. They can be found in Appendix C. +No team should begin developing its project management plan without FIRST: +(a) Reviewing "Application of the Project Management Method to Formula Hybrid + Electric", by Dr. Edward March, former Formula Hybrid + Electric Chief Project Management Judge. +(b) Viewing in its entirety Dr. March's 12-part video series"Formula Hybrid + Electric Project Management". +(c) Reading "Formula Hybrid + Electric Project Management Event Scoring Criteria", found in Appendix C of the Formula Hybrid + Electric Rules. +(d) Watching an example of a "perfect score" presentation, from a previous competiton. +1S2.2 Project Management Segments +The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of a written project plan (2) a written change management report, and, (3) an oral final presentation assessing the overall project management experience to be delivered before a review board at the competition. + + +Segment Points Project Plan Report 55 Change Management Report 40 Presentation 55 Total 150 +Table 16 - Project Management Scoring + + +1S2.3 Submission 1 -- Project Plan Report +1S2.3.1 Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that reflects its goals and objectives for the upcoming competition, the management structure, the tasks that will be required to accomplish these objectives, and the time schedule over which these tasks will be performed. The topics covered in the Project Plan Report should include: +(a) Scope: What will be accomplished, "SMART" goals and objectives (see Appendix C for more information), major deliverables and milestones. + +(b) Operations: Organization of the project team, Work Breakdown Structure, project timeline, and a budget and funding strategy. +(c) Risk Management: tasks expected to be particularly difficult for the team, but whose completion is essential for achieving team goals and having a functional car ready before shipment to the track; contingency plans to mitigate these risks if problems arise during project execution. +(d) Expected Results: Team goals and objectives quantified into "measure of success". These attributes are useful for assigning task priorities and allocating resources during project execution. They are also used to determine the extent to which the goals have been achieved. +(e) Change Management Process: The system designed by the team for administering project change and maintaining communication across all team members. +1S2.3.2 This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of text. Appendices with supporting information may be attached to the back of the Project Plan. +Note 1: Title pages, appendices and table-of-contents do not count as "pages". +Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date. +Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project Management judges a one half hour online review session may be made available to each team. + +1S2.4 Submission 2 - Change Management Report + +1S2.4.1 Following completion and acceptance of the formal project plan by student team members, the project team begins the execution phase. During this phase, members of the student team and other stakeholders must be updated on progress being made and on issues identified that put the project schedule at risk. The ability of the team to change direction or "pivot" in the face of risks is often a key factor in a team's successful completion of the project. Changes to the plan are adopted and formally communicated through a change management report. Each team must submit one change management report. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date. +1S2.4.2 These reports are not lengthy but are intended to clearly and concisely communicate the documented changes to the project scope and plan to the team that have been approved using the Change Management Process. See Appendix C for details on scoring criteria for this report. The topics covered in the progress report should include: +A) Change Management Process: Detail the Change Management processes and platforms used by the team. At a minimum, the report is expected to cover: +a. what triggers the process +b. how does information flow through the process +c. how are final decisions transmitted to all team members +d. team-created process flow diagram + +B) Implementation of the Change Management Process: Teams are expected to review in detail how the Change Management Process has been used to modify at least one of their project's main components (Scope or Goals, Operational Plan, Risk Management, and Expected Results). The report is expected to cover an example from start to finish in the process and should also detail the final impact to the project. +C) Effectiveness of and Improvements to the Change Management Process: At the end of the project lifecycle, the team is expected to perform an assessment on the effectiveness of their Change Management Process. Through this assessment, the team should identify at least two areas of opportunity to improve the process and include the plans/details to implement those changes. + + +1S2.4.3 The Change Management Report must not exceed two (2) pages. Appendices may be included with the Report +Note 1: Appendix content does not count as "pages". +Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- hybrid.org/deadlines for the due date of the Change Management Report. +1S2.5 Submission Formats +1S2.5.1 The Project Plan and Change Management Report must be submitted electronically in separate Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, drawings, and optional content). +1S2.5.2 These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g.: + + 999_University of SAE_Project Plan.doc(x) 999_University of SAE_ChangeManagement.doc(x) + +1S2.6 Submission Deadlines +The Project Plan and Change Management Report must be submitted by the date and time shown in the Action Deadlines. Submission instructions are in section A9.2. +See section A9.3 for late submission penalties. +1S2.7 Presentation +1S2.7.1 Objective: Teams must convince a review board that the team's project has been carefully planned and effectively and dynamically executed. +1S2.7.2 The Project Management presentation will be made on the static events day. Presentation times will be scheduled by the organizers and either posted in advance on the competition website or released during on-site registration (or both). +Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable. 1S2.7.3 Teams that fail to make their presentation during their assigned time period will receive zero +(0) points for that section of the event. + +Note: Teams are encouraged to arrive fifteen (15) minutes prior to their scheduled presentation time to deal with unexpected technical difficulties. +The scoring of the event is based on the average of the presentation judging forms. +1S2.8 Presentation Format +The presentation judges should be regarded as a project management or executive review board. 1S2.8.1 Evaluation Criteria - Project Management presentations will be evaluated based on team's +accomplishments in project planning, execution, change management, and succession planning. Presentation organization and quality of visual aids as well as the presenters' delivery, timing and the team's response to questions will also be factors in the evaluation. +1S2.8.2 One or more team members will give the presentation to the judges. It is strongly suggested, although not required, that the project manager accompany the presentation team. All team members who will give any part of the presentation, or who will respond to the judge's questions, must be in the podium area when the presentation starts and must be introduced to the judges. Team members who are part of this "presentation group" may answer the judge's questions even if they did not speak during the presentation itself. +1S2.8.3 Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, posters, etc. to convey information relevant to their project management case that cannot be contained within a 12-minute presentation. +1S2.8.4 The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt the presentation itself. +1S2.8.5 Feedback on presentations will take place immediately following the eight (8) minute question and answer session. Judges and any team members present may ask questions. The maximum feedback time for each team is eight (8) minutes. +1S2.8.6 Formula Hybrid + Electric may record a team's presentation for publication or educational purposes. Students have the right to opt out of being recorded - however they must notify the chief presentation judge in writing prior to the beginning of their presentation. +1S2.9 Data Projection Equipment +Projection equipment is provided by the organizers. However, teams are advised to bring their own computer equipment in the event the organizer's equipment malfunctions or is not compatible with their presentation software. +1S2.10 Scoring Formula +The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is then normalized as follows: + +?????????? ?????????????? ???????????????????? ?????????? = 150 * (??????????/????????) + + +Where: + + +Pmax is the highest point score awarded to any team +Pyour is the point score awarded to your team. + + + +Notes: + +1. It is intended that the scores will range from near zero (0) to one hundred and fifty (150) points, providing a good separation range. +2. The Project Management Presentation Captain may at her/his discretion normalize the scores of different presentation judging teams for consistency in scoring. +3. Penalties associated with late submittals (see A9.3 "Late Submission Penalties") are applied after the scores are normalized up to a maximum of the team's normalized Project Management Score. + + +ARTICLE S3 DESIGN EVENT + +1S3.1 Design Event Objective +The concept of the design event is to evaluate the engineering effort that went into the design of the car (or the substantial modifications to a prior year car), and how the engineering meets the intent of the market. The car that illustrates the best use of engineering to meet the design goals and the best understanding of the design by the team members will win the design event. +Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and that in the Design event, teams are evaluated on their design. Components and systems that are incorporated into the design as finished items are not evaluated as a student designed unit, but are only assessed on the team's selection and application of that unit. For example, teams that design and fabricate their own shocks are evaluated on the shock design itself as well as the shock's application within the suspension system. Teams using commercially available shocks are evaluated only on selection and application within the suspension system. +1S3.2 Submission Requirements +1S3.2.1 Design Report - Judging will start with a Design Review before the event. +The principal document submitted for the Design Review is a Design Report. This report must not exceed ten (10) pages, consisting drawings (see S3.4, "Vehicle Drawings") and content to be defined by the team (photos, graphs, etc...). +This document should contain a brief description of the vehicle and each category listed in Appendix D with the majority of the report specifically addressing the engineering, design features, and vehicle concepts new for this year's event. Include a list of different analysis and testing techniques (FEA, dynamometer testing, etc.). +Evidence of this analysis and back-up data should be brought to the competition and be available, on request, for review by the judges. These documents will be used by the judges to sort teams into the appropriate design groups based on the quality of their review. +Comment: Consider your Design Report to be the "resume of your car". +1S3.2.2 Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the FH+E website. (Do not alter or re-format the template prior to submission.) +Note: The design judges realize that final design refinements and vehicle development may cause the submitted figures to diverge slightly from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate. + +The Design Report and the Design Spec Sheet, while related documents, must stand alone and be considered two (2) separate submissions. Two separate file submissions are required. +1S3.3 Sustainability Requirement +1S3.3.1 Instead of a Sustainability Report please add a Sustainability section to the Design Report answering both of the following prompts: +(a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How have you improved these quantities compared to previous year vehicles? How might you improve this in your next vehicle? What components or design decisions are the biggest contributors to the emissions or efficiency, positively or negatively? +(b) How does the vehicle's design and construction contribute to the recyclability and re-use of your vehicle, especially when it comes to accumulator storage? +1S3.4 Vehicle Drawings +1S3.4.1 The Design report must include all of the following drawings: +(a) One set of 3 view drawings showing the vehicle from the front, top, and side. +(b) A schematic of the high voltage wiring showing the wiring between the major components. (See section EV13.1) +(c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all major high voltage components and the routing of high voltage wiring. The components shown must (at a minimum) include all those listed in the major sections of the ESF (See section EV13.1) +1S3.5 Submission Formats +1S3.5.1 The Design Report must be submitted electronically in Adobe Acrobat(tm) Format files (*.pdf file). These documents must each be a single file (text, drawings, and optional content). These Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E assigned car number and the complete school name, e.g.: +999_University of SAE_Design.pdf + + +1S3.5.2 Design Spec Sheets must be submitted electronically in Microsoft Excel(tm) Format. The format of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g. +999_University of SAE_Specs.xls (or) + +999_University of SAE_Specs.xlsx + +WARNING - Failure to exactly follow the above submission requirements may result in exclusion from the Design Event. If your files are not submitted in the required format or are not properly named then they cannot be included in the documents provided to the design judges and your team will be excluded from the event. + +1S3.6 Excess Size Design Reports +If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read and evaluated by the judges. +Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text information on them will be scored. +1S3.7 Submission Deadlines +The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the event website once report is reviewed for accuracy. Teams should have a printed copy of this reply available at the competition as proof of submission in the event of discrepancy. +1S3.8 Penalty for Late Submission or Non-Submission +See section A9.3 for late submission penalties. +1S3.9 Penalty for Unsatisfactory Submissions +1S3.9.1 Teams that submit a Design Report or a Design Spec Sheet which is deemed to be unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. They may be allowed to compete, but receive a penalty of up to seventy five (75) points. +Failure to fully document the changes made for the current year's event to a vehicle used in prior FH+E events, or reuse of any part of a prior year design report, are just two examples of Unsatisfactory Submissions +1S3.10 Vehicle Condition +1S3.10.1 With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, complete and ready-to-run. The judges will not evaluate any car that is presented at the design event in what they consider to be an unfinished state. +Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. +Note: Cars can be presented for design judging without having passed technical inspection, or if final tuning and setup is still in progress. +1S3.11 Judging Criteria +The design judges will evaluate the engineering effort based upon the team's Design Report, Spec Sheet, responses to questions and an inspection of the car. The design judges will inspect the car to determine if the design concepts are adequate and appropriate for the application (relative to the objectives set forth in the rules). It is the responsibility of the judges to deduct points on the design judging form, as given in Appendix D if the team cannot adequately explain the engineering and construction of the car. +1S3.12 Judging Sequence +The actual format of the design event may change from year to year as determined by the organizing body. In general, the design event includes a brief overview presentation in front of the physical vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve two parts: +(a) Initial judging of all vehicles + +(b) Final judging ranking the top 2 to 4 vehicles. +1S3.13 Scoring Formula +The scoring of the event is based on either the average of the scores from the Design Judging Forms (see Appendix C) or the consensus of the judging team. + +???????????? ?????????? = 200 ?????????? +???????? + +Where: Pmax is the highest point score awarded to any team in your vehicle category Pyour is the point score awarded to your team + + +Notes: + + +It is intended that the scores will range from near zero (0) to two hundred (200) to provide good separation. +? The Lead Design Judge may, at his/her discretion, normalize the scores of different judging teams. +? Penalties applied during the Design Event (see Appendix D "Design Judging Form - Miscellaneous") are applied before the scores are normalized. +? Penalties associated with late submittals (see A9.3 "Late Submission Penalties") are applied after the scores are normalized up to a maximum of the teams normalized Design Score. + + + +1S3.14 Support Materials +Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process. + +PART 1D - DYNAMIC EVENTS + +ARTICLE D1 DYNAMIC EVENTS GENERAL + +1D1.1 Maximum Scores + +Event Acceleration 100 Points Autocross 200 Points Endurance 350 Points Total 650 Points +Table 17 - Dynamic Event Maximum Scores + + +1D1.2 Driving Behavior +During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to an official, worker, spectator or other driver, will result in a penalty. +Depending on the potential consequences of the behavior, the penalty will range from an admonishment, to disqualification of that driver from all events, to disqualification of the team from that event, to exclusion of the team from the Competition. +1D1.3 Safety Procedures +1D1.3.1 Drivers must properly use all required safety equipment at all times while staged for an event, while running the event, and while stopped on track during an event. Required safety equipment includes all drivers gear and all restraint harnesses. +1D1.3.2 In the event it is necessary to stop on track during an event the driver must attempt to position the vehicle in a safe position off of the racing line. +1D1.3.3 Drivers must not exit a vehicle stopped on track during an event until directed to do so by an event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or electrical problems. +1D1.4 Vehicle Integrity and Disqualification +1D1.4.1 During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged suspension, brakes or steering components, electrical tractive system fault, or any condition that could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid reason for exclusion by the officials. +1D1.4.2 The safety systems monitoring the electrical tractive system must be functional as indicated by an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event. +1D1.4.3 If vehicle integrity is compromised during the Endurance Event, scoring for that segment will be terminated as of the last completed lap. + +ARTICLE D2 WEATHER CONDITIONS + +The organizer reserves the right to alter the conduct and scoring of the competition based on weather conditions. + +ARTICLE D3 RUNNING IN RAIN + +A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See +EV10.5) +1D3.1 Operating Conditions +The following operating conditions will be recognized at Formula Hybrid + Electric: +(a) Dry - Overall the track surface is dry. +(b) Damp - Significant sections of the track surface are damp. +(c) Wet - The entire track surface is wet and there may be puddles of water. +(d) Weather Delay/Cancellation - Any situation in which all, or part, of an event is delayed, rescheduled or canceled in response to weather conditions. +1D3.2 Decision on Operating Conditions +The operating condition in effect at any time during the competition will be decided by the competition officials. +1D3.3 Notification +If the competition officials declare the track(s) to be "Damp" or "Wet", +(a) This decision will be announced over the public address system, and +(b) A sign with either "Damp" or "Wet" will be prominently displayed at both the starting line(s) and the start-finish line of the event(s), and the entry gate to the "hot" area. +1D3.4 Tire Requirements +The operating conditions will determine the type of tires a car may run as follows: +(a) Dry - Cars must run their Dry Tires, except as covered in D3.8. +(b) Damp - Cars may run either their Dry Tires or Rain Tires, at each team's option. +(c) Wet - Cars must run their Rain Tires. +1D3.5 Event Rules +All event rules remain in effect. +1D3.6 Penalties +All penalties remain in effect. +1D3.7 Scoring +No adjustments will be made to teams' times for running in "Damp" or "Wet" conditions. The minimum performance levels to score points may be adjusted if deemed appropriate by the officials. +1D3.8 Tire Changing +1D3.8.1 During the Acceleration or Autocross Events: + +Within the provisions of D3.4 above, teams may change from Dry Tires to Rain Tires or vice versa at any time during those events at their own discretion. +1D3.8.2 During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any time while their car is in the staging area inside the "hot" area. +All tire changes after a car has received the "green flag" to start the Endurance Event must take place in the Driver Change Area. +(a) If the track was "Dry" and is declared "Damp": +(i) Teams may start on either Dry or Rain Tires at their option. +(ii) Teams that are on the track when it is declared "Damp", may elect, at their option, to pit in the Driver Change Area and change to Rain Tires under the terms spelled out below in "Tire Changes in the Driver Change Area". +(b) If the track is declared "Wet": +(i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver Change Area. +(ii) Those cars that are already fitted with "Rain" tires will be allowed restart without delay subject to the discretion of the Event Captain/Clerk of the Course. +(iii) Those cars without "Rain" tires will be required to fit them under the terms spelled out below in "Tire Changes in the Driver Change Area". They will then be allowed to re- start at the discretion of the Event Captain/Clerk of the Course. + (c) If the track is declared "Dry" after being "Damp" or "Wet": The teams will NOT be required to change back to "Dry" tires. +(d) Tire Changes at Team's Option: +(i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to change tires at their option. +(ii) If a team elects to change from "Dry" to "Rain" tires, the time to make the change will NOT be included in the team's total time. +(iii) If a team elects to change from "Rain" tires back to "Dry" tires, the time taken to make the change WILL be included in the team's total time for the event, i.e. it will not be subtracted from the total elapsed time. However, a change from "Rain" tires back to "Dry" tires will not be permitted during the driver change. +(iv) To make such a change, the following procedure must be followed: +1. Team makes the decision +2. Team has tires and equipment ready near Driver Change Area +3. The team informs the Event Captain/Clerk of the Course they wish their car to be brought in for a tire change +4. Officials inform the driver by means of a sign or flag at the checker flag station +5. Driver exits the track and enters the Driver Change Area in the normal manner. +(e) Tire Changes in the Driver Change Area: + +(i) Per Rule D7.13.2 no more than three people for each team may be present in the Driver Change Area during any tire change, e.g. a driver and two crew or two drivers and one crew member. +(ii) No other work may be performed on the cars during a tire change. +(iii) Teams changing from "Dry" to "Rain" tires will be allowed a maximum of ten (10) minutes to make the change. +(iv) If a team elects to change from "Dry" to "Rain" tires during their scheduled driver change, they may do so, and the total allowed time in the Driver Change Area will be increased without penalty by ten (10) minutes. +(v) The time spent in the driver change area of less than 10 minutes without driver change will not be counted in the team's total time for the event. Any time in excess of these times will be counted in the team's total time for the event. + +ARTICLE D4 DRIVER LIMITATIONS + +1D4.1 Two Event Limit +1D4.1.1 An individual team member may not drive in more than two (2) events. +Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum of four (4) drivers is required to participate in all possible runs in all of the dynamic events. +1D4.1.2 It is the team's option to participate in any event. The team may forfeit any runs in any performance event. +1D4.1.3 In order to drive in the endurance event, a driver must have attended the mandatory drivers meeting and walked the endurance track with an official. +1D4.1.4 The time and location of the meeting and walk-around will be announced at the event. + +ARTICLE D5 ACCELERATION EVENT + +1D5.1 Acceleration Objective +The acceleration event evaluates the car's acceleration in a straight line on flat pavement. +1D5.2 Acceleration Procedure +The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be used to indicate the approval to begin, however, time starts only after the vehicle crosses the start line. There will be no particular order of the cars in the event. A driver has the option to take a second run immediately after the first. +1D5.3 Acceleration Event +1D5.3.1 All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the acceleration runs. +1D5.3.2 Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during any of their acceleration runs. + +1D5.4 Tire Traction - Limitations +Special agents that increase traction may not be added to the tires or track surface and "burnouts" are not allowed. +1D5.5 Acceleration Scoring +The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the time the car crosses the starting line until it crosses the finish line. +1D5.6 Acceleration Penalties +1D5.6.1 Cones Down Or Out (DOO) +A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred on that particular run to give the corrected elapsed time. +1D5.6.2 Off Course +An Off Course (OC) will result in a DNF for that run. +1D5.7 Did Not Attempt +The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Finish (DNF). +1D5.8 Acceleration Scoring Formula +The equation below is used to determine the scores for the Acceleration Event. The first term represents the "Start Points", the second term the "Participation Points" and the last term the "Performance Points". +1D5.8.1 A team is awarded "Start Points" for crossing the start line under its own power. A team is awarded "Participation Points" if it completes a minimum of one (1) run. A team is awarded "Performance Points" based on its corrected elapsed time relative to the time of the best team in its class. + +???????????????????????? ?????????? = 10 + 15 + (75 ???????? ) +?????????? + +Where: +Tyour is the lowest corrected elapsed time (including penalties) recorded by your team. +Tmin is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category. +Note: A Did Not Start (DNS) will score (0) points for the event + +ARTICLE D6 AUTOCROSS EVENT + +1D6.1 Autocross Objective +The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a tight course without the hindrance of competing cars. The autocross course will combine the performance features of acceleration, braking, and cornering into one event. + +1D6.2 Autocross Procedure +1D6.2.1 There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) timed laps will be run (weather and time permitting) by each driver and the best lap time will stand as the time for that heat. +1D6.2.2 The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. +The timer starts only after the car crosses the start line. +1D6.2.3 There will be no particular order of the cars to run each heat, but a driver has the option to take a second run immediately after the first. +1D6.2.4 The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Start (DNS). +1D6.3 Autocross Course Specifications & Speeds +1D6.3.1 The following specifications will suggest the maximum speeds that will be encountered on the course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). +(a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 m (150 feet) with wide turns on the ends. +(b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. +(c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). +(d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. +(e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track width will be 3.5 m (11.5 feet). +1D6.3.2 The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete a specified number of runs. +1D6.4 Autocross Penalties +The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed time: +1D6.4.1 Cone Down or Out (DOO) +Two (2) seconds per cone, including any after the finish line. +1D6.4.2 Off Course +Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. Penalties will not be assessed for accident avoidance or other reasons deemed sufficient by the track officials. +If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off the paved surface will count as an "off course". Two (2) wheels off will not incur an immediate penalty; however, consistent driving of this type may be penalized at the discretion of the event officials. +1D6.4.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one "off-course" per occurrence. Each occurrence will incur a twenty (20) second penalty. +1D6.4.4 Stalled & Disabled Vehicles + +If a car stalls and cannot restart without external assistance, the car will be deemed disabled. Cars deemed disabled will be cleared from the track by the track workers. At the direction of the track officials team members may be instructed to retrieve the vehicle. Vehicle recovery may only be done under the control of the track officials. +1D6.5 Corrected Elapsed Time +The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time. +1D6.6 Best Run Scored +The time required to complete each run will be recorded and the team's best corrected elapsed time will be used to determine the score. +1D6.7 Autocross Scoring Formula +The equation below is used to determine the scores for the Autocross Event. The first term represents the "Start Points", the second term the "Participation Points" and the last term the "Performance Points". A team is awarded "Start Points" for crossing the start line under its own power. A team is awarded "Participation Points" if it completes a minimum of one (1) run. A team is awarded "Performance Points" based on its corrected elapsed time relative to the time of the best team in its vehicle category. +?????????????????? ?????????? = 20 + 30 + (150 ???????? ) +?????????? + +Where: +Tmin is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category over their four heats. +Tyour is the lowest corrected elapsed time (including penalties) recorded by your team over the four heats. + +Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event. + +ARTICLE D7 ENDURANCE EVENT + +1D7.1 Right to Change Procedure +The following are general guidelines for conducting the endurance event. The organizers reserve the right to establish procedures specific to the conduct of the event at the site. All such procedures will be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or on the official bulletin board at the event. +1D7.2 Endurance Objective +The endurance event is designed to evaluate the vehicle's overall performance, reliability and efficiency. Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated distance on a fixed amount of energy in the least amount of time. + +1D7.3 Endurance General Procedure +1D7.3.1 In general, the team completing the most laps in the shortest time will earn the maximum points available for this event. Formula Hybrid + Electric uses an endurance scoring formula that rewards both speed and distance traveled. (See D7.18) +1D7.3.2 The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 mile) segments. +1D7.3.3 Driver changes will be made between each segment. 1D7.3.4 Wheel to wheel racing is prohibited. +1D7.3.5 Passing another vehicle may only be done in an established passing zone or under the control of a course marshal. +1D7.4 Endurance Course Specifications & Speeds +Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr (29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). +Endurance courses will be configured, where possible, in a manner which maximizes the advantage of regenerative braking. +(a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than +61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several locations. +(b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. +(c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). +(d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. +(e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). +(f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius turns, elevation changes, etc. +1D7.5 Energy +1D7.5.1 All vehicles competing in the endurance event must complete the event using only the energy stored on board the vehicle at the start of the event plus any energy reclaimed through regenerative braking during the event. Alternatively, vehicles may compete in the endurance event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted towards the endurance score. If energy meter data is missing or appears inaccurate, the vehicle may receive start and performance points as appropriate, but "performance points" may be forfeited at organizers discretion. +1D7.5.2 Prior to the beginning of the endurance event, all competitors may charge their electric accumulators from any approved power source they wish. +1D7.5.3 Once a vehicle has begun the endurance event, recharging accumulators from an off-board source is not permitted. +1D7.6 Hybrid Vehicles +1D7.6.1 All Hybrid vehicles will begin the endurance event with the defined amount of energy on board. + +1D7.6.2 The amount of energy allotted to each team is determined by the Formula Hybrid + Electric Rules Committee and is listed in Table 1 - 2024 Energy and Accumulator Limits +1D7.6.3 The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by an amount equal to the stated energy capacity of the vehicle's accumulator(s). +1D7.6.4 There will be no extra points given for fuel remaining at the end of the endurance event. +1D7.7 Fueling - Hybrid Vehicles +1D7.7.1 Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will then be added to the tank by the organizers and the filler will be sealed. +1D7.7.2 Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and supporting the vehicle to facilitate draining the fuel tank. +1D7.7.3 Once fueled, the vehicle must proceed directly to the endurance staging area. +1D7.8 Charging - Electric Vehicles +Each Electric vehicle will begin the endurance event with whatever energy can be stored in its accumulator(s). +1D7.9 Endurance Run Order +Endurance run order will be determined by the team's corrected elapsed time in the autocross. Teams with the best autocross corrected elapsed time will run first. If a team did not score in the autocross event, the run order will then continue based on acceleration event times, followed by any vehicles that may not have completed either previous dynamic event. Endurance run order will be published at least one hour before the endurance event is run. +1D7.10 Entering the Track +At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter based on traffic conditions. +1D7.11 Endurance Vehicle Restarting +1D7.11.1 The vehicle must be capable of restarting without external assistance at all times once the vehicle has begun the event. +1D7.11.2 If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following it (approximately one (1) minute) to restart. +1D7.11.3 At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8). +1D7.11.4 If restarts are not accomplished within the above times, the vehicle will be deemed disabled and scored as a DNF for the event. +1D7.12 Breakdowns & Stalls +1D7.12.1 If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter the course. +1D7.12.2 If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course where it went off, but no work may be performed on the vehicle +1D7.12.3 If a vehicle stops on track and cannot be restarted without external assistance, the track workers will push the vehicle clear of the track. At the discretion of event officials, two (2) team members may retrieve the vehicle under direction of the track workers. + +1D7.13 Endurance Driver Change Procedure +1D7.13.1 There must be a minimum of two (2) drivers for the endurance event, with a maximum of four +(4) drivers. One driver may not drive in two consecutive segments. +1D7.13.2 Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the driver change area. If a driver elects to come into driver change before the end of their 11km segment, they will not be allowed to make up the laps remaining in that segment. +1D7.13.3 Only three (3) team members, including the driver or drivers, will be allowed in the driver change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers and/or change tires will be carried into this area (no tool chests, electronic test equipment, computers, etc.). +Extra people entering the driver change area will result in a twenty (20) point penalty to the final endurance score for each extra person entering the area. +Note: Teams are permitted to "tag-team" in and out of the driver change area as long as there are no more than three (3) team members present at any one time. +1D7.13.4 The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. +These systems must remain shut down until the new driver is in place. (See D7.13.8) +1D7.13.5 The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be secured in the vehicle. +1D7.13.6 Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle comes to a halt in the driver change area and stops when the correct adjustment of the driver restraints and safety equipment has been verified by the driver change area official. Any time taken over the allowed time will incur a penalty. (See D7.17.2(k)) +1D7.13.7 During the driver change, teams are not permitted to do any work on, or make any adjustments to the vehicle with the following exceptions: +(a) Changes required to accommodate each driver +(b) Tire changing as covered by D3.8 "Tire Changing", +(c) Actuation of the following buttons/switches to assist the driver with re-energizing the electrical tractive system +(i) Ground Low Voltage Master Switch +(ii) Tractive System Master Switch +(iii) Side Mounted BRBs +(iv) IMD Reset (Button/Switch must be clearly marked "IMD RESET") +(v) AMS Reset (Button/Switch must be clearly marked "AMS RESET") + +1D7.13.8 Once the new driver is in place and an official has verified the correct adjustment of the driver restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive system (IC engine, electrical tractive system, or both) and begin moving out of the driver change area. + +The ESOK indicator must be illuminated and verified by the driver change area official prior to the vehicle being released out of the driver change area. + +1D7.13.9 The process given in Error! Reference source not found. through D7.13.8 will be repeated for each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km (27.34 miles) distance or until the endurance event track closing time, at which point the vehicle will be signaled off the course. +1D7.13.10 The driver change area will be placed such that the timing system will see the driver change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this extra-long lap will not count into a team's final time. If a driver change takes longer than three minutes, the extra time will be added to the team's final time. +1D7.13.11 Once the vehicle has begun the event, electronic adjustment to the vehicle may only be made by the driver using driver-accessible controls. +1D7.14 Endurance Lap Timing +1D7.14.1 Each lap of the endurance event will be individually timed either by electronic means, or by hand. +1D7.14.2 Each team is required to time their vehicle during the endurance event as a backup in case of a timing equipment malfunction. An area will be provided where a maximum of two team members can perform this function. All laps, including the extra-long laps must be recorded legibly and turned in to the organizers at the end of the endurance event. Standardized lap timing forms will be provided by the organizers. +1D7.15 Exiting the Course +1D7.15.1 Timing will stop when the vehicle crosses the start/finish line. +1D7.15.2 Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter the driver change area before coming to a stop. There will be no "cool down" laps. +1D7.15.3 The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be penalized. +1D7.16 Endurance Minimum Speed Requirement +1D7.16.1 A car's allotted number of laps, including driver's changes, must be completed in a maximum of 120 minutes elapsed time from the start of that car's first lap. +Cars that are unable to comply will be flagged off the course and their actual completed laps tallied. 1D7.16.2 If a vehicle's lap time becomes greater than Max Average Lap Time (See: D7.18) it may be +declared "out of energy", and flagged off the course. The vehicle will be deemed disabled and +scored as a DNF for the event. +Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring formulas. Attempting to complete additional laps at too low a speed can cost a team points. +1D7.17 Endurance Penalties +1D7.17.1 Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the track official. +1D7.17.2 The penalties in effect during the endurance event are listed below. +(a) Cone down or out (DOO) + +Two (2) seconds per cone. This includes cones before the start line and after the finish line. +(b) Off Course (OC) +For an OC, the driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. +If a paved surface edged by grass or dirt is being used as the track, e.g. a go kart track, four +(4) wheels off the paved surface will count as an "off course". Two (2) wheels off will not incur an immediate penalty. However, consistent driving of this type may be penalized at the discretion of the event officials. +(c) Missed Slalom +Missing one or more gates of a given slalom will incur a twenty (20) second penalty. +(d) Failure to obey a flag +Penalty: 1 minute +(e) Over Driving (After a closed black flag) +Penalty: 1 Minute +(f) Vehicle to Vehicle Contact +Penalty: DISQUALIFIED +(g) Running Out of Order +Penalty: 2 Minutes +(h) Mechanical Black Flag +See D7.23.3(b). No time penalty. The time taken for mechanical or electrical inspection under a "mechanical black flag" is considered officials' time and is not included in the team's total time. However, if the inspection reveals a mechanical or electrical integrity problem the vehicle may be deemed disabled and scored as a DNF for the event. +(i) Reckless or Aggressive Driving +Any reckless or aggressive driving behavior (such as forcing another vehicle off the track, refusal to allow passing, or close driving that would cause the likelihood of vehicle contact) will result in a black flag for that driver. +When a driver receives a black flag signal, he/she must proceed to the penalty box to listen to a reprimand for his/her driving behavior. +The amount of time spent in the penalty box will vary from one (1) to four (4) minutes depending upon the severity of the offense. +If it is impossible to impose a penalty by a stop under a black flag, e.g. not enough laps left, the event officials may add an appropriate time penalty to the team's elapsed time. +(j) Inexperienced Driver +The Event Captain or Clerk of the Course may disqualify a driver if the driver is too slow, too aggressive, or driving in a manner that, in the sole opinion of the event officials, demonstrates an inability to properly control their vehicle. This will result in a DNF for the event. +(k) Driver Change + +Driver changes taking longer than three (3) minutes will be penalized. +1D7.18 Endurance Scoring Formula +The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, etc.), plus any penalty time and penalty points assessed against all drivers and team members. +Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the DNF. +1D7.18.1 The equation below is used to determine the scores for the Endurance Event. The first term represents the "Start Points", the second term the "Participation Points" and the last term the "Performance Points". +A team is awarded "Start Points" for crossing the start line under its own power. A team is awarded "Participation Points" if it completes a minimum of one (1) lap. A team is awarded "Performance Points" based on the number of laps it completes relative to the best team in its vehicle category (distance factor) and its corrected average lap time relative to the event standard time and the time of the best team in its vehicle category (speed factor). + + + +????????????(??)???????? +?????????????????? ?????????? = 35 + 52.5 + 262.5 ( ????????????(??) ) + +(?????? ?????????????? ?????? ????????) - 1 +?????????? + + +?????? ?????????????? ?????? ???????? + +?????? ( + +???????? + +) - 1 + + + +Where: + + +Max Average Lap Time is the event standard time in minutes and is calculated as + +?????? ?????????????? ?????? ???????? = 105 +??h?? ???????????? ???? ???????? ???????????????? ???? ???????????????? 44 ???? + + +Tmin = the lowest corrected average lap time (including penalties) recorded by the fastest team in your vehicle category over their completed laps. +Tyour = the corrected average lap time (including penalties) recorded by your team over your completed laps. +LapSum(n)max = The value of LapSum corresponding to number of complete laps credited to the team in your vehicle category that covered the greatest distance. +LapSum(n)your = The value of LapSum corresponding to the number of complete laps credited to your team + + + +Notes: + + + +(a) If your team completes all of the required laps, then LapSum(n)your will equal the maximum possible value of LapSum(n). (990 for a 44 lap event). +(b) If your team does not complete the required number of laps, then LapSum(n)your will be based on the number of laps completed. See Appendix B for LapSum(n) calculation methodology. + +(c) Negative "performance points" will not be given. +(d) A Did Not Start (DNS) will score (0) points for the event + +1D7.18.2 Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their results truncated at the last lap completed within the 120 minute limit. +1D7.19 Post Event Engine and Energy Check +The organizer reserves the right to impound any vehicle immediately after the event to check accumulator capacity, engine displacement (method to be determined by the organizer) and restrictor size (if fitted). +1D7.20 Endurance Event - Driving +1D7.20.1 During the endurance event when multiple vehicles are running on the course it is paramount that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion in the penalty box with course officials. The amount of time spent in the penalty box is at the discretion of the officials and is included in the run time. Penalty box time serves as a reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware that contact between open wheel racers is especially dangerous because tires touching can throw one vehicle into the air. +1D7.20.2 Endurance is a timed event in which drivers compete only against the clock not against other vehicles. Aggressive driving is unnecessary. +1D7.21 Endurance Event - Passing +1D7.21.1 Passing during the endurance event may only be done in the designated passing zones and under the control of the track officials. Passing zones have two parallel lanes - a slow lane for the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the slow lane and decelerate. The following faster vehicle will continue in the fast lane and make the pass. The vehicle that had been passed may reenter traffic only under the control of the passing zone exit marshal. +The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on the design of the specific course. +1D7.21.2 These passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in the area. +1D7.21.3 Under normal driving conditions when not being passed all vehicles use the fast lane. +1D7.22 Endurance Event - Driver's Course Walk +The endurance course will be available for walk by drivers prior to the event. All endurance drivers should walk the course before the event starts. +1D7.23 Flags +1D7.23.1 The flag signals convey the commands described below, and must be obeyed immediately and without question. +1D7.23.2 There are two kinds of flags for the competition: Command Flags and Informational Flags. Command Flags are just that, flags that send a message to the competitor that the competitor + +must obey without question. Informational Flags, on the other hand, require no action from the driver, but should be used as added information to help him or her maximize performance. +What follows is a brief description of the flags used at the competitions in North America and what each flag means. +Note: Not all of these flags are used at all competitions and some alternate designs are occasionally displayed. Any variations from this list will be explained at the drivers meetings. + + + + +Table 18 - Flags + + +1D7.23.3 Command Flags +(a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations or other official concerning an incident. A time penalty may be assessed for such incident. +(b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) ("Meatball") - Pull into the penalty box for a mechanical inspection of your vehicle, something has been observed that needs closer inspection. +(c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor or competitors. Obey the course marshal's hand or flag signals at the end of the passing zone to merge into competition. +(d) CHECKER FLAG - Your segment has been completed. Exit the course at the first opportunity after crossing the finish line. +(e) GREEN FLAG - Your segment has started, enter the course under direction of the starter. NOTE: If you are unable to enter the course when directed, await another green flag as the opening in traffic may have closed. +(f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow course marshal's directions. + +(g) YELLOW FLAG (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the course marshals. +(h) YELLOW FLAG (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless directed by the course marshals. +1D7.23.4 Informational Flags +(a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course marshals may be able to point out what and where it is located, but do not expect it.) +(b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than you are. Be prepared to approach it at a cautious rate. + +ARTICLE D8 RULES OF CONDUCT + +1D8.1 Competition Objective - A Reminder +The Formula Hybrid + Electric event is a design engineering competition that requires performance demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. It is also recognized that this event is an "engineering educational experience" but that it often times becomes confused with a high stakes race. In the heat of competition, emotions peak and disputes arise. Our officials are trained volunteers and maximum human effort will be made to settle problems in an equitable, professional manner. +1D8.2 Unsportsmanlike Conduct +In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second violation will result in expulsion of the team from the competition. +1D8.3 Official Instructions +Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a twenty five (25) point penalty. +Note: This penalty can be individually applied to all members of a team. +1D8.4 Arguments with Officials +Argument with, or disobedience to, any official may result in the team being eliminated from the competition. All members of the team may be immediately escorted from the grounds. +1D8.5 Alcohol and Illegal Material +Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the competition. This rule will be in effect during the entire competition. Any violation of this rule by a team member will cause the expulsion of the entire team. This applies to both team members and faculty advisors. Any use of drugs, or the use of alcohol by an underage individual, will be reported to the local authorities for prosecution. +1D8.6 Parties +Disruptive parties either on or off-site must be prevented by the Faculty Advisor. + +1D8.7 Trash Clean-up +1D8.7.1 Cleanup of trash and debris is the responsibility of the teams. The team's work area should be kept uncluttered. At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock. +1D8.7.2 Teams are required to remove all of their material and trash when leaving the site at the end of the competition. Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs. +1D8.7.3 All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, capped containers and left at the hazardous waste collection building. The track must be notified as soon as the material is deposited by calling the phone number posted on the building. See the map in the registration packet for the building location. + +ARTICLE D9 GENERAL RULES + +1D9.1 Dynamometer Usage +1D9.1.1 If a dynamometer is available, it may be used by any competing team. Vehicles to be dynamometer tested must have passed all parts of technical inspection. +1D9.1.2 Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer. +1D9.2 Problem Resolution +Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric management team and the decision will be final. +1D9.3 Forfeit for Non-Appearance +It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups for missed appearances. +1D9.4 Safety Class - Attendance Required +An electrical safety class is required for all team members. The time and location will be provided in the team's registration packet. +1D9.5 Drivers Meetings - Attendance Required +All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event. +1D9.6 Personal Vehicles +1D9.6.1 Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E competition vehicles will be allowed in the track areas. +All vehicles and trailers must be parked behind the white "Fire Lane" lines. +1D9.6.2 Some self-powered transport such as bicycles and skate boards are permitted, subject to restrictions posted in the event guide +1D9.6.3 The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited. + +1D9.7 Exam Proctoring +1D9.7.1 Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for students attending the competition. The team Advisor, or designated representative (A6.3.1) attending the competition will be responsible for communicating with college and university officials, administering exams, and ensuring all exam materials are returned to the college and university. Students who need to take exams during the competition may use designated spaces provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to the Officials. + +ARTICLE D10 PIT/PADDOCK/GARAGE RULES + +1D10.1 Vehicle Movement +1D10.1.1 Vehicles may not move under their own power anywhere outside of an officially designated dynamic area. +1D10.1.2 When being moved outside the dynamic area: +(a) The vehicle TSV must be deactivated. +(b) The vehicle must be pushed at a normal walking pace by means of a "Push Bar" (D10.2). +(c) The vehicle's steering and braking must be functional. +(d) A team member must be sitting in the cockpit and must be able to operate the steering and braking in a normal manner. +(e) A team member must be walking beside the car. +(f) The team has the option to move the car either with +(i) all four (4) wheels on the ground OR +(ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that the external wheels supporting the rear of the car are non-pivoting such that the vehicle will travel only where the front wheels are steered. +1D10.1.3 Cars with wings are required to have two team members walking on either side of the vehicle whenever the vehicle is being pushed. +NOTE: During performance events when the excitement is high, it is particularly important that the car be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of twenty-five (25) points will be assessed for each violation. +1D10.2 Push Bar +Each car must have a removable device that attaches to the rear of the car that allows two (2) people, standing erect behind the vehicle, to push the car around the event site. This device must also be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by pulling it rearwards. It must be presented with the car at Technical Inspection. +1D10.3 Smoking - Prohibited +Smoking is prohibited in all competition areas. +1D10.4 Fueling and Refueling +Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and no other activities (including any mechanical or electrical work) are allowed while refueling. + +1D10.5 Energized Vehicles in the Paddock or Garage Area +Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the drive wheels must be removed or properly supported clear of the ground. +1D10.6 Engine Running in the Paddock +Engines may be run in the paddock provided: +(a) The car has passed all technical inspections. +AND +(b) The drive wheels are removed or properly supported clear of the ground. +1D10.7 Safety Glasses +Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 meters) of a vehicle that is being worked on. +1D10.8 Curfews +A curfew period may be imposed on working in the garages. Be sure to check the event guide for further information + +ARTICLE D11 DRIVING RULES + +1D11.1 Driving Under Power +1D11.1.1 Cars may only be driven under power: +(a) When running in an event. +(b) When on the practice track. +(c) During the brake test. +(d) During any powered vehicle movement specified and authorized by the organizers. +1D11.1.2 For all other movements cars must be pushed at a normal walking pace using a push bar. 1D11.1.3 Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred +(200) point penalty for the first violation and expulsion of the team for a second violation. +1D11.2 Driving Off-Site - Prohibited +Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location during the period of the competition will be disqualified from the competition. +1D11.3 Practice Track +1D11.3.1 A practice track for testing and tuning cars may be available at the discretion of the organizers. The practice area will be controlled and may only be used during the scheduled practice times. +1D11.3.2 Practice or testing at any location other than the practice track is absolutely forbidden. 1D11.3.3 Cars using the practice track must have passed all parts of the technical inspection. +1D11.4 Situational Awareness +Drivers must maintain a high state of situational awareness at all times and be ready to respond to the track conditions and incidents. Flag signals and hand signals from course marshals and officials must be immediately obeyed. + +ARTICLE D12 DEFINITIONS + +DOO - A cone is "Down or Out"-if the cone has been knocked over or the entire base of the cone lies outside the box marked around the cone in its undisturbed position. +DNF- Did Not Finish +Gate - The path between two cones through which the car must pass. Two cones, one on each side of the course define a gate: Two sequential cones in a slalom define a gate. +Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course. +Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course. +Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about to start. +OC - A car is Off Course if it does not pass through a gate in the required direction. + + Appendix A Accumulator Rating & Fuel +Equivalency + +Each accumulator device will be assigned an energy rating and fuel equivalency based on the following: + +Battery capacities are based on nominal (data sheet values). Ultracap capacities are based on the maximum operating voltage (Vpeak) and the effective capacitance in Farads (Nparallel x C / Nseries). +Batteries: Energy (Wh) = Vnom x Inom x Total Number of Cells x 80% + +Capacitors: + +where Vmin is assumed to be 10% of Vpeak. +Table 19 - Accumulator Device Energy Calculations + + +Liquid Fuels Wh / Liter32 Gasoline (Sunoco33 Optima) 2,343 +Table 20 - Fuel Energy Equivalencies + + +Examples: + +A battery with an energy rating of 3110 Wh has a fuel equivalency of 1.327 liters. + +If using 89 Maxell MC 2600 ultracaps in series (2600 F/89 = 29.2 F, 2.7 x 89 = 240 V), the fuel equivalency is 231.9 Wh resulting in a 99cc reduction of gasoline. + + + + + + + + + + + + + +32 Formula Hybrid + Electric assumes a mechanical efficiency of 27% +33 Full specifications for Sunoco racing fuels may be found at: https://www.sunocoracefuels.com/ + +Appendix B + +Determination of LapSum(n) +Values + +The parameter LapSum(n) is used in the calculation of the scores for the endurance event. It is a function of the number of laps (n) completed by a team during the endurance event. It is calculated by summing the lap numbers from 1 to (n), the number of laps completed. This gives increasing weight to each additional lap completed during the endurance event. + +For example: +If your team is credited with completing five (5) laps of the endurance event, the value of LapSum(n)your used in compute your endurance score would be the following: + +LapSum(5)your = 1 + 2 + 3 + 4 + 5 = 15 + + +Number of Laps Completed (n) LapSum(n) Number of Laps Completed (n) LapSum(n) 0 0 23 276 1 1 24 300 2 3 25 325 3 6 26 351 4 10 27 378 5 15 28 406 6 21 29 435 7 28 30 465 8 36 31 496 9 45 32 528 10 55 33 561 11 66 34 595 12 78 35 630 13 91 36 666 14 105 37 703 15 120 38 741 16 136 39 780 17 153 40 820 18 171 41 861 19 190 42 903 20 210 43 946 21 231 44 990 22 253 +Table 21 - Example of LapSum(n) calculation for a 44-lap Endurance event + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event + + Appendix C Formula Hybrid + Electric + Project Management Event Scoring Criteria + + + + + +INTRODUCTION +The Formula Hybrid + Electric Project Management Event is comprised of three components: Project Plan Report +Change Management Report Final Presentation. +These components cover the entire life cycle of the Formula Hybrid + Electric Project from design of the vehicle through fabrication and performance verification, culminating in Formula Hybrid + Electric competition at the track. The Project Management Event includes both written reports and an oral presentation, providing project team members the opportunity to develop further their communications skills in the context of a challenging automotive engineering team experience. +Design, construction, and performance testing of a hybrid or electric race car are complex activities that require a structured effort to increase the probability of success. The Project Management Event is included in the Formula Hybrid + Electric competition to encourage each team to create this structure specific to their set of circumstances and goals. Comments each team receives from judges relative to their project plan and change management report, offer guidance directed at project execution. Verbal comments made by judges following the presentation component offer suggestions to improve performance in future competitions. +In scoring the Project Management Event judges assess (1) if a well-thought-out project plan has been developed, (2) that the plan was executed effectively while addressing challenges encountered and managing change and (3) the significance of lessons learned by team members from this experience and quality of recommendations proposed to improve future team performance. + +Basic Areas Evaluated +Five categories of effort are evaluated across the three components of Formula Hybrid + Electric Project Management, but the scoring criteria differ for each, reflecting the phase of the project life-cycle that is being assessed. The criteria includes: (1) Scope (2) Operations (3) Risk Management (4) Expected Results (5) Change Management. Each is briefly defined below. + +1. Scope: A brief introduction of the project documenting what will be accomplished: team goals and objectives beyond simply winning the competition, known as "secondary goals", major deliverables such as critical sub-systems, innovative designs, or new technologies, and milestones for achieving the goals. Overall, this information is called the Statement of Work. + +2. Operations: How the project team is structured, usually shown with an organizational chart; Work Breakdown Structure, a cascading representation of tasks that will be completed; a project schedule for completing these tasks, usually this is depicted in a Gantt chart that shows the timeline and interdependencies among different activities; also included are the approved budget for the project and plan for obtaining these funds. + +3. Risk Management: Arriving at the track with a completed, rules compliant race car increases the probability of full participation in all events during the competition. Even though numerous tasks are involved in the design, build, and test of a hybrid race car, there is a smaller subset of tasks that present a high risk to completing the car on schedule. These are high risk tasks because the team may lack knowledge, experience, or sufficient resources necessary for completing them successfully. However, to achieve the team goals, these tasks must be done. Identify the high risk tasks along with contingency plans for advancing the project forward if they become barriers to progress. + +4. Expected Results: In general, project teams are expected to deliver what is defined in the scope statement, on time according to project schedule, and within the budget constraint. Goals and objectives are more specifically defined by "measures of success", quantified attributes that give numerical targets for each goal. These "measures" are of value throughout project execution for setting priorities and making resource decisions. At project completion, they are used to determine the extent to which the team's goals and objectives have been accomplished. + +5. Change Management: The need for change is a normal occurrence during project execution. Change is good because it refocuses the team when new information is obtained or unexpected challenges are encountered. But if it is not managed correctly change can become a destructive element to the project. + +Change Management is a process designed by the team for administering project change and managing uncertainty. The process includes built-in controls to ensure that change is managed in a disciplined way, adequately documented and clearly communicated to all team members. + +SCORING GUIDELINES +The guidelines used by judges for scoring the three components of the Project Management Event are given in the following sections: (1) Project Plan Report, (2) Change Management Report, and +(3) Project Management Presentation at the competition. + +1. Project Plan Report +Each Formula Hybrid + Electric team is required to submit a formal Project Plan that reflects team goals and objectives for the upcoming competition, the management structure and tasks that will be completed to accomplish these objectives, and the time schedule over which these tasks will be performed. In addition, the formal process for managing change must be defined. A maximum of fifty-five (55) points is awarded for the Project Plan. +Quality of the Written Document: The plan should look and read like a professional document. The flow of information is expected to be logical; the content should be clear and concise. The reader should be able to understand the plan that will be executed. + +The Project Plan must consist of at least one (1) page and not exceed three (3) pages of text. Appendices may be attached to the Project Plan and do not count as "pages", but they must be relevant and referenced in the body of the report. + +"SMART" Goals +Projects are initiated to achieve predetermined goals, which are identified in the Scope statement. The project plan is a "roadmap" for effectively deploying team resources to accomplish these goals. Overall, the requirements of the Project Plan incorporate the basic principles of "SMART" goals. These goals have the following characteristics: +? Specific: Sufficient detail is provided to clearly identify the targeted objectives; goals are specifically stated so that all individual project team members understand what the team must accomplish. +? Measurable: The objectives are quantified so that progress toward the goals can be measured; "measures of success" are defined for this purpose. +? Assignable: The person or group responsible for achieving the goals is identified; each task, milestone, and deliverable has an owner, someone responsible for seeing that each is completed. +? Realistic: The goals can actually be achieved given the resources and time available. Along with realistic goals, a team might define "stretch goals" which are more aggressive objectives that challenge the team. If the "stretch goals" become barriers to progress during project execution, the change management process is used to pull back "stretch goals", re-focusing the team on more realistic objectives. +? Time-Related: Deadlines are set for achieving each goal, milestone, or deliverable. These deadlines are consistent with the overall project schedule and can be extracted from the project timeline. + + Characteristics of an Excellent Project Plan Report Submission +? Scope: A brief overview is included covering the team's past performance and recommendations received from previous teams for improvement. Achievable primary and secondary goals for this year's team are clearly stated. These goals are more than simply winning the competition. Milestones, with due dates, and major deliverables that support accomplishing the goals are listed. +? Operations: An organizational chart showing the structure of the team and Work Breakdown Structure showing the cascading linkage of tasks comprising the project are included. The timeframe and interdependencies of each task are shown in a Gantt chart timeline. The project budget is specified and a brief overview of how these funds will be obtained is given. +? Risk Management: Careful thought is demonstrated to understand the weakest areas of the project plan. Several "High Risk" tasks are identified that might have a significant impact on a functional car being produced on time. A contingency plan is described to mitigate these risks if they become barriers during project execution. +? Expected Results: All teams are expected to complete the project on schedule, within budget, and to deliver a functional, rules complaint race car to the track. But each team has a set of primary and secondary goals specific to its project plan. Additional depth is given to these goals by quantifying them, defining measurable targets helpful for directing team efforts. At least two "measures of success" are defined that are related to the team's specific performance goals. + +? Change Management: A process for administering changes has been carefully thought-out; it is briefly described and shown schematically in terms of: (1) what triggers the process, (2) how information flows through the process, (3) how decision making is handled, and (4) how changes are communicated to the team. A process flow diagram may be included in the Appendix to save space, however is referenced in the body of the report. At a minimum, the diagram shows the "trigger", information flow, decision making tasks and responsibilities, and communication tasks. The diagram is specific to and created by the team. There are sufficient controls in place to prevent un-managed changes. The team has an effective communication plan in place to keep all team members informed throughout project duration. + +Applying the Project Plan Report Scoring Guidelines +The guidelines for awarding points in each Project Plan Report category are given in Figure 46. Four performance designations are also specified: Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation to give reviewers flexibility in evaluating the quality and completeness of the submitted plans. +While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. + + + +Figure 46 - Scoring Guidelines: Project Plan Component34 + + + + + + + + +34 This score sheet is available on the Formula Hybrid+Electric website in the Project Management Resources folder. + +2. Change Management Report +The purpose of the Change Management Report is to give each judge a sense of the team's ability to deal with issues that will put the project schedule at risk. +Frequently, as the project progresses or as problems arise, changes may be required to vehicle specifications or the plan for completing the project. This is an area that many teams find difficult to manage. Of particular interest to judges are barriers encountered and creative actions taken by the team to overcome these challenges and advance the project forward. +The Change Management Report is a maximum two (2) page summary, clearly communicating the documented changes to the project scope and plan that have been approved using the change management process. Appendices may be included with supporting information; they do not have a page limit but the content is expected to be supportive of the information covered in the main body of the report. +A maximum of forty (40) points is awarded for the Change Management Report. The content of the report is evaluated in three broad areas: (1) Explanation of the Change Management Process (2) Example of the Implementation of the Change Management Process, and (3) Evaluation of the Effectiveness and Areas of Improvement for the Change Management Process. Additionally, a final area evaluated is the quality of the overall report document. + +Characteristics of an Excellent Change Management Report Submission +? Change Management Process: In the body of the report, the team provides a thorough and clear explanation of their Change Management Process, including the following characteristics: + What triggers/initiates the process? + How does information flow through the process? + How are decisions made, and who makes those decisions? + How are final decisions communicated to the team? + Process flow diagram (see below) +? A process flow diagram may be included in the Appendix to save space; however, it is referenced in the body of the report. At a minimum, the diagram shows the "trigger", information flow, decision making tasks and responsibilities, and communication tasks. The diagram is specific to and created by the team. +? Implementation of the Change Management Process: In the body of the report, the team provides a single thorough and clear example of the implementation of the Change Management Process. The example provided addresses all stages of the process from start to finish, including the overall impact to the project. +? Effectiveness of and Improvements to the Change Management Process: In the body of the report, the team provides their own assessment of the effectiveness of their Change Management Process, primarily based upon the example provided. This includes the effectiveness of each stage of the process (trigger, information flow, decision making, and communication) as well as an overall assessment. Based on their assessment, the team provides two areas of opportunity to improve the Change Management Process, including what stage of the process is impacted and why this change is being made. The team addresses plans for what the team must do to make the proposed changes, timing of changes, and a definition of how to measure the effectiveness of the changes for the following year. + +? Proper Use of Appendix: While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. + +Applying the Change Management Scoring Guidelines +The guidelines for awarding points in each Change Management Report evaluation category are given in Figure 47. Similar to the Project Plan guidelines, four performance designations are specified: Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation to give reviewers flexibility in weighing quality and completeness of information for each category. + + + +Figure 47: Change Management Report Scoring Guidelines + + +While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. + +3. Project Management Presentation at the Competition +The Presentation component gives teams the opportunity to briefly explain their project plans, assess how well their project management process worked, and identify recommendations for improving their team's project management process in the future. In addition, the Presentation component enables team leaders to enhance their communication skills in presenting a complex topic clearly and concisely. +The Presentation component is the culmination of the project management experience, which included submission by each team of a project plan and change management report. Scoring of each presentation is based on how well project management practices were used by the team in the planning, execution, and change management aspects of the project. Of particular interest are innovative approaches used by each team in dealing with challenges and how lessons learned from the current competition will be used to foster continuous improvement in the design, development, and testing of their cars for future competitions. +Project Management presentations are made on the Static Events Day during the competition. Each presentation is limited to a maximum of twelve (12) minutes. An eight (8) minute question and answer period will follow along with a feedback discussion with judges lasting no longer than five (5) minutes. +This format will give each team an opportunity to critique their project management performance, clarify major points, and have a discussion with judges on areas that can be improved or strengths that can be built upon for next year's competition. Only the team members present who are introduced at the start of the presentation will be allowed to speak and/or respond to questions and comments. + +Scoring the Project Management Presentation +In awarding points, each judge must determine if the team demonstrated an understanding of project management, if the described accomplishments are credible, and if the approaches used to manage the project were effective. These judgements are formed after listening to each presentation and probing the teams for clarity and additional details during the questioning period afterward. Presentation quality and communications skills of team members are extremely important for establishing a positive impression. +A chart summarizing the evaluation criteria for the Presentation component is given in Figure 48 - Evaluation Criteria. This provides more detailed guidelines used by the judging review team for evaluating each project management presentation. + + + +Figure 48 - Evaluation Criteria + + +Characteristics on an Excellent Project Management Presentation +? Scope: The primary and secondary goals defined in the project plan are addressed; the degree to which each has been accomplished is explained. Where applicable, the "Measures of Success" are used to support the stated level of accomplishment. If the original goals have been changed, the reasons for modification are explained. +? Operations: Was this project a success? This conclusion is supported by Team performance against the budget, project schedule, and deliverables produced. The effectiveness of the team's structure is explained. If the operation was disorderly or inefficient during project execution, an overview of corrective actions taken to fix the problem is given. +? Risk Management: The team's success to correctly anticipate risk in the original project plan and effectiveness of the risk mitigation plan are described. An overview of unanticipated risks that were encountered during project execution and approaches to overcome these barriers are explained. +? Change Management: A need for change occurs naturally in almost every project; it is anticipated that every Formula Hybrid + Electric team will have experienced some type of change during project execution. Change management strives to align the efforts of all team members working in the dynamic project environment. The effectiveness of the overall change management process in dealing with needed modifications is described. This is supported with + +statistics on the number of changes approved and rejected. The effectiveness of the team's communication methods, both written and verbal, is explained. Areas of opportunity for improvement to the change management process are briefly described as well as their status of implementation for next year. +? Lessons Learned: When a project is completed, the team should conduct an assessment of overall performance to determine what worked well and what failed. The strengths and weaknesses of the team are described. This evaluation is used to propose recommendations for improving the performance of next year's team. Also, a plan for conveying this information to the new leadership team is described. A leadership succession plan is briefly described. +? "SMART" Goals: Team's demonstrated understanding and application of "SMART" goals. +? Communications Skills: The team establishes credibility by demonstrating that it has taken the time necessary to carefully plan and create the presentation. The presentation is well organized, content is relevant to the purpose of the presentation. Charts have a professional appearance and are informative. Without the speaker rushing through the material, a large amount of information is conveyed within the allowed time limit. Tables, diagrams, and graphs are used effectively. +Team members demonstrate mutual accountability with shared responses to questions. Answers are conveyed in a manner that instills confidence in the team's ability to plan and execute a complex project like Formula Hybrid + Electric. + + + +Figure 49 - Project Management Scoring Sheet + + Appendix D Design Judging Form35 + + + + + + +35 This form is for informational use only - the actual form used may differ. Check the Formula Hybrid + Electric website prior to the competition for the latest Design judging form. + +Appendix E +Wire Current Capacity (DC) + + + + +Wire Gauge Copper AWG + +Conductor Area mm2 Max. +Continuous Fuse Rating (A) +Standard Metric Wire Size mm2 Max. +Continuous Fuse Rating (A) 24 0.20 5 0.50 10 22 0.33 7 0.75 12.5 20 0.52 10 1.0 15 18 0.82 14 1.5 20 16 1.31 20 2.5 30 14 2.08 28 4.0 40 12 3.31 40 6.0 60 10 5.26 55 10 90 8 8.37 80 16 130 6 13.3 105 25 150 4 21.2 140 35 200 3 26.7 165 50 250 2 33.6 190 70 300 1 42.4 220 95 375 0 53.5 260 120 425 2/0 67.4 300 150 500 3/0 85.0 350 185 550 4/0 107 405 240 650 250 MCM 127 455 300 800 300 MCM 152 505 350 MCM 177 570 400 MCM 203 615 500 MCM 253 700 +Table 22 - Wire Current Capacity (single conductor in air) + + +Reference: US National Electrical Code Table 400.5(A)(2), 90C Column D1 (Copper wire only) + + + + + +? Fire Extinguishers +Minimum Requirements + +Appendix F Required Equipment + +Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers + +Extinguishers of larger capacity (higher numerical ratings) are acceptable. +All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows "FULL". + +Special Requirements +Teams must identify any fire hazards specific to their vehicle's components and if fire extinguisher/fire extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb. or equivalent) of the required type must be procured and accompany the car at all times. As recommendations vary, teams are advised to consult the rules committee before purchasing expensive extinguishers that may not be necessary. +? Chemical Spill Absorbent +Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must be presented at technical inspection. +? Insulated Gloves +Insulated gloves, rated for at least the voltage in the TS system, with protective over-gloves. Electrical gloves require testing by a qualified company. The testing is valid for 14 months after the date of the test. All gloves must have the test date printed on them. +? Safety Glasses +Safety glasses must be worn as specified in section D10.7 +? Additional +Any special safety equipment required for dealing with accumulator mishaps, for example correct gloves recommended for handling any electrolyte material in the accumulator. + +Appendix G +Example Relay Latch Circuits + +The diagrams below are examples of relay-based latch circuits that can be used to latch the momentary output of the Bender IMD (either high-true or low-true) such that it will comply with Formula Hybrid + Electric rule EV7.1. Circuits such as these can also be used to latch AMS faults in accordance with EV2.1.3. It is highly recommended that IMD and AMS latching circuits be separate and independent to aid fault identification during the event. + +Note: It is important to confirm by checking the data sheets, that the output pin of the IMD can power the relay directly. If not, an amplification device will be required36 + + + + . +Figure 50 - Latching for Active-High output Figure 51 - Latching for Active-Low output + + + + + + + + + + + + + + +36 An example relay is the Omron LY3-DC12: http://www.ia.omron.com/product/item/6403/ + + Appendix H Firewall Equivalency Test + +To demonstrate equivalence to the aluminum sheet specified in rule T4.5.2, teams should submit a video, showing a torch test of their proposed firewall material. + +Camera angle, etc. should be similar to the video found here: + + +https://www.youtube.com/watch?v=Qw6kzG97ZtY + +A propane plumber's torch should be held at a distance from the test piece such that the hottest part of the flame (the tip of the inner cone) is just touching the test piece. + +The video must show two sequential tests and be contiguous and unedited (except for trimming the irrelevant leading and trailing portions). + +The first part of the video should show the torch applied to a piece of Aluminum of the thickness called for in T4.5.2, and held long enough to burn through the aluminum. The torch should then be moved directly to a similarly sized test piece of the proposed material without changing any settings, and held for at least as long as the burn-through time for the Aluminum. + +There must be no penetration of the test piece. The equivalent firewall construction must have similar mechanical strength to the aluminum barrier called for in T4.5.2. This can be demonstrated by equivalent resistance to deformation or puncturing. + +Appendix I Virtual Racing +Challenge + +The Virtual Racing Challenge will be held in 2025. + + + + + + + + + + + + + + + + + + + +END + + + + diff --git a/scripts/document-parser/ruleDocs/txtVersions/FSAE.txt b/scripts/document-parser/ruleDocs/txtVersions/FSAE.txt new file mode 100644 index 0000000000..e267561264 --- /dev/null +++ b/scripts/document-parser/ruleDocs/txtVersions/FSAE.txt @@ -0,0 +1,14043 @@ +Rules 2025 + +Version 1.0 +31 Aug 2024 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 1 of 143 + + TABLE OF CONTENTS +GR - General Regulations....................................................................................................................5 +GR.1 +GR.2 +GR.3 +GR.4 +GR.5 +GR.6 +GR.7 +GR.8 +GR.9 + +Formula SAE Competition Objective .................................................................................................... 5 +Organizer Authority.............................................................................................................................. 6 +Team Responsibility ............................................................................................................................. 6 +Rules Authority and Issue..................................................................................................................... 7 +Rules of Conduct .................................................................................................................................. 7 +Rules Format and Use .......................................................................................................................... 8 +Rules Questions.................................................................................................................................... 9 +Protests ................................................................................................................................................ 9 +Vehicle Eligibility ................................................................................................................................ 10 + +AD - Administrative Regulations ....................................................................................................... 11 +AD.1 +AD.2 +AD.3 +AD.4 +AD.5 +AD.6 +AD.7 + +The Formula SAE Series ...................................................................................................................... 11 +Official Information Sources .............................................................................................................. 11 +Individual Participation Requirements............................................................................................... 11 +Individual Registration Requirements ................................................................................................ 12 +Team Advisors and Officers................................................................................................................ 12 +Competition Registration ................................................................................................................... 13 +Competition Site ................................................................................................................................ 14 + +DR - Document Requirements .......................................................................................................... 16 +DR.1 +DR.2 +DR.3 + +Documentation .................................................................................................................................. 16 +Submission Details ............................................................................................................................. 16 +Submission Penalties.......................................................................................................................... 17 + +V - Vehicle Requirements ................................................................................................................. 19 +V.1 +V.2 +V.3 +V.4 + +Configuration ..................................................................................................................................... 19 +Driver.................................................................................................................................................. 20 +Suspension and Steering .................................................................................................................... 20 +Wheels and Tires ................................................................................................................................ 21 + +F - Chassis and Structural.................................................................................................................. 23 +F.1 +F.2 +F.3 +F.4 +F.5 +F.6 +F.7 +F.8 +F.9 +F.10 +F.11 + +Definitions .......................................................................................................................................... 23 +Documentation .................................................................................................................................. 25 +Tubing and Material ........................................................................................................................... 25 +Composite and Other Materials ......................................................................................................... 28 +Chassis Requirements ........................................................................................................................ 30 +Tube Frames ....................................................................................................................................... 37 +Monocoque ........................................................................................................................................ 39 +Front Chassis Protection .................................................................................................................... 43 +Fuel System (IC Only) ......................................................................................................................... 48 +Accumulator Container (EV Only) ...................................................................................................... 49 +Tractive System (EV Only) .................................................................................................................. 52 + +T - Technical Aspects ........................................................................................................................ 54 +T.1 +T.2 +T.3 +T.4 +T.5 + +Cockpit................................................................................................................................................ 54 +Driver Accommodation ...................................................................................................................... 58 +Brakes ................................................................................................................................................. 63 +Electronic Throttle Components ........................................................................................................ 64 +Powertrain.......................................................................................................................................... 66 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 2 of 143 + + T.6 +T.7 +T.8 +T.9 + +Pressurized Systems ........................................................................................................................... 68 +Bodywork and Aerodynamic Devices ................................................................................................. 69 +Fasteners ............................................................................................................................................ 71 +Electrical Equipment .......................................................................................................................... 72 + +VE - Vehicle and Driver Equipment ................................................................................................... 75 +VE.1 +VE.2 +VE.3 + +Vehicle Identification ......................................................................................................................... 75 +Vehicle Equipment ............................................................................................................................. 75 +Driver Equipment ............................................................................................................................... 77 + +IC - Internal Combustion Engine Vehicles .......................................................................................... 79 +IC.1 +IC.2 +IC.3 +IC.4 +IC.5 +IC.6 +IC.7 +IC.8 +IC.9 + +General Requirements ....................................................................................................................... 79 +Air Intake System ............................................................................................................................... 79 +Throttle .............................................................................................................................................. 80 +Electronic Throttle Control................................................................................................................. 81 +Fuel and Fuel System ......................................................................................................................... 84 +Fuel Injection ...................................................................................................................................... 86 +Exhaust and Noise Control ................................................................................................................. 87 +Electrical ............................................................................................................................................. 88 +Shutdown System............................................................................................................................... 88 + +EV - Electric Vehicles ........................................................................................................................ 90 +EV.1 +EV.2 +EV.3 +EV.4 +EV.5 +EV.6 +EV.7 +EV.8 +EV.9 +EV.10 +EV.11 + +Definitions .......................................................................................................................................... 90 +Documentation .................................................................................................................................. 90 +Electrical Limitations .......................................................................................................................... 90 +Components ....................................................................................................................................... 91 +Energy Storage ................................................................................................................................... 94 +Electrical System ................................................................................................................................ 98 +Shutdown System............................................................................................................................. 102 +Charger Requirements ..................................................................................................................... 107 +Vehicle Operations ........................................................................................................................... 108 +Event Site Activities .......................................................................................................................... 109 +Work Practices ................................................................................................................................. 109 + +IN - Technical Inspection ................................................................................................................ 112 +IN.1 +IN.2 +IN.3 +IN.4 +IN.5 +IN.6 +IN.7 +IN.8 +IN.9 +IN.10 +IN.11 +IN.12 +IN.13 +IN.14 +IN.15 + +Inspection Requirements ................................................................................................................. 112 +Inspection Conduct .......................................................................................................................... 112 +Initial Inspection ............................................................................................................................... 113 +Electrical Technical Inspection (EV Only) ......................................................................................... 113 +Driver Cockpit Checks....................................................................................................................... 114 +Driver Template Inspections ............................................................................................................ 115 +Cockpit Template Inspections .......................................................................................................... 115 +Mechanical Technical Inspection ..................................................................................................... 115 +Tilt Test ............................................................................................................................................. 116 +Noise and Switch Test (IC Only) ....................................................................................................... 117 +Rain Test (EV Only) ........................................................................................................................... 118 +Brake Test......................................................................................................................................... 118 +Inspection Approval ......................................................................................................................... 119 +Modifications and Repairs ............................................................................................................... 119 +Reinspection ..................................................................................................................................... 120 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 3 of 143 + + S - Static Events.............................................................................................................................. 121 +S.1 +S.2 +S.3 +S.4 + +General Static ................................................................................................................................... 121 +Presentation Event ........................................................................................................................... 121 +Cost and Manufacturing Event......................................................................................................... 122 +Design Event..................................................................................................................................... 126 + +D - Dynamic Events ........................................................................................................................ 128 +D.1 +D.2 +D.3 +D.4 +D.5 +D.6 +D.7 +D.8 +D.9 +D.10 +D.11 +D.12 +D.13 +D.14 + +General Dynamic .............................................................................................................................. 128 +Pit and Paddock................................................................................................................................ 128 +Driving .............................................................................................................................................. 129 +Flags ................................................................................................................................................. 130 +Weather Conditions ......................................................................................................................... 130 +Tires and Tire Changes ..................................................................................................................... 131 +Driver Limitations ............................................................................................................................. 132 +Definitions ........................................................................................................................................ 132 +Acceleration Event ........................................................................................................................... 132 +Skidpad Event ................................................................................................................................... 133 +Autocross Event ............................................................................................................................... 135 +Endurance Event .............................................................................................................................. 137 +Efficiency Event ................................................................................................................................ 141 +Post Endurance ................................................................................................................................ 143 + +Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com + +REVISION SUMMARY +Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 +1.0 + +Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 +Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 +Allowance for Late Submissions DR.3.3.1 +Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, +EV.5.9, EV.7.8.4 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 4 of 143 + + GR - GENERAL REGULATIONS +GR.1 +GR.1.1 + +FORMULA SAE COMPETITION OBJECTIVE +Collegiate Design Series +SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and +graduate engineering students in a variety of disciplines for future employment in mobilityrelated industries by challenging them with a real world, engineering application. +Through the Engineering Design Process, experiences may include but are not limited to: +• +• +• +• +• +• + +Project management, budgeting, communication, and resource management skills +Team collaboration +Applying industry rules and regulations +Design, build, and test the performance of a real vehicle +Interact and compete with other students from around the globe +Develop and prepare technical documentation + +Students also gain valuable exposure to and engagement with industry professionals to +enhance 21st century learning skills, to build their own network and help prepare them for the +workforce after graduation. +GR.1.2 + +Formula SAE Concept +The Formula SAE® competitions challenge teams of university undergraduate and graduate +students to conceive, design, fabricate, develop and compete with small, formula style +vehicles. + +GR.1.3 + +Engineering Competition +Formula SAE® is an engineering education competition that requires performance +demonstration of vehicles in a series of events, off track and on track against the clock. +Each competition gives teams the chance to demonstrate their creativity and engineering +skills in comparison to teams from other universities around the world. + +GR.1.4 + +Vehicle Design Objectives + +GR.1.4.1 Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and +demonstrate a prototype vehicle +GR.1.4.2 The vehicle should have high performance and be sufficiently durable to successfully complete +all the events at the Formula SAE competitions. +GR.1.4.3 Additional design factors include: aesthetics, cost, ergonomics, maintainability, and +manufacturability. +GR.1.4.4 Each design will be judged and evaluated against other competing designs in a series of Static +and Dynamic events to determine the vehicle that best meets the design goals and may be +profitably built and marketed. +GR.1.5 + +Good Engineering Practices +Vehicles entered into Formula SAE competitions should be designed and fabricated in +accordance with good engineering practices. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 5 of 143 + + GR.2 +GR.2.1 + +ORGANIZER AUTHORITY +General Authority +SAE International and the competition organizing bodies reserve the right to revise the +schedule of any competition and/or interpret or modify the competition rules at any time and +in any manner that is, in their sole judgment, required for the efficient operation of the event +or the Formula SAE series as a whole. + +GR.2.2 + +Right to Impound + +GR.2.2.1 SAE International and other competition organizing bodies may impound any onsite vehicle or +part of the vehicle at any time during a competition. +GR.2.2.2 Team access to the vehicle or impound may be restricted. +GR.2.3 + +Problem Resolution +Any problems that arise during the competition will be resolved through the onsite organizers +and the decision will be final. + +GR.2.4 + +Restriction on Vehicle Use +SAE International, competition organizer(s) and officials are not responsible for use of vehicles +designed in compliance with these Formula SAE Rules outside of the official Formula SAE +competitions. + +GR.3 + +TEAM RESPONSIBILITY + +GR.3.1 + +Rules Compliance +By registering for a Formula SAE competition, the team, members of the team as individuals, +faculty advisors and other personnel of the entering university agree to comply with, and be +bound by, these rules and all rule interpretations or procedures issued or announced by SAE +International, the Formula SAE Rules Committee and the other organizing bodies. + +GR.3.2 + +Student Project +By registering for any university program, the University registered assumes liability of the +student project. + +GR.3.3 + +Understanding the Rules +Teams, team members as individuals and faculty advisors, are responsible for reading and +understanding the rules in effect for the competition in which they are participating. + +GR.3.4 + +Participating in the Competition + +GR.3.4.1 Teams, individual team members, faculty advisors and other representatives of a registered +university who are present onsite at a competition are “participating in the competition” from +the time they arrive at the competition site until they depart the site at the conclusion of the +competition or earlier by withdrawing. +GR.3.4.2 All team members, faculty advisors and other university representatives must cooperate with, +and follow all instructions from, competition organizers, officials and judges. +GR.3.5 + +Forfeit for Non Appearance + +GR.3.5.1 It is the responsibility of each team to be in the right location at the right time. +GR.3.5.2 If a team is not present and ready to compete at the scheduled time, they forfeit their attempt +at that event. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 6 of 143 + + GR.3.5.3 There are no makeups for missed appearances. + +GR.4 +GR.4.1 + +RULES AUTHORITY AND ISSUE +Rules Authority +The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are +issued under the authority of the SAE International Collegiate Design Series. + +GR.4.2 + +Rules Validity + +GR.4.2.1 The Formula SAE Rules posted on the website and dated for the calendar year of the +competition are the rules in effect for the competition. +GR.4.2.2 Rules appendices or supplements may be posted on the website and incorporated into the +rules by reference. +GR.4.2.3 Additional guidance or reference documents may be posted on the website. +GR.4.2.4 Any rules, questions, or resolutions from previous years are not valid for the current +competition year. +GR.4.3 + +Rules Alterations + +GR.4.3.1 The Formula SAE rules may be revised, updated, or amended at any time +GR.4.3.2 Official designated communications from the Formula SAE Rules Committee, SAE International +or the other organizing bodies are to be considered part of, and have the same validity as, +these rules +GR.4.3.3 Draft rules or proposals may be issued for comments, however they are a courtesy, are not +valid for any competitions, and may or may not be implemented in whole or in part. +GR.4.4 + +Rules Compliance + +GR.4.4.1 All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE +Online Website to verify the current version. +GR.4.4.2 Teams and team members must comply with the general rules and any specific rules for each +competition they enter. +GR.4.4.3 Any regulations pertaining to the use of the competition site by teams or individuals and +which are posted, announced and/or otherwise publicly available are incorporated into the +Formula SAE Rules by reference. +As examples, all competition site waiver requirements, speed limits, parking and facility use +rules apply to Formula SAE participants. +GR.4.5 + +Violations on Intent +The violation of the intent of a rule will be considered a violation of the rule itself. + +GR.5 +GR.5.1 + +RULES OF CONDUCT +Unsportsmanlike Conduct +If unsportsmanlike conduct occurs, the team gets a warning from an official. +A second violation will result in expulsion of the team from the competition. + +GR.5.2 + +Official Instructions +Failure of a team member to follow an instruction or command directed specifically to that +team or team member will result in a 25 point penalty. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 7 of 143 + + GR.5.3 + +Arguments with Officials +Argument with, or disobedience of, any official may result in the team being eliminated from +the competition. +All members of the team may be immediately escorted from the grounds. + +GR.5.4 + +Alcohol and Illegal Material + +GR.5.4.1 Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site +during the entire competition. +GR.5.4.2 Any violation of this rule by any team member or faculty advisor will cause immediate +disqualification and expulsion of the entire team. +GR.5.4.3 Any use of drugs, or the use of alcohol by an underage individual will be reported to the local +authorities. +GR.5.5 + +Smoking – Prohibited +Smoking and e-cigarette use is prohibited in all competition areas. + +GR.6 +GR.6.1 + +GR.6.2 + +RULES FORMAT AND USE +Definition of Terms +• + +Must - designates a requirement + +• + +Must NOT - designates a prohibition or restriction + +• + +Should - gives an expectation + +• + +May - gives permission, not a requirement and not a recommendation + +Capitalized Terms +Items or areas which have specific definitions or have specific rules are capitalized. +For example, “Rules Questions” or “Primary Structure” + +GR.6.3 + +Headings +The article, section and paragraph headings in these rules are provided only to facilitate +reading: they do not affect the paragraph contents. + +GR.6.4 + +Applicability + +GR.6.4.1 Unless otherwise specified, all rules apply to all vehicles at all times +GR.6.4.2 Rules specific to vehicles based on their powertrain will be specified as such in the rule text: + +GR.6.5 + +• + +Internal Combustion + +“IC” or “IC Only” + +• + +Electric Vehicle + +“EV” or “EV Only” + +Figures and Illustrations +Figures and illustrations give clarification or guidance, but are Rules only when referred to in +the text of a rule + +GR.6.6 + +Change Identification +Any summary of changed rules and/or changed portions marked in the rules themselves are +provided for courtesy, and may or may not include all changes. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 8 of 143 + + GR.7 + +RULES QUESTIONS + +GR.7.1 + +Question Types +Designated officials will answer questions that are not already answered in the rules or FAQs +or that require new or novel rule interpretations. +Rules Questions may also be used to request approval, as specified in these rules. + +GR.7.2 + +Question Format + +GR.7.2.1 All Rules Questions must include: +• + +Full name and contact information of the person submitting the question + +• + +University name – no abbreviations + +• + +The specific competition your team has, or is planning to, enter + +• + +Number of the applicable rule(s) + +GR.7.2.2 Response Time +• + +Please allow a minimum of two weeks for a response + +• + +Do not resubmit questions + +GR.7.2.3 Submission Addresses + +GR.7.3 + +a. + +Teams entering Formula SAE competitions: Follow the link and instructions published on +the FSAE Online Website to "Submit a Rules Question" + +b. + +Teams entering other competitions please visit those respective competition websites +for further instructions. + +Question Publication +Any submitted question and the official answer may be reproduced and freely distributed, in +complete and edited versions. + +GR.8 +GR.8.1 + +PROTESTS +Cause for Protest +A team may protest any rule interpretation, score or official action (unless specifically +excluded from Protest) which they feel has caused some actual, non trivial, harm to their +team, or has had a substantive effect on their score. + +GR.8.2 + +Preliminary Review – Required +Questions about scoring, judging, policies or any official action must be brought to the +attention of the organizer or SAE International staff for an informal preliminary review before +a protest may be filed. + +GR.8.3 + +GR.8.4 + +Protest Format +• + +All protests must be filed in writing + +• + +The completed protest must be presented to the organizer or SAE International staff by +the team captain. + +• + +Team video or data acquisition will not be reviewed as part of a protest. + +Protest Point Bond +A team must post a 25 point protest bond which will be forfeited if their protest is rejected. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 9 of 143 + + GR.8.5 + +Protest Period +Protests concerning any aspect of the competition must be filed in the protest period +announced by the competition organizers or 30 minutes of the posting of the scores of the +event to which the protest relates. + +GR.8.6 + +Decision +The decision regarding any protest is final. + +GR.9 +GR.9.1 + +VEHICLE ELIGIBILITY +Student Developed Vehicle + +GR.9.1.1 Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and +maintained by the student team members without direct involvement from professional +engineers, automotive engineers, racers, machinists or related professionals. +GR.9.1.2 Information Sources +The student team may use any literature or knowledge related to design and information from +professionals or from academics as long as the information is given as a discussion of +alternatives with their pros and cons. +GR.9.1.3 Professional Assistance +Professionals must not make design decisions or drawings. The Faculty Advisor may be +required to sign a statement of compliance with this restriction. +GR.9.1.4 Student Fabrication +Students should do all fabrication tasks +GR.9.2 + +Definitions + +GR.9.2.1 Competition Year +The period beginning at the event of the Formula SAE series where the vehicle first competes +and continuing until the start of the corresponding event held approximately 12 months later. +GR.9.2.2 First Year Vehicle +A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year +GR.9.2.3 Second Year Vehicle +A vehicle which has competed in a previous Competition Year +GR.9.2.4 Third Year Vehicle +A vehicle which has competed in more than one previous Competition Year +GR.9.3 + +Formula SAE Competition Eligibility + +GR.9.3.1 Only First Year Vehicles may enter the Formula SAE Competitions +a. + +If there is any question about the status as a First Year Vehicle, the team must provide +additional information and/or evidence. + +GR.9.3.2 Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the +organizer of the specific competition. +The Formula SAE and Formula SAE Electric events in North America do not allow Second Year +Vehicles +GR.9.3.3 Third Year Vehicles must not enter any Formula SAE Competitions + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 10 of 143 + + AD - ADMINISTRATIVE REGULATIONS +AD.1 THE FORMULA SAE SERIES +AD.1.1 + +Rule Variations +All competitions in the Formula SAE Series may post rule variations specific to the operation of +the events in their countries. Vehicle design requirements and restrictions will remain +unchanged. Any rule variations will be posted on the websites specific to those competitions. + +AD.1.2 + +Official Announcements and Competition Information +Teams must read the published announcements by SAE International and the other organizing +bodies and be familiar with all official announcements concerning the competitions and any +released rules interpretations. + +AD.1.3 + +Official Languages +The official language of the Formula SAE series is English. +Document submissions, presentations and discussions in English are acceptable at all +competitions in the series. + +AD.2 OFFICIAL INFORMATION SOURCES +These websites are referenced in these rules. Refer to the websites for additional information +and resources. +AD.2.1 + +Event Website +The Event Website for Formula SAE is specific to each competition, refer to: +https://www.sae.org/attend/student-events + +AD.2.2 + +FSAE Online Website +The FSAE Online website is at: + +http://fsaeonline.com/ + +AD.2.2.1 Documents, forms, and information are accessed from the “Series Resources” link +AD.2.2.2 Each registered team must have an account on the FSAE Online Website. +AD.2.2.3 Each team must have one or more persons as Team Captain. The Team Captain must accept +Team Members. +AD.2.2.4 Only persons designated Team Members or Team Captains are able to upload documents to +the website. +AD.2.3 + +Contacts +Contact collegiatecompetitions@sae.org with any problems/comments/concerns +Consult the specific website for the other competitions requirements. + +AD.3 INDIVIDUAL PARTICIPATION REQUIREMENTS +AD.3.1 + +Eligibility + +AD.3.1.1 Team members must be enrolled as degree seeking undergraduate or graduate students in +the college or university of the team with which they are participating. +AD.3.1.2 Team members who have graduated during the seven month period prior to the competition +remain eligible to participate. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 11 of 143 + + AD.3.1.3 Teams which are formed with members from two or more universities are treated as a single +team. A student at any university making up the team may compete at any competition +where the team participates. The multiple universities are treated as one university with the +same eligibility requirements. +AD.3.1.4 Each team member may participate at a competition for only one team. This includes +competitions where the University enters both IC and EV teams. +AD.3.2 + +Age +Team members must be minimum 18 years of age. + +AD.3.3 + +Driver’s License +Team members who will drive a competition vehicle at any time during a competition must +hold a valid, government issued driver’s license. + +AD.3.4 + +Society Membership +Team members must be members of SAE International +Proof of membership, such as membership card, is required at the competition. + +AD.3.5 + +Medical Insurance +Individual medical insurance coverage is required and is the sole responsibility of the +participant. + +AD.3.6 + +Disabled Accessibility +Team members who require accessibility for areas outside of ADA Compliance must contact +organizers at collegiatecompetitions@sae.org prior to start of competition. + +AD.4 INDIVIDUAL REGISTRATION REQUIREMENTS +AD.4.1 + +Preliminary Registration + +AD.4.1.1 All students and faculty must be affiliated to your respective school /college/university on the +Event Website before the deadline shown on the Event Website +AD.4.1.2 International student participants (or unaffiliated Faculty Advisors) who are not SAE +International members must create a free customer account profile on www.sae.org. Upon +completion, please email collegiatecompetitions@sae.org the assigned customer number +stating also the event and university affiliation. +AD.4.2 + +Onsite Registration + +AD.4.2.1 All team members and faculty advisors must register at the competition site +AD.4.2.2 All onsite participants, including students, faculty and volunteers, must sign a liability waiver +upon registering onsite. +AD.4.2.3 Onsite registration must be completed before the vehicle may be unloaded, uncrated or +worked upon in any manner. + +AD.5 TEAM ADVISORS AND OFFICERS +AD.5.1 + +Faculty Advisor + +AD.5.1.1 Each team must have a Faculty Advisor appointed by their university. +AD.5.1.2 The Faculty Advisor should accompany the team to the competition and will be considered by +the officials to be the official university representative. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 12 of 143 + + AD.5.1.3 Faculty Advisors: + +AD.5.2 + +a. + +May advise their teams on general engineering and engineering project management +theory + +b. + +Must not design, build or repair any part of the vehicle + +c. + +Must not develop any documentation or presentation + +Electrical System Officer (EV Only) +The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle +during the event + +AD.5.2.1 Each participating team must appoint one or more ESO for the event +AD.5.2.2 The ESO must be: +a. + +A valid team member, see AD.3 Individual Participation Requirements + +b. + +One or more ESO must not be a driver + +c. + +Certified or has received appropriate practical training whether formal or informal for +working with High Voltage systems in automotive vehicles +Give details of the training on the ESO/ESA form + +AD.5.2.3 Duties of the ESO - see EV.11.1.1 +AD.5.3 + +Electric System Advisor (EV Only) + +AD.5.3.1 The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated +by the team who can advise on the electrical and control systems that will be integrated into +the vehicle. The faculty advisor may also be the ESA if all the requirements below are met. +AD.5.3.2 The ESA must supply details of their experience of electrical and/or control systems +engineering as used in the vehicle on the ESO/ESA form +AD.5.3.3 The ESA must be sufficiently qualified to advise the team on their proposed electrical and +control system designs based on significant experience of the technology being developed and +its implementation into vehicles or other safety critical systems. More than one person may +be needed. +AD.5.3.4 The ESA must advise the team on the merits of any relevant engineering solutions. Solutions +should be discussed, questioned and approved before they are implemented into the final +vehicle design. +AD.5.3.5 The ESA should advise the students on any required training to work with the systems on the +vehicle. +AD.5.3.6 The ESA must review the Electrical System Form and to confirm that in principle the vehicle +has been designed using good engineering practices. +AD.5.3.7 The ESA must make sure that the team communicates any unusual aspects of the design to +reduce the risk of exclusion or significant changes being required to pass Technical Inspection. + +AD.6 COMPETITION REGISTRATION +AD.6.1 + +General Information + +AD.6.1.1 Registration for Formula SAE competitions must be completed on the Event Website. +AD.6.1.2 Refer to the individual competition websites for registration requirements for other +competitions + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 13 of 143 + + AD.6.2 + +Registration Details + +AD.6.2.1 Refer to the Event Website for specific registration requirements and details. +• + +Registration limits and Waitlist limits will be posted on the Event Website. + +• + +Registration will open at the date and time posted on the Event Website. + +• + +Registration(s) may have limitations + +AD.6.2.2 Once a competition reaches the registration limit, a Waitlist will open. +AD.6.2.3 Beginning on the date and time posted on the Event Website, any remaining slots will be +available to any team on a first come, first serve basis. +AD.6.2.4 Registration and the Waitlist will close at the date and time posted on the Event Website or +when all available slots have been taken, whichever occurs first. +AD.6.3 + +Registration Fees + +AD.6.3.1 Registration fees must be paid by the deadline specified on the respective competition +website +AD.6.3.2 Registration fees are not refundable and not transferrable to any other competition. +AD.6.4 + +Waitlist + +AD.6.4.1 Waitlisted teams must submit all documents by the same deadlines as registered teams to +remain on the Waitlist. +AD.6.4.2 Once a team withdraws from the competition, the organizer will inform the next team on the +Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the +registered list has opened. +AD.6.4.3 The team will then have 24 hours to accept or reject the position and an additional 24 hours +to have the registration payment completed or in process. +AD.6.5 + +Withdrawals +Registered teams that will not attend the competition must inform SAE International or the +organizer, as posted on the Event Website + +AD.7 COMPETITION SITE +AD.7.1 + +Personal Vehicles +Personal cars and trailers must be parked in designated areas only. Only authorized vehicles +will be allowed in the track areas. + +AD.7.2 + +Motorcycles, Bicycles, Rollerblades, etc. - Prohibited +The use of motorcycles, quads, bicycles, scooters, skateboards, rollerblades or similar personcarrying devices by team members and spectators in any part of the competition area, +including the paddocks, is prohibited. + +AD.7.3 + +Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited +The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any +part of the competition site, including the paddocks, is prohibited. + +AD.7.4 + +Trash Cleanup + +AD.7.4.1 Cleanup of trash and debris is the responsibility of the teams. +• + +The team’s work area should be kept uncluttered + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 14 of 143 + + • + +At the end of the day, each team must clean all debris from their area and help with +maintaining a clean paddock + +AD.7.4.2 Teams must remove all of their material and trash when leaving the site at the end of the +competition. +AD.7.4.3 Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be +billed for removal and/or cleanup costs. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 15 of 143 + + DR - DOCUMENT REQUIREMENTS +DR.1 + +DOCUMENTATION + +DR.1.1 + +Requirements + +DR.1.1.1 The documents supporting each vehicle must be submitted before the deadlines posted on +the Event Website or otherwise published by the organizer. +DR.1.1.2 The procedures for submitting documents are published on the Event Website or otherwise +identified by the organizer. +DR.1.2 + +Definitions + +DR.1.2.1 Submission Date +The date and time of upload to the website +DR.1.2.2 Submission Deadline +The date and time by which the document must be uploaded or submitted +DR.1.2.3 No Submissions Accepted After +The last date and time that documents may be uploaded or submitted +DR.1.2.4 Late Submission +• + +Uploaded after the Submission Deadline and prior to No Submissions Accepted After + +• + +Submitted largely incomplete prior to or after the Submission Deadline + +DR.1.2.5 Not Submitted +• + +Not uploaded prior to No Submissions Accepted After + +• + +Not in the specified form or format + +DR.1.2.6 Amount Late +The number of days between the Submission Deadline and the Submission Date. +Any partial day is rounded up to a full day. +Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late +would be two days penalty +DR.1.2.7 Grounds for Removal +A designated document that if Not Submitted may cause Removal of Team Entry +DR.1.2.8 Reviewer +A designated event official who is assigned to review and accept a Submission + +DR.2 + +SUBMISSION DETAILS + +DR.2.1 + +Submission Location +Teams entering Formula SAE competitions in North America must upload the required +documents to the team account on the FSAE Online Website, see AD.2.2 + +DR.2.2 + +Submission Format Requirements +Refer to Table DR-1 Submission Information + +DR.2.2.1 Template files with the required format must be used when specified in Table DR-1 +DR.2.2.2 Template files are available on the FSAE Online Website, see AD.2.2.1 +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 16 of 143 + + DR.2.2.3 Do Not alter the format of any provided template files +DR.2.2.4 Each submission must be one single file in the specified format (PDF - Portable Document File, +XLSX - Microsoft Excel Worksheet File) + +DR.3 +DR.3.1 + +SUBMISSION PENALTIES +Submissions + +DR.3.1.1 Each team is responsible for confirming that their documents have been properly uploaded or +submitted and that the deadlines have been met +DR.3.1.2 Prior to the Submission Deadline: +a. + +Documents may be uploaded at any time + +b. + +Uploads may be replaced with new uploads without penalty + +DR.3.1.3 If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline +for the revised document may apply +DR.3.1.4 Teams will not be notified if a document is submitted incorrectly +DR.3.2 + +Penalty Detail + +DR.3.2.1 Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion. +DR.3.2.2 Additional penalties will apply if Not Submitted, subject to official discretion +DR.3.2.3 Penalties up to and including Removal of Team Entry may apply based on document reviews, +subject to official discretion +DR.3.3 + +Removal of Team Entry + +DR.3.3.1 The organizer may remove the team entry when a: +a. + +Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. +Removals will occur after each Document Submission deadline + +b. + +Team does not respond to Reviewer requests or organizer communications + +DR.3.3.2 When a team entry will be removed: + +DR.3.4 + +a. + +The team will be notified prior to cancelling registration + +b. + +No refund of entry fees will be given + +Specific Penalties + +DR.3.4.1 Electronic Throttle Control (ETC) (IC Only) +a. + +There is no point penalty for ETC documents + +b. + +The team will not be allowed to run ETC on their vehicle and must use mechanical +throttle operation when: +• + +The ETC Notice of Intent is Not Submitted + +• + +The ETC Systems Form is Not Submitted, or is not accepted + +DR.3.4.2 Fuel Type IC.5.1 +There is no point penalty for a late fuel type order. Once the deadline has passed, the team +will be allocated the basic fuel type. +DR.3.4.3 Program Submissions +Please submit material requested for the Event Program by the published deadlines + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 17 of 143 + + Table DR-1 Submission Information +Submission + +Refer +to: + +Required +Format: + +Submit in +File Format: + +Penalty +Group + +Structural Equivalency Spreadsheet +(SES) +as applicable to your design + +F.2.1 + +see below + +XLSX + +Tech + +ETC - Notice of Intent + +IC.4.3 + +see below + +PDF + +ETC + +ETC – Systems Form (ETCSF) + +IC.4.3 + +see below + +XLSX + +ETC + +EV – Electrical Systems Officer and +Electrical Systems Advisor Form + +AD.5.2, +AD.5.3 + +see below + +PDF + +Tech + +EV - Electrical System Form (ESF) + +EV.2.1 + +see below + +XLSX + +Tech + +Presentation (if required, see S.2.4.1) + +S.2.4 + +see S.2.4 + +see S.2.4 + +Other + +Cost Report + +S.3.4 + +see S.3.4.2 + +(1) + +Other + +Cost Addendum + +S.3.7 + +see below + +see S.3.7 + +none + +Design Briefing + +S.4.3 + +see below + +PDF + +Other + +Vehicle Drawings + +S.4.4 + +see S.4.4.1 + +PDF + +Other + +Design Spec Sheet + +S.4.5 + +see below + +XLSX + +Other + +Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 +Note (1): Refer to the FSAE Online website for submission requirements +Table DR-2 Submission Penalty Information +Penalty Group + +Penalty Points +per 24 Hours + +ETC + +none + +Not Approved to use ETC - see DR.3.4.1 + +Tech + +-20 + +Grounds for Removal - see DR.3.3 + +Other + +-10 + +Removed from Cost/Design/Presentation +Event and Score 0 points – see DR.3.2.2 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +Not Submitted after the Deadline + +© 2024 SAE International + +Page 18 of 143 + + V - VEHICLE REQUIREMENTS +V.1 + +CONFIGURATION +The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels +that are not in a straight line. + +V.1.1 + +Open Wheel +Open Wheel vehicles must satisfy all of these criteria: + +V.1.2 + +a. + +The top 180° of the wheels/tires must be unobstructed when viewed from vertically +above the wheel. + +b. + +The wheels/tires must be unobstructed when viewed from the side. + +c. + +No part of the vehicle may enter a keep out zone defined by two lines extending +vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the +front and rear tires in the side view elevation of the vehicle, with tires steered straight +ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire +to the inboard plane of the wheel/tire. + +Wheelbase +The vehicle must have a minimum wheelbase of 1525 mm + +V.1.3 + +Vehicle Track + +V.1.3.1 + +The track and center of gravity must combine to provide sufficient rollover stability. See +IN.9.2 + +V.1.3.2 + +The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 19 of 143 + + V.1.4 + +Ground Clearance + +V.1.4.1 + +Ground clearance must be sufficient to prevent any portion of the vehicle except the tires +from touching the ground during dynamic events + +V.1.4.2 + +The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its +lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less. +a. + +V.1.4.3 + +There must be an opening for measuring the ride height at that point without removing +aerodynamic devices + +Intentional or excessive ground contact of any portion of the vehicle other than the tires will +forfeit a run or an entire dynamic event +The intent is that sliding skirts or other devices that by design, fabrication or as a consequence +of moving, contact the track surface are prohibited and any unintended contact with the +ground which causes damage, or in the opinion of the Dynamic Event Officials could result in +damage to the track, will result in forfeit of a run or an entire dynamic event + +V.2 + +DRIVER + +V.2.1 + +Accommodation + +V.2.1.1 + +The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female +up to 95th percentile male. +• + +Accommodation includes driver position, driver controls, and driver equipment + +• + +Anthropometric data may be found on the FSAE Online Website + +V.2.1.2 + +The driver’s head and hands must not contact the ground in any rollover attitude + +V.2.2 + +Visibility + +V.3 + +a. + +The driver must have sufficient visibility to the front and sides of the vehicle + +b. + +When seated in a normal driving position, the driver must have a minimum field of vision +of 100° to the left and the right sides + +c. + +If mirrors are required for this rule, they must remain in position and adjusted to enable +the required visibility throughout all Dynamic Events + +SUSPENSION AND STEERING + +V.3.1 + +Suspension + +V.3.1.1 + +The vehicle must have a fully operational suspension system with shock absorbers, front and +rear, with usable minimum wheel travel of 50 mm, with a driver seated. + +V.3.1.2 + +Officials may disqualify vehicles which do not represent a serious attempt at an operational +suspension system, or which demonstrate handling inappropriate for an autocross circuit. + +V.3.1.3 + +All suspension mounting points must be visible at Technical Inspection by direct view or by +removing any covers. + +V.3.1.4 + +Fasteners in the Suspension system are Critical Fasteners, see T.8.2 + +V.3.1.5 + +All spherical rod ends and spherical bearings on the suspension and steering must be one of: +• + +Mounted in double shear + +• + +Captured by having a screw/bolt head or washer with an outside diameter that is larger +than spherical bearing housing inside diameter. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 20 of 143 + + V.3.2 + +Steering + +V.3.2.1 + +The Steering Wheel must be mechanically connected to the front wheels + +V.3.2.2 + +Electrically operated steering of the front wheels is prohibited + +V.3.2.3 + +Steering systems must use a rigid mechanical linkage capable of tension and compression +loads for operation + +V.3.2.4 + +The steering system must have positive steering stops that prevent the steering linkages from +locking up (the inversion of a four bar linkage at one of the pivots). The stops: +a. + +Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis +during the track events + +b. + +May be put on the uprights or on the rack + +V.3.2.5 + +Allowable steering system free play is limited to seven degrees (7°) total measured at the +steering wheel. + +V.3.2.6 + +The steering rack must be mechanically attached to the Chassis F.5.14 + +V.3.2.7 + +Joints between all components attaching the Steering Wheel to the steering rack must be +mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup +are not permitted. + +V.3.2.8 + +Fasteners in the steering system are Critical Fasteners, see T.8.2 + +V.3.2.9 + +Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above + +V.3.2.10 Rear wheel steering may be used. +a. + +Rear wheel steering must incorporate mechanical stops to limit the range of angular +movement of the rear wheels to a maximum of six degrees (6°) + +b. + +The team must provide the ability for the steering angle range to be verified at Technical +Inspection with a driver in the vehicle + +c. + +Rear wheel steering may be electrically operated + +V.3.3 + +Steering Wheel + +V.3.3.1 + +In any angular position, the Steering Wheel must meet T.1.4.4 + +V.3.3.2 + +The Steering Wheel must be attached to the column with a quick disconnect. + +V.3.3.3 + +The driver must be able to operate the quick disconnect while in the normal driving position +with gloves on. + +V.3.3.4 + +The Steering Wheel must have a continuous perimeter that is near circular or near oval. +The outer perimeter profile may have some straight sections, but no concave sections. “H”, +“Figure 8”, or cutout wheels are not allowed. + +V.4 +V.4.1 + +WHEELS AND TIRES +Wheel Size +Wheels must be 203.2 mm (8.0 inches) or more in diameter. + +V.4.2 + +Wheel Attachment + +V.4.2.1 + +Any wheel mounting system that uses a single retaining nut must incorporate a device to +retain the nut and the wheel if the nut loosens. +A second nut (jam nut) does not meet this requirement + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 21 of 143 + + V.4.2.2 + +Teams using modified lug bolts or custom designs must provide proof that Good Engineering +Practices have been followed in their design. + +V.4.2.3 + +If used, aluminum wheel nuts must be hard anodized and in pristine condition. + +V.4.3 + +Tires +Vehicles may have two types of tires, Dry and Wet + +V.4.3.1 + +V.4.3.2 + +Dry Tires +a. + +The tires on the vehicle when it is presented for Technical Inspection. + +b. + +May be any size or type, slicks or treaded. + +Wet Tires +Any size or type of treaded or grooved tire where: +• + +The tread pattern or grooves were molded in by the tire manufacturer, or were cut by +the tire manufacturer or appointed agent. +Any grooves that have been cut must have documented proof that this rule was met + +• +V.4.3.3 + +V.4.3.4 + +V.4.3.5 + +There is a minimum tread depth of 2.4 mm + +Tire Set +a. + +All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be +identical. + +b. + +Once each tire set has been presented for Technical Inspection, any tire compound or +size, or wheel type or size must not be changed. + +Tire Pressure +a. + +Tire Pressure must be in the range allowed by the manufacturer at all times. + +b. + +Tire Pressure may be inspected at any time + +Requirements for All Tires +a. + +Teams must not do any hand cutting, grooving or modification of the tires. + +b. + +Tire warmers are not allowed. + +c. + +No traction enhancers may be applied to the tires at any time onsite at the competition. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 22 of 143 + + F - CHASSIS AND STRUCTURAL +F.1 + +DEFINITIONS + +F.1.1 + +Chassis +The fabricated structural assembly that supports all functional vehicle systems. +This assembly may be a single fabricated structure, multiple fabricated structures or a +combination of composite and welded structures. + +F.1.2 + +Frame Member +A minimum representative single piece of uncut, continuous tubing. + +F.1.3 + +Monocoque +A type of Chassis where loads are supported by the external panels + +F.1.4 + +Main Hoop +A roll bar located alongside or immediately aft of the driver’s torso. + +F.1.5 + +Front Hoop +A roll bar located above the driver’s legs, in proximity to the steering wheel. + +F.1.6 + +Roll Hoop(s) +Referring to the Front Hoop AND the Main Hoop + +F.1.7 + +Roll Hoop Bracing Supports +The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). + +F.1.8 + +Front Bulkhead +A planar structure that provides protection for the driver’s feet. + +F.1.9 + +Impact Attenuator +A deformable, energy absorbing device located forward of the Front Bulkhead. + +F.1.10 + +Primary Structure +The combination of these components: + +F.1.11 + +• + +Front Bulkhead and Front Bulkhead Support + +• + +Front Hoop, Main Hoop, Roll Hoop Braces and Supports + +• + +Side Impact Structure + +• + +(EV Only) Tractive System Protection and Rear Impact Protection + +• + +Any Frame Members, guides, or supports that transfer load from the Driver Restraint +System + +Primary Structure Envelope +A volume enclosed by multiple tangent planes, each of which follows the exact outline of the +Primary Structure Frame Members + +F.1.12 + +Major Structure +The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main +Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of +the Upper Side Impact Member or top of the Side Impact Zone. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 23 of 143 + + F.1.13 + +Rollover Protection Envelope +The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front +Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural +tube, or monocoque equivalent. +* If there are no Triangulated Structural members aft of the Main Hoop, the Rollover +Protection Envelope ends at the rear plane of the Main Hoop + +F.1.14 + +Tire Surface Envelope +The volume enclosed by tangent lines between the Main Hoop and the outside edge of each +of the four tires. + +F.1.15 + +Component Envelope +The area that is inside a plane from the top of the Main Hoop to the top of the Front +Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural +tube, or monocoque equivalent. * see note in step F.1.13 above + +F.1.16 + +Buckling Modulus (EI) +Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the +weakest axis + +F.1.17 + +Triangulation +An arrangement of Frame Members where all members and segments of members between +bends or nodes with Structural tubes form a structure composed entirely of triangles. +a. + +This is generally required between an upper member and a lower member, each may +have multiple segments requiring a diagonal to form multiple triangles. + +b. + +This is also what is meant by “properly triangulated” + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 24 of 143 + + F.1.18 + +Nonflammable Material +Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent + +F.2 + +DOCUMENTATION + +F.2.1 + +Structural Equivalency Spreadsheet - SES + +F.2.1.1 + +The SES is a supplement to the Formula SAE Rules and may provide guidance or further details +in addition to those of the Formula SAE Rules. + +F.2.1.2 + +The SES provides the means to: +a. + +Document the Primary Structure and show compliance with the Formula SAE Rules + +b. + +Determine Equivalence to Formula SAE Rules using an accepted basis + +F.2.2 + +Structural Documentation + +F.2.2.1 + +All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR Document Requirements + +F.2.3 + +Equivalence + +F.2.3.1 + +Equivalency in the structural context is determined and documented with the methods in the +SES + +F.2.3.2 + +Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same +application + +F.2.3.3 + +The properties of tubes and laminates may be combined to prove Equivalence. +For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate +panel, the panel only needs to be Equivalent to two Side Impact Tubes. + +F.2.4 + +Tolerance +Tolerance on dimensions given in the rules is allowed and is addressed in the SES. + +F.2.5 + +Fabrication +Vehicles must be fabricated in accordance with the design, materials, and processes described +in the SES. + +F.3 +F.3.1 + +TUBING AND MATERIAL +Dimensions +Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for +commonly available tubing. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 25 of 143 + + F.3.2 + +Tubing Requirements + +F.3.2.1 + +Requirements by Application +Steel Tube Must +Meet Size per +F.3.4: +Size B +Size C +Size A +Size B +Size B +Size D +Size A +Size B +Size C +Size B +Size A +Size C +Size B +Size C +Size C + +Application +a. +b. +c. +d. +e. +f. +g. +h. +i. +j. +k. +l. +m. +n. +o. + +Front Bulkhead +Front Bulkhead Support +Front Hoop +Front Hoop Bracing +Side Impact Structure +Bent / Multi Upper Side Impact Member +Main Hoop +Main Hoop Bracing +Main Hoop Bracing Supports +Driver Restraint Harness Attachment +Shoulder Harness Mounting Bar +Shoulder Harness Mounting Bar Bracing +Accumulator Mounting and Protection +Component Protection +Structural Tubing + +F.3.3 + +Non Structural Tubing + +F.3.3.1 + +Definition + +Alternative Tubing +Material Permitted +per F.3.5 ? +Yes +Yes +Yes +Yes +Yes +Yes +NO +NO +Yes +Yes +NO +Yes +Yes +Yes +Yes + +Any tubing which does NOT meet F.3.2.1.o Structural Tubing +F.3.3.2 + +Applicability +Non Structural Tubing is ignored when assessing compliance to any rule + +F.3.4 + +Steel Tubing and Material + +F.3.4.1 + +Minimum Requirements for Steel Tubing +A tube must have all four minimum requirements for each Size specified: +Tube + +Minimum +Area +Moment of +Inertia + +Minimum +Cross +Sectional +Area + +Minimum +Outside +Diameter or +Square Width + +Minimum +Wall +Thickness + +a. + +Size A + +11320 mm4 + +173 mm2 + +25.0 mm + +2.0 mm + +b. + +Size B + +8509 mm4 + +114 mm2 + +25.0 mm + +1.2 mm + +c. + +Size C + +6695 mm4 + +91 mm2 + +25.0 mm + +1.2 mm + +d. + +Size D + +18015 mm4 + +126 mm2 + +35.0 mm + +1.2 mm + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Example Sizes of +Round Tube +1.0” x 0.095” +25 x 2.5 mm +1.0” x 0.065” +25.4 x 1.6 mm +1.0” x 0.049” +25.4 x 1.2 mm +1.375” x 0.049” +35 x 1.2 mm + +Page 26 of 143 + + F.3.4.2 + +Properties for ANY steel material for calculations submitted in an SES must be: +a. + +Non Welded Properties for continuous material calculations: +Young’s Modulus (E) = 200 GPa (29,000 ksi) +Yield Strength (Sy) = 305 MPa (44.2 ksi) +Ultimate Strength (Su) = 365 MPa (52.9 ksi) + +b. + +Welded Properties for discontinuous material such as joint calculations: +Yield Strength (Sy) = 180 MPa (26 ksi) +Ultimate Strength (Su) = 300 MPa (43.5 ksi) + +F.3.4.3 + +Where Welded tubing reinforcements are required (such as inserts for bolt holes or material +to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be +shown to the original Non Welded tube in the SES + +F.3.5 + +Alternative Tubing Materials + +F.3.5.1 + +Alternative Materials may be used for applications shown as permitted in F.3.2.1 + +F.3.5.2 + +If any Alternative Materials are used, the SES must contain: + +F.3.5.3 + +a. + +Documentation of material type, (purchase receipt, shipping document or letter of +donation) and the material properties. + +b. + +Calculations that show equivalent to or better than the minimum requirements for steel +tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the +Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for +buckling modulus and for energy dissipation + +c. + +Details of the manufacturing technique and process + +Aluminum Tubing +a. + +Minimum Wall Thickness for Aluminum Tubing: Non Welded +Welded + +b. + +Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: +Young’s Modulus (E) + +69 GPa (10,000 ksi) + +Yield Strength (Sy) + +240 MPa (34.8 ksi) + +2.0 mm +3.0 mm + +Ultimate Strength (Su) 290 MPa (42.1 ksi) +c. + +Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: +Yield Strength (Sy) + +115 MPa (16.7 ksi) + +Ultimate Strength (Su) 175 MPa (25.4 ksi) +d. + +If welding is used on a regulated aluminum structure, the equivalent yield strength must +be considered in the “as welded” condition for the alloy used unless the team provides +detailed proof that the frame or component has been properly solution heat treated, +artificially aged, and not subject to heating during team manufacturing. + +e. + +If aluminum was solution heat treated and age hardened to increase its strength after +welding, the team must supply evidence of the process. +This includes, but is not limited to, the heat treating facility used, the process applied, +and the fixturing used. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 27 of 143 + + F.4 +F.4.1 + +COMPOSITE AND OTHER MATERIALS +Requirements +If any composite or other material is used, the SES must contain: + +F.4.1.1 + +Documentation of material type, (purchase receipt, shipping document or letter of donation) +and the material properties. + +F.4.1.2 + +Details of the manufacturing technique and/or composite layup technique as well as the +structural material used (examples - cloth type, weight, and resin type, number of layers, core +material, and skin material if metal). + +F.4.1.3 + +Calculations that show equivalence of the structure to one of similar geometry made to meet +the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency +calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, +buckling, and tension. + +F.4.1.4 + +Construction dates of the test panel(s) and monocoque, and approximate age(s) of the +materials used. + +F.4.2 + +Laminate and Material Testing + +F.4.2.1 + +Testing Requirements +a. + +Any tested samples must be engraved with the full date of construction and sample +name + +b. + +The same set of test results must not be used for different monocoques in different +years. + +The intent is for the test panel to use the same material batch, material age, material storage, +and student layup quality as the monocoque. +F.4.2.2 + +Primary Structure Laminate Testing +Teams must build new representative test panels for each ply schedule used in the regulated +regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer +to F.4.2.4 +a. + +b. + +Test panels must: +• + +Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm + +• + +Be supported by a span distance of 400 mm + +• + +Have equal surface area for the top and bottom skin + +• + +Have bare edges, without skin material + +The SES must include: +• + +Data from the 3 point bending tests + +• + +Pictures of the test samples + +• + +A picture of the test sample and test setup showing a measurement documenting +the supported span distance used in the SES + +c. + +Test panel results must be used to derive stiffness, yield strength, ultimate strength and +absorbed energy properties by the SES formula and limits for the purpose of calculating +laminate panels equivalency corresponding to Primary Structure regions of the chassis. + +d. + +Test panels must use the thickest core associated with each skin layup + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 28 of 143 + + Designs may use core thickness that is 50% - 100% of the test panel core thickness +associated with each skin layup + +F.4.2.3 + +e. + +Calculation of derived properties must use the part of test data where deflection is 50 +mm or less + +f. + +Calculation of absorbed energy must use the integral of force times displacement + +Comparison Test +Teams must make an equivalent test that will determine any compliance in the test rig and +establish an absorbed energy value of the baseline tubes. + +F.4.2.4 + +F.4.2.5 + +a. + +The comparison test must use two Side Impact steel tubes (F.3.2.1.e) + +b. + +The steel tubes must be tested to a minimum displacement of 19.0 mm + +c. + +The calculation of absorbed energy must use the integral of force times displacement +from the initiation of load to a displacement of 19.0 mm + +Test Conduct +a. + +The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture + +b. + +The load applicator used to test any panel/tubes as required in this section F.4.2 must +be: +• + +Metallic + +• + +Radius 50 mm + +c. + +The load applicator must overhang the test piece to prevent edge loading + +d. + +Any other material must not be put between the load applicator and the items on test + +Perimeter Shear Test +a. + +The Perimeter Shear Test must be completed by measuring the force required to push or +pull a 25 mm diameter flat punch through a flat laminate sample. + +b. + +The sample must: +• + +Measure 100 mm x 100 mm minimum + +• + +Have core and skin thicknesses identical to those used in the actual application + +• + +Be manufactured using the same materials and processes + +c. + +The fixture must support the entire sample, except for a 32 mm hole aligned coaxially +with the punch. + +d. + +The sample must not be clamped to the fixture + +e. + +The edge of the punch and hole in the fixture may include an optional fillet up to a +maximum radius of 1 mm. + +f. + +The SES must include force and displacement data and photos of the test setup. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 29 of 143 + + F.4.2.6 + +g. + +The first peak in the load-deflection curve must be used to determine the skin shear +strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5 + +h. + +The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5 + +Lap Joint Test +The Lap Joint Test measures the force required to pull apart a joint of two laminate samples +that are bonded together +a. + +A joint design with two perpendicular bond areas may show equivalence using the shear +performance of the smaller of the two areas + +b. + +A joint design with a single bond area must have two separate pull tests with different +orientations of the adhesive joint: + +c. + +• + +Parallel to the pull direction, with the adhesive joint in pure shear + +• + +T peel normal to the pull direction, with the adhesive joint in peel + +The samples used must: +• + +Have skin thicknesses identical to those used in the actual monocoque + +• + +Be manufactured using the same materials and processes + +The intent is to perform a test of the actual bond overlap, and fail the skin before the bond +d. + +The force and displacement data and photos of the test setup must be included in the +SES. + +e. + +The shear strength * normal area of the bond must be more than the UTS * cross +sectional area of the skin + +F.4.3 + +Use of Laminates + +F.4.3.1 + +Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the +nearest plies to core material. + +F.4.3.2 + +The monocoque must have the tested layup direction normal to the cross sections used for +Equivalence in the SES, with allowance for taper of the monocoque normal to the cross +section. + +F.4.3.3 + +Results from the 3 point bending test will be assigned to the 0 layup direction. + +F.4.3.4 + +All material properties in the directions designated by the SES must be 50% or more of those +in the tested “0” direction as calculated by the SES + +F.4.4 + +Equivalent Flat Panel Calculation + +F.4.4.1 + +When specified, the Equivalence of the chassis must be calculated as a flat panel with the +same composition as the chassis about the neutral axis of the laminate. + +F.4.4.2 + +The curvature of the panel and geometric cross section of the chassis must be ignored for +these calculations. + +F.4.4.3 + +Calculations of Equivalence that do not reference this section F.4.3 may use the actual +geometry of the chassis. + +F.5 + +CHASSIS REQUIREMENTS +This section applies to all Chassis, regardless of material or construction + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 30 of 143 + + F.5.1 + +Primary Structure + +F.5.1.1 + +The Primary Structure must be constructed from one or a combination of: + +F.5.1.2 + +• + +Steel Tubing and Material + +F.3.2 + +F.3.4 + +• + +Alternative Tubing Materials + +F.3.2 + +F.3.5 + +• + +Composite Material + +F.4 + +Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite +types must: +a. + +Meet all relevant requirements F.5.1.1 + +b. + +Show Equivalence F.2.3, as applicable + +c. + +Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent. + +F.5.2 + +Bent Tubes or Multiple Tubes + +F.5.2.1 + +The minimum radius of any bend, measured at the tube centerline, must be three or more +times the tube outside diameter (3 x OD). + +F.5.2.2 + +Bends must be smooth and continuous with no evidence of crimping or wall failure. + +F.5.2.3 + +If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere +in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be +attached to support it. +a. + +The support tube attachment point must be at the position along the bent tube where it +deviates farthest from a straight line connecting the two ends + +b. + +The support tube must terminate at a node of the chassis + +c. + +The support tube for any bent tube (other than the Upper Side Impact Member or +Shoulder Harness Mounting Bar) must be: +• + +The same diameter and thickness as the bent tube + +• + +Angled no more than 30° from the plane of the bent tube + +F.5.3 + +Holes and Openings in Regulated Tubing + +F.5.3.1 + +Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES. + +F.5.3.2 + +Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic +testing or by the drilling of inspection holes on request. + +F.5.3.3 + +Regulated tubing other than the open lower ends of Roll Hoops must have any open ends +closed by a welded cap or inserted metal plug. + +F.5.4 + +Fasteners in Primary Structure + +F.5.4.1 + +Bolted connections in the Primary Structure must use a removable bolt and nut. +Bonded fasteners and blind nuts and bolts do not meet this requirement + +F.5.4.2 + +Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2 + +F.5.4.3 + +Bolted connections in the Primary Structure using tabs or brackets must have an edge +distance ratio “e/D” of 1.5 or higher +“D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest +free edge +Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 31 of 143 + + F.5.5 + +Bonding in Regulated Structure + +F.5.5.1 + +Adhesive used and referenced bonding strength must be correct for the two substrate types + +F.5.5.2 + +Document the adhesive choice, age and expiration date, substrate preparation, and the +equivalency of the bonded joint in the SES + +F.5.5.3 + +The SES will reduce any referenced or tested adhesive values by 50% + +F.5.6 + +Roll Hoops + +F.5.6.1 + +The Chassis must include a Main Hoop and a Front Hoop + +F.5.6.2 + +The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with +Structural Tubing + +F.5.6.3 + +Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of +the two: + +F.5.6.4 + +a. + +Triangulated at a side view node + +b. + +Less than 25 mm from an Attachment point F.7.8 + +Roll Hoop and Driver Position +When seated normally and restrained by the Driver Restraint System, the helmet of a 95th +percentile male (see V.2.1.1) and all of the team’s drivers must: + +F.5.6.5 + +a. + +Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to +the top of the Front Hoop. + +b. + +Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to +the lower end of the Main Hoop Bracing if the bracing extends rearwards. + +c. + +Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing +extends forwards. + +Driver Template +A two dimensional template used to represent the 95th percentile male is made to these +dimensions (see figure below): +• + +A circle of diameter 200 mm will represent the hips and buttocks. + +• + +A circle of diameter 200 mm will represent the shoulder/cervical region. + +• + +A circle of diameter 300 mm will represent the head (with helmet). + +• + +A straight line measuring 490 mm will connect the centers of the two 200 mm circles. + +• + +A straight line measuring 280 mm will connect the centers of the upper 200 mm circle +and the 300 mm head circle. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 32 of 143 + + F.5.6.6 + +Driver Template Position +The Driver Template will be positioned as follows: +• + +The seat will be adjusted to the rearmost position + +• + +The pedals will be put in the most forward position + +• + +The bottom 200 mm circle will be put on the seat bottom where the distance between +the center of this circle and the rearmost face of the pedals is no less than 915 mm + +• + +The middle 200 mm circle, representing the shoulders, will be positioned on the seat +back + +• + +The upper 300 mm circle will be positioned no more than 25 mm away from the head +restraint (where the driver’s helmet would normally be located while driving) + +F.5.7 + +Front Hoop + +F.5.7.1 + +The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c + +F.5.7.2 + +With proper Triangulation, the Front Hoop may be fabricated from more than one piece of +tubing + +F.5.7.3 + +The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, +over and down to the lowest Frame Member on the other side of the Frame. + +F.5.7.4 + +The top-most surface of the Front Hoop must be no lower than the top of the steering wheel +in any angular position. See figure after F.5.9.6 below + +F.5.7.5 + +The Front Hoop must be no more than 250 mm forward of the steering wheel. +This distance is measured horizontally, on the vehicle centerline, from the rear surface of the +Front Hoop to the forward most surface of the steering wheel rim with the steering in the +straight ahead position. + +F.5.7.6 + +In side view, any part of the Front Hoop above the Upper Side Impact Structure must be +inclined less than 20° from the vertical. + +F.5.7.7 + +A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during +Technical Inspection + +F.5.8 + +Main Hoop + +F.5.8.1 + +The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing +meeting F.3.2.1.g + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 33 of 143 + + F.5.8.2 + +The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one +side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque +on the other side of the Frame. + +F.5.8.3 + +In the side view of the vehicle, +a. + +The part of the Main Hoop that lies above its attachment point to the upper Side Impact +Tube must be less than 10° from vertical. + +b. + +The part of the Main Hoop below the Upper Side Impact Member attachment: +• + +May be forward at any angle + +• + +Must not be rearward more than 10° from vertical + +F.5.8.4 + +In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 +mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom +tubes of the Major Structure of the Chassis. + +F.5.9 + +Main Hoop Braces + +F.5.9.1 + +Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h + +F.5.9.2 + +The Main Hoop must be supported by two Braces extending in the forward or rearward +direction, one on each of the left and right sides of the Main Hoop. + +F.5.9.3 + +In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the +same side of the vertical line through the top of the Main Hoop. +(If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the +Main Hoop leans rearward, the Braces must be rearward of the Main Hoop) + +F.5.9.4 + +The Main Hoop Braces must be attached 160 mm or less below the top most surface of the +Main Hoop. +The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop + +F.5.9.5 + +The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more. + +F.5.9.6 + +The Main Hoop Braces must be straight, without any bends. + +F.5.9.7 + +The Main Hoop Braces must be: +a. + +Securely integrated into the Frame + +b. + +Capable of transmitting all loads from the Main Hoop into the Major Structure of the +Chassis without failing + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 34 of 143 + + F.5.10 + +Head Restraint Protection +An additional frame member may be added to meet T.2.8.3.b + +F.5.10.1 If used, the Head Restraint Protection frame member must: +a. + +Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop + +b. + +Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting +F.3.2.1.h + +c. + +Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3) + +F.5.10.2 The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection +F.5.11 + +External Items + +F.5.11.1 Definition - items outside the exact outline of the part of the Primary Structure Envelope +F.1.11 defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other +tube nodes or composite attachments +F.5.11.2 External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if +the mount is one of the two: +a. + +Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis + +b. + +Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will +fail below the allowable load as calculated by the SES + +F.5.11.3 If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may +attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above: +a. + +Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service +Disconnect, Master Switches or Shutdown Buttons + +b. + +Lightweight mounts for items inside the Main Hoop Braces + +F.5.11.4 Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the +Main Hoop Braces or Main Hoop above other tube nodes or composite attachments +F.5.11.5 Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must +be longitudinally offset to avoid point loading in a rollover +F.5.11.6 External Items should not point at the driver +F.5.12 + +Mechanically Attached Roll Hoop Bracing + +F.5.12.1 When Roll Hoop Bracing is mechanically attached: +a. + +The threaded fasteners used to secure non permanent joints are Critical Fasteners, see +T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7 + +b. + +No spherical rod ends are allowed + +c. + +The attachment holes in the lugs, the attached bracing and the sleeves and tubes must +be a close fit with the pin or bolt + +F.5.12.2 Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 35 of 143 + + Figure – Double Lug Joint + +F.5.12.3 For Double Lug Joints, each lug must: +a. + +Be minimum 4.5 mm (0.177 in) thickness steel + +b. + +Measure 25 mm minimum perpendicular to the axis of the bracing + +c. + +Be as short as practical along the axis of the bracing. + +F.5.12.4 All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must +include a capping arrangement +F.5.12.5 In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 +minimum diameter and grade. See F.5.12.1 above +Figure – Sleeved Butt Joint + +F.5.12.6 For Sleeved Butt Joints, the sleeve must: +a. + +Have a minimum length of 75 mm; 37.5 mm to each side of the joint + +b. + +Be external to the base tubes, with a close fit around the base tubes. + +c. + +Have a wall thickness of 2.0 mm or more + +F.5.12.7 In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 +minimum diameter and grade. See F.5.12.1 above +F.5.13 + +Other Bracing Requirements + +F.5.13.1 Where the braces are not welded to steel Frame Members, the braces must be securely +attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2 +F.5.13.2 Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness +steel. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 36 of 143 + + F.5.14 + +Steering Protection +Steering system racks or mounting components that are external (vertically above or below) +to the Primary Structure must be protected from frontal impact. +The protective structure must: + +F.5.15 + +a. + +Be F.3.2.1.n or Equivalent + +b. + +Extend to the vertical limit of the steering component(s) + +c. + +Extend to the local width of the Chassis + +d. + +Meet F.7.8 if not welded to the Chassis + +Other Side Tube Requirements +If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck +of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the +Frame +This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or +frame tube, and the driver’s neck contacting this brace or tube. + +F.5.16 + +Component Protection +When specified in the rules, components must be protected by one or two of: + +F.6 +F.6.1 + +a. + +Fully Triangulated structure with tubes meeting F.3.2.1.n + +b. + +Structure Equivalent to the above, as determined per F.4.1.3 + +TUBE FRAMES +Front Bulkhead +The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a + +F.6.2 + +Front Bulkhead Support + +F.6.2.1 + +Frame Members of the Front Bulkhead Support system must be constructed of closed section +tubing meeting F.3.2.1.b + +F.6.2.2 + +The Front Bulkhead must be securely integrated into the Frame. + +F.6.2.3 + +The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame +Members on each side of the vehicle; an upper member; lower member and diagonal brace to +provide Triangulation. +a. + +The top of the upper support member must be attached 50 mm or less from the top +surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 +mm above and 50 mm below the Upper Side Impact member. + +b. + +If the upper support member is further than 100 mm above the top of the Upper Side +Impact member, then properly Triangulated bracing is required to transfer load to the +Main Hoop by one of: +• +• + +the Upper Side Impact member +an additional member transmitting load from the junction of the Upper Support +Member with the Front Hoop + +c. + +The lower support member must be attached to the base of the Front Bulkhead and the +base of the Front Hoop + +d. + +The diagonal brace must properly Triangulate the upper and lower support members + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 37 of 143 + + F.6.2.4 + +Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 +are met + +F.6.2.5 + +Examples of acceptable configurations of members may be found in the SES + +F.6.3 + +Front Hoop Bracing + +F.6.3.1 + +Front Hoop Braces must be constructed of material meeting F.3.2.1.d + +F.6.3.2 + +The Front Hoop must be supported by two Braces extending in the forward direction, one on +each of the left and right sides of the Front Hoop. + +F.6.3.3 + +The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to +the structure in front of the driver’s feet. + +F.6.3.4 + +The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but +not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 +above + +F.6.3.5 + +If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° +from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully +Triangulated structural node. + +F.6.3.6 + +The Front Hoop Braces must be straight, without any bends + +F.6.4 + +Side Impact Structure + +F.6.4.1 + +Frame Members of the Side Impact Structure must be constructed of closed section tubing +meeting F.3.2.1.e or F.3.2.1.f, as applicable + +F.6.4.2 + +With proper Triangulation, Side Impact Structure members may be fabricated from more than +one piece of tubing. + +F.6.4.3 + +The Side Impact Structure must include three or more tubular members located on each side +of the driver while seated in the normal driving position + +F.6.4.4 + +The Upper Side Impact Member must: + +F.6.4.5 + +a. + +Connect the Main Hoop and the Front Hoop. + +b. + +Have its top edge entirely in a zone that is parallel to the ground between 265 mm and +320 mm above the lowest point of the top surface of the Lower Side Impact Member + +The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the +bottom of the Front Hoop. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 38 of 143 + + F.6.4.6 + +The Diagonal Side Impact Member must: +a. + +Connect the Upper Side Impact Member and Lower Side Impact Member forward of the +Main Hoop and rearward of the Front Hoop + +b. + +Completely Triangulate the bays created by the Upper and Lower Side Impact Members. + +F.6.5 + +Shoulder Harness Mounting + +F.6.5.1 + +The Shoulder Harness Mounting Bar must: + +F.6.5.2 + +F.6.5.3 + +a. + +Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k + +b. + +Attach to the Main Hoop on the left and right sides of the chassis + +Bent Shoulder Harness Mounting Bars must: +a. + +Meet F.5.2.1 and F.5.2.2 + +b. + +Have bracing members attached at the bend(s) and to the Main Hoop. +• + +Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l + +• + +The included angle in side view between the Shoulder Harness Bar and the braces +must be no less than 30°. + +The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness +The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar + +F.6.6 + +Main Hoop Bracing Supports + +F.6.6.1 + +Frame Members of the Main Hoop Bracing Support system must be constructed of closed +section tubing meeting F.3.2.1.i + +F.6.6.2 + +The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a +minimum of two Frame Members on each side of the vehicle: an upper member and a lower +member in a properly Triangulated configuration. + +F.7 + +a. + +The upper support member must attach to the node where the upper Side Impact +Member attaches to the Main Hoop. + +b. + +The lower support member must attach to the node where the lower Side Impact +Member attaches to the Main Hoop. + +c. + +Each of the above members may be multiple or bent tubes provided the requirements of +F.5.2 are met. + +d. + +Examples of acceptable configurations of members may be found in the SES. + +MONOCOQUE + +F.7.1 + +General Requirements + +F.7.1.1 + +The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded +frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and +tension + +F.7.1.2 + +Composite and metallic monocoques have the same requirements + +F.7.1.3 + +Corners between panels used for structural equivalence must contain core + +F.7.1.4 + +An inspection hole approximately 4mm in diameter must be drilled through a low stress +location of each monocoque section regulated by the Structural Equivalency Spreadsheet +This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 39 of 143 + + F.7.1.5 + +Composite monocoques must: +a. + +Meet the materials requirements in F.4 Composite and Other Materials + +b. + +Use data from the laminate testing results as the basis for any strength or stiffness +calculations + +F.7.2 + +Front Bulkhead + +F.7.2.1 + +When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral +axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1 + +F.7.2.2 + +The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm +measured from the rearmost face of the Front Bulkhead + +F.7.2.3 + +Any Front Bulkhead which supports the IA plate must have a perimeter shear strength +equivalent to a 1.5 mm thick steel plate + +F.7.3 + +Front Bulkhead Support + +F.7.3.1 + +In addition to proving that the strength of the monocoque is sufficient, the monocoque must +have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces. + +F.7.3.2 + +The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or +more than the EI of one steel tube that it replaces when calculated as per F.4.3 + +F.7.3.3 + +The perimeter shear strength of the monocoque laminate in the Front Bulkhead support +structure must be 4 kN or more for a section with a diameter of 25 mm. +This must be proven by a physical test completed per F.4.2.5 and the results included in the +SES. + +F.7.4 + +Front Hoop Attachment + +F.7.4.1 + +The Front Hoop must be mechanically attached to the monocoque +a. + +Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c + +b. + +The Front Hoop tube must be mechanically connected to the Mounting Plate with +Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop +tube along the two sides of the mounting plate + +F.7.4.2 + +Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any +bends and nodes that are not at the top center of the Front Hoop + +F.7.4.3 + +The Front Hoop may be fully laminated into the monocoque if: + +F.7.4.4 + +a. + +The Front Hoop has core fit tightly around its entire circumference. Expanding foam is +not permitted + +b. + +Equivalence to six or more mounts compliant with F.7.8 must show in the SES + +c. + +A small gap in the laminate (approximately 25 mm) exists for inspection of the Front +Hoop F.5.7.7 + +Adhesive must not be the sole method of attaching the Front Hoop to the monocoque + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 40 of 143 + + F.7.5 + +Side Impact Structure + +F.7.5.1 + +Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front +Hoop consisting of the combination of a vertical section minimum 290 mm in height from the +bottom surface of the floor of the monocoque and half the horizontal floor + +F.7.5.2 + +The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it +replaces + +F.7.5.3 + +The portion of the Side Impact Zone that is vertically between the upper surface of the floor +and 320 mm above the lowest point of the upper surface of the floor (see figure above) must +have: +a. + +Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3 + +b. + +No openings in Side View between the Front Hoop and Main Hoop + +F.7.5.4 + +Horizontal floor Equivalence must be calculated per F.4.3 + +F.7.5.5 + +The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a +section with a diameter of 25 mm. +This must be proven by physical test completed per F.4.2.5 and the results included in the SES. + +F.7.6 + +Main Hoop Attachment + +F.7.6.1 + +The Main Hoop must be mechanically attached to the monocoque +a. + +Main Hoop mounting plates must be 2.0 mm minimum thickness steel + +b. + +The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 +mm minimum thickness steel plates parallel to the two sides of the tube, with gussets +from the Main Hoop tube along the two sides of the mounting plate + +F.7.6.2 + +Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and +nodes that are below the top of the monocoque + +F.7.7 + +Roll Hoop Bracing Attachment +Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8. + +F.7.8 + +Attachments + +F.7.8.1 + +Each attachment point between the monocoque or composite panels and the other Primary +Structure must be able to carry a minimum load of 30 kN in any direction. +a. + +When a Roll Hoop attaches in three locations on each side, the attachments must be +located at the bottom, top, and a location near the midpoint + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 41 of 143 + + b. + +F.7.8.2 + +F.7.8.3 + +When a Roll Hoop attaches at only the bottom and a point between the top and the +midpoint on each side, each of the four attachments must show load strength of 45 kN in +all directions + +If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must +obey one of the two: +a. + +Parallel brackets attached to the two sides of the Main Hoop and the two sides of the +Side Impact Structure + +b. + +Two mostly perpendicular brackets attached to the Main Hoop and the side and back of +the monocoque + +The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, +bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. +Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient +shear area is provided. + +F.7.8.4 + +Proof that the brackets are sufficiently stiff must be documented in the SES. + +F.7.8.5 + +Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical +Fasteners, see T.8.2 + +F.7.8.6 + +Each attachment point requires backing plates which meet one of: +• + +Steel with a minimum thickness of 2 mm + +• + +Alternate materials if Equivalency is approved + +F.7.8.7 + +The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only +one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 +above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in +bending, similar to the figure below. + +F.7.8.8 + +Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the +two: +a. + +A solid insert that is fully enclosed by the inner and outer skin + +b. + +Local elimination of any gap between inner and outer skin, with or without repeating +skin layups + +F.7.9 + +Driver Harness Attachment + +F.7.9.1 + +Required Loads +a. + +Each attachment point for the Shoulder Belts must support a minimum load of 15 kN +before failure with a required load of 30 kN distributed across the two belt attachments + +b. + +Each attachment point for the Lap Belts must support a minimum load of 15 kN before +failure. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 42 of 143 + + F.7.9.2 + +c. + +Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 +kN before failure. + +d. + +If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or +are attached to the same attachment point, then each mounting point must support a +minimum load of 30 kN before failure. + +Load Testing +The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven +by physical tests where the required load is applied to a representative attachment point +where the proposed layup and attachment bracket are used. +a. + +Edges of the test fixture supporting the sample must be a minimum of 125 mm from the +load application point (load vector intersecting a plane) + +b. + +Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 +degrees) to the plane of the test sample + +c. + +Shoulder Belt Test Load application must meet: +Installed Shoulder Belt Angle: +Between 90° and 45° +Between 45° and 0° + +Test Load Application Angle must be: +Between 90° and the installed +Shoulder Belt Angle +Between 90° and 45° + +should be: +90° +90° + +The angles are measured from the plane of the Test Sample (90° is normal to the Test +Sample and 0° is parallel to the Test Sample) +d. + +The Shoulder Harness test sample must not be any larger than the section of the +monocoque as built + +e. + +The width of the Shoulder Harness test sample must not be any wider than the Shoulder +Harness "panel height" (see Structural Equivalency Spreadsheet) used to show +equivalency for the Shoulder Harness mounting bar + +f. + +Designs with attachments near a free edge must not support the free edge during the +test + +The intent is that the test specimen, to the best extent possible, represents the vehicle as +driven at competition. Teams are expected to test a panel that is manufactured in as close a +configuration to what is built in the vehicle as possible + +F.8 + +FRONT CHASSIS PROTECTION + +F.8.1 + +Requirements + +F.8.1.1 + +Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion +Plate between the Impact Attenuator and the Front Bulkhead. + +F.8.1.2 + +All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the +Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse +and vertical loads if off-axis impacts occur. + +F.8.2 + +Anti Intrusion Plate - AIP + +F.8.2.1 + +The Anti Intrusion Plate must be one of the three: +a. + +1.5 mm minimum thickness solid steel + +b. + +4.0 mm minimum thickness solid aluminum plate + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 43 of 143 + + c. +F.8.2.2 + +F.8.2.3 + +Composite material per F.8.3 + +The outside profile requirement of the Anti Intrusion Plate depends on the method of +attachment to the Front Bulkhead: +a. + +Welded joints: the profile must align with or be more than the centerline of the Front +Bulkhead tubes on all sides + +b. + +Bolted joints, bonding, laminating: the profile must align with or be more than the +outside dimensions of the Front Bulkhead around the entire periphery + +Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in +the team’s SES submission. The accepted methods of attachment are: +a. + +b. + +c. + +d. + +Welding +• + +All weld lengths must be 25 mm or longer + +• + +If interrupted, the weld/space ratio must be 1:1 or higher + +Bolted joints +• + +Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. + +• + +The distance between any two bolt centers must be 50 mm minimum. + +• + +Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN + +Bonding +• + +The Front Bulkhead must have no openings + +• + +The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel +strength higher than 120 kN + +Laminating +• + +The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead + +• + +The lamination must fully enclose the Anti Intrusion Plate and have shear capability +higher than 120 kN + +F.8.3 + +Composite Anti Intrusion Plate + +F.8.3.1 + +Composite Anti Intrusion Plates: + +F.8.3.2 + +a. + +Must not fail in a frontal impact + +b. + +Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm +minimum Impact Attenuator area + +Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods: +a. + +b. + +Physical testing of the AIP attached to a structurally representative section of the +intended chassis +• + +The test fixture must have equivalent strength and stiffness to a baseline front +bulkhead or must be the same as the first 50 mm of the Chassis + +• + +Test data is valid for only one Competition Year + +Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending +and perimeter shear + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 44 of 143 + + F.8.4 + +Impact Attenuator - IA + +F.8.4.1 + +Teams must do one of: + +F.8.4.2 + +F.8.4.3 + +• + +Use an approved Standard Impact Attenuator from the FSAE Online Website + +• + +Build and test a Custom Impact Attenuator of their own design F.8.8 + +The Custom Impact Attenuator must meet these: +a. + +Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis. + +b. + +Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm +(parallel to the ground) for a minimum distance of 200 mm forward of the Front +Bulkhead. + +c. + +Segmented foam attenuators must have all segments bonded together to prevent sliding +or parallelogramming. + +d. + +Honeycomb attenuators made of multiple segments must have a continuous panel +between each segment. + +If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses +the Standard Honeycomb Impact Attenuator, and then one of the two must be met: +a. + +b. + +The Front Bulkhead must include an additional support that is a diagonal or X-brace that +meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 +• + +The structure must go across the entire Front Bulkhead opening on the diagonal + +• + +Attachment points at each end must carry a minimum load of 30 kN in any direction + +Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion +Plate does not permanently deflect more than 25 mm. + +F.8.5 + +Impact Attenuator Attachment + +F.8.5.1 + +The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must +be documented in the SES submission + +F.8.5.2 + +The Impact Attenuator must attach with an approved method: +Impact Attenuator Type +a. Standard or Custom +b. Custom + +F.8.5.3 + +F.8.5.4 + +Construction +Foam, Honeycomb +other + +Attachment Method(s): +Bonding +Bonding, Welding, Bolting + +If the Impact Attenuator is attached by bonding: +a. + +Bonding must meet F.5.5 + +b. + +The shear strength of the bond must be higher than: +• + +95 kN for foam Impact Attenuators + +• + +38.5 kN for honeycomb Impact Attenuators + +• + +The maximum compressive force for custom Impact Attenuators + +c. + +The entire surface of a foam Impact Attenuator must be bonded + +d. + +Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond +equivalence + +If the Impact Attenuator is attached by welding: +a. + +Welds may be continuous or interrupted + +b. + +If interrupted, the weld/space ratio must be 1:1 or higher + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 45 of 143 + + c. +F.8.5.5 + +F.8.5.6 + +F.8.5.7 + +All weld lengths must be more than 25 mm + +If the Impact Attenuator is attached by bolting: +a. + +Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2 + +b. + +The distance between any two bolt centers must be 50 mm minimum + +c. + +Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN + +d. + +Must be bolted directly to the Primary Structure + +Impact Attenuator Position +a. + +All Impact Attenuators must mount with the bottom leading edge 150 mm or less above +the lowest point on the top of the Lower Side Impact Structure + +b. + +A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 +mm or more wide that intersects a plane parallel to the ground that is 150 mm or less +above the lowest point on the top of the Lower Side Impact Structure + +Impact Attenuator Orientation +a. + +The Impact Attenuator must be centered laterally on the Front Bulkhead + +b. + +Standard Honeycomb must be mounted 200mm width x 100mm height + +c. + +Standard Foam may be mounted laterally or vertically + +F.8.6 + +Front Impact Objects + +F.8.6.1 + +The only items allowed forward of the Anti Intrusion Plate in front view are the Impact +Attenuator, fastener heads, and light bodywork / nosecones +Fasteners should be oriented with the nuts rearwards + +F.8.6.2 + +F.8.6.3 + +Front Wing and Bodywork Attachment +a. + +The front wing and front wing mounts must be able to move completely aft of the Anti +Intrusion Plate and not touch the front bulkhead during a frontal impact + +b. + +The attachment points for the front wing and bodywork mounts should be aft of the Anti +Intrusion Plate + +c. + +Tabs for wing and bodywork attachment must not extend more than 25 mm forward of +the Anti Intrusion Plate + +Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the: +a. + +Rear face of the Anti Intrusion Plate + +b. + +All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3 + +c. + +All Non Crushable Items inside the Primary Structure + +Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic +reservoirs +F.8.7 + +Front Impact Verification + +F.8.7.1 + +The combination of the Impact Attenuator assembly and the force to crush or detach all other +items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in +F.8.8.2 +Ignore light bodywork, light nosecones, and outboard wheel assemblies + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 46 of 143 + + F.8.7.2 + +The peak load for the type of Impact Attenuator: +• + +Standard Foam Impact Attenuator + +95 kN + +• + +Standard Honeycomb Impact Attenuator + +60 kN + +• + +Tested Impact Attenuator + +peak as measured + +F.8.7.3 + +Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement + +F.8.7.4 + +Test Method +Get the peak force from physical testing of the Impact Attenuator and any Non Crushable +Object(s) as one of the two: + +F.8.7.5 + +a. + +Tested together with the Impact Attenuator + +b. + +Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2 + +Calculation Method +a. + +Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener +shear, tearout, and/or link buckling + +b. + +Add the peak attenuator load from F.8.7.2 + +F.8.8 + +Impact Attenuator Data - IAD + +F.8.8.1 + +All teams must include an Impact Attenuator Data (IAD) report as part of the SES. + +F.8.8.2 + +Impact Attenuator Functional Requirements +These are not test requirements +a. + +Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak + +b. + +Energy absorbed must be more than 7350 J + +When: + +F.8.8.3 + +F.8.8.4 + +• + +Total mass of Vehicle is 300 kg + +• + +Impact velocity is 7.0 m/s + +When using the Standard Impact Attenuator, the SES must meet these: +a. + +Test data will not be submitted + +b. + +All other requirements of this section must be included. + +c. + +Photos of the actual attenuator must be included + +d. + +Evidence that the Standard IA meets the design criteria provided in the Standard Impact +Attenuator specification must be included with the SES. This may be a receipt or packing +slip from the supplier. + +The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must +include: +a. + +Test data that proves that the Impact Attenuator Assembly meets the Functional +Requirements F.8.8.2 + +b. + +Calculations showing how the reported absorbed energy and decelerations have been +derived. + +c. + +A schematic of the test method. + +d. + +Photos of the attenuator, annotated with the height of the attenuator before and after +testing. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 47 of 143 + + F.8.8.5 + +The Impact Attenuator Test is valid for only one Competition Year + +F.8.8.6 + +Impact Attenuator Test Setup +a. + +During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using +the intended vehicle attachment method. + +b. + +The Impact Attenuator Assembly must be attached to a structurally representative +section of the intended chassis. +The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. +A solid block of material in the shape of the front bulkhead is not “structurally +representative”. + +c. + +There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the +test fixture. + +d. + +No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond +the position of the Anti Intrusion Plate before the test. + +The 25 mm spacing represents the front bulkhead support and insures that the plate does not +intrude excessively into the cockpit. +F.8.8.7 + +Test Conduct +a. + +Composite Impact Attenuators must be Dynamic Tested. +Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested + +F.8.8.8 + +F.9 + +b. + +Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be +conducted at a dedicated test facility. This facility may be part of the University, but must +be supervised by professional staff or the University faculty. Teams must not construct +their own dynamic test apparatus. + +c. + +Quasi-Static Testing may be done by teams using their University’s facilities/equipment, +but teams are advised to exercise due care + +Test Analysis +a. + +When using acceleration data from the dynamic test, the average deceleration must be +calculated based on the raw unfiltered data. + +b. + +If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 +(100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or +a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied. + +FUEL SYSTEM (IC ONLY) +Fuel System Location and Protection are subject to approval during SES review and Technical +Inspection. + +F.9.1 + +Location + +F.9.1.1 + +These components must be inside the Primary Structure (F.1.10): + +F.9.1.2 + +a. + +Any part of the Fuel System that is below the Upper Side Impact Structure + +b. + +Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper +Side Impact Structure IC.1.2 + +In side view, any portion of the Fuel System must not project below the lower surface of the +chassis + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 48 of 143 + + F.9.2 + +Protection +All Fuel Tanks must be shielded from side or rear impact + +F.10 +F.10.1 + +ACCUMULATOR CONTAINER (EV ONLY) +General Requirements + +F.10.1.1 All Accumulator Containers must be: +a. + +Designed to withstand forces from deceleration in all directions + +b. + +Made from a Nonflammable Material ( F.1.18 ) + +F.10.1.2 Design of the Accumulator Container must be documented in the SES. +Documentation includes materials used, drawings/images, fastener locations, cell/segment +weight and cell/segment position. +F.10.1.3 The Accumulator Containers and mounting systems are subject to approval during SES review +and Technical Inspection +F.10.1.4 If the Accumulator Container is not constructed from steel or aluminum, the material +properties should be established at a temperature of 60°C +F.10.1.5 If adhesives are used for credited bonding, the bond properties should be established for a +temperature of 60°C +F.10.2 + +Structure + +F.10.2.1 The Floor or Bottom must be made from one of the three: +a. + +Steel + +1.25 mm minimum thickness + +b. + +Aluminum + +3.2 mm minimum thickness + +c. + +Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) + +F.10.2.2 Walls, Covers and Lids must be made from one of the three: +a. + +Steel + +0.9 mm minimum thickness + +b. + +Aluminum + +2.3 mm minimum thickness + +c. + +Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) + +F.10.2.3 Internal Vertical Walls: +a. + +Must surround and separate each Accumulator Segment EV.5.1.2 + +b. + +Must have minimum height of the full height of the Accumulator Segments +The Internal Walls should extend to the lid above any Segment + +c. + +Must surround no more than 12 kg on each side + +The intent is to have each Segment fully enclosed in its own six sided box +F.10.2.4 If segments are arranged vertically above other segments, each layer of segments must have a +load path to the Chassis attachments that does not pass through another layer of segments +F.10.2.5 Floors and all Wall sections must be joined on each side +The accepted methods of joining walls to walls and walls to floor are: +a. + +Welding +• + +Welds may be continuous or interrupted. + +• + +If interrupted, the weld/space ratio must be 1:1 or higher + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 49 of 143 + + • +b. + +All weld lengths must be more than 25 mm + +Fasteners +Combined strength of the fasteners must be Equivalent to the strength of the welded +joint ( F.10.2.5.a above ) + +c. + +Bonding +• + +Bonding must meet F.5.5 + +• + +Strength of the bonded joint must be Equivalent to the strength of the welded joint +( F.10.2.5.a above ) + +• + +Bonds must run the entire length of the joint + +Folding or bending plate material to create flanges or to eliminate joints between walls is +recommended. +F.10.2.6 Covers and Lids must be mechanically attached and include Positive Locking Mechanisms +F.10.3 + +Cells and Segments + +F.10.3.1 The structure of the Segments (without the structure of the Accumulator Container and +without the structure of the cells) must prevent cells from being crushed in any direction +under the following accelerations: +a. + +40 g in the longitudinal direction (forward/aft) + +b. + +40 g in the lateral direction (left/right) + +c. + +20 g in the vertical direction (up/down) + +F.10.3.2 Segments must be held by one of the two: +a. + +Mechanical Cover and Lid attachments must show equivalence to the strength of a +welded joint F.10.2.5.a + +b. + +Mechanical Segment attachments to the container must show they can support the +acceleration loads F.10.3.1 above in the direction of removal + +F.10.3.3 Calculations and/or tests proving these requirements are met must be included in the SES +F.10.4 + +Holes and Openings + +F.10.4.1 The Accumulator Container(s) exterior or interior walls may contain holes or openings, see +EV.4.3.4 +F.10.4.2 Any Holes and Openings must be the minimum area necessary +F.10.4.3 Exterior and interior walls must cover a minimum of 75% of each face of the battery segments +F.10.4.4 Holes and Openings for airflow: + +F.10.5 + +a. + +Must be round. Slots are prohibited + +b. + +Should be maximum 10 mm diameter + +c. + +Must not have line of sight to the driver, with the Firewall installed or removed + +Attachment + +F.10.5.1 Attachment of the Accumulator Container must be documented in the SES +F.10.5.2 Accumulator Containers must: +a. + +Attach to the Major Structure of the chassis + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 50 of 143 + + A maximum of two attachment points may be on a chassis tube between two +triangulated nodes. +b. + +Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing + +F.10.5.3 Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2 +F.10.5.4 Each fastened attachment point to a composite Accumulator Container requires backing +plates that are one of the two: +a. + +Steel with a thickness of 2 mm minimum + +b. + +Alternate materials Equivalent to 2 mm thickness steel + +F.10.5.5 Teams must justify the Accumulator Container attachment using one of the two methods: +• + +Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 + +• + +Load Based Analysis per F.10.5.7 and F.10.5.8 + +F.10.5.6 Accumulator Attachment – Corner Attachments +a. + +Eight or more attachments are required for any configuration. +• + +One attachment for each corner of a rectangular structure of multiple Accumulator +Segments + +• + +More than the minimum number of fasteners may be required for non rectangular +arrangements +Examples: If not filled in with additional structure, an extruded L shape would require +attachments at 10 convex corners (the corners at the inside of the L are not convex); +an extruded hexagon would require 12 attachments + +b. + +The mechanical connections at each corner must be 50 mm or less from the corner of +the Segment + +c. + +Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass +of the container accelerating at 40 g + +F.10.5.7 Accumulator Attachment – Load Based +a. + +b. + +The minimum number of attachment points depends on the total mass of the container: +Accumulator Weight + +Minimum Attachment Points + +< 20 kg + +4 + +20 – 30 kg + +6 + +30 – 40 kg + +8 + +> 40 kg + +10 + +Each attachment point, including any brackets, backing plates and inserts, must be able +to withstand 15 kN minimum in any direction + +F.10.5.8 Accumulator Attachment – All Types +a. + +Each fastener must withstand the Test Load in pure shear, using the minor diameter if +any threads are in shear + +b. + +Each Accumulator bracket, chassis bracket, or monocoque attachment point must +withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if +welded, and pure bond shear and pure bond tensile if bonded. + +c. + +Monocoque attachment points must meet F.7.8.8 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 51 of 143 + + d. + +F.11 + +Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment +points + +TRACTIVE SYSTEM (EV ONLY) +Tractive System Location and Protection are subject to approval during SES review and +Technical Inspection. + +F.11.1 + +Location + +F.11.1.1 All Accumulator Containers must lie inside the Primary Structure (F.1.10). +F.11.1.2 Motors mounted to a suspension upright and their connections must meet EV.4.1.3 +F.11.1.3 Tractive System (EV.1.1) components including Motors, cables and wiring other than those in +F.11.1.2 above must be contained inside one or two of: + +F.11.2 + +• + +The Rollover Protection Envelope F.1.13 + +• + +Structure meeting F.5.16 Component Protection + +Side Impact Protection + +F.11.2.1 All Accumulator Containers must be protected from side impact by structure Equivalent to +Side Impact Structure (F.6.4, F.7.5) +F.11.2.2 The Accumulator Container must not be part of the Equivalent structure. +F.11.2.3 Accumulator Container side impact protection must go to a minimum height that is the lower +of the two: +• + +The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 + +• + +The top of the Accumulator Container at that point + +F.11.2.4 Tractive System components other than Accumulator Containers in a position below 350 mm +from the ground must be protected from side impact by structure that meets F.5.16 +Component Protection +F.11.3 + +Rear Impact Protection + +F.11.3.1 All Tractive System components must be protected from rear impact by a Rear Bulkhead +a. + +When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure +must be Equivalent to Side Impact Structure (F.6.4, F.7.5) + +b. + +When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the +structure must meet F.5.16 Component Protection + +c. + +The Accumulator Container must not be part of the Equivalent structure + +F.11.3.2 The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side +Impact Structure F.6.4.4 / F.7.5.1 +F.11.3.3 The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead +F.11.3.4 The Rear Bulkhead Support must have: +a. + +A structural and triangulated load path from the top of the Rear Impact Protection to the +Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop + +b. + +A structural and triangulated load path from the bottom of the Rear Impact Protection to +the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 52 of 143 + + F.11.3.5 In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal +structure or X brace that meets F.11.3.1 above +a. + +Differential mounts, two vertical tubes with similar spacing, a metal plate, or an +Equivalent composite panel may replace a diagonal +If used, the mounts, plate, or panel must: + +b. + +• + +Be aft of the upper and lower Rear Bulkhead structures + +• + +Overlap at least 25 mm vertically at the top and the bottom + +A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. +If used, the plate must: +• + +Fully overlap the Rear Bulkhead Support F.11.3.3 above + +• + +Attach by one of the two, as determined by the SES: +- Fully laminated to the Rear Bulkhead or Rear Bulkhead Support +- Attachment strength greater than 120 kN + +F.11.4 + +Clearance and Non Crushable Items + +F.11.4.1 Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself +Accumulator mounts do not require clearance +F.11.4.2 The Accumulator Container should have a minimum 25 mm total clearance to each of the +front, side, and rear impact structures +The clearance may be put together on either side of any Non Crushable items around the +accumulator +F.11.4.3 Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through +the Rear Bulkhead + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 53 of 143 + + T - TECHNICAL ASPECTS +T.1 + +COCKPIT + +T.1.1 + +Cockpit Opening + +T.1.1.1 + +The template shown below must pass through the cockpit opening + +T.1.1.2 + +The template will be held horizontally, parallel to the ground, and inserted vertically from a +height above any Primary Structure or bodywork that is between the Front Hoop and the +Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 ) +a. + +Has passed 25 mm below the lowest point of the top of the Side Impact Structure + +b. + +Is less than or equal to 320 mm above the lowest point inside the cockpit + +T.1.1.3 + +Fore and aft translation of the template is permitted during insertion. + +T.1.1.4 + +During this test: +a. + +The steering wheel, steering column, seat and all padding may be removed + +b. + +The shifter, shift mechanism, or clutch mechanism must not be removed unless it is +integral with the steering wheel and is removed with the steering wheel + +c. + +The firewall must not be moved or removed + +d. + +Cables, wires, hoses, tubes, etc. must not block movement of the template + +During inspection, the steering column, for practical purposes, will not be removed. The +template may be maneuvered around the steering column, but not any fixed supports. +For ease of use, the template may contain a slot at the front center that the steering column +may pass through. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 54 of 143 + + T.1.2 + +Internal Cross Section + +T.1.2.1 + +Requirement: +a. + +The cockpit must have a free internal cross section + +b. + +The template shown below must pass through the cockpit + +Template maximum thickness: 7 mm + +T.1.2.2 + +T.1.2.3 + +Conduct of the test. The template: +a. + +Will be held vertically and inserted into the cockpit opening rearward of the rearmost +portion of the steering column. + +b. + +Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the +face of the rearmost pedal when in the inoperative position + +c. + +May be moved vertically inside the cockpit + +During this test: +a. + +If the pedals are adjustable, they must be in their most forward position. + +b. + +The steering wheel may be removed + +c. + +Padding may be removed if it can be easily removed without the use of tools with the +driver in the seat + +d. + +The seat and any seat insert(s) that may be used must stay in the cockpit + +e. + +Cables, wires, hoses, tubes, etc. must not block movement of the template + +f. + +The steering column and associated components may pass through the 50 mm wide +center band of the template. + +For ease of use, the template may contain a full or partial slot in the shaded area shown on the +figure +T.1.3 + +Driver Protection + +T.1.3.1 + +The driver’s feet and legs must be completely contained inside the Major Structure of the +Chassis. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 55 of 143 + + T.1.3.2 + +While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s +feet or legs must not extend above or outside of the Major Structure of the Chassis. + +T.1.3.3 + +All moving suspension and steering components and other sharp edges inside the cockpit +between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered +by a shield made of a solid material. +Moving components include, but are not limited to springs, shock absorbers, rocker arms, antiroll/sway bars, steering racks and steering column CV joints. + +T.1.3.4 + +Covers over suspension and steering components must be removable to allow inspection of +the mounting points + +T.1.4 + +Vehicle Controls + +T.1.4.1 + +Accelerator Pedal + +T.1.4.2 + +a. + +An Accelerator Pedal must control the Powertrain output + +b. + +Pedal Travel is the percent of travel from a fully released position to a fully applied +position. 0% is fully released and 100% is fully applied. + +c. + +The Accelerator Pedal must: +• + +Return to 0% Pedal Travel when not pushed + +• + +Have a positive stop to prevent any cable, actuation system or sensor from damage +or overstress + +Any mechanism in the throttle system that could become jammed must be covered. +This is to prevent debris or interference and includes but is not limited to a gear mechanism + +T.1.4.3 + +All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) +must be operated from inside the cockpit without any part of the driver, including hands, arms +or elbows, being outside of: +a. + +The Side Impact Structure defined in F.6.4 / F.7.5 + +b. + +Two longitudinal vertical planes parallel to the centerline of the chassis touching the +uppermost member of the Side Impact Structure + +T.1.4.4 + +All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational +position + +T.1.5 + +Driver’s Seat + +T.1.5.1 + +The Driver’s Seat must be protected by one of the two: +a. + +In side view, the lowest point of any Driver’s Seat must be no lower than the upper +surface of the lowest structural tube or equivalent + +b. + +A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing +(F.3.2.1.e), passing underneath the lowest point of the Driver Seat. + +T.1.6 + +Thermal Protection + +T.1.6.1 + +When seated in the normal driving position, sufficient heat insulation must be provided to +make sure that the driver will not contact any metal or other materials which may become +heated to a surface temperature above 60°C. + +T.1.6.2 + +Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 56 of 143 + + T.1.6.3 + +The design must address all three types of heat transfer between the heat source (examples +include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a +place that the driver could contact (including seat or floor): +a. + +Conduction Isolation by one of the two: +• + +No direct contact between the heat source and the panel + +• + +A heat resistant, conduction isolation material with a minimum thickness of 8 mm +between the heat source and the panel + +b. + +Convection Isolation by a minimum air gap of 25 mm between the heat source and the +panel + +c. + +Radiation Isolation by one of the two: +• + +A solid metal heat shield with a minimum thickness of 0.4 mm + +• + +Reflective foil or tape when combined with conduction insulation + +T.1.7 + +Floor Closeout + +T.1.7.1 + +All vehicles must have a Floor Closeout to prevent track debris from entering + +T.1.7.2 + +The Floor Closeout must extend from the foot area to the firewall + +T.1.7.3 + +The panel(s) must be made of a solid, non brittle material + +T.1.7.4 + +If multiple panels are used, gaps between panels must not exceed 3 mm + +T.1.8 + +Firewall + +T.1.8.1 + +A Firewall(s) must separate the driver compartment and any portion of the Driver Harness +from: +a. + +All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium +batteries + +b. + +(EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 +and cable to those Motors where mounted at the wheels or on the front control arms + +T.1.8.2 + +The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where +any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest +driver must not be in direct line of sight with any part given in T.1.8.1 above + +T.1.8.3 + +Any Firewall must be: + +T.1.8.4 + +a. + +A non permeable surface made from a rigid, Nonflammable Material + +b. + +Mounted tightly + +(EV only) The Firewall or the part of the Firewall on the Tractive System side must be: +a. + +Made of aluminum. The Firewall layer itself must not be aluminum tape. + +b. + +Grounded, refer to EV.6.7 Grounding + +T.1.8.5 + +(EV only) The Accumulator Container must not be part of the Firewall + +T.1.8.6 + +Sealing +a. + +Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, +edges, any pass throughs and Floor Closeout) + +b. + +Firewalls that have multiple panels must overlap and be sealed at the joints + +c. + +Sealing between Firewalls must not be a stressed part of the Firewall + +d. + +Grommets must be used to seal any pass through for wiring, cables, etc + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 57 of 143 + + e. + +T.2 +T.2.1 + +Any seals or adhesives used with the Firewall must be rated for the application +environment + +DRIVER ACCOMMODATION +Harness Definitions +a. + +5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine +Belt. + +b. + +6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or AntiSubmarine Belts. + +c. + +7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or AntiSubmarine Belts and a negative g or Z Belt. + +d. + +Upright Driving Position - with a seat back angled at 30° or less from the vertical as +measured along the line joining the two 200 mm circles of the template of the 95th +percentile male as defined in F.5.6.5 and positioned per F.5.6.6 + +e. + +Reclined Driving Position - with a seat back angled at more than 30° from the vertical as +measured along the line joining the two 200 mm circles of the template of the 95th +percentile male as defined in F.5.6.5 and positioned per F.5.6.6 + +f. + +Chest to Groin Line - the straight line that in side view follows the line of the Shoulder +Belts from the chest to the release buckle. + +T.2.2 + +Harness Specification + +T.2.2.1 + +The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three: +a. + +SFI Specification 16.1 + +b. + +SFI Specification 16.5 + +c. + +FIA specification 8853/2016 + +T.2.2.2 + +The belts must have the original manufacturers labels showing the specification and +expiration date + +T.2.2.3 + +The Harness must be in or before the year of expiration shown on the labels. Harnesses +expiring on or before Dec 31 of the calendar year of the competition are permitted. + +T.2.2.4 + +The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or +other issues + +T.2.2.5 + +All Harness hardware must be installed and threaded in accordance with manufacturer’s +instructions + +T.2.2.6 + +All Harness hardware must be used as received from the manufacturer. No modification +(including drilling, cutting, grinding, etc) is permitted. + +T.2.3 + +Harness Requirements + +T.2.3.1 + +Vehicles with a Reclined Driving Position must have: + +T.2.3.2 + +a. + +A 6 Point Harness or a 7 Point Harness + +b. + +Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of AntiSubmarine Belts installed. + +All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). +Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 58 of 143 + + T.2.3.3 + +The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are +permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed. + +T.2.4 + +Belt, Strap and Harness Installation - General + +T.2.4.1 + +The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the +Primary Structure. + +T.2.4.2 + +Any guide or support for the belts must be material meeting F.3.2.1.j + +T.2.4.3 + +Each tab, bracket or eye to which any part of the Harness is attached must: +a. + +Support a minimum load in pullout and tearout before failure of: +• + +If one belt is attached to the tab, bracket or eye + +• + +If two belts are attached to the tab, bracket or eye 30 kN + +b. + +Be 1.6 mm minimum thickness + +c. + +Not cause abrasion to the belt webbing + +15 kN + +Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest +radial cross section. +T.2.4.4 + +Attachment of tabs or brackets must meet these: +a. + +Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum +diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to +the chassis + +b. + +Welded tabs or eyes must have a base at least as large as the outer diameter of the tab +or eye + +c. + +Where a single shear tab is welded to the chassis, the tab to tube welding must be on the +two sides of the base of the tab + +Double shear attachments are preferred. Tabs and brackets for double shear mounts should +be welded on the two sides. +T.2.4.5 + +Eyebolts or weld eyes must: +a. + +Be one piece. No eyenuts or swivels. + +b. + +Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum +Threads should be 7/16-20 or greater + +T.2.4.6 + +T.2.4.7 + +c. + +Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other +harness brackets (lap and anti sub) or other vehicle parts + +d. + +Have a positive locking feature on threads or by the belt itself + +For the belt itself to be considered a positive locking feature, the eyebolt must: +a. + +Have minimum 10 threads engaged in a threaded insert + +b. + +Be shimmed to fully tight + +c. + +Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt +creating a torque on the eyebolt. + +Harness installation must meet T.1.8.1 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 59 of 143 + + T.2.5 + +Lap Belt Mounting + +T.2.5.1 + +The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the +hip bones) + +T.2.5.2 + +Installation of the Lap Belts must go in a straight line from the mounting point until they reach +the driver's body without touching any hole in the seat or any other intermediate structure + +T.2.5.3 + +The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the +seat + +T.2.5.4 + +With an Upright Driving Position: +a. + +The Lap Belt Side View Angle must be between 45° and 65° to the horizontal. + +b. + +The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward +of the seat back to seat bottom junction. + +T.2.5.5 + +With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to +the horizontal. + +T.2.5.6 + +The Lap Belts must attach by one of the two: +a. + +Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 + +b. + +Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame + +T.2.5.7 + +In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an +eye bolt attachment + +T.2.5.8 + +Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a +Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• + +The bolt diameter specified by the manufacturer + +• + +10 mm or 3/8” + +T.2.6 + +Shoulder Harness + +T.2.6.1 + +From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder +Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal. + +T.2.6.2 + +The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center + +T.2.6.3 + +The Shoulder Belts must attach by one of the four: +a. + +Wrap around the Shoulder Harness Mounting bar + +b. + +Bolt through a welded tube insert or tested monocoque attachment F.7.9 + +c. + +Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye ( +T.2.4.3 ) loaded in tension on the Shoulder Harness Mounting bar + +d. + +Wrap around physically tested hardware attached to a monocoque + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 60 of 143 + + T.2.6.4 + +Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is +a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• + +The bolt diameter specified by the manufacturer + +• + +10 mm or 3/8” + +T.2.7 + +Anti-Submarine Belt Mounting + +T.2.7.1 + +The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in +line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt +Side View Angle no more than 20° + +T.2.7.2 + +The Anti-Submarine Belts of a 6 point harness must mount in one of the two: +a. + +With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side +View Angle up to 20° rearwards. +The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart. + +b. + +With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the +Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming +up around the groin to the release buckle. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 61 of 143 + + T.2.7.3 + +T.2.7.4 + +T.2.7.5 + +Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt +Mounting Point(s) without touching any hole in the seat or any other intermediate structure +until they reach: +a. + +The release buckle for the 5 Point Harness mounting per T.2.7.1 + +b. + +The first point where the belt touches the driver’s body for the 6 Point Harness mounting +per T.2.7.2 + +The Anti Submarine Belts must attach by one of the three: +a. + +Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 + +b. + +Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame + +c. + +Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. +The belt must not be able to touch the ground. + +Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate +bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• + +The bolt diameter specified by the manufacturer + +• + +8 mm or 5/16” + +T.2.8 + +Head Restraint + +T.2.8.1 + +A Head Restraint must be provided to limit the rearward motion of the driver’s head. + +T.2.8.2 + +The Head Restraint must be vertical or near vertical in side view. + +T.2.8.3 + +All material and structure of the Head Restraint must be inside one or the two of: + +T.2.8.4 + +T.2.8.5 + +a. + +Rollover Protection Envelope F.1.13 + +b. + +Head Restraint Protection (if used) F.5.10 + +The Head Restraint, attachment and mounting must be strong enough to withstand a +minimum force of: +a. + +900 N applied in a rearward direction + +b. + +300 N applied in a lateral or vertical direction + +For all drivers, the Head Restraint must be located and adjusted where: +a. + +The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, +with the driver in their normal driving position. + +b. + +The contact point of the back of the driver’s helmet on the Head Restraint is no less than +50 mm from any edge of the Head Restraint. + +Approximately 100 mm of longitudinal adjustment should accommodate range of specified +drivers. Several Head Restraints with different thicknesses may be used +T.2.8.6 + +The Head Restraint padding must: +a. + +Be an energy absorbing material that is one of the two: +• + +Meets SFI Spec 45.2 + +• + +CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17 + +b. + +Have a minimum thickness of 38 mm + +c. + +Have a minimum width of 15 cm + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 62 of 143 + + d. + +e. +T.2.9 + +Meet one of the two: +• + +minimum area of 235 cm2 AND minimum total height adjustment of 17.5 cm + +• + +minimum height of 28 cm + +Be covered with a thin, flexible material that contains a ~20 mm diameter inspection +hole in a surface other than the front surface + +Roll Bar Padding +Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s +helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec +45.1 or FIA 8857-2001. + +T.3 + +BRAKES + +T.3.1 + +Brake System + +T.3.1.1 + +The vehicle must have a Brake System + +T.3.1.2 + +The Brake System must: + +T.3.1.3 + +a. + +Act on all four wheels + +b. + +Be operated by a single control + +c. + +Be capable of locking all four wheels + +The Brake System must have two independent hydraulic circuits +A leak or failure at any point in the Brake System must maintain effective brake power on +minimum two wheels + +T.3.1.4 + +Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM +style reservoir + +T.3.1.5 + +A single brake acting on a limited slip differential may be used + +T.3.1.6 + +“Brake by Wire” systems are prohibited + +T.3.1.7 + +Unarmored plastic brake lines are prohibited + +T.3.1.8 + +The Brake System must be protected with scatter shields from failure of the drive train (see +T.5.2) or from minor collisions. + +T.3.1.9 + +In side view any portion of the Brake System that is mounted on the sprung part of the vehicle +must not project below the lower surface of the chassis + +T.3.1.10 Fasteners in the Brake System are Critical Fasteners, see T.8.2 +T.3.2 + +Brake Pedal, Pedal Box and Mounting + +T.3.2.1 + +The Brake Pedal must be one of: + +T.3.2.2 + +• + +Fabricated from steel or aluminum + +• + +Machined from steel, aluminum or titanium + +The Brake Pedal and associated components design must withstand a minimum force of 2000 +N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment +This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the +pedal with the maximum force that can be exerted by any official when seated normally + +T.3.2.3 + +Failure of non-loadbearing components in the Brake System or pedal box must not interfere +with Brake Pedal operation or Brake System function + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 63 of 143 + + T.3.2.4 + +(EV only) Additional requirements for Electric Vehicles: +a. + +The first 90% of the Brake Pedal travel may be used to regenerate energy without +actuating the hydraulic brake system + +b. + +The remaining Brake Pedal travel must directly operate the hydraulic brake system. +Brake energy regeneration may stay active + +T.3.3 + +Brake Over Travel Switch - BOTS + +T.3.3.1 + +The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the +normal range will operate the switch + +T.3.3.2 + +The BOTS must: +a. + +Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or +flip type) + +b. + +Hold if operated to the OFF position + +T.3.3.3 + +Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 + +T.3.3.4 + +The driver must not be able to reset the BOTS + +T.3.3.5 + +The BOTS must be implemented with analog components, and not using programmable logic +controllers, engine control units, or similar functioning digital controllers. + +T.3.4 + +Brake Light + +T.3.4.1 + +The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight. + +T.3.4.2 + +The Brake Light must be: +a. + +Red in color on a Black background + +b. + +Rectangular, triangular or near round shape with a minimum shining surface of 15 cm2 + +c. + +Mounted between the wheel centerline and driver’s shoulder level vertically and +approximately on vehicle centerline laterally. + +T.3.4.3 + +When LED lights are used without a diffuser, they must not be more than 20 mm apart. + +T.3.4.4 + +If a single line of LEDs is used, the minimum length is 150 mm. + +T.4 +T.4.1 + +ELECTRONIC THROTTLE COMPONENTS +Applicability +This section T.4 applies only for: +• + +IC vehicles using Electronic Throttle Control (ETC) IC.4 + +• + +EV vehicles + +T.4.2 + +Accelerator Pedal Position Sensor - APPS + +T.4.2.1 + +The Accelerator Pedal must operate the APPS T.1.4.1 + +T.4.2.2 + +a. + +Two springs must be used to return the foot pedal to 0% Pedal Travel + +b. + +Each spring must be capable of returning the pedal to 0% Pedal Travel with the other +disconnected. The springs in the APPS are not acceptable pedal return springs. + +Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS +with two completely separate sensors in a single housing is acceptable. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 64 of 143 + + T.4.2.3 + +The APPS sensors must have different transfer functions which meet one of the two: +• + +Each sensor has different gradients and/or offsets to the other(s). The circuit must have +a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel + +• + +An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor +configurations require prior approval. + +The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel +T.4.2.4 + +Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or +other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel +require justification in the ETC Systems Form and may not be approved + +T.4.2.5 + +If an Implausibility occurs between the values of the APPSs and persists for more than 100 +msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped +completely. +(EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping +the power to the Motor(s) is sufficient. + +T.4.2.6 + +If three sensors are used, then in the case of an APPS failure, any two sensors that agree +within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target +and the 3rd APPS may be ignored. + +T.4.2.7 + +Each APPS must be able to be checked during Technical Inspection by having one of the two: +• + +A separate detachable connector that enables a check of functions by unplugging it + +• + +An inline switchable breakout box available that allows disconnection of each APPS +signal. + +T.4.2.8 + +The APPS signals must be sent directly to a controller using an analogue signal or via a digital +data transmission bus such as CAN or FlexRay. + +T.4.2.9 + +Any failure of the APPS or APPS wiring must be detectable by the controller and must be +treated like an Implausibility, see T.4.2.4 above + +T.4.2.10 When an analogue signal is used, the APPS will be considered to have failed when they +achieve an open circuit or short circuit condition which generates a signal outside of the +normal operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. +T.4.2.11 When any kind of digital data transmission is used to transmit the APPS signal, +a. + +The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. + +b. + +The failures to be considered must include but are not limited to the failure of the APPS, +APPS signals being out of range, corruption of the message and loss of messages and the +associated time outs. + +T.4.2.12 The current rules are written to only apply to the APPS (pedal), but the integrity of the torque +command signal is important in all stages. +T.4.3 + +Brake System Encoder - BSE + +T.4.3.1 + +The vehicle must have a sensor or switch to measure brake pedal position or brake system +pressure + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 65 of 143 + + T.4.3.2 + +T.4.3.3 + +The BSE must be able to be checked during Technical Inspection by having one of: +• + +A separate detachable connector(s) for any BSE signal(s) to the main ECU without +affecting any other connections + +• + +An inline switchable breakout box available that allows disconnection of each BSE +signal(s) to the main ECU without affecting any other connections + +The BSE or switch signals must be sent directly to a controller using an analogue signal or via a +digital data transmission bus such as CAN or FlexRay +Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by +the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) +Motor(s) must be immediately stopped completely. +(EV only) It is not necessary to completely deactivate the Tractive System, the motor +controller(s) stopping power to the motor(s) is sufficient. + +T.4.3.4 + +When an analogue signal is used, the BSE sensors will be considered to have failed when they +achieve an open circuit or short circuit condition which generates a signal outside of the +normal operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. + +T.4.3.5 + +T.5 +T.5.1 + +When any kind of digital data transmission is used to transmit the BSE signal: +a. + +The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. + +b. + +The failures modes must include but are not limited to the failure of the sensor, sensor +signals being out of range, corruption of the message and loss of messages and the +associated time outs. + +c. + +In all cases a sensor failure must immediately shutdown power to the motor(s). + +POWERTRAIN +Transmission and Drive +Any transmission and drivetrain may be used. + +T.5.2 + +Drivetrain Shields and Guards + +T.5.2.1 + +Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions +(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and +electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case +of radial failure + +T.5.2.2 + +The final drivetrain shield must: +a. + +Be made with solid material (not perforated) + +b. + +Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt +or pulley + +c. + +Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 66 of 143 + + d. + +Cover the bottom of the chain or belt or rotating component when fuel, brake lines +T.3.1.8, control, pressurized, electrical components are located below + +T.5.2.3 + +Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8 + +T.5.2.4 + +Frame Members or existing components that exceed the scatter shield material requirements +may be used as part of the shield. + +T.5.2.5 + +Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm) + +T.5.2.6 + +If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. + +T.5.2.7 + +Chain Drive - Scatter shields for chains must: + +T.5.2.8 + +T.5.2.9 + +a. + +Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed) + +b. + +Have a minimum width equal to three times the width of the chain + +c. + +Be centered on the center line of the chain + +d. + +Stay aligned with the chain under all conditions + +Non-metallic Belt Drive - Scatter shields for belts must: +a. + +Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6 + +b. + +Have a minimum width that is equal to 1.7 times the width of the belt. + +c. + +Be centered on the center line of the belt + +d. + +Stay aligned with the belt under all conditions + +Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or +1/4” minimum diameter Critical Fasteners, see T.8.2 + +T.5.2.10 Finger Guards +a. + +Must cover any drivetrain parts that spin while the vehicle is stationary with the engine +running. + +b. + +Must be made of material sufficient to resist finger forces. + +c. + +Mesh or perforated material may be used but must prevent the passage of a 12 mm +diameter object through the guard. + +T.5.3 + +Motor Protection (EV Only) + +T.5.3.1 + +The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. +The motor casing may be the original motor casing, a team built motor casing or the original +casing with additional material added to achieve the minimum required thickness. +• + +Minimum thickness for aluminum alloy 6061-T6: 3.0 mm +If lower grade aluminum alloy is used, then the material must be thicker to provide an +equivalent strength. + +• +T.5.3.2 + +T.5.3.3 + +Minimum thickness for steel: 2.0 mm + +A Scatter Shield must be included around the Motor(s) when one or the two: +• + +The motor casing rotates around the stator + +• + +The motor case is perforated + +The Motor Scatter Shield must be: +• + +Made from aluminum alloy 6061-T6 or steel + +• + +Minimum thickness: 1.0 mm + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 67 of 143 + + T.5.4 + +Coolant Fluid + +T.5.4.1 + +Water cooled engines must use only plain water with no additives of any kind + +T.5.4.2 + +Liquid coolant for electric motors, Accumulators or HV electronics must be one of: +• + +plain water with no additives + +• + +oil + +T.5.4.3 + +(EV only) Liquid coolant must not directly touch the cells in the Accumulator + +T.5.5 + +System Sealing + +T.5.5.1 + +Any cooling or lubrication system must be sealed to prevent leakage + +T.5.5.2 + +The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type. + +T.5.5.3 + +Flammable liquid and vapors or other leaks must not collect or contact the driver + +T.5.5.4 + +Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at +the locations: +a. + +The lowest point of the chassis + +b. + +Rearward of the driver position, forward of a fuel tank or other liquid source + +c. + +If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is +necessary + +T.5.5.5 + +Absorbent material and open collection devices (regardless of material) are prohibited in +compartments containing engine, drivetrain, exhaust and fuel systems below the highest +point on the exhaust system. + +T.5.6 + +Catch Cans + +T.5.6.1 + +The vehicle must have separate containers (catch cans) to retain fluids from any vents from +the powertrain systems. + +T.5.6.2 + +Catch cans must be: +a. + +Capable of containing boiling water without deformation + +b. + +Located rearwards of the Firewall below the driver’s shoulder level + +c. + +Positively retained, using no tie wraps or tape + +T.5.6.3 + +Catch cans for the engine coolant system and engine lubrication system must have a minimum +capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher + +T.5.6.4 + +Catch cans for any vent on other systems containing liquid lubricant or coolant, including a +differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid +being contained or 0.5 liter, whichever is higher + +T.5.6.5 + +Any catch can on the cooling system must vent through a hose with a minimum internal +diameter of 3 mm down to the bottom levels of the Chassis. + +T.6 +T.6.1 + +PRESSURIZED SYSTEMS +Compressed Gas Cylinders and Lines +Any system on the vehicle that uses a compressed gas as an actuating medium must meet: + +T.6.1.1 + +Working Gas - The working gas must be non flammable + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 68 of 143 + + T.6.1.2 + +Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed +and built for the pressure being used, certified by an accredited testing laboratory in the +country of its origin, and labeled or stamped appropriately. + +T.6.1.3 + +Pressure Regulation - The pressure regulator must be mounted directly onto the gas +cylinder/tank + +T.6.1.4 + +Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible +operating pressure of the system. + +T.6.1.5 + +Insulation - The gas cylinder/tank must be insulated from any heat sources + +T.6.1.6 + +Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system +must meet one of the two: + +T.6.1.7 + +• + +Made from metal + +• + +Meet the thermal protection requirements of T.1.6.3 + +Cylinder Location - The gas cylinder/tank and the pressure regulator must be: +a. + +Securely mounted inside the Chassis + +b. + +Located outside of the Cockpit + +c. + +In a position below the height of the Shoulder Belt Mount T.2.6 + +d. + +Aligned so the axis of the gas cylinder/tank does not point at the driver + +T.6.1.8 + +Protection – The gas cylinder/tank and lines must be protected from rollover, collision from +any direction, or damage resulting from the failure of rotating equipment + +T.6.1.9 + +The driver must be protected from failure of the cylinder/tank and regulator + +T.6.2 + +High Pressure Hydraulic Pumps and Lines +This section T.6.2 does not apply to Brake lines or hydraulic clutch lines + +T.6.2.1 + +The driver and anyone standing outside the vehicle must be shielded from any hydraulic +pumps and lines with line pressures of 2100 kPa or higher. + +T.6.2.2 + +The shields must be steel or aluminum with a minimum thickness of 1 mm. + +T.7 + +BODYWORK AND AERODYNAMIC DEVICES + +T.7.1 + +Aerodynamic Devices + +T.7.1.1 + +Aerodynamic Device +A part on the vehicle which guides airflow for purposes including generation of downforce +and/or change of drag. +Examples include but are not limited to: wings, undertray, splitter, endplates, vanes + +T.7.1.2 + +No power device may be used to move or remove air from under the vehicle. Power ground +effects are strictly prohibited. + +T.7.1.3 + +All Aerodynamic Devices must meet: + +T.7.1.4 + +a. + +The mounting system provides sufficient rigidity in the static condition + +b. + +The Aerodynamic Devices do not oscillate or move excessively when the vehicle is +moving. Refer to IN.8.2 + +All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) +must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 69 of 143 + + This may be the radius of the edges themselves, or additional permanently attached pieces +designed to meet this requirement. +T.7.1.5 + +Other edges that a person may touch must not be sharp + +T.7.2 + +Bodywork + +T.7.2.1 + +Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device + +T.7.2.2 + +Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic +Device if is designed to, or may possibly, produce force due to aerodynamic effects + +T.7.2.3 + +Bodywork must not contain openings into the cockpit from the front of the vehicle back to the +Main Hoop or Firewall. The cockpit opening and minimal openings around the front +suspension components are allowed. + +T.7.2.4 + +All forward facing edges on the Bodywork that could contact people, including the nose, must +have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more +relative to the forward direction, along the top, sides and bottom of all affected edges. + +T.7.3 + +Measurement + +T.7.3.1 + +All Aerodynamic Device limitations are measured: +a. + +With the wheels pointing in the straight ahead position + +b. + +Without a driver in the vehicle + +The intent is to standardize the measurement, see GR.6.4.1 +T.7.3.2 + +Head Restraint Plane +A transverse vertical plane through the rearmost portion of the front face of the driver head +restraint support, excluding any padding, set (if adjustable) in its fully rearward position + +T.7.3.3 + +Rear Aerodynamic Zone +The volume that is: + +T.7.4 + +• + +Rearward of the Head Restraint Plane + +• + +Inboard of two vertical planes parallel to the centerline of the chassis touching the inside +of the rear tires at the height of the hub centerline + +Location +Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1 + +T.7.5 + +Length +In plan view, any part of any Aerodynamic Device must be: + +T.7.6 + +a. + +No more than 700 mm forward of the fronts of the front tires + +b. + +No more than 250 mm rearward of the rear of the rear tires + +Width +In plan view, any part of any Aerodynamic Device must be: + +T.7.6.1 + +When forward of the centerline of the front wheel axles: +Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of +the front tires at the height of the hubs. + +T.7.6.2 + +When between the centerlines of the front and rear wheel axles: + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 70 of 143 + + Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height +of the wheel centers +T.7.6.3 + +When rearward of the centerline of the rear wheel axles: +In the Rear Aerodynamic Zone + +T.7.7 + +Height + +T.7.7.1 + +Any part of any Aerodynamic Device that is located: + +T.7.7.2 + +T.8 +T.8.1 + +a. + +In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground + +b. + +Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the +ground + +c. + +Forward of the centerline of the front wheel axles and outboard of two vertical planes +parallel to the centerline of the chassis touching the inside of the front tires at the height +of the hubs must be no higher than 250 mm above the ground + +Bodywork height is not restricted when the Bodywork is located: +• + +Between the transverse vertical planes positioned at the front and rear axle centerlines + +• + +Inside two vertical fore and aft planes 400 mm outboard from the centerline on each +side of the vehicle + +FASTENERS +Critical Fasteners +A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule + +T.8.2 + +Critical Fastener Requirements + +T.8.2.1 + +Any Critical Fastener must meet, at minimum, one of these: +a. + +SAE Grade 5 + +b. + +Metric Class 8.8 + +c. + +AN/MS Specifications + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 71 of 143 + + d. +T.8.2.2 + +Equivalent to or better than above, as approved by a Rules Question or at Technical +Inspection + +All threaded Critical Fasteners must be one of the two: +• + +Hex head + +• + +Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts) + +T.8.2.3 + +All Critical Fasteners must be secured from unintentional loosening with Positive Locking +Mechanisms see T.8.3 + +T.8.2.4 + +A minimum of two full threads must project from any lock nut. + +T.8.2.5 + +Some Critical Fastener applications have additional requirements that are provided in the +applicable section. + +T.8.3 + +Positive Locking Mechanisms + +T.8.3.1 + +Positive Locking Mechanisms are defined as those which: +a. + +Technical Inspectors / team members can see that the device/system is in place (visible). + +b. + +Do not rely on the clamping force to apply the locking or anti vibration feature. + +Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming +completely loose +T.8.3.2 + +Examples of acceptable Positive Locking Mechanisms include, but are not limited to: +a. + +Correctly installed safety wiring + +b. + +Cotter pins + +c. + +Nylon lock nuts (where temperature does not exceed 80°C) + +d. + +Prevailing torque lock nuts + +Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT +meet the positive locking requirement +T.8.3.3 + +T.8.4 + +If the Positive Locking Mechanism is by prevailing torque lock nuts: +a. + +Locking fasteners must be in as new condition + +b. + +A supply of replacement fasteners must be presented in Technical Inspection, including +any attachment method + +Requirements for All Fasteners +Adjustable tie rod ends must be constrained with a jam nut to prevent loosening. + +T.9 + +ELECTRICAL EQUIPMENT + +T.9.1 + +Definitions + +T.9.1.1 + +High Voltage – HV +Any voltage more than 60 V DC or 25 V AC RMS + +T.9.1.2 + +Low Voltage - LV +Any voltage less than and including 60 V DC or 25 V AC RMS + +T.9.1.3 + +Normally Open +A type of electrical relay or contactor that allows current flow only in the energized state + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 72 of 143 + + T.9.2 + +Low Voltage Batteries + +T.9.2.1 + +All Low Voltage Batteries and onboard power supplies must be securely mounted inside the +Chassis below the height of the Shoulder Belt Mount T.2.6 + +T.9.2.2 + +All Low Voltage batteries must have Overcurrent Protection that trips at or below the +maximum specified discharge current of the cells + +T.9.2.3 + +The hot (ungrounded) terminal must be insulated. + +T.9.2.4 + +Any wet cell battery located in the driver compartment must be enclosed in a nonconductive +marine type container or equivalent. + +T.9.2.5 + +Batteries or battery packs based on lithium chemistry must meet one of the two: +a. + +Have a rigid, sturdy casing made from Nonflammable Material + +b. + +A commercially available battery designed as an OEM style replacement + +T.9.2.6 + +All batteries using chemistries other than lead acid must be presented at Technical Inspection +with markings identifying it for comparison to a datasheet or other documentation proving +the pack and supporting electronics meet all rules requirements + +T.9.3 + +Master Switches +Each Master Switch ( IC.9.3 / EV.7.9 ) must meet: + +T.9.3.1 + +T.9.3.2 + +Location +a. + +On the driver’s right hand side of the vehicle + +b. + +In proximity to the Main Hoop + +c. + +At the driver's shoulder height + +d. + +Able to be easily operated from outside the vehicle + +Characteristics +a. + +Be of the rotary mechanical type + +b. + +Be rigidly mounted to the vehicle and must not be removed during maintenance + +c. + +Mounted where the rotary axis of the key is near horizontal and across the vehicle + +d. + +The ON position must be in the horizontal position and must be marked accordingly + +e. + +The OFF position must be clearly marked + +f. + +(EV Only) Operated with a red removable key that must only be removable in the +electrically open position + +T.9.4 + +Inertia Switch + +T.9.4.1 + +Inertia Switch Requirement + +T.9.4.2 + +• + +(EV) Must have an Inertia Switch + +• + +(IC) Should have an Inertia Switch + +The Inertia Switch must be: +a. + +A Sensata Resettable Crash Sensor or equivalent + +b. + +Mechanically and rigidly attached to the vehicle + +c. + +Removable to test functionality + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 73 of 143 + + T.9.4.3 + +Inertia Switch operation: +a. + +Must trigger due to a longitudinal impact load which decelerates the vehicle at between +8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the +Sensata device) + +b. + +Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered + +c. + +Must latch until manually reset + +d. + +May be reset by the driver from inside the driver's cell + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 74 of 143 + + VE - VEHICLE AND DRIVER EQUIPMENT +VE.1 +VE.1.1 + +VEHICLE IDENTIFICATION +Vehicle Number + +VE.1.1.1 The assigned vehicle number must appear on the vehicle as follows: +a. + +Locations: in three places, on the front of the chassis and the left and right sides + +b. + +Height: 150 mm minimum + +c. + +Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive +numbers) + +d. + +Stroke Width and Spacing between numbers: 18 mm minimum + +e. + +Color: White numbers on a black background OR black numbers on a white background + +f. + +Background: round, oval, square or rectangular + +g. + +Spacing: 25 mm minimum between the edge of the numbers and the edge of the +background + +h. + +The numbers must not be obscured by parts of the vehicle + +VE.1.1.2 Additional letters or numerals must not show before or after the vehicle number +VE.1.2 + +School Name +Each vehicle must clearly display the school name. + +VE.1.3 + +a. + +Abbreviations are allowed if unique and generally recognized + +b. + +The name must be in Roman characters minimum 50 mm high on the left and right sides +of the vehicle. + +c. + +The characters must be put on a high contrast background in an easily visible location + +d. + +The school name may also appear in non Roman characters, but the Roman character +version must be uppermost on the sides. + +SAE Logo +The SAE International Logo must be displayed on the front and/or the left and right sides of +the vehicle in a prominent location. + +VE.1.4 + +Inspection Sticker +The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: + +VE.1.5 + +• + +A clear and unobstructed area, minimum 25 cm wide x 20 cm high + +• + +Located on the upper front surface of the nose along the vehicle centerline + +Transponder / RFID Tag + +VE.1.5.1 Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the +specified type(s) +VE.1.5.2 Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information +and mounting details + +VE.2 +VE.2.1 + +VEHICLE EQUIPMENT +Jacking Point + +VE.2.1.1 A Jacking Point must be provided at the rear of the vehicle +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 75 of 143 + + VE.2.1.2 The Jacking Point must be: + +VE.2.2 + +a. + +Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the +FSAE Online website + +b. + +Visible to a person standing 1 m behind the vehicle + +c. + +Color: Orange + +d. + +Oriented laterally and perpendicular to the centerline of the vehicle + +e. + +Made from round, 25 - 30 mm OD aluminum or steel tube + +f. + +Exposed around the lower 180° of its circumference over a minimum length of 280 mm + +g. + +Access from the rear of the tube must be unobstructed for 300 mm or more of its length + +h. + +The height of the tube must allow 75 mm minimum clearance from the bottom of the +tube to the ground + +i. + +When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the +wheels do not touch the ground when they are in full rebound + +Push Bar +Each vehicle must have a removable device which attaches to the rear of the vehicle that: + +VE.2.3 + +a. + +Allows two people, standing erect behind the vehicle, to push the vehicle around the +competition site + +b. + +Is capable of slowing and stopping the forward motion of the vehicle and pulling it +rearwards + +Fire Extinguisher + +VE.2.3.1 Each team must have two or more fire extinguishers. +a. + +One extinguisher must readily be available in the team’s paddock area + +b. + +One extinguisher must accompany the vehicle when moved using the Push Bar +A commercially available on board fire system may be used instead of the fire +extinguisher that accompanies the vehicle + +VE.2.3.2 Hand held fire extinguishers must NOT be mounted on or in the vehicle +VE.2.3.3 Each fire extinguisher must meet these: +a. + +Capacity: 0.9 kg (2 lbs) + +b. + +Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and +Halon extinguishers and systems are prohibited. + +c. + +Equipped with a manufacturer installed pressure/charge gauge. + +d. + +Minimum acceptable ratings: + +e. +VE.2.4 + +• + +USA, Canada & Brazil: 10BC or 1A 10BC + +• + +Europe: 34B or 5A 34B + +• + +Australia: 20BE or 1A 10BE + +Extinguishers of larger capacity (higher numerical ratings) are acceptable. + +Electrical Equipment (EV Only) +These items must accompany the vehicle at all times: +• + +Two pairs of High Voltage insulating gloves + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 76 of 143 + + • +VE.2.5 + +A multimeter + +Camera Mounts + +VE.2.5.1 The mounts for video/photographic cameras must be of a safe and secure design. +VE.2.5.2 All camera installations must be approved at Technical Inspection. +VE.2.5.3 Helmet mounted cameras and helmet camera mounts are prohibited. +VE.2.5.4 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a +minimum of two points on different sides of the camera body. +VE.2.5.5 If a tether is used to restrain the camera, the tether length must be limited to prevent contact +with the driver. + +VE.3 +VE.3.1 + +DRIVER EQUIPMENT +General + +VE.3.1.1 Any Driver Equipment: +a. + +Must be in good condition with no tears, rips, open seams, areas of significant wear, +abrasions or stains which might compromise performance. + +b. + +Must fit properly + +c. + +May be inspected at any time + +VE.3.1.2 Flame Resistant Material +For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, +Polybenzimidazole (common name PBI) and Proban. +VE.3.1.3 Synthetic Material – Prohibited +Shirts, socks or other undergarments (not to be confused with flame resistant underwear) +made from nylon or any other synthetic material which could melt when exposed to high heat +are prohibited. +VE.3.1.4 Officials may impound any non approved Driver Equipment until the end of the competition. +VE.3.2 + +Helmet + +VE.3.2.1 The driver must wear a helmet which: +a. + +Is closed face with an integral, immovable chin guard + +b. + +Contains an integrated visor/face shield supplied with the helmet + +c. + +Meets an approved standard + +d. + +Is properly labeled for that standard + +VE.3.2.2 Acceptable helmet standards are listed below. Any additional approved standards are shown +on the Technical Inspection Form or the FAQ on the FSAE Online website +a. + +Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, +SA2025 + +b. + +SFI Specs 31.1/2015, 41.1/2015 + +c. + +FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 77 of 143 + + VE.3.3 + +Driver Gear +The driver must wear: + +VE.3.3.1 Driver Suit +A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers +the body from the neck to the ankles and the wrists. +Each suit must meet one or more of these standards and be labeled as such: +• + +SFI 3.2A/5 (or higher ex: /10, /15, /20) + +• + +SFI 3.4/5 (or higher ex: /10, /15, /20) + +• + +FIA Standard 1986 + +• + +FIA Standard 8856-2000 + +• + +FIA Standard 8856-2018 + +VE.3.3.2 Underclothing +All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under +their approved Driver Suit. +VE.3.3.3 Balaclava +A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame +Resistant Material +VE.3.3.4 Socks +Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit +and the Shoes. +VE.3.3.5 Shoes +Shoes or boots made from Flame Resistant Material that meet an approved standard and +labeled as such: +• + +SFI Spec 3.3 + +• + +FIA Standard 8856-2000 + +• + +FIA Standard 8856-2018 + +VE.3.3.6 Gloves +Gloves made from Flame Resistant Material. +Gloves of all leather construction or fire retardant gloves constructed using leather palms with +no insulating Flame Resistant Material underneath are not acceptable. +VE.3.3.7 Arm Restraints +a. + +Arm restraints must be worn in a way that the driver can release them and exit the +vehicle unassisted regardless of the vehicle’s position. + +b. + +Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec +3.3 and labeled as such meet this requirement. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 78 of 143 + + IC - INTERNAL COMBUSTION ENGINE VEHICLES +IC.1 + +GENERAL REQUIREMENTS + +IC.1.1 + +Engine Limitations + +IC.1.1.1 + +The engine(s) used to power the vehicle must: +a. + +Be a piston engine(s) using a four stroke primary heat cycle + +b. + +Have a total combined displacement less than or equal to 710 cc per cycle. + +IC.1.1.2 + +Hybrid powertrains, such as those using electric motors running off stored energy, are +prohibited. + +IC.1.1.3 + +All waste/rejected heat from the primary heat cycle may be used. The method of conversion is +not limited to the four stroke cycle. + +IC.1.1.4 + +The engine may be modified within the restrictions of the rules. + +IC.1.2 + +Air Intake and Fuel System Location +All parts of the engine air system and fuel control, delivery and storage systems (including the +throttle or carburetor, and the complete air intake system, including the air cleaner and any +air boxes) must lie inside the Tire Surface Envelope F.1.14 + +IC.2 + +AIR INTAKE SYSTEM + +IC.2.1 + +General + +IC.2.2 + +Intake System Location + +IC.2.2.1 + +The Intake System must meet IC.1.2 + +IC.2.2.2 + +Any portion of the air intake system that is less than 350 mm above the ground must be +shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable. + +IC.2.3 + +Intake System Mounting + +IC.2.3.1 + +The intake manifold must be securely attached to the engine block or cylinder head with +brackets and mechanical fasteners. +• + +Hose clamps, plastic ties, or safety wires do not meet this requirement. + +• + +The use of rubber bushings or hose is acceptable for creating and sealing air passages, +but is not a structural attachment. + +IC.2.3.2 + +Threaded fasteners used to secure and/or seal the intake manifold must have a Positive +Locking Mechanism, see T.8.3. + +IC.2.3.3 + +Intake systems with significant mass or cantilever from the cylinder head must be supported +to prevent stress to the intake system. +a. + +Supports to the engine must be rigid. + +b. + +Supports to the Chassis must incorporate some isolation to allow for engine movement +and chassis flex. + +IC.2.4 + +Intake System Restrictor + +IC.2.4.1 + +All airflow to the engine(s) must pass through a single circular restrictor in the intake system. + +IC.2.4.2 + +The only allowed sequence of components is: +a. + +For naturally aspirated engines, the sequence must be: throttle body, restrictor, and +engine. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 79 of 143 + + b. + +IC.2.4.3 + +For turbocharged or supercharged engines, the sequence must be: restrictor, +compressor, throttle body, engine. + +The maximum restrictor diameters at any time during the competition are: +a. + +Gasoline fueled vehicles + +20.0 mm + +b. + +E85 fueled vehicles + +19.0 mm + +IC.2.4.4 + +The restrictor must be located to facilitate measurement during Technical Inspection + +IC.2.4.5 + +The circular restricting cross section must NOT be movable or flexible in any way + +IC.2.4.6 + +The restrictor must not be part of the movable portion of a barrel throttle body. + +IC.2.5 + +Turbochargers & Superchargers + +IC.2.5.1 + +The intake air may be cooled with an intercooler (a charge air cooler). +a. + +It must be located downstream of the throttle body + +b. + +Only ambient air may be used to remove heat from the intercooler system + +c. + +Air to air and water to air intercoolers are permitted + +d. + +The coolant of a water to air intercooler system must meet T.5.4.1 + +IC.2.5.2 + +If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be +positioned in the intake system as shown in IC.2.4.2.b + +IC.2.5.3 + +Plenums must not be located anywhere upstream of the throttle body +For the purpose of definition, a plenum is any tank or volume that is a significant enlargement +of the normal intake runner system. Teams may submit their designs via a Rules Question for +review prior to competition if the legality of their proposed system is in doubt. + +IC.2.5.4 + +The maximum allowable area of the inner diameter of the intake runner system between the +restrictor and throttle body is 2825 mm2 + +IC.2.6 + +Connections to Intake +Any crankcase or engine lubrication vent lines routed to the intake system must be connected +upstream of the intake system restrictor. + +IC.3 + +THROTTLE + +IC.3.1 + +General + +IC.3.1.1 + +The vehicle must have a carburetor or throttle body. +a. + +The carburetor or throttle body may be of any size or design. + +b. + +Boosted applications must not use carburetors. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 80 of 143 + + IC.3.2 + +Throttle Actuation Method +The throttle may be operated: +a. + +Mechanically by a cable or rod system IC.3.3 + +b. + +By Electronic Throttle Control IC.4 + +IC.3.3 + +Throttle Actuation – Mechanical + +IC.3.3.1 + +The throttle cable or rod must: + +IC.3.3.2 + +a. + +Have smooth operation + +b. + +Have no possibility of binding or sticking + +c. + +Be minimum 50 mm from any exhaust system component and out of the exhaust stream + +d. + +Be protected from being bent or kinked by the driver’s foot when it is operated by the +driver or when the driver enters or exits the vehicle + +The throttle actuation system must use two or more return springs located at the throttle +body. +Throttle Position Sensors (TPS) are NOT acceptable as return springs + +IC.3.3.3 + +IC.4 + +Failure of any component of the throttle system must not prevent the throttle returning to +the closed position. + +ELECTRONIC THROTTLE CONTROL +This section IC.4 applies only when Electronic Throttle Control is used +An Electronic Throttle Control (ETC) system may be used. This is a device or system which +may change the engine throttle setting based on various inputs. + +IC.4.1 + +General Design + +IC.4.1.1 + +The electronic throttle must automatically close (return to idle) when power is removed. + +IC.4.1.2 + +The electronic throttle must use minimum two sources of energy capable of returning the +throttle to the idle position. +a. + +One of the sources may be the device (such as a DC motor) that normally operates the +throttle + +b. + +The other device(s) must be a throttle return spring that can return the throttle to the +idle position if loss of actuator power occurs. + +c. + +Springs in the TPS are not acceptable throttle return springs + +IC.4.1.3 + +The ETC system may blip the throttle during downshifts when proven that unintended +acceleration can be prevented. Document the functional analysis in the ETC Systems Form + +IC.4.2 + +Commercial ETC System + +IC.4.2.1 + +An ETC system that is commercially available, but does not comply with the regulations, may +be used, if approved prior to the event. + +IC.4.2.2 + +To obtain approval, submit a Rules Question which includes: +• + +Which ETC system the team is seeking approval to use. + +• + +The specific ETC rule(s) that the commercial system deviates from. + +• + +Sufficient technical details of these deviations to determine the acceptability of the +commercial system. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 81 of 143 + + IC.4.3 + +Documentation + +IC.4.3.1 + +The ETC Notice of Intent: +• + +Must be submitted to give the intent to run ETC + +• + +May be used to screen which teams are allowed to use ETC + +IC.4.3.2 + +The ETC Systems Form must be submitted in order to use ETC + +IC.4.3.3 + +Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document +Requirements + +IC.4.3.4 + +Late or non submission will prevent use of ETC, see DR.3.4.1 + +IC.4.4 + +Throttle Position Sensor - TPS + +IC.4.4.1 + +The TPS must measure the position of the throttle or the throttle actuator. +Throttle position is defined as percent of travel from fully closed to wide open where 0% is +fully closed and 100% is fully open. + +IC.4.4.2 + +Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and +reference lines only if effects of supply and/or reference line voltage offsets can be detected. + +IC.4.4.3 + +Implausibility is defined as a deviation of more than 10% throttle position between the +sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be +considered on a case by case basis and require justification in the ETC Systems Form + +IC.4.4.4 + +If an Implausibility occurs between the values of the two TPSs and persists for more than 100 +msec, the power to the electronic throttle must be immediately shut down. + +IC.4.4.5 + +If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% +throttle position may be used to define the throttle position target and the 3rd TPS may be +ignored. + +IC.4.4.6 + +Each TPS must be able to be checked during Technical Inspection by having one of: +a. + +A separate detachable connector(s) for any TPS signal(s) to the main ECU without +affecting any other connections + +b. + +An inline switchable breakout box available that allows disconnection of each TPS +signal(s) to the main ECU without affecting any other connections + +IC.4.4.7 + +The TPS signals must be sent directly to the throttle controller using an analogue signal or via +a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring +must be detectable by the controller and must be treated like Implausibility. + +IC.4.4.8 + +When an analogue signal is used, the TPSs will be considered to have failed when they achieve +an open circuit or short circuit condition which generates a signal outside of the normal +operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. + +IC.4.4.9 + +When any kind of digital data transmission is used to transmit the TPS signal, +a. + +The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. + +b. + +The failures to be considered must include but are not limited to the failure of the TPS, +TPS signals being out of range, corruption of the message and loss of messages and the +associated time outs. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 82 of 143 + + IC.4.5 + +Accelerator Pedal Position Sensor - APPS +Refer to T.4.2 for specific requirements of the APPS + +IC.4.6 + +Brake System Encoder - BSE +Refer to T.4.3 for specific requirements of the BSE + +IC.4.7 + +Throttle Plausibility Checks + +IC.4.7.1 + +Brakes and Throttle Position + +IC.4.7.2 + +a. + +The power to the electronic throttle must be shut down if the mechanical brakes are +operated and the TPS signals that the throttle is open by more than a permitted amount +for more than one second. + +b. + +An interval of one second is allowed for the throttle to close (return to idle). Failure to +achieve this in the required interval must result in immediate shut down of fuel flow and +the ignition system. + +c. + +The permitted relationship between BSE and TPS may be defined by the team using a +table. This functionality must be demonstrated at Technical Inspection. + +Throttle Position vs Target +a. + +The power to the electronic throttle must be immediately shut down, if throttle position +differs by more than 10% from the expected target TPS position for more than one +second. + +b. + +An interval of one second is allowed for the difference to reduce to less than 10%, failure +to achieve this in the required interval must result in immediate shut down of fuel flow +and the ignition system. + +c. + +An error in TPS position and the resultant system shutdown must be demonstrated at +Technical Inspection. +Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. +System states displayed using calibration software must be accompanied by a detailed +explanation of the control system. + +IC.4.7.3 + +The electronic throttle and fuel injector/ignition system shutdown must stay active until the +TPS signals indicate the throttle is at or below the unpowered default position for one second +or longer. + +IC.4.8 + +Brake System Plausibility Device - BSPD + +IC.4.8.1 + +A standalone nonprogrammable circuit must be used to monitor the electronic throttle +control. +The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7 + +IC.4.8.2 + +Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may +not be used in place of the raw sensor signals. + +IC.4.8.3 + +The BSPD must monitor for these conditions: +a. + +The two of these for more than one second: +• + +Demand for Hard Braking IC.4.6 + +• + +Throttle more than 10% open IC.4.4 + +b. + +Loss of signal from the braking sensor(s) for more than 100 msec + +c. + +Loss of signal from the throttle sensor(s) for more than 100 msec + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 83 of 143 + + d. + +Removal of power from the BSPD circuit + +IC.4.8.4 + +When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2 + +IC.4.8.5 + +The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON + +IC.4.8.6 + +The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF + +IC.4.8.7 + +The BSPD signals and function must be able to be checked during Technical Inspection by +having one of: + +IC.5 + +a. + +A separate set of detachable connectors for any signals from the braking sensor(s), +throttle sensor(s) and removal of power to only the BSPD device. + +b. + +An inline switchable breakout box available that allows disconnection of the brake +sensor(s), throttle sensor(s) individually and power to only the BSPD device. + +FUEL AND FUEL SYSTEM + +IC.5.1 + +Fuel + +IC.5.1.1 + +Vehicles must be operated with the fuels provided at the competition + +IC.5.1.2 + +Fuels provided are expected to be Gasoline and E85. Consult the individual competition +websites for fuel specifics and other information. + +IC.5.1.3 + +No agents other than the provided fuel and air may go into the combustion chamber. + +IC.5.2 + +Fuel System + +IC.5.2.1 + +The Fuel System must meet these design criteria: +a. + +The Fuel Tank is capable of being filled to capacity without manipulating the tank or the +vehicle in any manner. + +b. + +During refueling on a level surface, the formation of air cavities or other effects that +cause the fuel level observed at the sight tube to drop after movement or operation of +the vehicle (other than due to consumption) are prevented. + +c. + +Spillage during refueling cannot contact the driver position, exhaust system, hot engine +parts, or the ignition system. + +IC.5.2.2 + +The Fuel System location must meet IC.1.2 and F.9 + +IC.5.2.3 + +A Firewall must separate the Fuel Tank from the driver, per T.1.8 + +IC.5.3 + +Fuel Tank +The part(s) of the fuel containment device that is in contact with the fuel. + +IC.5.3.1 + +IC.5.3.2 + +IC.5.3.3 + +Fuel Tanks made of a rigid material must: +a. + +Be securely attached to the vehicle structure. The mounting method must not allow +chassis flex to load the Fuel Tank. + +b. + +Not be used to carry any structural loads; from Roll Hoops, suspension, engine or +gearbox mounts + +Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag +tank: +a. + +Must be enclosed inside a rigid fuel tank container which is securely attached to the +vehicle structure. + +b. + +The Fuel Tank container may be load carrying + +Any size Fuel Tank may be used + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 84 of 143 + + IC.5.3.4 + +The Fuel Tank, by design, must not have a variable capacity. + +IC.5.3.5 + +The Fuel System must have a provision for emptying the Fuel Tank if required. + +IC.5.4 + +Fuel Filler Neck & Sight Tube + +IC.5.4.1 + +All Fuel Tanks must have a Fuel Filler Neck which must be: +a. + +IC.5.4.2 + +IC.5.4.3 + +Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler +cap + +The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be: +a. + +Minimum 125 mm vertical height above the top level of the Fuel Tank + +b. + +Angled no more than 30° from the vertical + +The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the +fuel level which must be: +a. + +Visible vertical height: + +125 mm minimum + +b. + +Inside diameter: + +6 mm minimum + +c. + +Above the top surface of the Fuel Tank + +IC.5.4.4 + +A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules +Question or technical inspectors at the event. + +IC.5.4.5 + +Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm +and 25 mm below the top of the visible portion of the sight tube. +This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure +the amount of fuel used during the Endurance Event. + +IC.5.4.6 + +The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, +the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, +etc) or the need to remove any parts (body panels, etc). + +IC.5.4.7 + +The individual filling the tank must have complete direct access to the filler neck opening with +a standard two gallon gas can assembly. +The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top + +IC.5.4.8 + +The filler neck must have a fuel cap that can withstand severe vibrations or high pressures +such as could occur during a vehicle rollover event + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 85 of 143 + + IC.5.5 + +Fuel Tank Filling + +IC.5.5.1 + +Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials. + +IC.5.5.2 + +The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point. + +IC.5.5.3 + +If, for any reason, the fuel level changes after the team have moved the vehicle, then no +additional fuel will be added, unless fueling after Endurance, see D.13.2.5 + +IC.5.6 + +Venting Systems + +IC.5.6.1 + +Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during +hard cornering or acceleration. + +IC.5.6.2 + +All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted. + +IC.5.6.3 + +All fuel vent lines must exit outside the bodywork. + +IC.5.7 + +Fuel Lines + +IC.5.7.1 + +Fuel lines must be securely attached to the vehicle and/or engine. + +IC.5.7.2 + +All fuel lines must be shielded from possible rotating equipment failure or collision damage. + +IC.5.7.3 + +Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. + +IC.5.7.4 + +Any rubber fuel line or hose used must meet the two: +a. + +The components over which the hose is clamped must have annular bulb or barbed +fittings to retain the hose + +b. + +Clamps specifically designed for fuel lines must be used. +These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, +and rolled edges to prevent the clamp cutting into the hose + +IC.5.7.5 + +IC.6 +IC.6.1 + +Worm gear type hose clamps must not be used on any fuel line. + +FUEL INJECTION +Low Pressure Injection (LPI) +Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most +Port Fuel Injected (PFI) fuel systems are low pressure. + +IC.6.1.1 + +IC.6.1.2 + +Any Low Pressure flexible fuel lines must be one of: +• + +Metal braided hose with threaded fittings (crimped on or reusable) + +• + +Reinforced rubber hose with some form of abrasion resistant protection + +Fuel rail and mounting requirements: +a. + +Unmodified OEM Fuel Rails are acceptable, regardless of material. + +b. + +Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable +materials are prohibited. + +c. + +The fuel rail must be securely attached to the manifold, engine block or cylinder head +with brackets and mechanical fasteners. +Hose clamps, plastic ties, or safety wires do not meet this requirement. + +d. + +Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 86 of 143 + + IC.6.2 + +High Pressure Injection (HPI) / Direct Injection (DI) + +IC.6.2.1 + +Definitions +a. + +High Pressure fuel systems - those functioning at 10 Bar pressure or above + +b. + +Direct Injection fuel systems - where the injection occurs directly into the combustion +system + +Direct Injection systems often utilize a low pressure electric fuel pump and high pressure +mechanical “boost” pump driven off the engine. + +IC.6.2.2 + +IC.6.2.3 + +IC.6.2.4 + +c. + +High Pressure Fuel Lines - those between the boost pump and injectors + +d. + +Low Pressure Fuel Lines - from the electric supply pump to the boost pump + +All High Pressure Fuel Lines must: +a. + +Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel +reinforcement and visible Nomex tracer yarn. Equivalent products may be used with +prior approval. + +b. + +Not incorporate elastomeric seals + +c. + +Be rigidly connected every 100 mm by mechanical fasteners to structural engine +components such as cylinder heads or block + +Any Low Pressure flexible Fuel Lines must be one of: +• + +Metal braided hose with threaded fittings (crimped on or reusable) + +• + +Reinforced rubber hose with some form of abrasion resistant protection + +Fuel rail mounting requirements: +a. + +The fuel rail must be securely attached to the engine block or cylinder head with brackets +and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this +requirement. + +b. + +The fastening method must be sufficient to hold the fuel rail in place with the maximum +regulated pressure acting on the injector internals and neglecting any assistance from +cylinder pressure acting on the injector tip. + +c. + +Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 + +IC.6.2.5 + +High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as +the cylinder head or engine block. + +IC.6.2.6 + +Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the +fuel system in parallel with the DI boost pump. The external regulator must be used even if +the DI boost pump comes equipped with an internal regulator. + +IC.7 + +EXHAUST AND NOISE CONTROL + +IC.7.1 + +Exhaust Protection + +IC.7.1.1 + +The exhaust system must be separated from any of these components by means given in +T.1.6.3: +a. + +Flammable materials, including the fuel and fuel system, the oil and oil system + +b. + +Thermally sensitive components, including brake lines, composite materials, and +batteries + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 87 of 143 + + IC.7.2 + +Exhaust Outlet + +IC.7.2.1 + +The exhaust must be routed to prevent the driver from fumes at any speed considering the +draft of the vehicle + +IC.7.2.2 + +The Exhaust Outlet(s) must be: +a. + +No more than 45 cm aft of the centerline of the rear axle + +b. + +No more than 60 cm above the ground. + +IC.7.2.3 + +Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in +front of the Main Hoop must be shielded to prevent contact by persons approaching the +vehicle or a driver exiting the vehicle + +IC.7.2.4 + +Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an +exhaust manifold or exhaust system. + +IC.7.3 + +Variable Exhaust + +IC.7.3.1 + +Adjustable tuning or throttling devices are permitted. + +IC.7.3.2 + +Manually adjustable tuning devices must require tools to change + +IC.7.3.3 + +Refer to IN.10.2 for additional requirements during the Noise Test + +IC.7.4 + +Connections to Exhaust +Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum +devices that connect directly to the exhaust system, are prohibited. + +IC.7.5 + +Noise Level and Testing + +IC.7.5.1 + +The vehicle must stay below the permitted sound level at all times IN.10.5 + +IC.7.5.2 + +Sound level will be verified during Technical Inspection, refer to IN.10 + +IC.8 + +ELECTRICAL + +IC.8.1 + +Starter +Each vehicle must start the engine using an onboard starter at all times + +IC.8.2 + +Batteries +Refer to T.9.2 for specific requirements of Low Voltage batteries + +IC.8.3 + +Voltage Limit + +IC.8.3.1 + +Voltage between any two electrical connections must be Low Voltage T.9.1.2 + +IC.8.3.2 + +This voltage limit does not apply to these systems: +• + +High Voltage systems for ignition + +• + +High Voltage systems for injectors + +• + +Voltages internal to OEM charging systems designed for <60 V DC output. + +IC.9 + +SHUTDOWN SYSTEM + +IC.9.1 + +Shutdown Circuit + +IC.9.1.1 + +The Shutdown Circuit consists of these components: +a. + +Primary Master Switch IC.9.3 + +b. + +Cockpit Main Switch IC.9.4 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 88 of 143 + + c. + +(ETC Only) Brake System Plausibility Device (BSPD) IC.4.8 + +d. + +Brake Overtravel Switch (BOTS) T.3.3 + +e. + +Inertia Switch (if used) T.9.4 + +IC.9.1.2 + +The team must be able to demonstrate all features and functions of the Shutdown Circuit and +components at Technical Inspection + +IC.9.1.3 + +The international electrical symbol (a red spark on a white edged blue triangle) must be near +the Primary Master Switch and the Cockpit Main Switch. + +IC.9.2 + +Shutdown Circuit Operation + +IC.9.2.1 + +The Shutdown Circuit must Open upon operation of, or detection from any of the components +listed in IC.9.1.1 + +IC.9.2.2 + +When the Shutdown Circuit Opens, it must: +a. + +Stop the engine + +b. + +Disconnect power to the: +• + +Fuel Pump(s) + +• + +Ignition + +• + +(ETC only) Electronic Throttle IC.4.1.1 + +IC.9.3 + +Primary Master Switch + +IC.9.3.1 + +Configuration and Location - The Primary Master Switch must meet T.9.3 + +IC.9.3.2 + +Function - the Primary Master Switch must: +a. + +Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel +pump(s), ignition and electrical controls. +All battery current must flow through this switch + +b. + +Be direct acting, not act through a relay or logic. + +IC.9.4 + +Cockpit Main Switch + +IC.9.4.1 + +Configuration - The Cockpit Main Switch must: + +IC.9.4.2 + +IC.9.4.3 + +a. + +Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF +position) + +b. + +Have a diameter of 24 mm minimum + +Location – The Cockpit Main Switch must be: +a. + +In easy reach of the driver when in a normal driving position wearing Harness + +b. + +Adjacent to the Steering Wheel + +c. + +Unobstructed by the Steering Wheel or any other part of the vehicle + +Function - the Cockpit Main Switch may act through a relay + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 89 of 143 + + EV - ELECTRIC VEHICLES +EV.1 +EV.1.1 + +DEFINITIONS +Tractive System – TS +Every part electrically connected to the Motor(s) and/or Accumulator(s) + +EV.1.2 + +Grounded Low Voltage - GLV +Every electrical part that is not part of the Tractive System + +EV.1.3 + +Accumulator +All the battery cells or super capacitors that store the electrical energy to be used by the +Tractive System + +EV.2 +EV.2.1 + +DOCUMENTATION +Electrical System Form - ESF + +EV.2.1.1 Each team must submit an Electrical System Form (ESF) with a clearly structured +documentation of the entire vehicle electrical system (including control and Tractive System). +Submission and approval of the ESF does not mean that the vehicle will automatically pass +Electrical Technical Inspection with the described items / parts. +EV.2.1.2 The ESF may provide guidance or more details than the Formula SAE Rules. +EV.2.1.3 Use the format provided and submit the ESF as given in section DR - Document Requirements +EV.2.2 + +Submission Penalties +Penalties for the ESF are imposed as given in section DR - Document Requirements. + +EV.3 +EV.3.1 + +ELECTRICAL LIMITATIONS +Operation + +EV.3.1.1 Supplying power to the motor to drive the vehicle in reverse is prohibited +EV.3.1.2 Drive by wire control of wheel torque is permitted +EV.3.1.3 Any algorithm or electronic control unit that can adjust the requested wheel torque may only +decrease the total driver requested torque and must not increase it +EV.3.2 + +Energy Meter + +EV.3.2.1 All Electric Vehicles must run with the Energy Meter provided at the event +Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter +EV.3.2.2 The Energy Meter must be installed in an easily accessible location +EV.3.2.3 All Tractive System power must flow through the Energy Meter +EV.3.2.4 Each team must download their Energy Meter data in a manner and timeframe specified by +the organizer +EV.3.2.5 Power and Voltage limits will be checked by the Energy Meter data +Energy is calculated as the time integrated value of the measured voltage multiplied by the +measured current logged by the Energy Meter. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 90 of 143 + + EV.3.3 + +Power and Voltage + +EV.3.3.1 The maximum power measured by the Energy Meter must not exceed 80 kW +EV.3.3.2 The maximum permitted voltage that may occur between any two points must not exceed +600 V DC +EV.3.3.3 The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr +EV.3.4 + +Violations + +EV.3.4.1 A Violation occurs when one or two of these exist: +a. + +Use of more than the specified maximum power EV.3.3.1 + +b. + +Exceed the maximum voltage EV.3.3.2 + +for one or the two conditions: +• + +Continuously for 100 ms or more + +• + +After a moving average over 500 ms is applied + +EV.3.4.2 Missing Energy Meter data may be treated as a Violation, subject to official discretion +EV.3.4.3 Tampering, or attempting to tamper with the Energy Meter or its data may result in +Disqualification (DQ) +EV.3.5 + +Penalties + +EV.3.5.1 Violations during the Acceleration, Skidpad, Autocross Events: +a. + +Each run with one or more Violations will Disqualify (DQ) the best run of the team + +b. + +Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the +two best runs + +EV.3.5.2 Violations during the Endurance event: +• + +Each Violation: 60 second penalty D.14.2.1 + +EV.3.5.3 Repeated Violations may void Inspection Approval or receive additional penalties up to and +including Disqualification, subject to official discretion. +EV.3.5.4 The respective data of each run in which a team has a Violation and the resulting decision may +be made public. + +EV.4 +EV.4.1 + +COMPONENTS +Motors + +EV.4.1.1 Only electrical motors are allowed. The number of motors is not limited. +EV.4.1.2 Motors must meet T.5.3 +EV.4.1.3 If Motors are mounted to the suspension uprights, their cables and wiring must: +a. + +Include an Interlock EV.7.8 +This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive +System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or +knocked off the vehicle. + +b. + +Reduce the length of the portions of wiring and other connections that do not meet +F.11.1.3 to the extent possible + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 91 of 143 + + EV.4.2 + +Motor Controller +The Tractive System Motor(s) must be connected to the Accumulator through a Motor +Controller. No direct connections between Motor(s) and Accumulator. + +EV.4.3 + +Accumulator Container + +EV.4.3.1 Accumulator Containers must meet F.10 +EV.4.3.2 The Accumulator Container(s) must be removable from the vehicle while still remaining rules +compliant +EV.4.3.3 The Accumulator Container(s) must be completely closed at all times (when mounted to the +vehicle and when removed from the vehicle) without the need to install extra protective +covers +EV.4.3.4 The Accumulator Container(s) may contain Holes or Openings +a. + +Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the +Accumulator Container(s) + +b. + +Holes and Openings in the Accumulator Container must meet F.10.4 + +c. + +External holes must meet EV.6.1 + +EV.4.3.5 Any Accumulators that may vent an explosive gas must have a ventilation system or pressure +relief valve to release the vented gas +EV.4.3.6 Segments sealed in Accumulator Containers must have a path to a pressure relief valve +EV.4.3.7 Pressure relief valves must not have line of sight to the driver, with the Firewall installed or +removed +EV.4.3.8 Each Accumulator Container must be labelled with the: + +EV.4.4 + +a. + +School Name and Vehicle Number + +b. + +Symbol specified in ISO 7010-W012 +background) with: + +(triangle with black lightning bolt on yellow + +• + +Triangle side length of 100 mm minimum + +• + +Visibility from all angles, including when the lid is removed + +c. + +Text “Always Energized” + +d. + +Text “High Voltage” if the voltage meets T.9.1.1 + +Grounded Low Voltage System + +EV.4.4.1 The GLV System must be: +a. + +A Low Voltage system that is Grounded to the Chassis + +b. + +Able to operate with Accumulator removed from the vehicle + +EV.4.4.2 The GLV System must include a Master Switch, see EV.7.9.1 +EV.4.4.3 A GLV Measuring Point (GLVMP) must be installed which is: +a. + +Connected to GLV System Ground + +b. + +Next to the TSMP EV.5.8 + +c. + +4 mm shrouded banana jack + +d. + +Color: Black + +e. + +Marked “GND” + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 92 of 143 + + EV.4.4.4 Low Voltage Batteries must meet T.9.2 +EV.4.5 + +Accelerator Pedal Position Sensor - APPS +Refer to T.4.2 for specific requirements of the APPS + +EV.4.6 + +Brake System Encoder - BSE +Refer to T.4.3 for specific requirements of the BSE + +EV.4.7 + +APPS / Brake Pedal Plausibility Check + +EV.4.7.1 Must monitor for the two conditions: +• + +The mechanical brakes are engaged EV.4.6, T.3.2.4 + +• + +The APPS signals more than 25% Pedal Travel EV.4.5 + +EV.4.7.2 If the two conditions in EV.4.7.1 occur at the same time: +a. + +Power to the Motor(s) must be immediately and completely shut down + +b. + +The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, +with or without brake operation + +The team must be able to demonstrate these actions at Technical Inspection +EV.4.8 + +Tractive System Part Positioning +All parts belonging to the Tractive System must meet F.11 + +EV.4.9 + +Housings and Enclosures + +EV.4.9.1 Each housing or enclosure containing parts of the Tractive System other than Motor housings, +must be labelled with the: +a. + +Symbol specified in ISO 7010-W012 +background) + +(triangle with black lightning bolt on yellow + +b. + +Text “High Voltage” if the voltage meets T.9.1.1 + +EV.4.9.2 If the material of the housing containing parts of the Tractive System is electrically conductive, +it must have a low resistance connection to GLV System Ground, see EV.6.7 +EV.4.10 Accumulator Hand Cart +EV.4.10.1 Teams must have a Hand Cart to transport their Accumulator Container(s) +EV.4.10.2 The Hand Cart must be used when the Accumulator Container(s) are transported on the +competition site EV.11.4.2 EV.11.5.1 +EV.4.10.3 The Hand Cart must: +a. + +Be able to carry the load of the Accumulator Container(s) without tipping over + +b. + +Contain a minimum of two wheels + +c. + +Have a brake that must be: +• + +Released only using a dead man type switch (where the brake is always on until +released by pushing and holding a handle) or by manually lifting part of the cart off +the ground + +• + +Able to stop the Hand Cart with a fully loaded Accumulator Container + +EV.4.10.4 Accumulator Container(s) must be securely attached to the Hand Cart + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 93 of 143 + + EV.5 + +ENERGY STORAGE + +EV.5.1 + +Accumulator + +EV.5.1.1 All cells or super capacitors which store the Tractive System energy are built into Accumulator +Segments and must be enclosed in (an) Accumulator Container(s). +EV.5.1.2 Each Accumulator Segment must contain: +• + +Static voltage of 120 V DC maximum + +• + +Energy of 6 MJ maximum +The contained energy of a stack is calculated by multiplying the maximum stack voltage +with the nominal capacity of the used cell(s) + +• + +Mass of 12 kg maximum + +EV.5.1.3 No further energy storage except for reasonably sized intermediate circuit capacitors are +allowed after the Energy Meter EV.3.1 + +EV.5.1.4 All Accumulator Segments and/or Accumulator Containers (including spares and replacement +parts) must be identical to the design documented in the ESF and SES +EV.5.2 + +Electrical Configuration + +EV.5.2.1 All Tractive System components must be rated for the maximum Tractive System voltage +EV.5.2.2 If the Accumulator Container is made from an electrically conductive material: +a. + +The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner +wall of the Accumulator Container with an insulating material that is rated for the +maximum Tractive System voltage. + +b. + +All conductive surfaces on the outside of the Accumulator Container must have a low +resistance connection to the GLV System Ground, see EV.6.7 + +c. + +Any conductive penetrations, such as mounting hardware, must be protected against +puncturing the insulating barrier. + +EV.5.2.3 Each Accumulator Segment must be electrically insulated with suitable Nonflammable +Material (F.1.18) (not air) for the two: +a. + +Between the segments in the container + +b. + +On top of the segment + +The intent is to prevent arc flashes caused by inter segment contact or by parts/tools +accidentally falling into the container during maintenance for example. +EV.5.2.4 Soldering electrical connections in the high current path is prohibited +Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are +not part of the high current path. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 94 of 143 + + EV.5.2.5 Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, +must be rated to the maximum Tractive System voltage. +EV.5.3 + +Maintenance Plugs + +EV.5.3.1 Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet: +a. + +The separated Segments meet voltage and energy limits of EV.5.1.2 + +b. + +The separation must affect the two poles of the Segment + +EV.5.3.2 Maintenance Plugs must: +a. + +Require the physical removal or separation of a component. Contactors or switches are +not acceptable Maintenance Plugs + +b. + +Have access after opening the Accumulator Container and not necessary to move or +remove any other components + +c. + +Not be physically possible to make electrical connection in any configuration other than +the design intended configuration + +d. + +Not require tools to install or remove + +e. + +Include a positive locking feature which prevents the plug from unintentionally becoming +loose + +f. + +Be nonconductive on surfaces that do not provide any electrical connection + +EV.5.3.3 When the Accumulator Containers are opened or Segments are removed, the Accumulator +Segments must be separated by using the Maintenance Plugs. See EV.11.4.1 +EV.5.4 + +Isolation Relays - IR + +EV.5.4.1 All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more +Isolation Relays (IR) +EV.5.4.2 The Isolation Relays must: +a. + +Be a Normally Open type + +b. + +Open the two poles of the Accumulator + +EV.5.4.3 When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator +Container +EV.5.4.4 The Isolation Relays and any fuses must be separated from the rest of the Accumulator with +an electrically insulated and Nonflammable Material (F.1.18). +EV.5.4.5 A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit +Opens EV.7.2.2 +EV.5.5 + +Manual Service Disconnect - MSD +A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two +poles of the Accumulator EV.11.3.2 + +EV.5.5.1 The Manual Service Disconnect (MSD) must be: +a. + +A directly accessible element, fuse or connector that will visually show disconnected + +b. + +More than 350 mm from the ground + +c. + +Easily visible when standing behind the vehicle + +d. + +Operable in 10 seconds or less by an untrained person + +e. + +Operable without removing any bodywork or obstruction or using tools + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 95 of 143 + + f. + +Directly operated. Remote operation through a long handle, rope or wire is not +acceptable. + +g. + +Clearly marked with "MSD" + +EV.5.5.2 The Energy Meter must not be used as the Manual Service Disconnect (MSD) +EV.5.5.3 An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed +EV.5.5.4 A dummy connector or similar may be used to restore isolation to meet EV.6.1.2 +EV.5.6 + +Precharge and Discharge Circuits + +EV.5.6.1 The Accumulator must contain a Precharge Circuit. The Precharge Circuit must: +a. + +Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage +before closing the second IR + +b. + +Be supplied from the Shutdown Circuit EV.7.1 + +EV.5.6.2 The Intermediate Circuit must precharge before closing the second IR +a. + +The end of precharge must be controlled by feedback by monitoring the voltage in the +Intermediate Circuit + +EV.5.6.3 The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be: +a. + +Wired in a way that it is always active when the Shutdown Circuit is open + +b. + +Able to discharge the Intermediate Circuit capacitors if the MSD has been opened + +c. + +Not be fused + +d. + +Designed to handle the maximum Tractive System voltage for minimum 15 seconds + +EV.5.6.4 Positive Temperature Coefficient (PTC) devices must not be used to limit current for the +Precharge Circuit or Discharge Circuit +EV.5.6.5 The precharge relay must be a mechanical type relay +EV.5.7 + +Voltage Indicator +Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is +present at the vehicle side of the IRs + +EV.5.7.1 The Voltage Indicator must always function, including when the Accumulator Container is +disconnected or removed +EV.5.7.2 The voltage being present at the connectors must directly control the Voltage Indicator using +hard wired electronics with no software control. +EV.5.7.3 The control signal which closes the IRs must not control the Voltage Indicator +EV.5.7.4 The Voltage Indicator must: + +EV.5.8 + +a. + +Be located where it is clearly visible when connecting/disconnecting the Accumulator +Tractive System connections + +b. + +Be labeled “High Voltage Present” + +Tractive System Measuring Points - TSMP + +EV.5.8.1 Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are: +a. + +Connected to the positive and negative motor controller/inverter supply lines + +b. + +Next to the Master Switches EV.7.9 + +c. + +Protected by a nonconductive housing that can be opened without tools + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 96 of 143 + + d. + +Protected from being touched with bare hands / fingers once the housing is opened + +EV.5.8.2 Two TSMPs must be installed in the Charger EV.8.2 which are: +a. + +Connected to the positive and negative Charger output lines + +b. + +Available during charging of any Accumulator(s) + +EV.5.8.3 The TSMPs must be: +a. + +4 mm shrouded banana jacks rated to an appropriate voltage level + +b. + +Color: Red + +c. + +Marked “HV+” and “HV-“ + +EV.5.8.4 Each TSMP must be secured with a current limiting resistor. +a. + +The resistor must be sized for the voltage: +Maximum TS Voltage (Vmax) + +Resistor Value + +Vmax <= 200 V DC + +5 kOhm + +200 V DC < Vmax <= 400 V DC + +10 kOhm + +400 V DC < Vmax <= 600 V DC + +15 kOhm + +b. + +Resistor continuous power rating must be more than the power dissipated across the +TSMPs if they are shorted together + +c. + +Direct measurement of the value of the resistor must be possible during Electrical +Technical Inspection. + +EV.5.8.5 Any TSMP must not contain additional Overcurrent Protection. +EV.5.9 + +Connectors +Tractive System connectors outside of a housing must contain an Interlock EV.7.8 + +EV.5.10 Ready to Move Light +EV.5.10.1 The vehicle must have two Ready to Move Lights: +a. + +One pointed forward + +b. + +One pointed aft + +EV.5.10.2 Each Ready to Move Light must be: +a. + +A Marker Light that complies with DOT FMVSS 108 + +b. + +Color: Amber + +c. + +Luminous area: minimum 1800 mm2 + +EV.5.10.3 Mounting location of each Ready to Move Light must: +a. + +Be near the Main Hoop near the highest point of the vehicle + +b. + +Be inside the Rollover Protection Envelope F.1.13 + +c. + +Be no lower than 150 mm from the highest point of the Main Hoop + +d. + +Not allow contact with the driver’s helmet in any circumstances + +e. + +Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm +horizontal radius from the light +Visibility is checked with Bodywork and Aerodynamic Devices in place + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 97 of 143 + + EV.5.10.4 The Ready to Move Light must: +a. + +Be powered by the GLV system + +b. + +Be directly controlled by the voltage present in the Tractive System using hard wired +electronics. EV.6.5.4 Software control is not permitted. + +c. + +Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage +outside the Accumulator Container(s) exceeds T.9.1.1 + +d. + +Not do any other functions + +EV.5.11 Tractive System Status Indicator +EV.5.11.1 The vehicle must have a Tractive System Status Indicator +EV.5.11.2 The Tractive System Status Indicator must have two separate Red and Green Status Lights +EV.5.11.3 Each of the Status Lights: +a. + +Must have a minimum luminous area of 130 mm2 + +b. + +Must be visible in direct sunlight + +c. + +May have one or more of the same elements + +EV.5.11.4 Mounting location of the Tractive System Status Indicator must: +a. + +Be near the Main Hoop at the highest point of the vehicle + +b. + +Be above the Ready to Move Light + +c. + +Be inside the Rollover Protection Envelope F.1.13 + +d. + +Be no lower than 150 mm from the highest point of the Main Hoop + +e. + +Not allow contact with the driver’s helmet in any circumstances + +f. + +Easily visible to a person near the vehicle + +EV.5.11.5 The Tractive System Status Indicator must show when the GLV System is energized: +a. +b. + +EV.6 +EV.6.1 + +Condition + +Green Light + +Red Light + +No Faults +Fault in one or the two: +BMS EV.7.3.5 or IMD EV.7.6.5 + +Always ON + +OFF +Flash +2 Hz to 5 Hz, 50% duty cycle + +OFF + +ELECTRICAL SYSTEM +Covers + +EV.6.1.1 Nonconductive material or covers must prevent inadvertent human contact with any Tractive +System voltage. +Covers must be secure and sufficiently rigid. +Removable Bodywork is not suitable to enclose Tractive System connections. +EV.6.1.2 Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated +test probe must not be possible when the Tractive System enclosures are in place. +EV.6.1.3 Tractive System components and Accumulator Containers must be protected from moisture, +rain or puddles. +A rating of IP65 is recommended + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 98 of 143 + + EV.6.2 + +Insulation + +EV.6.2.1 Insulation material must: +a. + +Be appropriate for the expected surrounding temperatures + +b. + +Have a minimum temperature rating of 90°C + +EV.6.2.2 Insulating tape or paint may be part of the insulation, but must not be the only insulation. +EV.6.3 + +Wiring + +EV.6.3.1 All wires and terminals and other conductors used in the Tractive System must be sized for the +continuous current they will conduct +EV.6.3.2 All Tractive System wiring must: +a. + +Be marked with wire gauge, temperature rating and insulation voltage rating. +A serial number or a norm printed on the wire is sufficient if this serial number or norm is +clearly bound to the wire characteristics for example by a data sheet. + +b. + +Have temperature rating more than or equal to 90°C + +EV.6.3.3 Tractive System wiring must be: +a. + +Done to professional standards with sufficient strain relief + +b. + +Protected from loosening due to vibration + +c. + +Protected against damage by rotating and / or moving parts + +d. + +Located out of the way of possible snagging or damage + +EV.6.3.4 Any Tractive System wiring that runs outside of electrical enclosures: +a. + +Must meet one of the two: +• + +Enclosed in separate orange nonconductive conduit + +• + +Use an orange shielded cable + +b. + +The conduit or shielded cable must be securely anchored at each end to allow it to +withstand a force of 200 N without straining the cable end crimp + +c. + +Any shielded cable must have the shield grounded + +EV.6.3.5 Wiring that is not part of the Tractive System must not use orange wiring or conduit. +EV.6.4 + +Connections + +EV.6.4.1 All Tractive System connections must: +a. + +Be designed to use intentional current paths through conductors designed for electrical +current + +b. + +Not rely on steel bolts to be the primary conductor + +c. + +Not include compressible material such as plastic in the stack-up + +EV.6.4.2 If external, uninsulated heat sinks are used, they must be properly grounded to the GLV +System Ground, see EV.6.7 +EV.6.4.3 Bolted electrical connections in the high current path of the Tractive System must include a +positive locking feature to prevent unintentional loosening +Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. +Bolts with nylon patches are allowed for blind connections into OEM components. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 99 of 143 + + EV.6.4.4 Information about the electrical connections supporting the high current path must be +available at Electrical Technical Inspection +EV.6.5 + +Voltage Separation + +EV.6.5.1 Separation of Tractive System and GLV System: +a. + +The entire Tractive System and GLV System must be completely galvanically separated. + +b. + +The border between Tractive System and GLV System is the galvanic isolation between +the two systems. +Some components, such as the Motor Controller, may be part of both systems. + +EV.6.5.2 There must be no connection between the Chassis of the vehicle (or any other conductive +surface that might be inadvertently touched by a person), and any part of any Tractive System +circuits. +EV.6.5.3 Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4 +EV.6.5.4 GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, +HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light +EV.5.10 the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator +Container. +EV.6.5.5 Where Tractive System and GLV are included inside the same enclosure, they must meet one +of the two: +a. + +Be separated by insulating barriers (in addition to the insulation on the wire) made of +moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or +higher (such as Nomex based electrical insulation) + +b. + +Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: +U < 100 V DC + +10 mm + +100 V DC < U < 200 V DC + +20 mm + +U > 200 V DC + +30 mm + +EV.6.5.6 Spacing must be clearly defined. Components and cables capable of movement must be +positively restrained to maintain spacing. +EV.6.5.7 If Tractive System and GLV are on the same circuit board: +a. + +They must be on separate, clearly defined and clearly marked areas of the board + +b. + +Required spacing related to the spacing between traces / board areas are as follows: +Voltage + +Over Surface + +Thru Air (cut in board) Under Conformal Coating + +0-50 V DC + +1.6 mm + +1.6 mm + +1 mm + +50-150 V DC + +6.4 mm + +3.2 mm + +2 mm + +150-300 V DC + +9.5 mm + +6.4 mm + +3 mm + +300-600 V DC + +12.7 mm + +9.5 mm + +4 mm + +EV.6.5.8 Teams must be prepared to show spacing on team built equipment +For inaccessible circuitry, spare boards or appropriate photographs must be available for +inspection +EV.6.5.9 All connections to external devices such as laptops from a Tractive System component must +include galvanic isolation + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 100 of 143 + + EV.6.6 + +Overcurrent Protection + +EV.6.6.1 All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent +Protection/Fusing. +EV.6.6.2 Unless otherwise allowed in the Rules, all Overcurrent Protection devices must: +a. + +Be rated for the highest voltage in the systems they protect. +Overcurrent Protection devices used for DC must be rated for DC and must carry a DC +rating equal to or more than the system voltage + +b. + +Have a continuous current rating less than or equal to the continuous current rating of +any electrical component that it protects + +c. + +Have an interrupt current rating higher than the theoretical short circuit current of the +system that it protects + +EV.6.6.3 Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, +strings of capacitors, or conductors must have individual Overcurrent Protection. +EV.6.6.4 Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of: +a. + +Be appropriately sized for the total current that the individual Overcurrent Protection +devices could transmit + +b. + +Contain additional Overcurrent Protection to protect the conductors + +EV.6.6.5 Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be +used when all three conditions are met: +• + +An Overcurrent Protection device rated at less than or equal to one third the sum of the +parallel fusible links and complying with EV.6.6.2.b above is connected in series. + +• + +The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a +fault is detected. + +• + +Fusible link current rating is specified in manufacturer’s data or suitable test data is +provided. + +EV.6.6.6 If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, +the reduced conductor longer than 150 mm must have additional Overcurrent Protection. +This additional Overcurrent Protection must be: +a. + +150 mm or less from the source end of the reduced conductor + +b. + +On the positive and the negative conductors in the Tractive System + +c. + +On the positive conductor in the Grounded Low Voltage System + +EV.6.6.7 Cells with internal Overcurrent Protection may be used without external Overcurrent +Protection if suitably rated. +Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and +conditions of EV.6.6.5 above will apply. +EV.6.7 + +Grounding + +EV.6.7.1 Grounding is required for: +a. + +Parts of the vehicle which are 100 mm or less from any Tractive System component + +b. + +(EV only) The Firewall T.1.8.4 + +EV.6.7.2 Grounded parts of the vehicle must have a resistance to GLV System Ground less than the +values specified below. +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 101 of 143 + + a. + +Electrically conductive parts + +300 mOhms (measured with a current of 1 A) + +Examples: parts made of steel, (anodized) aluminum, any other metal parts +b. + +Parts which may become electrically conductive + +5 Ohm + +Example: carbon fiber parts +Carbon fiber parts may need special measures such as using copper mesh or similar to +keep the ground resistance below 5 Ohms. +EV.6.7.3 Electrical conductivity of any part may be tested by checking any point which is likely to be +conductive. +Where no convenient conductive point is available, an area of coating may be removed. + +EV.7 + +SHUTDOWN SYSTEM + +EV.7.1 + +Shutdown Circuit + +EV.7.1.1 The Shutdown Circuit consists of these components, connected in series: +a. + +Battery Management System (BMS) EV.7.3 + +b. + +Insulation Monitoring Device (IMD) EV.7.6 + +c. + +Brake System Plausibility Device (BSPD) EV.7.7 + +d. + +Interlocks (as required) EV.7.8 + +e. + +Master Switches (GLVMS, TSMS) EV.7.9 + +f. + +Shutdown Buttons EV.7.10 + +g. + +Brake Over Travel Switch (BOTS) T.3.3 + +h. + +Inertia Switch T.9.4 + +EV.7.1.2 The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the +Precharge Circuit Relay. +EV.7.1.3 The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open +EV.7.1.4 The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown +Circuit. +The design of the respective circuits must make sure that a failure cannot result in electrical +power being fed back into the Shutdown Circuit. +EV.7.1.5 The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown +Circuit current +EV.7.1.6 The team must be able to demonstrate all features and functions of the Shutdown Circuit and +components at Electrical Technical Inspection. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 102 of 143 + + Shutdown Bu ons + +Brake +System +Plausibility +Device + +GLV System +Master Switch + +GLV System + +LV + +Insula on +Monitoring +Device + +Ba ery +Management +System + +Iner a +Switch + +cockpit + +Brake +Over +Travel +Switch + +le + +TS + +right + +MSD +Interlock + +Interlock(s) +le + +Trac ve System +Master Switch + +GLV Fuse +Accumulator Container(s) + +GLV +Ba ery + +Precharge +Control + +GLV System + +Chas s is +TSMP + +TSMP + +GLVMP +GND + +HV+ + +HV +IR + +Accumulator +Fuse(s) + +IR + +Trac ve +System + +Trac ve +System +Precharge + +EV.7.2.1 The Shutdown Circuit must Open when any of these exist: + +Trac ve System + +GLV System + +Shutdown Circuit Operation + +Trac ve System + +EV.7.2 + +a. + +Operation of, or detection from any of the components listed in EV.7.1.1 + +b. + +Any shutdown of the GLV System + +EV.7.2.2 When the Shutdown Circuit Opens: +a. + +The Tractive System must Shutdown + +b. + +All Accumulator current flow must stop immediately EV.5.4.3 + +c. + +The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less + +d. + +The Motor(s) must spin free. Torque must not be applied to the Motor(s) + +EV.7.2.3 When the BMS, IMD or BSPD Open the Shutdown Circuit: + +EV.7.3 + +a. + +The Tractive System must stay disabled until manually reset + +b. + +The Tractive System must be reset only by manual action of a person directly at the +vehicle + +c. + +The driver must not be able to reactivate the Tractive System from inside the vehicle + +d. + +Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close + +Battery Management System - BMS + +EV.7.3.1 A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and +Temperature EV.7.5 when the: +a. + +Tractive System is Active EV.11.5 + +b. + +Accumulator is connected to a Charger EV.8.3 + +EV.7.3.2 The BMS must have galvanic isolation at each segment to segment boundary, as approved in +the ESF +EV.7.3.3 Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 103 of 143 + +right + + EV.7.3.4 The BMS must monitor for: +a. + +Voltage values outside the allowable range EV.7.4.2 + +b. + +Voltage sense Overcurrent Protection device(s) blown or tripped + +c. + +Temperature values outside the allowable range EV.7.5.2 + +d. + +Missing or interrupted voltage or temperature measurements + +e. + +A fault in the BMS + +EV.7.3.5 If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must: +a. + +Open the Shutdown Circuit EV.7.2.2 + +b. + +Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 +The two lights must stay on until the BMS is manually reset EV.7.2.3 + +EV.7.3.6 The BMS Indicator Light must be: + +EV.7.4 + +a. + +Color: Red + +b. + +Clearly visible to the seated driver in bright sunlight + +c. + +Clearly marked with the lettering “BMS” + +Accumulator Voltage + +EV.7.4.1 The BMS must measure the cell voltage of each cell +When single cells are directly connected in parallel, only one voltage measurement is needed +EV.7.4.2 Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels +stated in the cell data sheet. Measurement accuracy must be considered. +EV.7.4.3 All voltage sense wires to the BMS must meet one of: +a. + +Have Overcurrent Protection EV.7.4.4 below + +b. + +Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below + +EV.7.4.4 When used, Overcurrent Protection for the BMS voltage sense wires must meet the two: +a. + +The Overcurrent Protection must occur in the conductor, wire or PCB trace which is +directly connected to the cell tab. + +b. + +The voltage rating of the Overcurrent Protection must be equal to or higher than the +maximum segment voltage + +EV.7.4.5 Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: + +EV.7.5 + +• + +BMS is a distributed BMS system (one cell measurement per board) + +• + +Sense wire length is less than 25 mm + +• + +BMS board has Overcurrent Protection + +Accumulator Temperature + +EV.7.5.1 The BMS must measure the temperatures of critical points of the Accumulator +EV.7.5.2 Temperatures (considering measurement accuracy) must stay below the lower of the two: +• + +The maximum cell temperature limit stated in the cell data sheet + +• + +60°C + +EV.7.5.3 Cell temperatures must be measured at the negative terminal of the respective cell + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 104 of 143 + + EV.7.5.4 The temperature sensor used must be in direct contact with one of: +• + +The negative terminal itself + +• + +The negative terminal busbar less than 10 mm away from the spot weld or clamping +source on the negative cell terminal + +EV.7.5.5 For lithium based cells, +a. + +The temperature of a minimum of 20% of the cells must be monitored by the BMS + +b. + +The monitored cells must be equally distributed inside the Accumulator Container(s) + +The temperature of each cell should be monitored +EV.7.5.6 Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells +sensed by the sensor. +EV.7.5.7 Temperature sensors must have appropriate electrical isolation that meets one of the two: +• + +Between the sensor and cell + +• + +In the sensing circuit + +The isolation must consider GLV/TS isolation as well as common mode voltages between +sense locations. +EV.7.6 + +Insulation Monitoring Device - IMD + +EV.7.6.1 The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System +EV.7.6.2 The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved +alternate equivalent IMD +Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD +EV.7.6.3 The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the +maximum Tractive System operation voltage. +EV.7.6.4 The IMD must monitor the Tractive System for: +a. + +An isolation failure + +b. + +A failure in the IMD operation + +This must be done without the influence of any programmable logic. +EV.7.6.5 If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must: +a. + +Open the Shutdown Circuit EV.7.2.2 + +b. + +Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 +The two lights must stay on until the IMD is manually reset EV.7.2.3 + +EV.7.6.6 The IMD Indicator Light must be: + +EV.7.7 + +a. + +Color: Red + +b. + +Clearly visible to the seated driver in bright sunlight + +c. + +Clearly marked with the lettering “IMD” + +Brake System Plausibility Device - BSPD + +EV.7.7.1 The vehicle must have a standalone nonprogrammable circuit to check for simultaneous +braking and high power output +The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7) +EV.7.7.2 The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 105 of 143 + + • + +Demand for Hard Braking EV.4.6 + +• + +Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit +is delivered to the Motor(s) at the nominal battery voltage + +The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips +EV.7.7.3 The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in +any sensor input +EV.7.7.4 The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection. +a. + +Power must not be sent to the Motor(s) of the vehicle during the test + +b. + +The test must prove the function of the complete BSPD in the vehicle, including the +current sensor + +The suggested test would introduce a current by a separate wire from an external power +supply simulating the Tractive System current while pressing the brake pedal +EV.7.8 + +Interlocks + +EV.7.8.1 Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 ) +EV.7.8.2 Additional Interlocks may be included in the Tractive System or components +EV.7.8.3 The Interlock is a wire or connection that must: +a. + +Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted + +b. + +Not be in the low (ground) connection to the IR coils of the Shutdown Circuit + +EV.7.8.4 Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive +System wiring or components when the Interlock circuit is: + +EV.7.9 + +a. + +In the same wiring harness as Tractive System wiring + +b. + +Part of a Tractive System Connector EV.5.9 + +c. + +Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the +connection to a Tractive System connector + +Master Switches + +EV.7.9.1 Each vehicle must have two Master Switches that must: +a. + +Meet T.9.3 for Configuration and Location + +b. + +Be direct acting, not act through a relay or logic + +EV.7.9.2 The Grounded Low Voltage Master Switch (GLVMS) must: +a. + +Completely stop all power to the GLV System EV.4.4 + +b. + +Be in the center of a completely red circular area of > 50 mm in diameter + +c. + +Be labeled “LV” + +EV.7.9.3 The Tractive System Master Switch (TSMS) must: +a. + +Open the Shutdown Circuit in the OFF position EV.7.2.2 + +b. + +Be the last switch before the IRs except for Precharge circuitry and Interlocks. + +c. + +Be in the center of a completely orange circular area of > 50 mm in diameter + +d. + +Be labeled “TS” and the symbol specified in ISO 7010-W012 +lightning bolt on yellow background). + +e. + +Be fitted with a "lockout/tagout" capability in the OFF position EV.11.3.1 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +(triangle with black + +Page 106 of 143 + + EV.7.10 Shutdown Buttons +EV.7.10.1 Three Shutdown Buttons must be installed on the vehicle +EV.7.10.2 Each Shutdown Button must: +a. + +Be a push-pull or push-rotate emergency stop switch + +b. + +Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position + +c. + +Hold when operated to the OFF position + +d. + +Let the Shutdown Circuit Close when operated to the ON position + +EV.7.10.3 One Shutdown Button must be on each side of the vehicle which: +a. + +Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop +Bracing F.5.9 + +b. + +Has a diameter of 40 mm minimum + +c. + +Must not be easily removable or mounted onto removable body work + +EV.7.10.4 One Shutdown Button must be mounted in the cockpit which: +a. + +Is located in easy reach of the belted in driver, adjacent to the steering wheel, and +unobstructed by the steering wheel or any other part of the vehicle + +b. + +Has diameter of 24 mm minimum + +EV.7.10.5 The international electrical symbol +each Shutdown Button. + +EV.8 + +CHARGER REQUIREMENTS + +EV.8.1 + +Charger Requirements + +(a red spark on a white edged blue triangle) must be near + +EV.8.1.1 All features and functions of the Charger and Charging Shutdown Circuit must be +demonstrated at Electrical Technical Inspection. IN.4.1 +EV.8.1.2 Chargers will be sealed after approval. IN.4.7.1 +EV.8.2 + +Charger Features + +EV.8.2.1 The Charger must be galvanically isolated (AC) input to (DC) output. +EV.8.2.2 If the Charger housing is conductive it must be connected to the earth ground of the AC input. +EV.8.2.3 All connections of the Charger(s) must be isolated and covered. +EV.8.2.4 The Charger connector(s) must incorporate a feature to let the connector become live only +when correctly connected to the Accumulator. +EV.8.2.5 High Voltage charging leads must be orange +EV.8.2.6 The Charger must have two TSMPs installed, see EV.5.8.2 +EV.8.2.7 The Charger must include a Charger Shutdown Button which must: +a. + +Be a push-pull or push-rotate emergency stop switch + +b. + +Have a minimum diameter of 25 mm + +c. + +Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position + +d. + +Hold when operated to the OFF position + +e. + +Be labelled with the international electrical symbol +triangle) + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +(a red spark on a white edged blue + +Page 107 of 143 + + EV.8.3 + +Charging Shutdown Circuit + +EV.8.3.1 The Charging Shutdown Circuit consists of: +a. + +Charger Shutdown Button EV.8.2.7 + +b. + +Battery Management System (BMS) EV.7.3 + +c. + +Insulation Monitoring Device (IMD) EV.7.6 + +EV.8.3.2 The BMS and IMD parts of the Charging Shutdown Circuit must: +a. + +Be designed as Normally Open contacts + +b. + +Have completely independent circuits to Open the Charging Shutdown Circuit. +Design of the respective circuits must make sure that a failure cannot result in electrical +power being fed back into the Charging Shutdown Circuit. + +EV.8.4 + +Charging Shutdown Circuit Operation + +EV.8.4.1 When Charging, the BMS and IMD must: +a. + +Monitor the Accumulator + +b. + +Open the Charging Shutdown Circuit if a fault is detected + +EV.8.4.2 When the Charging Shutdown Circuit Opens: + +EV.9 +EV.9.1 + +a. + +All current flow to the Accumulator must stop immediately + +b. + +The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less + +c. + +The Charger must be turned off + +d. + +The Charger must stay disabled until manually reset + +VEHICLE OPERATIONS +Activation Requirement +The driver must complete the Activation Sequence without external assistance after the +Master Switches EV.7.9 are ON + +EV.9.2 + +Activation Sequence +The vehicle systems must energize in this sequence: + +EV.9.3 + +a. + +Low Voltage (GLV) System EV.9.3 + +b. + +Tractive System Active EV.9.4 + +c. + +Ready to Drive EV.9.5 + +Low Voltage (GLV) System +The Shutdown Circuit may be Closed when or after the GLV System is energized + +EV.9.4 + +Tractive System Active + +EV.9.4.1 Definition – High Voltage is present outside of the Accumulator Container +EV.9.4.2 Tractive System Active must not be possible until the two: + +EV.9.5 + +• + +GLV System is Energized + +• + +Shutdown Circuit is Closed + +Ready to Drive + +EV.9.5.1 Definition – the Motor(s) will respond to the input of the APPS + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 108 of 143 + + EV.9.5.2 Ready to Drive must not be possible until the three at the same time: +• + +Tractive System Active EV.9.4 + +• + +The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 + +• + +The driver does a manual action to start Ready to Drive +Such as pressing a specific button in the cockpit + +EV.9.6 + +Ready to Drive Sound + +EV.9.6.1 The vehicle must make a characteristic sound when it is Ready to Drive +EV.9.6.2 The Ready to Drive Sound must be: +a. + +Sounded continuously for minimum 1 second and maximum 3 seconds + +b. + +A minimum sound level of 80 dBA, fast weighting IN.4.6 + +c. + +Easily recognizable. No animal voices, song parts or sounds that could be interpreted as +offensive will be accepted + +EV.9.6.3 The vehicle must not make other sounds similar to the Ready to Drive Sound. + +EV.10 EVENT SITE ACTIVITIES +EV.10.1 Onsite Registration +EV.10.1.1 The Accumulator must be onsite at the time the team registers to be eligible for Accumulator +Technical Inspection and Dynamic Events +EV.10.1.2 Teams who register without the Accumulator: +a. + +Must not bring their Accumulator onsite for the duration of the competition + +b. + +May participate in Technical Inspection and Static Events + +EV.10.2 Accumulator Removal +EV.10.2.1 After the team registers onsite, the Accumulator must remain on the competition site until +the end of the competition, or the team withdraws and leaves the site +EV.10.2.2 Violators will be disqualified from the competition and must leave immediately + +EV.11 WORK PRACTICES +EV.11.1 Personnel +EV.11.1.1 The Electrical System Officer (ESO): AD.5.2 +a. + +Is the only person on the team that may declare the vehicle electrically safe to allow +work on any system + +b. + +Must accompany the vehicle when operated or moved at the competition site + +c. + +Must be immediately available by phone at all times during the event + +EV.11.2 Maintenance +EV.11.2.1 All participating team members must wear safety glasses with side shields at any time when: +a. + +Parts of the Tractive System are exposed while energized + +b. + +Work is done on the Accumulators + +EV.11.2.2 Appropriate insulated tools must be used when working on the Accumulator or Tractive +System + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 109 of 143 + + EV.11.3 Lockout +EV.11.3.1 The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle. +EV.11.3.2 The MSD EV.5.5 must be disconnected when vehicles are: +a. + +Moved around the competition site + +b. + +Participating in Static Events + +EV.11.4 Accumulator +EV.11.4.1 These work activities at competition are allowed only in the designated area and during +Electrical Technical Inspection IN.4 See EV.5.3.3 +a. + +Opening Accumulator Containers + +b. + +Any work on Accumulators, cells, or Segments + +c. + +Energized electrical work + +EV.11.4.2 Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site +inside one of the two: +a. + +Completely closed Accumulator Container EV.4.3 See EV.4.10.2 + +b. + +Segment/Cell Transport Container EV.11.4.3 + +EV.11.4.3 The Segment/Cell Transport Container(s) must be: +a. + +Electrically insulated + +b. + +Protected from shock hazards and arc flash + +EV.11.4.4 Segments/Cells inside the Transport Container must agree with the voltage and energy limits +of EV.5.1.2 +EV.11.5 Charging +EV.11.5.1 Accumulators must be removed from the vehicle inside the Accumulator Container and put on +the Accumulator Container Hand Cart EV.4.10 for Charging +EV.11.5.2 Accumulator Charging must occur only inside the designated area +EV.11.5.3 A team member(s) who has knowledge of the Charging process must stay with the +Accumulator(s) during Charging +EV.11.5.4 Each Accumulator Container(s) must have a label with this data during Charging: +• + +Team Name + +• + +Electrical System Officer phone number(s) + +EV.11.5.5 Additional site specific rules or policies may apply + +EV.12 RED CAR CONDITION +EV.12.1 Definition +A vehicle will be a Red Car if any of the following: +a. + +Actual or possible damage to the vehicle affecting the Tractive System + +b. + +Vehicle fault indication (EV.5.11 or equivalent) + +c. + +Other conditions, at the discretion of the officials + +EV.12.2 Actions +a. + +Isolate the vehicle + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 110 of 143 + + b. + +No contact with the vehicle unless the officials give permission +Contact with the vehicle may require trained personnel with proper Personal Protective +Equipment + +c. + +Call out designated Red Car responders + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 111 of 143 + + IN - TECHNICAL INSPECTION +The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE +Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the +Rules. + +IN.1 +IN.1.1 + +INSPECTION REQUIREMENTS +Inspection Required +Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection +Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any +Dynamic event. + +IN.1.2 + +Technical Inspection Authority + +IN.1.2.1 The exact procedures and instruments used for inspection and testing are entirely at the +discretion of the Chief Technical Inspector(s). +IN.1.2.2 Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance +are final. +IN.1.3 + +Team Responsibility +Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE +Rules before Technical Inspection. + +IN.1.4 + +Reinspection +Officials may Reinspect any vehicle at any time during the competition IN.15 + +IN.2 + +INSPECTION CONDUCT + +IN.2.1 + +Vehicle Condition + +IN.2.1.1 Vehicles must be presented for Technical Inspection in finished condition, fully assembled, +complete and ready to run. +IN.2.1.2 Technical inspectors will not inspect any vehicle presented for inspection in an unfinished +state. +IN.2.2 + +Measurement + +IN.2.2.1 Allowable dimensions are absolute, and do not have any tolerance unless specifically stated +IN.2.2.2 Measurement tools and methods may vary +IN.2.2.3 No allowance is given for measurement accuracy or error +IN.2.3 + +Visible Access +All items on the Technical Inspection Form must be clearly visible to the technical inspectors +without using instruments such as endoscopes or mirrors. +Methods to provide visible access include but are not limited to removable body panels, access +panels, and other components + +IN.2.4 + +Inspection Items + +IN.2.4.1 Technical Inspection will examine all items included on the Technical Inspection Form to make +sure the vehicle and other equipment obeys the Rules. +IN.2.4.2 Technical Inspectors may examine any other items at their discretion + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 112 of 143 + + IN.2.5 + +Correction +If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team +must: + +IN.2.6 + +• + +Correct the problem + +• + +Continue Inspection or have the vehicle Reinspected + +Marked Items + +IN.2.6.1 Officials may mark, seal, or designate items or areas which have been inspected to document +the inspection and reduce the chance of tampering +IN.2.6.2 Damaged or lost marks or seals require Reinspection IN.15 + +IN.3 + +INITIAL INSPECTION +Bring these to Initial Inspection: + +IN.4 +IN.4.1 + +• + +Technical Inspection Form + +• + +All Driver Equipment per VE.3 to be used by each driver + +• + +Fire Extinguishers (for paddock and vehicle) VE.2.3 + +• + +Wet Tires V.4.3.2 + +ELECTRICAL TECHNICAL INSPECTION (EV ONLY) +Inspection Items +Bring these to Electrical Technical Inspection: +• + +Charger(s) for the Accumulator(s) EV.8.1 + +• + +Accumulator Container Hand Cart EV.4.10 + +• + +Spare Accumulator(s) (if applicable) EV.5.1.4 + +• + +Electrical Systems Form (ESF) and Component Data Sheets EV.2 + +• + +Copies of any submitted Rules Questions with the received answer GR.7 + +These basic tools in good condition: + +IN.4.2 + +• + +Insulated cable shears + +• + +Insulated screw drivers + +• + +Multimeter with protected probe tips + +• + +Insulated tools, if screwed connections are used in the Tractive System + +• + +Face Shield + +• + +HV insulating gloves which are 12 months or less from their test date + +• + +Two HV insulating blankets of minimum 0.83 m² each + +• + +Safety glasses with side shields for all team members that might work on the Tractive +System or Accumulator + +Accumulator Inspection +The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected +during Electrical Technical Inspection, or separately from the rest of Electrical Technical +Inspection. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 113 of 143 + + IN.4.3 + +Accumulator Access + +IN.4.3.1 If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, +provide detailed pictures of the internals taken during assembly +IN.4.3.2 Tech inspectors may require access to check any Accumulator(s) for rules compliance +IN.4.4 + +Insulation Monitoring Device Test + +IN.4.4.1 The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive +System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the +Tractive System is active +IN.4.4.2 The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault +resistance of 50% below the response value corresponding to 250 Ohm / Volt +IN.4.5 + +Insulation Measurement Test + +IN.4.5.1 The insulation resistance between the Tractive System and GLV System Ground will be +measured. +IN.4.5.2 The available measurement voltages are 250 V and 500 V. All vehicles with a maximum +nominal operation voltage below 500 V will be measured with the next available voltage level. +All teams with a system voltage of 500 V or more will be measured with 500 V. +IN.4.5.3 To pass the Insulation Measurement Test the measured insulation resistance must be +minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage. +IN.4.6 + +Ready to Drive Sound +The sound level will be measured with a free field microphone placed free from obstructions +in a radius of 2 m around the vehicle against the criteria in EV.9.6 + +IN.4.7 + +Electrical Inspection Completion + +IN.4.7.1 All or portions of the Tractive System, Charger and other components may be sealed IN.2.6 +IN.4.7.2 Additional monitoring to verify conformance to rules may be installed. Refer to the Event +Website for further information. +IN.4.7.3 A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle +may be Tractive System Active EV.9.4 +IN.4.7.4 Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection +before the vehicle may attempt any further Inspections. See EV.11.3.2 + +IN.5 + +DRIVER COCKPIT CHECKS +The Clearance Checks and Egress Test may be done separately or in conjunction with other +parts of Technical Inspection + +IN.5.1 + +Driver Clearance +Each driver in the normal driving position is checked for the three: + +IN.5.2 + +• + +Helmet clearance F.5.6.4 + +• + +Head Restraint positioning T.2.8.5 + +• + +Harness fit and adjustment T.2.5, T.2.6, T.2.7 + +Egress Test + +IN.5.2.1 Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 114 of 143 + + IN.5.2.2 The Egress Test will be conducted for each driver as follows: + +IN.5.3 + +a. + +The driver must wear the specified Driver Equipment VE.3.2, VE.3.3 + +b. + +Egress time begins with the driver in the fully seated position, with hands in driving +position on the connected steering wheel. + +c. + +Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown +Button EV.7.10.4 + +d. + +Egress time will stop when the driver has two feet on the pavement + +Driver Clearance and Egress Test Completion + +IN.5.3.1 To drive the vehicle, each team driver must: +a. + +Meet the Driver Clearance requirements IN.5.1 + +b. + +Successfully complete the Egress Test IN.5.2 + +IN.5.3.2 A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection + +IN.6 + +DRIVER TEMPLATE INSPECTIONS +The Driver Template Inspection will be conducted as part of the Mechanical Inspection + +IN.6.1 + +Conduct +The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6 + +IN.6.2 + +Driver Template Clearance Criteria +To pass Mechanical Technical Inspection, the Driver Template must meet the clearance +specified in F.5.6.4 + +IN.7 + +COCKPIT TEMPLATE INSPECTIONS +The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection + +IN.7.1 + +Conduct + +IN.7.1.1 The Cockpit Opening will be checked using the template and procedure given in T.1.1 +IN.7.1.2 The Internal Cross Section will be checked using the template and procedure given in T.1.2 +IN.7.2 + +Cockpit Template Criteria +To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described. + +IN.8 +IN.8.1 + +MECHANICAL TECHNICAL INSPECTION +Inspection Items +Bring these to Mechanical Technical Inspection: +• + +Vehicle on Dry Tires V.4.3.1 + +• + +Technical Inspection Form + +• + +Push Bar VE.2.2 + +• + +Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 + +• + +Monocoque Laminate Test Specimens (if applicable) F.4.2 + +• + +The Impact Attenuator that was tested (if applicable) F.8.8.7 + +• + +Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 115 of 143 + + • +IN.8.2 + +Electronic copies of any submitted Rules Questions with the received answer GR.7 + +Aerodynamic Devices Stability and Strength + +IN.8.2.1 Any Aerodynamic Devices may be checked by pushing on the device in any direction and at +any point. +This is guidance, but actual conformance will be up to technical inspectors at the respective +competitions. The intent is to reduce the likelihood of wings detaching +IN.8.2.2 If any deflection is significant, then a force of approximately 200 N may be applied. +a. + +Loaded deflection should not be more than 25 mm + +b. + +Any permanent deflection less than 5 mm + +IN.8.2.3 If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic +Devices, then officials may Black Flag the vehicle for IN.15 Reinspection. +IN.8.3 + +Monocoque Inspections + +IN.8.3.1 Dimensions of the Monocoque will be confirmed F.7.1.4 +IN.8.3.2 When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide: +a. + +Documentation that shows dimensions on the tubes + +b. + +Pictures of the dimensioned tube being included in the layup + +IN.8.3.3 For items which cannot be verified by an inspector, the team must provide documentation, +visual and/or written, that the requirements have been met. +IN.8.3.4 A team found to be improperly presenting any evidence of the manufacturing process may be +barred from competing with a monocoque. +IN.8.4 + +Engine Inspection (IC Only) +The organizer may measure or tear down engines to confirm conformance to the rules. + +IN.8.5 + +Mechanical Inspection Completion +All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any +further inspections. + +IN.9 +IN.9.1 + +IN.9.2 + +TILT TEST +Tilt Test Requirements +a. + +The vehicle must contain the maximum amount of fluids it may carry + +b. + +The tallest driver must be seated in the normal driving position + +c. + +Tilt tests may be conducted in one, the other, or the two directions to pass + +d. + +(IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and +pressure the system downstream of the High Pressure pump. See IC.6.2 + +Tilt Test Criteria + +IN.9.2.1 No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal +IN.9.2.2 Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g. +IN.9.3 + +Tilt Test Completion +Tilt Tests must be passed before a vehicle may attempt any further inspections + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 116 of 143 + + IN.10 NOISE AND SWITCH TEST (IC ONLY) +IN.10.1 + +Sound Level Measurement + +IN.10.1.1 The sound level will be measured during a stationary test, with the vehicle gearbox in neutral +at the defined Test Speed +IN.10.1.2 Measurements will be made with a free field microphone placed: + +IN.10.2 + +• + +free from obstructions + +• + +at the Exhaust Outlet vertical level IC.7.2.2 + +• + +0.5 m from the end of the Exhaust Outlet IC.7.2.2 + +• + +at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below) + +Special Configurations + +IN.10.2.1 Where the Exhaust has more than one Exhaust Outlet: +a. + +The noise test is repeated for each outlet + +b. + +The highest sound level is used + +IN.10.2.2 Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal +plane. +IN.10.2.3 If the exhaust has any form of active tuning or throttling device or system, the exhaust must +meet all requirements with the device or system in all positions. +IN.10.2.4 When the exhaust has a manually adjustable tuning device(s): + +IN.10.3 + +a. + +The position of the device must be visible to the officials for the noise test + +b. + +The device must be manually operable by the officials during the noise test + +c. + +The device must not be moved or modified after the noise test is passed + +Industrial Engine +An engine which, according to the manufacturers’ specifications and without the required +restrictor, is capable of producing 5 hp per 100 cc or less. +Submit a Rules Question to request approval of an Industrial Engine. + +IN.10.4 + +Test Speeds + +IN.10.4.1 Maximum Test Speed +The engine speed that corresponds to an average piston speed of: +a. + +Automotive / Motorcycle engines + +914.4 m/min (3,000 ft/min) + +b. + +Industrial Engines + +731.5 m/min (2,400 ft/min) + +The calculated speed will be rounded to the nearest 500 rpm. +Test Speeds for typical engines are published on the FSAE Online website +IN.10.4.2 Idle Test Speed +a. + +Determined by the vehicle’s calibrated idle speed + +b. + +If the idle speed varies then the vehicle will be tested across the range of idle speeds +determined by the team + +IN.10.4.3 The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 117 of 143 + + IN.10.5 + +IN.10.6 + +Maximum Permitted Sound Level +a. + +At idle + +103 dBC, fast weighting + +b. + +At all other speeds + +110 dBC, fast weighting + +Noise Level Retesting + +IN.10.6.1 Noise levels may be monitored at any time +IN.10.6.2 The Noise Test may be repeated at any time +IN.10.7 + +Switch Function +The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, +and/or BOTS T.3.3 will be verified during the Noise Test + +IN.10.8 + +Noise Test Completion +Noise Tests must be passed before a vehicle may attempt any further inspections + +IN.11 RAIN TEST (EV ONLY) +IN.11.1 + +IN.11.2 + +Rain Test Requirements +• + +Tractive System must be Active + +• + +The vehicle must not be in Ready to Drive mode (EV.7) + +• + +Any driven wheels must not touch the ground + +• + +A driver must not be seated in the vehicle + +Rain Test Conduct +The water spray will be rain like, not a direct high pressure water jet + +IN.11.3 + +a. + +Spray water at the vehicle from any possible direction for 120 seconds + +b. + +Stop the water spray + +c. + +Observe the vehicle for 120 seconds + +Rain Test Completion +The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire +240 seconds duration + +IN.12 BRAKE TEST +IN.12.1 + +Objective +The brake system will be dynamically tested and must demonstrate the capability of locking all +four wheels when stopping the vehicle in a straight line at the end of an acceleration run +specified by the brake inspectors + +IN.12.2 + +Brake Test Conduct (IC Only) + +IN.12.2.1 Brake Test procedure: +a. + +Accelerate to speed (typically getting into 2nd gear) until reaching the designated area + +b. + +Apply the brakes with force sufficient to demonstrate full lockup of all four wheels + +IN.12.2.2 The Brake Test passes if: +• + +All four wheels lock up + +• + +The engine stays running during the complete test + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 118 of 143 + + IN.12.3 + +Brake Test Conduct (EV Only) + +IN.12.3.1 Brake Test procedure: +a. + +Accelerate to speed until reaching the designated area + +b. + +Switch off the Tractive System EV.7.10.4 + +c. + +Apply the brakes with force sufficient to demonstrate full lockup of all four wheels + +IN.12.3.2 The Brake Test passes if all four wheels lock while the Tractive System is shut down +IN.12.3.3 The Tractive System Active Light may switch a short time after the vehicle has come to a +complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c + +IN.13 INSPECTION APPROVAL +IN.13.1 + +Inspection Approval + +IN.13.1.1 When all parts of Technical Inspection are complete as shown on the Technical Inspection +sheet, the vehicle receives Inspection Approval +IN.13.1.2 The completed Inspection Sticker shows the Inspection Approval +IN.13.1.3 The Inspection Approval is contingent on the vehicle remaining in the required condition +throughout the competition. +IN.13.1.4 The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any +time for any reason +IN.13.2 + +Inspection Sticker + +IN.13.2.1 Inspection Sticker(s) are issued after completion of all or part of Technical Inspection +IN.13.2.2 Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently +IN.13.3 + +Inspection Validity + +IN.13.3.1 Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or +are required to be Reinspected. +IN.13.3.2 Inspection Approval is valid only for the duration of the specific Formula SAE competition +during which the inspection is conducted. + +IN.14 MODIFICATIONS AND REPAIRS +IN.14.1 + +Prior to Inspection Approval +Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for +Technical Inspection, and until the vehicle has the full Inspection Approval, the only +modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the +Inspection Form. + +IN.14.2 + +After Inspection Approval + +IN.14.2.1 The vehicle must maintain all required specifications (including but not limited to ride height, +suspension travel, braking capacity (pad material/composition), sound level and wing location) +throughout the competition. +IN.14.2.2 Changes to fit the vehicle to different drivers are allowed. Permitted changes are: +• + +Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly + +• + +Substitution of the Head Restraint or seat insert + +• + +Adjustment of mirrors + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 119 of 143 + + IN.14.2.3 Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the +vehicle are: + +IN.14.3 + +• + +Adjustment of belts, chains and clutches + +• + +Adjustment of brake bias + +• + +Adjustment to engine / powertrain operating parameters, including fuel mixture and +ignition timing, and any software calibration changes + +• + +Adjustment of the suspension + +• + +Changing springs, sway bars and shims in the suspension + +• + +Adjustment of Tire Pressure, subject to V.4.3.4 + +• + +Adjustment of wing or wing element(s) angle, but not the location T.7.1 + +• + +Replenishment of fluids + +• + +Replacement of worn tires or brake pads. Replacement tires and brake pads must be +identical in material/composition/size to those presented and approved at Technical +Inspection. + +• + +Changing of wheels and tires for weather conditions D.6 + +• + +Recharging Low Voltage batteries + +• + +Recharging High Voltage Accumulators + +Repairs or Changes After Inspection Approval +The Inspection Approval may be voided for any reason including, but not limited to: +a. + +Damage to the vehicle IN.13.1.3 + +b. + +Changes beyond those allowed per IN.14.2 above + +IN.15 REINSPECTION +IN.15.1 + +Requirement + +IN.15.1.1 Any vehicle may be Reinspected at any time for any reason +IN.15.1.2 Reinspection must be completed to restore Inspection Approval, if voided +IN.15.2 + +Conduct + +IN.15.2.1 The Technical Inspection process may be repeated in entirety or in part +IN.15.2.2 Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector +IN.15.3 + +Result + +IN.15.3.1 With Voided Inspection Approval +Successful completion of Reinspection will restore Inspection Approval IN.13.1 +IN.15.3.2 During Dynamic Events +a. + +Issues found during Reinspection will void Inspection Approval + +b. + +Penalties may be applied to the Dynamic Events the vehicle has competed in +Applied penalties may include additional time added to event(s), loss of one or more +fastest runs, up to DQ, subject to official discretion. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 120 of 143 + + S - STATIC EVENTS +S.1 + +S.2 +S.2.1 + +GENERAL STATIC +Presentation + +75 points + +Cost + +100 points + +Design + +150 points + +Total + +325 points + +PRESENTATION EVENT +Presentation Event Objective +The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive +business, logistical, production, or technical case that will convince outside interests to invest +in the team’s concept. + +S.2.2 + +Presentation Concept + +S.2.2.1 + +The concept for the Presentation Event will be provided on the FSAE Online website. + +S.2.2.2 + +The concept for the Presentation Event may change for each competition + +S.2.2.3 + +The team presentation must meet the concept + +S.2.2.4 + +The team presentation must relate specifically to the vehicle as entered in the competition + +S.2.2.5 + +Teams should assume that the judges represent different areas, including engineering, +production, marketing and finance, and may not all be engineers. + +S.2.2.6 + +The presentation may be given in different settings, such as a conference room, a group +meeting, virtually, or in conjunction with other Static Events. +Specific details will be included in the Presentation Concept or communicated separately. + +S.2.3 + +Presentation Schedule +Teams that fail to make their presentation during their assigned time period get zero points +for the Presentation Event. + +S.2.4 + +Presentation Submissions + +S.2.4.1 + +The Presentation Concept may require information to be submitted prior to the event. +Specific details will be included in the Presentation Concept. + +S.2.4.2 + +Submissions may be graded as part of the Presentation Event score. + +S.2.4.3 + +Pre event submissions will be subject to penalties imposed as given in section DR - Document +Requirements or the Presentation Concept + +S.2.5 + +Presentation Format + +S.2.5.1 + +One or more team members will give the presentation to the judges. + +S.2.5.2 + +All team members who will give any part of the presentation, or who will respond to judges’ +questions must be: + +S.2.5.3 + +• + +In the presentation area when the presentation starts + +• + +Introduced and identified to the judges + +Presentations will be time limited. The judges will stop any presentation exceeding the time +limit. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 121 of 143 + + S.2.5.4 + +The presentation itself will not be interrupted by questions. Immediately after the +presentation there may be a question and answer session. + +S.2.5.5 + +Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions. + +S.2.6 + +Presentation Equipment +Refer to the Presentation Concept for additional information + +S.2.7 + +Evaluation Criteria + +S.2.7.1 + +Presentations will be evaluated on content, organization, visual aids, delivery and the team’s +response to the judges questions. + +S.2.7.2 + +The actual quality of the prototype itself will not be considered as part of the presentation +judging + +S.2.7.3 + +Presentation Judging Score Sheet – available at the FSAE Online website + +S.2.8 + +Judging Sequence +Presentation judging may be conducted in one or more phases. + +S.2.9 + +Presentation Event Scoring + +S.2.9.1 + +The Presentation raw score is based on the average of the scores of each judge. + +S.2.9.2 + +Presentation Event scores may range from 0 to 75 points, using a method at the discretion of +the judges + +S.2.9.3 + +Presentation Event scoring may include normalizing the scores of different judging teams and +scaling the overall results. + +S.3 +S.3.1 + +COST AND MANUFACTURING EVENT +Cost Event Objective +The Cost and Manufacturing Event evaluates the ability of the team to consider budget and +incorporate production considerations for production and efficiency. +Making tradeoff decisions between content and cost based on the performance of each part +and assembly and accounting for each part and process to meet a budget is part of Project +Management. + +S.3.2 + +Cost Event Supplement +a. + +Additional specific information on the Cost and Manufacturing Event, including +explanation and requirements, is provided in the Formula SAE Cost Event Supplement +document. + +b. + +Use the Formula SAE Cost Event Supplement to properly complete the requirements of +the Cost and Manufacturing Event. + +c. + +The Formula SAE Cost Event Supplement is available on the FSAE Online website + +S.3.3 + +Cost Event Areas + +S.3.3.1 + +Cost Report +Preparation and submission of a report (the “Cost Report”) + +S.3.3.2 + +Event Day Discussion +Discussion at the Competition with the Cost Judges around the team’s vehicle. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 122 of 143 + + S.3.3.3 + +Cost Scenario +Teams will respond to a challenge related to cost or manufacturing of the vehicle. + +S.3.4 + +Cost Report + +S.3.4.1 + +The Cost Report must: +a. + +List and cost each part on the vehicle using the standardized Cost Tables + +b. + +Base the cost on the actual manufacturing technique used on the prototype + +Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc. +c. + +Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it. + +d. + +Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools). + +e. + +Include supporting documentation to allow officials to verify part costing + +S.3.4.2 + +Generate and submit the Cost Report using the FSAE Online website, see DR - Document +Requirements + +S.3.5 + +Bill of Materials - BOM + +S.3.5.1 + +The BOM is a list of all vehicle parts, showing the relationships between the items. + +S.3.6 + +a. + +The overall vehicle is broken down into separate Systems + +b. + +Systems are made up of Assemblies + +c. + +Assemblies are made up of Parts + +d. + +Parts consist of Materials, Processes and Fasteners + +e. + +Tooling is associated with each Process that requires production tooling + +Late Submission +Penalties for Late Submission of Cost Report will be imposed as given in section DR Document Requirements. + +S.3.7 + +Cost Addendum + +S.3.7.1 + +A supplement to the Cost Report that reflects any changes or corrections made after the +submission of the Cost Report may be submitted. + +S.3.7.2 + +The Cost Addendum must be submitted during Onsite Registration at the Event. + +S.3.7.3 + +The Cost Addendum must follow the format as given in section DR - Document Requirements + +S.3.7.4 + +Addenda apply only to the competition at which they are submitted. + +S.3.7.5 + +A separate Cost Addendum may be submitted at each competition a vehicle attends. + +S.3.7.6 + +Changes to the Cost Report in the Cost Addendum will incur additional cost: +a. + +Added items will be cost at 125% of the table cost: + ++ (1.25 x Cost) + +b. + +Removed items will be credited 75% of the table cost: + +- (0.75 x Cost) + +S.3.8 + +Cost Tables + +S.3.8.1 + +All costs in the Cost Report must come from the standardized Cost Tables. + +S.3.8.2 + +If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add +Item Request must be submitted. See S.3.10 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 123 of 143 + + S.3.9 + +Make versus Buy + +S.3.9.1 + +Each part may be classified as Made or Bought +Refer to the Formula SAE Cost Event Supplement for additional information + +S.3.9.2 + +If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively +cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so. + +S.3.9.3 + +Any part which is normally purchased that is optionally shown as a Made part must have +supporting documentation submitted to prove team manufacture. + +S.3.9.4 + +Teams costing Bought parts as Made parts will be penalized. + +S.3.10 + +Add Item Request + +S.3.10.1 An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost +Tables for individual team requirements. +S.3.10.2 After review, the item may be added to the Cost Table with an appropriate cost. It will then +be available to all teams. +S.3.11 + +Public Cost Reports + +S.3.11.1 The competition organizers may publish all or part of the submitted Cost Reports. +S.3.11.2 Cost Reports for a given competition season will not be published before the end of the +calendar year. Support materials, such as technical drawings, will not be released. +S.3.12 + +Cost Report Penalties Process + +S.3.12.1 This procedure will be used in determining penalties: +a. + +Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions + +b. + +Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost +Additions + +c. + +The higher of the two penalties will be applied against the Cost Event score +• + +Penalty A expressed in points will be deducted from the Cost Event score + +• + +Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle + +S.3.12.2 Any error that results in a team over reporting a cost in their Cost Report will not be further +penalized. +S.3.12.3 Any instance where a team’s score benefits by an intentional or unintentional error on the +part of the students will be corrected on a case by case basis. +S.3.12.4 Penalty Method A - Fixed Point Deductions +a. + +From the Bill of Material, the Cost Judges will determine if all Parts and Processes have +been included in the analysis. + +b. + +In the case of any omission or error a penalty proportional to the BOM level of the error +will be imposed: + +c. + +• + +Missing/inaccurate Material, Process, Fastener + +1 point + +• + +Missing/inaccurate Part + +3 point + +• + +Missing/inaccurate Assembly + +5 point + +Each of the penalties listed above supersedes the previous penalty. + +Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 124 of 143 + + d. + +Differences other than those listed above will be deducted at the discretion of the Cost +Judges. + +S.3.12.5 Penalty Method B – Adjusted Cost Additions +a. + +The table cost for the missing or incomplete items will be calculated from the standard +Cost Tables. + +b. + +The penalty will be a value equal to twice the difference between the team cost and the +correct cost for all items in error. + +Penalty = 2 x (Table Cost – Team Reported Cost) +The table costs of all items in error are included in the calculation. A missing Assembly would +include the price of all Parts, Materials, Processes and Fasteners making up the Assembly. +S.3.13 + +Event Day and Discussion + +S.3.13.1 The team must present their vehicle at the designated time +S.3.13.2 The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during +Cost Event judging +S.3.13.3 Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging +S.3.13.4 The Cost Judges will: + +S.3.14 + +a. + +Review whether the Cost Report accurately reflects the vehicle as presented + +b. + +Review the manufacturing feasibility of the vehicle + +c. + +Assess supporting documentation based on its quality, accuracy and thoroughness + +d. + +Apply penalties for missing or incorrect information in the Cost Report compared to the +vehicle presented at inspection + +Cost Audit + +S.3.14.1 Teams may be selected for additional review to verify all processes and materials on their +vehicle are in the Cost Report +S.3.14.2 Adjustments from the Cost Audit will be included in the final scores +S.3.15 + +Cost Scenario +The Cost Scenario will be provided prior to the competition on the FSAE Online website +The Cost Scenario will include detailed information about the conduct, scope, and conditions +of the Cost Scenario + +S.3.16 + +Cost Event Scoring + +S.3.16.1 Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario +S.3.16.2 The Cost Event is worth 100 points +S.3.16.3 Cost Event Scores may be awarded in areas including, but not limited to: +• + +Price Score + +• + +Discussion Score + +• + +Scenario Score + +S.3.16.4 Penalty points may be subtracted from the Cost Score, with no limit. +S.3.16.5 Cost Event scoring may include normalizing the scores of different judging teams and scaling +the results. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 125 of 143 + + S.4 + +DESIGN EVENT + +S.4.1 + +Design Event Objective + +S.4.1.1 + +The Design Event evaluates the engineering effort that went into the vehicle and how the +engineering meets the intent of the market in terms of vehicle performance and overall value. + +S.4.1.2 + +The team and vehicle that illustrate the best use of engineering to meet the design goals, a +cost effective high performance vehicle, and the best understanding of the design by the team +members will win the Design Event. + +S.4.1.3 + +Components and systems that are incorporated into the design as finished items are not +evaluated as a student designed unit, but are assessed on the team’s selection and application +of that unit. + +S.4.2 + +Design Documents + +S.4.2.1 + +Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings + +S.4.2.2 + +These Design Documents will be used for: +• + +Design Judge reviews prior to the Design Event + +• + +Sorting teams into appropriate design groups based on the quality of their review. + +S.4.2.3 + +Penalties for Late Submission of all or any one of the Design Documents will be imposed as +given in section DR - Document Requirements + +S.4.2.4 + +Teams that submit one or more Design Documents which do not represent a serious effort to +comply with the requirements may be excluded from the Design Event or be awarded a lower +score. + +S.4.3 + +Design Briefing + +S.4.3.1 + +The Design Briefing must use the template from the FSAE Online website. + +S.4.3.2 + +Refer to the Design Briefing template for: +a. + +Specific content requirements, areas and details + +b. + +Maximum slides that may be used per topic + +S.4.3.3 + +Submit the Design Briefing as given in section DR - Document Requirements + +S.4.4 + +Vehicle Drawings + +S.4.4.1 + +The Vehicle Drawings must meet: +a. + +Three view line drawings showing the vehicle, from the front, top, and side + +b. + +Each drawing must appear on a separate page + +c. + +May be manually or computer generated + +S.4.4.2 + +Submit the Vehicle Drawings as given in section DR - Document Requirements + +S.4.5 + +Design Spec Sheet +Use the format provided and submit the Design Spec Sheet as given in section DR - Document +Requirements +The Design Judges realize that final design refinements and vehicle development may cause +the submitted values to differ from those of the completed vehicle. For specifications that are +subject to tuning, an anticipated range of values may be appropriate. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 126 of 143 + + S.4.6 + +Vehicle Condition + +S.4.6.1 + +Inspection Approval IN.13.1.1 is not required prior to Design judging. + +S.4.6.2 + +Vehicles must be presented for Design judging in finished condition, fully assembled, complete +and ready to run. +a. + +The judges will not evaluate any vehicle that is presented at the Design event in what +they consider to be an unfinished state. + +b. + +Point penalties may be assessed for vehicles with obvious preparation issues + +S.4.7 + +Support Material + +S.4.7.1 + +Teams may bring to Design Judging any photographs, drawings, plans, charts, example +components or other materials that they believe are needed to support the presentation of +the vehicle and the discussion of their development process. + +S.4.7.2 + +The available space in the Design Event judging area may be limited. + +S.4.8 + +Judging Sequence +Design judging may be conducted in one or more phases. +Typical Design judging includes a first round review of all teams, then additional review of +selected teams. + +S.4.9 + +Judging Criteria + +S.4.9.1 + +The Design Judges will: +a. + +Evaluate the engineering effort based upon the team’s Design Documents, discussion +with the team, and an inspection of the vehicle + +b. + +Inspect the vehicle to determine if the design concepts are adequate and appropriate for +the application (relative to the objectives stated in the rules). + +c. + +Deduct points if the team cannot adequately explain the engineering and construction of +the vehicle + +S.4.9.2 + +The Design Judges may assign a portion of the Design Event points to the Design Documents + +S.4.9.3 + +Design Judging Score Sheets are available at the FSAE Online website. + +S.4.10 + +Design Event Scoring + +S.4.10.1 Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge +S.4.10.2 Penalty points may be subtracted from the Design score +S.4.10.3 Vehicles that are excluded from Design judging or refused judging get zero points for Design, +and may receive penalty points. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 127 of 143 + + D - DYNAMIC EVENTS +D.1 +D.1.1 + +GENERAL DYNAMIC +Dynamic Events and Maximum Scores +Acceleration + +100 points + +Skid Pad + +75 points + +Autocross + +125 points + +Efficiency + +100 points + +Endurance + +275 points + +Total + +675 points + +D.1.2 + +Definitions + +D.1.2.1 + +Dynamic Area – Any designated portion(s) of the competition site where the vehicles may +move under their own power. This includes competition, inspection and practice areas. + +D.1.2.2 + +Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the +purpose of gathering those vehicles that are about to start. + +D.2 + +PIT AND PADDOCK + +D.2.1 + +Vehicle Movement + +D.2.1.1 + +Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the +Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside + +D.2.1.2 + +The team may move the vehicle with +a. + +All four wheels on the ground + +b. + +The rear wheels supported on dollies, by push bar mounted wheels +The external wheels supporting the rear of the vehicle must be non pivoting so the +vehicle travels only where the front wheels are steered. The driver must always be able +to steer and brake the vehicle normally. + +D.2.1.3 + +When the Push Bar is attached, the engine must stay off, unless authorized by the officials + +D.2.1.4 + +Vehicles must be Shutdown when being moved around the paddock + +D.2.1.5 + +Vehicles with wings must have two team members, one walking on each side of the vehicle +when the vehicle is being pushed + +D.2.1.6 + +A 25 point penalty may be assessed for each violation + +D.2.2 + +Fueling and Charging +(IC only) Officials must conduct all fueling activities in the designated location. +(EV only) Accumulator charging must be done in the designated location EV.11.5 + +D.2.3 + +Powertrain Operation +In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three: +a. + +(IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR +a Technical Inspector gives permission +(EV only) The vehicle shows the OK to Energize sticker IN.4.7.3 + +b. + +The vehicle is supported on a stand + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 128 of 143 + + c. + +D.3 +D.3.1 + +The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed + +DRIVING +Drivers Meetings – Attendance Required +All drivers for an event must attend the drivers meeting(s). The driver for an event will be +disqualified if he/she does not attend the driver meeting for the event. + +D.3.2 + +Dynamic Area Limitations +Refer to the Event Website for specific information + +D.3.2.1 + +The organizer may specify restrictions for the Dynamic Area. These could include limiting the +number of team members and what may be brought into the area. + +D.3.2.2 + +The organizer may specify additional restrictions for the Staging Area. These could include +limiting the number of team members and what may be brought into the area. + +D.3.2.3 + +The organizer may establish requirements for persons in the Dynamic Area, such as closed toe +shoes or long pants. + +D.3.3 + +Driving Under Power + +D.3.3.1 + +Vehicles must move under their own power only when inside the designated Dynamic Area(s), +unless otherwise directed by the officials. + +D.3.3.2 + +Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point +penalty for the first violation and disqualification for a second violation. + +D.3.4 + +Driving Offsite - Prohibited +Teams found to have driven their vehicle at an offsite location during the period of the +competition will be excluded from the competition. + +D.3.5 + +Driver Equipment + +D.3.5.1 + +All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with: +a. + +(IC) Engine running or (EV) Tractive System Active + +b. + +Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run. + +D.3.5.2 + +Removal of any Driver Equipment during a Dynamic event will result in Disqualification. + +D.3.6 + +Starting +Auxiliary batteries must not be used once a vehicle has moved to the starting line of any +event. See IC.8.1 + +D.3.7 + +Practice Area + +D.3.7.1 + +A practice area for testing and tuning may be available + +D.3.7.2 + +The practice area will be controlled and may only be used during the scheduled times + +D.3.7.3 + +Vehicles using the practice area must have a complete Inspection Sticker + +D.3.8 + +Instructions from Officials +Obey flags and hand signals from course marshals and officials immediately + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 129 of 143 + + D.3.9 + +Vehicle Integrity +Officials may revoke the Inspection Approval for any vehicle condition that could compromise +vehicle integrity, compromise the track surface, or pose a potential hazard. +This could result in DNF or DQ of any Dynamic event. + +D.3.10 + +Stalled & Disabled Vehicles + +D.3.10.1 If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to +complete the run, it will be scored DNF for that run +D.3.10.2 Disabled vehicles will be cleared from the track by the track workers. + +D.4 + +FLAGS +Any specific variations will be addressed at the drivers meeting. + +D.4.1 + +Command Flags + +D.4.1.1 + +Any Command Flag must be obeyed immediately and without question. + +D.4.1.2 + +Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time +penalty may be assessed. + +D.4.1.3 + +Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, +something has been observed that needs closer inspection. + +D.4.1.4 + +Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the +corner workers signals at the end of the passing zone to merge into competition. + +D.4.1.5 + +Checkered Flag - Run has been completed. Exit the course at the designated point. + +D.4.1.6 + +Green Flag – Approval to begin your run, enter the course under direction of the starter. If +you stall the vehicle, please restart and await another Green Flag + +D.4.1.7 + +Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the +course as much as possible to keep the course open. Follow corner worker directions. + +D.4.1.8 + +Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, +something has happened beyond the flag station. NO PASSING unless directed by the corner +workers. + +D.4.1.9 + +Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE +PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless +directed by the corner workers. + +D.4.2 + +Informational Flags + +D.4.2.1 + +An Information Flag communicates to the driver, but requires no specific action. + +D.4.2.2 + +Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be +prepared for evasive maneuvers. + +D.4.2.3 + +White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a +cautious rate. + +D.5 + +WEATHER CONDITIONS + +D.5.1 + +Operating Adjustments + +D.5.1.1 + +The organizer may alter the conduct and scoring of the competition based on weather +conditions. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 130 of 143 + + D.5.1.2 + +No adjustments will be made to times for running in differing Operating Conditions. + +D.5.1.3 + +The minimum performance levels to score points may be adjusted by the Officials. + +D.5.2 + +Operating Conditions + +D.5.2.1 + +These operating conditions will be recognized: +• + +Dry + +• + +Damp + +• + +Wet + +D.5.2.2 + +The current operating condition will be decided by the Officials and may change at any time. + +D.5.2.3 + +The current operating condition will be prominently displayed at the Dynamic Area, and may +be communicated by other means. + +D.6 + +TIRES AND TIRE CHANGES + +D.6.1 + +Tire Requirements + +D.6.1.1 + +Teams must run the tires allowed for each Operating Condition: + +D.6.1.2 + +Operating Condition +Tires Allowed +Dry +Dry ( V.4.3.1 ) +Damp +Dry or Wet +Wet +Wet ( V.4.3.2 ) +When the operating condition is Damp, teams may change between Dry Tires and Wet Tires: +a. + +Any time during the Acceleration, Skidpad, and Autocross Events + +b. + +Any time before starting their Endurance Event + +D.6.2 + +Tire Changes during Endurance + +D.6.2.1 + +All tire changes after a vehicle has received the Green flag to start the Endurance Event must +occur in the Driver Change Area + +D.6.2.2 + +If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or +vehicles will be Black Flagged and brought into the Driver Change Area + +D.6.2.3 + +The allowed tire changes and associated conditions are given in these tables. +Existing +Operating +Condition +Dry +Damp +Damp +Wet + +Currently +Running on: +Dry Tires +Dry Tires +Wet Tires +Wet Tires + +Operating Condition Changed to: +Dry + +Damp + +Wet + +ok +ok +C +C + +A +A +C +C + +B +B +ok +ok + +Requirement +A +B +C +D.6.2.4 + +may change from Dry to Wet +MUST change from Dry to Wet +may change from Wet to Dry + +Allowed at +Driver Change? +Yes +Yes +NO + +Time allowed to change tires: + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 131 of 143 + + D.6.2.5 + +a. + +Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 +minutes with Driver Change, will be added to the team's total time for Endurance + +b. + +Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s +total time for Endurance + +If the vehicle has a tire puncture, +a. + +The wheel and tire may be replaced with an identical wheel and tire + +b. + +When the puncture is caused by track debris and not a result of component failure or the +vehicle itself, the tire change time will not count towards the team’s total time. + +D.7 + +DRIVER LIMITATIONS + +D.7.1 + +Three Event Limit + +D.7.1.1 + +An individual team member may not drive in more than three events. + +D.7.1.2 + +The Efficiency Event is considered a separate event although it is conducted simultaneously +with the Endurance Event. +A minimum of four drivers are required to participate in all of the dynamic events. + +D.8 +D.8.1.1 + +DEFINITIONS +DOO - Cone is Down or Out when one or the two: +a. + +Cone has been knocked over (Down) + +b. + +The entire base of the cone lies outside the box marked around the cone in its +undisturbed position (Out) + +D.8.1.2 + +DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed +to complete it + +D.8.1.3 + +DQ - Disqualified - run(s) or event(s) no longer valid + +D.8.1.4 + +Gate - The path between two cones through which the vehicle must pass. Two cones, one on +each side of the course define a gate. Two sequential cones in a slalom define a gate. + +D.8.1.5 + +Entry Gate -The path marked by cones which establishes the required path the vehicle must +take to enter the course. + +D.8.1.6 + +Exit Gate - The path marked by cones which establishes the required path the vehicle must +take to exit the course. + +D.8.1.7 + +OC – Off Course +a. + +The vehicle did not pass through a gate in the required direction. + +b. + +The vehicle has all four wheels outside the course boundary as indicated by cones, edge +marking or the edge of the paved surface. + +Where more than one boundary indicator is used on the same course, the narrowest track will +be used when determining Off Course penalties. + +D.9 + +ACCELERATION EVENT +The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement. + +D.9.1 + +Acceleration Layout + +D.9.1.1 + +Course length will be 75 m from starting line to finish line + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 132 of 143 + + D.9.1.2 + +Course width will be minimum 4.9 m wide as measured between the inner edges of the bases +of the course edge cones + +D.9.1.3 + +Cones are put along the course edges at intervals, approximately 6 m + +D.9.1.4 + +Cone locations are not marked on the pavement + +D.9.2 + +Acceleration Procedure + +D.9.2.1 + +Each team may attempt up to four runs, using two drivers, limited to two runs for each driver + +D.9.2.2 + +Runs with the first driver have priority + +D.9.2.3 + +Each Acceleration run is done as follows: +a. + +The foremost part of the vehicle will be staged at 0.30 m behind the starting line + +b. + +A Green Flag or light signal will give the approval to begin the run + +c. + +Timing starts when the vehicle crosses the starting line + +d. + +Timing ends when the vehicle crosses the finish line + +D.9.2.4 + +Each driver may go to the front of the staging line immediately after their first run to make a +second run + +D.9.3 + +Acceleration Penalties + +D.9.3.1 + +Cones (DOO) +Two second penalty for each DOO (including entry and exit gate cones) on that run + +D.9.3.2 + +Off Course (OC) +DNF for that run + +D.9.4 + +Acceleration Scoring + +D.9.4.1 + +Scoring Term Definitions: + +D.9.4.2 + +• + +Corrected Time = Acceleration Run Time + ( DOO * 2 ) + +• + +Tyour - the best Corrected Time for the team + +• + +Tmin - the lowest Corrected Time recorded for any team + +• + +Tmax - 150% of Tmin + +When Tyour < Tmax. the team score is calculated as: +Acceleration Score = + +95.5 x + +( Tmax / Tyour ) -1 + ++ 4.5 + +( Tmax / Tmin ) -1 +D.9.4.3 + +D.10 + +When Tyour > Tmax , Acceleration Score = 4.5 + +SKIDPAD EVENT +The Skidpad event measures the vehicle cornering ability on a flat surface while making a +constant radius turn. + +D.10.1 + +Skidpad Layout + +D.10.1.1 Course Design +• + +Two pairs of concentric circles in a figure of eight pattern + +• + +Centers of the circles + +18.25 m apart + +• + +Inner circles + +15.25 m in diameter + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 133 of 143 + + • + +Outer circles + +21.25 m in diameter + +• + +Driving path + +the 3.0 m wide path between the inner and outer circles + +D.10.1.2 Cone Placement +a. + +Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) +pylons will be positioned around the outside of each outer circle in the pattern shown in +the Skidpad layout diagram + +b. + +Each circle will be marked with a chalk line, inside the inner circle and outside the outer +circle + +The Skidpad layout diagram shows the circles for cone placement, not for course marking. +Chalk lines are marked on the opposite side of the cones, outside the driving path +c. + +Additional pylons will establish the entry and exit gates + +d. + +A cone may be put in the middle of the exit gate until the finish lap + +D.10.1.3 Course Operation + +D.10.2 + +a. + +Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the +circles where they meet. + +b. + +The line between the centers of the circles defines the start/stop line. + +c. + +A lap is defined as traveling around one of the circles from the start/stop line and +returning to the start/stop line. + +Skidpad Procedure + +D.10.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver. +D.10.2.2 Runs with the first driver have priority +D.10.2.3 Each Skidpad run is done as follows: +a. + +A Green Flag or light signal will give the approval to begin the run + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 134 of 143 + + b. + +The vehicle will enter perpendicular to the figure eight and will take one full lap on the +right circle + +c. + +The next lap will be on the right circle and will be timed + +d. + +Immediately after the second lap, the vehicle will enter the left circle for the third lap + +e. + +The fourth lap will be on the left circle and will be timed + +f. + +Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the +intersection moving in the same direction as entered + +D.10.2.4 Each driver may go to the front of the staging line immediately after their first run to make a +second run +D.10.3 + +Skidpad Penalties + +D.10.3.1 Cones (DOO) +A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run +D.10.3.2 Off Course (OC) +DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off +Course. +D.10.3.3 Incorrect Laps +Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be +DNF for that run. +D.10.4 + +Skidpad Scoring + +D.10.4.1 Scoring Term Definitions +• + +Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) + +• + +Tyour - the best Corrected Time for the team + +• + +Tmin - is the lowest Corrected Time recorded for any team + +• + +Tmax - 125% of Tmin + +D.10.4.2 When Tyour < Tmax. the team score is calculated as: +Skidpad Score = + +71.5 x + +( Tmax / Tyour )2 -1 + ++ 3.5 + +( Tmax / Tmin )2 -1 +D.10.4.3 When Tyour > Tmax , Skidpad Score = 3.5 + +D.11 + +AUTOCROSS EVENT +The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight +course + +D.11.1 + +Autocross Layout + +D.11.1.1 The Autocross course will be designed with these specifications. Average speeds should be 40 +km/hr to 48 km/hr +a. + +Straights: No longer than 60 m with hairpins at the two ends + +b. + +Straights: No longer than 45 m with wide turns on the ends + +c. + +Constant Turns: 23 m to 45 m diameter + +d. + +Hairpin Turns: 9 m minimum outside diameter (of the turn) + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 135 of 143 + + e. + +Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing + +f. + +Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. + +g. + +Minimum track width: 3.5 m + +h. + +Length of each run should be approximately 0.80 km + +D.11.1.2 The Autocross course specifications may deviate from the above to accommodate event site +requirements. +D.11.2 + +Autocross Procedure + +D.11.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver +D.11.2.2 Runs with the first driver have priority +D.11.2.3 Each Autocross run is done as follows: +a. + +The vehicle will be staged at a specific distance behind the starting line + +b. + +A Green Flag or light signal will give the approval to begin the run + +c. + +Timing starts when the vehicle crosses the starting line + +d. + +Timing ends when the vehicle crosses the finish line + +D.11.2.4 Each driver may go to the front of the staging line immediately after their first run to make a +second run +D.11.3 + +Autocross Penalties + +D.11.3.1 Cones (DOO) +Two second penalty for each DOO (including cones after the finish line) on that run +D.11.3.2 Off Course (OC) +a. + +When an OC occurs, the driver must reenter the track at or prior to the point of exit or +receive a 20 second penalty + +b. + +Penalties will not be assessed to bypass an accident or other reasons at the discretion of +track officials. + +D.11.3.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one Off Course +D.11.4 + +Autocross Scoring + +D.11.4.1 Scoring Term Definitions: +• + +Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) + +• + +Tyour - the best Corrected Time for the team + +• + +Tmin - the lowest Corrected Time recorded for any team + +• + +Tmax - 145% of Tmin + +D.11.4.2 When Tyour < Tmax. the team score is calculated as: +Autocross Score = + +118.5 x + +( Tmax / Tyour ) -1 + ++ 6.5 + +( Tmax / Tmin ) -1 +D.11.4.3 When Tyour > Tmax , Autocross Score = 6.5 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 136 of 143 + + D.12 + +ENDURANCE EVENT +The Endurance event evaluates the overall performance of the vehicle and tests the durability +and reliability. + +D.12.1 + +Endurance General Information + +D.12.1.1 The organizer may establish one or more requirements to allow teams to compete in the +Endurance event. +D.12.1.2 Each team may attempt the Endurance event once. +D.12.1.3 The Endurance event consists of two Endurance runs, each using a different driver, with a +Driver Change between. +D.12.1.4 Teams may not work on their vehicles once their Endurance event has started +D.12.1.5 Multiple vehicles may be on the track at the same time +D.12.1.6 Wheel to Wheel racing is prohibited. +D.12.1.7 Vehicles must not be driven in reverse +D.12.2 + +Endurance Layout + +D.12.2.1 The Endurance event will consist of multiple laps over a closed course to a total distance of +approximately 22 km. +D.12.2.2 The Endurance course will be designed with these specifications. Average speed should be 48 +km/hr to 57 km/hr with top speeds of approximately 105 km/hr. +a. + +Straights: No longer than 77 m with hairpins at the two ends + +b. + +Straights: No longer than 61 m with wide turns on the ends + +c. + +Constant Turns: 30 m to 54 m diameter + +d. + +Hairpin Turns: 9 m minimum outside diameter (of the turn) + +e. + +Slaloms: Cones in a straight line with 9 m to 15 m spacing + +f. + +Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. + +g. + +Minimum track width: 4.5 m + +h. + +Designated passing zones at several locations + +D.12.2.3 The Endurance course specifications may deviate from the above to accommodate event site +requirements. +D.12.3 + +Endurance Run Order +The Endurance Run Order is established to let vehicles of similar speed potential be on track +together to reduce the need for passing. + +D.12.3.1 The Endurance Run Order: +a. + +Should be primarily based on the Autocross event finish order + +b. + +Should include the teams eligible for Endurance which did not compete in the Autocross +event. + +c. + +May be altered by the organizer to accommodate specific circumstances or event +considerations + +D.12.3.2 Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line +and prepared to start when their turn to run arrives. + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 137 of 143 + + D.12.4 + +Endurance Vehicle Starting / Restarting + +D.12.4.1 Teams that are not ready to run or cannot start their Endurance event in the allowed time +when their turn in the Run Order arrives: +a. + +Get a time penalty (D.12.12.5) + +b. + +May then run at the discretion of the Officials + +D.12.4.2 After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) +restart the engine or to (EV) enter Ready to Drive EV.9.5 +a. + +The time will start when the driver first tries to restart the engine or to enable the +Tractive System + +b. + +The time to attempt start / restart is not counted towards the Endurance time + +D.12.4.3 If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it +(approximately 60 seconds) to restart. This time counts toward the Endurance time. +D.12.4.4 If starts / restarts are not accomplished in the above times, the vehicle may be DNF. +D.12.5 + +Endurance Event Procedure + +D.12.5.1 Vehicles will be staged per the Endurance Run Order +D.12.5.2 Endurance Event sequence: +a. + +The first driver will do an Endurance Run per D.12.6 below + +b. + +The Driver Change must then be done per D.12.8 below + +c. + +The second driver will do an Endurance Run per D.12.6 below + +D.12.5.3 The Endurance Event is complete when the two: + +D.12.6 + +• + +The team has completed the specified number of laps + +• + +The second driver crosses the finish line + +Endurance Run Procedure + +D.12.6.1 A Green Flag or light signal will give the approval to begin the run +D.12.6.2 The driver will drive approximately half of the Endurance distance +D.12.6.3 A Checkered Flag will be displayed +D.12.6.4 The vehicle must exit the track into the Driver Change Area +D.12.7 + +Driver Change Limitations + +D.12.7.1 The team may bring only these items into the Driver Change Area: +a. + +Three team members, including the driver or drivers + +b. + +(EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers. + +c. + +Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires +Team members may only carry tools by hand (no carts, tool chests etc) + +d. + +Each extra person entering the Driver Change Area: 20 point penalty + +D.12.7.2 The only work permitted during Driver Change is: +a. + +Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons +EV.7.10 + +b. + +Adjustments to fit the driver IN.14.2.2 + +c. + +Tire changes per D.6.2 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 138 of 143 + + D.12.8 + +Driver Change Procedure + +D.12.8.1 The Driver Change will be done in this sequence: +a. + +Vehicle will stop in Driver Change Area + +b. + +First Driver turns off the engine / Tractive System. Driver Change time starts. + +c. + +First Driver exits the vehicle + +d. + +Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2 + +e. + +Second Driver is secured in the vehicle + +f. + +Second Driver is ready to start the engine / enable the Tractive System. Driver Change +time stops. + +g. + +Second Driver receives permission to continue + +h. + +The vehicle engine is started or Tractive System enabled. See D.12.4 + +i. + +The vehicle stages to go back onto course, at the direction of the event officials + +D.12.8.2 Three minutes are allowed for the team to complete the Driver Change +a. + +Any additional time for inspection of the vehicle and the Driver Equipment is not +included in the Driver Change time + +b. + +Time in excess of the allowed will be added to the team Endurance time + +D.12.8.3 The Driver Change Area will be in a location where the timing system will see the Driver +Change as a long lap which will be deleted from the total time +D.12.9 + +Breakdowns & Stalls + +D.12.9.1 If a vehicle breaks down or cannot restart, it will be removed from the course by track workers +and scored DNF +D.12.9.2 If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 +and D.12.4 +D.12.10 Endurance Event – Black Flags +D.12.10.1 A Black Flag will be shown at the designated location +D.12.10.2 The vehicle must pull into the Driver Change Area at the first opportunity +D.12.10.3 The amount of time spent in the Driver Change Area is at the discretion of the officials. +D.12.10.4 Driving Black Flag +a. + +May be shown for any reason such as aggressive driving, failing to obey signals, not +yielding for passing, not driving inside the designated course, etc. + +b. + +Course officials will discuss the situation with the driver + +c. + +The time spent in Black Flag or a time penalty may be included in the Endurance Run +time. + +d. + +If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or +during post event review, officials may impose a penalty D.14.2 + +D.12.10.5 Mechanical Black Flag +a. + +May be shown for any reason to question the vehicle condition + +b. + +Time spent off track is not included in the Endurance Run time. + +D.12.10.6 Based on the inspection or discussion during a Black Flag period, the vehicle may not be +allowed to continue the Endurance Run and will be scored DNF +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 139 of 143 + + D.12.11 Endurance Event – Passing +D.12.11.1 Passing during Endurance may only be done in the designated passing zones, under the +control of the track officials. +D.12.11.2 Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and +a fast lane for vehicles that are making a pass. +D.12.11.3 When a pass is to be made: +a. + +A slower leading vehicle gets a Blue Flag + +b. + +The slower vehicle must move into the slow lane and decelerate + +c. + +The faster vehicle will continue in the fast lane and make the pass + +d. + +The vehicle that had been passed may reenter traffic only under the control of the +passing zone exit flag + +D.12.11.4 Passing rules do not apply to vehicles that are passing disabled vehicles on the course or +vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, +slow down, drive cautiously and be aware of all the vehicles and track workers in the area. +D.12.12 Endurance Penalties +D.12.12.1 Cones (DOO) +Two second penalty for each DOO (including cones after the finish line) on that run +D.12.12.2 Off Course (OC) +a. + +When an OC occurs, the driver must reenter the track at or prior to the point of exit or +receive a 20 second penalty + +b. + +Penalties will not be assessed to bypass an accident or other reasons at the discretion of +track officials. + +D.12.12.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one Off Course +D.12.12.4 Penalties for Moving or Post Event Violations +a. + +Black Flag penalties per D.12.10, if applicable + +b. + +Post Event Inspection penalties per D.14.2, if applicable + +D.12.12.5 Endurance Starting (D.12.4.1) +Two minutes (120 seconds) penalty +D.12.12.6 Vehicle Operation +The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for +any reason including driver inexperience or mechanical problems, it is too slow or being +driven in a manner that demonstrates an inability to properly control. +D.12.13 Endurance Scoring +D.12.13.1 Scoring Term Definitions: +• + +Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, +minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 + +• + +Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) + +• + +Tyour - the Corrected Time for the team + +• + +Tmin - the lowest Corrected Time recorded for any team + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 140 of 143 + + • + +Tmax - 145% of Tmin + +D.12.13.2 The vehicle must complete the Endurance Event to receive a score based on their Corrected +Time +a. + +If Tyour < Tmax, the team score is calculated as: +Endurance Time Score = + +250 x + +( Tmax / Tyour ) -1 +( Tmax / Tmin ) -1 + +b. + +If Tyour > Tmax, Endurance Time Score = 0 + +D.12.13.3 The vehicle receives points based on the laps and/or parts of Endurance completed. +The Endurance Laps Score is worth up to 25 points +D.12.13.4 The Endurance Score is calculated as: +Endurance Score = Endurance Time Score + Endurance Laps Score + +D.13 + +EFFICIENCY EVENT +The Efficiency event evaluates the fuel/energy used to complete the Endurance event + +D.13.1 + +Efficiency General Information + +D.13.1.1 The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap +time on the endurance course, averaged over the length of the event. +D.13.1.2 The Efficiency score is based only on the distance the vehicle runs on the course during the +Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy +will be made. +D.13.2 + +Efficiency Procedure + +D.13.2.1 For IC vehicles: +a. + +The fuel tank must be filled to the fuel level line (IC.5.4.5) + +b. + +During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, +or the entire vehicle is allowed. + +D.13.2.2 (EV only) The vehicle may be fully charged +D.13.2.3 The vehicle will then compete in the Endurance event, refer to D.12.5 +D.13.2.4 Vehicles must power down after leaving the course and be pushed to the fueling station or +data download area +D.13.2.5 For Internal Combustion vehicles (IC): +a. + +The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. +IC.5.5.1 + +b. + +If the fuel level changes after refuelling: + +c. + +• + +Additional fuel will be added to return the fuel tank level to the fuel level line. + +• + +Twice this amount will be added to the previously measured fuel consumption + +If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the +Fuel Tank will not be refilled D.13.3.4 + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 141 of 143 + + D.13.2.6 For Electric Vehicles (EV): + +D.13.3 + +a. + +Energy Meter data must be downloaded to measure energy used and check for +Violations EV.3.3 + +b. + +Penalties will be applied per EV.3.5 and/or D.13.3.4 + +Efficiency Eligibility + +D.13.3.1 Maximum Time +Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance +laptime of the fastest team that completes the Endurance event get zero points +D.13.3.2 Maximum Fuel/Energy Used +Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap +exceeds the values in D.13.4.5 get zero points +D.13.3.3 Partial Completion of Endurance +a. + +Vehicles which cross the start line after Driver Change are eligible for Efficiency points + +b. + +Other vehicles get zero points + +D.13.3.4 Cannot Measure Fuel/Energy Used +The vehicle gets zero points +D.13.4 + +Efficiency Scoring + +D.13.4.1 Conversion Factors +Each fuel or energy used is converted using the factors: +a. + +Gasoline / Petrol + +2.31 kg of CO2 per liter + +b. + +E85 + +1.65 kg of CO2 per liter + +c. + +Electric + +0.65 kg of CO2 per kWh + +D.13.4.2 (EV only) Full credit is given for energy recovered through regenerative braking +D.13.4.3 Scoring Term Definitions: +• + +CO2 min - the smallest mass of CO2 used by any competitor who is eligible for Efficiency + +• + +CO2 your - the mass of CO2 used by the team being scored + +• + +Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency + +• + +Tyour - same as Endurance (D.12.13.1) + +• + +Lapyours - the number of laps driven by the team being scored + +• + +Laptotal Tmin and Latptotal CO2 min - be the number of laps completed by the teams +which set Tmin and CO2min, respectively + +D.13.4.4 The Efficiency Factor is calculated by: +Efficiency Factor = + +Tmin / LapTotal Tmin + +X + +CO2 min / LapTotal CO2 min + +Tyours / Lap yours +CO2 your / Lap yours +D.13.4.5 EfficiencyFactor min is calculated using the above formula with: +• + +CO2 your + +(IC) equivalent to 60.06 kg CO2/100km (based on gasoline 26 ltr/100km) + +• + +CO2 your + +(EV) equivalent to 20.02 kg CO2/100km + +• + +Tyour + +1.45 times Tmin + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 142 of 143 + + D.13.4.6 When the team is eligible for Efficiency. the team score is calculated as: +Efficiency Score = + +D.14 +D.14.1 + +100 x + +Efficiency Factor your - Efficiency Factor min +Efficiency Factor max - Efficiency Factor min + +POST ENDURANCE +Technical Inspection Required + +D.14.1.1 After Endurance and refuelling are completed, all vehicles must report to Technical Inspection. +D.14.1.2 Vehicles may then be subject to IN.15 Reinspection +D.14.2 + +Post Endurance Penalties + +D.14.2.1 Penalties may be applied to the Endurance and/or Efficiency events based on: +a. + +Infractions or issues during the Endurance Event (including D.12.10.4.d) + +b. + +Post Endurance Technical Inspection + +c. + +(EV only) Energy Meter violations EV.3.3, EV.3.5.2 + +D.14.2.2 Any imposed penalty will be at the discretion of the officials. +D.14.3 + +Post Endurance Penalty Guidelines + +D.14.3.1 One or more minor violations (rules compliance, but no advantage to team): 15-30 sec +D.14.3.2 Violation which is a potential or actual performance advantage to team: 120-360 sec +D.14.3.3 Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ +D.14.3.4 Team may be DNF or DQ for: +a. + +Multiple violations involving safety, environment, or performance advantage + +b. + +A single substantial violation + +Formula SAE® Rules 2025 +Version 1.0 31 Aug 2024 + +© 2024 SAE International + +Page 143 of 143 + + \ No newline at end of file diff --git a/scripts/document-parser/tsconfig.json b/scripts/document-parser/tsconfig.json new file mode 100644 index 0000000000..726fac52e0 --- /dev/null +++ b/scripts/document-parser/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "target": "es2020", + "module": "commonjs", + "lib": ["es2020"], + "outDir": "./dist", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true + }, + "ts-node": { + "esm": false + } +} \ No newline at end of file From 90198448f3a6ff4393182702e87bd0c901ffe9f8 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Sun, 5 Oct 2025 22:54:34 -0400 Subject: [PATCH 02/25] clean code + lettered bullets create new subrules --- scripts/document-parser/FSAEparser.ts | 254 +- scripts/document-parser/fsae_rules.json | 13249 ++++++++++----- .../ruleDocs/txtVersions/FSAE.txt | 14043 ---------------- .../{ruleDocs => }/txtVersions/FHE.txt | 0 scripts/document-parser/txtVersions/FSAE.txt | 6034 +++++++ 5 files changed, 14842 insertions(+), 18738 deletions(-) delete mode 100644 scripts/document-parser/ruleDocs/txtVersions/FSAE.txt rename scripts/document-parser/{ruleDocs => }/txtVersions/FHE.txt (100%) create mode 100644 scripts/document-parser/txtVersions/FSAE.txt diff --git a/scripts/document-parser/FSAEparser.ts b/scripts/document-parser/FSAEparser.ts index 97b9d2740b..f4fc8068f9 100644 --- a/scripts/document-parser/FSAEparser.ts +++ b/scripts/document-parser/FSAEparser.ts @@ -6,164 +6,175 @@ interface RuleData { ruleContent: string; parentRuleCode?: string; pageNumber: string; - isFromTOC?: boolean; } -interface RuleMatch { - code: string; - text: string; +interface Rule { + ruleCode: string; + ruleContent: string; } interface ParsedOutput { rules: RuleData[]; totalRules: number; - totalTOCRules: number; generatedAt: string; } class FSAERuleParser { - async parsePdf(path: string): Promise<{ rules: RuleData[] }> { + async parsePdf(path: string): Promise<{ rules: RuleData[]; text: string }> { const filePath = "ruleDocs/" + path; - console.log(`Reading PDF: ${filePath}`); + console.log(`Reading ${filePath}`); const dataBuffer = fs.readFileSync(filePath); const pdfData = await pdf(dataBuffer); console.log(`PDF Stats: ${pdfData.numpages} pages, ${pdfData.text.length} characters`); - const rules = this.extractRules(pdfData.text); - const tocRules = rules.filter(r => r.isFromTOC); - console.log(`Found ${rules.length} total rules (${tocRules.length} from TOC, ${rules.length - tocRules.length} with full content)`); - - return { rules }; + const rules = this.extractRules(pdfData.text); + return { rules, text: pdfData.text }; } private extractRules(text: string): RuleData[] { const rules: RuleData[] = []; const lines = text.split('\n'); - console.log(`Scanning ${lines.length} lines for rules and TOC entries...`); - - let currentRule: { code: string; text: string; pageNumber: string; isFromTOC: boolean } | null = null; + let currentRule: { code: string; text: string; pageNumber: string } | null = null; let currentPageNumber = '1'; - - for (let i = 0; i < lines.length; i++) { - const line = lines[i].trim(); - - if (!line) continue; - - // Check for page number indicators - const pageMatch = this.extractPageNumber(line); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - - // Check if this is a TOC entry first - const tocEntry = this.parseTOCEntry(line); - if (tocEntry) { - // Add TOC entry as a rule with the isFromTOC flag - rules.push({ - ruleCode: tocEntry.ruleCode, - ruleContent: tocEntry.title, - parentRuleCode: this.findParentRuleCode(tocEntry.ruleCode), - pageNumber: tocEntry.pageNumber, - isFromTOC: true - }); - continue; - } - - // Otherwise, process as regular rule - const ruleMatch = this.parseRuleNumber(line); - - if (ruleMatch) { - // Save previous rule if it exists - if (currentRule) { + + const saveCurrentRule = () => { + if (currentRule) { + // Check if the rule has lettered sub-items + const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); + + if (subRules.length > 0) { + // Add the main rule and all sub-rules + rules.push(...subRules); + } else { + // No sub-rules, just add the main rule rules.push({ ruleCode: currentRule.code, ruleContent: currentRule.text.trim(), parentRuleCode: this.findParentRuleCode(currentRule.code), pageNumber: currentRule.pageNumber, - isFromTOC: currentRule.isFromTOC }); } + } + }; + + for (const line of lines) { + const trimmedLine = line.trim(); + if (!trimmedLine) continue; + + // Update page number if found + const pageMatch = this.extractPageNumber(trimmedLine); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + // Check if this line starts a new rule + const rule = this.parseRuleNumber(trimmedLine); + if (rule) { + saveCurrentRule(); - // Start new rule currentRule = { - code: ruleMatch.code, - text: ruleMatch.text, + code: rule.ruleCode, + text: rule.ruleContent, pageNumber: currentPageNumber, - isFromTOC: false }; } else if (currentRule) { - // Continue adding content to current rule - if (this.isRuleContent(line)) { - currentRule.text += ' ' + line; - } + // Append to existing rule + currentRule.text += ' ' + trimmedLine; } } - // Don't forget the last rule - if (currentRule) { - rules.push({ - ruleCode: currentRule.code, - ruleContent: currentRule.text.trim(), - parentRuleCode: this.findParentRuleCode(currentRule.code), - pageNumber: currentRule.pageNumber, - isFromTOC: currentRule.isFromTOC - }); + saveCurrentRule(); + return rules; + } + + /** + * Extracts bulleted child rules (a, b, c, etc.) from a rule's content + * and adds them as separate rules + * @param ruleCode The parent rule code (e.g., "EV.5.2.2") + * @param content The full rule content + * @param pageNumber The page number + * @returns Array of RuleData including the main rule and new subrules + */ + private extractSubRules(ruleCode: string, content: string, pageNumber: string): RuleData[] { + const subRules: RuleData[] = []; + + // Pattern for lettered bullets like "a. Some text" or "b. Some text" + const letterPattern = /\s+([a-z])\.\s+/g; + const matches = [...content.matchAll(letterPattern)]; + + if (matches.length === 0) { + // No sub-rules found + return []; } - return rules; + // Extract the main rule content (everything before the first lettered item) + const firstMatchIndex = matches[0].index!; + const mainContent = content.substring(0, firstMatchIndex).trim(); + + // Add the main rule + subRules.push({ + ruleCode: ruleCode, + ruleContent: mainContent, + parentRuleCode: this.findParentRuleCode(ruleCode), + pageNumber: pageNumber, + }); + + // Extract the lettered sub-rules + for (let i = 0; i < matches.length; i++) { + const letter = matches[i][1]; + const startIndex = matches[i].index! + matches[i][0].length; + + // Find where this sub-rule ends (either at next letter or end of rule content) + const endIndex = i < matches.length - 1 + ? matches[i + 1].index! + : content.length; + + const subRuleContent = content.substring(startIndex, endIndex).trim(); + const subRuleCode = `${ruleCode}.${letter}`; + + subRules.push({ + ruleCode: subRuleCode, + ruleContent: subRuleContent, + parentRuleCode: ruleCode, + pageNumber: pageNumber, + }); + } + return subRules; } - private parseRuleNumber(line: string): RuleMatch | null { + private parseRuleNumber(line: string): Rule | null { // Match rule patterns like "GR.1.1" followed by text const rulePattern = /^([A-Z]{1,4}(?:\.[\d]+)+)\s+(.+)$/; // Match section patterns like "GR - GENERAL REGULATIONS" const sectionPattern = /^([A-Z]{1,4})\s*-\s*([A-Z][A-Z\s]+)$/; let match = line.match(rulePattern) || line.match(sectionPattern); - if (match) { return { - code: match[1], - text: match[2] - }; - } - - return null; - } - - private parseTOCEntry(line: string): { ruleCode: string; title: string; pageNumber: string } | null { - // Match pattern like: "EV.1 Definitions .......... 90" - const tocPattern = /^([A-Z]{1,4}(?:\.[\d]+)*)\s+(.+?)\.{3,}.*?(\d+)\s*$/; - const match = line.match(tocPattern); - - if (match) { - const ruleCode = match[1]; - const title = match[2].trim(); - const pageNumber = match[3]; - - return { - ruleCode, - title, - pageNumber + ruleCode: match[1], + ruleContent: match[2] }; } return null; } + /** + * Looks for page indicators like "Page 5 of 143" + * @param line current rule line being observed + * @returns the page number if found, otherwise null + */ private extractPageNumber(line: string): string | null { - // Look for page indicators like "Page 5 of 143" const pagePattern = /Page\s+(\d+)\s+of\s+\d+/i; const match = line.match(pagePattern); if (match) { return match[1]; } - return null; } @@ -172,72 +183,37 @@ class FSAERuleParser { if (parts.length <= 1) { return undefined; } - const parentParts = parts.slice(0, -1); return parentParts.join('.'); } - private isRuleContent(line: string): boolean { - if (line.includes("Formula SAE® Rules 2025")) return false; - if (line.includes("Page") && line.includes("of")) return false; - if (line.includes("© 2024 SAE International")) return false; - if (/^\d+$/.test(line)) return false; - if (line.includes("Version 1.0")) return false; - if (/^\d{2} [A-Z][a-z]{2} \d{4}$/.test(line)) return false; - return true; - } - - private cleanRuleContent(content: string): string { - return content - .replace(/\s+/g, ' ') - .replace(/[""]/g, '"') - .replace(/['']/g, "'") - .trim(); - } - async saveToJSON(rules: RuleData[], outputPath: string = './fsae_rules.json'): Promise { - console.log(`Saving rules to ${outputPath}...`); - - const cleanRules = rules.map(rule => ({ - ...rule, - ruleContent: this.cleanRuleContent(rule.ruleContent) - })); - - const tocRules = cleanRules.filter(r => r.isFromTOC); - const output: ParsedOutput = { - rules: cleanRules, - totalRules: cleanRules.length, - totalTOCRules: tocRules.length, + rules: rules, + totalRules: rules.length, generatedAt: new Date().toISOString() }; fs.writeFileSync(outputPath, JSON.stringify(output, null, 2), 'utf-8'); - console.log(`Saved ${cleanRules.length} rules (${tocRules.length} from TOC) to ${outputPath}`); + console.log(`Saved ${rules.length} rules to ${outputPath}`); + } + + async saveToTxt(text: string): Promise { + const txtPath = './txtVersions/FSAE.txt'; + fs.writeFileSync(txtPath, text, 'utf-8'); + console.log(`Saved text version to ${txtPath}`); } } async function main(): Promise { const filePath = process.argv[2]; const outputFile = process.argv[3] || './fsae_rules.json'; - - if (!filePath) { - console.log('Usage: ts-node FSAEparser.ts [output-file]'); - console.log('Example: ts-node FSAEparser.ts FSAE_Rules_2025.pdf'); - console.log('Default output: ./fsae_rules.json'); - process.exit(1); - } - const parser = new FSAERuleParser(); try { - const { rules } = await parser.parsePdf(filePath); + const { rules, text } = await parser.parsePdf(filePath); await parser.saveToJSON(rules, outputFile); - - console.log(`\nProcessing complete!`); - console.log(`Total rules: ${rules.length}`); - console.log(`Output file: ${outputFile}`); - + await parser.saveToTxt(text); } catch (error) { console.error('Error:', error); process.exit(1); diff --git a/scripts/document-parser/fsae_rules.json b/scripts/document-parser/fsae_rules.json index ac5175d4dc..e0afeb6a18 100644 --- a/scripts/document-parser/fsae_rules.json +++ b/scripts/document-parser/fsae_rules.json @@ -1,13395 +1,17532 @@ { "rules": [ - { - "ruleCode": "GR", - "ruleContent": "- General Regulations", - "pageNumber": "5", - "isFromTOC": true - }, { "ruleCode": "GR.1", - "ruleContent": "Formula SAE Competition Objective", + "ruleContent": "Formula SAE Competition Objective .................................................................................................... 5", "parentRuleCode": "GR", - "pageNumber": "5", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "GR.2", - "ruleContent": "Organizer Authority", + "ruleContent": "Organizer Authority .............................................................................................................................. 6", "parentRuleCode": "GR", - "pageNumber": "6", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "GR.3", - "ruleContent": "Team Responsibility", + "ruleContent": "Team Responsibility ............................................................................................................................. 6", "parentRuleCode": "GR", - "pageNumber": "6", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "GR.4", - "ruleContent": "Rules Authority and Issue", + "ruleContent": "Rules Authority and Issue ..................................................................................................................... 7", "parentRuleCode": "GR", - "pageNumber": "7", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "GR.5", - "ruleContent": "Rules of Conduct", + "ruleContent": "Rules of Conduct .................................................................................................................................. 7", "parentRuleCode": "GR", - "pageNumber": "7", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "GR.6", - "ruleContent": "Rules Format and Use", + "ruleContent": "Rules Format and Use .......................................................................................................................... 8", "parentRuleCode": "GR", - "pageNumber": "8", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "GR.7", - "ruleContent": "Rules Questions", + "ruleContent": "Rules Questions .................................................................................................................................... 9", "parentRuleCode": "GR", - "pageNumber": "9", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "GR.8", - "ruleContent": "Protests", + "ruleContent": "Protests ................................................................................................................................................ 9", "parentRuleCode": "GR", - "pageNumber": "9", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "GR.9", - "ruleContent": "Vehicle Eligibility", + "ruleContent": "Vehicle Eligibility ................................................................................................................................ 10 AD - Administrative Regulations ....................................................................................................... 11", "parentRuleCode": "GR", - "pageNumber": "10", - "isFromTOC": true - }, - { - "ruleCode": "AD", - "ruleContent": "- Administrative Regulations", - "pageNumber": "11", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "AD.1", - "ruleContent": "The Formula SAE Series", + "ruleContent": "The Formula SAE Series ...................................................................................................................... 11", "parentRuleCode": "AD", - "pageNumber": "11", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "AD.2", - "ruleContent": "Official Information Sources", + "ruleContent": "Official Information Sources .............................................................................................................. 11", "parentRuleCode": "AD", - "pageNumber": "11", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "AD.3", - "ruleContent": "Individual Participation Requirements", + "ruleContent": "Individual Participation Requirements ............................................................................................... 11", "parentRuleCode": "AD", - "pageNumber": "11", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "AD.4", - "ruleContent": "Individual Registration Requirements", + "ruleContent": "Individual Registration Requirements ................................................................................................ 12", "parentRuleCode": "AD", - "pageNumber": "12", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "AD.5", - "ruleContent": "Team Advisors and Officers", + "ruleContent": "Team Advisors and Officers................................................................................................................ 12", "parentRuleCode": "AD", - "pageNumber": "12", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "AD.6", - "ruleContent": "Competition Registration", + "ruleContent": "Competition Registration ................................................................................................................... 13", "parentRuleCode": "AD", - "pageNumber": "13", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "AD.7", - "ruleContent": "Competition Site", + "ruleContent": "Competition Site ................................................................................................................................ 14 DR - Document Requirements .......................................................................................................... 16", "parentRuleCode": "AD", - "pageNumber": "14", - "isFromTOC": true - }, - { - "ruleCode": "DR", - "ruleContent": "- Document Requirements", - "pageNumber": "16", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "DR.1", - "ruleContent": "Documentation", + "ruleContent": "Documentation .................................................................................................................................. 16", "parentRuleCode": "DR", - "pageNumber": "16", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "DR.2", - "ruleContent": "Submission Details", + "ruleContent": "Submission Details ............................................................................................................................. 16", "parentRuleCode": "DR", - "pageNumber": "16", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "DR.3", - "ruleContent": "Submission Penalties", + "ruleContent": "Submission Penalties .......................................................................................................................... 17 V - Vehicle Requirements ................................................................................................................. 19", "parentRuleCode": "DR", - "pageNumber": "17", - "isFromTOC": true - }, - { - "ruleCode": "V", - "ruleContent": "- Vehicle Requirements", - "pageNumber": "19", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "V.1", - "ruleContent": "Configuration", + "ruleContent": "Configuration ..................................................................................................................................... 19", "parentRuleCode": "V", - "pageNumber": "19", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "V.2", - "ruleContent": "Driver", + "ruleContent": "Driver .................................................................................................................................................. 20", "parentRuleCode": "V", - "pageNumber": "20", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "V.3", - "ruleContent": "Suspension and Steering", + "ruleContent": "Suspension and Steering .................................................................................................................... 20", "parentRuleCode": "V", - "pageNumber": "20", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "V.4", - "ruleContent": "Wheels and Tires", + "ruleContent": "Wheels and Tires ................................................................................................................................ 21 F - Chassis and Structural .................................................................................................................. 23", "parentRuleCode": "V", - "pageNumber": "21", - "isFromTOC": true - }, - { - "ruleCode": "F", - "ruleContent": "- Chassis and Structural", - "pageNumber": "23", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.1", - "ruleContent": "Definitions", + "ruleContent": "Definitions .......................................................................................................................................... 23", "parentRuleCode": "F", - "pageNumber": "23", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.2", - "ruleContent": "Documentation", + "ruleContent": "Documentation .................................................................................................................................. 25", "parentRuleCode": "F", - "pageNumber": "25", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.3", - "ruleContent": "Tubing and Material", + "ruleContent": "Tubing and Material ........................................................................................................................... 25", "parentRuleCode": "F", - "pageNumber": "25", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.4", - "ruleContent": "Composite and Other Materials", + "ruleContent": "Composite and Other Materials ......................................................................................................... 28", "parentRuleCode": "F", - "pageNumber": "28", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.5", - "ruleContent": "Chassis Requirements", + "ruleContent": "Chassis Requirements ........................................................................................................................ 30", "parentRuleCode": "F", - "pageNumber": "30", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.6", - "ruleContent": "Tube Frames", + "ruleContent": "Tube Frames ....................................................................................................................................... 37", "parentRuleCode": "F", - "pageNumber": "37", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.7", - "ruleContent": "Monocoque", + "ruleContent": "Monocoque ........................................................................................................................................ 39", "parentRuleCode": "F", - "pageNumber": "39", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.8", - "ruleContent": "Front Chassis Protection", + "ruleContent": "Front Chassis Protection .................................................................................................................... 43", "parentRuleCode": "F", - "pageNumber": "43", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.9", - "ruleContent": "Fuel System (IC Only)", + "ruleContent": "Fuel System (IC Only) ......................................................................................................................... 48", "parentRuleCode": "F", - "pageNumber": "48", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.10", - "ruleContent": "Accumulator Container (EV Only)", + "ruleContent": "Accumulator Container (EV Only) ...................................................................................................... 49", "parentRuleCode": "F", - "pageNumber": "49", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "F.11", - "ruleContent": "Tractive System (EV Only)", + "ruleContent": "Tractive System (EV Only) .................................................................................................................. 52 T - Technical Aspects ........................................................................................................................ 54", "parentRuleCode": "F", - "pageNumber": "52", - "isFromTOC": true - }, - { - "ruleCode": "T", - "ruleContent": "- Technical Aspects", - "pageNumber": "54", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "T.1", - "ruleContent": "Cockpit", + "ruleContent": "Cockpit................................................................................................................................................ 54", "parentRuleCode": "T", - "pageNumber": "54", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "T.2", - "ruleContent": "Driver Accommodation", + "ruleContent": "Driver Accommodation ...................................................................................................................... 58", "parentRuleCode": "T", - "pageNumber": "58", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "T.3", - "ruleContent": "Brakes", + "ruleContent": "Brakes ................................................................................................................................................. 63", "parentRuleCode": "T", - "pageNumber": "63", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "T.4", - "ruleContent": "Electronic Throttle Components", + "ruleContent": "Electronic Throttle Components ........................................................................................................ 64", "parentRuleCode": "T", - "pageNumber": "64", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "T.5", - "ruleContent": "Powertrain", + "ruleContent": "Powertrain .......................................................................................................................................... 66 Version 1.0 31 Aug 2024", "parentRuleCode": "T", - "pageNumber": "66", - "isFromTOC": true + "pageNumber": "2" }, { "ruleCode": "T.6", - "ruleContent": "Pressurized Systems", + "ruleContent": "Pressurized Systems ........................................................................................................................... 68", "parentRuleCode": "T", - "pageNumber": "68", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "T.7", - "ruleContent": "Bodywork and Aerodynamic Devices", + "ruleContent": "Bodywork and Aerodynamic Devices ................................................................................................. 69", "parentRuleCode": "T", - "pageNumber": "69", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "T.8", - "ruleContent": "Fasteners", + "ruleContent": "Fasteners ............................................................................................................................................ 71", "parentRuleCode": "T", - "pageNumber": "71", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "T.9", - "ruleContent": "Electrical Equipment", + "ruleContent": "Electrical Equipment .......................................................................................................................... 72 VE - Vehicle and Driver Equipment ................................................................................................... 75", "parentRuleCode": "T", - "pageNumber": "72", - "isFromTOC": true - }, - { - "ruleCode": "VE", - "ruleContent": "- Vehicle and Driver Equipment", - "pageNumber": "75", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "VE.1", - "ruleContent": "Vehicle Identification", + "ruleContent": "Vehicle Identification ......................................................................................................................... 75", "parentRuleCode": "VE", - "pageNumber": "75", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "VE.2", - "ruleContent": "Vehicle Equipment", + "ruleContent": "Vehicle Equipment ............................................................................................................................. 75", "parentRuleCode": "VE", - "pageNumber": "75", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "VE.3", - "ruleContent": "Driver Equipment", + "ruleContent": "Driver Equipment ............................................................................................................................... 77 IC - Internal Combustion Engine Vehicles .......................................................................................... 79", "parentRuleCode": "VE", - "pageNumber": "77", - "isFromTOC": true - }, - { - "ruleCode": "IC", - "ruleContent": "- Internal Combustion Engine Vehicles", - "pageNumber": "79", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.1", - "ruleContent": "General Requirements", + "ruleContent": "General Requirements ....................................................................................................................... 79", "parentRuleCode": "IC", - "pageNumber": "79", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.2", - "ruleContent": "Air Intake System", + "ruleContent": "Air Intake System ............................................................................................................................... 79", "parentRuleCode": "IC", - "pageNumber": "79", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.3", - "ruleContent": "Throttle", + "ruleContent": "Throttle .............................................................................................................................................. 80", "parentRuleCode": "IC", - "pageNumber": "80", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.4", - "ruleContent": "Electronic Throttle Control", + "ruleContent": "Electronic Throttle Control ................................................................................................................. 81", "parentRuleCode": "IC", - "pageNumber": "81", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.5", - "ruleContent": "Fuel and Fuel System", + "ruleContent": "Fuel and Fuel System ......................................................................................................................... 84", "parentRuleCode": "IC", - "pageNumber": "84", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.6", - "ruleContent": "Fuel Injection", + "ruleContent": "Fuel Injection ...................................................................................................................................... 86", "parentRuleCode": "IC", - "pageNumber": "86", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.7", - "ruleContent": "Exhaust and Noise Control", + "ruleContent": "Exhaust and Noise Control ................................................................................................................. 87", "parentRuleCode": "IC", - "pageNumber": "87", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.8", - "ruleContent": "Electrical", + "ruleContent": "Electrical ............................................................................................................................................. 88", "parentRuleCode": "IC", - "pageNumber": "88", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IC.9", - "ruleContent": "Shutdown System", + "ruleContent": "Shutdown System............................................................................................................................... 88 EV - Electric Vehicles ........................................................................................................................ 90", "parentRuleCode": "IC", - "pageNumber": "88", - "isFromTOC": true - }, - { - "ruleCode": "EV", - "ruleContent": "- Electric Vehicles", - "pageNumber": "90", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.1", - "ruleContent": "Definitions", + "ruleContent": "Definitions .......................................................................................................................................... 90", "parentRuleCode": "EV", - "pageNumber": "90", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.2", - "ruleContent": "Documentation", + "ruleContent": "Documentation .................................................................................................................................. 90", "parentRuleCode": "EV", - "pageNumber": "90", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.3", - "ruleContent": "Electrical Limitations", + "ruleContent": "Electrical Limitations .......................................................................................................................... 90", "parentRuleCode": "EV", - "pageNumber": "90", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.4", - "ruleContent": "Components", + "ruleContent": "Components ....................................................................................................................................... 91", "parentRuleCode": "EV", - "pageNumber": "91", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.5", - "ruleContent": "Energy Storage", + "ruleContent": "Energy Storage ................................................................................................................................... 94", "parentRuleCode": "EV", - "pageNumber": "94", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.6", - "ruleContent": "Electrical System", + "ruleContent": "Electrical System ................................................................................................................................ 98", "parentRuleCode": "EV", - "pageNumber": "98", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.7", - "ruleContent": "Shutdown System", + "ruleContent": "Shutdown System............................................................................................................................. 102", "parentRuleCode": "EV", - "pageNumber": "102", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.8", - "ruleContent": "Charger Requirements", + "ruleContent": "Charger Requirements ..................................................................................................................... 107", "parentRuleCode": "EV", - "pageNumber": "107", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.9", - "ruleContent": "Vehicle Operations", + "ruleContent": "Vehicle Operations ........................................................................................................................... 108", "parentRuleCode": "EV", - "pageNumber": "108", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.10", - "ruleContent": "Event Site Activities", + "ruleContent": "Event Site Activities .......................................................................................................................... 109", "parentRuleCode": "EV", - "pageNumber": "109", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "EV.11", - "ruleContent": "Work Practices", + "ruleContent": "Work Practices ................................................................................................................................. 109 IN - Technical Inspection ................................................................................................................ 112", "parentRuleCode": "EV", - "pageNumber": "109", - "isFromTOC": true - }, - { - "ruleCode": "IN", - "ruleContent": "- Technical Inspection", - "pageNumber": "112", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.1", - "ruleContent": "Inspection Requirements", + "ruleContent": "Inspection Requirements ................................................................................................................. 112", "parentRuleCode": "IN", - "pageNumber": "112", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.2", - "ruleContent": "Inspection Conduct", + "ruleContent": "Inspection Conduct .......................................................................................................................... 112", "parentRuleCode": "IN", - "pageNumber": "112", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.3", - "ruleContent": "Initial Inspection", + "ruleContent": "Initial Inspection ............................................................................................................................... 113", "parentRuleCode": "IN", - "pageNumber": "113", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.4", - "ruleContent": "Electrical Technical Inspection (EV Only)", + "ruleContent": "Electrical Technical Inspection (EV Only) ......................................................................................... 113", "parentRuleCode": "IN", - "pageNumber": "113", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.5", - "ruleContent": "Driver Cockpit Checks", + "ruleContent": "Driver Cockpit Checks ....................................................................................................................... 114", "parentRuleCode": "IN", - "pageNumber": "114", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.6", - "ruleContent": "Driver Template Inspections", + "ruleContent": "Driver Template Inspections ............................................................................................................ 115", "parentRuleCode": "IN", - "pageNumber": "115", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.7", - "ruleContent": "Cockpit Template Inspections", + "ruleContent": "Cockpit Template Inspections .......................................................................................................... 115", "parentRuleCode": "IN", - "pageNumber": "115", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.8", - "ruleContent": "Mechanical Technical Inspection", + "ruleContent": "Mechanical Technical Inspection ..................................................................................................... 115", "parentRuleCode": "IN", - "pageNumber": "115", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.9", - "ruleContent": "Tilt Test", + "ruleContent": "Tilt Test ............................................................................................................................................. 116", "parentRuleCode": "IN", - "pageNumber": "116", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.10", - "ruleContent": "Noise and Switch Test (IC Only)", + "ruleContent": "Noise and Switch Test (IC Only) ....................................................................................................... 117", "parentRuleCode": "IN", - "pageNumber": "117", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.11", - "ruleContent": "Rain Test (EV Only)", + "ruleContent": "Rain Test (EV Only) ........................................................................................................................... 118", "parentRuleCode": "IN", - "pageNumber": "118", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.12", - "ruleContent": "Brake Test", + "ruleContent": "Brake Test ......................................................................................................................................... 118", "parentRuleCode": "IN", - "pageNumber": "118", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.13", - "ruleContent": "Inspection Approval", + "ruleContent": "Inspection Approval ......................................................................................................................... 119", "parentRuleCode": "IN", - "pageNumber": "119", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.14", - "ruleContent": "Modifications and Repairs", + "ruleContent": "Modifications and Repairs ............................................................................................................... 119", "parentRuleCode": "IN", - "pageNumber": "119", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "IN.15", - "ruleContent": "Reinspection", + "ruleContent": "Reinspection ..................................................................................................................................... 120 Version 1.0 31 Aug 2024 S - Static Events .............................................................................................................................. 121", "parentRuleCode": "IN", - "pageNumber": "120", - "isFromTOC": true - }, - { - "ruleCode": "S", - "ruleContent": "- Static Events", - "pageNumber": "121", - "isFromTOC": true + "pageNumber": "3" }, { "ruleCode": "S.1", - "ruleContent": "General Static", + "ruleContent": "General Static ................................................................................................................................... 121", "parentRuleCode": "S", - "pageNumber": "121", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "S.2", - "ruleContent": "Presentation Event", + "ruleContent": "Presentation Event ........................................................................................................................... 121", "parentRuleCode": "S", - "pageNumber": "121", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "S.3", - "ruleContent": "Cost and Manufacturing Event", + "ruleContent": "Cost and Manufacturing Event ......................................................................................................... 122", "parentRuleCode": "S", - "pageNumber": "122", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "S.4", - "ruleContent": "Design Event", + "ruleContent": "Design Event ..................................................................................................................................... 126 D - Dynamic Events ........................................................................................................................ 128", "parentRuleCode": "S", - "pageNumber": "126", - "isFromTOC": true - }, - { - "ruleCode": "D", - "ruleContent": "- Dynamic Events", - "pageNumber": "128", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.1", - "ruleContent": "General Dynamic", + "ruleContent": "General Dynamic .............................................................................................................................. 128", "parentRuleCode": "D", - "pageNumber": "128", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.2", - "ruleContent": "Pit and Paddock", + "ruleContent": "Pit and Paddock ................................................................................................................................ 128", "parentRuleCode": "D", - "pageNumber": "128", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.3", - "ruleContent": "Driving", + "ruleContent": "Driving .............................................................................................................................................. 129", "parentRuleCode": "D", - "pageNumber": "129", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.4", - "ruleContent": "Flags", + "ruleContent": "Flags ................................................................................................................................................. 130", "parentRuleCode": "D", - "pageNumber": "130", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.5", - "ruleContent": "Weather Conditions", + "ruleContent": "Weather Conditions ......................................................................................................................... 130", "parentRuleCode": "D", - "pageNumber": "130", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.6", - "ruleContent": "Tires and Tire Changes", + "ruleContent": "Tires and Tire Changes ..................................................................................................................... 131", "parentRuleCode": "D", - "pageNumber": "131", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.7", - "ruleContent": "Driver Limitations", + "ruleContent": "Driver Limitations ............................................................................................................................. 132", "parentRuleCode": "D", - "pageNumber": "132", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.8", - "ruleContent": "Definitions", + "ruleContent": "Definitions ........................................................................................................................................ 132", "parentRuleCode": "D", - "pageNumber": "132", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.9", - "ruleContent": "Acceleration Event", + "ruleContent": "Acceleration Event ........................................................................................................................... 132", "parentRuleCode": "D", - "pageNumber": "132", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.10", - "ruleContent": "Skidpad Event", + "ruleContent": "Skidpad Event ................................................................................................................................... 133", "parentRuleCode": "D", - "pageNumber": "133", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.11", - "ruleContent": "Autocross Event", + "ruleContent": "Autocross Event ............................................................................................................................... 135", "parentRuleCode": "D", - "pageNumber": "135", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.12", - "ruleContent": "Endurance Event", + "ruleContent": "Endurance Event .............................................................................................................................. 137", "parentRuleCode": "D", - "pageNumber": "137", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.13", - "ruleContent": "Efficiency Event", + "ruleContent": "Efficiency Event ................................................................................................................................ 141", "parentRuleCode": "D", - "pageNumber": "141", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "D.14", - "ruleContent": "Post Endurance", + "ruleContent": "Post Endurance ................................................................................................................................ 143 Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com REVISION SUMMARY Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 Allowance for Late Submissions DR.3.3.1 Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, EV.5.9, EV.7.8.4 Version 1.0 31 Aug 2024", "parentRuleCode": "D", - "pageNumber": "143", - "isFromTOC": true + "pageNumber": "4" }, { "ruleCode": "GR", "ruleContent": "GENERAL REGULATIONS", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1", "ruleContent": "FORMULA SAE COMPETITION OBJECTIVE", "parentRuleCode": "GR", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.1", "ruleContent": "Collegiate Design Series SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and graduate engineering students in a variety of disciplines for future employment in mobility- related industries by challenging them with a real world, engineering application. Through the Engineering Design Process, experiences may include but are not limited to: • Project management, budgeting, communication, and resource management skills • Team collaboration • Applying industry rules and regulations • Design, build, and test the performance of a real vehicle • Interact and compete with other students from around the globe • Develop and prepare technical documentation Students also gain valuable exposure to and engagement with industry professionals to enhance 21st century learning skills, to build their own network and help prepare them for the workforce after graduation.", "parentRuleCode": "GR.1", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.2", "ruleContent": "Formula SAE Concept The Formula SAE® competitions challenge teams of university undergraduate and graduate students to conceive, design, fabricate, develop and compete with small, formula style vehicles.", "parentRuleCode": "GR.1", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.3", "ruleContent": "Engineering Competition Formula SAE® is an engineering education competition that requires performance demonstration of vehicles in a series of events, off track and on track against the clock. Each competition gives teams the chance to demonstrate their creativity and engineering skills in comparison to teams from other universities around the world.", "parentRuleCode": "GR.1", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.4", "ruleContent": "Vehicle Design Objectives", "parentRuleCode": "GR.1", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.4.1", "ruleContent": "Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and demonstrate a prototype vehicle", "parentRuleCode": "GR.1.4", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.4.2", "ruleContent": "The vehicle should have high performance and be sufficiently durable to successfully complete all the events at the Formula SAE competitions.", "parentRuleCode": "GR.1.4", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.4.3", "ruleContent": "Additional design factors include: aesthetics, cost, ergonomics, maintainability, and manufacturability.", "parentRuleCode": "GR.1.4", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.4.4", "ruleContent": "Each design will be judged and evaluated against other competing designs in a series of Static and Dynamic events to determine the vehicle that best meets the design goals and may be profitably built and marketed.", "parentRuleCode": "GR.1.4", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.1.5", - "ruleContent": "Good Engineering Practices Vehicles entered into Formula SAE competitions should be designed and fabricated in accordance with good engineering practices.", + "ruleContent": "Good Engineering Practices Vehicles entered into Formula SAE competitions should be designed and fabricated in accordance with good engineering practices. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.1", - "pageNumber": "5", - "isFromTOC": false + "pageNumber": "5" }, { "ruleCode": "GR.2", "ruleContent": "ORGANIZER AUTHORITY", "parentRuleCode": "GR", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.2.1", "ruleContent": "General Authority SAE International and the competition organizing bodies reserve the right to revise the schedule of any competition and/or interpret or modify the competition rules at any time and in any manner that is, in their sole judgment, required for the efficient operation of the event or the Formula SAE series as a whole.", "parentRuleCode": "GR.2", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.2.2", "ruleContent": "Right to Impound", "parentRuleCode": "GR.2", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.2.2.1", "ruleContent": "SAE International and other competition organizing bodies may impound any onsite vehicle or part of the vehicle at any time during a competition.", "parentRuleCode": "GR.2.2", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.2.2.2", "ruleContent": "Team access to the vehicle or impound may be restricted.", "parentRuleCode": "GR.2.2", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.2.3", "ruleContent": "Problem Resolution Any problems that arise during the competition will be resolved through the onsite organizers and the decision will be final.", "parentRuleCode": "GR.2", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.2.4", "ruleContent": "Restriction on Vehicle Use SAE International, competition organizer(s) and officials are not responsible for use of vehicles designed in compliance with these Formula SAE Rules outside of the official Formula SAE competitions.", "parentRuleCode": "GR.2", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3", "ruleContent": "TEAM RESPONSIBILITY", "parentRuleCode": "GR", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.1", "ruleContent": "Rules Compliance By registering for a Formula SAE competition, the team, members of the team as individuals, faculty advisors and other personnel of the entering university agree to comply with, and be bound by, these rules and all rule interpretations or procedures issued or announced by SAE International, the Formula SAE Rules Committee and the other organizing bodies.", "parentRuleCode": "GR.3", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.2", "ruleContent": "Student Project By registering for any university program, the University registered assumes liability of the student project.", "parentRuleCode": "GR.3", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.3", "ruleContent": "Understanding the Rules Teams, team members as individuals and faculty advisors, are responsible for reading and understanding the rules in effect for the competition in which they are participating.", "parentRuleCode": "GR.3", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.4", "ruleContent": "Participating in the Competition", "parentRuleCode": "GR.3", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.4.1", "ruleContent": "Teams, individual team members, faculty advisors and other representatives of a registered university who are present onsite at a competition are “participating in the competition” from the time they arrive at the competition site until they depart the site at the conclusion of the competition or earlier by withdrawing.", "parentRuleCode": "GR.3.4", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.4.2", "ruleContent": "All team members, faculty advisors and other university representatives must cooperate with, and follow all instructions from, competition organizers, officials and judges.", "parentRuleCode": "GR.3.4", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.5", "ruleContent": "Forfeit for Non Appearance", "parentRuleCode": "GR.3", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.5.1", "ruleContent": "It is the responsibility of each team to be in the right location at the right time.", "parentRuleCode": "GR.3.5", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.5.2", - "ruleContent": "If a team is not present and ready to compete at the scheduled time, they forfeit their attempt at that event.", + "ruleContent": "If a team is not present and ready to compete at the scheduled time, they forfeit their attempt at that event. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.3.5", - "pageNumber": "6", - "isFromTOC": false + "pageNumber": "6" }, { "ruleCode": "GR.3.5.3", "ruleContent": "There are no makeups for missed appearances.", "parentRuleCode": "GR.3.5", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4", "ruleContent": "RULES AUTHORITY AND ISSUE", "parentRuleCode": "GR", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.1", "ruleContent": "Rules Authority The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are issued under the authority of the SAE International Collegiate Design Series.", "parentRuleCode": "GR.4", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.2", "ruleContent": "Rules Validity", "parentRuleCode": "GR.4", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.2.1", "ruleContent": "The Formula SAE Rules posted on the website and dated for the calendar year of the competition are the rules in effect for the competition.", "parentRuleCode": "GR.4.2", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.2.2", "ruleContent": "Rules appendices or supplements may be posted on the website and incorporated into the rules by reference.", "parentRuleCode": "GR.4.2", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.2.3", "ruleContent": "Additional guidance or reference documents may be posted on the website.", "parentRuleCode": "GR.4.2", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.2.4", "ruleContent": "Any rules, questions, or resolutions from previous years are not valid for the current competition year.", "parentRuleCode": "GR.4.2", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.3", "ruleContent": "Rules Alterations", "parentRuleCode": "GR.4", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.3.1", "ruleContent": "The Formula SAE rules may be revised, updated, or amended at any time", "parentRuleCode": "GR.4.3", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.3.2", "ruleContent": "Official designated communications from the Formula SAE Rules Committee, SAE International or the other organizing bodies are to be considered part of, and have the same validity as, these rules", "parentRuleCode": "GR.4.3", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.3.3", "ruleContent": "Draft rules or proposals may be issued for comments, however they are a courtesy, are not valid for any competitions, and may or may not be implemented in whole or in part.", "parentRuleCode": "GR.4.3", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.4", "ruleContent": "Rules Compliance", "parentRuleCode": "GR.4", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.4.1", - "ruleContent": "All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE Online Website to verify the current version.", + "ruleContent": "All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE Online Website to verify the current version.", "parentRuleCode": "GR.4.4", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.4.2", "ruleContent": "Teams and team members must comply with the general rules and any specific rules for each competition they enter.", "parentRuleCode": "GR.4.4", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.4.3", "ruleContent": "Any regulations pertaining to the use of the competition site by teams or individuals and which are posted, announced and/or otherwise publicly available are incorporated into the Formula SAE Rules by reference. As examples, all competition site waiver requirements, speed limits, parking and facility use rules apply to Formula SAE participants.", "parentRuleCode": "GR.4.4", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.4.5", "ruleContent": "Violations on Intent The violation of the intent of a rule will be considered a violation of the rule itself.", "parentRuleCode": "GR.4", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.5", "ruleContent": "RULES OF CONDUCT", "parentRuleCode": "GR", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.5.1", "ruleContent": "Unsportsmanlike Conduct If unsportsmanlike conduct occurs, the team gets a warning from an official. A second violation will result in expulsion of the team from the competition.", "parentRuleCode": "GR.5", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.5.2", - "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a 25 point penalty.", + "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a 25 point penalty. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.5", - "pageNumber": "7", - "isFromTOC": false + "pageNumber": "7" }, { "ruleCode": "GR.5.3", "ruleContent": "Arguments with Officials Argument with, or disobedience of, any official may result in the team being eliminated from the competition. All members of the team may be immediately escorted from the grounds.", "parentRuleCode": "GR.5", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.5.4", "ruleContent": "Alcohol and Illegal Material", "parentRuleCode": "GR.5", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.5.4.1", "ruleContent": "Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site during the entire competition.", "parentRuleCode": "GR.5.4", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.5.4.2", "ruleContent": "Any violation of this rule by any team member or faculty advisor will cause immediate disqualification and expulsion of the entire team.", "parentRuleCode": "GR.5.4", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.5.4.3", "ruleContent": "Any use of drugs, or the use of alcohol by an underage individual will be reported to the local authorities.", "parentRuleCode": "GR.5.4", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.5.5", "ruleContent": "Smoking – Prohibited Smoking and e-cigarette use is prohibited in all competition areas.", "parentRuleCode": "GR.5", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6", "ruleContent": "RULES FORMAT AND USE", "parentRuleCode": "GR", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6.1", "ruleContent": "Definition of Terms • Must - designates a requirement • Must NOT - designates a prohibition or restriction • Should - gives an expectation • May - gives permission, not a requirement and not a recommendation", "parentRuleCode": "GR.6", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6.2", "ruleContent": "Capitalized Terms Items or areas which have specific definitions or have specific rules are capitalized. For example, “Rules Questions” or “Primary Structure”", "parentRuleCode": "GR.6", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6.3", "ruleContent": "Headings The article, section and paragraph headings in these rules are provided only to facilitate reading: they do not affect the paragraph contents.", "parentRuleCode": "GR.6", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6.4", "ruleContent": "Applicability", "parentRuleCode": "GR.6", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6.4.1", "ruleContent": "Unless otherwise specified, all rules apply to all vehicles at all times", "parentRuleCode": "GR.6.4", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6.4.2", - "ruleContent": "Rules specific to vehicles based on their powertrain will be specified as such in the rule text: • Internal Combustion “IC” or “IC Only” • Electric Vehicle “EV” or “EV Only”", + "ruleContent": "Rules specific to vehicles based on their powertrain will be specified as such in the rule text: • Internal Combustion “IC” or “IC Only” • Electric Vehicle “EV” or “EV Only”", "parentRuleCode": "GR.6.4", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6.5", "ruleContent": "Figures and Illustrations Figures and illustrations give clarification or guidance, but are Rules only when referred to in the text of a rule", "parentRuleCode": "GR.6", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.6.6", - "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes.", + "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.6", - "pageNumber": "8", - "isFromTOC": false + "pageNumber": "8" }, { "ruleCode": "GR.7", "ruleContent": "RULES QUESTIONS", "parentRuleCode": "GR", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.7.1", "ruleContent": "Question Types Designated officials will answer questions that are not already answered in the rules or FAQs or that require new or novel rule interpretations. Rules Questions may also be used to request approval, as specified in these rules.", "parentRuleCode": "GR.7", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.7.2", "ruleContent": "Question Format", "parentRuleCode": "GR.7", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.7.2.1", "ruleContent": "All Rules Questions must include: • Full name and contact information of the person submitting the question • University name – no abbreviations • The specific competition your team has, or is planning to, enter • Number of the applicable rule(s)", "parentRuleCode": "GR.7.2", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.7.2.2", "ruleContent": "Response Time • Please allow a minimum of two weeks for a response • Do not resubmit questions", "parentRuleCode": "GR.7.2", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.7.2.3", - "ruleContent": "Submission Addresses a. Teams entering Formula SAE competitions: Follow the link and instructions published on the FSAE Online Website to \"Submit a Rules Question\" b. Teams entering other competitions please visit those respective competition websites for further instructions.", + "ruleContent": "Submission Addresses", "parentRuleCode": "GR.7.2", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" + }, + { + "ruleCode": "GR.7.2.3.a", + "ruleContent": "Teams entering Formula SAE competitions: Follow the link and instructions published on the FSAE Online Website to \"Submit a Rules Question\"", + "parentRuleCode": "GR.7.2.3", + "pageNumber": "9" + }, + { + "ruleCode": "GR.7.2.3.b", + "ruleContent": "Teams entering other competitions please visit those respective competition websites for further instructions.", + "parentRuleCode": "GR.7.2.3", + "pageNumber": "9" }, { "ruleCode": "GR.7.3", "ruleContent": "Question Publication Any submitted question and the official answer may be reproduced and freely distributed, in complete and edited versions.", "parentRuleCode": "GR.7", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.8", "ruleContent": "PROTESTS", "parentRuleCode": "GR", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.8.1", "ruleContent": "Cause for Protest A team may protest any rule interpretation, score or official action (unless specifically excluded from Protest) which they feel has caused some actual, non trivial, harm to their team, or has had a substantive effect on their score.", "parentRuleCode": "GR.8", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.8.2", "ruleContent": "Preliminary Review – Required Questions about scoring, judging, policies or any official action must be brought to the attention of the organizer or SAE International staff for an informal preliminary review before a protest may be filed.", "parentRuleCode": "GR.8", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.8.3", "ruleContent": "Protest Format • All protests must be filed in writing • The completed protest must be presented to the organizer or SAE International staff by the team captain. • Team video or data acquisition will not be reviewed as part of a protest.", "parentRuleCode": "GR.8", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.8.4", - "ruleContent": "Protest Point Bond A team must post a 25 point protest bond which will be forfeited if their protest is rejected.", + "ruleContent": "Protest Point Bond A team must post a 25 point protest bond which will be forfeited if their protest is rejected. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.8", - "pageNumber": "9", - "isFromTOC": false + "pageNumber": "9" }, { "ruleCode": "GR.8.5", "ruleContent": "Protest Period Protests concerning any aspect of the competition must be filed in the protest period announced by the competition organizers or 30 minutes of the posting of the scores of the event to which the protest relates.", "parentRuleCode": "GR.8", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.8.6", "ruleContent": "Decision The decision regarding any protest is final.", "parentRuleCode": "GR.8", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9", "ruleContent": "VEHICLE ELIGIBILITY", "parentRuleCode": "GR", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.1", "ruleContent": "Student Developed Vehicle", "parentRuleCode": "GR.9", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.1.1", "ruleContent": "Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained by the student team members without direct involvement from professional engineers, automotive engineers, racers, machinists or related professionals.", "parentRuleCode": "GR.9.1", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.1.2", "ruleContent": "Information Sources The student team may use any literature or knowledge related to design and information from professionals or from academics as long as the information is given as a discussion of alternatives with their pros and cons.", "parentRuleCode": "GR.9.1", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.1.3", - "ruleContent": "Professional Assistance Professionals must not make design decisions or drawings. The Faculty Advisor may be required to sign a statement of compliance with this restriction.", + "ruleContent": "Professional Assistance Professionals must not make design decisions or drawings. The Faculty Advisor may be required to sign a statement of compliance with this restriction.", "parentRuleCode": "GR.9.1", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.1.4", "ruleContent": "Student Fabrication Students should do all fabrication tasks", "parentRuleCode": "GR.9.1", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.2", "ruleContent": "Definitions", "parentRuleCode": "GR.9", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.2.1", "ruleContent": "Competition Year The period beginning at the event of the Formula SAE series where the vehicle first competes and continuing until the start of the corresponding event held approximately 12 months later.", "parentRuleCode": "GR.9.2", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.2.2", "ruleContent": "First Year Vehicle A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year", "parentRuleCode": "GR.9.2", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.2.3", "ruleContent": "Second Year Vehicle A vehicle which has competed in a previous Competition Year", "parentRuleCode": "GR.9.2", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.2.4", "ruleContent": "Third Year Vehicle A vehicle which has competed in more than one previous Competition Year", "parentRuleCode": "GR.9.2", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.3", "ruleContent": "Formula SAE Competition Eligibility", "parentRuleCode": "GR.9", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.3.1", - "ruleContent": "Only First Year Vehicles may enter the Formula SAE Competitions a. If there is any question about the status as a First Year Vehicle, the team must provide additional information and/or evidence.", + "ruleContent": "Only First Year Vehicles may enter the Formula SAE Competitions", "parentRuleCode": "GR.9.3", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" + }, + { + "ruleCode": "GR.9.3.1.a", + "ruleContent": "If there is any question about the status as a First Year Vehicle, the team must provide additional information and/or evidence.", + "parentRuleCode": "GR.9.3.1", + "pageNumber": "10" }, { "ruleCode": "GR.9.3.2", "ruleContent": "Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the organizer of the specific competition. The Formula SAE and Formula SAE Electric events in North America do not allow Second Year Vehicles", "parentRuleCode": "GR.9.3", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "GR.9.3.3", - "ruleContent": "Third Year Vehicles must not enter any Formula SAE Competitions", + "ruleContent": "Third Year Vehicles must not enter any Formula SAE Competitions Version 1.0 31 Aug 2024", "parentRuleCode": "GR.9.3", - "pageNumber": "10", - "isFromTOC": false + "pageNumber": "10" }, { "ruleCode": "AD", "ruleContent": "ADMINISTRATIVE REGULATIONS", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.1", "ruleContent": "THE FORMULA SAE SERIES", "parentRuleCode": "AD", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.1.1", - "ruleContent": "Rule Variations All competitions in the Formula SAE Series may post rule variations specific to the operation of the events in their countries. Vehicle design requirements and restrictions will remain unchanged. Any rule variations will be posted on the websites specific to those competitions.", + "ruleContent": "Rule Variations All competitions in the Formula SAE Series may post rule variations specific to the operation of the events in their countries. Vehicle design requirements and restrictions will remain unchanged. Any rule variations will be posted on the websites specific to those competitions.", "parentRuleCode": "AD.1", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.1.2", "ruleContent": "Official Announcements and Competition Information Teams must read the published announcements by SAE International and the other organizing bodies and be familiar with all official announcements concerning the competitions and any released rules interpretations.", "parentRuleCode": "AD.1", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.1.3", "ruleContent": "Official Languages The official language of the Formula SAE series is English. Document submissions, presentations and discussions in English are acceptable at all competitions in the series.", "parentRuleCode": "AD.1", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.2", "ruleContent": "OFFICIAL INFORMATION SOURCES These websites are referenced in these rules. Refer to the websites for additional information and resources.", "parentRuleCode": "AD", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.2.1", "ruleContent": "Event Website The Event Website for Formula SAE is specific to each competition, refer to: https://www.sae.org/attend/student-events", "parentRuleCode": "AD.2", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.2.2", - "ruleContent": "FSAE Online Website The FSAE Online website is at: http://fsaeonline.com/", + "ruleContent": "FSAE Online Website The FSAE Online website is at: http://fsaeonline.com/", "parentRuleCode": "AD.2", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.2.2.1", "ruleContent": "Documents, forms, and information are accessed from the “Series Resources” link", "parentRuleCode": "AD.2.2", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.2.2.2", "ruleContent": "Each registered team must have an account on the FSAE Online Website.", "parentRuleCode": "AD.2.2", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.2.2.3", - "ruleContent": "Each team must have one or more persons as Team Captain. The Team Captain must accept Team Members.", + "ruleContent": "Each team must have one or more persons as Team Captain. The Team Captain must accept Team Members.", "parentRuleCode": "AD.2.2", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.2.2.4", "ruleContent": "Only persons designated Team Members or Team Captains are able to upload documents to the website.", "parentRuleCode": "AD.2.2", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.2.3", "ruleContent": "Contacts Contact collegiatecompetitions@sae.org with any problems/comments/concerns Consult the specific website for the other competitions requirements.", "parentRuleCode": "AD.2", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.3", "ruleContent": "INDIVIDUAL PARTICIPATION REQUIREMENTS", "parentRuleCode": "AD", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.3.1", "ruleContent": "Eligibility", "parentRuleCode": "AD.3", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.3.1.1", "ruleContent": "Team members must be enrolled as degree seeking undergraduate or graduate students in the college or university of the team with which they are participating.", "parentRuleCode": "AD.3.1", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.3.1.2", - "ruleContent": "Team members who have graduated during the seven month period prior to the competition remain eligible to participate.", + "ruleContent": "Team members who have graduated during the seven month period prior to the competition remain eligible to participate. Version 1.0 31 Aug 2024", "parentRuleCode": "AD.3.1", - "pageNumber": "11", - "isFromTOC": false + "pageNumber": "11" }, { "ruleCode": "AD.3.1.3", - "ruleContent": "Teams which are formed with members from two or more universities are treated as a single team. A student at any university making up the team may compete at any competition where the team participates. The multiple universities are treated as one university with the same eligibility requirements.", + "ruleContent": "Teams which are formed with members from two or more universities are treated as a single team. A student at any university making up the team may compete at any competition where the team participates. The multiple universities are treated as one university with the same eligibility requirements.", "parentRuleCode": "AD.3.1", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.3.1.4", - "ruleContent": "Each team member may participate at a competition for only one team. This includes competitions where the University enters both IC and EV teams.", + "ruleContent": "Each team member may participate at a competition for only one team. This includes competitions where the University enters both IC and EV teams.", "parentRuleCode": "AD.3.1", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.3.2", "ruleContent": "Age Team members must be minimum 18 years of age.", "parentRuleCode": "AD.3", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.3.3", "ruleContent": "Driver’s License Team members who will drive a competition vehicle at any time during a competition must hold a valid, government issued driver’s license.", "parentRuleCode": "AD.3", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.3.4", "ruleContent": "Society Membership Team members must be members of SAE International Proof of membership, such as membership card, is required at the competition.", "parentRuleCode": "AD.3", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.3.5", "ruleContent": "Medical Insurance Individual medical insurance coverage is required and is the sole responsibility of the participant.", "parentRuleCode": "AD.3", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.3.6", "ruleContent": "Disabled Accessibility Team members who require accessibility for areas outside of ADA Compliance must contact organizers at collegiatecompetitions@sae.org prior to start of competition.", "parentRuleCode": "AD.3", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.4", "ruleContent": "INDIVIDUAL REGISTRATION REQUIREMENTS", "parentRuleCode": "AD", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.4.1", "ruleContent": "Preliminary Registration", "parentRuleCode": "AD.4", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.4.1.1", "ruleContent": "All students and faculty must be affiliated to your respective school /college/university on the Event Website before the deadline shown on the Event Website", "parentRuleCode": "AD.4.1", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.4.1.2", - "ruleContent": "International student participants (or unaffiliated Faculty Advisors) who are not SAE International members must create a free customer account profile on www.sae.org. Upon completion, please email collegiatecompetitions@sae.org the assigned customer number stating also the event and university affiliation.", + "ruleContent": "International student participants (or unaffiliated Faculty Advisors) who are not SAE International members must create a free customer account profile on www.sae.org. Upon completion, please email collegiatecompetitions@sae.org the assigned customer number stating also the event and university affiliation.", "parentRuleCode": "AD.4.1", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.4.2", "ruleContent": "Onsite Registration", "parentRuleCode": "AD.4", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.4.2.1", "ruleContent": "All team members and faculty advisors must register at the competition site", "parentRuleCode": "AD.4.2", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.4.2.2", "ruleContent": "All onsite participants, including students, faculty and volunteers, must sign a liability waiver upon registering onsite.", "parentRuleCode": "AD.4.2", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.4.2.3", "ruleContent": "Onsite registration must be completed before the vehicle may be unloaded, uncrated or worked upon in any manner.", "parentRuleCode": "AD.4.2", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.5", "ruleContent": "TEAM ADVISORS AND OFFICERS", "parentRuleCode": "AD", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.5.1", "ruleContent": "Faculty Advisor", "parentRuleCode": "AD.5", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.5.1.1", "ruleContent": "Each team must have a Faculty Advisor appointed by their university.", "parentRuleCode": "AD.5.1", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.5.1.2", - "ruleContent": "The Faculty Advisor should accompany the team to the competition and will be considered by the officials to be the official university representative.", + "ruleContent": "The Faculty Advisor should accompany the team to the competition and will be considered by the officials to be the official university representative. Version 1.0 31 Aug 2024", "parentRuleCode": "AD.5.1", - "pageNumber": "12", - "isFromTOC": false + "pageNumber": "12" }, { "ruleCode": "AD.5.1.3", - "ruleContent": "Faculty Advisors: a. May advise their teams on general engineering and engineering project management theory b. Must not design, build or repair any part of the vehicle c. Must not develop any documentation or presentation", + "ruleContent": "Faculty Advisors:", "parentRuleCode": "AD.5.1", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" + }, + { + "ruleCode": "AD.5.1.3.a", + "ruleContent": "May advise their teams on general engineering and engineering project management theory", + "parentRuleCode": "AD.5.1.3", + "pageNumber": "13" + }, + { + "ruleCode": "AD.5.1.3.b", + "ruleContent": "Must not design, build or repair any part of the vehicle", + "parentRuleCode": "AD.5.1.3", + "pageNumber": "13" + }, + { + "ruleCode": "AD.5.1.3.c", + "ruleContent": "Must not develop any documentation or presentation", + "parentRuleCode": "AD.5.1.3", + "pageNumber": "13" }, { "ruleCode": "AD.5.2", - "ruleContent": "Electrical System Officer (EV Only) The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle during the event", + "ruleContent": "Electrical System Officer (EV Only) The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle during the event", "parentRuleCode": "AD.5", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.2.1", "ruleContent": "Each participating team must appoint one or more ESO for the event", "parentRuleCode": "AD.5.2", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.2.2", - "ruleContent": "The ESO must be: a. A valid team member, see AD.3 Individual Participation Requirements b. One or more ESO must not be a driver c. Certified or has received appropriate practical training whether formal or informal for working with High Voltage systems in automotive vehicles Give details of the training on the ESO/ESA form", + "ruleContent": "The ESO must be:", "parentRuleCode": "AD.5.2", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" + }, + { + "ruleCode": "AD.5.2.2.a", + "ruleContent": "A valid team member, see AD.3 Individual Participation Requirements", + "parentRuleCode": "AD.5.2.2", + "pageNumber": "13" + }, + { + "ruleCode": "AD.5.2.2.b", + "ruleContent": "One or more ESO must not be a driver", + "parentRuleCode": "AD.5.2.2", + "pageNumber": "13" + }, + { + "ruleCode": "AD.5.2.2.c", + "ruleContent": "Certified or has received appropriate practical training whether formal or informal for working with High Voltage systems in automotive vehicles Give details of the training on the ESO/ESA form", + "parentRuleCode": "AD.5.2.2", + "pageNumber": "13" }, { "ruleCode": "AD.5.2.3", "ruleContent": "Duties of the ESO - see EV.11.1.1", "parentRuleCode": "AD.5.2", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.3", - "ruleContent": "Electric System Advisor (EV Only)", + "ruleContent": "Electric System Advisor (EV Only)", "parentRuleCode": "AD.5", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.3.1", - "ruleContent": "The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated by the team who can advise on the electrical and control systems that will be integrated into the vehicle. The faculty advisor may also be the ESA if all the requirements below are met.", + "ruleContent": "The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated by the team who can advise on the electrical and control systems that will be integrated into the vehicle. The faculty advisor may also be the ESA if all the requirements below are met.", "parentRuleCode": "AD.5.3", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.3.2", "ruleContent": "The ESA must supply details of their experience of electrical and/or control systems engineering as used in the vehicle on the ESO/ESA form", "parentRuleCode": "AD.5.3", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.3.3", "ruleContent": "The ESA must be sufficiently qualified to advise the team on their proposed electrical and control system designs based on significant experience of the technology being developed and its implementation into vehicles or other safety critical systems. More than one person may be needed.", "parentRuleCode": "AD.5.3", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.3.4", - "ruleContent": "The ESA must advise the team on the merits of any relevant engineering solutions. Solutions should be discussed, questioned and approved before they are implemented into the final vehicle design.", + "ruleContent": "The ESA must advise the team on the merits of any relevant engineering solutions. Solutions should be discussed, questioned and approved before they are implemented into the final vehicle design.", "parentRuleCode": "AD.5.3", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.3.5", "ruleContent": "The ESA should advise the students on any required training to work with the systems on the vehicle.", "parentRuleCode": "AD.5.3", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.3.6", "ruleContent": "The ESA must review the Electrical System Form and to confirm that in principle the vehicle has been designed using good engineering practices.", "parentRuleCode": "AD.5.3", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.5.3.7", "ruleContent": "The ESA must make sure that the team communicates any unusual aspects of the design to reduce the risk of exclusion or significant changes being required to pass Technical Inspection.", "parentRuleCode": "AD.5.3", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.6", "ruleContent": "COMPETITION REGISTRATION", "parentRuleCode": "AD", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.6.1", "ruleContent": "General Information", "parentRuleCode": "AD.6", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.6.1.1", "ruleContent": "Registration for Formula SAE competitions must be completed on the Event Website.", "parentRuleCode": "AD.6.1", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.6.1.2", - "ruleContent": "Refer to the individual competition websites for registration requirements for other competitions", + "ruleContent": "Refer to the individual competition websites for registration requirements for other competitions Version 1.0 31 Aug 2024", "parentRuleCode": "AD.6.1", - "pageNumber": "13", - "isFromTOC": false + "pageNumber": "13" }, { "ruleCode": "AD.6.2", "ruleContent": "Registration Details", "parentRuleCode": "AD.6", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.2.1", "ruleContent": "Refer to the Event Website for specific registration requirements and details. • Registration limits and Waitlist limits will be posted on the Event Website. • Registration will open at the date and time posted on the Event Website. • Registration(s) may have limitations", "parentRuleCode": "AD.6.2", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.2.2", "ruleContent": "Once a competition reaches the registration limit, a Waitlist will open.", "parentRuleCode": "AD.6.2", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.2.3", "ruleContent": "Beginning on the date and time posted on the Event Website, any remaining slots will be available to any team on a first come, first serve basis.", "parentRuleCode": "AD.6.2", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.2.4", "ruleContent": "Registration and the Waitlist will close at the date and time posted on the Event Website or when all available slots have been taken, whichever occurs first.", "parentRuleCode": "AD.6.2", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.3", "ruleContent": "Registration Fees", "parentRuleCode": "AD.6", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.3.1", "ruleContent": "Registration fees must be paid by the deadline specified on the respective competition website", "parentRuleCode": "AD.6.3", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.3.2", "ruleContent": "Registration fees are not refundable and not transferrable to any other competition.", "parentRuleCode": "AD.6.3", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.4", "ruleContent": "Waitlist", "parentRuleCode": "AD.6", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.4.1", "ruleContent": "Waitlisted teams must submit all documents by the same deadlines as registered teams to remain on the Waitlist.", "parentRuleCode": "AD.6.4", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.4.2", "ruleContent": "Once a team withdraws from the competition, the organizer will inform the next team on the Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the registered list has opened.", "parentRuleCode": "AD.6.4", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.4.3", "ruleContent": "The team will then have 24 hours to accept or reject the position and an additional 24 hours to have the registration payment completed or in process.", "parentRuleCode": "AD.6.4", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.6.5", "ruleContent": "Withdrawals Registered teams that will not attend the competition must inform SAE International or the organizer, as posted on the Event Website", "parentRuleCode": "AD.6", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.7", "ruleContent": "COMPETITION SITE", "parentRuleCode": "AD", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.7.1", - "ruleContent": "Personal Vehicles Personal cars and trailers must be parked in designated areas only. Only authorized vehicles will be allowed in the track areas.", + "ruleContent": "Personal Vehicles Personal cars and trailers must be parked in designated areas only. Only authorized vehicles will be allowed in the track areas.", "parentRuleCode": "AD.7", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.7.2", "ruleContent": "Motorcycles, Bicycles, Rollerblades, etc. - Prohibited The use of motorcycles, quads, bicycles, scooters, skateboards, rollerblades or similar person- carrying devices by team members and spectators in any part of the competition area, including the paddocks, is prohibited.", "parentRuleCode": "AD.7", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.7.3", "ruleContent": "Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited.", "parentRuleCode": "AD.7", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.7.4", "ruleContent": "Trash Cleanup", "parentRuleCode": "AD.7", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.7.4.1", - "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. • The team’s work area should be kept uncluttered • At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock", + "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. • The team’s work area should be kept uncluttered Version 1.0 31 Aug 2024 • At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock", "parentRuleCode": "AD.7.4", - "pageNumber": "14", - "isFromTOC": false + "pageNumber": "14" }, { "ruleCode": "AD.7.4.2", "ruleContent": "Teams must remove all of their material and trash when leaving the site at the end of the competition.", "parentRuleCode": "AD.7.4", - "pageNumber": "15", - "isFromTOC": false + "pageNumber": "15" }, { "ruleCode": "AD.7.4.3", - "ruleContent": "Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs.", + "ruleContent": "Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs. Version 1.0 31 Aug 2024", "parentRuleCode": "AD.7.4", - "pageNumber": "15", - "isFromTOC": false + "pageNumber": "15" }, { "ruleCode": "DR", "ruleContent": "DOCUMENT REQUIREMENTS", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1", "ruleContent": "DOCUMENTATION", "parentRuleCode": "DR", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.1", "ruleContent": "Requirements", "parentRuleCode": "DR.1", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.1.1", "ruleContent": "The documents supporting each vehicle must be submitted before the deadlines posted on the Event Website or otherwise published by the organizer.", "parentRuleCode": "DR.1.1", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.1.2", "ruleContent": "The procedures for submitting documents are published on the Event Website or otherwise identified by the organizer.", "parentRuleCode": "DR.1.1", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2", "ruleContent": "Definitions", "parentRuleCode": "DR.1", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2.1", "ruleContent": "Submission Date The date and time of upload to the website", "parentRuleCode": "DR.1.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2.2", "ruleContent": "Submission Deadline The date and time by which the document must be uploaded or submitted", "parentRuleCode": "DR.1.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2.3", "ruleContent": "No Submissions Accepted After The last date and time that documents may be uploaded or submitted", "parentRuleCode": "DR.1.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2.4", "ruleContent": "Late Submission • Uploaded after the Submission Deadline and prior to No Submissions Accepted After • Submitted largely incomplete prior to or after the Submission Deadline", "parentRuleCode": "DR.1.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2.5", "ruleContent": "Not Submitted • Not uploaded prior to No Submissions Accepted After • Not in the specified form or format", "parentRuleCode": "DR.1.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2.6", "ruleContent": "Amount Late The number of days between the Submission Deadline and the Submission Date. Any partial day is rounded up to a full day. Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late would be two days penalty", "parentRuleCode": "DR.1.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2.7", "ruleContent": "Grounds for Removal A designated document that if Not Submitted may cause Removal of Team Entry", "parentRuleCode": "DR.1.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.1.2.8", "ruleContent": "Reviewer A designated event official who is assigned to review and accept a Submission", "parentRuleCode": "DR.1.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.2", "ruleContent": "SUBMISSION DETAILS", "parentRuleCode": "DR", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.2.1", "ruleContent": "Submission Location Teams entering Formula SAE competitions in North America must upload the required documents to the team account on the FSAE Online Website, see AD.2.2", "parentRuleCode": "DR.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.2.2", "ruleContent": "Submission Format Requirements Refer to Table DR-1 Submission Information", "parentRuleCode": "DR.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.2.2.1", "ruleContent": "Template files with the required format must be used when specified in Table DR-1", "parentRuleCode": "DR.2.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.2.2.2", - "ruleContent": "Template files are available on the FSAE Online Website, see AD.2.2.1", + "ruleContent": "Template files are available on the FSAE Online Website, see AD.2.2.1 Version 1.0 31 Aug 2024", "parentRuleCode": "DR.2.2", - "pageNumber": "16", - "isFromTOC": false + "pageNumber": "16" }, { "ruleCode": "DR.2.2.3", "ruleContent": "Do Not alter the format of any provided template files", "parentRuleCode": "DR.2.2", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.2.2.4", "ruleContent": "Each submission must be one single file in the specified format (PDF - Portable Document File, XLSX - Microsoft Excel Worksheet File)", "parentRuleCode": "DR.2.2", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3", "ruleContent": "SUBMISSION PENALTIES", "parentRuleCode": "DR", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.1", "ruleContent": "Submissions", "parentRuleCode": "DR.3", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.1.1", "ruleContent": "Each team is responsible for confirming that their documents have been properly uploaded or submitted and that the deadlines have been met", "parentRuleCode": "DR.3.1", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.1.2", - "ruleContent": "Prior to the Submission Deadline: a. Documents may be uploaded at any time b. Uploads may be replaced with new uploads without penalty", + "ruleContent": "Prior to the Submission Deadline:", "parentRuleCode": "DR.3.1", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" + }, + { + "ruleCode": "DR.3.1.2.a", + "ruleContent": "Documents may be uploaded at any time", + "parentRuleCode": "DR.3.1.2", + "pageNumber": "17" + }, + { + "ruleCode": "DR.3.1.2.b", + "ruleContent": "Uploads may be replaced with new uploads without penalty", + "parentRuleCode": "DR.3.1.2", + "pageNumber": "17" }, { "ruleCode": "DR.3.1.3", "ruleContent": "If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline for the revised document may apply", "parentRuleCode": "DR.3.1", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.1.4", "ruleContent": "Teams will not be notified if a document is submitted incorrectly", "parentRuleCode": "DR.3.1", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.2", "ruleContent": "Penalty Detail", "parentRuleCode": "DR.3", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.2.1", "ruleContent": "Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion.", "parentRuleCode": "DR.3.2", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.2.2", "ruleContent": "Additional penalties will apply if Not Submitted, subject to official discretion", "parentRuleCode": "DR.3.2", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.2.3", "ruleContent": "Penalties up to and including Removal of Team Entry may apply based on document reviews, subject to official discretion", "parentRuleCode": "DR.3.2", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.3", "ruleContent": "Removal of Team Entry", "parentRuleCode": "DR.3", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.3.1", - "ruleContent": "The organizer may remove the team entry when a: a. Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. Removals will occur after each Document Submission deadline b. Team does not respond to Reviewer requests or organizer communications", + "ruleContent": "The organizer may remove the team entry when a:", "parentRuleCode": "DR.3.3", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" + }, + { + "ruleCode": "DR.3.3.1.a", + "ruleContent": "Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. Removals will occur after each Document Submission deadline", + "parentRuleCode": "DR.3.3.1", + "pageNumber": "17" + }, + { + "ruleCode": "DR.3.3.1.b", + "ruleContent": "Team does not respond to Reviewer requests or organizer communications", + "parentRuleCode": "DR.3.3.1", + "pageNumber": "17" }, { "ruleCode": "DR.3.3.2", - "ruleContent": "When a team entry will be removed: a. The team will be notified prior to cancelling registration b. No refund of entry fees will be given", + "ruleContent": "When a team entry will be removed:", "parentRuleCode": "DR.3.3", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" + }, + { + "ruleCode": "DR.3.3.2.a", + "ruleContent": "The team will be notified prior to cancelling registration", + "parentRuleCode": "DR.3.3.2", + "pageNumber": "17" + }, + { + "ruleCode": "DR.3.3.2.b", + "ruleContent": "No refund of entry fees will be given", + "parentRuleCode": "DR.3.3.2", + "pageNumber": "17" }, { "ruleCode": "DR.3.4", "ruleContent": "Specific Penalties", "parentRuleCode": "DR.3", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.4.1", - "ruleContent": "Electronic Throttle Control (ETC) (IC Only) a. There is no point penalty for ETC documents b. The team will not be allowed to run ETC on their vehicle and must use mechanical throttle operation when: • The ETC Notice of Intent is Not Submitted • The ETC Systems Form is Not Submitted, or is not accepted", + "ruleContent": "Electronic Throttle Control (ETC) (IC Only)", "parentRuleCode": "DR.3.4", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" + }, + { + "ruleCode": "DR.3.4.1.a", + "ruleContent": "There is no point penalty for ETC documents", + "parentRuleCode": "DR.3.4.1", + "pageNumber": "17" + }, + { + "ruleCode": "DR.3.4.1.b", + "ruleContent": "The team will not be allowed to run ETC on their vehicle and must use mechanical throttle operation when: • The ETC Notice of Intent is Not Submitted • The ETC Systems Form is Not Submitted, or is not accepted", + "parentRuleCode": "DR.3.4.1", + "pageNumber": "17" }, { "ruleCode": "DR.3.4.2", - "ruleContent": "Fuel Type IC.5.1 There is no point penalty for a late fuel type order. Once the deadline has passed, the team will be allocated the basic fuel type.", + "ruleContent": "Fuel Type IC.5.1 There is no point penalty for a late fuel type order. Once the deadline has passed, the team will be allocated the basic fuel type.", "parentRuleCode": "DR.3.4", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "DR.3.4.3", - "ruleContent": "Program Submissions Please submit material requested for the Event Program by the published deadlines Table DR-1 Submission Information Submission Refer to: Required Format: Submit in File Format: Penalty Group Structural Equivalency Spreadsheet (SES) as applicable to your design", + "ruleContent": "Program Submissions Please submit material requested for the Event Program by the published deadlines Version 1.0 31 Aug 2024 Table DR-1 Submission Information Submission Refer to: Required Format: Submit in File Format: Penalty Group Structural Equivalency Spreadsheet (SES) as applicable to your design", "parentRuleCode": "DR.3.4", - "pageNumber": "17", - "isFromTOC": false + "pageNumber": "17" }, { "ruleCode": "F.2.1", - "ruleContent": "see below XLSX Tech ETC - Notice of Intent IC.4.3 see below PDF ETC ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC EV – Electrical Systems Officer and Electrical Systems Advisor Form AD.5.2, AD.5.3 see below PDF Tech EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other Cost Report S.3.4 see S.3.4.2 (1) Other Cost Addendum S.3.7 see below see S.3.7 none Design Briefing S.4.3 see below PDF Other Vehicle Drawings S.4.4 see S.4.4.1 PDF Other Design Spec Sheet S.4.5 see below XLSX Other Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 Note (1): Refer to the FSAE Online website for submission requirements Table DR-2 Submission Penalty Information Penalty Group Penalty Points per 24 Hours Not Submitted after the Deadline ETC none Not Approved to use ETC - see DR.3.4.1 Tech -20 Grounds for Removal - see DR.3.3 Other -10 Removed from Cost/Design/Presentation Event and Score 0 points – see DR.3.2.2", + "ruleContent": "see below XLSX Tech ETC - Notice of Intent IC.4.3 see below PDF ETC ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC EV – Electrical Systems Officer and Electrical Systems Advisor Form AD.5.2, AD.5.3 see below PDF Tech EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other Cost Report S.3.4 see S.3.4.2 (1) Other Cost Addendum S.3.7 see below see S.3.7 none Design Briefing S.4.3 see below PDF Other Vehicle Drawings S.4.4 see S.4.4.1 PDF Other Design Spec Sheet S.4.5 see below XLSX Other Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 Note (1): Refer to the FSAE Online website for submission requirements Table DR-2 Submission Penalty Information Penalty Group Penalty Points per 24 Hours Not Submitted after the Deadline ETC none Not Approved to use ETC - see DR.3.4.1 Tech -20 Grounds for Removal - see DR.3.3 Other -10 Removed from Cost/Design/Presentation Event and Score 0 points – see DR.3.2.2 Version 1.0 31 Aug 2024", "parentRuleCode": "F.2", - "pageNumber": "18", - "isFromTOC": false + "pageNumber": "18" }, { "ruleCode": "V", "ruleContent": "VEHICLE REQUIREMENTS", - "pageNumber": "19", - "isFromTOC": false + "pageNumber": "19" }, { "ruleCode": "V.1", "ruleContent": "CONFIGURATION The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels that are not in a straight line.", "parentRuleCode": "V", - "pageNumber": "19", - "isFromTOC": false + "pageNumber": "19" }, { "ruleCode": "V.1.1", - "ruleContent": "Open Wheel Open Wheel vehicles must satisfy all of these criteria: a. The top 180° of the wheels/tires must be unobstructed when viewed from vertically above the wheel. b. The wheels/tires must be unobstructed when viewed from the side. c. No part of the vehicle may enter a keep out zone defined by two lines extending vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the front and rear tires in the side view elevation of the vehicle, with tires steered straight ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire to the inboard plane of the wheel/tire.", + "ruleContent": "Open Wheel Open Wheel vehicles must satisfy all of these criteria:", "parentRuleCode": "V.1", - "pageNumber": "19", - "isFromTOC": false + "pageNumber": "19" + }, + { + "ruleCode": "V.1.1.a", + "ruleContent": "The top 180° of the wheels/tires must be unobstructed when viewed from vertically above the wheel.", + "parentRuleCode": "V.1.1", + "pageNumber": "19" + }, + { + "ruleCode": "V.1.1.b", + "ruleContent": "The wheels/tires must be unobstructed when viewed from the side.", + "parentRuleCode": "V.1.1", + "pageNumber": "19" + }, + { + "ruleCode": "V.1.1.c", + "ruleContent": "No part of the vehicle may enter a keep out zone defined by two lines extending vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the front and rear tires in the side view elevation of the vehicle, with tires steered straight ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire to the inboard plane of the wheel/tire.", + "parentRuleCode": "V.1.1", + "pageNumber": "19" }, { "ruleCode": "V.1.2", "ruleContent": "Wheelbase The vehicle must have a minimum wheelbase of 1525 mm", "parentRuleCode": "V.1", - "pageNumber": "19", - "isFromTOC": false + "pageNumber": "19" }, { "ruleCode": "V.1.3", "ruleContent": "Vehicle Track", "parentRuleCode": "V.1", - "pageNumber": "19", - "isFromTOC": false + "pageNumber": "19" }, { "ruleCode": "V.1.3.1", - "ruleContent": "The track and center of gravity must combine to provide sufficient rollover stability. See IN.9.2", + "ruleContent": "The track and center of gravity must combine to provide sufficient rollover stability. See IN.9.2", "parentRuleCode": "V.1.3", - "pageNumber": "19", - "isFromTOC": false + "pageNumber": "19" }, { "ruleCode": "V.1.3.2", - "ruleContent": "The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track.", + "ruleContent": "The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. Version 1.0 31 Aug 2024", "parentRuleCode": "V.1.3", - "pageNumber": "19", - "isFromTOC": false + "pageNumber": "19" }, { "ruleCode": "V.1.4", "ruleContent": "Ground Clearance", "parentRuleCode": "V.1", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.1.4.1", "ruleContent": "Ground clearance must be sufficient to prevent any portion of the vehicle except the tires from touching the ground during dynamic events", "parentRuleCode": "V.1.4", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.1.4.2", - "ruleContent": "The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less. a. There must be an opening for measuring the ride height at that point without removing aerodynamic devices", + "ruleContent": "The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less.", "parentRuleCode": "V.1.4", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" + }, + { + "ruleCode": "V.1.4.2.a", + "ruleContent": "There must be an opening for measuring the ride height at that point without removing aerodynamic devices", + "parentRuleCode": "V.1.4.2", + "pageNumber": "20" }, { "ruleCode": "V.1.4.3", "ruleContent": "Intentional or excessive ground contact of any portion of the vehicle other than the tires will forfeit a run or an entire dynamic event The intent is that sliding skirts or other devices that by design, fabrication or as a consequence of moving, contact the track surface are prohibited and any unintended contact with the ground which causes damage, or in the opinion of the Dynamic Event Officials could result in damage to the track, will result in forfeit of a run or an entire dynamic event", "parentRuleCode": "V.1.4", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.2", "ruleContent": "DRIVER", "parentRuleCode": "V", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.2.1", "ruleContent": "Accommodation", "parentRuleCode": "V.2", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.2.1.1", "ruleContent": "The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female up to 95th percentile male. • Accommodation includes driver position, driver controls, and driver equipment • Anthropometric data may be found on the FSAE Online Website", "parentRuleCode": "V.2.1", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.2.1.2", "ruleContent": "The driver’s head and hands must not contact the ground in any rollover attitude", "parentRuleCode": "V.2.1", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.2.2", - "ruleContent": "Visibility a. The driver must have sufficient visibility to the front and sides of the vehicle b. When seated in a normal driving position, the driver must have a minimum field of vision of 100° to the left and the right sides c. If mirrors are required for this rule, they must remain in position and adjusted to enable the required visibility throughout all Dynamic Events", + "ruleContent": "Visibility", "parentRuleCode": "V.2", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" + }, + { + "ruleCode": "V.2.2.a", + "ruleContent": "The driver must have sufficient visibility to the front and sides of the vehicle", + "parentRuleCode": "V.2.2", + "pageNumber": "20" + }, + { + "ruleCode": "V.2.2.b", + "ruleContent": "When seated in a normal driving position, the driver must have a minimum field of vision of 100° to the left and the right sides", + "parentRuleCode": "V.2.2", + "pageNumber": "20" + }, + { + "ruleCode": "V.2.2.c", + "ruleContent": "If mirrors are required for this rule, they must remain in position and adjusted to enable the required visibility throughout all Dynamic Events", + "parentRuleCode": "V.2.2", + "pageNumber": "20" }, { "ruleCode": "V.3", "ruleContent": "SUSPENSION AND STEERING", "parentRuleCode": "V", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.3.1", "ruleContent": "Suspension", "parentRuleCode": "V.3", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.3.1.1", "ruleContent": "The vehicle must have a fully operational suspension system with shock absorbers, front and rear, with usable minimum wheel travel of 50 mm, with a driver seated.", "parentRuleCode": "V.3.1", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.3.1.2", "ruleContent": "Officials may disqualify vehicles which do not represent a serious attempt at an operational suspension system, or which demonstrate handling inappropriate for an autocross circuit.", "parentRuleCode": "V.3.1", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.3.1.3", "ruleContent": "All suspension mounting points must be visible at Technical Inspection by direct view or by removing any covers.", "parentRuleCode": "V.3.1", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.3.1.4", - "ruleContent": "Fasteners in the Suspension system are Critical Fasteners, see T.8.2", + "ruleContent": "Fasteners in the Suspension system are Critical Fasteners, see T.8.2", "parentRuleCode": "V.3.1", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.3.1.5", - "ruleContent": "All spherical rod ends and spherical bearings on the suspension and steering must be one of: • Mounted in double shear • Captured by having a screw/bolt head or washer with an outside diameter that is larger than spherical bearing housing inside diameter.", + "ruleContent": "All spherical rod ends and spherical bearings on the suspension and steering must be one of: • Mounted in double shear • Captured by having a screw/bolt head or washer with an outside diameter that is larger than spherical bearing housing inside diameter. Version 1.0 31 Aug 2024", "parentRuleCode": "V.3.1", - "pageNumber": "20", - "isFromTOC": false + "pageNumber": "20" }, { "ruleCode": "V.3.2", "ruleContent": "Steering", "parentRuleCode": "V.3", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.1", "ruleContent": "The Steering Wheel must be mechanically connected to the front wheels", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.2", "ruleContent": "Electrically operated steering of the front wheels is prohibited", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.3", "ruleContent": "Steering systems must use a rigid mechanical linkage capable of tension and compression loads for operation", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.4", - "ruleContent": "The steering system must have positive steering stops that prevent the steering linkages from locking up (the inversion of a four bar linkage at one of the pivots). The stops: a. Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis during the track events b. May be put on the uprights or on the rack", + "ruleContent": "The steering system must have positive steering stops that prevent the steering linkages from locking up (the inversion of a four bar linkage at one of the pivots). The stops:", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" + }, + { + "ruleCode": "V.3.2.4.a", + "ruleContent": "Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis during the track events", + "parentRuleCode": "V.3.2.4", + "pageNumber": "21" + }, + { + "ruleCode": "V.3.2.4.b", + "ruleContent": "May be put on the uprights or on the rack", + "parentRuleCode": "V.3.2.4", + "pageNumber": "21" }, { "ruleCode": "V.3.2.5", "ruleContent": "Allowable steering system free play is limited to seven degrees (7°) total measured at the steering wheel.", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.6", - "ruleContent": "The steering rack must be mechanically attached to the Chassis F.5.14", + "ruleContent": "The steering rack must be mechanically attached to the Chassis F.5.14", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.7", "ruleContent": "Joints between all components attaching the Steering Wheel to the steering rack must be mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup are not permitted.", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.8", "ruleContent": "Fasteners in the steering system are Critical Fasteners, see T.8.2", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.9", "ruleContent": "Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.2.10", - "ruleContent": "Rear wheel steering may be used. a. Rear wheel steering must incorporate mechanical stops to limit the range of angular movement of the rear wheels to a maximum of six degrees (6°) b. The team must provide the ability for the steering angle range to be verified at Technical Inspection with a driver in the vehicle c. Rear wheel steering may be electrically operated", + "ruleContent": "Rear wheel steering may be used.", "parentRuleCode": "V.3.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" + }, + { + "ruleCode": "V.3.2.10.a", + "ruleContent": "Rear wheel steering must incorporate mechanical stops to limit the range of angular movement of the rear wheels to a maximum of six degrees (6°)", + "parentRuleCode": "V.3.2.10", + "pageNumber": "21" + }, + { + "ruleCode": "V.3.2.10.b", + "ruleContent": "The team must provide the ability for the steering angle range to be verified at Technical Inspection with a driver in the vehicle", + "parentRuleCode": "V.3.2.10", + "pageNumber": "21" + }, + { + "ruleCode": "V.3.2.10.c", + "ruleContent": "Rear wheel steering may be electrically operated", + "parentRuleCode": "V.3.2.10", + "pageNumber": "21" }, { "ruleCode": "V.3.3", "ruleContent": "Steering Wheel", "parentRuleCode": "V.3", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.3.1", "ruleContent": "In any angular position, the Steering Wheel must meet T.1.4.4", "parentRuleCode": "V.3.3", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.3.2", "ruleContent": "The Steering Wheel must be attached to the column with a quick disconnect.", "parentRuleCode": "V.3.3", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.3.3", "ruleContent": "The driver must be able to operate the quick disconnect while in the normal driving position with gloves on.", "parentRuleCode": "V.3.3", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.3.3.4", "ruleContent": "The Steering Wheel must have a continuous perimeter that is near circular or near oval. The outer perimeter profile may have some straight sections, but no concave sections. “H”, “Figure 8”, or cutout wheels are not allowed.", "parentRuleCode": "V.3.3", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.4", "ruleContent": "WHEELS AND TIRES", "parentRuleCode": "V", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.4.1", "ruleContent": "Wheel Size Wheels must be 203.2 mm (8.0 inches) or more in diameter.", "parentRuleCode": "V.4", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.4.2", "ruleContent": "Wheel Attachment", "parentRuleCode": "V.4", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.4.2.1", - "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel if the nut loosens. A second nut (jam nut) does not meet this requirement", + "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel if the nut loosens. A second nut (jam nut) does not meet this requirement Version 1.0 31 Aug 2024", "parentRuleCode": "V.4.2", - "pageNumber": "21", - "isFromTOC": false + "pageNumber": "21" }, { "ruleCode": "V.4.2.2", "ruleContent": "Teams using modified lug bolts or custom designs must provide proof that Good Engineering Practices have been followed in their design.", "parentRuleCode": "V.4.2", - "pageNumber": "22", - "isFromTOC": false + "pageNumber": "22" }, { "ruleCode": "V.4.2.3", "ruleContent": "If used, aluminum wheel nuts must be hard anodized and in pristine condition.", "parentRuleCode": "V.4.2", - "pageNumber": "22", - "isFromTOC": false + "pageNumber": "22" }, { "ruleCode": "V.4.3", "ruleContent": "Tires Vehicles may have two types of tires, Dry and Wet", "parentRuleCode": "V.4", - "pageNumber": "22", - "isFromTOC": false + "pageNumber": "22" }, { "ruleCode": "V.4.3.1", - "ruleContent": "Dry Tires a. The tires on the vehicle when it is presented for Technical Inspection. b. May be any size or type, slicks or treaded.", + "ruleContent": "Dry Tires", "parentRuleCode": "V.4.3", - "pageNumber": "22", - "isFromTOC": false + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.1.a", + "ruleContent": "The tires on the vehicle when it is presented for Technical Inspection.", + "parentRuleCode": "V.4.3.1", + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.1.b", + "ruleContent": "May be any size or type, slicks or treaded.", + "parentRuleCode": "V.4.3.1", + "pageNumber": "22" }, { "ruleCode": "V.4.3.2", "ruleContent": "Wet Tires Any size or type of treaded or grooved tire where: • The tread pattern or grooves were molded in by the tire manufacturer, or were cut by the tire manufacturer or appointed agent. Any grooves that have been cut must have documented proof that this rule was met • There is a minimum tread depth of 2.4 mm", "parentRuleCode": "V.4.3", - "pageNumber": "22", - "isFromTOC": false + "pageNumber": "22" }, { "ruleCode": "V.4.3.3", - "ruleContent": "Tire Set a. All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be identical. b. Once each tire set has been presented for Technical Inspection, any tire compound or size, or wheel type or size must not be changed.", + "ruleContent": "Tire Set", "parentRuleCode": "V.4.3", - "pageNumber": "22", - "isFromTOC": false + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.3.a", + "ruleContent": "All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be identical.", + "parentRuleCode": "V.4.3.3", + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.3.b", + "ruleContent": "Once each tire set has been presented for Technical Inspection, any tire compound or size, or wheel type or size must not be changed.", + "parentRuleCode": "V.4.3.3", + "pageNumber": "22" }, { "ruleCode": "V.4.3.4", - "ruleContent": "Tire Pressure a. Tire Pressure must be in the range allowed by the manufacturer at all times. b. Tire Pressure may be inspected at any time", + "ruleContent": "Tire Pressure", "parentRuleCode": "V.4.3", - "pageNumber": "22", - "isFromTOC": false + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.4.a", + "ruleContent": "Tire Pressure must be in the range allowed by the manufacturer at all times.", + "parentRuleCode": "V.4.3.4", + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.4.b", + "ruleContent": "Tire Pressure may be inspected at any time", + "parentRuleCode": "V.4.3.4", + "pageNumber": "22" }, { "ruleCode": "V.4.3.5", - "ruleContent": "Requirements for All Tires a. Teams must not do any hand cutting, grooving or modification of the tires. b. Tire warmers are not allowed. c. No traction enhancers may be applied to the tires at any time onsite at the competition.", + "ruleContent": "Requirements for All Tires", "parentRuleCode": "V.4.3", - "pageNumber": "22", - "isFromTOC": false + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.5.a", + "ruleContent": "Teams must not do any hand cutting, grooving or modification of the tires.", + "parentRuleCode": "V.4.3.5", + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.5.b", + "ruleContent": "Tire warmers are not allowed.", + "parentRuleCode": "V.4.3.5", + "pageNumber": "22" + }, + { + "ruleCode": "V.4.3.5.c", + "ruleContent": "No traction enhancers may be applied to the tires at any time onsite at the competition. Version 1.0 31 Aug 2024", + "parentRuleCode": "V.4.3.5", + "pageNumber": "22" }, { "ruleCode": "F", "ruleContent": "CHASSIS AND STRUCTURAL", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1", "ruleContent": "DEFINITIONS", "parentRuleCode": "F", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.1", "ruleContent": "Chassis The fabricated structural assembly that supports all functional vehicle systems. This assembly may be a single fabricated structure, multiple fabricated structures or a combination of composite and welded structures.", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.2", "ruleContent": "Frame Member A minimum representative single piece of uncut, continuous tubing.", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.3", "ruleContent": "Monocoque A type of Chassis where loads are supported by the external panels", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.4", "ruleContent": "Main Hoop A roll bar located alongside or immediately aft of the driver’s torso.", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.5", "ruleContent": "Front Hoop A roll bar located above the driver’s legs, in proximity to the steering wheel.", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.6", "ruleContent": "Roll Hoop(s) Referring to the Front Hoop AND the Main Hoop", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.7", "ruleContent": "Roll Hoop Bracing Supports The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s).", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.8", "ruleContent": "Front Bulkhead A planar structure that provides protection for the driver’s feet.", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.9", "ruleContent": "Impact Attenuator A deformable, energy absorbing device located forward of the Front Bulkhead.", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.10", - "ruleContent": "Primary Structure The combination of these components: • Front Bulkhead and Front Bulkhead Support • Front Hoop, Main Hoop, Roll Hoop Braces and Supports • Side Impact Structure • (EV Only) Tractive System Protection and Rear Impact Protection • Any Frame Members, guides, or supports that transfer load from the Driver Restraint System", + "ruleContent": "Primary Structure The combination of these components: • Front Bulkhead and Front Bulkhead Support • Front Hoop, Main Hoop, Roll Hoop Braces and Supports • Side Impact Structure • (EV Only) Tractive System Protection and Rear Impact Protection • Any Frame Members, guides, or supports that transfer load from the Driver Restraint System", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.11", "ruleContent": "Primary Structure Envelope A volume enclosed by multiple tangent planes, each of which follows the exact outline of the Primary Structure Frame Members", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.12", - "ruleContent": "Major Structure The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of the Upper Side Impact Member or top of the Side Impact Zone.", + "ruleContent": "Major Structure The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of the Upper Side Impact Member or top of the Side Impact Zone. Version 1.0 31 Aug 2024", "parentRuleCode": "F.1", - "pageNumber": "23", - "isFromTOC": false + "pageNumber": "23" }, { "ruleCode": "F.1.13", "ruleContent": "Rollover Protection Envelope The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * If there are no Triangulated Structural members aft of the Main Hoop, the Rollover Protection Envelope ends at the rear plane of the Main Hoop", "parentRuleCode": "F.1", - "pageNumber": "24", - "isFromTOC": false + "pageNumber": "24" }, { "ruleCode": "F.1.14", "ruleContent": "Tire Surface Envelope The volume enclosed by tangent lines between the Main Hoop and the outside edge of each of the four tires.", "parentRuleCode": "F.1", - "pageNumber": "24", - "isFromTOC": false + "pageNumber": "24" }, { "ruleCode": "F.1.15", - "ruleContent": "Component Envelope The area that is inside a plane from the top of the Main Hoop to the top of the Front Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * see note in step F.1.13 above", + "ruleContent": "Component Envelope The area that is inside a plane from the top of the Main Hoop to the top of the Front Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * see note in step F.1.13 above", "parentRuleCode": "F.1", - "pageNumber": "24", - "isFromTOC": false + "pageNumber": "24" }, { "ruleCode": "F.1.16", "ruleContent": "Buckling Modulus (EI) Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the weakest axis", "parentRuleCode": "F.1", - "pageNumber": "24", - "isFromTOC": false + "pageNumber": "24" }, { "ruleCode": "F.1.17", - "ruleContent": "Triangulation An arrangement of Frame Members where all members and segments of members between bends or nodes with Structural tubes form a structure composed entirely of triangles. a. This is generally required between an upper member and a lower member, each may have multiple segments requiring a diagonal to form multiple triangles. b. This is also what is meant by “properly triangulated”", + "ruleContent": "Triangulation An arrangement of Frame Members where all members and segments of members between bends or nodes with Structural tubes form a structure composed entirely of triangles.", "parentRuleCode": "F.1", - "pageNumber": "24", - "isFromTOC": false + "pageNumber": "24" + }, + { + "ruleCode": "F.1.17.a", + "ruleContent": "This is generally required between an upper member and a lower member, each may have multiple segments requiring a diagonal to form multiple triangles.", + "parentRuleCode": "F.1.17", + "pageNumber": "24" + }, + { + "ruleCode": "F.1.17.b", + "ruleContent": "This is also what is meant by “properly triangulated” Version 1.0 31 Aug 2024", + "parentRuleCode": "F.1.17", + "pageNumber": "24" }, { "ruleCode": "F.1.18", "ruleContent": "Nonflammable Material Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent", "parentRuleCode": "F.1", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2", "ruleContent": "DOCUMENTATION", "parentRuleCode": "F", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.1", "ruleContent": "Structural Equivalency Spreadsheet - SES", "parentRuleCode": "F.2", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.1.1", "ruleContent": "The SES is a supplement to the Formula SAE Rules and may provide guidance or further details in addition to those of the Formula SAE Rules.", "parentRuleCode": "F.2.1", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.1.2", - "ruleContent": "The SES provides the means to: a. Document the Primary Structure and show compliance with the Formula SAE Rules b. Determine Equivalence to Formula SAE Rules using an accepted basis", + "ruleContent": "The SES provides the means to:", "parentRuleCode": "F.2.1", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" + }, + { + "ruleCode": "F.2.1.2.a", + "ruleContent": "Document the Primary Structure and show compliance with the Formula SAE Rules", + "parentRuleCode": "F.2.1.2", + "pageNumber": "25" + }, + { + "ruleCode": "F.2.1.2.b", + "ruleContent": "Determine Equivalence to Formula SAE Rules using an accepted basis", + "parentRuleCode": "F.2.1.2", + "pageNumber": "25" }, { "ruleCode": "F.2.2", "ruleContent": "Structural Documentation", "parentRuleCode": "F.2", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.2.1", "ruleContent": "All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR - Document Requirements", "parentRuleCode": "F.2.2", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.3", "ruleContent": "Equivalence", "parentRuleCode": "F.2", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.3.1", "ruleContent": "Equivalency in the structural context is determined and documented with the methods in the SES", "parentRuleCode": "F.2.3", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.3.2", "ruleContent": "Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same application", "parentRuleCode": "F.2.3", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.3.3", "ruleContent": "The properties of tubes and laminates may be combined to prove Equivalence. For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate panel, the panel only needs to be Equivalent to two Side Impact Tubes.", "parentRuleCode": "F.2.3", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.4", "ruleContent": "Tolerance Tolerance on dimensions given in the rules is allowed and is addressed in the SES.", "parentRuleCode": "F.2", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.2.5", "ruleContent": "Fabrication Vehicles must be fabricated in accordance with the design, materials, and processes described in the SES.", "parentRuleCode": "F.2", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.3", "ruleContent": "TUBING AND MATERIAL", "parentRuleCode": "F", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.3.1", - "ruleContent": "Dimensions Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for commonly available tubing.", + "ruleContent": "Dimensions Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for commonly available tubing. Version 1.0 31 Aug 2024", "parentRuleCode": "F.3", - "pageNumber": "25", - "isFromTOC": false + "pageNumber": "25" }, { "ruleCode": "F.3.2", "ruleContent": "Tubing Requirements", "parentRuleCode": "F.3", - "pageNumber": "26", - "isFromTOC": false + "pageNumber": "26" }, { "ruleCode": "F.3.2.1", - "ruleContent": "Requirements by Application Application Steel Tube Must Meet Size per F.3.4: Alternative Tubing Material Permitted per F.3.5 ? a. Front Bulkhead Size B Yes b. Front Bulkhead Support Size C Yes c. Front Hoop Size A Yes d. Front Hoop Bracing Size B Yes e. Side Impact Structure Size B Yes f. Bent / Multi Upper Side Impact Member Size D Yes g. Main Hoop Size A NO h. Main Hoop Bracing Size B NO i. Main Hoop Bracing Supports Size C Yes j. Driver Restraint Harness Attachment Size B Yes k. Shoulder Harness Mounting Bar Size A NO l. Shoulder Harness Mounting Bar Bracing Size C Yes m. Accumulator Mounting and Protection Size B Yes n. Component Protection Size C Yes o. Structural Tubing Size C Yes", + "ruleContent": "Requirements by Application Application Steel Tube Must Meet Size per F.3.4: Alternative Tubing Material Permitted per F.3.5 ?", "parentRuleCode": "F.3.2", - "pageNumber": "26", - "isFromTOC": false + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.a", + "ruleContent": "Front Bulkhead Size B Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.b", + "ruleContent": "Front Bulkhead Support Size C Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.c", + "ruleContent": "Front Hoop Size A Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.d", + "ruleContent": "Front Hoop Bracing Size B Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.e", + "ruleContent": "Side Impact Structure Size B Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.f", + "ruleContent": "Bent / Multi Upper Side Impact Member Size D Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.g", + "ruleContent": "Main Hoop Size A NO", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.h", + "ruleContent": "Main Hoop Bracing Size B NO", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.i", + "ruleContent": "Main Hoop Bracing Supports Size C Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.j", + "ruleContent": "Driver Restraint Harness Attachment Size B Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.k", + "ruleContent": "Shoulder Harness Mounting Bar Size A NO", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.l", + "ruleContent": "Shoulder Harness Mounting Bar Bracing Size C Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.m", + "ruleContent": "Accumulator Mounting and Protection Size B Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.n", + "ruleContent": "Component Protection Size C Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.2.1.o", + "ruleContent": "Structural Tubing Size C Yes", + "parentRuleCode": "F.3.2.1", + "pageNumber": "26" }, { "ruleCode": "F.3.3", "ruleContent": "Non Structural Tubing", "parentRuleCode": "F.3", - "pageNumber": "26", - "isFromTOC": false + "pageNumber": "26" }, { "ruleCode": "F.3.3.1", "ruleContent": "Definition Any tubing which does NOT meet F.3.2.1.o Structural Tubing", "parentRuleCode": "F.3.3", - "pageNumber": "26", - "isFromTOC": false + "pageNumber": "26" }, { "ruleCode": "F.3.3.2", "ruleContent": "Applicability Non Structural Tubing is ignored when assessing compliance to any rule", "parentRuleCode": "F.3.3", - "pageNumber": "26", - "isFromTOC": false + "pageNumber": "26" }, { "ruleCode": "F.3.4", "ruleContent": "Steel Tubing and Material", "parentRuleCode": "F.3", - "pageNumber": "26", - "isFromTOC": false + "pageNumber": "26" }, { "ruleCode": "F.3.4.1", - "ruleContent": "Minimum Requirements for Steel Tubing A tube must have all four minimum requirements for each Size specified: Tube Minimum Area Moment of Inertia Minimum Cross Sectional Area Minimum Outside Diameter or Square Width Minimum Wall Thickness Example Sizes of Round Tube a. Size A 11320 mm 173 mm 25.0 mm 2.0 mm 1.0” x 0.095” 25 x 2.5 mm b. Size B 8509 mm 114 mm 25.0 mm 1.2 mm 1.0” x 0.065” 25.4 x 1.6 mm c. Size C 6695 mm 91 mm 25.0 mm 1.2 mm 1.0” x 0.049” 25.4 x 1.2 mm d. Size D 18015 mm 126 mm 35.0 mm 1.2 mm 1.375” x 0.049” 35 x 1.2 mm", + "ruleContent": "Minimum Requirements for Steel Tubing A tube must have all four minimum requirements for each Size specified: Tube Minimum Area Moment of Inertia Minimum Cross Sectional Area Minimum Outside Diameter or Square Width Minimum Wall Thickness Example Sizes of Round Tube", "parentRuleCode": "F.3.4", - "pageNumber": "26", - "isFromTOC": false + "pageNumber": "26" + }, + { + "ruleCode": "F.3.4.1.a", + "ruleContent": "Size A 11320 mm 4 173 mm 2 25.0 mm 2.0 mm 1.0” x 0.095” 25 x 2.5 mm", + "parentRuleCode": "F.3.4.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.4.1.b", + "ruleContent": "Size B 8509 mm 4 114 mm 2 25.0 mm 1.2 mm 1.0” x 0.065” 25.4 x 1.6 mm", + "parentRuleCode": "F.3.4.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.4.1.c", + "ruleContent": "Size C 6695 mm 4 91 mm 2 25.0 mm 1.2 mm 1.0” x 0.049” 25.4 x 1.2 mm", + "parentRuleCode": "F.3.4.1", + "pageNumber": "26" + }, + { + "ruleCode": "F.3.4.1.d", + "ruleContent": "Size D 18015 mm 4 126 mm 2 35.0 mm 1.2 mm 1.375” x 0.049” 35 x 1.2 mm Version 1.0 31 Aug 2024", + "parentRuleCode": "F.3.4.1", + "pageNumber": "26" }, { "ruleCode": "F.3.4.2", - "ruleContent": "Properties for ANY steel material for calculations submitted in an SES must be: a. Non Welded Properties for continuous material calculations: Young’s Modulus (E) = 200 GPa (29,000 ksi) Yield Strength (Sy) = 305 MPa (44.2 ksi) Ultimate Strength (Su) = 365 MPa (52.9 ksi) b. Welded Properties for discontinuous material such as joint calculations: Yield Strength (Sy) = 180 MPa (26 ksi) Ultimate Strength (Su) = 300 MPa (43.5 ksi)", + "ruleContent": "Properties for ANY steel material for calculations submitted in an SES must be:", "parentRuleCode": "F.3.4", - "pageNumber": "27", - "isFromTOC": false + "pageNumber": "27" + }, + { + "ruleCode": "F.3.4.2.a", + "ruleContent": "Non Welded Properties for continuous material calculations: Young’s Modulus (E) = 200 GPa (29,000 ksi) Yield Strength (Sy) = 305 MPa (44.2 ksi) Ultimate Strength (Su) = 365 MPa (52.9 ksi)", + "parentRuleCode": "F.3.4.2", + "pageNumber": "27" + }, + { + "ruleCode": "F.3.4.2.b", + "ruleContent": "Welded Properties for discontinuous material such as joint calculations: Yield Strength (Sy) = 180 MPa (26 ksi) Ultimate Strength (Su) = 300 MPa (43.5 ksi)", + "parentRuleCode": "F.3.4.2", + "pageNumber": "27" }, { "ruleCode": "F.3.4.3", "ruleContent": "Where Welded tubing reinforcements are required (such as inserts for bolt holes or material to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be shown to the original Non Welded tube in the SES", "parentRuleCode": "F.3.4", - "pageNumber": "27", - "isFromTOC": false + "pageNumber": "27" }, { "ruleCode": "F.3.5", "ruleContent": "Alternative Tubing Materials", "parentRuleCode": "F.3", - "pageNumber": "27", - "isFromTOC": false + "pageNumber": "27" }, { "ruleCode": "F.3.5.1", "ruleContent": "Alternative Materials may be used for applications shown as permitted in F.3.2.1", "parentRuleCode": "F.3.5", - "pageNumber": "27", - "isFromTOC": false + "pageNumber": "27" }, { "ruleCode": "F.3.5.2", - "ruleContent": "If any Alternative Materials are used, the SES must contain: a. Documentation of material type, (purchase receipt, shipping document or letter of donation) and the material properties. b. Calculations that show equivalent to or better than the minimum requirements for steel tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for buckling modulus and for energy dissipation c. Details of the manufacturing technique and process", + "ruleContent": "If any Alternative Materials are used, the SES must contain:", "parentRuleCode": "F.3.5", - "pageNumber": "27", - "isFromTOC": false + "pageNumber": "27" + }, + { + "ruleCode": "F.3.5.2.a", + "ruleContent": "Documentation of material type, (purchase receipt, shipping document or letter of donation) and the material properties.", + "parentRuleCode": "F.3.5.2", + "pageNumber": "27" + }, + { + "ruleCode": "F.3.5.2.b", + "ruleContent": "Calculations that show equivalent to or better than the minimum requirements for steel tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for buckling modulus and for energy dissipation", + "parentRuleCode": "F.3.5.2", + "pageNumber": "27" + }, + { + "ruleCode": "F.3.5.2.c", + "ruleContent": "Details of the manufacturing technique and process", + "parentRuleCode": "F.3.5.2", + "pageNumber": "27" }, { "ruleCode": "F.3.5.3", - "ruleContent": "Aluminum Tubing a. Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm Welded 3.0 mm b. Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Young’s Modulus (E) 69 GPa (10,000 ksi) Yield Strength (Sy) 240 MPa (34.8 ksi) Ultimate Strength (Su) 290 MPa (42.1 ksi) c. Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Yield Strength (Sy) 115 MPa (16.7 ksi) Ultimate Strength (Su) 175 MPa (25.4 ksi) d. If welding is used on a regulated aluminum structure, the equivalent yield strength must be considered in the “as welded” condition for the alloy used unless the team provides detailed proof that the frame or component has been properly solution heat treated, artificially aged, and not subject to heating during team manufacturing. e. If aluminum was solution heat treated and age hardened to increase its strength after welding, the team must supply evidence of the process. This includes, but is not limited to, the heat treating facility used, the process applied, and the fixturing used.", + "ruleContent": "Aluminum Tubing", "parentRuleCode": "F.3.5", - "pageNumber": "27", - "isFromTOC": false + "pageNumber": "27" + }, + { + "ruleCode": "F.3.5.3.a", + "ruleContent": "Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm Welded 3.0 mm", + "parentRuleCode": "F.3.5.3", + "pageNumber": "27" + }, + { + "ruleCode": "F.3.5.3.b", + "ruleContent": "Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Young’s Modulus (E) 69 GPa (10,000 ksi) Yield Strength (Sy) 240 MPa (34.8 ksi) Ultimate Strength (Su) 290 MPa (42.1 ksi)", + "parentRuleCode": "F.3.5.3", + "pageNumber": "27" + }, + { + "ruleCode": "F.3.5.3.c", + "ruleContent": "Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Yield Strength (Sy) 115 MPa (16.7 ksi) Ultimate Strength (Su) 175 MPa (25.4 ksi)", + "parentRuleCode": "F.3.5.3", + "pageNumber": "27" + }, + { + "ruleCode": "F.3.5.3.d", + "ruleContent": "If welding is used on a regulated aluminum structure, the equivalent yield strength must be considered in the “as welded” condition for the alloy used unless the team provides detailed proof that the frame or component has been properly solution heat treated, artificially aged, and not subject to heating during team manufacturing.", + "parentRuleCode": "F.3.5.3", + "pageNumber": "27" + }, + { + "ruleCode": "F.3.5.3.e", + "ruleContent": "If aluminum was solution heat treated and age hardened to increase its strength after welding, the team must supply evidence of the process. This includes, but is not limited to, the heat treating facility used, the process applied, and the fixturing used. Version 1.0 31 Aug 2024", + "parentRuleCode": "F.3.5.3", + "pageNumber": "27" }, { "ruleCode": "F.4", "ruleContent": "COMPOSITE AND OTHER MATERIALS", "parentRuleCode": "F", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" }, { "ruleCode": "F.4.1", "ruleContent": "Requirements If any composite or other material is used, the SES must contain:", "parentRuleCode": "F.4", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" }, { "ruleCode": "F.4.1.1", "ruleContent": "Documentation of material type, (purchase receipt, shipping document or letter of donation) and the material properties.", "parentRuleCode": "F.4.1", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" }, { "ruleCode": "F.4.1.2", "ruleContent": "Details of the manufacturing technique and/or composite layup technique as well as the structural material used (examples - cloth type, weight, and resin type, number of layers, core material, and skin material if metal).", "parentRuleCode": "F.4.1", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" }, { "ruleCode": "F.4.1.3", "ruleContent": "Calculations that show equivalence of the structure to one of similar geometry made to meet the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, buckling, and tension.", "parentRuleCode": "F.4.1", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" }, { "ruleCode": "F.4.1.4", "ruleContent": "Construction dates of the test panel(s) and monocoque, and approximate age(s) of the materials used.", "parentRuleCode": "F.4.1", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" }, { "ruleCode": "F.4.2", "ruleContent": "Laminate and Material Testing", "parentRuleCode": "F.4", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" }, { "ruleCode": "F.4.2.1", - "ruleContent": "Testing Requirements a. Any tested samples must be engraved with the full date of construction and sample name b. The same set of test results must not be used for different monocoques in different years. The intent is for the test panel to use the same material batch, material age, material storage, and student layup quality as the monocoque.", + "ruleContent": "Testing Requirements", "parentRuleCode": "F.4.2", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" + }, + { + "ruleCode": "F.4.2.1.a", + "ruleContent": "Any tested samples must be engraved with the full date of construction and sample name", + "parentRuleCode": "F.4.2.1", + "pageNumber": "28" + }, + { + "ruleCode": "F.4.2.1.b", + "ruleContent": "The same set of test results must not be used for different monocoques in different years. The intent is for the test panel to use the same material batch, material age, material storage, and student layup quality as the monocoque.", + "parentRuleCode": "F.4.2.1", + "pageNumber": "28" }, { "ruleCode": "F.4.2.2", - "ruleContent": "Primary Structure Laminate Testing Teams must build new representative test panels for each ply schedule used in the regulated regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer to F.4.2.4 a. Test panels must: • Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm • Be supported by a span distance of 400 mm • Have equal surface area for the top and bottom skin • Have bare edges, without skin material b. The SES must include: • Data from the 3 point bending tests • Pictures of the test samples • A picture of the test sample and test setup showing a measurement documenting the supported span distance used in the SES c. Test panel results must be used to derive stiffness, yield strength, ultimate strength and absorbed energy properties by the SES formula and limits for the purpose of calculating laminate panels equivalency corresponding to Primary Structure regions of the chassis. d. Test panels must use the thickest core associated with each skin layup Designs may use core thickness that is 50% - 100% of the test panel core thickness associated with each skin layup e. Calculation of derived properties must use the part of test data where deflection is 50 mm or less f. Calculation of absorbed energy must use the integral of force times displacement", + "ruleContent": "Primary Structure Laminate Testing Teams must build new representative test panels for each ply schedule used in the regulated regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer to F.4.2.4", "parentRuleCode": "F.4.2", - "pageNumber": "28", - "isFromTOC": false + "pageNumber": "28" + }, + { + "ruleCode": "F.4.2.2.a", + "ruleContent": "Test panels must: • Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm • Be supported by a span distance of 400 mm • Have equal surface area for the top and bottom skin • Have bare edges, without skin material", + "parentRuleCode": "F.4.2.2", + "pageNumber": "28" + }, + { + "ruleCode": "F.4.2.2.b", + "ruleContent": "The SES must include: • Data from the 3 point bending tests • Pictures of the test samples • A picture of the test sample and test setup showing a measurement documenting the supported span distance used in the SES", + "parentRuleCode": "F.4.2.2", + "pageNumber": "28" + }, + { + "ruleCode": "F.4.2.2.c", + "ruleContent": "Test panel results must be used to derive stiffness, yield strength, ultimate strength and absorbed energy properties by the SES formula and limits for the purpose of calculating laminate panels equivalency corresponding to Primary Structure regions of the chassis.", + "parentRuleCode": "F.4.2.2", + "pageNumber": "28" + }, + { + "ruleCode": "F.4.2.2.d", + "ruleContent": "Test panels must use the thickest core associated with each skin layup Version 1.0 31 Aug 2024 Designs may use core thickness that is 50% - 100% of the test panel core thickness associated with each skin layup", + "parentRuleCode": "F.4.2.2", + "pageNumber": "28" + }, + { + "ruleCode": "F.4.2.2.e", + "ruleContent": "Calculation of derived properties must use the part of test data where deflection is 50 mm or less", + "parentRuleCode": "F.4.2.2", + "pageNumber": "28" + }, + { + "ruleCode": "F.4.2.2.f", + "ruleContent": "Calculation of absorbed energy must use the integral of force times displacement", + "parentRuleCode": "F.4.2.2", + "pageNumber": "28" }, { "ruleCode": "F.4.2.3", - "ruleContent": "Comparison Test Teams must make an equivalent test that will determine any compliance in the test rig and establish an absorbed energy value of the baseline tubes. a. The comparison test must use two Side Impact steel tubes (F.3.2.1.e) b. The steel tubes must be tested to a minimum displacement of 19.0 mm c. The calculation of absorbed energy must use the integral of force times displacement from the initiation of load to a displacement of 19.0 mm", + "ruleContent": "Comparison Test Teams must make an equivalent test that will determine any compliance in the test rig and establish an absorbed energy value of the baseline tubes.", "parentRuleCode": "F.4.2", - "pageNumber": "29", - "isFromTOC": false + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.3.a", + "ruleContent": "The comparison test must use two Side Impact steel tubes (F.3.2.1.e)", + "parentRuleCode": "F.4.2.3", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.3.b", + "ruleContent": "The steel tubes must be tested to a minimum displacement of 19.0 mm", + "parentRuleCode": "F.4.2.3", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.3.c", + "ruleContent": "The calculation of absorbed energy must use the integral of force times displacement from the initiation of load to a displacement of 19.0 mm", + "parentRuleCode": "F.4.2.3", + "pageNumber": "29" }, { "ruleCode": "F.4.2.4", - "ruleContent": "Test Conduct a. The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture b. The load applicator used to test any panel/tubes as required in this section F.4.2 must be: • Metallic • Radius 50 mm c. The load applicator must overhang the test piece to prevent edge loading d. Any other material must not be put between the load applicator and the items on test", + "ruleContent": "Test Conduct", "parentRuleCode": "F.4.2", - "pageNumber": "29", - "isFromTOC": false + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.4.a", + "ruleContent": "The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture", + "parentRuleCode": "F.4.2.4", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.4.b", + "ruleContent": "The load applicator used to test any panel/tubes as required in this section F.4.2 must be: • Metallic • Radius 50 mm", + "parentRuleCode": "F.4.2.4", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.4.c", + "ruleContent": "The load applicator must overhang the test piece to prevent edge loading", + "parentRuleCode": "F.4.2.4", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.4.d", + "ruleContent": "Any other material must not be put between the load applicator and the items on test", + "parentRuleCode": "F.4.2.4", + "pageNumber": "29" }, { "ruleCode": "F.4.2.5", - "ruleContent": "Perimeter Shear Test a. The Perimeter Shear Test must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample. b. The sample must: • Measure 100 mm x 100 mm minimum • Have core and skin thicknesses identical to those used in the actual application • Be manufactured using the same materials and processes c. The fixture must support the entire sample, except for a 32 mm hole aligned coaxially with the punch. d. The sample must not be clamped to the fixture e. The edge of the punch and hole in the fixture may include an optional fillet up to a maximum radius of 1 mm. f. The SES must include force and displacement data and photos of the test setup. g. The first peak in the load-deflection curve must be used to determine the skin shear strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5 h. The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5", + "ruleContent": "Perimeter Shear Test", "parentRuleCode": "F.4.2", - "pageNumber": "29", - "isFromTOC": false + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.5.a", + "ruleContent": "The Perimeter Shear Test must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample.", + "parentRuleCode": "F.4.2.5", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.5.b", + "ruleContent": "The sample must: • Measure 100 mm x 100 mm minimum • Have core and skin thicknesses identical to those used in the actual application • Be manufactured using the same materials and processes", + "parentRuleCode": "F.4.2.5", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.5.c", + "ruleContent": "The fixture must support the entire sample, except for a 32 mm hole aligned coaxially with the punch.", + "parentRuleCode": "F.4.2.5", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.5.d", + "ruleContent": "The sample must not be clamped to the fixture", + "parentRuleCode": "F.4.2.5", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.5.e", + "ruleContent": "The edge of the punch and hole in the fixture may include an optional fillet up to a maximum radius of 1 mm.", + "parentRuleCode": "F.4.2.5", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.5.f", + "ruleContent": "The SES must include force and displacement data and photos of the test setup. Version 1.0 31 Aug 2024", + "parentRuleCode": "F.4.2.5", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.5.g", + "ruleContent": "The first peak in the load-deflection curve must be used to determine the skin shear strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5", + "parentRuleCode": "F.4.2.5", + "pageNumber": "29" + }, + { + "ruleCode": "F.4.2.5.h", + "ruleContent": "The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5", + "parentRuleCode": "F.4.2.5", + "pageNumber": "29" }, { "ruleCode": "F.4.2.6", - "ruleContent": "Lap Joint Test The Lap Joint Test measures the force required to pull apart a joint of two laminate samples that are bonded together a. A joint design with two perpendicular bond areas may show equivalence using the shear performance of the smaller of the two areas b. A joint design with a single bond area must have two separate pull tests with different orientations of the adhesive joint: • Parallel to the pull direction, with the adhesive joint in pure shear • T peel normal to the pull direction, with the adhesive joint in peel c. The samples used must: • Have skin thicknesses identical to those used in the actual monocoque • Be manufactured using the same materials and processes The intent is to perform a test of the actual bond overlap, and fail the skin before the bond d. The force and displacement data and photos of the test setup must be included in the SES. e. The shear strength * normal area of the bond must be more than the UTS * cross sectional area of the skin", + "ruleContent": "Lap Joint Test The Lap Joint Test measures the force required to pull apart a joint of two laminate samples that are bonded together", "parentRuleCode": "F.4.2", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" + }, + { + "ruleCode": "F.4.2.6.a", + "ruleContent": "A joint design with two perpendicular bond areas may show equivalence using the shear performance of the smaller of the two areas", + "parentRuleCode": "F.4.2.6", + "pageNumber": "30" + }, + { + "ruleCode": "F.4.2.6.b", + "ruleContent": "A joint design with a single bond area must have two separate pull tests with different orientations of the adhesive joint: • Parallel to the pull direction, with the adhesive joint in pure shear • T peel normal to the pull direction, with the adhesive joint in peel", + "parentRuleCode": "F.4.2.6", + "pageNumber": "30" + }, + { + "ruleCode": "F.4.2.6.c", + "ruleContent": "The samples used must: • Have skin thicknesses identical to those used in the actual monocoque • Be manufactured using the same materials and processes The intent is to perform a test of the actual bond overlap, and fail the skin before the bond", + "parentRuleCode": "F.4.2.6", + "pageNumber": "30" + }, + { + "ruleCode": "F.4.2.6.d", + "ruleContent": "The force and displacement data and photos of the test setup must be included in the SES.", + "parentRuleCode": "F.4.2.6", + "pageNumber": "30" + }, + { + "ruleCode": "F.4.2.6.e", + "ruleContent": "The shear strength * normal area of the bond must be more than the UTS * cross sectional area of the skin", + "parentRuleCode": "F.4.2.6", + "pageNumber": "30" }, { "ruleCode": "F.4.3", "ruleContent": "Use of Laminates", "parentRuleCode": "F.4", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.4.3.1", "ruleContent": "Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the nearest plies to core material.", "parentRuleCode": "F.4.3", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.4.3.2", "ruleContent": "The monocoque must have the tested layup direction normal to the cross sections used for Equivalence in the SES, with allowance for taper of the monocoque normal to the cross section.", "parentRuleCode": "F.4.3", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.4.3.3", "ruleContent": "Results from the 3 point bending test will be assigned to the 0 layup direction.", "parentRuleCode": "F.4.3", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.4.3.4", "ruleContent": "All material properties in the directions designated by the SES must be 50% or more of those in the tested “0” direction as calculated by the SES", "parentRuleCode": "F.4.3", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.4.4", "ruleContent": "Equivalent Flat Panel Calculation", "parentRuleCode": "F.4", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.4.4.1", "ruleContent": "When specified, the Equivalence of the chassis must be calculated as a flat panel with the same composition as the chassis about the neutral axis of the laminate.", "parentRuleCode": "F.4.4", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.4.4.2", "ruleContent": "The curvature of the panel and geometric cross section of the chassis must be ignored for these calculations.", "parentRuleCode": "F.4.4", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.4.4.3", "ruleContent": "Calculations of Equivalence that do not reference this section F.4.3 may use the actual geometry of the chassis.", "parentRuleCode": "F.4.4", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.5", - "ruleContent": "CHASSIS REQUIREMENTS This section applies to all Chassis, regardless of material or construction", + "ruleContent": "CHASSIS REQUIREMENTS This section applies to all Chassis, regardless of material or construction Version 1.0 31 Aug 2024", "parentRuleCode": "F", - "pageNumber": "30", - "isFromTOC": false + "pageNumber": "30" }, { "ruleCode": "F.5.1", "ruleContent": "Primary Structure", "parentRuleCode": "F.5", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.1.1", - "ruleContent": "The Primary Structure must be constructed from one or a combination of: • Steel Tubing and Material F.3.2 F.3.4 • Alternative Tubing Materials F.3.2 F.3.5 • Composite Material F.4", + "ruleContent": "The Primary Structure must be constructed from one or a combination of: • Steel Tubing and Material F.3.2 F.3.4 • Alternative Tubing Materials F.3.2 F.3.5 • Composite Material F.4", "parentRuleCode": "F.5.1", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.1.2", - "ruleContent": "Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite types must: a. Meet all relevant requirements F.5.1.1 b. Show Equivalence F.2.3, as applicable c. Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent.", + "ruleContent": "Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite types must:", "parentRuleCode": "F.5.1", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" + }, + { + "ruleCode": "F.5.1.2.a", + "ruleContent": "Meet all relevant requirements F.5.1.1", + "parentRuleCode": "F.5.1.2", + "pageNumber": "31" + }, + { + "ruleCode": "F.5.1.2.b", + "ruleContent": "Show Equivalence F.2.3, as applicable", + "parentRuleCode": "F.5.1.2", + "pageNumber": "31" + }, + { + "ruleCode": "F.5.1.2.c", + "ruleContent": "Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent.", + "parentRuleCode": "F.5.1.2", + "pageNumber": "31" }, { "ruleCode": "F.5.2", "ruleContent": "Bent Tubes or Multiple Tubes", "parentRuleCode": "F.5", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.2.1", "ruleContent": "The minimum radius of any bend, measured at the tube centerline, must be three or more times the tube outside diameter (3 x OD).", "parentRuleCode": "F.5.2", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.2.2", "ruleContent": "Bends must be smooth and continuous with no evidence of crimping or wall failure.", "parentRuleCode": "F.5.2", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.2.3", - "ruleContent": "If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be attached to support it. a. The support tube attachment point must be at the position along the bent tube where it deviates farthest from a straight line connecting the two ends b. The support tube must terminate at a node of the chassis c. The support tube for any bent tube (other than the Upper Side Impact Member or Shoulder Harness Mounting Bar) must be: • The same diameter and thickness as the bent tube • Angled no more than 30° from the plane of the bent tube", + "ruleContent": "If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be attached to support it.", "parentRuleCode": "F.5.2", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { - "ruleCode": "F.5.3", - "ruleContent": "Holes and Openings in Regulated Tubing", - "parentRuleCode": "F.5", - "pageNumber": "31", - "isFromTOC": false + "ruleCode": "F.5.2.3.a", + "ruleContent": "The support tube attachment point must be at the position along the bent tube where it deviates farthest from a straight line connecting the two ends", + "parentRuleCode": "F.5.2.3", + "pageNumber": "31" }, { - "ruleCode": "F.5.3.1", - "ruleContent": "Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES.", + "ruleCode": "F.5.2.3.b", + "ruleContent": "The support tube must terminate at a node of the chassis", + "parentRuleCode": "F.5.2.3", + "pageNumber": "31" + }, + { + "ruleCode": "F.5.2.3.c", + "ruleContent": "The support tube for any bent tube (other than the Upper Side Impact Member or Shoulder Harness Mounting Bar) must be: • The same diameter and thickness as the bent tube • Angled no more than 30° from the plane of the bent tube", + "parentRuleCode": "F.5.2.3", + "pageNumber": "31" + }, + { + "ruleCode": "F.5.3", + "ruleContent": "Holes and Openings in Regulated Tubing", + "parentRuleCode": "F.5", + "pageNumber": "31" + }, + { + "ruleCode": "F.5.3.1", + "ruleContent": "Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES.", "parentRuleCode": "F.5.3", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.3.2", - "ruleContent": "Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic testing or by the drilling of inspection holes on request.", + "ruleContent": "Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic testing or by the drilling of inspection holes on request.", "parentRuleCode": "F.5.3", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.3.3", "ruleContent": "Regulated tubing other than the open lower ends of Roll Hoops must have any open ends closed by a welded cap or inserted metal plug.", "parentRuleCode": "F.5.3", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.4", "ruleContent": "Fasteners in Primary Structure", "parentRuleCode": "F.5", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.4.1", "ruleContent": "Bolted connections in the Primary Structure must use a removable bolt and nut. Bonded fasteners and blind nuts and bolts do not meet this requirement", "parentRuleCode": "F.5.4", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.4.2", "ruleContent": "Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2", "parentRuleCode": "F.5.4", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.4.3", - "ruleContent": "Bolted connections in the Primary Structure using tabs or brackets must have an edge distance ratio “e/D” of 1.5 or higher “D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest free edge Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure”", + "ruleContent": "Bolted connections in the Primary Structure using tabs or brackets must have an edge distance ratio “e/D” of 1.5 or higher “D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest free edge Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.4", - "pageNumber": "31", - "isFromTOC": false + "pageNumber": "31" }, { "ruleCode": "F.5.5", "ruleContent": "Bonding in Regulated Structure", "parentRuleCode": "F.5", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" }, { "ruleCode": "F.5.5.1", "ruleContent": "Adhesive used and referenced bonding strength must be correct for the two substrate types", "parentRuleCode": "F.5.5", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" }, { "ruleCode": "F.5.5.2", "ruleContent": "Document the adhesive choice, age and expiration date, substrate preparation, and the equivalency of the bonded joint in the SES", "parentRuleCode": "F.5.5", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" }, { "ruleCode": "F.5.5.3", "ruleContent": "The SES will reduce any referenced or tested adhesive values by 50%", "parentRuleCode": "F.5.5", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" }, { "ruleCode": "F.5.6", "ruleContent": "Roll Hoops", "parentRuleCode": "F.5", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" }, { "ruleCode": "F.5.6.1", "ruleContent": "The Chassis must include a Main Hoop and a Front Hoop", "parentRuleCode": "F.5.6", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" }, { "ruleCode": "F.5.6.2", "ruleContent": "The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with Structural Tubing", "parentRuleCode": "F.5.6", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" }, { "ruleCode": "F.5.6.3", - "ruleContent": "Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of the two: a. Triangulated at a side view node b. Less than 25 mm from an Attachment point F.7.8", + "ruleContent": "Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of the two:", "parentRuleCode": "F.5.6", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" + }, + { + "ruleCode": "F.5.6.3.a", + "ruleContent": "Triangulated at a side view node", + "parentRuleCode": "F.5.6.3", + "pageNumber": "32" + }, + { + "ruleCode": "F.5.6.3.b", + "ruleContent": "Less than 25 mm from an Attachment point F.7.8", + "parentRuleCode": "F.5.6.3", + "pageNumber": "32" }, { "ruleCode": "F.5.6.4", - "ruleContent": "Roll Hoop and Driver Position When seated normally and restrained by the Driver Restraint System, the helmet of a 95th percentile male (see V.2.1.1) and all of the team’s drivers must: a. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to the top of the Front Hoop. b. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to the lower end of the Main Hoop Bracing if the bracing extends rearwards. c. Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing extends forwards.", + "ruleContent": "Roll Hoop and Driver Position When seated normally and restrained by the Driver Restraint System, the helmet of a 95th percentile male (see V.2.1.1) and all of the team’s drivers must:", "parentRuleCode": "F.5.6", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" + }, + { + "ruleCode": "F.5.6.4.a", + "ruleContent": "Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to the top of the Front Hoop.", + "parentRuleCode": "F.5.6.4", + "pageNumber": "32" + }, + { + "ruleCode": "F.5.6.4.b", + "ruleContent": "Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to the lower end of the Main Hoop Bracing if the bracing extends rearwards.", + "parentRuleCode": "F.5.6.4", + "pageNumber": "32" + }, + { + "ruleCode": "F.5.6.4.c", + "ruleContent": "Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing extends forwards.", + "parentRuleCode": "F.5.6.4", + "pageNumber": "32" }, { "ruleCode": "F.5.6.5", - "ruleContent": "Driver Template A two dimensional template used to represent the 95th percentile male is made to these dimensions (see figure below): • A circle of diameter 200 mm will represent the hips and buttocks. • A circle of diameter 200 mm will represent the shoulder/cervical region. • A circle of diameter 300 mm will represent the head (with helmet). • A straight line measuring 490 mm will connect the centers of the two 200 mm circles. • A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle.", + "ruleContent": "Driver Template A two dimensional template used to represent the 95th percentile male is made to these dimensions (see figure below): • A circle of diameter 200 mm will represent the hips and buttocks. • A circle of diameter 200 mm will represent the shoulder/cervical region. • A circle of diameter 300 mm will represent the head (with helmet). • A straight line measuring 490 mm will connect the centers of the two 200 mm circles. • A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle. Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.6", - "pageNumber": "32", - "isFromTOC": false + "pageNumber": "32" }, { "ruleCode": "F.5.6.6", "ruleContent": "Driver Template Position The Driver Template will be positioned as follows: • The seat will be adjusted to the rearmost position • The pedals will be put in the most forward position • The bottom 200 mm circle will be put on the seat bottom where the distance between the center of this circle and the rearmost face of the pedals is no less than 915 mm • The middle 200 mm circle, representing the shoulders, will be positioned on the seat back • The upper 300 mm circle will be positioned no more than 25 mm away from the head restraint (where the driver’s helmet would normally be located while driving)", "parentRuleCode": "F.5.6", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.7", "ruleContent": "Front Hoop", "parentRuleCode": "F.5", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.7.1", "ruleContent": "The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c", "parentRuleCode": "F.5.7", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.7.2", "ruleContent": "With proper Triangulation, the Front Hoop may be fabricated from more than one piece of tubing", "parentRuleCode": "F.5.7", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.7.3", "ruleContent": "The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down to the lowest Frame Member on the other side of the Frame.", "parentRuleCode": "F.5.7", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.7.4", - "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position. See figure after F.5.9.6 below", + "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position. See figure after F.5.9.6 below", "parentRuleCode": "F.5.7", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.7.5", "ruleContent": "The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance is measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight ahead position.", "parentRuleCode": "F.5.7", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.7.6", "ruleContent": "In side view, any part of the Front Hoop above the Upper Side Impact Structure must be inclined less than 20° from the vertical.", "parentRuleCode": "F.5.7", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.7.7", "ruleContent": "A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during Technical Inspection", "parentRuleCode": "F.5.7", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.8", "ruleContent": "Main Hoop", "parentRuleCode": "F.5", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.8.1", - "ruleContent": "The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.g", + "ruleContent": "The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.g Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.8", - "pageNumber": "33", - "isFromTOC": false + "pageNumber": "33" }, { "ruleCode": "F.5.8.2", "ruleContent": "The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque on the other side of the Frame.", "parentRuleCode": "F.5.8", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.8.3", - "ruleContent": "In the side view of the vehicle, a. The part of the Main Hoop that lies above its attachment point to the upper Side Impact Tube must be less than 10° from vertical. b. The part of the Main Hoop below the Upper Side Impact Member attachment: • May be forward at any angle • Must not be rearward more than 10° from vertical", + "ruleContent": "In the side view of the vehicle,", "parentRuleCode": "F.5.8", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" + }, + { + "ruleCode": "F.5.8.3.a", + "ruleContent": "The part of the Main Hoop that lies above its attachment point to the upper Side Impact Tube must be less than 10° from vertical.", + "parentRuleCode": "F.5.8.3", + "pageNumber": "34" + }, + { + "ruleCode": "F.5.8.3.b", + "ruleContent": "The part of the Main Hoop below the Upper Side Impact Member attachment: • May be forward at any angle • Must not be rearward more than 10° from vertical", + "parentRuleCode": "F.5.8.3", + "pageNumber": "34" }, { "ruleCode": "F.5.8.4", "ruleContent": "In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom tubes of the Major Structure of the Chassis.", "parentRuleCode": "F.5.8", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.9", "ruleContent": "Main Hoop Braces", "parentRuleCode": "F.5", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.9.1", "ruleContent": "Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h", "parentRuleCode": "F.5.9", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.9.2", "ruleContent": "The Main Hoop must be supported by two Braces extending in the forward or rearward direction, one on each of the left and right sides of the Main Hoop.", "parentRuleCode": "F.5.9", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.9.3", "ruleContent": "In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the same side of the vertical line through the top of the Main Hoop. (If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, the Braces must be rearward of the Main Hoop)", "parentRuleCode": "F.5.9", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.9.4", "ruleContent": "The Main Hoop Braces must be attached 160 mm or less below the top most surface of the Main Hoop. The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop", "parentRuleCode": "F.5.9", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.9.5", "ruleContent": "The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more.", "parentRuleCode": "F.5.9", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.9.6", "ruleContent": "The Main Hoop Braces must be straight, without any bends.", "parentRuleCode": "F.5.9", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" }, { "ruleCode": "F.5.9.7", - "ruleContent": "The Main Hoop Braces must be: a. Securely integrated into the Frame b. Capable of transmitting all loads from the Main Hoop into the Major Structure of the Chassis without failing", + "ruleContent": "The Main Hoop Braces must be:", "parentRuleCode": "F.5.9", - "pageNumber": "34", - "isFromTOC": false + "pageNumber": "34" + }, + { + "ruleCode": "F.5.9.7.a", + "ruleContent": "Securely integrated into the Frame", + "parentRuleCode": "F.5.9.7", + "pageNumber": "34" + }, + { + "ruleCode": "F.5.9.7.b", + "ruleContent": "Capable of transmitting all loads from the Main Hoop into the Major Structure of the Chassis without failing Version 1.0 31 Aug 2024", + "parentRuleCode": "F.5.9.7", + "pageNumber": "34" }, { "ruleCode": "F.5.10", "ruleContent": "Head Restraint Protection An additional frame member may be added to meet T.2.8.3.b", "parentRuleCode": "F.5", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.10.1", - "ruleContent": "If used, the Head Restraint Protection frame member must: a. Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop b. Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.h c. Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3)", + "ruleContent": "If used, the Head Restraint Protection frame member must:", "parentRuleCode": "F.5.10", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" + }, + { + "ruleCode": "F.5.10.1.a", + "ruleContent": "Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop", + "parentRuleCode": "F.5.10.1", + "pageNumber": "35" + }, + { + "ruleCode": "F.5.10.1.b", + "ruleContent": "Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.h", + "parentRuleCode": "F.5.10.1", + "pageNumber": "35" + }, + { + "ruleCode": "F.5.10.1.c", + "ruleContent": "Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3)", + "parentRuleCode": "F.5.10.1", + "pageNumber": "35" }, { "ruleCode": "F.5.10.2", "ruleContent": "The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection", "parentRuleCode": "F.5.10", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.11", "ruleContent": "External Items", "parentRuleCode": "F.5", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.11.1", "ruleContent": "Definition - items outside the exact outline of the part of the Primary Structure Envelope", "parentRuleCode": "F.5.11", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.1.11", "ruleContent": "defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other tube nodes or composite attachments", "parentRuleCode": "F.1", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.11.2", - "ruleContent": "External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if the mount is one of the two: a. Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis b. Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will fail below the allowable load as calculated by the SES", + "ruleContent": "External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if the mount is one of the two:", "parentRuleCode": "F.5.11", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" + }, + { + "ruleCode": "F.5.11.2.a", + "ruleContent": "Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis", + "parentRuleCode": "F.5.11.2", + "pageNumber": "35" + }, + { + "ruleCode": "F.5.11.2.b", + "ruleContent": "Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will fail below the allowable load as calculated by the SES", + "parentRuleCode": "F.5.11.2", + "pageNumber": "35" }, { "ruleCode": "F.5.11.3", - "ruleContent": "If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above: a. Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service Disconnect, Master Switches or Shutdown Buttons b. Lightweight mounts for items inside the Main Hoop Braces", + "ruleContent": "If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above:", "parentRuleCode": "F.5.11", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" + }, + { + "ruleCode": "F.5.11.3.a", + "ruleContent": "Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service Disconnect, Master Switches or Shutdown Buttons", + "parentRuleCode": "F.5.11.3", + "pageNumber": "35" + }, + { + "ruleCode": "F.5.11.3.b", + "ruleContent": "Lightweight mounts for items inside the Main Hoop Braces", + "parentRuleCode": "F.5.11.3", + "pageNumber": "35" }, { "ruleCode": "F.5.11.4", "ruleContent": "Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the Main Hoop Braces or Main Hoop above other tube nodes or composite attachments", "parentRuleCode": "F.5.11", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.11.5", "ruleContent": "Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must be longitudinally offset to avoid point loading in a rollover", "parentRuleCode": "F.5.11", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.11.6", "ruleContent": "External Items should not point at the driver", "parentRuleCode": "F.5.11", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.12", "ruleContent": "Mechanically Attached Roll Hoop Bracing", "parentRuleCode": "F.5", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.12.1", - "ruleContent": "When Roll Hoop Bracing is mechanically attached: a. The threaded fasteners used to secure non permanent joints are Critical Fasteners, see T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7 b. No spherical rod ends are allowed c. The attachment holes in the lugs, the attached bracing and the sleeves and tubes must be a close fit with the pin or bolt", + "ruleContent": "When Roll Hoop Bracing is mechanically attached:", "parentRuleCode": "F.5.12", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" + }, + { + "ruleCode": "F.5.12.1.a", + "ruleContent": "The threaded fasteners used to secure non permanent joints are Critical Fasteners, see T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7", + "parentRuleCode": "F.5.12.1", + "pageNumber": "35" + }, + { + "ruleCode": "F.5.12.1.b", + "ruleContent": "No spherical rod ends are allowed", + "parentRuleCode": "F.5.12.1", + "pageNumber": "35" + }, + { + "ruleCode": "F.5.12.1.c", + "ruleContent": "The attachment holes in the lugs, the attached bracing and the sleeves and tubes must be a close fit with the pin or bolt", + "parentRuleCode": "F.5.12.1", + "pageNumber": "35" }, { "ruleCode": "F.5.12.2", - "ruleContent": "Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint Figure – Double Lug Joint", + "ruleContent": "Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint Version 1.0 31 Aug 2024 Figure – Double Lug Joint", "parentRuleCode": "F.5.12", - "pageNumber": "35", - "isFromTOC": false + "pageNumber": "35" }, { "ruleCode": "F.5.12.3", - "ruleContent": "For Double Lug Joints, each lug must: a. Be minimum 4.5 mm (0.177 in) thickness steel b. Measure 25 mm minimum perpendicular to the axis of the bracing c. Be as short as practical along the axis of the bracing.", + "ruleContent": "For Double Lug Joints, each lug must:", "parentRuleCode": "F.5.12", - "pageNumber": "36", - "isFromTOC": false + "pageNumber": "36" + }, + { + "ruleCode": "F.5.12.3.a", + "ruleContent": "Be minimum 4.5 mm (0.177 in) thickness steel", + "parentRuleCode": "F.5.12.3", + "pageNumber": "36" + }, + { + "ruleCode": "F.5.12.3.b", + "ruleContent": "Measure 25 mm minimum perpendicular to the axis of the bracing", + "parentRuleCode": "F.5.12.3", + "pageNumber": "36" + }, + { + "ruleCode": "F.5.12.3.c", + "ruleContent": "Be as short as practical along the axis of the bracing.", + "parentRuleCode": "F.5.12.3", + "pageNumber": "36" }, { "ruleCode": "F.5.12.4", "ruleContent": "All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must include a capping arrangement", "parentRuleCode": "F.5.12", - "pageNumber": "36", - "isFromTOC": false + "pageNumber": "36" }, { "ruleCode": "F.5.12.5", - "ruleContent": "In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above Figure – Sleeved Butt Joint", + "ruleContent": "In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above Figure – Sleeved Butt Joint", "parentRuleCode": "F.5.12", - "pageNumber": "36", - "isFromTOC": false + "pageNumber": "36" }, { "ruleCode": "F.5.12.6", - "ruleContent": "For Sleeved Butt Joints, the sleeve must: a. Have a minimum length of 75 mm; 37.5 mm to each side of the joint b. Be external to the base tubes, with a close fit around the base tubes. c. Have a wall thickness of 2.0 mm or more", + "ruleContent": "For Sleeved Butt Joints, the sleeve must:", "parentRuleCode": "F.5.12", - "pageNumber": "36", - "isFromTOC": false + "pageNumber": "36" + }, + { + "ruleCode": "F.5.12.6.a", + "ruleContent": "Have a minimum length of 75 mm; 37.5 mm to each side of the joint", + "parentRuleCode": "F.5.12.6", + "pageNumber": "36" + }, + { + "ruleCode": "F.5.12.6.b", + "ruleContent": "Be external to the base tubes, with a close fit around the base tubes.", + "parentRuleCode": "F.5.12.6", + "pageNumber": "36" + }, + { + "ruleCode": "F.5.12.6.c", + "ruleContent": "Have a wall thickness of 2.0 mm or more", + "parentRuleCode": "F.5.12.6", + "pageNumber": "36" }, { "ruleCode": "F.5.12.7", - "ruleContent": "In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above", + "ruleContent": "In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above", "parentRuleCode": "F.5.12", - "pageNumber": "36", - "isFromTOC": false + "pageNumber": "36" }, { "ruleCode": "F.5.13", "ruleContent": "Other Bracing Requirements", "parentRuleCode": "F.5", - "pageNumber": "36", - "isFromTOC": false + "pageNumber": "36" }, { "ruleCode": "F.5.13.1", "ruleContent": "Where the braces are not welded to steel Frame Members, the braces must be securely attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2", "parentRuleCode": "F.5.13", - "pageNumber": "36", - "isFromTOC": false + "pageNumber": "36" }, { "ruleCode": "F.5.13.2", - "ruleContent": "Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness steel.", + "ruleContent": "Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness steel. Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.13", - "pageNumber": "36", - "isFromTOC": false + "pageNumber": "36" }, { "ruleCode": "F.5.14", - "ruleContent": "Steering Protection Steering system racks or mounting components that are external (vertically above or below) to the Primary Structure must be protected from frontal impact. The protective structure must: a. Be F.3.2.1.n or Equivalent b. Extend to the vertical limit of the steering component(s) c. Extend to the local width of the Chassis d. Meet F.7.8 if not welded to the Chassis", + "ruleContent": "Steering Protection Steering system racks or mounting components that are external (vertically above or below) to the Primary Structure must be protected from frontal impact. The protective structure must:", "parentRuleCode": "F.5", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" + }, + { + "ruleCode": "F.5.14.a", + "ruleContent": "Be F.3.2.1.n or Equivalent", + "parentRuleCode": "F.5.14", + "pageNumber": "37" + }, + { + "ruleCode": "F.5.14.b", + "ruleContent": "Extend to the vertical limit of the steering component(s)", + "parentRuleCode": "F.5.14", + "pageNumber": "37" + }, + { + "ruleCode": "F.5.14.c", + "ruleContent": "Extend to the local width of the Chassis", + "parentRuleCode": "F.5.14", + "pageNumber": "37" + }, + { + "ruleCode": "F.5.14.d", + "ruleContent": "Meet F.7.8 if not welded to the Chassis", + "parentRuleCode": "F.5.14", + "pageNumber": "37" }, { "ruleCode": "F.5.15", "ruleContent": "Other Side Tube Requirements If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the Frame This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or frame tube, and the driver’s neck contacting this brace or tube.", "parentRuleCode": "F.5", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" }, { "ruleCode": "F.5.16", - "ruleContent": "Component Protection When specified in the rules, components must be protected by one or two of: a. Fully Triangulated structure with tubes meeting F.3.2.1.n b. Structure Equivalent to the above, as determined per F.4.1.3", + "ruleContent": "Component Protection When specified in the rules, components must be protected by one or two of:", "parentRuleCode": "F.5", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" + }, + { + "ruleCode": "F.5.16.a", + "ruleContent": "Fully Triangulated structure with tubes meeting F.3.2.1.n", + "parentRuleCode": "F.5.16", + "pageNumber": "37" + }, + { + "ruleCode": "F.5.16.b", + "ruleContent": "Structure Equivalent to the above, as determined per F.4.1.3", + "parentRuleCode": "F.5.16", + "pageNumber": "37" }, { "ruleCode": "F.6", "ruleContent": "TUBE FRAMES", "parentRuleCode": "F", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" }, { "ruleCode": "F.6.1", "ruleContent": "Front Bulkhead The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a", "parentRuleCode": "F.6", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" }, { "ruleCode": "F.6.2", "ruleContent": "Front Bulkhead Support", "parentRuleCode": "F.6", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" }, { "ruleCode": "F.6.2.1", "ruleContent": "Frame Members of the Front Bulkhead Support system must be constructed of closed section tubing meeting F.3.2.1.b", "parentRuleCode": "F.6.2", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" }, { "ruleCode": "F.6.2.2", "ruleContent": "The Front Bulkhead must be securely integrated into the Frame.", "parentRuleCode": "F.6.2", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" }, { "ruleCode": "F.6.2.3", - "ruleContent": "The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame Members on each side of the vehicle; an upper member; lower member and diagonal brace to provide Triangulation. a. The top of the upper support member must be attached 50 mm or less from the top surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 mm above and 50 mm below the Upper Side Impact member. b. If the upper support member is further than 100 mm above the top of the Upper Side Impact member, then properly Triangulated bracing is required to transfer load to the Main Hoop by one of: • the Upper Side Impact member • an additional member transmitting load from the junction of the Upper Support Member with the Front Hoop c. The lower support member must be attached to the base of the Front Bulkhead and the base of the Front Hoop d. The diagonal brace must properly Triangulate the upper and lower support members", + "ruleContent": "The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame Members on each side of the vehicle; an upper member; lower member and diagonal brace to provide Triangulation.", "parentRuleCode": "F.6.2", - "pageNumber": "37", - "isFromTOC": false + "pageNumber": "37" + }, + { + "ruleCode": "F.6.2.3.a", + "ruleContent": "The top of the upper support member must be attached 50 mm or less from the top surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 mm above and 50 mm below the Upper Side Impact member.", + "parentRuleCode": "F.6.2.3", + "pageNumber": "37" + }, + { + "ruleCode": "F.6.2.3.b", + "ruleContent": "If the upper support member is further than 100 mm above the top of the Upper Side Impact member, then properly Triangulated bracing is required to transfer load to the Main Hoop by one of: • the Upper Side Impact member • an additional member transmitting load from the junction of the Upper Support Member with the Front Hoop", + "parentRuleCode": "F.6.2.3", + "pageNumber": "37" + }, + { + "ruleCode": "F.6.2.3.c", + "ruleContent": "The lower support member must be attached to the base of the Front Bulkhead and the base of the Front Hoop", + "parentRuleCode": "F.6.2.3", + "pageNumber": "37" + }, + { + "ruleCode": "F.6.2.3.d", + "ruleContent": "The diagonal brace must properly Triangulate the upper and lower support members Version 1.0 31 Aug 2024", + "parentRuleCode": "F.6.2.3", + "pageNumber": "37" }, { "ruleCode": "F.6.2.4", "ruleContent": "Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 are met", "parentRuleCode": "F.6.2", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.2.5", "ruleContent": "Examples of acceptable configurations of members may be found in the SES", "parentRuleCode": "F.6.2", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.3", "ruleContent": "Front Hoop Bracing", "parentRuleCode": "F.6", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.3.1", "ruleContent": "Front Hoop Braces must be constructed of material meeting F.3.2.1.d", "parentRuleCode": "F.6.3", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.3.2", "ruleContent": "The Front Hoop must be supported by two Braces extending in the forward direction, one on each of the left and right sides of the Front Hoop.", "parentRuleCode": "F.6.3", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.3.3", "ruleContent": "The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to the structure in front of the driver’s feet.", "parentRuleCode": "F.6.3", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.3.4", - "ruleContent": "The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 above", + "ruleContent": "The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 above", "parentRuleCode": "F.6.3", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.3.5", "ruleContent": "If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully Triangulated structural node.", "parentRuleCode": "F.6.3", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.3.6", "ruleContent": "The Front Hoop Braces must be straight, without any bends", "parentRuleCode": "F.6.3", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.4", "ruleContent": "Side Impact Structure", "parentRuleCode": "F.6", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.4.1", "ruleContent": "Frame Members of the Side Impact Structure must be constructed of closed section tubing meeting F.3.2.1.e or F.3.2.1.f, as applicable", "parentRuleCode": "F.6.4", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.4.2", "ruleContent": "With proper Triangulation, Side Impact Structure members may be fabricated from more than one piece of tubing.", "parentRuleCode": "F.6.4", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.4.3", "ruleContent": "The Side Impact Structure must include three or more tubular members located on each side of the driver while seated in the normal driving position", "parentRuleCode": "F.6.4", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.4.4", - "ruleContent": "The Upper Side Impact Member must: a. Connect the Main Hoop and the Front Hoop. b. Have its top edge entirely in a zone that is parallel to the ground between 265 mm and 320 mm above the lowest point of the top surface of the Lower Side Impact Member", + "ruleContent": "The Upper Side Impact Member must:", "parentRuleCode": "F.6.4", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" + }, + { + "ruleCode": "F.6.4.4.a", + "ruleContent": "Connect the Main Hoop and the Front Hoop.", + "parentRuleCode": "F.6.4.4", + "pageNumber": "38" + }, + { + "ruleCode": "F.6.4.4.b", + "ruleContent": "Have its top edge entirely in a zone that is parallel to the ground between 265 mm and 320 mm above the lowest point of the top surface of the Lower Side Impact Member", + "parentRuleCode": "F.6.4.4", + "pageNumber": "38" }, { "ruleCode": "F.6.4.5", - "ruleContent": "The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the bottom of the Front Hoop.", + "ruleContent": "The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the bottom of the Front Hoop. Version 1.0 31 Aug 2024", "parentRuleCode": "F.6.4", - "pageNumber": "38", - "isFromTOC": false + "pageNumber": "38" }, { "ruleCode": "F.6.4.6", - "ruleContent": "The Diagonal Side Impact Member must: a. Connect the Upper Side Impact Member and Lower Side Impact Member forward of the Main Hoop and rearward of the Front Hoop b. Completely Triangulate the bays created by the Upper and Lower Side Impact Members.", + "ruleContent": "The Diagonal Side Impact Member must:", "parentRuleCode": "F.6.4", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" + }, + { + "ruleCode": "F.6.4.6.a", + "ruleContent": "Connect the Upper Side Impact Member and Lower Side Impact Member forward of the Main Hoop and rearward of the Front Hoop", + "parentRuleCode": "F.6.4.6", + "pageNumber": "39" + }, + { + "ruleCode": "F.6.4.6.b", + "ruleContent": "Completely Triangulate the bays created by the Upper and Lower Side Impact Members.", + "parentRuleCode": "F.6.4.6", + "pageNumber": "39" }, { "ruleCode": "F.6.5", "ruleContent": "Shoulder Harness Mounting", "parentRuleCode": "F.6", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.6.5.1", - "ruleContent": "The Shoulder Harness Mounting Bar must: a. Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k b. Attach to the Main Hoop on the left and right sides of the chassis", + "ruleContent": "The Shoulder Harness Mounting Bar must:", "parentRuleCode": "F.6.5", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" + }, + { + "ruleCode": "F.6.5.1.a", + "ruleContent": "Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k", + "parentRuleCode": "F.6.5.1", + "pageNumber": "39" + }, + { + "ruleCode": "F.6.5.1.b", + "ruleContent": "Attach to the Main Hoop on the left and right sides of the chassis", + "parentRuleCode": "F.6.5.1", + "pageNumber": "39" }, { "ruleCode": "F.6.5.2", - "ruleContent": "Bent Shoulder Harness Mounting Bars must: a. Meet F.5.2.1 and F.5.2.2 b. Have bracing members attached at the bend(s) and to the Main Hoop. • Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l • The included angle in side view between the Shoulder Harness Bar and the braces must be no less than 30°.", + "ruleContent": "Bent Shoulder Harness Mounting Bars must:", "parentRuleCode": "F.6.5", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" + }, + { + "ruleCode": "F.6.5.2.a", + "ruleContent": "Meet F.5.2.1 and F.5.2.2", + "parentRuleCode": "F.6.5.2", + "pageNumber": "39" + }, + { + "ruleCode": "F.6.5.2.b", + "ruleContent": "Have bracing members attached at the bend(s) and to the Main Hoop. • Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l • The included angle in side view between the Shoulder Harness Bar and the braces must be no less than 30°.", + "parentRuleCode": "F.6.5.2", + "pageNumber": "39" }, { "ruleCode": "F.6.5.3", "ruleContent": "The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar", "parentRuleCode": "F.6.5", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.6.6", "ruleContent": "Main Hoop Bracing Supports", "parentRuleCode": "F.6", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.6.6.1", "ruleContent": "Frame Members of the Main Hoop Bracing Support system must be constructed of closed section tubing meeting F.3.2.1.i", "parentRuleCode": "F.6.6", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.6.6.2", - "ruleContent": "The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a minimum of two Frame Members on each side of the vehicle: an upper member and a lower member in a properly Triangulated configuration. a. The upper support member must attach to the node where the upper Side Impact Member attaches to the Main Hoop. b. The lower support member must attach to the node where the lower Side Impact Member attaches to the Main Hoop. c. Each of the above members may be multiple or bent tubes provided the requirements of", + "ruleContent": "The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a minimum of two Frame Members on each side of the vehicle: an upper member and a lower member in a properly Triangulated configuration.", "parentRuleCode": "F.6.6", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" + }, + { + "ruleCode": "F.6.6.2.a", + "ruleContent": "The upper support member must attach to the node where the upper Side Impact Member attaches to the Main Hoop.", + "parentRuleCode": "F.6.6.2", + "pageNumber": "39" + }, + { + "ruleCode": "F.6.6.2.b", + "ruleContent": "The lower support member must attach to the node where the lower Side Impact Member attaches to the Main Hoop.", + "parentRuleCode": "F.6.6.2", + "pageNumber": "39" + }, + { + "ruleCode": "F.6.6.2.c", + "ruleContent": "Each of the above members may be multiple or bent tubes provided the requirements of", + "parentRuleCode": "F.6.6.2", + "pageNumber": "39" }, { "ruleCode": "F.5.2", - "ruleContent": "are met. d. Examples of acceptable configurations of members may be found in the SES.", + "ruleContent": "are met.", "parentRuleCode": "F.5", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" + }, + { + "ruleCode": "F.5.2.d", + "ruleContent": "Examples of acceptable configurations of members may be found in the SES.", + "parentRuleCode": "F.5.2", + "pageNumber": "39" }, { "ruleCode": "F.7", "ruleContent": "MONOCOQUE", "parentRuleCode": "F", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.7.1", "ruleContent": "General Requirements", "parentRuleCode": "F.7", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.7.1.1", "ruleContent": "The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension", "parentRuleCode": "F.7.1", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.7.1.2", "ruleContent": "Composite and metallic monocoques have the same requirements", "parentRuleCode": "F.7.1", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.7.1.3", "ruleContent": "Corners between panels used for structural equivalence must contain core", "parentRuleCode": "F.7.1", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.7.1.4", - "ruleContent": "An inspection hole approximately 4mm in diameter must be drilled through a low stress location of each monocoque section regulated by the Structural Equivalency Spreadsheet This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b", + "ruleContent": "An inspection hole approximately 4mm in diameter must be drilled through a low stress location of each monocoque section regulated by the Structural Equivalency Spreadsheet This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b Version 1.0 31 Aug 2024", "parentRuleCode": "F.7.1", - "pageNumber": "39", - "isFromTOC": false + "pageNumber": "39" }, { "ruleCode": "F.7.1.5", - "ruleContent": "Composite monocoques must: a. Meet the materials requirements in F.4 Composite and Other Materials b. Use data from the laminate testing results as the basis for any strength or stiffness calculations", + "ruleContent": "Composite monocoques must:", "parentRuleCode": "F.7.1", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" + }, + { + "ruleCode": "F.7.1.5.a", + "ruleContent": "Meet the materials requirements in F.4 Composite and Other Materials", + "parentRuleCode": "F.7.1.5", + "pageNumber": "40" + }, + { + "ruleCode": "F.7.1.5.b", + "ruleContent": "Use data from the laminate testing results as the basis for any strength or stiffness calculations", + "parentRuleCode": "F.7.1.5", + "pageNumber": "40" }, { "ruleCode": "F.7.2", "ruleContent": "Front Bulkhead", "parentRuleCode": "F.7", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.2.1", "ruleContent": "When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1", "parentRuleCode": "F.7.2", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.2.2", "ruleContent": "The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm measured from the rearmost face of the Front Bulkhead", "parentRuleCode": "F.7.2", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.2.3", "ruleContent": "Any Front Bulkhead which supports the IA plate must have a perimeter shear strength equivalent to a 1.5 mm thick steel plate", "parentRuleCode": "F.7.2", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.3", "ruleContent": "Front Bulkhead Support", "parentRuleCode": "F.7", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.3.1", "ruleContent": "In addition to proving that the strength of the monocoque is sufficient, the monocoque must have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces.", "parentRuleCode": "F.7.3", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.3.2", "ruleContent": "The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or more than the EI of one steel tube that it replaces when calculated as per F.4.3", "parentRuleCode": "F.7.3", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.3.3", "ruleContent": "The perimeter shear strength of the monocoque laminate in the Front Bulkhead support structure must be 4 kN or more for a section with a diameter of 25 mm. This must be proven by a physical test completed per F.4.2.5 and the results included in the SES.", "parentRuleCode": "F.7.3", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.4", "ruleContent": "Front Hoop Attachment", "parentRuleCode": "F.7", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.4.1", - "ruleContent": "The Front Hoop must be mechanically attached to the monocoque a. Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c b. The Front Hoop tube must be mechanically connected to the Mounting Plate with Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop tube along the two sides of the mounting plate", + "ruleContent": "The Front Hoop must be mechanically attached to the monocoque", "parentRuleCode": "F.7.4", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" + }, + { + "ruleCode": "F.7.4.1.a", + "ruleContent": "Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c", + "parentRuleCode": "F.7.4.1", + "pageNumber": "40" + }, + { + "ruleCode": "F.7.4.1.b", + "ruleContent": "The Front Hoop tube must be mechanically connected to the Mounting Plate with Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop tube along the two sides of the mounting plate", + "parentRuleCode": "F.7.4.1", + "pageNumber": "40" }, { "ruleCode": "F.7.4.2", "ruleContent": "Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any bends and nodes that are not at the top center of the Front Hoop", "parentRuleCode": "F.7.4", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.4.3", - "ruleContent": "The Front Hoop may be fully laminated into the monocoque if: a. The Front Hoop has core fit tightly around its entire circumference. Expanding foam is not permitted b. Equivalence to six or more mounts compliant with F.7.8 must show in the SES c. A small gap in the laminate (approximately 25 mm) exists for inspection of the Front Hoop F.5.7.7", + "ruleContent": "The Front Hoop may be fully laminated into the monocoque if:", "parentRuleCode": "F.7.4", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" + }, + { + "ruleCode": "F.7.4.3.a", + "ruleContent": "The Front Hoop has core fit tightly around its entire circumference. Expanding foam is not permitted", + "parentRuleCode": "F.7.4.3", + "pageNumber": "40" + }, + { + "ruleCode": "F.7.4.3.b", + "ruleContent": "Equivalence to six or more mounts compliant with F.7.8 must show in the SES", + "parentRuleCode": "F.7.4.3", + "pageNumber": "40" + }, + { + "ruleCode": "F.7.4.3.c", + "ruleContent": "A small gap in the laminate (approximately 25 mm) exists for inspection of the Front Hoop F.5.7.7", + "parentRuleCode": "F.7.4.3", + "pageNumber": "40" }, { "ruleCode": "F.7.4.4", - "ruleContent": "Adhesive must not be the sole method of attaching the Front Hoop to the monocoque", + "ruleContent": "Adhesive must not be the sole method of attaching the Front Hoop to the monocoque Version 1.0 31 Aug 2024", "parentRuleCode": "F.7.4", - "pageNumber": "40", - "isFromTOC": false + "pageNumber": "40" }, { "ruleCode": "F.7.5", "ruleContent": "Side Impact Structure", "parentRuleCode": "F.7", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.5.1", "ruleContent": "Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front Hoop consisting of the combination of a vertical section minimum 290 mm in height from the bottom surface of the floor of the monocoque and half the horizontal floor", "parentRuleCode": "F.7.5", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.5.2", "ruleContent": "The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it replaces", "parentRuleCode": "F.7.5", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.5.3", - "ruleContent": "The portion of the Side Impact Zone that is vertically between the upper surface of the floor and 320 mm above the lowest point of the upper surface of the floor (see figure above) must have: a. Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3 b. No openings in Side View between the Front Hoop and Main Hoop", + "ruleContent": "The portion of the Side Impact Zone that is vertically between the upper surface of the floor and 320 mm above the lowest point of the upper surface of the floor (see figure above) must have:", "parentRuleCode": "F.7.5", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" + }, + { + "ruleCode": "F.7.5.3.a", + "ruleContent": "Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3", + "parentRuleCode": "F.7.5.3", + "pageNumber": "41" + }, + { + "ruleCode": "F.7.5.3.b", + "ruleContent": "No openings in Side View between the Front Hoop and Main Hoop", + "parentRuleCode": "F.7.5.3", + "pageNumber": "41" }, { "ruleCode": "F.7.5.4", "ruleContent": "Horizontal floor Equivalence must be calculated per F.4.3", "parentRuleCode": "F.7.5", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.5.5", "ruleContent": "The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a section with a diameter of 25 mm. This must be proven by physical test completed per F.4.2.5 and the results included in the SES.", "parentRuleCode": "F.7.5", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.6", "ruleContent": "Main Hoop Attachment", "parentRuleCode": "F.7", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.6.1", - "ruleContent": "The Main Hoop must be mechanically attached to the monocoque a. Main Hoop mounting plates must be 2.0 mm minimum thickness steel b. The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 mm minimum thickness steel plates parallel to the two sides of the tube, with gussets from the Main Hoop tube along the two sides of the mounting plate", + "ruleContent": "The Main Hoop must be mechanically attached to the monocoque", "parentRuleCode": "F.7.6", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" + }, + { + "ruleCode": "F.7.6.1.a", + "ruleContent": "Main Hoop mounting plates must be 2.0 mm minimum thickness steel", + "parentRuleCode": "F.7.6.1", + "pageNumber": "41" + }, + { + "ruleCode": "F.7.6.1.b", + "ruleContent": "The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 mm minimum thickness steel plates parallel to the two sides of the tube, with gussets from the Main Hoop tube along the two sides of the mounting plate", + "parentRuleCode": "F.7.6.1", + "pageNumber": "41" }, { "ruleCode": "F.7.6.2", "ruleContent": "Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and nodes that are below the top of the monocoque", "parentRuleCode": "F.7.6", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.7", "ruleContent": "Roll Hoop Bracing Attachment Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8.", "parentRuleCode": "F.7", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.8", "ruleContent": "Attachments", "parentRuleCode": "F.7", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" }, { "ruleCode": "F.7.8.1", - "ruleContent": "Each attachment point between the monocoque or composite panels and the other Primary Structure must be able to carry a minimum load of 30 kN in any direction. a. When a Roll Hoop attaches in three locations on each side, the attachments must be located at the bottom, top, and a location near the midpoint b. When a Roll Hoop attaches at only the bottom and a point between the top and the midpoint on each side, each of the four attachments must show load strength of 45 kN in all directions", + "ruleContent": "Each attachment point between the monocoque or composite panels and the other Primary Structure must be able to carry a minimum load of 30 kN in any direction.", "parentRuleCode": "F.7.8", - "pageNumber": "41", - "isFromTOC": false + "pageNumber": "41" + }, + { + "ruleCode": "F.7.8.1.a", + "ruleContent": "When a Roll Hoop attaches in three locations on each side, the attachments must be located at the bottom, top, and a location near the midpoint Version 1.0 31 Aug 2024", + "parentRuleCode": "F.7.8.1", + "pageNumber": "41" + }, + { + "ruleCode": "F.7.8.1.b", + "ruleContent": "When a Roll Hoop attaches at only the bottom and a point between the top and the midpoint on each side, each of the four attachments must show load strength of 45 kN in all directions", + "parentRuleCode": "F.7.8.1", + "pageNumber": "41" }, { "ruleCode": "F.7.8.2", - "ruleContent": "If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must obey one of the two: a. Parallel brackets attached to the two sides of the Main Hoop and the two sides of the Side Impact Structure b. Two mostly perpendicular brackets attached to the Main Hoop and the side and back of the monocoque", + "ruleContent": "If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must obey one of the two:", "parentRuleCode": "F.7.8", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" + }, + { + "ruleCode": "F.7.8.2.a", + "ruleContent": "Parallel brackets attached to the two sides of the Main Hoop and the two sides of the Side Impact Structure", + "parentRuleCode": "F.7.8.2", + "pageNumber": "42" + }, + { + "ruleCode": "F.7.8.2.b", + "ruleContent": "Two mostly perpendicular brackets attached to the Main Hoop and the side and back of the monocoque", + "parentRuleCode": "F.7.8.2", + "pageNumber": "42" }, { "ruleCode": "F.7.8.3", "ruleContent": "The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient shear area is provided.", "parentRuleCode": "F.7.8", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" }, { "ruleCode": "F.7.8.4", "ruleContent": "Proof that the brackets are sufficiently stiff must be documented in the SES.", "parentRuleCode": "F.7.8", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" }, { "ruleCode": "F.7.8.5", "ruleContent": "Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2", "parentRuleCode": "F.7.8", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" }, { "ruleCode": "F.7.8.6", "ruleContent": "Each attachment point requires backing plates which meet one of: • Steel with a minimum thickness of 2 mm • Alternate materials if Equivalency is approved", "parentRuleCode": "F.7.8", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" }, { "ruleCode": "F.7.8.7", "ruleContent": "The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in bending, similar to the figure below.", "parentRuleCode": "F.7.8", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" }, { "ruleCode": "F.7.8.8", - "ruleContent": "Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the two: a. A solid insert that is fully enclosed by the inner and outer skin b. Local elimination of any gap between inner and outer skin, with or without repeating skin layups", + "ruleContent": "Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the two:", "parentRuleCode": "F.7.8", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" + }, + { + "ruleCode": "F.7.8.8.a", + "ruleContent": "A solid insert that is fully enclosed by the inner and outer skin", + "parentRuleCode": "F.7.8.8", + "pageNumber": "42" + }, + { + "ruleCode": "F.7.8.8.b", + "ruleContent": "Local elimination of any gap between inner and outer skin, with or without repeating skin layups", + "parentRuleCode": "F.7.8.8", + "pageNumber": "42" }, { "ruleCode": "F.7.9", "ruleContent": "Driver Harness Attachment", "parentRuleCode": "F.7", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" }, { "ruleCode": "F.7.9.1", - "ruleContent": "Required Loads a. Each attachment point for the Shoulder Belts must support a minimum load of 15 kN before failure with a required load of 30 kN distributed across the two belt attachments b. Each attachment point for the Lap Belts must support a minimum load of 15 kN before failure. c. Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 kN before failure. d. If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or are attached to the same attachment point, then each mounting point must support a minimum load of 30 kN before failure.", + "ruleContent": "Required Loads", "parentRuleCode": "F.7.9", - "pageNumber": "42", - "isFromTOC": false + "pageNumber": "42" + }, + { + "ruleCode": "F.7.9.1.a", + "ruleContent": "Each attachment point for the Shoulder Belts must support a minimum load of 15 kN before failure with a required load of 30 kN distributed across the two belt attachments", + "parentRuleCode": "F.7.9.1", + "pageNumber": "42" + }, + { + "ruleCode": "F.7.9.1.b", + "ruleContent": "Each attachment point for the Lap Belts must support a minimum load of 15 kN before failure. Version 1.0 31 Aug 2024", + "parentRuleCode": "F.7.9.1", + "pageNumber": "42" + }, + { + "ruleCode": "F.7.9.1.c", + "ruleContent": "Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 kN before failure.", + "parentRuleCode": "F.7.9.1", + "pageNumber": "42" + }, + { + "ruleCode": "F.7.9.1.d", + "ruleContent": "If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or are attached to the same attachment point, then each mounting point must support a minimum load of 30 kN before failure.", + "parentRuleCode": "F.7.9.1", + "pageNumber": "42" }, { "ruleCode": "F.7.9.2", - "ruleContent": "Load Testing The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven by physical tests where the required load is applied to a representative attachment point where the proposed layup and attachment bracket are used. a. Edges of the test fixture supporting the sample must be a minimum of 125 mm from the load application point (load vector intersecting a plane) b. Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 degrees) to the plane of the test sample c. Shoulder Belt Test Load application must meet: Installed Shoulder Belt Angle: Test Load Application Angle must be: should be: Between 90° and 45° Between 90° and the installed Shoulder Belt Angle 90° Between 45° and 0° Between 90° and 45° 90° The angles are measured from the plane of the Test Sample (90° is normal to the Test Sample and 0° is parallel to the Test Sample) d. The Shoulder Harness test sample must not be any larger than the section of the monocoque as built e. The width of the Shoulder Harness test sample must not be any wider than the Shoulder Harness \"panel height\" (see Structural Equivalency Spreadsheet) used to show equivalency for the Shoulder Harness mounting bar f. Designs with attachments near a free edge must not support the free edge during the test The intent is that the test specimen, to the best extent possible, represents the vehicle as driven at competition. Teams are expected to test a panel that is manufactured in as close a configuration to what is built in the vehicle as possible", + "ruleContent": "Load Testing The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven by physical tests where the required load is applied to a representative attachment point where the proposed layup and attachment bracket are used.", "parentRuleCode": "F.7.9", - "pageNumber": "43", - "isFromTOC": false + "pageNumber": "43" + }, + { + "ruleCode": "F.7.9.2.a", + "ruleContent": "Edges of the test fixture supporting the sample must be a minimum of 125 mm from the load application point (load vector intersecting a plane)", + "parentRuleCode": "F.7.9.2", + "pageNumber": "43" + }, + { + "ruleCode": "F.7.9.2.b", + "ruleContent": "Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 degrees) to the plane of the test sample", + "parentRuleCode": "F.7.9.2", + "pageNumber": "43" + }, + { + "ruleCode": "F.7.9.2.c", + "ruleContent": "Shoulder Belt Test Load application must meet: Installed Shoulder Belt Angle: Test Load Application Angle must be: should be: Between 90° and 45° Between 90° and the installed Shoulder Belt Angle 90° Between 45° and 0° Between 90° and 45° 90° The angles are measured from the plane of the Test Sample (90° is normal to the Test Sample and 0° is parallel to the Test Sample)", + "parentRuleCode": "F.7.9.2", + "pageNumber": "43" + }, + { + "ruleCode": "F.7.9.2.d", + "ruleContent": "The Shoulder Harness test sample must not be any larger than the section of the monocoque as built", + "parentRuleCode": "F.7.9.2", + "pageNumber": "43" + }, + { + "ruleCode": "F.7.9.2.e", + "ruleContent": "The width of the Shoulder Harness test sample must not be any wider than the Shoulder Harness \"panel height\" (see Structural Equivalency Spreadsheet) used to show equivalency for the Shoulder Harness mounting bar", + "parentRuleCode": "F.7.9.2", + "pageNumber": "43" + }, + { + "ruleCode": "F.7.9.2.f", + "ruleContent": "Designs with attachments near a free edge must not support the free edge during the test The intent is that the test specimen, to the best extent possible, represents the vehicle as driven at competition. Teams are expected to test a panel that is manufactured in as close a configuration to what is built in the vehicle as possible", + "parentRuleCode": "F.7.9.2", + "pageNumber": "43" }, { "ruleCode": "F.8", "ruleContent": "FRONT CHASSIS PROTECTION", "parentRuleCode": "F", - "pageNumber": "43", - "isFromTOC": false + "pageNumber": "43" }, { "ruleCode": "F.8.1", "ruleContent": "Requirements", "parentRuleCode": "F.8", - "pageNumber": "43", - "isFromTOC": false + "pageNumber": "43" }, { "ruleCode": "F.8.1.1", "ruleContent": "Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion Plate between the Impact Attenuator and the Front Bulkhead.", "parentRuleCode": "F.8.1", - "pageNumber": "43", - "isFromTOC": false + "pageNumber": "43" }, { "ruleCode": "F.8.1.2", "ruleContent": "All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse and vertical loads if off-axis impacts occur.", "parentRuleCode": "F.8.1", - "pageNumber": "43", - "isFromTOC": false + "pageNumber": "43" }, { "ruleCode": "F.8.2", "ruleContent": "Anti Intrusion Plate - AIP", "parentRuleCode": "F.8", - "pageNumber": "43", - "isFromTOC": false + "pageNumber": "43" }, { "ruleCode": "F.8.2.1", - "ruleContent": "The Anti Intrusion Plate must be one of the three: a. 1.5 mm minimum thickness solid steel b. 4.0 mm minimum thickness solid aluminum plate c. Composite material per F.8.3", + "ruleContent": "The Anti Intrusion Plate must be one of the three:", "parentRuleCode": "F.8.2", - "pageNumber": "43", - "isFromTOC": false + "pageNumber": "43" + }, + { + "ruleCode": "F.8.2.1.a", + "ruleContent": "1.5 mm minimum thickness solid steel", + "parentRuleCode": "F.8.2.1", + "pageNumber": "43" + }, + { + "ruleCode": "F.8.2.1.b", + "ruleContent": "4.0 mm minimum thickness solid aluminum plate Version 1.0 31 Aug 2024", + "parentRuleCode": "F.8.2.1", + "pageNumber": "43" + }, + { + "ruleCode": "F.8.2.1.c", + "ruleContent": "Composite material per F.8.3", + "parentRuleCode": "F.8.2.1", + "pageNumber": "43" }, { "ruleCode": "F.8.2.2", - "ruleContent": "The outside profile requirement of the Anti Intrusion Plate depends on the method of attachment to the Front Bulkhead: a. Welded joints: the profile must align with or be more than the centerline of the Front Bulkhead tubes on all sides b. Bolted joints, bonding, laminating: the profile must align with or be more than the outside dimensions of the Front Bulkhead around the entire periphery", + "ruleContent": "The outside profile requirement of the Anti Intrusion Plate depends on the method of attachment to the Front Bulkhead:", "parentRuleCode": "F.8.2", - "pageNumber": "44", - "isFromTOC": false + "pageNumber": "44" + }, + { + "ruleCode": "F.8.2.2.a", + "ruleContent": "Welded joints: the profile must align with or be more than the centerline of the Front Bulkhead tubes on all sides", + "parentRuleCode": "F.8.2.2", + "pageNumber": "44" + }, + { + "ruleCode": "F.8.2.2.b", + "ruleContent": "Bolted joints, bonding, laminating: the profile must align with or be more than the outside dimensions of the Front Bulkhead around the entire periphery", + "parentRuleCode": "F.8.2.2", + "pageNumber": "44" }, { "ruleCode": "F.8.2.3", - "ruleContent": "Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in the team’s SES submission. The accepted methods of attachment are: a. Welding • All weld lengths must be 25 mm or longer • If interrupted, the weld/space ratio must be 1:1 or higher b. Bolted joints • Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. • The distance between any two bolt centers must be 50 mm minimum. • Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN c. Bonding • The Front Bulkhead must have no openings • The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel strength higher than 120 kN d. Laminating • The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead • The lamination must fully enclose the Anti Intrusion Plate and have shear capability higher than 120 kN", + "ruleContent": "Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in the team’s SES submission. The accepted methods of attachment are:", "parentRuleCode": "F.8.2", - "pageNumber": "44", - "isFromTOC": false + "pageNumber": "44" + }, + { + "ruleCode": "F.8.2.3.a", + "ruleContent": "Welding • All weld lengths must be 25 mm or longer • If interrupted, the weld/space ratio must be 1:1 or higher", + "parentRuleCode": "F.8.2.3", + "pageNumber": "44" + }, + { + "ruleCode": "F.8.2.3.b", + "ruleContent": "Bolted joints • Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. • The distance between any two bolt centers must be 50 mm minimum. • Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN", + "parentRuleCode": "F.8.2.3", + "pageNumber": "44" + }, + { + "ruleCode": "F.8.2.3.c", + "ruleContent": "Bonding • The Front Bulkhead must have no openings • The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel strength higher than 120 kN", + "parentRuleCode": "F.8.2.3", + "pageNumber": "44" + }, + { + "ruleCode": "F.8.2.3.d", + "ruleContent": "Laminating • The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead • The lamination must fully enclose the Anti Intrusion Plate and have shear capability higher than 120 kN", + "parentRuleCode": "F.8.2.3", + "pageNumber": "44" }, { "ruleCode": "F.8.3", "ruleContent": "Composite Anti Intrusion Plate", "parentRuleCode": "F.8", - "pageNumber": "44", - "isFromTOC": false + "pageNumber": "44" }, { "ruleCode": "F.8.3.1", - "ruleContent": "Composite Anti Intrusion Plates: a. Must not fail in a frontal impact b. Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm minimum Impact Attenuator area", + "ruleContent": "Composite Anti Intrusion Plates:", "parentRuleCode": "F.8.3", - "pageNumber": "44", - "isFromTOC": false + "pageNumber": "44" + }, + { + "ruleCode": "F.8.3.1.a", + "ruleContent": "Must not fail in a frontal impact", + "parentRuleCode": "F.8.3.1", + "pageNumber": "44" + }, + { + "ruleCode": "F.8.3.1.b", + "ruleContent": "Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm minimum Impact Attenuator area", + "parentRuleCode": "F.8.3.1", + "pageNumber": "44" }, { "ruleCode": "F.8.3.2", - "ruleContent": "Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods: a. Physical testing of the AIP attached to a structurally representative section of the intended chassis • The test fixture must have equivalent strength and stiffness to a baseline front bulkhead or must be the same as the first 50 mm of the Chassis • Test data is valid for only one Competition Year b. Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending and perimeter shear", + "ruleContent": "Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods:", "parentRuleCode": "F.8.3", - "pageNumber": "44", - "isFromTOC": false + "pageNumber": "44" + }, + { + "ruleCode": "F.8.3.2.a", + "ruleContent": "Physical testing of the AIP attached to a structurally representative section of the intended chassis • The test fixture must have equivalent strength and stiffness to a baseline front bulkhead or must be the same as the first 50 mm of the Chassis • Test data is valid for only one Competition Year", + "parentRuleCode": "F.8.3.2", + "pageNumber": "44" + }, + { + "ruleCode": "F.8.3.2.b", + "ruleContent": "Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending and perimeter shear Version 1.0 31 Aug 2024", + "parentRuleCode": "F.8.3.2", + "pageNumber": "44" }, { "ruleCode": "F.8.4", "ruleContent": "Impact Attenuator - IA", "parentRuleCode": "F.8", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" }, { "ruleCode": "F.8.4.1", "ruleContent": "Teams must do one of: • Use an approved Standard Impact Attenuator from the FSAE Online Website • Build and test a Custom Impact Attenuator of their own design F.8.8", "parentRuleCode": "F.8.4", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" }, { "ruleCode": "F.8.4.2", - "ruleContent": "The Custom Impact Attenuator must meet these: a. Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis. b. Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm (parallel to the ground) for a minimum distance of 200 mm forward of the Front Bulkhead. c. Segmented foam attenuators must have all segments bonded together to prevent sliding or parallelogramming. d. Honeycomb attenuators made of multiple segments must have a continuous panel between each segment.", + "ruleContent": "The Custom Impact Attenuator must meet these:", "parentRuleCode": "F.8.4", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" + }, + { + "ruleCode": "F.8.4.2.a", + "ruleContent": "Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis.", + "parentRuleCode": "F.8.4.2", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.4.2.b", + "ruleContent": "Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm (parallel to the ground) for a minimum distance of 200 mm forward of the Front Bulkhead.", + "parentRuleCode": "F.8.4.2", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.4.2.c", + "ruleContent": "Segmented foam attenuators must have all segments bonded together to prevent sliding or parallelogramming.", + "parentRuleCode": "F.8.4.2", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.4.2.d", + "ruleContent": "Honeycomb attenuators made of multiple segments must have a continuous panel between each segment.", + "parentRuleCode": "F.8.4.2", + "pageNumber": "45" }, { "ruleCode": "F.8.4.3", - "ruleContent": "If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses the Standard Honeycomb Impact Attenuator, and then one of the two must be met: a. The Front Bulkhead must include an additional support that is a diagonal or X-brace that meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 • The structure must go across the entire Front Bulkhead opening on the diagonal • Attachment points at each end must carry a minimum load of 30 kN in any direction b. Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion Plate does not permanently deflect more than 25 mm.", + "ruleContent": "If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses the Standard Honeycomb Impact Attenuator, and then one of the two must be met:", "parentRuleCode": "F.8.4", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" + }, + { + "ruleCode": "F.8.4.3.a", + "ruleContent": "The Front Bulkhead must include an additional support that is a diagonal or X-brace that meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 • The structure must go across the entire Front Bulkhead opening on the diagonal • Attachment points at each end must carry a minimum load of 30 kN in any direction", + "parentRuleCode": "F.8.4.3", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.4.3.b", + "ruleContent": "Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion Plate does not permanently deflect more than 25 mm.", + "parentRuleCode": "F.8.4.3", + "pageNumber": "45" }, { "ruleCode": "F.8.5", "ruleContent": "Impact Attenuator Attachment", "parentRuleCode": "F.8", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" }, { "ruleCode": "F.8.5.1", "ruleContent": "The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must be documented in the SES submission", "parentRuleCode": "F.8.5", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" }, { "ruleCode": "F.8.5.2", - "ruleContent": "The Impact Attenuator must attach with an approved method: Impact Attenuator Type Construction Attachment Method(s): a. Standard or Custom Foam, Honeycomb Bonding b. Custom other Bonding, Welding, Bolting", + "ruleContent": "The Impact Attenuator must attach with an approved method: Impact Attenuator Type Construction Attachment Method(s):", "parentRuleCode": "F.8.5", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.2.a", + "ruleContent": "Standard or Custom Foam, Honeycomb Bonding", + "parentRuleCode": "F.8.5.2", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.2.b", + "ruleContent": "Custom other Bonding, Welding, Bolting", + "parentRuleCode": "F.8.5.2", + "pageNumber": "45" }, { "ruleCode": "F.8.5.3", - "ruleContent": "If the Impact Attenuator is attached by bonding: a. Bonding must meet F.5.5 b. The shear strength of the bond must be higher than: • 95 kN for foam Impact Attenuators • 38.5 kN for honeycomb Impact Attenuators • The maximum compressive force for custom Impact Attenuators c. The entire surface of a foam Impact Attenuator must be bonded d. Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond equivalence", + "ruleContent": "If the Impact Attenuator is attached by bonding:", "parentRuleCode": "F.8.5", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.3.a", + "ruleContent": "Bonding must meet F.5.5", + "parentRuleCode": "F.8.5.3", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.3.b", + "ruleContent": "The shear strength of the bond must be higher than: • 95 kN for foam Impact Attenuators • 38.5 kN for honeycomb Impact Attenuators • The maximum compressive force for custom Impact Attenuators", + "parentRuleCode": "F.8.5.3", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.3.c", + "ruleContent": "The entire surface of a foam Impact Attenuator must be bonded", + "parentRuleCode": "F.8.5.3", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.3.d", + "ruleContent": "Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond equivalence", + "parentRuleCode": "F.8.5.3", + "pageNumber": "45" }, { "ruleCode": "F.8.5.4", - "ruleContent": "If the Impact Attenuator is attached by welding: a. Welds may be continuous or interrupted b. If interrupted, the weld/space ratio must be 1:1 or higher c. All weld lengths must be more than 25 mm", + "ruleContent": "If the Impact Attenuator is attached by welding:", "parentRuleCode": "F.8.5", - "pageNumber": "45", - "isFromTOC": false + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.4.a", + "ruleContent": "Welds may be continuous or interrupted", + "parentRuleCode": "F.8.5.4", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.4.b", + "ruleContent": "If interrupted, the weld/space ratio must be 1:1 or higher Version 1.0 31 Aug 2024", + "parentRuleCode": "F.8.5.4", + "pageNumber": "45" + }, + { + "ruleCode": "F.8.5.4.c", + "ruleContent": "All weld lengths must be more than 25 mm", + "parentRuleCode": "F.8.5.4", + "pageNumber": "45" }, { "ruleCode": "F.8.5.5", - "ruleContent": "If the Impact Attenuator is attached by bolting: a. Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2 b. The distance between any two bolt centers must be 50 mm minimum c. Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN d. Must be bolted directly to the Primary Structure", + "ruleContent": "If the Impact Attenuator is attached by bolting:", "parentRuleCode": "F.8.5", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.5.a", + "ruleContent": "Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2", + "parentRuleCode": "F.8.5.5", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.5.b", + "ruleContent": "The distance between any two bolt centers must be 50 mm minimum", + "parentRuleCode": "F.8.5.5", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.5.c", + "ruleContent": "Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN", + "parentRuleCode": "F.8.5.5", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.5.d", + "ruleContent": "Must be bolted directly to the Primary Structure", + "parentRuleCode": "F.8.5.5", + "pageNumber": "46" }, { "ruleCode": "F.8.5.6", - "ruleContent": "Impact Attenuator Position a. All Impact Attenuators must mount with the bottom leading edge 150 mm or less above the lowest point on the top of the Lower Side Impact Structure b. A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 mm or more wide that intersects a plane parallel to the ground that is 150 mm or less above the lowest point on the top of the Lower Side Impact Structure", + "ruleContent": "Impact Attenuator Position", "parentRuleCode": "F.8.5", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.6.a", + "ruleContent": "All Impact Attenuators must mount with the bottom leading edge 150 mm or less above the lowest point on the top of the Lower Side Impact Structure", + "parentRuleCode": "F.8.5.6", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.6.b", + "ruleContent": "A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 mm or more wide that intersects a plane parallel to the ground that is 150 mm or less above the lowest point on the top of the Lower Side Impact Structure", + "parentRuleCode": "F.8.5.6", + "pageNumber": "46" }, { "ruleCode": "F.8.5.7", - "ruleContent": "Impact Attenuator Orientation a. The Impact Attenuator must be centered laterally on the Front Bulkhead b. Standard Honeycomb must be mounted 200mm width x 100mm height c. Standard Foam may be mounted laterally or vertically", + "ruleContent": "Impact Attenuator Orientation", "parentRuleCode": "F.8.5", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.7.a", + "ruleContent": "The Impact Attenuator must be centered laterally on the Front Bulkhead", + "parentRuleCode": "F.8.5.7", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.7.b", + "ruleContent": "Standard Honeycomb must be mounted 200mm width x 100mm height", + "parentRuleCode": "F.8.5.7", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.5.7.c", + "ruleContent": "Standard Foam may be mounted laterally or vertically", + "parentRuleCode": "F.8.5.7", + "pageNumber": "46" }, { "ruleCode": "F.8.6", "ruleContent": "Front Impact Objects", "parentRuleCode": "F.8", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" }, { "ruleCode": "F.8.6.1", "ruleContent": "The only items allowed forward of the Anti Intrusion Plate in front view are the Impact Attenuator, fastener heads, and light bodywork / nosecones Fasteners should be oriented with the nuts rearwards", "parentRuleCode": "F.8.6", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" }, { "ruleCode": "F.8.6.2", - "ruleContent": "Front Wing and Bodywork Attachment a. The front wing and front wing mounts must be able to move completely aft of the Anti Intrusion Plate and not touch the front bulkhead during a frontal impact b. The attachment points for the front wing and bodywork mounts should be aft of the Anti Intrusion Plate c. Tabs for wing and bodywork attachment must not extend more than 25 mm forward of the Anti Intrusion Plate", + "ruleContent": "Front Wing and Bodywork Attachment", "parentRuleCode": "F.8.6", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" + }, + { + "ruleCode": "F.8.6.2.a", + "ruleContent": "The front wing and front wing mounts must be able to move completely aft of the Anti Intrusion Plate and not touch the front bulkhead during a frontal impact", + "parentRuleCode": "F.8.6.2", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.6.2.b", + "ruleContent": "The attachment points for the front wing and bodywork mounts should be aft of the Anti Intrusion Plate", + "parentRuleCode": "F.8.6.2", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.6.2.c", + "ruleContent": "Tabs for wing and bodywork attachment must not extend more than 25 mm forward of the Anti Intrusion Plate", + "parentRuleCode": "F.8.6.2", + "pageNumber": "46" }, { "ruleCode": "F.8.6.3", - "ruleContent": "Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the: a. Rear face of the Anti Intrusion Plate b. All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3 c. All Non Crushable Items inside the Primary Structure Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic reservoirs", + "ruleContent": "Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the:", "parentRuleCode": "F.8.6", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" + }, + { + "ruleCode": "F.8.6.3.a", + "ruleContent": "Rear face of the Anti Intrusion Plate", + "parentRuleCode": "F.8.6.3", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.6.3.b", + "ruleContent": "All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3", + "parentRuleCode": "F.8.6.3", + "pageNumber": "46" + }, + { + "ruleCode": "F.8.6.3.c", + "ruleContent": "All Non Crushable Items inside the Primary Structure Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic reservoirs", + "parentRuleCode": "F.8.6.3", + "pageNumber": "46" }, { "ruleCode": "F.8.7", "ruleContent": "Front Impact Verification", "parentRuleCode": "F.8", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" }, { "ruleCode": "F.8.7.1", - "ruleContent": "The combination of the Impact Attenuator assembly and the force to crush or detach all other items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in F.8.8.2 Ignore light bodywork, light nosecones, and outboard wheel assemblies", + "ruleContent": "The combination of the Impact Attenuator assembly and the force to crush or detach all other items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in F.8.8.2 Ignore light bodywork, light nosecones, and outboard wheel assemblies Version 1.0 31 Aug 2024", "parentRuleCode": "F.8.7", - "pageNumber": "46", - "isFromTOC": false + "pageNumber": "46" }, { "ruleCode": "F.8.7.2", - "ruleContent": "The peak load for the type of Impact Attenuator: • Standard Foam Impact Attenuator 95 kN • Standard Honeycomb Impact Attenuator 60 kN • Tested Impact Attenuator peak as measured", + "ruleContent": "The peak load for the type of Impact Attenuator: • Standard Foam Impact Attenuator 95 kN • Standard Honeycomb Impact Attenuator 60 kN • Tested Impact Attenuator peak as measured", "parentRuleCode": "F.8.7", - "pageNumber": "47", - "isFromTOC": false + "pageNumber": "47" }, { "ruleCode": "F.8.7.3", "ruleContent": "Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement", "parentRuleCode": "F.8.7", - "pageNumber": "47", - "isFromTOC": false + "pageNumber": "47" }, { "ruleCode": "F.8.7.4", - "ruleContent": "Test Method Get the peak force from physical testing of the Impact Attenuator and any Non Crushable Object(s) as one of the two: a. Tested together with the Impact Attenuator b. Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2", + "ruleContent": "Test Method Get the peak force from physical testing of the Impact Attenuator and any Non Crushable Object(s) as one of the two:", "parentRuleCode": "F.8.7", - "pageNumber": "47", - "isFromTOC": false + "pageNumber": "47" + }, + { + "ruleCode": "F.8.7.4.a", + "ruleContent": "Tested together with the Impact Attenuator", + "parentRuleCode": "F.8.7.4", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.7.4.b", + "ruleContent": "Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2", + "parentRuleCode": "F.8.7.4", + "pageNumber": "47" }, { "ruleCode": "F.8.7.5", - "ruleContent": "Calculation Method a. Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener shear, tearout, and/or link buckling b. Add the peak attenuator load from F.8.7.2", + "ruleContent": "Calculation Method", "parentRuleCode": "F.8.7", - "pageNumber": "47", - "isFromTOC": false + "pageNumber": "47" + }, + { + "ruleCode": "F.8.7.5.a", + "ruleContent": "Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener shear, tearout, and/or link buckling", + "parentRuleCode": "F.8.7.5", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.7.5.b", + "ruleContent": "Add the peak attenuator load from F.8.7.2", + "parentRuleCode": "F.8.7.5", + "pageNumber": "47" }, { "ruleCode": "F.8.8", "ruleContent": "Impact Attenuator Data - IAD", "parentRuleCode": "F.8", - "pageNumber": "47", - "isFromTOC": false + "pageNumber": "47" }, { "ruleCode": "F.8.8.1", "ruleContent": "All teams must include an Impact Attenuator Data (IAD) report as part of the SES.", "parentRuleCode": "F.8.8", - "pageNumber": "47", - "isFromTOC": false + "pageNumber": "47" }, { "ruleCode": "F.8.8.2", - "ruleContent": "Impact Attenuator Functional Requirements These are not test requirements a. Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak b. Energy absorbed must be more than 7350 J When: • Total mass of Vehicle is 300 kg • Impact velocity is 7.0 m/s", + "ruleContent": "Impact Attenuator Functional Requirements These are not test requirements", "parentRuleCode": "F.8.8", - "pageNumber": "47", - "isFromTOC": false + "pageNumber": "47" }, { - "ruleCode": "F.8.8.3", - "ruleContent": "When using the Standard Impact Attenuator, the SES must meet these: a. Test data will not be submitted b. All other requirements of this section must be included. c. Photos of the actual attenuator must be included d. Evidence that the Standard IA meets the design criteria provided in the Standard Impact Attenuator specification must be included with the SES. This may be a receipt or packing slip from the supplier.", - "parentRuleCode": "F.8.8", - "pageNumber": "47", - "isFromTOC": false + "ruleCode": "F.8.8.2.a", + "ruleContent": "Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak", + "parentRuleCode": "F.8.8.2", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.2.b", + "ruleContent": "Energy absorbed must be more than 7350 J When: • Total mass of Vehicle is 300 kg • Impact velocity is 7.0 m/s", + "parentRuleCode": "F.8.8.2", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.3", + "ruleContent": "When using the Standard Impact Attenuator, the SES must meet these:", + "parentRuleCode": "F.8.8", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.3.a", + "ruleContent": "Test data will not be submitted", + "parentRuleCode": "F.8.8.3", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.3.b", + "ruleContent": "All other requirements of this section must be included.", + "parentRuleCode": "F.8.8.3", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.3.c", + "ruleContent": "Photos of the actual attenuator must be included", + "parentRuleCode": "F.8.8.3", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.3.d", + "ruleContent": "Evidence that the Standard IA meets the design criteria provided in the Standard Impact Attenuator specification must be included with the SES. This may be a receipt or packing slip from the supplier.", + "parentRuleCode": "F.8.8.3", + "pageNumber": "47" }, { "ruleCode": "F.8.8.4", - "ruleContent": "The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must include: a. Test data that proves that the Impact Attenuator Assembly meets the Functional Requirements F.8.8.2 b. Calculations showing how the reported absorbed energy and decelerations have been derived. c. A schematic of the test method. d. Photos of the attenuator, annotated with the height of the attenuator before and after testing.", + "ruleContent": "The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must include:", "parentRuleCode": "F.8.8", - "pageNumber": "47", - "isFromTOC": false + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.4.a", + "ruleContent": "Test data that proves that the Impact Attenuator Assembly meets the Functional Requirements F.8.8.2", + "parentRuleCode": "F.8.8.4", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.4.b", + "ruleContent": "Calculations showing how the reported absorbed energy and decelerations have been derived.", + "parentRuleCode": "F.8.8.4", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.4.c", + "ruleContent": "A schematic of the test method.", + "parentRuleCode": "F.8.8.4", + "pageNumber": "47" + }, + { + "ruleCode": "F.8.8.4.d", + "ruleContent": "Photos of the attenuator, annotated with the height of the attenuator before and after testing. Version 1.0 31 Aug 2024", + "parentRuleCode": "F.8.8.4", + "pageNumber": "47" }, { "ruleCode": "F.8.8.5", "ruleContent": "The Impact Attenuator Test is valid for only one Competition Year", "parentRuleCode": "F.8.8", - "pageNumber": "48", - "isFromTOC": false + "pageNumber": "48" }, { "ruleCode": "F.8.8.6", - "ruleContent": "Impact Attenuator Test Setup a. During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using the intended vehicle attachment method. b. The Impact Attenuator Assembly must be attached to a structurally representative section of the intended chassis. The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. A solid block of material in the shape of the front bulkhead is not “structurally representative”. c. There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the test fixture. d. No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond the position of the Anti Intrusion Plate before the test. The 25 mm spacing represents the front bulkhead support and insures that the plate does not intrude excessively into the cockpit.", + "ruleContent": "Impact Attenuator Test Setup", "parentRuleCode": "F.8.8", - "pageNumber": "48", - "isFromTOC": false + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.6.a", + "ruleContent": "During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using the intended vehicle attachment method.", + "parentRuleCode": "F.8.8.6", + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.6.b", + "ruleContent": "The Impact Attenuator Assembly must be attached to a structurally representative section of the intended chassis. The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. A solid block of material in the shape of the front bulkhead is not “structurally representative”.", + "parentRuleCode": "F.8.8.6", + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.6.c", + "ruleContent": "There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the test fixture.", + "parentRuleCode": "F.8.8.6", + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.6.d", + "ruleContent": "No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond the position of the Anti Intrusion Plate before the test. The 25 mm spacing represents the front bulkhead support and insures that the plate does not intrude excessively into the cockpit.", + "parentRuleCode": "F.8.8.6", + "pageNumber": "48" }, { "ruleCode": "F.8.8.7", - "ruleContent": "Test Conduct a. Composite Impact Attenuators must be Dynamic Tested. Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested b. Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be conducted at a dedicated test facility. This facility may be part of the University, but must be supervised by professional staff or the University faculty. Teams must not construct their own dynamic test apparatus. c. Quasi-Static Testing may be done by teams using their University’s facilities/equipment, but teams are advised to exercise due care", + "ruleContent": "Test Conduct", "parentRuleCode": "F.8.8", - "pageNumber": "48", - "isFromTOC": false + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.7.a", + "ruleContent": "Composite Impact Attenuators must be Dynamic Tested. Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested", + "parentRuleCode": "F.8.8.7", + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.7.b", + "ruleContent": "Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be conducted at a dedicated test facility. This facility may be part of the University, but must be supervised by professional staff or the University faculty. Teams must not construct their own dynamic test apparatus.", + "parentRuleCode": "F.8.8.7", + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.7.c", + "ruleContent": "Quasi-Static Testing may be done by teams using their University’s facilities/equipment, but teams are advised to exercise due care", + "parentRuleCode": "F.8.8.7", + "pageNumber": "48" }, { "ruleCode": "F.8.8.8", - "ruleContent": "Test Analysis a. When using acceleration data from the dynamic test, the average deceleration must be calculated based on the raw unfiltered data. b. If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 (100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied.", + "ruleContent": "Test Analysis", "parentRuleCode": "F.8.8", - "pageNumber": "48", - "isFromTOC": false + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.8.a", + "ruleContent": "When using acceleration data from the dynamic test, the average deceleration must be calculated based on the raw unfiltered data.", + "parentRuleCode": "F.8.8.8", + "pageNumber": "48" + }, + { + "ruleCode": "F.8.8.8.b", + "ruleContent": "If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 (100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied.", + "parentRuleCode": "F.8.8.8", + "pageNumber": "48" }, { "ruleCode": "F.9", "ruleContent": "FUEL SYSTEM (IC ONLY) Fuel System Location and Protection are subject to approval during SES review and Technical Inspection.", "parentRuleCode": "F", - "pageNumber": "48", - "isFromTOC": false + "pageNumber": "48" }, { "ruleCode": "F.9.1", "ruleContent": "Location", "parentRuleCode": "F.9", - "pageNumber": "48", - "isFromTOC": false + "pageNumber": "48" }, { "ruleCode": "F.9.1.1", - "ruleContent": "These components must be inside the Primary Structure (F.1.10): a. Any part of the Fuel System that is below the Upper Side Impact Structure b. Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper Side Impact Structure IC.1.2", + "ruleContent": "These components must be inside the Primary Structure (F.1.10):", "parentRuleCode": "F.9.1", - "pageNumber": "48", - "isFromTOC": false + "pageNumber": "48" + }, + { + "ruleCode": "F.9.1.1.a", + "ruleContent": "Any part of the Fuel System that is below the Upper Side Impact Structure", + "parentRuleCode": "F.9.1.1", + "pageNumber": "48" + }, + { + "ruleCode": "F.9.1.1.b", + "ruleContent": "Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper Side Impact Structure IC.1.2", + "parentRuleCode": "F.9.1.1", + "pageNumber": "48" }, { "ruleCode": "F.9.1.2", - "ruleContent": "In side view, any portion of the Fuel System must not project below the lower surface of the chassis", + "ruleContent": "In side view, any portion of the Fuel System must not project below the lower surface of the chassis Version 1.0 31 Aug 2024", "parentRuleCode": "F.9.1", - "pageNumber": "48", - "isFromTOC": false + "pageNumber": "48" }, { "ruleCode": "F.9.2", "ruleContent": "Protection All Fuel Tanks must be shielded from side or rear impact", "parentRuleCode": "F.9", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10", "ruleContent": "ACCUMULATOR CONTAINER (EV ONLY)", "parentRuleCode": "F", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10.1", "ruleContent": "General Requirements", "parentRuleCode": "F.10", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10.1.1", - "ruleContent": "All Accumulator Containers must be: a. Designed to withstand forces from deceleration in all directions b. Made from a Nonflammable Material ( F.1.18 )", + "ruleContent": "All Accumulator Containers must be:", "parentRuleCode": "F.10.1", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" + }, + { + "ruleCode": "F.10.1.1.a", + "ruleContent": "Designed to withstand forces from deceleration in all directions", + "parentRuleCode": "F.10.1.1", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.1.1.b", + "ruleContent": "Made from a Nonflammable Material ( F.1.18 )", + "parentRuleCode": "F.10.1.1", + "pageNumber": "49" }, { "ruleCode": "F.10.1.2", "ruleContent": "Design of the Accumulator Container must be documented in the SES. Documentation includes materials used, drawings/images, fastener locations, cell/segment weight and cell/segment position.", "parentRuleCode": "F.10.1", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10.1.3", "ruleContent": "The Accumulator Containers and mounting systems are subject to approval during SES review and Technical Inspection", "parentRuleCode": "F.10.1", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10.1.4", "ruleContent": "If the Accumulator Container is not constructed from steel or aluminum, the material properties should be established at a temperature of 60°C", "parentRuleCode": "F.10.1", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10.1.5", "ruleContent": "If adhesives are used for credited bonding, the bond properties should be established for a temperature of 60°C", "parentRuleCode": "F.10.1", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10.2", "ruleContent": "Structure", "parentRuleCode": "F.10", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10.2.1", - "ruleContent": "The Floor or Bottom must be made from one of the three: a. Steel 1.25 mm minimum thickness b. Aluminum 3.2 mm minimum thickness c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", + "ruleContent": "The Floor or Bottom must be made from one of the three:", "parentRuleCode": "F.10.2", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.1.a", + "ruleContent": "Steel 1.25 mm minimum thickness", + "parentRuleCode": "F.10.2.1", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.1.b", + "ruleContent": "Aluminum 3.2 mm minimum thickness", + "parentRuleCode": "F.10.2.1", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.1.c", + "ruleContent": "Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", + "parentRuleCode": "F.10.2.1", + "pageNumber": "49" }, { "ruleCode": "F.10.2.2", - "ruleContent": "Walls, Covers and Lids must be made from one of the three: a. Steel 0.9 mm minimum thickness b. Aluminum 2.3 mm minimum thickness c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", + "ruleContent": "Walls, Covers and Lids must be made from one of the three:", "parentRuleCode": "F.10.2", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.2.a", + "ruleContent": "Steel 0.9 mm minimum thickness", + "parentRuleCode": "F.10.2.2", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.2.b", + "ruleContent": "Aluminum 2.3 mm minimum thickness", + "parentRuleCode": "F.10.2.2", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.2.c", + "ruleContent": "Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", + "parentRuleCode": "F.10.2.2", + "pageNumber": "49" }, { "ruleCode": "F.10.2.3", - "ruleContent": "Internal Vertical Walls: a. Must surround and separate each Accumulator Segment EV.5.1.2 b. Must have minimum height of the full height of the Accumulator Segments The Internal Walls should extend to the lid above any Segment c. Must surround no more than 12 kg on each side The intent is to have each Segment fully enclosed in its own six sided box", + "ruleContent": "Internal Vertical Walls:", "parentRuleCode": "F.10.2", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.3.a", + "ruleContent": "Must surround and separate each Accumulator Segment EV.5.1.2", + "parentRuleCode": "F.10.2.3", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.3.b", + "ruleContent": "Must have minimum height of the full height of the Accumulator Segments The Internal Walls should extend to the lid above any Segment", + "parentRuleCode": "F.10.2.3", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.3.c", + "ruleContent": "Must surround no more than 12 kg on each side The intent is to have each Segment fully enclosed in its own six sided box", + "parentRuleCode": "F.10.2.3", + "pageNumber": "49" }, { "ruleCode": "F.10.2.4", "ruleContent": "If segments are arranged vertically above other segments, each layer of segments must have a load path to the Chassis attachments that does not pass through another layer of segments", "parentRuleCode": "F.10.2", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" }, { "ruleCode": "F.10.2.5", - "ruleContent": "Floors and all Wall sections must be joined on each side The accepted methods of joining walls to walls and walls to floor are: a. Welding • Welds may be continuous or interrupted. • If interrupted, the weld/space ratio must be 1:1 or higher • All weld lengths must be more than 25 mm b. Fasteners Combined strength of the fasteners must be Equivalent to the strength of the welded joint ( F.10.2.5.a above ) c. Bonding • Bonding must meet F.5.5 • Strength of the bonded joint must be Equivalent to the strength of the welded joint ( F.10.2.5.a above ) • Bonds must run the entire length of the joint Folding or bending plate material to create flanges or to eliminate joints between walls is recommended.", + "ruleContent": "Floors and all Wall sections must be joined on each side The accepted methods of joining walls to walls and walls to floor are:", "parentRuleCode": "F.10.2", - "pageNumber": "49", - "isFromTOC": false + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.5.a", + "ruleContent": "Welding • Welds may be continuous or interrupted. • If interrupted, the weld/space ratio must be 1:1 or higher Version 1.0 31 Aug 2024 • All weld lengths must be more than 25 mm", + "parentRuleCode": "F.10.2.5", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.5.b", + "ruleContent": "Fasteners Combined strength of the fasteners must be Equivalent to the strength of the welded joint ( F.10.2.5.a above )", + "parentRuleCode": "F.10.2.5", + "pageNumber": "49" + }, + { + "ruleCode": "F.10.2.5.c", + "ruleContent": "Bonding • Bonding must meet F.5.5 • Strength of the bonded joint must be Equivalent to the strength of the welded joint ( F.10.2.5.a above ) • Bonds must run the entire length of the joint Folding or bending plate material to create flanges or to eliminate joints between walls is recommended.", + "parentRuleCode": "F.10.2.5", + "pageNumber": "49" }, { "ruleCode": "F.10.2.6", "ruleContent": "Covers and Lids must be mechanically attached and include Positive Locking Mechanisms", "parentRuleCode": "F.10.2", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.3", "ruleContent": "Cells and Segments", "parentRuleCode": "F.10", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.3.1", - "ruleContent": "The structure of the Segments (without the structure of the Accumulator Container and without the structure of the cells) must prevent cells from being crushed in any direction under the following accelerations: a. 40 g in the longitudinal direction (forward/aft) b. 40 g in the lateral direction (left/right) c. 20 g in the vertical direction (up/down)", + "ruleContent": "The structure of the Segments (without the structure of the Accumulator Container and without the structure of the cells) must prevent cells from being crushed in any direction under the following accelerations:", "parentRuleCode": "F.10.3", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" + }, + { + "ruleCode": "F.10.3.1.a", + "ruleContent": "40 g in the longitudinal direction (forward/aft)", + "parentRuleCode": "F.10.3.1", + "pageNumber": "50" + }, + { + "ruleCode": "F.10.3.1.b", + "ruleContent": "40 g in the lateral direction (left/right)", + "parentRuleCode": "F.10.3.1", + "pageNumber": "50" + }, + { + "ruleCode": "F.10.3.1.c", + "ruleContent": "20 g in the vertical direction (up/down)", + "parentRuleCode": "F.10.3.1", + "pageNumber": "50" }, { "ruleCode": "F.10.3.2", - "ruleContent": "Segments must be held by one of the two: a. Mechanical Cover and Lid attachments must show equivalence to the strength of a welded joint F.10.2.5.a b. Mechanical Segment attachments to the container must show they can support the acceleration loads F.10.3.1 above in the direction of removal", + "ruleContent": "Segments must be held by one of the two:", "parentRuleCode": "F.10.3", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" + }, + { + "ruleCode": "F.10.3.2.a", + "ruleContent": "Mechanical Cover and Lid attachments must show equivalence to the strength of a welded joint F.10.2.5.a", + "parentRuleCode": "F.10.3.2", + "pageNumber": "50" + }, + { + "ruleCode": "F.10.3.2.b", + "ruleContent": "Mechanical Segment attachments to the container must show they can support the acceleration loads F.10.3.1 above in the direction of removal", + "parentRuleCode": "F.10.3.2", + "pageNumber": "50" }, { "ruleCode": "F.10.3.3", "ruleContent": "Calculations and/or tests proving these requirements are met must be included in the SES", "parentRuleCode": "F.10.3", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.4", "ruleContent": "Holes and Openings", "parentRuleCode": "F.10", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.4.1", "ruleContent": "The Accumulator Container(s) exterior or interior walls may contain holes or openings, see EV.4.3.4", "parentRuleCode": "F.10.4", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.4.2", "ruleContent": "Any Holes and Openings must be the minimum area necessary", "parentRuleCode": "F.10.4", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.4.3", "ruleContent": "Exterior and interior walls must cover a minimum of 75% of each face of the battery segments", "parentRuleCode": "F.10.4", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.4.4", - "ruleContent": "Holes and Openings for airflow: a. Must be round. Slots are prohibited b. Should be maximum 10 mm diameter c. Must not have line of sight to the driver, with the Firewall installed or removed", + "ruleContent": "Holes and Openings for airflow:", "parentRuleCode": "F.10.4", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" + }, + { + "ruleCode": "F.10.4.4.a", + "ruleContent": "Must be round. Slots are prohibited", + "parentRuleCode": "F.10.4.4", + "pageNumber": "50" + }, + { + "ruleCode": "F.10.4.4.b", + "ruleContent": "Should be maximum 10 mm diameter", + "parentRuleCode": "F.10.4.4", + "pageNumber": "50" + }, + { + "ruleCode": "F.10.4.4.c", + "ruleContent": "Must not have line of sight to the driver, with the Firewall installed or removed", + "parentRuleCode": "F.10.4.4", + "pageNumber": "50" }, { "ruleCode": "F.10.5", "ruleContent": "Attachment", "parentRuleCode": "F.10", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.5.1", "ruleContent": "Attachment of the Accumulator Container must be documented in the SES", "parentRuleCode": "F.10.5", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" }, { "ruleCode": "F.10.5.2", - "ruleContent": "Accumulator Containers must: a. Attach to the Major Structure of the chassis A maximum of two attachment points may be on a chassis tube between two triangulated nodes. b. Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing", + "ruleContent": "Accumulator Containers must:", "parentRuleCode": "F.10.5", - "pageNumber": "50", - "isFromTOC": false + "pageNumber": "50" + }, + { + "ruleCode": "F.10.5.2.a", + "ruleContent": "Attach to the Major Structure of the chassis Version 1.0 31 Aug 2024 A maximum of two attachment points may be on a chassis tube between two triangulated nodes.", + "parentRuleCode": "F.10.5.2", + "pageNumber": "50" + }, + { + "ruleCode": "F.10.5.2.b", + "ruleContent": "Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing", + "parentRuleCode": "F.10.5.2", + "pageNumber": "50" }, { "ruleCode": "F.10.5.3", "ruleContent": "Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2", "parentRuleCode": "F.10.5", - "pageNumber": "51", - "isFromTOC": false + "pageNumber": "51" }, { "ruleCode": "F.10.5.4", - "ruleContent": "Each fastened attachment point to a composite Accumulator Container requires backing plates that are one of the two: a. Steel with a thickness of 2 mm minimum b. Alternate materials Equivalent to 2 mm thickness steel", + "ruleContent": "Each fastened attachment point to a composite Accumulator Container requires backing plates that are one of the two:", "parentRuleCode": "F.10.5", - "pageNumber": "51", - "isFromTOC": false + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.4.a", + "ruleContent": "Steel with a thickness of 2 mm minimum", + "parentRuleCode": "F.10.5.4", + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.4.b", + "ruleContent": "Alternate materials Equivalent to 2 mm thickness steel", + "parentRuleCode": "F.10.5.4", + "pageNumber": "51" }, { "ruleCode": "F.10.5.5", - "ruleContent": "Teams must justify the Accumulator Container attachment using one of the two methods: • Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 • Load Based Analysis per F.10.5.7 and F.10.5.8", + "ruleContent": "Teams must justify the Accumulator Container attachment using one of the two methods: • Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 • Load Based Analysis per F.10.5.7 and F.10.5.8", "parentRuleCode": "F.10.5", - "pageNumber": "51", - "isFromTOC": false + "pageNumber": "51" }, { "ruleCode": "F.10.5.6", - "ruleContent": "Accumulator Attachment – Corner Attachments a. Eight or more attachments are required for any configuration. • One attachment for each corner of a rectangular structure of multiple Accumulator Segments • More than the minimum number of fasteners may be required for non rectangular arrangements Examples: If not filled in with additional structure, an extruded L shape would require attachments at 10 convex corners (the corners at the inside of the L are not convex); an extruded hexagon would require 12 attachments b. The mechanical connections at each corner must be 50 mm or less from the corner of the Segment c. Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass of the container accelerating at 40 g", + "ruleContent": "Accumulator Attachment – Corner Attachments", "parentRuleCode": "F.10.5", - "pageNumber": "51", - "isFromTOC": false + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.6.a", + "ruleContent": "Eight or more attachments are required for any configuration. • One attachment for each corner of a rectangular structure of multiple Accumulator Segments • More than the minimum number of fasteners may be required for non rectangular arrangements Examples: If not filled in with additional structure, an extruded L shape would require attachments at 10 convex corners (the corners at the inside of the L are not convex); an extruded hexagon would require 12 attachments", + "parentRuleCode": "F.10.5.6", + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.6.b", + "ruleContent": "The mechanical connections at each corner must be 50 mm or less from the corner of the Segment", + "parentRuleCode": "F.10.5.6", + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.6.c", + "ruleContent": "Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass of the container accelerating at 40 g", + "parentRuleCode": "F.10.5.6", + "pageNumber": "51" }, { "ruleCode": "F.10.5.7", - "ruleContent": "Accumulator Attachment – Load Based a. The minimum number of attachment points depends on the total mass of the container: Accumulator Weight Minimum Attachment Points < 20 kg 4 20 – 30 kg 6 30 – 40 kg 8 > 40 kg 10 b. Each attachment point, including any brackets, backing plates and inserts, must be able to withstand 15 kN minimum in any direction", + "ruleContent": "Accumulator Attachment – Load Based", "parentRuleCode": "F.10.5", - "pageNumber": "51", - "isFromTOC": false + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.7.a", + "ruleContent": "The minimum number of attachment points depends on the total mass of the container: Accumulator Weight Minimum Attachment Points < 20 kg 4 20 – 30 kg 6 30 – 40 kg 8 > 40 kg 10", + "parentRuleCode": "F.10.5.7", + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.7.b", + "ruleContent": "Each attachment point, including any brackets, backing plates and inserts, must be able to withstand 15 kN minimum in any direction", + "parentRuleCode": "F.10.5.7", + "pageNumber": "51" }, { "ruleCode": "F.10.5.8", - "ruleContent": "Accumulator Attachment – All Types a. Each fastener must withstand the Test Load in pure shear, using the minor diameter if any threads are in shear b. Each Accumulator bracket, chassis bracket, or monocoque attachment point must withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if welded, and pure bond shear and pure bond tensile if bonded. c. Monocoque attachment points must meet F.7.8.8 d. Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment points", + "ruleContent": "Accumulator Attachment – All Types", "parentRuleCode": "F.10.5", - "pageNumber": "51", - "isFromTOC": false + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.8.a", + "ruleContent": "Each fastener must withstand the Test Load in pure shear, using the minor diameter if any threads are in shear", + "parentRuleCode": "F.10.5.8", + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.8.b", + "ruleContent": "Each Accumulator bracket, chassis bracket, or monocoque attachment point must withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if welded, and pure bond shear and pure bond tensile if bonded.", + "parentRuleCode": "F.10.5.8", + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.8.c", + "ruleContent": "Monocoque attachment points must meet F.7.8.8 Version 1.0 31 Aug 2024", + "parentRuleCode": "F.10.5.8", + "pageNumber": "51" + }, + { + "ruleCode": "F.10.5.8.d", + "ruleContent": "Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment points", + "parentRuleCode": "F.10.5.8", + "pageNumber": "51" }, { "ruleCode": "F.11", "ruleContent": "TRACTIVE SYSTEM (EV ONLY) Tractive System Location and Protection are subject to approval during SES review and Technical Inspection.", "parentRuleCode": "F", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.1", "ruleContent": "Location", "parentRuleCode": "F.11", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.1.1", "ruleContent": "All Accumulator Containers must lie inside the Primary Structure (F.1.10).", "parentRuleCode": "F.11.1", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.1.2", "ruleContent": "Motors mounted to a suspension upright and their connections must meet EV.4.1.3", "parentRuleCode": "F.11.1", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.1.3", "ruleContent": "Tractive System (EV.1.1) components including Motors, cables and wiring other than those in", "parentRuleCode": "F.11.1", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.1.2", "ruleContent": "above must be contained inside one or two of: • The Rollover Protection Envelope F.1.13 • Structure meeting F.5.16 Component Protection", "parentRuleCode": "F.11.1", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.2", "ruleContent": "Side Impact Protection", "parentRuleCode": "F.11", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.2.1", "ruleContent": "All Accumulator Containers must be protected from side impact by structure Equivalent to Side Impact Structure (F.6.4, F.7.5)", "parentRuleCode": "F.11.2", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.2.2", "ruleContent": "The Accumulator Container must not be part of the Equivalent structure.", "parentRuleCode": "F.11.2", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.2.3", "ruleContent": "Accumulator Container side impact protection must go to a minimum height that is the lower of the two: • The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 • The top of the Accumulator Container at that point", "parentRuleCode": "F.11.2", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.2.4", "ruleContent": "Tractive System components other than Accumulator Containers in a position below 350 mm from the ground must be protected from side impact by structure that meets F.5.16 Component Protection", "parentRuleCode": "F.11.2", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.3", "ruleContent": "Rear Impact Protection", "parentRuleCode": "F.11", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.3.1", - "ruleContent": "All Tractive System components must be protected from rear impact by a Rear Bulkhead a. When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure must be Equivalent to Side Impact Structure (F.6.4, F.7.5) b. When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the structure must meet F.5.16 Component Protection c. The Accumulator Container must not be part of the Equivalent structure", + "ruleContent": "All Tractive System components must be protected from rear impact by a Rear Bulkhead", "parentRuleCode": "F.11.3", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" + }, + { + "ruleCode": "F.11.3.1.a", + "ruleContent": "When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure must be Equivalent to Side Impact Structure (F.6.4, F.7.5)", + "parentRuleCode": "F.11.3.1", + "pageNumber": "52" + }, + { + "ruleCode": "F.11.3.1.b", + "ruleContent": "When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the structure must meet F.5.16 Component Protection", + "parentRuleCode": "F.11.3.1", + "pageNumber": "52" + }, + { + "ruleCode": "F.11.3.1.c", + "ruleContent": "The Accumulator Container must not be part of the Equivalent structure", + "parentRuleCode": "F.11.3.1", + "pageNumber": "52" }, { "ruleCode": "F.11.3.2", "ruleContent": "The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1", "parentRuleCode": "F.11.3", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.3.3", "ruleContent": "The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead", "parentRuleCode": "F.11.3", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" }, { "ruleCode": "F.11.3.4", - "ruleContent": "The Rear Bulkhead Support must have: a. A structural and triangulated load path from the top of the Rear Impact Protection to the Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop b. A structural and triangulated load path from the bottom of the Rear Impact Protection to the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop", + "ruleContent": "The Rear Bulkhead Support must have:", "parentRuleCode": "F.11.3", - "pageNumber": "52", - "isFromTOC": false + "pageNumber": "52" + }, + { + "ruleCode": "F.11.3.4.a", + "ruleContent": "A structural and triangulated load path from the top of the Rear Impact Protection to the Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop", + "parentRuleCode": "F.11.3.4", + "pageNumber": "52" + }, + { + "ruleCode": "F.11.3.4.b", + "ruleContent": "A structural and triangulated load path from the bottom of the Rear Impact Protection to the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop Version 1.0 31 Aug 2024", + "parentRuleCode": "F.11.3.4", + "pageNumber": "52" }, { "ruleCode": "F.11.3.5", - "ruleContent": "In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal structure or X brace that meets F.11.3.1 above a. Differential mounts, two vertical tubes with similar spacing, a metal plate, or an Equivalent composite panel may replace a diagonal If used, the mounts, plate, or panel must: • Be aft of the upper and lower Rear Bulkhead structures • Overlap at least 25 mm vertically at the top and the bottom b. A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. If used, the plate must: • Fully overlap the Rear Bulkhead Support F.11.3.3 above • Attach by one of the two, as determined by the SES: - Fully laminated to the Rear Bulkhead or Rear Bulkhead Support - Attachment strength greater than 120 kN", + "ruleContent": "In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal structure or X brace that meets F.11.3.1 above", "parentRuleCode": "F.11.3", - "pageNumber": "53", - "isFromTOC": false + "pageNumber": "53" + }, + { + "ruleCode": "F.11.3.5.a", + "ruleContent": "Differential mounts, two vertical tubes with similar spacing, a metal plate, or an Equivalent composite panel may replace a diagonal If used, the mounts, plate, or panel must: • Be aft of the upper and lower Rear Bulkhead structures • Overlap at least 25 mm vertically at the top and the bottom", + "parentRuleCode": "F.11.3.5", + "pageNumber": "53" + }, + { + "ruleCode": "F.11.3.5.b", + "ruleContent": "A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. If used, the plate must: • Fully overlap the Rear Bulkhead Support F.11.3.3 above • Attach by one of the two, as determined by the SES: - Fully laminated to the Rear Bulkhead or Rear Bulkhead Support - Attachment strength greater than 120 kN", + "parentRuleCode": "F.11.3.5", + "pageNumber": "53" }, { "ruleCode": "F.11.4", "ruleContent": "Clearance and Non Crushable Items", "parentRuleCode": "F.11", - "pageNumber": "53", - "isFromTOC": false + "pageNumber": "53" }, { "ruleCode": "F.11.4.1", "ruleContent": "Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself Accumulator mounts do not require clearance", "parentRuleCode": "F.11.4", - "pageNumber": "53", - "isFromTOC": false + "pageNumber": "53" }, { "ruleCode": "F.11.4.2", "ruleContent": "The Accumulator Container should have a minimum 25 mm total clearance to each of the front, side, and rear impact structures The clearance may be put together on either side of any Non Crushable items around the accumulator", "parentRuleCode": "F.11.4", - "pageNumber": "53", - "isFromTOC": false + "pageNumber": "53" }, { "ruleCode": "F.11.4.3", - "ruleContent": "Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through the Rear Bulkhead", + "ruleContent": "Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through the Rear Bulkhead Version 1.0 31 Aug 2024", "parentRuleCode": "F.11.4", - "pageNumber": "53", - "isFromTOC": false + "pageNumber": "53" }, { "ruleCode": "T", "ruleContent": "TECHNICAL ASPECTS", - "pageNumber": "54", - "isFromTOC": false + "pageNumber": "54" }, { "ruleCode": "T.1", "ruleContent": "COCKPIT", "parentRuleCode": "T", - "pageNumber": "54", - "isFromTOC": false + "pageNumber": "54" }, { "ruleCode": "T.1.1", "ruleContent": "Cockpit Opening", "parentRuleCode": "T.1", - "pageNumber": "54", - "isFromTOC": false + "pageNumber": "54" }, { "ruleCode": "T.1.1.1", "ruleContent": "The template shown below must pass through the cockpit opening", "parentRuleCode": "T.1.1", - "pageNumber": "54", - "isFromTOC": false + "pageNumber": "54" }, { "ruleCode": "T.1.1.2", - "ruleContent": "The template will be held horizontally, parallel to the ground, and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 ) a. Has passed 25 mm below the lowest point of the top of the Side Impact Structure b. Is less than or equal to 320 mm above the lowest point inside the cockpit", + "ruleContent": "The template will be held horizontally, parallel to the ground, and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 )", "parentRuleCode": "T.1.1", - "pageNumber": "54", - "isFromTOC": false + "pageNumber": "54" + }, + { + "ruleCode": "T.1.1.2.a", + "ruleContent": "Has passed 25 mm below the lowest point of the top of the Side Impact Structure", + "parentRuleCode": "T.1.1.2", + "pageNumber": "54" + }, + { + "ruleCode": "T.1.1.2.b", + "ruleContent": "Is less than or equal to 320 mm above the lowest point inside the cockpit", + "parentRuleCode": "T.1.1.2", + "pageNumber": "54" }, { "ruleCode": "T.1.1.3", "ruleContent": "Fore and aft translation of the template is permitted during insertion.", "parentRuleCode": "T.1.1", - "pageNumber": "54", - "isFromTOC": false + "pageNumber": "54" }, { "ruleCode": "T.1.1.4", - "ruleContent": "During this test: a. The steering wheel, steering column, seat and all padding may be removed b. The shifter, shift mechanism, or clutch mechanism must not be removed unless it is integral with the steering wheel and is removed with the steering wheel c. The firewall must not be moved or removed d. Cables, wires, hoses, tubes, etc. must not block movement of the template During inspection, the steering column, for practical purposes, will not be removed. The template may be maneuvered around the steering column, but not any fixed supports. For ease of use, the template may contain a slot at the front center that the steering column may pass through.", + "ruleContent": "During this test:", "parentRuleCode": "T.1.1", - "pageNumber": "54", - "isFromTOC": false + "pageNumber": "54" + }, + { + "ruleCode": "T.1.1.4.a", + "ruleContent": "The steering wheel, steering column, seat and all padding may be removed", + "parentRuleCode": "T.1.1.4", + "pageNumber": "54" + }, + { + "ruleCode": "T.1.1.4.b", + "ruleContent": "The shifter, shift mechanism, or clutch mechanism must not be removed unless it is integral with the steering wheel and is removed with the steering wheel", + "parentRuleCode": "T.1.1.4", + "pageNumber": "54" + }, + { + "ruleCode": "T.1.1.4.c", + "ruleContent": "The firewall must not be moved or removed", + "parentRuleCode": "T.1.1.4", + "pageNumber": "54" + }, + { + "ruleCode": "T.1.1.4.d", + "ruleContent": "Cables, wires, hoses, tubes, etc. must not block movement of the template During inspection, the steering column, for practical purposes, will not be removed. The template may be maneuvered around the steering column, but not any fixed supports. For ease of use, the template may contain a slot at the front center that the steering column may pass through. Version 1.0 31 Aug 2024", + "parentRuleCode": "T.1.1.4", + "pageNumber": "54" }, { "ruleCode": "T.1.2", "ruleContent": "Internal Cross Section", "parentRuleCode": "T.1", - "pageNumber": "55", - "isFromTOC": false + "pageNumber": "55" }, { "ruleCode": "T.1.2.1", - "ruleContent": "Requirement: a. The cockpit must have a free internal cross section b. The template shown below must pass through the cockpit Template maximum thickness: 7 mm", + "ruleContent": "Requirement:", "parentRuleCode": "T.1.2", - "pageNumber": "55", - "isFromTOC": false + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.1.a", + "ruleContent": "The cockpit must have a free internal cross section", + "parentRuleCode": "T.1.2.1", + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.1.b", + "ruleContent": "The template shown below must pass through the cockpit Template maximum thickness: 7 mm", + "parentRuleCode": "T.1.2.1", + "pageNumber": "55" }, { "ruleCode": "T.1.2.2", - "ruleContent": "Conduct of the test. The template: a. Will be held vertically and inserted into the cockpit opening rearward of the rearmost portion of the steering column. b. Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost pedal when in the inoperative position c. May be moved vertically inside the cockpit", + "ruleContent": "Conduct of the test. The template:", "parentRuleCode": "T.1.2", - "pageNumber": "55", - "isFromTOC": false + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.2.a", + "ruleContent": "Will be held vertically and inserted into the cockpit opening rearward of the rearmost portion of the steering column.", + "parentRuleCode": "T.1.2.2", + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.2.b", + "ruleContent": "Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost pedal when in the inoperative position", + "parentRuleCode": "T.1.2.2", + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.2.c", + "ruleContent": "May be moved vertically inside the cockpit", + "parentRuleCode": "T.1.2.2", + "pageNumber": "55" }, { "ruleCode": "T.1.2.3", - "ruleContent": "During this test: a. If the pedals are adjustable, they must be in their most forward position. b. The steering wheel may be removed c. Padding may be removed if it can be easily removed without the use of tools with the driver in the seat d. The seat and any seat insert(s) that may be used must stay in the cockpit e. Cables, wires, hoses, tubes, etc. must not block movement of the template f. The steering column and associated components may pass through the 50 mm wide center band of the template. For ease of use, the template may contain a full or partial slot in the shaded area shown on the figure", + "ruleContent": "During this test:", "parentRuleCode": "T.1.2", - "pageNumber": "55", - "isFromTOC": false + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.3.a", + "ruleContent": "If the pedals are adjustable, they must be in their most forward position.", + "parentRuleCode": "T.1.2.3", + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.3.b", + "ruleContent": "The steering wheel may be removed", + "parentRuleCode": "T.1.2.3", + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.3.c", + "ruleContent": "Padding may be removed if it can be easily removed without the use of tools with the driver in the seat", + "parentRuleCode": "T.1.2.3", + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.3.d", + "ruleContent": "The seat and any seat insert(s) that may be used must stay in the cockpit", + "parentRuleCode": "T.1.2.3", + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.3.e", + "ruleContent": "Cables, wires, hoses, tubes, etc. must not block movement of the template", + "parentRuleCode": "T.1.2.3", + "pageNumber": "55" + }, + { + "ruleCode": "T.1.2.3.f", + "ruleContent": "The steering column and associated components may pass through the 50 mm wide center band of the template. For ease of use, the template may contain a full or partial slot in the shaded area shown on the figure", + "parentRuleCode": "T.1.2.3", + "pageNumber": "55" }, { "ruleCode": "T.1.3", "ruleContent": "Driver Protection", "parentRuleCode": "T.1", - "pageNumber": "55", - "isFromTOC": false + "pageNumber": "55" }, { "ruleCode": "T.1.3.1", - "ruleContent": "The driver’s feet and legs must be completely contained inside the Major Structure of the Chassis.", + "ruleContent": "The driver’s feet and legs must be completely contained inside the Major Structure of the Chassis. Version 1.0 31 Aug 2024", "parentRuleCode": "T.1.3", - "pageNumber": "55", - "isFromTOC": false + "pageNumber": "55" }, { "ruleCode": "T.1.3.2", "ruleContent": "While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s feet or legs must not extend above or outside of the Major Structure of the Chassis.", "parentRuleCode": "T.1.3", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.3.3", "ruleContent": "All moving suspension and steering components and other sharp edges inside the cockpit between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered by a shield made of a solid material. Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti- roll/sway bars, steering racks and steering column CV joints.", "parentRuleCode": "T.1.3", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.3.4", "ruleContent": "Covers over suspension and steering components must be removable to allow inspection of the mounting points", "parentRuleCode": "T.1.3", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.4", "ruleContent": "Vehicle Controls", "parentRuleCode": "T.1", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.4.1", - "ruleContent": "Accelerator Pedal a. An Accelerator Pedal must control the Powertrain output b. Pedal Travel is the percent of travel from a fully released position to a fully applied position. 0% is fully released and 100% is fully applied. c. The Accelerator Pedal must: • Return to 0% Pedal Travel when not pushed • Have a positive stop to prevent any cable, actuation system or sensor from damage or overstress", + "ruleContent": "Accelerator Pedal", "parentRuleCode": "T.1.4", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" + }, + { + "ruleCode": "T.1.4.1.a", + "ruleContent": "An Accelerator Pedal must control the Powertrain output", + "parentRuleCode": "T.1.4.1", + "pageNumber": "56" + }, + { + "ruleCode": "T.1.4.1.b", + "ruleContent": "Pedal Travel is the percent of travel from a fully released position to a fully applied position. 0% is fully released and 100% is fully applied.", + "parentRuleCode": "T.1.4.1", + "pageNumber": "56" + }, + { + "ruleCode": "T.1.4.1.c", + "ruleContent": "The Accelerator Pedal must: • Return to 0% Pedal Travel when not pushed • Have a positive stop to prevent any cable, actuation system or sensor from damage or overstress", + "parentRuleCode": "T.1.4.1", + "pageNumber": "56" }, { "ruleCode": "T.1.4.2", "ruleContent": "Any mechanism in the throttle system that could become jammed must be covered. This is to prevent debris or interference and includes but is not limited to a gear mechanism", "parentRuleCode": "T.1.4", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.4.3", - "ruleContent": "All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) must be operated from inside the cockpit without any part of the driver, including hands, arms or elbows, being outside of: a. The Side Impact Structure defined in F.6.4 / F.7.5 b. Two longitudinal vertical planes parallel to the centerline of the chassis touching the uppermost member of the Side Impact Structure", + "ruleContent": "All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) must be operated from inside the cockpit without any part of the driver, including hands, arms or elbows, being outside of:", "parentRuleCode": "T.1.4", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" + }, + { + "ruleCode": "T.1.4.3.a", + "ruleContent": "The Side Impact Structure defined in F.6.4 / F.7.5", + "parentRuleCode": "T.1.4.3", + "pageNumber": "56" + }, + { + "ruleCode": "T.1.4.3.b", + "ruleContent": "Two longitudinal vertical planes parallel to the centerline of the chassis touching the uppermost member of the Side Impact Structure", + "parentRuleCode": "T.1.4.3", + "pageNumber": "56" }, { "ruleCode": "T.1.4.4", "ruleContent": "All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational position", "parentRuleCode": "T.1.4", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.5", "ruleContent": "Driver’s Seat", "parentRuleCode": "T.1", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.5.1", - "ruleContent": "The Driver’s Seat must be protected by one of the two: a. In side view, the lowest point of any Driver’s Seat must be no lower than the upper surface of the lowest structural tube or equivalent b. A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing (F.3.2.1.e), passing underneath the lowest point of the Driver Seat.", + "ruleContent": "The Driver’s Seat must be protected by one of the two:", "parentRuleCode": "T.1.5", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" + }, + { + "ruleCode": "T.1.5.1.a", + "ruleContent": "In side view, the lowest point of any Driver’s Seat must be no lower than the upper surface of the lowest structural tube or equivalent", + "parentRuleCode": "T.1.5.1", + "pageNumber": "56" + }, + { + "ruleCode": "T.1.5.1.b", + "ruleContent": "A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing (F.3.2.1.e), passing underneath the lowest point of the Driver Seat.", + "parentRuleCode": "T.1.5.1", + "pageNumber": "56" }, { "ruleCode": "T.1.6", "ruleContent": "Thermal Protection", "parentRuleCode": "T.1", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.6.1", "ruleContent": "When seated in the normal driving position, sufficient heat insulation must be provided to make sure that the driver will not contact any metal or other materials which may become heated to a surface temperature above 60°C.", "parentRuleCode": "T.1.6", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.6.2", - "ruleContent": "Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall.", + "ruleContent": "Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. Version 1.0 31 Aug 2024", "parentRuleCode": "T.1.6", - "pageNumber": "56", - "isFromTOC": false + "pageNumber": "56" }, { "ruleCode": "T.1.6.3", - "ruleContent": "The design must address all three types of heat transfer between the heat source (examples include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a place that the driver could contact (including seat or floor): a. Conduction Isolation by one of the two: • No direct contact between the heat source and the panel • A heat resistant, conduction isolation material with a minimum thickness of 8 mm between the heat source and the panel b. Convection Isolation by a minimum air gap of 25 mm between the heat source and the panel c. Radiation Isolation by one of the two: • A solid metal heat shield with a minimum thickness of 0.4 mm • Reflective foil or tape when combined with conduction insulation", + "ruleContent": "The design must address all three types of heat transfer between the heat source (examples include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a place that the driver could contact (including seat or floor):", "parentRuleCode": "T.1.6", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" + }, + { + "ruleCode": "T.1.6.3.a", + "ruleContent": "Conduction Isolation by one of the two: • No direct contact between the heat source and the panel • A heat resistant, conduction isolation material with a minimum thickness of 8 mm between the heat source and the panel", + "parentRuleCode": "T.1.6.3", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.6.3.b", + "ruleContent": "Convection Isolation by a minimum air gap of 25 mm between the heat source and the panel", + "parentRuleCode": "T.1.6.3", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.6.3.c", + "ruleContent": "Radiation Isolation by one of the two: • A solid metal heat shield with a minimum thickness of 0.4 mm • Reflective foil or tape when combined with conduction insulation", + "parentRuleCode": "T.1.6.3", + "pageNumber": "57" }, { "ruleCode": "T.1.7", "ruleContent": "Floor Closeout", "parentRuleCode": "T.1", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" }, { "ruleCode": "T.1.7.1", "ruleContent": "All vehicles must have a Floor Closeout to prevent track debris from entering", "parentRuleCode": "T.1.7", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" }, { "ruleCode": "T.1.7.2", "ruleContent": "The Floor Closeout must extend from the foot area to the firewall", "parentRuleCode": "T.1.7", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" }, { "ruleCode": "T.1.7.3", "ruleContent": "The panel(s) must be made of a solid, non brittle material", "parentRuleCode": "T.1.7", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" }, { "ruleCode": "T.1.7.4", "ruleContent": "If multiple panels are used, gaps between panels must not exceed 3 mm", "parentRuleCode": "T.1.7", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" }, { "ruleCode": "T.1.8", "ruleContent": "Firewall", "parentRuleCode": "T.1", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" }, { "ruleCode": "T.1.8.1", - "ruleContent": "A Firewall(s) must separate the driver compartment and any portion of the Driver Harness from: a. All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium batteries b. (EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 and cable to those Motors where mounted at the wheels or on the front control arms", + "ruleContent": "A Firewall(s) must separate the driver compartment and any portion of the Driver Harness from:", "parentRuleCode": "T.1.8", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.1.a", + "ruleContent": "All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium batteries", + "parentRuleCode": "T.1.8.1", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.1.b", + "ruleContent": "(EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 and cable to those Motors where mounted at the wheels or on the front control arms", + "parentRuleCode": "T.1.8.1", + "pageNumber": "57" }, { "ruleCode": "T.1.8.2", "ruleContent": "The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest driver must not be in direct line of sight with any part given in T.1.8.1 above", "parentRuleCode": "T.1.8", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" }, { "ruleCode": "T.1.8.3", - "ruleContent": "Any Firewall must be: a. A non permeable surface made from a rigid, Nonflammable Material b. Mounted tightly", + "ruleContent": "Any Firewall must be:", "parentRuleCode": "T.1.8", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.3.a", + "ruleContent": "A non permeable surface made from a rigid, Nonflammable Material", + "parentRuleCode": "T.1.8.3", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.3.b", + "ruleContent": "Mounted tightly", + "parentRuleCode": "T.1.8.3", + "pageNumber": "57" }, { "ruleCode": "T.1.8.4", - "ruleContent": "(EV only) The Firewall or the part of the Firewall on the Tractive System side must be: a. Made of aluminum. The Firewall layer itself must not be aluminum tape. b. Grounded, refer to EV.6.7 Grounding", + "ruleContent": "(EV only) The Firewall or the part of the Firewall on the Tractive System side must be:", "parentRuleCode": "T.1.8", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.4.a", + "ruleContent": "Made of aluminum. The Firewall layer itself must not be aluminum tape.", + "parentRuleCode": "T.1.8.4", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.4.b", + "ruleContent": "Grounded, refer to EV.6.7 Grounding", + "parentRuleCode": "T.1.8.4", + "pageNumber": "57" }, { "ruleCode": "T.1.8.5", "ruleContent": "(EV only) The Accumulator Container must not be part of the Firewall", "parentRuleCode": "T.1.8", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" }, { "ruleCode": "T.1.8.6", - "ruleContent": "Sealing a. Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, edges, any pass throughs and Floor Closeout) b. Firewalls that have multiple panels must overlap and be sealed at the joints c. Sealing between Firewalls must not be a stressed part of the Firewall d. Grommets must be used to seal any pass through for wiring, cables, etc e. Any seals or adhesives used with the Firewall must be rated for the application environment", + "ruleContent": "Sealing", "parentRuleCode": "T.1.8", - "pageNumber": "57", - "isFromTOC": false + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.6.a", + "ruleContent": "Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, edges, any pass throughs and Floor Closeout)", + "parentRuleCode": "T.1.8.6", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.6.b", + "ruleContent": "Firewalls that have multiple panels must overlap and be sealed at the joints", + "parentRuleCode": "T.1.8.6", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.6.c", + "ruleContent": "Sealing between Firewalls must not be a stressed part of the Firewall", + "parentRuleCode": "T.1.8.6", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.6.d", + "ruleContent": "Grommets must be used to seal any pass through for wiring, cables, etc Version 1.0 31 Aug 2024", + "parentRuleCode": "T.1.8.6", + "pageNumber": "57" + }, + { + "ruleCode": "T.1.8.6.e", + "ruleContent": "Any seals or adhesives used with the Firewall must be rated for the application environment", + "parentRuleCode": "T.1.8.6", + "pageNumber": "57" }, { "ruleCode": "T.2", "ruleContent": "DRIVER ACCOMMODATION", "parentRuleCode": "T", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.1", - "ruleContent": "Harness Definitions a. 5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine Belt. b. 6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or Anti- Submarine Belts. c. 7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or Anti- Submarine Belts and a negative g or Z Belt. d. Upright Driving Position - with a seat back angled at 30° or less from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in F.5.6.5 and positioned per F.5.6.6 e. Reclined Driving Position - with a seat back angled at more than 30° from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in F.5.6.5 and positioned per F.5.6.6 f. Chest to Groin Line - the straight line that in side view follows the line of the Shoulder Belts from the chest to the release buckle.", + "ruleContent": "Harness Definitions", "parentRuleCode": "T.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" + }, + { + "ruleCode": "T.2.1.a", + "ruleContent": "5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine Belt.", + "parentRuleCode": "T.2.1", + "pageNumber": "58" + }, + { + "ruleCode": "T.2.1.b", + "ruleContent": "6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or Anti- Submarine Belts.", + "parentRuleCode": "T.2.1", + "pageNumber": "58" + }, + { + "ruleCode": "T.2.1.c", + "ruleContent": "7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or Anti- Submarine Belts and a negative g or Z Belt.", + "parentRuleCode": "T.2.1", + "pageNumber": "58" + }, + { + "ruleCode": "T.2.1.d", + "ruleContent": "Upright Driving Position - with a seat back angled at 30° or less from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in F.5.6.5 and positioned per F.5.6.6", + "parentRuleCode": "T.2.1", + "pageNumber": "58" + }, + { + "ruleCode": "T.2.1.e", + "ruleContent": "Reclined Driving Position - with a seat back angled at more than 30° from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in F.5.6.5 and positioned per F.5.6.6", + "parentRuleCode": "T.2.1", + "pageNumber": "58" + }, + { + "ruleCode": "T.2.1.f", + "ruleContent": "Chest to Groin Line - the straight line that in side view follows the line of the Shoulder Belts from the chest to the release buckle.", + "parentRuleCode": "T.2.1", + "pageNumber": "58" }, { "ruleCode": "T.2.2", "ruleContent": "Harness Specification", "parentRuleCode": "T.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.2.1", - "ruleContent": "The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three: a. SFI Specification 16.1 b. SFI Specification 16.5 c. FIA specification 8853/2016", + "ruleContent": "The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three:", "parentRuleCode": "T.2.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" + }, + { + "ruleCode": "T.2.2.1.a", + "ruleContent": "SFI Specification 16.1", + "parentRuleCode": "T.2.2.1", + "pageNumber": "58" + }, + { + "ruleCode": "T.2.2.1.b", + "ruleContent": "SFI Specification 16.5", + "parentRuleCode": "T.2.2.1", + "pageNumber": "58" + }, + { + "ruleCode": "T.2.2.1.c", + "ruleContent": "FIA specification 8853/2016", + "parentRuleCode": "T.2.2.1", + "pageNumber": "58" }, { "ruleCode": "T.2.2.2", "ruleContent": "The belts must have the original manufacturers labels showing the specification and expiration date", "parentRuleCode": "T.2.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.2.3", - "ruleContent": "The Harness must be in or before the year of expiration shown on the labels. Harnesses expiring on or before Dec 31 of the calendar year of the competition are permitted.", + "ruleContent": "The Harness must be in or before the year of expiration shown on the labels. Harnesses expiring on or before Dec 31 of the calendar year of the competition are permitted.", "parentRuleCode": "T.2.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.2.4", "ruleContent": "The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or other issues", "parentRuleCode": "T.2.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.2.5", "ruleContent": "All Harness hardware must be installed and threaded in accordance with manufacturer’s instructions", "parentRuleCode": "T.2.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.2.6", - "ruleContent": "All Harness hardware must be used as received from the manufacturer. No modification (including drilling, cutting, grinding, etc) is permitted.", + "ruleContent": "All Harness hardware must be used as received from the manufacturer. No modification (including drilling, cutting, grinding, etc) is permitted.", "parentRuleCode": "T.2.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.3", "ruleContent": "Harness Requirements", "parentRuleCode": "T.2", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.3.1", - "ruleContent": "Vehicles with a Reclined Driving Position must have: a. A 6 Point Harness or a 7 Point Harness b. Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of Anti- Submarine Belts installed.", + "ruleContent": "Vehicles with a Reclined Driving Position must have:", "parentRuleCode": "T.2.3", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" + }, + { + "ruleCode": "T.2.3.1.a", + "ruleContent": "A 6 Point Harness or a 7 Point Harness", + "parentRuleCode": "T.2.3.1", + "pageNumber": "58" + }, + { + "ruleCode": "T.2.3.1.b", + "ruleContent": "Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of Anti- Submarine Belts installed.", + "parentRuleCode": "T.2.3.1", + "pageNumber": "58" }, { "ruleCode": "T.2.3.2", - "ruleContent": "All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters.", + "ruleContent": "All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. Version 1.0 31 Aug 2024", "parentRuleCode": "T.2.3", - "pageNumber": "58", - "isFromTOC": false + "pageNumber": "58" }, { "ruleCode": "T.2.3.3", - "ruleContent": "The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed.", + "ruleContent": "The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed.", "parentRuleCode": "T.2.3", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" }, { "ruleCode": "T.2.4", "ruleContent": "Belt, Strap and Harness Installation - General", "parentRuleCode": "T.2", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" }, { "ruleCode": "T.2.4.1", "ruleContent": "The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the Primary Structure.", "parentRuleCode": "T.2.4", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" }, { "ruleCode": "T.2.4.2", "ruleContent": "Any guide or support for the belts must be material meeting F.3.2.1.j", "parentRuleCode": "T.2.4", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" }, { "ruleCode": "T.2.4.3", - "ruleContent": "Each tab, bracket or eye to which any part of the Harness is attached must: a. Support a minimum load in pullout and tearout before failure of: • If one belt is attached to the tab, bracket or eye 15 kN • If two belts are attached to the tab, bracket or eye 30 kN b. Be 1.6 mm minimum thickness c. Not cause abrasion to the belt webbing Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest radial cross section.", + "ruleContent": "Each tab, bracket or eye to which any part of the Harness is attached must:", "parentRuleCode": "T.2.4", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.3.a", + "ruleContent": "Support a minimum load in pullout and tearout before failure of: • If one belt is attached to the tab, bracket or eye 15 kN • If two belts are attached to the tab, bracket or eye 30 kN", + "parentRuleCode": "T.2.4.3", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.3.b", + "ruleContent": "Be 1.6 mm minimum thickness", + "parentRuleCode": "T.2.4.3", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.3.c", + "ruleContent": "Not cause abrasion to the belt webbing Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest radial cross section.", + "parentRuleCode": "T.2.4.3", + "pageNumber": "59" }, { "ruleCode": "T.2.4.4", - "ruleContent": "Attachment of tabs or brackets must meet these: a. Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to the chassis b. Welded tabs or eyes must have a base at least as large as the outer diameter of the tab or eye c. Where a single shear tab is welded to the chassis, the tab to tube welding must be on the two sides of the base of the tab Double shear attachments are preferred. Tabs and brackets for double shear mounts should be welded on the two sides.", + "ruleContent": "Attachment of tabs or brackets must meet these:", "parentRuleCode": "T.2.4", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.4.a", + "ruleContent": "Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to the chassis", + "parentRuleCode": "T.2.4.4", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.4.b", + "ruleContent": "Welded tabs or eyes must have a base at least as large as the outer diameter of the tab or eye", + "parentRuleCode": "T.2.4.4", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.4.c", + "ruleContent": "Where a single shear tab is welded to the chassis, the tab to tube welding must be on the two sides of the base of the tab Double shear attachments are preferred. Tabs and brackets for double shear mounts should be welded on the two sides.", + "parentRuleCode": "T.2.4.4", + "pageNumber": "59" }, { "ruleCode": "T.2.4.5", - "ruleContent": "Eyebolts or weld eyes must: a. Be one piece. No eyenuts or swivels. b. Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum Threads should be 7/16-20 or greater c. Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other harness brackets (lap and anti sub) or other vehicle parts d. Have a positive locking feature on threads or by the belt itself", + "ruleContent": "Eyebolts or weld eyes must:", "parentRuleCode": "T.2.4", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.5.a", + "ruleContent": "Be one piece. No eyenuts or swivels.", + "parentRuleCode": "T.2.4.5", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.5.b", + "ruleContent": "Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum Threads should be 7/16-20 or greater", + "parentRuleCode": "T.2.4.5", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.5.c", + "ruleContent": "Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other harness brackets (lap and anti sub) or other vehicle parts", + "parentRuleCode": "T.2.4.5", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.5.d", + "ruleContent": "Have a positive locking feature on threads or by the belt itself", + "parentRuleCode": "T.2.4.5", + "pageNumber": "59" }, { "ruleCode": "T.2.4.6", - "ruleContent": "For the belt itself to be considered a positive locking feature, the eyebolt must: a. Have minimum 10 threads engaged in a threaded insert b. Be shimmed to fully tight c. Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt creating a torque on the eyebolt.", + "ruleContent": "For the belt itself to be considered a positive locking feature, the eyebolt must:", "parentRuleCode": "T.2.4", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.6.a", + "ruleContent": "Have minimum 10 threads engaged in a threaded insert", + "parentRuleCode": "T.2.4.6", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.6.b", + "ruleContent": "Be shimmed to fully tight", + "parentRuleCode": "T.2.4.6", + "pageNumber": "59" + }, + { + "ruleCode": "T.2.4.6.c", + "ruleContent": "Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt creating a torque on the eyebolt.", + "parentRuleCode": "T.2.4.6", + "pageNumber": "59" }, { "ruleCode": "T.2.4.7", - "ruleContent": "Harness installation must meet T.1.8.1", + "ruleContent": "Harness installation must meet T.1.8.1 Version 1.0 31 Aug 2024", "parentRuleCode": "T.2.4", - "pageNumber": "59", - "isFromTOC": false + "pageNumber": "59" }, { "ruleCode": "T.2.5", "ruleContent": "Lap Belt Mounting", "parentRuleCode": "T.2", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.5.1", "ruleContent": "The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip bones)", "parentRuleCode": "T.2.5", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.5.2", "ruleContent": "Installation of the Lap Belts must go in a straight line from the mounting point until they reach the driver's body without touching any hole in the seat or any other intermediate structure", "parentRuleCode": "T.2.5", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.5.3", "ruleContent": "The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the seat", "parentRuleCode": "T.2.5", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.5.4", - "ruleContent": "With an Upright Driving Position: a. The Lap Belt Side View Angle must be between 45° and 65° to the horizontal. b. The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward of the seat back to seat bottom junction.", + "ruleContent": "With an Upright Driving Position:", "parentRuleCode": "T.2.5", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" + }, + { + "ruleCode": "T.2.5.4.a", + "ruleContent": "The Lap Belt Side View Angle must be between 45° and 65° to the horizontal.", + "parentRuleCode": "T.2.5.4", + "pageNumber": "60" + }, + { + "ruleCode": "T.2.5.4.b", + "ruleContent": "The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward of the seat back to seat bottom junction.", + "parentRuleCode": "T.2.5.4", + "pageNumber": "60" }, { "ruleCode": "T.2.5.5", "ruleContent": "With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to the horizontal.", "parentRuleCode": "T.2.5", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.5.6", - "ruleContent": "The Lap Belts must attach by one of the two: a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame", + "ruleContent": "The Lap Belts must attach by one of the two:", "parentRuleCode": "T.2.5", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" + }, + { + "ruleCode": "T.2.5.6.a", + "ruleContent": "Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9", + "parentRuleCode": "T.2.5.6", + "pageNumber": "60" + }, + { + "ruleCode": "T.2.5.6.b", + "ruleContent": "Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame", + "parentRuleCode": "T.2.5.6", + "pageNumber": "60" }, { "ruleCode": "T.2.5.7", "ruleContent": "In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an eye bolt attachment", "parentRuleCode": "T.2.5", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.5.8", "ruleContent": "Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 10 mm or 3/8”", "parentRuleCode": "T.2.5", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.6", "ruleContent": "Shoulder Harness", "parentRuleCode": "T.2", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.6.1", "ruleContent": "From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal.", "parentRuleCode": "T.2.6", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.6.2", "ruleContent": "The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center", "parentRuleCode": "T.2.6", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" }, { "ruleCode": "T.2.6.3", - "ruleContent": "The Shoulder Belts must attach by one of the four: a. Wrap around the Shoulder Harness Mounting bar b. Bolt through a welded tube insert or tested monocoque attachment F.7.9 c. Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye (", + "ruleContent": "The Shoulder Belts must attach by one of the four:", "parentRuleCode": "T.2.6", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" + }, + { + "ruleCode": "T.2.6.3.a", + "ruleContent": "Wrap around the Shoulder Harness Mounting bar", + "parentRuleCode": "T.2.6.3", + "pageNumber": "60" + }, + { + "ruleCode": "T.2.6.3.b", + "ruleContent": "Bolt through a welded tube insert or tested monocoque attachment F.7.9", + "parentRuleCode": "T.2.6.3", + "pageNumber": "60" + }, + { + "ruleCode": "T.2.6.3.c", + "ruleContent": "Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye (", + "parentRuleCode": "T.2.6.3", + "pageNumber": "60" }, { "ruleCode": "T.2.4.3", - "ruleContent": ") loaded in tension on the Shoulder Harness Mounting bar d. Wrap around physically tested hardware attached to a monocoque", + "ruleContent": ") loaded in tension on the Shoulder Harness Mounting bar", "parentRuleCode": "T.2.4", - "pageNumber": "60", - "isFromTOC": false + "pageNumber": "60" + }, + { + "ruleCode": "T.2.4.3.d", + "ruleContent": "Wrap around physically tested hardware attached to a monocoque Version 1.0 31 Aug 2024", + "parentRuleCode": "T.2.4.3", + "pageNumber": "60" }, { "ruleCode": "T.2.6.4", "ruleContent": "Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 10 mm or 3/8”", "parentRuleCode": "T.2.6", - "pageNumber": "61", - "isFromTOC": false + "pageNumber": "61" }, { "ruleCode": "T.2.7", "ruleContent": "Anti-Submarine Belt Mounting", "parentRuleCode": "T.2", - "pageNumber": "61", - "isFromTOC": false + "pageNumber": "61" }, { "ruleCode": "T.2.7.1", "ruleContent": "The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt Side View Angle no more than 20°", "parentRuleCode": "T.2.7", - "pageNumber": "61", - "isFromTOC": false + "pageNumber": "61" }, { "ruleCode": "T.2.7.2", - "ruleContent": "The Anti-Submarine Belts of a 6 point harness must mount in one of the two: a. With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side View Angle up to 20° rearwards. The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart. b. With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming up around the groin to the release buckle.", + "ruleContent": "The Anti-Submarine Belts of a 6 point harness must mount in one of the two:", "parentRuleCode": "T.2.7", - "pageNumber": "61", - "isFromTOC": false + "pageNumber": "61" + }, + { + "ruleCode": "T.2.7.2.a", + "ruleContent": "With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side View Angle up to 20° rearwards. The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart.", + "parentRuleCode": "T.2.7.2", + "pageNumber": "61" + }, + { + "ruleCode": "T.2.7.2.b", + "ruleContent": "With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming up around the groin to the release buckle. Version 1.0 31 Aug 2024", + "parentRuleCode": "T.2.7.2", + "pageNumber": "61" }, { "ruleCode": "T.2.7.3", - "ruleContent": "Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt Mounting Point(s) without touching any hole in the seat or any other intermediate structure until they reach: a. The release buckle for the 5 Point Harness mounting per T.2.7.1 b. The first point where the belt touches the driver’s body for the 6 Point Harness mounting per T.2.7.2", + "ruleContent": "Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt Mounting Point(s) without touching any hole in the seat or any other intermediate structure until they reach:", "parentRuleCode": "T.2.7", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" + }, + { + "ruleCode": "T.2.7.3.a", + "ruleContent": "The release buckle for the 5 Point Harness mounting per T.2.7.1", + "parentRuleCode": "T.2.7.3", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.7.3.b", + "ruleContent": "The first point where the belt touches the driver’s body for the 6 Point Harness mounting per T.2.7.2", + "parentRuleCode": "T.2.7.3", + "pageNumber": "62" }, { "ruleCode": "T.2.7.4", - "ruleContent": "The Anti Submarine Belts must attach by one of the three: a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame c. Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. The belt must not be able to touch the ground.", + "ruleContent": "The Anti Submarine Belts must attach by one of the three:", "parentRuleCode": "T.2.7", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" + }, + { + "ruleCode": "T.2.7.4.a", + "ruleContent": "Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9", + "parentRuleCode": "T.2.7.4", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.7.4.b", + "ruleContent": "Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame", + "parentRuleCode": "T.2.7.4", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.7.4.c", + "ruleContent": "Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. The belt must not be able to touch the ground.", + "parentRuleCode": "T.2.7.4", + "pageNumber": "62" }, { "ruleCode": "T.2.7.5", "ruleContent": "Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 8 mm or 5/16”", "parentRuleCode": "T.2.7", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" }, { "ruleCode": "T.2.8", "ruleContent": "Head Restraint", "parentRuleCode": "T.2", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" }, { "ruleCode": "T.2.8.1", "ruleContent": "A Head Restraint must be provided to limit the rearward motion of the driver’s head.", "parentRuleCode": "T.2.8", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" }, { "ruleCode": "T.2.8.2", "ruleContent": "The Head Restraint must be vertical or near vertical in side view.", "parentRuleCode": "T.2.8", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" }, { "ruleCode": "T.2.8.3", - "ruleContent": "All material and structure of the Head Restraint must be inside one or the two of: a. Rollover Protection Envelope F.1.13 b. Head Restraint Protection (if used) F.5.10", + "ruleContent": "All material and structure of the Head Restraint must be inside one or the two of:", "parentRuleCode": "T.2.8", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.3.a", + "ruleContent": "Rollover Protection Envelope F.1.13", + "parentRuleCode": "T.2.8.3", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.3.b", + "ruleContent": "Head Restraint Protection (if used) F.5.10", + "parentRuleCode": "T.2.8.3", + "pageNumber": "62" }, { "ruleCode": "T.2.8.4", - "ruleContent": "The Head Restraint, attachment and mounting must be strong enough to withstand a minimum force of: a. 900 N applied in a rearward direction b. 300 N applied in a lateral or vertical direction", + "ruleContent": "The Head Restraint, attachment and mounting must be strong enough to withstand a minimum force of:", "parentRuleCode": "T.2.8", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.4.a", + "ruleContent": "900 N applied in a rearward direction", + "parentRuleCode": "T.2.8.4", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.4.b", + "ruleContent": "300 N applied in a lateral or vertical direction", + "parentRuleCode": "T.2.8.4", + "pageNumber": "62" }, { "ruleCode": "T.2.8.5", - "ruleContent": "For all drivers, the Head Restraint must be located and adjusted where: a. The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, with the driver in their normal driving position. b. The contact point of the back of the driver’s helmet on the Head Restraint is no less than 50 mm from any edge of the Head Restraint. Approximately 100 mm of longitudinal adjustment should accommodate range of specified drivers. Several Head Restraints with different thicknesses may be used", + "ruleContent": "For all drivers, the Head Restraint must be located and adjusted where:", "parentRuleCode": "T.2.8", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.5.a", + "ruleContent": "The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, with the driver in their normal driving position.", + "parentRuleCode": "T.2.8.5", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.5.b", + "ruleContent": "The contact point of the back of the driver’s helmet on the Head Restraint is no less than 50 mm from any edge of the Head Restraint. Approximately 100 mm of longitudinal adjustment should accommodate range of specified drivers. Several Head Restraints with different thicknesses may be used", + "parentRuleCode": "T.2.8.5", + "pageNumber": "62" }, { "ruleCode": "T.2.8.6", - "ruleContent": "The Head Restraint padding must: a. Be an energy absorbing material that is one of the two: • Meets SFI Spec 45.2 • CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17 b. Have a minimum thickness of 38 mm c. Have a minimum width of 15 cm d. Meet one of the two: • minimum area of 235 cm AND minimum total height adjustment of 17.5 cm • minimum height of 28 cm e. Be covered with a thin, flexible material that contains a ~20 mm diameter inspection hole in a surface other than the front surface", + "ruleContent": "The Head Restraint padding must:", "parentRuleCode": "T.2.8", - "pageNumber": "62", - "isFromTOC": false + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.6.a", + "ruleContent": "Be an energy absorbing material that is one of the two: • Meets SFI Spec 45.2 • CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17", + "parentRuleCode": "T.2.8.6", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.6.b", + "ruleContent": "Have a minimum thickness of 38 mm", + "parentRuleCode": "T.2.8.6", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.6.c", + "ruleContent": "Have a minimum width of 15 cm Version 1.0 31 Aug 2024", + "parentRuleCode": "T.2.8.6", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.6.d", + "ruleContent": "Meet one of the two: • minimum area of 235 cm 2 AND minimum total height adjustment of 17.5 cm • minimum height of 28 cm", + "parentRuleCode": "T.2.8.6", + "pageNumber": "62" + }, + { + "ruleCode": "T.2.8.6.e", + "ruleContent": "Be covered with a thin, flexible material that contains a ~20 mm diameter inspection hole in a surface other than the front surface", + "parentRuleCode": "T.2.8.6", + "pageNumber": "62" }, { "ruleCode": "T.2.9", "ruleContent": "Roll Bar Padding Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec 45.1 or FIA 8857-2001.", "parentRuleCode": "T.2", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3", "ruleContent": "BRAKES", "parentRuleCode": "T", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1", "ruleContent": "Brake System", "parentRuleCode": "T.3", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.1", "ruleContent": "The vehicle must have a Brake System", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.2", - "ruleContent": "The Brake System must: a. Act on all four wheels b. Be operated by a single control c. Be capable of locking all four wheels", + "ruleContent": "The Brake System must:", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" + }, + { + "ruleCode": "T.3.1.2.a", + "ruleContent": "Act on all four wheels", + "parentRuleCode": "T.3.1.2", + "pageNumber": "63" + }, + { + "ruleCode": "T.3.1.2.b", + "ruleContent": "Be operated by a single control", + "parentRuleCode": "T.3.1.2", + "pageNumber": "63" + }, + { + "ruleCode": "T.3.1.2.c", + "ruleContent": "Be capable of locking all four wheels", + "parentRuleCode": "T.3.1.2", + "pageNumber": "63" }, { "ruleCode": "T.3.1.3", "ruleContent": "The Brake System must have two independent hydraulic circuits A leak or failure at any point in the Brake System must maintain effective brake power on minimum two wheels", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.4", "ruleContent": "Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM style reservoir", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.5", "ruleContent": "A single brake acting on a limited slip differential may be used", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.6", "ruleContent": "“Brake by Wire” systems are prohibited", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.7", "ruleContent": "Unarmored plastic brake lines are prohibited", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.8", "ruleContent": "The Brake System must be protected with scatter shields from failure of the drive train (see T.5.2) or from minor collisions.", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.9", "ruleContent": "In side view any portion of the Brake System that is mounted on the sprung part of the vehicle must not project below the lower surface of the chassis", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.1.10", "ruleContent": "Fasteners in the Brake System are Critical Fasteners, see T.8.2", "parentRuleCode": "T.3.1", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.2", "ruleContent": "Brake Pedal, Pedal Box and Mounting", "parentRuleCode": "T.3", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.2.1", "ruleContent": "The Brake Pedal must be one of: • Fabricated from steel or aluminum • Machined from steel, aluminum or titanium", "parentRuleCode": "T.3.2", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.2.2", - "ruleContent": "The Brake Pedal and associated components design must withstand a minimum force of 2000 N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally", + "ruleContent": "The Brake Pedal and associated components design must withstand a minimum force of 2000 N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally", "parentRuleCode": "T.3.2", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.2.3", - "ruleContent": "Failure of non-loadbearing components in the Brake System or pedal box must not interfere with Brake Pedal operation or Brake System function", + "ruleContent": "Failure of non-loadbearing components in the Brake System or pedal box must not interfere with Brake Pedal operation or Brake System function Version 1.0 31 Aug 2024", "parentRuleCode": "T.3.2", - "pageNumber": "63", - "isFromTOC": false + "pageNumber": "63" }, { "ruleCode": "T.3.2.4", - "ruleContent": "(EV only) Additional requirements for Electric Vehicles: a. The first 90% of the Brake Pedal travel may be used to regenerate energy without actuating the hydraulic brake system b. The remaining Brake Pedal travel must directly operate the hydraulic brake system. Brake energy regeneration may stay active", + "ruleContent": "(EV only) Additional requirements for Electric Vehicles:", "parentRuleCode": "T.3.2", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" + }, + { + "ruleCode": "T.3.2.4.a", + "ruleContent": "The first 90% of the Brake Pedal travel may be used to regenerate energy without actuating the hydraulic brake system", + "parentRuleCode": "T.3.2.4", + "pageNumber": "64" + }, + { + "ruleCode": "T.3.2.4.b", + "ruleContent": "The remaining Brake Pedal travel must directly operate the hydraulic brake system. Brake energy regeneration may stay active", + "parentRuleCode": "T.3.2.4", + "pageNumber": "64" }, { "ruleCode": "T.3.3", "ruleContent": "Brake Over Travel Switch - BOTS", "parentRuleCode": "T.3", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.3.3.1", - "ruleContent": "The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the normal range will operate the switch", + "ruleContent": "The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the normal range will operate the switch", "parentRuleCode": "T.3.3", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.3.3.2", - "ruleContent": "The BOTS must: a. Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or flip type) b. Hold if operated to the OFF position", + "ruleContent": "The BOTS must:", "parentRuleCode": "T.3.3", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" + }, + { + "ruleCode": "T.3.3.2.a", + "ruleContent": "Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or flip type)", + "parentRuleCode": "T.3.3.2", + "pageNumber": "64" + }, + { + "ruleCode": "T.3.3.2.b", + "ruleContent": "Hold if operated to the OFF position", + "parentRuleCode": "T.3.3.2", + "pageNumber": "64" }, { "ruleCode": "T.3.3.3", "ruleContent": "Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2", "parentRuleCode": "T.3.3", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.3.3.4", "ruleContent": "The driver must not be able to reset the BOTS", "parentRuleCode": "T.3.3", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.3.3.5", "ruleContent": "The BOTS must be implemented with analog components, and not using programmable logic controllers, engine control units, or similar functioning digital controllers.", "parentRuleCode": "T.3.3", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.3.4", "ruleContent": "Brake Light", "parentRuleCode": "T.3", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.3.4.1", "ruleContent": "The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight.", "parentRuleCode": "T.3.4", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.3.4.2", - "ruleContent": "The Brake Light must be: a. Red in color on a Black background b. Rectangular, triangular or near round shape with a minimum shining surface of 15 cm c. Mounted between the wheel centerline and driver’s shoulder level vertically and approximately on vehicle centerline laterally.", + "ruleContent": "The Brake Light must be:", "parentRuleCode": "T.3.4", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" + }, + { + "ruleCode": "T.3.4.2.a", + "ruleContent": "Red in color on a Black background", + "parentRuleCode": "T.3.4.2", + "pageNumber": "64" + }, + { + "ruleCode": "T.3.4.2.b", + "ruleContent": "Rectangular, triangular or near round shape with a minimum shining surface of 15 cm 2", + "parentRuleCode": "T.3.4.2", + "pageNumber": "64" + }, + { + "ruleCode": "T.3.4.2.c", + "ruleContent": "Mounted between the wheel centerline and driver’s shoulder level vertically and approximately on vehicle centerline laterally.", + "parentRuleCode": "T.3.4.2", + "pageNumber": "64" }, { "ruleCode": "T.3.4.3", "ruleContent": "When LED lights are used without a diffuser, they must not be more than 20 mm apart.", "parentRuleCode": "T.3.4", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.3.4.4", "ruleContent": "If a single line of LEDs is used, the minimum length is 150 mm.", "parentRuleCode": "T.3.4", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.4", "ruleContent": "ELECTRONIC THROTTLE COMPONENTS", "parentRuleCode": "T", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.4.1", - "ruleContent": "Applicability This section T.4 applies only for: • IC vehicles using Electronic Throttle Control (ETC) IC.4 • EV vehicles", + "ruleContent": "Applicability This section T.4 applies only for: • IC vehicles using Electronic Throttle Control (ETC) IC.4 • EV vehicles", "parentRuleCode": "T.4", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.4.2", "ruleContent": "Accelerator Pedal Position Sensor - APPS", "parentRuleCode": "T.4", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.4.2.1", - "ruleContent": "The Accelerator Pedal must operate the APPS T.1.4.1 a. Two springs must be used to return the foot pedal to 0% Pedal Travel b. Each spring must be capable of returning the pedal to 0% Pedal Travel with the other disconnected. The springs in the APPS are not acceptable pedal return springs.", + "ruleContent": "The Accelerator Pedal must operate the APPS T.1.4.1", "parentRuleCode": "T.4.2", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" + }, + { + "ruleCode": "T.4.2.1.a", + "ruleContent": "Two springs must be used to return the foot pedal to 0% Pedal Travel", + "parentRuleCode": "T.4.2.1", + "pageNumber": "64" + }, + { + "ruleCode": "T.4.2.1.b", + "ruleContent": "Each spring must be capable of returning the pedal to 0% Pedal Travel with the other disconnected. The springs in the APPS are not acceptable pedal return springs.", + "parentRuleCode": "T.4.2.1", + "pageNumber": "64" }, { "ruleCode": "T.4.2.2", - "ruleContent": "Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS with two completely separate sensors in a single housing is acceptable.", + "ruleContent": "Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS with two completely separate sensors in a single housing is acceptable. Version 1.0 31 Aug 2024", "parentRuleCode": "T.4.2", - "pageNumber": "64", - "isFromTOC": false + "pageNumber": "64" }, { "ruleCode": "T.4.2.3", - "ruleContent": "The APPS sensors must have different transfer functions which meet one of the two: • Each sensor has different gradients and/or offsets to the other(s). The circuit must have a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel • An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor configurations require prior approval. The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel", + "ruleContent": "The APPS sensors must have different transfer functions which meet one of the two: • Each sensor has different gradients and/or offsets to the other(s). The circuit must have a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel • An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor configurations require prior approval. The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.2.4", - "ruleContent": "Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel require justification in the ETC Systems Form and may not be approved", + "ruleContent": "Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel require justification in the ETC Systems Form and may not be approved", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.2.5", "ruleContent": "If an Implausibility occurs between the values of the APPSs and persists for more than 100 msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped completely. (EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping the power to the Motor(s) is sufficient.", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.2.6", "ruleContent": "If three sensors are used, then in the case of an APPS failure, any two sensors that agree within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target and the 3rd APPS may be ignored.", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.2.7", "ruleContent": "Each APPS must be able to be checked during Technical Inspection by having one of the two: • A separate detachable connector that enables a check of functions by unplugging it • An inline switchable breakout box available that allows disconnection of each APPS signal.", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.2.8", "ruleContent": "The APPS signals must be sent directly to a controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay.", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.2.9", "ruleContent": "Any failure of the APPS or APPS wiring must be detectable by the controller and must be treated like an Implausibility, see T.4.2.4 above", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.2.10", "ruleContent": "When an analogue signal is used, the APPS will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.2.11", - "ruleContent": "When any kind of digital data transmission is used to transmit the APPS signal, a. The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works. b. The failures to be considered must include but are not limited to the failure of the APPS, APPS signals being out of range, corruption of the message and loss of messages and the associated time outs.", + "ruleContent": "When any kind of digital data transmission is used to transmit the APPS signal,", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" + }, + { + "ruleCode": "T.4.2.11.a", + "ruleContent": "The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works.", + "parentRuleCode": "T.4.2.11", + "pageNumber": "65" + }, + { + "ruleCode": "T.4.2.11.b", + "ruleContent": "The failures to be considered must include but are not limited to the failure of the APPS, APPS signals being out of range, corruption of the message and loss of messages and the associated time outs.", + "parentRuleCode": "T.4.2.11", + "pageNumber": "65" }, { "ruleCode": "T.4.2.12", "ruleContent": "The current rules are written to only apply to the APPS (pedal), but the integrity of the torque command signal is important in all stages.", "parentRuleCode": "T.4.2", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.3", "ruleContent": "Brake System Encoder - BSE", "parentRuleCode": "T.4", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.3.1", - "ruleContent": "The vehicle must have a sensor or switch to measure brake pedal position or brake system pressure", + "ruleContent": "The vehicle must have a sensor or switch to measure brake pedal position or brake system pressure Version 1.0 31 Aug 2024", "parentRuleCode": "T.4.3", - "pageNumber": "65", - "isFromTOC": false + "pageNumber": "65" }, { "ruleCode": "T.4.3.2", "ruleContent": "The BSE must be able to be checked during Technical Inspection by having one of: • A separate detachable connector(s) for any BSE signal(s) to the main ECU without affecting any other connections • An inline switchable breakout box available that allows disconnection of each BSE signal(s) to the main ECU without affecting any other connections", "parentRuleCode": "T.4.3", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" }, { "ruleCode": "T.4.3.3", "ruleContent": "The BSE or switch signals must be sent directly to a controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) Motor(s) must be immediately stopped completely. (EV only) It is not necessary to completely deactivate the Tractive System, the motor controller(s) stopping power to the motor(s) is sufficient.", "parentRuleCode": "T.4.3", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" }, { "ruleCode": "T.4.3.4", "ruleContent": "When an analogue signal is used, the BSE sensors will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", "parentRuleCode": "T.4.3", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" }, { "ruleCode": "T.4.3.5", - "ruleContent": "When any kind of digital data transmission is used to transmit the BSE signal: a. The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works. b. The failures modes must include but are not limited to the failure of the sensor, sensor signals being out of range, corruption of the message and loss of messages and the associated time outs. c. In all cases a sensor failure must immediately shutdown power to the motor(s).", + "ruleContent": "When any kind of digital data transmission is used to transmit the BSE signal:", "parentRuleCode": "T.4.3", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" + }, + { + "ruleCode": "T.4.3.5.a", + "ruleContent": "The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works.", + "parentRuleCode": "T.4.3.5", + "pageNumber": "66" + }, + { + "ruleCode": "T.4.3.5.b", + "ruleContent": "The failures modes must include but are not limited to the failure of the sensor, sensor signals being out of range, corruption of the message and loss of messages and the associated time outs.", + "parentRuleCode": "T.4.3.5", + "pageNumber": "66" + }, + { + "ruleCode": "T.4.3.5.c", + "ruleContent": "In all cases a sensor failure must immediately shutdown power to the motor(s).", + "parentRuleCode": "T.4.3.5", + "pageNumber": "66" }, { "ruleCode": "T.5", "ruleContent": "POWERTRAIN", "parentRuleCode": "T", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" }, { "ruleCode": "T.5.1", "ruleContent": "Transmission and Drive Any transmission and drivetrain may be used.", "parentRuleCode": "T.5", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" }, { "ruleCode": "T.5.2", "ruleContent": "Drivetrain Shields and Guards", "parentRuleCode": "T.5", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" }, { "ruleCode": "T.5.2.1", "ruleContent": "Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions (CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case of radial failure", "parentRuleCode": "T.5.2", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" }, { "ruleCode": "T.5.2.2", - "ruleContent": "The final drivetrain shield must: a. Be made with solid material (not perforated) b. Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley c. Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: d. Cover the bottom of the chain or belt or rotating component when fuel, brake lines T.3.1.8, control, pressurized, electrical components are located below", + "ruleContent": "The final drivetrain shield must:", "parentRuleCode": "T.5.2", - "pageNumber": "66", - "isFromTOC": false + "pageNumber": "66" + }, + { + "ruleCode": "T.5.2.2.a", + "ruleContent": "Be made with solid material (not perforated)", + "parentRuleCode": "T.5.2.2", + "pageNumber": "66" + }, + { + "ruleCode": "T.5.2.2.b", + "ruleContent": "Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley", + "parentRuleCode": "T.5.2.2", + "pageNumber": "66" + }, + { + "ruleCode": "T.5.2.2.c", + "ruleContent": "Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: Version 1.0 31 Aug 2024", + "parentRuleCode": "T.5.2.2", + "pageNumber": "66" + }, + { + "ruleCode": "T.5.2.2.d", + "ruleContent": "Cover the bottom of the chain or belt or rotating component when fuel, brake lines T.3.1.8, control, pressurized, electrical components are located below", + "parentRuleCode": "T.5.2.2", + "pageNumber": "66" }, { "ruleCode": "T.5.2.3", "ruleContent": "Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8", "parentRuleCode": "T.5.2", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.2.4", "ruleContent": "Frame Members or existing components that exceed the scatter shield material requirements may be used as part of the shield.", "parentRuleCode": "T.5.2", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.2.5", - "ruleContent": "Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm)", + "ruleContent": "Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm)", "parentRuleCode": "T.5.2", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.2.6", "ruleContent": "If equipped, the engine drive sprocket cover may be used as part of the scatter shield system.", "parentRuleCode": "T.5.2", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.2.7", - "ruleContent": "Chain Drive - Scatter shields for chains must: a. Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed) b. Have a minimum width equal to three times the width of the chain c. Be centered on the center line of the chain d. Stay aligned with the chain under all conditions", + "ruleContent": "Chain Drive - Scatter shields for chains must:", "parentRuleCode": "T.5.2", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.7.a", + "ruleContent": "Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed)", + "parentRuleCode": "T.5.2.7", + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.7.b", + "ruleContent": "Have a minimum width equal to three times the width of the chain", + "parentRuleCode": "T.5.2.7", + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.7.c", + "ruleContent": "Be centered on the center line of the chain", + "parentRuleCode": "T.5.2.7", + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.7.d", + "ruleContent": "Stay aligned with the chain under all conditions", + "parentRuleCode": "T.5.2.7", + "pageNumber": "67" }, { "ruleCode": "T.5.2.8", - "ruleContent": "Non-metallic Belt Drive - Scatter shields for belts must: a. Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6 b. Have a minimum width that is equal to 1.7 times the width of the belt. c. Be centered on the center line of the belt d. Stay aligned with the belt under all conditions", + "ruleContent": "Non-metallic Belt Drive - Scatter shields for belts must:", "parentRuleCode": "T.5.2", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.8.a", + "ruleContent": "Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6", + "parentRuleCode": "T.5.2.8", + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.8.b", + "ruleContent": "Have a minimum width that is equal to 1.7 times the width of the belt.", + "parentRuleCode": "T.5.2.8", + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.8.c", + "ruleContent": "Be centered on the center line of the belt", + "parentRuleCode": "T.5.2.8", + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.8.d", + "ruleContent": "Stay aligned with the belt under all conditions", + "parentRuleCode": "T.5.2.8", + "pageNumber": "67" }, { "ruleCode": "T.5.2.9", "ruleContent": "Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or 1/4” minimum diameter Critical Fasteners, see T.8.2", "parentRuleCode": "T.5.2", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.2.10", - "ruleContent": "Finger Guards a. Must cover any drivetrain parts that spin while the vehicle is stationary with the engine running. b. Must be made of material sufficient to resist finger forces. c. Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard.", + "ruleContent": "Finger Guards", "parentRuleCode": "T.5.2", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.10.a", + "ruleContent": "Must cover any drivetrain parts that spin while the vehicle is stationary with the engine running.", + "parentRuleCode": "T.5.2.10", + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.10.b", + "ruleContent": "Must be made of material sufficient to resist finger forces.", + "parentRuleCode": "T.5.2.10", + "pageNumber": "67" + }, + { + "ruleCode": "T.5.2.10.c", + "ruleContent": "Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard.", + "parentRuleCode": "T.5.2.10", + "pageNumber": "67" }, { "ruleCode": "T.5.3", "ruleContent": "Motor Protection (EV Only)", "parentRuleCode": "T.5", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.3.1", - "ruleContent": "The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. The motor casing may be the original motor casing, a team built motor casing or the original casing with additional material added to achieve the minimum required thickness. • Minimum thickness for aluminum alloy 6061-T6: 3.0 mm If lower grade aluminum alloy is used, then the material must be thicker to provide an equivalent strength. • Minimum thickness for steel: 2.0 mm", + "ruleContent": "The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. The motor casing may be the original motor casing, a team built motor casing or the original casing with additional material added to achieve the minimum required thickness. • Minimum thickness for aluminum alloy 6061-T6: 3.0 mm If lower grade aluminum alloy is used, then the material must be thicker to provide an equivalent strength. • Minimum thickness for steel: 2.0 mm", "parentRuleCode": "T.5.3", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.3.2", "ruleContent": "A Scatter Shield must be included around the Motor(s) when one or the two: • The motor casing rotates around the stator • The motor case is perforated", "parentRuleCode": "T.5.3", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.3.3", - "ruleContent": "The Motor Scatter Shield must be: • Made from aluminum alloy 6061-T6 or steel • Minimum thickness: 1.0 mm", + "ruleContent": "The Motor Scatter Shield must be: • Made from aluminum alloy 6061-T6 or steel • Minimum thickness: 1.0 mm Version 1.0 31 Aug 2024", "parentRuleCode": "T.5.3", - "pageNumber": "67", - "isFromTOC": false + "pageNumber": "67" }, { "ruleCode": "T.5.4", "ruleContent": "Coolant Fluid", "parentRuleCode": "T.5", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.4.1", "ruleContent": "Water cooled engines must use only plain water with no additives of any kind", "parentRuleCode": "T.5.4", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.4.2", "ruleContent": "Liquid coolant for electric motors, Accumulators or HV electronics must be one of: • plain water with no additives • oil", "parentRuleCode": "T.5.4", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.4.3", "ruleContent": "(EV only) Liquid coolant must not directly touch the cells in the Accumulator", "parentRuleCode": "T.5.4", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.5", "ruleContent": "System Sealing", "parentRuleCode": "T.5", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.5.1", "ruleContent": "Any cooling or lubrication system must be sealed to prevent leakage", "parentRuleCode": "T.5.5", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.5.2", "ruleContent": "The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type.", "parentRuleCode": "T.5.5", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.5.3", "ruleContent": "Flammable liquid and vapors or other leaks must not collect or contact the driver", "parentRuleCode": "T.5.5", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.5.4", - "ruleContent": "Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at the locations: a. The lowest point of the chassis b. Rearward of the driver position, forward of a fuel tank or other liquid source c. If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is necessary", + "ruleContent": "Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at the locations:", "parentRuleCode": "T.5.5", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" + }, + { + "ruleCode": "T.5.5.4.a", + "ruleContent": "The lowest point of the chassis", + "parentRuleCode": "T.5.5.4", + "pageNumber": "68" + }, + { + "ruleCode": "T.5.5.4.b", + "ruleContent": "Rearward of the driver position, forward of a fuel tank or other liquid source", + "parentRuleCode": "T.5.5.4", + "pageNumber": "68" + }, + { + "ruleCode": "T.5.5.4.c", + "ruleContent": "If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is necessary", + "parentRuleCode": "T.5.5.4", + "pageNumber": "68" }, { "ruleCode": "T.5.5.5", "ruleContent": "Absorbent material and open collection devices (regardless of material) are prohibited in compartments containing engine, drivetrain, exhaust and fuel systems below the highest point on the exhaust system.", "parentRuleCode": "T.5.5", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.6", "ruleContent": "Catch Cans", "parentRuleCode": "T.5", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.6.1", "ruleContent": "The vehicle must have separate containers (catch cans) to retain fluids from any vents from the powertrain systems.", "parentRuleCode": "T.5.6", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.6.2", - "ruleContent": "Catch cans must be: a. Capable of containing boiling water without deformation b. Located rearwards of the Firewall below the driver’s shoulder level c. Positively retained, using no tie wraps or tape", + "ruleContent": "Catch cans must be:", "parentRuleCode": "T.5.6", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" + }, + { + "ruleCode": "T.5.6.2.a", + "ruleContent": "Capable of containing boiling water without deformation", + "parentRuleCode": "T.5.6.2", + "pageNumber": "68" + }, + { + "ruleCode": "T.5.6.2.b", + "ruleContent": "Located rearwards of the Firewall below the driver’s shoulder level", + "parentRuleCode": "T.5.6.2", + "pageNumber": "68" + }, + { + "ruleCode": "T.5.6.2.c", + "ruleContent": "Positively retained, using no tie wraps or tape", + "parentRuleCode": "T.5.6.2", + "pageNumber": "68" }, { "ruleCode": "T.5.6.3", "ruleContent": "Catch cans for the engine coolant system and engine lubrication system must have a minimum capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher", "parentRuleCode": "T.5.6", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.6.4", "ruleContent": "Catch cans for any vent on other systems containing liquid lubricant or coolant, including a differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid being contained or 0.5 liter, whichever is higher", "parentRuleCode": "T.5.6", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.5.6.5", "ruleContent": "Any catch can on the cooling system must vent through a hose with a minimum internal diameter of 3 mm down to the bottom levels of the Chassis.", "parentRuleCode": "T.5.6", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.6", "ruleContent": "PRESSURIZED SYSTEMS", "parentRuleCode": "T", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.6.1", "ruleContent": "Compressed Gas Cylinders and Lines Any system on the vehicle that uses a compressed gas as an actuating medium must meet:", "parentRuleCode": "T.6", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.6.1.1", - "ruleContent": "Working Gas - The working gas must be non flammable", + "ruleContent": "Working Gas - The working gas must be non flammable Version 1.0 31 Aug 2024", "parentRuleCode": "T.6.1", - "pageNumber": "68", - "isFromTOC": false + "pageNumber": "68" }, { "ruleCode": "T.6.1.2", "ruleContent": "Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed and built for the pressure being used, certified by an accredited testing laboratory in the country of its origin, and labeled or stamped appropriately.", "parentRuleCode": "T.6.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.1.3", "ruleContent": "Pressure Regulation - The pressure regulator must be mounted directly onto the gas cylinder/tank", "parentRuleCode": "T.6.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.1.4", "ruleContent": "Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible operating pressure of the system.", "parentRuleCode": "T.6.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.1.5", "ruleContent": "Insulation - The gas cylinder/tank must be insulated from any heat sources", "parentRuleCode": "T.6.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.1.6", "ruleContent": "Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system must meet one of the two: • Made from metal • Meet the thermal protection requirements of T.1.6.3", "parentRuleCode": "T.6.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.1.7", - "ruleContent": "Cylinder Location - The gas cylinder/tank and the pressure regulator must be: a. Securely mounted inside the Chassis b. Located outside of the Cockpit c. In a position below the height of the Shoulder Belt Mount T.2.6 d. Aligned so the axis of the gas cylinder/tank does not point at the driver", + "ruleContent": "Cylinder Location - The gas cylinder/tank and the pressure regulator must be:", "parentRuleCode": "T.6.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" + }, + { + "ruleCode": "T.6.1.7.a", + "ruleContent": "Securely mounted inside the Chassis", + "parentRuleCode": "T.6.1.7", + "pageNumber": "69" + }, + { + "ruleCode": "T.6.1.7.b", + "ruleContent": "Located outside of the Cockpit", + "parentRuleCode": "T.6.1.7", + "pageNumber": "69" + }, + { + "ruleCode": "T.6.1.7.c", + "ruleContent": "In a position below the height of the Shoulder Belt Mount T.2.6", + "parentRuleCode": "T.6.1.7", + "pageNumber": "69" + }, + { + "ruleCode": "T.6.1.7.d", + "ruleContent": "Aligned so the axis of the gas cylinder/tank does not point at the driver", + "parentRuleCode": "T.6.1.7", + "pageNumber": "69" }, { "ruleCode": "T.6.1.8", "ruleContent": "Protection – The gas cylinder/tank and lines must be protected from rollover, collision from any direction, or damage resulting from the failure of rotating equipment", "parentRuleCode": "T.6.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.1.9", "ruleContent": "The driver must be protected from failure of the cylinder/tank and regulator", "parentRuleCode": "T.6.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.2", "ruleContent": "High Pressure Hydraulic Pumps and Lines This section T.6.2 does not apply to Brake lines or hydraulic clutch lines", "parentRuleCode": "T.6", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.2.1", "ruleContent": "The driver and anyone standing outside the vehicle must be shielded from any hydraulic pumps and lines with line pressures of 2100 kPa or higher.", "parentRuleCode": "T.6.2", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.6.2.2", "ruleContent": "The shields must be steel or aluminum with a minimum thickness of 1 mm.", "parentRuleCode": "T.6.2", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.7", "ruleContent": "BODYWORK AND AERODYNAMIC DEVICES", "parentRuleCode": "T", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.7.1", "ruleContent": "Aerodynamic Devices", "parentRuleCode": "T.7", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.7.1.1", "ruleContent": "Aerodynamic Device A part on the vehicle which guides airflow for purposes including generation of downforce and/or change of drag. Examples include but are not limited to: wings, undertray, splitter, endplates, vanes", "parentRuleCode": "T.7.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.7.1.2", - "ruleContent": "No power device may be used to move or remove air from under the vehicle. Power ground effects are strictly prohibited.", + "ruleContent": "No power device may be used to move or remove air from under the vehicle. Power ground effects are strictly prohibited.", "parentRuleCode": "T.7.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.7.1.3", - "ruleContent": "All Aerodynamic Devices must meet: a. The mounting system provides sufficient rigidity in the static condition b. The Aerodynamic Devices do not oscillate or move excessively when the vehicle is moving. Refer to IN.8.2", + "ruleContent": "All Aerodynamic Devices must meet:", "parentRuleCode": "T.7.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" + }, + { + "ruleCode": "T.7.1.3.a", + "ruleContent": "The mounting system provides sufficient rigidity in the static condition", + "parentRuleCode": "T.7.1.3", + "pageNumber": "69" + }, + { + "ruleCode": "T.7.1.3.b", + "ruleContent": "The Aerodynamic Devices do not oscillate or move excessively when the vehicle is moving. Refer to IN.8.2", + "parentRuleCode": "T.7.1.3", + "pageNumber": "69" }, { "ruleCode": "T.7.1.4", - "ruleContent": "All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. This may be the radius of the edges themselves, or additional permanently attached pieces designed to meet this requirement.", + "ruleContent": "All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. Version 1.0 31 Aug 2024 This may be the radius of the edges themselves, or additional permanently attached pieces designed to meet this requirement.", "parentRuleCode": "T.7.1", - "pageNumber": "69", - "isFromTOC": false + "pageNumber": "69" }, { "ruleCode": "T.7.1.5", "ruleContent": "Other edges that a person may touch must not be sharp", "parentRuleCode": "T.7.1", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.2", "ruleContent": "Bodywork", "parentRuleCode": "T.7", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.2.1", "ruleContent": "Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device", "parentRuleCode": "T.7.2", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.2.2", "ruleContent": "Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic Device if is designed to, or may possibly, produce force due to aerodynamic effects", "parentRuleCode": "T.7.2", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.2.3", - "ruleContent": "Bodywork must not contain openings into the cockpit from the front of the vehicle back to the Main Hoop or Firewall. The cockpit opening and minimal openings around the front suspension components are allowed.", + "ruleContent": "Bodywork must not contain openings into the cockpit from the front of the vehicle back to the Main Hoop or Firewall. The cockpit opening and minimal openings around the front suspension components are allowed.", "parentRuleCode": "T.7.2", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.2.4", "ruleContent": "All forward facing edges on the Bodywork that could contact people, including the nose, must have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more relative to the forward direction, along the top, sides and bottom of all affected edges.", "parentRuleCode": "T.7.2", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.3", "ruleContent": "Measurement", "parentRuleCode": "T.7", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.3.1", - "ruleContent": "All Aerodynamic Device limitations are measured: a. With the wheels pointing in the straight ahead position b. Without a driver in the vehicle The intent is to standardize the measurement, see GR.6.4.1", + "ruleContent": "All Aerodynamic Device limitations are measured:", "parentRuleCode": "T.7.3", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" + }, + { + "ruleCode": "T.7.3.1.a", + "ruleContent": "With the wheels pointing in the straight ahead position", + "parentRuleCode": "T.7.3.1", + "pageNumber": "70" + }, + { + "ruleCode": "T.7.3.1.b", + "ruleContent": "Without a driver in the vehicle The intent is to standardize the measurement, see GR.6.4.1", + "parentRuleCode": "T.7.3.1", + "pageNumber": "70" }, { "ruleCode": "T.7.3.2", "ruleContent": "Head Restraint Plane A transverse vertical plane through the rearmost portion of the front face of the driver head restraint support, excluding any padding, set (if adjustable) in its fully rearward position", "parentRuleCode": "T.7.3", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.3.3", "ruleContent": "Rear Aerodynamic Zone The volume that is: • Rearward of the Head Restraint Plane • Inboard of two vertical planes parallel to the centerline of the chassis touching the inside of the rear tires at the height of the hub centerline", "parentRuleCode": "T.7.3", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.4", "ruleContent": "Location Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1", "parentRuleCode": "T.7", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.5", - "ruleContent": "Length In plan view, any part of any Aerodynamic Device must be: a. No more than 700 mm forward of the fronts of the front tires b. No more than 250 mm rearward of the rear of the rear tires", + "ruleContent": "Length In plan view, any part of any Aerodynamic Device must be:", "parentRuleCode": "T.7", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" + }, + { + "ruleCode": "T.7.5.a", + "ruleContent": "No more than 700 mm forward of the fronts of the front tires", + "parentRuleCode": "T.7.5", + "pageNumber": "70" + }, + { + "ruleCode": "T.7.5.b", + "ruleContent": "No more than 250 mm rearward of the rear of the rear tires", + "parentRuleCode": "T.7.5", + "pageNumber": "70" }, { "ruleCode": "T.7.6", "ruleContent": "Width In plan view, any part of any Aerodynamic Device must be:", "parentRuleCode": "T.7", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.6.1", "ruleContent": "When forward of the centerline of the front wheel axles: Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of the front tires at the height of the hubs.", "parentRuleCode": "T.7.6", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.6.2", - "ruleContent": "When between the centerlines of the front and rear wheel axles: Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height of the wheel centers", + "ruleContent": "When between the centerlines of the front and rear wheel axles: Version 1.0 31 Aug 2024 Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height of the wheel centers", "parentRuleCode": "T.7.6", - "pageNumber": "70", - "isFromTOC": false + "pageNumber": "70" }, { "ruleCode": "T.7.6.3", "ruleContent": "When rearward of the centerline of the rear wheel axles: In the Rear Aerodynamic Zone", "parentRuleCode": "T.7.6", - "pageNumber": "71", - "isFromTOC": false + "pageNumber": "71" }, { "ruleCode": "T.7.7", "ruleContent": "Height", "parentRuleCode": "T.7", - "pageNumber": "71", - "isFromTOC": false + "pageNumber": "71" }, { "ruleCode": "T.7.7.1", - "ruleContent": "Any part of any Aerodynamic Device that is located: a. In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground b. Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the ground c. Forward of the centerline of the front wheel axles and outboard of two vertical planes parallel to the centerline of the chassis touching the inside of the front tires at the height of the hubs must be no higher than 250 mm above the ground", + "ruleContent": "Any part of any Aerodynamic Device that is located:", "parentRuleCode": "T.7.7", - "pageNumber": "71", - "isFromTOC": false + "pageNumber": "71" + }, + { + "ruleCode": "T.7.7.1.a", + "ruleContent": "In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground", + "parentRuleCode": "T.7.7.1", + "pageNumber": "71" + }, + { + "ruleCode": "T.7.7.1.b", + "ruleContent": "Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the ground", + "parentRuleCode": "T.7.7.1", + "pageNumber": "71" + }, + { + "ruleCode": "T.7.7.1.c", + "ruleContent": "Forward of the centerline of the front wheel axles and outboard of two vertical planes parallel to the centerline of the chassis touching the inside of the front tires at the height of the hubs must be no higher than 250 mm above the ground", + "parentRuleCode": "T.7.7.1", + "pageNumber": "71" }, { "ruleCode": "T.7.7.2", "ruleContent": "Bodywork height is not restricted when the Bodywork is located: • Between the transverse vertical planes positioned at the front and rear axle centerlines • Inside two vertical fore and aft planes 400 mm outboard from the centerline on each side of the vehicle", "parentRuleCode": "T.7.7", - "pageNumber": "71", - "isFromTOC": false + "pageNumber": "71" }, { "ruleCode": "T.8", "ruleContent": "FASTENERS", "parentRuleCode": "T", - "pageNumber": "71", - "isFromTOC": false + "pageNumber": "71" }, { "ruleCode": "T.8.1", "ruleContent": "Critical Fasteners A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule", "parentRuleCode": "T.8", - "pageNumber": "71", - "isFromTOC": false + "pageNumber": "71" }, { "ruleCode": "T.8.2", "ruleContent": "Critical Fastener Requirements", "parentRuleCode": "T.8", - "pageNumber": "71", - "isFromTOC": false + "pageNumber": "71" }, { "ruleCode": "T.8.2.1", - "ruleContent": "Any Critical Fastener must meet, at minimum, one of these: a. SAE Grade 5 b. Metric Class 8.8 c. AN/MS Specifications d. Equivalent to or better than above, as approved by a Rules Question or at Technical Inspection", + "ruleContent": "Any Critical Fastener must meet, at minimum, one of these:", "parentRuleCode": "T.8.2", - "pageNumber": "71", - "isFromTOC": false + "pageNumber": "71" + }, + { + "ruleCode": "T.8.2.1.a", + "ruleContent": "SAE Grade 5", + "parentRuleCode": "T.8.2.1", + "pageNumber": "71" + }, + { + "ruleCode": "T.8.2.1.b", + "ruleContent": "Metric Class 8.8", + "parentRuleCode": "T.8.2.1", + "pageNumber": "71" + }, + { + "ruleCode": "T.8.2.1.c", + "ruleContent": "AN/MS Specifications Version 1.0 31 Aug 2024", + "parentRuleCode": "T.8.2.1", + "pageNumber": "71" + }, + { + "ruleCode": "T.8.2.1.d", + "ruleContent": "Equivalent to or better than above, as approved by a Rules Question or at Technical Inspection", + "parentRuleCode": "T.8.2.1", + "pageNumber": "71" }, { "ruleCode": "T.8.2.2", "ruleContent": "All threaded Critical Fasteners must be one of the two: • Hex head • Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts)", "parentRuleCode": "T.8.2", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.8.2.3", "ruleContent": "All Critical Fasteners must be secured from unintentional loosening with Positive Locking Mechanisms see T.8.3", "parentRuleCode": "T.8.2", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.8.2.4", "ruleContent": "A minimum of two full threads must project from any lock nut.", "parentRuleCode": "T.8.2", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.8.2.5", "ruleContent": "Some Critical Fastener applications have additional requirements that are provided in the applicable section.", "parentRuleCode": "T.8.2", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.8.3", "ruleContent": "Positive Locking Mechanisms", "parentRuleCode": "T.8", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.8.3.1", - "ruleContent": "Positive Locking Mechanisms are defined as those which: a. Technical Inspectors / team members can see that the device/system is in place (visible). b. Do not rely on the clamping force to apply the locking or anti vibration feature. Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming completely loose", + "ruleContent": "Positive Locking Mechanisms are defined as those which:", "parentRuleCode": "T.8.3", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" + }, + { + "ruleCode": "T.8.3.1.a", + "ruleContent": "Technical Inspectors / team members can see that the device/system is in place (visible).", + "parentRuleCode": "T.8.3.1", + "pageNumber": "72" + }, + { + "ruleCode": "T.8.3.1.b", + "ruleContent": "Do not rely on the clamping force to apply the locking or anti vibration feature. Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming completely loose", + "parentRuleCode": "T.8.3.1", + "pageNumber": "72" }, { "ruleCode": "T.8.3.2", - "ruleContent": "Examples of acceptable Positive Locking Mechanisms include, but are not limited to: a. Correctly installed safety wiring b. Cotter pins c. Nylon lock nuts (where temperature does not exceed 80°C) d. Prevailing torque lock nuts Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT meet the positive locking requirement", + "ruleContent": "Examples of acceptable Positive Locking Mechanisms include, but are not limited to:", "parentRuleCode": "T.8.3", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" + }, + { + "ruleCode": "T.8.3.2.a", + "ruleContent": "Correctly installed safety wiring", + "parentRuleCode": "T.8.3.2", + "pageNumber": "72" + }, + { + "ruleCode": "T.8.3.2.b", + "ruleContent": "Cotter pins", + "parentRuleCode": "T.8.3.2", + "pageNumber": "72" + }, + { + "ruleCode": "T.8.3.2.c", + "ruleContent": "Nylon lock nuts (where temperature does not exceed 80°C)", + "parentRuleCode": "T.8.3.2", + "pageNumber": "72" + }, + { + "ruleCode": "T.8.3.2.d", + "ruleContent": "Prevailing torque lock nuts Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT meet the positive locking requirement", + "parentRuleCode": "T.8.3.2", + "pageNumber": "72" }, { "ruleCode": "T.8.3.3", - "ruleContent": "If the Positive Locking Mechanism is by prevailing torque lock nuts: a. Locking fasteners must be in as new condition b. A supply of replacement fasteners must be presented in Technical Inspection, including any attachment method", + "ruleContent": "If the Positive Locking Mechanism is by prevailing torque lock nuts:", "parentRuleCode": "T.8.3", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" + }, + { + "ruleCode": "T.8.3.3.a", + "ruleContent": "Locking fasteners must be in as new condition", + "parentRuleCode": "T.8.3.3", + "pageNumber": "72" + }, + { + "ruleCode": "T.8.3.3.b", + "ruleContent": "A supply of replacement fasteners must be presented in Technical Inspection, including any attachment method", + "parentRuleCode": "T.8.3.3", + "pageNumber": "72" }, { "ruleCode": "T.8.4", "ruleContent": "Requirements for All Fasteners Adjustable tie rod ends must be constrained with a jam nut to prevent loosening.", "parentRuleCode": "T.8", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.9", "ruleContent": "ELECTRICAL EQUIPMENT", "parentRuleCode": "T", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.9.1", "ruleContent": "Definitions", "parentRuleCode": "T.9", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.9.1.1", "ruleContent": "High Voltage – HV Any voltage more than 60 V DC or 25 V AC RMS", "parentRuleCode": "T.9.1", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.9.1.2", "ruleContent": "Low Voltage - LV Any voltage less than and including 60 V DC or 25 V AC RMS", "parentRuleCode": "T.9.1", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.9.1.3", - "ruleContent": "Normally Open A type of electrical relay or contactor that allows current flow only in the energized state", + "ruleContent": "Normally Open A type of electrical relay or contactor that allows current flow only in the energized state Version 1.0 31 Aug 2024", "parentRuleCode": "T.9.1", - "pageNumber": "72", - "isFromTOC": false + "pageNumber": "72" }, { "ruleCode": "T.9.2", "ruleContent": "Low Voltage Batteries", "parentRuleCode": "T.9", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.2.1", "ruleContent": "All Low Voltage Batteries and onboard power supplies must be securely mounted inside the Chassis below the height of the Shoulder Belt Mount T.2.6", "parentRuleCode": "T.9.2", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.2.2", "ruleContent": "All Low Voltage batteries must have Overcurrent Protection that trips at or below the maximum specified discharge current of the cells", "parentRuleCode": "T.9.2", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.2.3", "ruleContent": "The hot (ungrounded) terminal must be insulated.", "parentRuleCode": "T.9.2", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.2.4", "ruleContent": "Any wet cell battery located in the driver compartment must be enclosed in a nonconductive marine type container or equivalent.", "parentRuleCode": "T.9.2", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.2.5", - "ruleContent": "Batteries or battery packs based on lithium chemistry must meet one of the two: a. Have a rigid, sturdy casing made from Nonflammable Material b. A commercially available battery designed as an OEM style replacement", + "ruleContent": "Batteries or battery packs based on lithium chemistry must meet one of the two:", "parentRuleCode": "T.9.2", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" + }, + { + "ruleCode": "T.9.2.5.a", + "ruleContent": "Have a rigid, sturdy casing made from Nonflammable Material", + "parentRuleCode": "T.9.2.5", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.2.5.b", + "ruleContent": "A commercially available battery designed as an OEM style replacement", + "parentRuleCode": "T.9.2.5", + "pageNumber": "73" }, { "ruleCode": "T.9.2.6", "ruleContent": "All batteries using chemistries other than lead acid must be presented at Technical Inspection with markings identifying it for comparison to a datasheet or other documentation proving the pack and supporting electronics meet all rules requirements", "parentRuleCode": "T.9.2", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.3", - "ruleContent": "Master Switches Each Master Switch ( IC.9.3 / EV.7.9 ) must meet:", + "ruleContent": "Master Switches Each Master Switch ( IC.9.3 / EV.7.9 ) must meet:", "parentRuleCode": "T.9", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.3.1", - "ruleContent": "Location a. On the driver’s right hand side of the vehicle b. In proximity to the Main Hoop c. At the driver's shoulder height d. Able to be easily operated from outside the vehicle", + "ruleContent": "Location", "parentRuleCode": "T.9.3", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.1.a", + "ruleContent": "On the driver’s right hand side of the vehicle", + "parentRuleCode": "T.9.3.1", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.1.b", + "ruleContent": "In proximity to the Main Hoop", + "parentRuleCode": "T.9.3.1", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.1.c", + "ruleContent": "At the driver's shoulder height", + "parentRuleCode": "T.9.3.1", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.1.d", + "ruleContent": "Able to be easily operated from outside the vehicle", + "parentRuleCode": "T.9.3.1", + "pageNumber": "73" }, { "ruleCode": "T.9.3.2", - "ruleContent": "Characteristics a. Be of the rotary mechanical type b. Be rigidly mounted to the vehicle and must not be removed during maintenance c. Mounted where the rotary axis of the key is near horizontal and across the vehicle d. The ON position must be in the horizontal position and must be marked accordingly e. The OFF position must be clearly marked f. (EV Only) Operated with a red removable key that must only be removable in the electrically open position", + "ruleContent": "Characteristics", "parentRuleCode": "T.9.3", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.2.a", + "ruleContent": "Be of the rotary mechanical type", + "parentRuleCode": "T.9.3.2", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.2.b", + "ruleContent": "Be rigidly mounted to the vehicle and must not be removed during maintenance", + "parentRuleCode": "T.9.3.2", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.2.c", + "ruleContent": "Mounted where the rotary axis of the key is near horizontal and across the vehicle", + "parentRuleCode": "T.9.3.2", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.2.d", + "ruleContent": "The ON position must be in the horizontal position and must be marked accordingly", + "parentRuleCode": "T.9.3.2", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.2.e", + "ruleContent": "The OFF position must be clearly marked", + "parentRuleCode": "T.9.3.2", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.3.2.f", + "ruleContent": "(EV Only) Operated with a red removable key that must only be removable in the electrically open position", + "parentRuleCode": "T.9.3.2", + "pageNumber": "73" }, { "ruleCode": "T.9.4", "ruleContent": "Inertia Switch", "parentRuleCode": "T.9", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.4.1", "ruleContent": "Inertia Switch Requirement • (EV) Must have an Inertia Switch • (IC) Should have an Inertia Switch", "parentRuleCode": "T.9.4", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" }, { "ruleCode": "T.9.4.2", - "ruleContent": "The Inertia Switch must be: a. A Sensata Resettable Crash Sensor or equivalent b. Mechanically and rigidly attached to the vehicle c. Removable to test functionality", + "ruleContent": "The Inertia Switch must be:", "parentRuleCode": "T.9.4", - "pageNumber": "73", - "isFromTOC": false + "pageNumber": "73" + }, + { + "ruleCode": "T.9.4.2.a", + "ruleContent": "A Sensata Resettable Crash Sensor or equivalent", + "parentRuleCode": "T.9.4.2", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.4.2.b", + "ruleContent": "Mechanically and rigidly attached to the vehicle", + "parentRuleCode": "T.9.4.2", + "pageNumber": "73" + }, + { + "ruleCode": "T.9.4.2.c", + "ruleContent": "Removable to test functionality Version 1.0 31 Aug 2024", + "parentRuleCode": "T.9.4.2", + "pageNumber": "73" }, { "ruleCode": "T.9.4.3", - "ruleContent": "Inertia Switch operation: a. Must trigger due to a longitudinal impact load which decelerates the vehicle at between 8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the Sensata device) b. Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered c. Must latch until manually reset d. May be reset by the driver from inside the driver's cell", + "ruleContent": "Inertia Switch operation:", "parentRuleCode": "T.9.4", - "pageNumber": "74", - "isFromTOC": false + "pageNumber": "74" + }, + { + "ruleCode": "T.9.4.3.a", + "ruleContent": "Must trigger due to a longitudinal impact load which decelerates the vehicle at between 8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the Sensata device)", + "parentRuleCode": "T.9.4.3", + "pageNumber": "74" + }, + { + "ruleCode": "T.9.4.3.b", + "ruleContent": "Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered", + "parentRuleCode": "T.9.4.3", + "pageNumber": "74" + }, + { + "ruleCode": "T.9.4.3.c", + "ruleContent": "Must latch until manually reset", + "parentRuleCode": "T.9.4.3", + "pageNumber": "74" + }, + { + "ruleCode": "T.9.4.3.d", + "ruleContent": "May be reset by the driver from inside the driver's cell Version 1.0 31 Aug 2024", + "parentRuleCode": "T.9.4.3", + "pageNumber": "74" }, { "ruleCode": "VE", "ruleContent": "VEHICLE AND DRIVER EQUIPMENT", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.1", "ruleContent": "VEHICLE IDENTIFICATION", "parentRuleCode": "VE", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.1.1", "ruleContent": "Vehicle Number", "parentRuleCode": "VE.1", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.1.1.1", - "ruleContent": "The assigned vehicle number must appear on the vehicle as follows: a. Locations: in three places, on the front of the chassis and the left and right sides b. Height: 150 mm minimum c. Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive numbers) d. Stroke Width and Spacing between numbers: 18 mm minimum e. Color: White numbers on a black background OR black numbers on a white background f. Background: round, oval, square or rectangular g. Spacing: 25 mm minimum between the edge of the numbers and the edge of the background h. The numbers must not be obscured by parts of the vehicle", + "ruleContent": "The assigned vehicle number must appear on the vehicle as follows:", "parentRuleCode": "VE.1.1", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.1.1.a", + "ruleContent": "Locations: in three places, on the front of the chassis and the left and right sides", + "parentRuleCode": "VE.1.1.1", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.1.1.b", + "ruleContent": "Height: 150 mm minimum", + "parentRuleCode": "VE.1.1.1", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.1.1.c", + "ruleContent": "Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive numbers)", + "parentRuleCode": "VE.1.1.1", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.1.1.d", + "ruleContent": "Stroke Width and Spacing between numbers: 18 mm minimum", + "parentRuleCode": "VE.1.1.1", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.1.1.e", + "ruleContent": "Color: White numbers on a black background OR black numbers on a white background", + "parentRuleCode": "VE.1.1.1", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.1.1.f", + "ruleContent": "Background: round, oval, square or rectangular", + "parentRuleCode": "VE.1.1.1", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.1.1.g", + "ruleContent": "Spacing: 25 mm minimum between the edge of the numbers and the edge of the background", + "parentRuleCode": "VE.1.1.1", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.1.1.h", + "ruleContent": "The numbers must not be obscured by parts of the vehicle", + "parentRuleCode": "VE.1.1.1", + "pageNumber": "75" }, { "ruleCode": "VE.1.1.2", "ruleContent": "Additional letters or numerals must not show before or after the vehicle number", "parentRuleCode": "VE.1.1", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.1.2", - "ruleContent": "School Name Each vehicle must clearly display the school name. a. Abbreviations are allowed if unique and generally recognized b. The name must be in Roman characters minimum 50 mm high on the left and right sides of the vehicle. c. The characters must be put on a high contrast background in an easily visible location d. The school name may also appear in non Roman characters, but the Roman character version must be uppermost on the sides.", + "ruleContent": "School Name Each vehicle must clearly display the school name.", "parentRuleCode": "VE.1", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.2.a", + "ruleContent": "Abbreviations are allowed if unique and generally recognized", + "parentRuleCode": "VE.1.2", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.2.b", + "ruleContent": "The name must be in Roman characters minimum 50 mm high on the left and right sides of the vehicle.", + "parentRuleCode": "VE.1.2", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.2.c", + "ruleContent": "The characters must be put on a high contrast background in an easily visible location", + "parentRuleCode": "VE.1.2", + "pageNumber": "75" + }, + { + "ruleCode": "VE.1.2.d", + "ruleContent": "The school name may also appear in non Roman characters, but the Roman character version must be uppermost on the sides.", + "parentRuleCode": "VE.1.2", + "pageNumber": "75" }, { "ruleCode": "VE.1.3", "ruleContent": "SAE Logo The SAE International Logo must be displayed on the front and/or the left and right sides of the vehicle in a prominent location.", "parentRuleCode": "VE.1", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.1.4", "ruleContent": "Inspection Sticker The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: • A clear and unobstructed area, minimum 25 cm wide x 20 cm high • Located on the upper front surface of the nose along the vehicle centerline", "parentRuleCode": "VE.1", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.1.5", "ruleContent": "Transponder / RFID Tag", "parentRuleCode": "VE.1", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.1.5.1", "ruleContent": "Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the specified type(s)", "parentRuleCode": "VE.1.5", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.1.5.2", "ruleContent": "Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information and mounting details", "parentRuleCode": "VE.1.5", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.2", "ruleContent": "VEHICLE EQUIPMENT", "parentRuleCode": "VE", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.2.1", "ruleContent": "Jacking Point", "parentRuleCode": "VE.2", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.2.1.1", - "ruleContent": "A Jacking Point must be provided at the rear of the vehicle", + "ruleContent": "A Jacking Point must be provided at the rear of the vehicle Version 1.0 31 Aug 2024", "parentRuleCode": "VE.2.1", - "pageNumber": "75", - "isFromTOC": false + "pageNumber": "75" }, { "ruleCode": "VE.2.1.2", - "ruleContent": "The Jacking Point must be: a. Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the FSAE Online website b. Visible to a person standing 1 m behind the vehicle c. Color: Orange d. Oriented laterally and perpendicular to the centerline of the vehicle e. Made from round, 25 - 30 mm OD aluminum or steel tube f. Exposed around the lower 180° of its circumference over a minimum length of 280 mm g. Access from the rear of the tube must be unobstructed for 300 mm or more of its length h. The height of the tube must allow 75 mm minimum clearance from the bottom of the tube to the ground i. When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the wheels do not touch the ground when they are in full rebound", + "ruleContent": "The Jacking Point must be:", "parentRuleCode": "VE.2.1", - "pageNumber": "76", - "isFromTOC": false + "pageNumber": "76" }, { - "ruleCode": "VE.2.2", - "ruleContent": "Push Bar Each vehicle must have a removable device which attaches to the rear of the vehicle that: a. Allows two people, standing erect behind the vehicle, to push the vehicle around the competition site b. Is capable of slowing and stopping the forward motion of the vehicle and pulling it rearwards", - "parentRuleCode": "VE.2", - "pageNumber": "76", - "isFromTOC": false + "ruleCode": "VE.2.1.2.a", + "ruleContent": "Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the FSAE Online website", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" }, { - "ruleCode": "VE.2.3", - "ruleContent": "Fire Extinguisher", - "parentRuleCode": "VE.2", - "pageNumber": "76", - "isFromTOC": false + "ruleCode": "VE.2.1.2.b", + "ruleContent": "Visible to a person standing 1 m behind the vehicle", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" }, { - "ruleCode": "VE.2.3.1", - "ruleContent": "Each team must have two or more fire extinguishers. a. One extinguisher must readily be available in the team’s paddock area b. One extinguisher must accompany the vehicle when moved using the Push Bar A commercially available on board fire system may be used instead of the fire extinguisher that accompanies the vehicle", - "parentRuleCode": "VE.2.3", - "pageNumber": "76", - "isFromTOC": false + "ruleCode": "VE.2.1.2.c", + "ruleContent": "Color: Orange", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" }, { - "ruleCode": "VE.2.3.2", - "ruleContent": "Hand held fire extinguishers must NOT be mounted on or in the vehicle", - "parentRuleCode": "VE.2.3", - "pageNumber": "76", - "isFromTOC": false + "ruleCode": "VE.2.1.2.d", + "ruleContent": "Oriented laterally and perpendicular to the centerline of the vehicle", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" }, { - "ruleCode": "VE.2.3.3", - "ruleContent": "Each fire extinguisher must meet these: a. Capacity: 0.9 kg (2 lbs) b. Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and Halon extinguishers and systems are prohibited. c. Equipped with a manufacturer installed pressure/charge gauge. d. Minimum acceptable ratings: • USA, Canada & Brazil: 10BC or 1A 10BC • Europe: 34B or 5A 34B • Australia: 20BE or 1A 10BE e. Extinguishers of larger capacity (higher numerical ratings) are acceptable.", - "parentRuleCode": "VE.2.3", - "pageNumber": "76", - "isFromTOC": false + "ruleCode": "VE.2.1.2.e", + "ruleContent": "Made from round, 25 - 30 mm OD aluminum or steel tube", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" }, { - "ruleCode": "VE.2.4", - "ruleContent": "Electrical Equipment (EV Only) These items must accompany the vehicle at all times: • Two pairs of High Voltage insulating gloves • A multimeter", - "parentRuleCode": "VE.2", - "pageNumber": "76", - "isFromTOC": false + "ruleCode": "VE.2.1.2.f", + "ruleContent": "Exposed around the lower 180° of its circumference over a minimum length of 280 mm", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" }, { - "ruleCode": "VE.2.5", - "ruleContent": "Camera Mounts", - "parentRuleCode": "VE.2", - "pageNumber": "77", - "isFromTOC": false + "ruleCode": "VE.2.1.2.g", + "ruleContent": "Access from the rear of the tube must be unobstructed for 300 mm or more of its length", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" }, { - "ruleCode": "VE.2.5.1", - "ruleContent": "The mounts for video/photographic cameras must be of a safe and secure design.", + "ruleCode": "VE.2.1.2.h", + "ruleContent": "The height of the tube must allow 75 mm minimum clearance from the bottom of the tube to the ground", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.1.2.i", + "ruleContent": "When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the wheels do not touch the ground when they are in full rebound", + "parentRuleCode": "VE.2.1.2", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.2", + "ruleContent": "Push Bar Each vehicle must have a removable device which attaches to the rear of the vehicle that:", + "parentRuleCode": "VE.2", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.2.a", + "ruleContent": "Allows two people, standing erect behind the vehicle, to push the vehicle around the competition site", + "parentRuleCode": "VE.2.2", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.2.b", + "ruleContent": "Is capable of slowing and stopping the forward motion of the vehicle and pulling it rearwards", + "parentRuleCode": "VE.2.2", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3", + "ruleContent": "Fire Extinguisher", + "parentRuleCode": "VE.2", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.1", + "ruleContent": "Each team must have two or more fire extinguishers.", + "parentRuleCode": "VE.2.3", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.1.a", + "ruleContent": "One extinguisher must readily be available in the team’s paddock area", + "parentRuleCode": "VE.2.3.1", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.1.b", + "ruleContent": "One extinguisher must accompany the vehicle when moved using the Push Bar A commercially available on board fire system may be used instead of the fire extinguisher that accompanies the vehicle", + "parentRuleCode": "VE.2.3.1", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.2", + "ruleContent": "Hand held fire extinguishers must NOT be mounted on or in the vehicle", + "parentRuleCode": "VE.2.3", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.3", + "ruleContent": "Each fire extinguisher must meet these:", + "parentRuleCode": "VE.2.3", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.3.a", + "ruleContent": "Capacity: 0.9 kg (2 lbs)", + "parentRuleCode": "VE.2.3.3", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.3.b", + "ruleContent": "Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and Halon extinguishers and systems are prohibited.", + "parentRuleCode": "VE.2.3.3", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.3.c", + "ruleContent": "Equipped with a manufacturer installed pressure/charge gauge.", + "parentRuleCode": "VE.2.3.3", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.3.d", + "ruleContent": "Minimum acceptable ratings: • USA, Canada & Brazil: 10BC or 1A 10BC • Europe: 34B or 5A 34B • Australia: 20BE or 1A 10BE", + "parentRuleCode": "VE.2.3.3", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.3.3.e", + "ruleContent": "Extinguishers of larger capacity (higher numerical ratings) are acceptable.", + "parentRuleCode": "VE.2.3.3", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.4", + "ruleContent": "Electrical Equipment (EV Only) These items must accompany the vehicle at all times: • Two pairs of High Voltage insulating gloves Version 1.0 31 Aug 2024 • A multimeter", + "parentRuleCode": "VE.2", + "pageNumber": "76" + }, + { + "ruleCode": "VE.2.5", + "ruleContent": "Camera Mounts", + "parentRuleCode": "VE.2", + "pageNumber": "77" + }, + { + "ruleCode": "VE.2.5.1", + "ruleContent": "The mounts for video/photographic cameras must be of a safe and secure design.", "parentRuleCode": "VE.2.5", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.2.5.2", "ruleContent": "All camera installations must be approved at Technical Inspection.", "parentRuleCode": "VE.2.5", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.2.5.3", "ruleContent": "Helmet mounted cameras and helmet camera mounts are prohibited.", "parentRuleCode": "VE.2.5", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.2.5.4", "ruleContent": "The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a minimum of two points on different sides of the camera body.", "parentRuleCode": "VE.2.5", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.2.5.5", "ruleContent": "If a tether is used to restrain the camera, the tether length must be limited to prevent contact with the driver.", "parentRuleCode": "VE.2.5", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.3", "ruleContent": "DRIVER EQUIPMENT", "parentRuleCode": "VE", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.3.1", "ruleContent": "General", "parentRuleCode": "VE.3", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.3.1.1", - "ruleContent": "Any Driver Equipment: a. Must be in good condition with no tears, rips, open seams, areas of significant wear, abrasions or stains which might compromise performance. b. Must fit properly c. May be inspected at any time", + "ruleContent": "Any Driver Equipment:", "parentRuleCode": "VE.3.1", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.1.1.a", + "ruleContent": "Must be in good condition with no tears, rips, open seams, areas of significant wear, abrasions or stains which might compromise performance.", + "parentRuleCode": "VE.3.1.1", + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.1.1.b", + "ruleContent": "Must fit properly", + "parentRuleCode": "VE.3.1.1", + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.1.1.c", + "ruleContent": "May be inspected at any time", + "parentRuleCode": "VE.3.1.1", + "pageNumber": "77" }, { "ruleCode": "VE.3.1.2", "ruleContent": "Flame Resistant Material For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, Polybenzimidazole (common name PBI) and Proban.", "parentRuleCode": "VE.3.1", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.3.1.3", "ruleContent": "Synthetic Material – Prohibited Shirts, socks or other undergarments (not to be confused with flame resistant underwear) made from nylon or any other synthetic material which could melt when exposed to high heat are prohibited.", "parentRuleCode": "VE.3.1", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.3.1.4", "ruleContent": "Officials may impound any non approved Driver Equipment until the end of the competition.", "parentRuleCode": "VE.3.1", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.3.2", "ruleContent": "Helmet", "parentRuleCode": "VE.3", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" }, { "ruleCode": "VE.3.2.1", - "ruleContent": "The driver must wear a helmet which: a. Is closed face with an integral, immovable chin guard b. Contains an integrated visor/face shield supplied with the helmet c. Meets an approved standard d. Is properly labeled for that standard", + "ruleContent": "The driver must wear a helmet which:", "parentRuleCode": "VE.3.2", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.2.1.a", + "ruleContent": "Is closed face with an integral, immovable chin guard", + "parentRuleCode": "VE.3.2.1", + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.2.1.b", + "ruleContent": "Contains an integrated visor/face shield supplied with the helmet", + "parentRuleCode": "VE.3.2.1", + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.2.1.c", + "ruleContent": "Meets an approved standard", + "parentRuleCode": "VE.3.2.1", + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.2.1.d", + "ruleContent": "Is properly labeled for that standard", + "parentRuleCode": "VE.3.2.1", + "pageNumber": "77" }, { "ruleCode": "VE.3.2.2", - "ruleContent": "Acceptable helmet standards are listed below. Any additional approved standards are shown on the Technical Inspection Form or the FAQ on the FSAE Online website a. Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, SA2025 b. SFI Specs 31.1/2015, 41.1/2015 c. FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer)", + "ruleContent": "Acceptable helmet standards are listed below. Any additional approved standards are shown on the Technical Inspection Form or the FAQ on the FSAE Online website", "parentRuleCode": "VE.3.2", - "pageNumber": "77", - "isFromTOC": false + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.2.2.a", + "ruleContent": "Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, SA2025", + "parentRuleCode": "VE.3.2.2", + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.2.2.b", + "ruleContent": "SFI Specs 31.1/2015, 41.1/2015", + "parentRuleCode": "VE.3.2.2", + "pageNumber": "77" + }, + { + "ruleCode": "VE.3.2.2.c", + "ruleContent": "FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) Version 1.0 31 Aug 2024", + "parentRuleCode": "VE.3.2.2", + "pageNumber": "77" }, { "ruleCode": "VE.3.3", "ruleContent": "Driver Gear The driver must wear:", "parentRuleCode": "VE.3", - "pageNumber": "78", - "isFromTOC": false + "pageNumber": "78" }, { "ruleCode": "VE.3.3.1", - "ruleContent": "Driver Suit A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers the body from the neck to the ankles and the wrists. Each suit must meet one or more of these standards and be labeled as such: • SFI 3.2A/5 (or higher ex: /10, /15, /20) • SFI 3.4/5 (or higher ex: /10, /15, /20) • FIA Standard 1986 • FIA Standard 8856-2000 • FIA Standard 8856-2018", + "ruleContent": "Driver Suit A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers the body from the neck to the ankles and the wrists. Each suit must meet one or more of these standards and be labeled as such: • SFI 3.2A/5 (or higher ex: /10, /15, /20) • SFI 3.4/5 (or higher ex: /10, /15, /20) • FIA Standard 1986 • FIA Standard 8856-2000 • FIA Standard 8856-2018", "parentRuleCode": "VE.3.3", - "pageNumber": "78", - "isFromTOC": false + "pageNumber": "78" }, { "ruleCode": "VE.3.3.2", "ruleContent": "Underclothing All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under their approved Driver Suit.", "parentRuleCode": "VE.3.3", - "pageNumber": "78", - "isFromTOC": false + "pageNumber": "78" }, { "ruleCode": "VE.3.3.3", "ruleContent": "Balaclava A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame Resistant Material", "parentRuleCode": "VE.3.3", - "pageNumber": "78", - "isFromTOC": false + "pageNumber": "78" }, { "ruleCode": "VE.3.3.4", "ruleContent": "Socks Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit and the Shoes.", "parentRuleCode": "VE.3.3", - "pageNumber": "78", - "isFromTOC": false + "pageNumber": "78" }, { "ruleCode": "VE.3.3.5", "ruleContent": "Shoes Shoes or boots made from Flame Resistant Material that meet an approved standard and labeled as such: • SFI Spec 3.3 • FIA Standard 8856-2000 • FIA Standard 8856-2018", "parentRuleCode": "VE.3.3", - "pageNumber": "78", - "isFromTOC": false + "pageNumber": "78" }, { "ruleCode": "VE.3.3.6", "ruleContent": "Gloves Gloves made from Flame Resistant Material. Gloves of all leather construction or fire retardant gloves constructed using leather palms with no insulating Flame Resistant Material underneath are not acceptable.", "parentRuleCode": "VE.3.3", - "pageNumber": "78", - "isFromTOC": false + "pageNumber": "78" }, { "ruleCode": "VE.3.3.7", - "ruleContent": "Arm Restraints a. Arm restraints must be worn in a way that the driver can release them and exit the vehicle unassisted regardless of the vehicle’s position. b. Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec 3.3 and labeled as such meet this requirement.", + "ruleContent": "Arm Restraints", "parentRuleCode": "VE.3.3", - "pageNumber": "78", - "isFromTOC": false + "pageNumber": "78" + }, + { + "ruleCode": "VE.3.3.7.a", + "ruleContent": "Arm restraints must be worn in a way that the driver can release them and exit the vehicle unassisted regardless of the vehicle’s position.", + "parentRuleCode": "VE.3.3.7", + "pageNumber": "78" + }, + { + "ruleCode": "VE.3.3.7.b", + "ruleContent": "Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec 3.3 and labeled as such meet this requirement. Version 1.0 31 Aug 2024", + "parentRuleCode": "VE.3.3.7", + "pageNumber": "78" }, { "ruleCode": "IC", "ruleContent": "INTERNAL COMBUSTION ENGINE VEHICLES", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.1", "ruleContent": "GENERAL REQUIREMENTS", "parentRuleCode": "IC", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.1.1", "ruleContent": "Engine Limitations", "parentRuleCode": "IC.1", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.1.1.1", - "ruleContent": "The engine(s) used to power the vehicle must: a. Be a piston engine(s) using a four stroke primary heat cycle b. Have a total combined displacement less than or equal to 710 cc per cycle.", + "ruleContent": "The engine(s) used to power the vehicle must:", "parentRuleCode": "IC.1.1", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" + }, + { + "ruleCode": "IC.1.1.1.a", + "ruleContent": "Be a piston engine(s) using a four stroke primary heat cycle", + "parentRuleCode": "IC.1.1.1", + "pageNumber": "79" + }, + { + "ruleCode": "IC.1.1.1.b", + "ruleContent": "Have a total combined displacement less than or equal to 710 cc per cycle.", + "parentRuleCode": "IC.1.1.1", + "pageNumber": "79" }, { "ruleCode": "IC.1.1.2", "ruleContent": "Hybrid powertrains, such as those using electric motors running off stored energy, are prohibited.", "parentRuleCode": "IC.1.1", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.1.1.3", "ruleContent": "All waste/rejected heat from the primary heat cycle may be used. The method of conversion is not limited to the four stroke cycle.", "parentRuleCode": "IC.1.1", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.1.1.4", "ruleContent": "The engine may be modified within the restrictions of the rules.", "parentRuleCode": "IC.1.1", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.1.2", "ruleContent": "Air Intake and Fuel System Location All parts of the engine air system and fuel control, delivery and storage systems (including the throttle or carburetor, and the complete air intake system, including the air cleaner and any air boxes) must lie inside the Tire Surface Envelope F.1.14", "parentRuleCode": "IC.1", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2", "ruleContent": "AIR INTAKE SYSTEM", "parentRuleCode": "IC", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.1", "ruleContent": "General", "parentRuleCode": "IC.2", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.2", "ruleContent": "Intake System Location", "parentRuleCode": "IC.2", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.2.1", "ruleContent": "The Intake System must meet IC.1.2", "parentRuleCode": "IC.2.2", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.2.2", "ruleContent": "Any portion of the air intake system that is less than 350 mm above the ground must be shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable.", "parentRuleCode": "IC.2.2", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.3", "ruleContent": "Intake System Mounting", "parentRuleCode": "IC.2", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.3.1", "ruleContent": "The intake manifold must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. • Hose clamps, plastic ties, or safety wires do not meet this requirement. • The use of rubber bushings or hose is acceptable for creating and sealing air passages, but is not a structural attachment.", "parentRuleCode": "IC.2.3", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.3.2", "ruleContent": "Threaded fasteners used to secure and/or seal the intake manifold must have a Positive Locking Mechanism, see T.8.3.", "parentRuleCode": "IC.2.3", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.3.3", - "ruleContent": "Intake systems with significant mass or cantilever from the cylinder head must be supported to prevent stress to the intake system. a. Supports to the engine must be rigid. b. Supports to the Chassis must incorporate some isolation to allow for engine movement and chassis flex.", + "ruleContent": "Intake systems with significant mass or cantilever from the cylinder head must be supported to prevent stress to the intake system.", "parentRuleCode": "IC.2.3", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" + }, + { + "ruleCode": "IC.2.3.3.a", + "ruleContent": "Supports to the engine must be rigid.", + "parentRuleCode": "IC.2.3.3", + "pageNumber": "79" + }, + { + "ruleCode": "IC.2.3.3.b", + "ruleContent": "Supports to the Chassis must incorporate some isolation to allow for engine movement and chassis flex.", + "parentRuleCode": "IC.2.3.3", + "pageNumber": "79" }, { "ruleCode": "IC.2.4", "ruleContent": "Intake System Restrictor", "parentRuleCode": "IC.2", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.4.1", "ruleContent": "All airflow to the engine(s) must pass through a single circular restrictor in the intake system.", "parentRuleCode": "IC.2.4", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" }, { "ruleCode": "IC.2.4.2", - "ruleContent": "The only allowed sequence of components is: a. For naturally aspirated engines, the sequence must be: throttle body, restrictor, and engine. b. For turbocharged or supercharged engines, the sequence must be: restrictor, compressor, throttle body, engine.", + "ruleContent": "The only allowed sequence of components is:", "parentRuleCode": "IC.2.4", - "pageNumber": "79", - "isFromTOC": false + "pageNumber": "79" + }, + { + "ruleCode": "IC.2.4.2.a", + "ruleContent": "For naturally aspirated engines, the sequence must be: throttle body, restrictor, and engine. Version 1.0 31 Aug 2024", + "parentRuleCode": "IC.2.4.2", + "pageNumber": "79" + }, + { + "ruleCode": "IC.2.4.2.b", + "ruleContent": "For turbocharged or supercharged engines, the sequence must be: restrictor, compressor, throttle body, engine.", + "parentRuleCode": "IC.2.4.2", + "pageNumber": "79" }, { "ruleCode": "IC.2.4.3", - "ruleContent": "The maximum restrictor diameters at any time during the competition are: a. Gasoline fueled vehicles 20.0 mm b. E85 fueled vehicles 19.0 mm", + "ruleContent": "The maximum restrictor diameters at any time during the competition are:", "parentRuleCode": "IC.2.4", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" + }, + { + "ruleCode": "IC.2.4.3.a", + "ruleContent": "Gasoline fueled vehicles 20.0 mm", + "parentRuleCode": "IC.2.4.3", + "pageNumber": "80" + }, + { + "ruleCode": "IC.2.4.3.b", + "ruleContent": "E85 fueled vehicles 19.0 mm", + "parentRuleCode": "IC.2.4.3", + "pageNumber": "80" }, { "ruleCode": "IC.2.4.4", "ruleContent": "The restrictor must be located to facilitate measurement during Technical Inspection", "parentRuleCode": "IC.2.4", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.2.4.5", "ruleContent": "The circular restricting cross section must NOT be movable or flexible in any way", "parentRuleCode": "IC.2.4", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.2.4.6", "ruleContent": "The restrictor must not be part of the movable portion of a barrel throttle body.", "parentRuleCode": "IC.2.4", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.2.5", "ruleContent": "Turbochargers & Superchargers", "parentRuleCode": "IC.2", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.2.5.1", - "ruleContent": "The intake air may be cooled with an intercooler (a charge air cooler). a. It must be located downstream of the throttle body b. Only ambient air may be used to remove heat from the intercooler system c. Air to air and water to air intercoolers are permitted d. The coolant of a water to air intercooler system must meet T.5.4.1", + "ruleContent": "The intake air may be cooled with an intercooler (a charge air cooler).", "parentRuleCode": "IC.2.5", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" + }, + { + "ruleCode": "IC.2.5.1.a", + "ruleContent": "It must be located downstream of the throttle body", + "parentRuleCode": "IC.2.5.1", + "pageNumber": "80" + }, + { + "ruleCode": "IC.2.5.1.b", + "ruleContent": "Only ambient air may be used to remove heat from the intercooler system", + "parentRuleCode": "IC.2.5.1", + "pageNumber": "80" + }, + { + "ruleCode": "IC.2.5.1.c", + "ruleContent": "Air to air and water to air intercoolers are permitted", + "parentRuleCode": "IC.2.5.1", + "pageNumber": "80" + }, + { + "ruleCode": "IC.2.5.1.d", + "ruleContent": "The coolant of a water to air intercooler system must meet T.5.4.1", + "parentRuleCode": "IC.2.5.1", + "pageNumber": "80" }, { "ruleCode": "IC.2.5.2", "ruleContent": "If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be positioned in the intake system as shown in IC.2.4.2.b", "parentRuleCode": "IC.2.5", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.2.5.3", - "ruleContent": "Plenums must not be located anywhere upstream of the throttle body For the purpose of definition, a plenum is any tank or volume that is a significant enlargement of the normal intake runner system. Teams may submit their designs via a Rules Question for review prior to competition if the legality of their proposed system is in doubt.", + "ruleContent": "Plenums must not be located anywhere upstream of the throttle body For the purpose of definition, a plenum is any tank or volume that is a significant enlargement of the normal intake runner system. Teams may submit their designs via a Rules Question for review prior to competition if the legality of their proposed system is in doubt.", "parentRuleCode": "IC.2.5", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.2.5.4", - "ruleContent": "The maximum allowable area of the inner diameter of the intake runner system between the restrictor and throttle body is 2825 mm", + "ruleContent": "The maximum allowable area of the inner diameter of the intake runner system between the restrictor and throttle body is 2825 mm 2", "parentRuleCode": "IC.2.5", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.2.6", "ruleContent": "Connections to Intake Any crankcase or engine lubrication vent lines routed to the intake system must be connected upstream of the intake system restrictor.", "parentRuleCode": "IC.2", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.3", "ruleContent": "THROTTLE", "parentRuleCode": "IC", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.3.1", "ruleContent": "General", "parentRuleCode": "IC.3", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" }, { "ruleCode": "IC.3.1.1", - "ruleContent": "The vehicle must have a carburetor or throttle body. a. The carburetor or throttle body may be of any size or design. b. Boosted applications must not use carburetors.", + "ruleContent": "The vehicle must have a carburetor or throttle body.", "parentRuleCode": "IC.3.1", - "pageNumber": "80", - "isFromTOC": false + "pageNumber": "80" + }, + { + "ruleCode": "IC.3.1.1.a", + "ruleContent": "The carburetor or throttle body may be of any size or design.", + "parentRuleCode": "IC.3.1.1", + "pageNumber": "80" + }, + { + "ruleCode": "IC.3.1.1.b", + "ruleContent": "Boosted applications must not use carburetors. Version 1.0 31 Aug 2024", + "parentRuleCode": "IC.3.1.1", + "pageNumber": "80" }, { "ruleCode": "IC.3.2", - "ruleContent": "Throttle Actuation Method The throttle may be operated: a. Mechanically by a cable or rod system IC.3.3 b. By Electronic Throttle Control IC.4", + "ruleContent": "Throttle Actuation Method The throttle may be operated:", "parentRuleCode": "IC.3", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" + }, + { + "ruleCode": "IC.3.2.a", + "ruleContent": "Mechanically by a cable or rod system IC.3.3", + "parentRuleCode": "IC.3.2", + "pageNumber": "81" + }, + { + "ruleCode": "IC.3.2.b", + "ruleContent": "By Electronic Throttle Control IC.4", + "parentRuleCode": "IC.3.2", + "pageNumber": "81" }, { "ruleCode": "IC.3.3", "ruleContent": "Throttle Actuation – Mechanical", "parentRuleCode": "IC.3", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.3.3.1", - "ruleContent": "The throttle cable or rod must: a. Have smooth operation b. Have no possibility of binding or sticking c. Be minimum 50 mm from any exhaust system component and out of the exhaust stream d. Be protected from being bent or kinked by the driver’s foot when it is operated by the driver or when the driver enters or exits the vehicle", + "ruleContent": "The throttle cable or rod must:", "parentRuleCode": "IC.3.3", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" + }, + { + "ruleCode": "IC.3.3.1.a", + "ruleContent": "Have smooth operation", + "parentRuleCode": "IC.3.3.1", + "pageNumber": "81" + }, + { + "ruleCode": "IC.3.3.1.b", + "ruleContent": "Have no possibility of binding or sticking", + "parentRuleCode": "IC.3.3.1", + "pageNumber": "81" + }, + { + "ruleCode": "IC.3.3.1.c", + "ruleContent": "Be minimum 50 mm from any exhaust system component and out of the exhaust stream", + "parentRuleCode": "IC.3.3.1", + "pageNumber": "81" + }, + { + "ruleCode": "IC.3.3.1.d", + "ruleContent": "Be protected from being bent or kinked by the driver’s foot when it is operated by the driver or when the driver enters or exits the vehicle", + "parentRuleCode": "IC.3.3.1", + "pageNumber": "81" }, { "ruleCode": "IC.3.3.2", "ruleContent": "The throttle actuation system must use two or more return springs located at the throttle body. Throttle Position Sensors (TPS) are NOT acceptable as return springs", "parentRuleCode": "IC.3.3", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.3.3.3", "ruleContent": "Failure of any component of the throttle system must not prevent the throttle returning to the closed position.", "parentRuleCode": "IC.3.3", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.4", - "ruleContent": "ELECTRONIC THROTTLE CONTROL This section IC.4 applies only when Electronic Throttle Control is used An Electronic Throttle Control (ETC) system may be used. This is a device or system which may change the engine throttle setting based on various inputs.", + "ruleContent": "ELECTRONIC THROTTLE CONTROL This section IC.4 applies only when Electronic Throttle Control is used An Electronic Throttle Control (ETC) system may be used. This is a device or system which may change the engine throttle setting based on various inputs.", "parentRuleCode": "IC", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.4.1", "ruleContent": "General Design", "parentRuleCode": "IC.4", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.4.1.1", "ruleContent": "The electronic throttle must automatically close (return to idle) when power is removed.", "parentRuleCode": "IC.4.1", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.4.1.2", - "ruleContent": "The electronic throttle must use minimum two sources of energy capable of returning the throttle to the idle position. a. One of the sources may be the device (such as a DC motor) that normally operates the throttle b. The other device(s) must be a throttle return spring that can return the throttle to the idle position if loss of actuator power occurs. c. Springs in the TPS are not acceptable throttle return springs", + "ruleContent": "The electronic throttle must use minimum two sources of energy capable of returning the throttle to the idle position.", "parentRuleCode": "IC.4.1", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" + }, + { + "ruleCode": "IC.4.1.2.a", + "ruleContent": "One of the sources may be the device (such as a DC motor) that normally operates the throttle", + "parentRuleCode": "IC.4.1.2", + "pageNumber": "81" + }, + { + "ruleCode": "IC.4.1.2.b", + "ruleContent": "The other device(s) must be a throttle return spring that can return the throttle to the idle position if loss of actuator power occurs.", + "parentRuleCode": "IC.4.1.2", + "pageNumber": "81" + }, + { + "ruleCode": "IC.4.1.2.c", + "ruleContent": "Springs in the TPS are not acceptable throttle return springs", + "parentRuleCode": "IC.4.1.2", + "pageNumber": "81" }, { "ruleCode": "IC.4.1.3", - "ruleContent": "The ETC system may blip the throttle during downshifts when proven that unintended acceleration can be prevented. Document the functional analysis in the ETC Systems Form", + "ruleContent": "The ETC system may blip the throttle during downshifts when proven that unintended acceleration can be prevented. Document the functional analysis in the ETC Systems Form", "parentRuleCode": "IC.4.1", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.4.2", "ruleContent": "Commercial ETC System", "parentRuleCode": "IC.4", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.4.2.1", "ruleContent": "An ETC system that is commercially available, but does not comply with the regulations, may be used, if approved prior to the event.", "parentRuleCode": "IC.4.2", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.4.2.2", - "ruleContent": "To obtain approval, submit a Rules Question which includes: • Which ETC system the team is seeking approval to use. • The specific ETC rule(s) that the commercial system deviates from. • Sufficient technical details of these deviations to determine the acceptability of the commercial system.", + "ruleContent": "To obtain approval, submit a Rules Question which includes: • Which ETC system the team is seeking approval to use. • The specific ETC rule(s) that the commercial system deviates from. • Sufficient technical details of these deviations to determine the acceptability of the commercial system. Version 1.0 31 Aug 2024", "parentRuleCode": "IC.4.2", - "pageNumber": "81", - "isFromTOC": false + "pageNumber": "81" }, { "ruleCode": "IC.4.3", "ruleContent": "Documentation", "parentRuleCode": "IC.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.3.1", "ruleContent": "The ETC Notice of Intent: • Must be submitted to give the intent to run ETC • May be used to screen which teams are allowed to use ETC", "parentRuleCode": "IC.4.3", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.3.2", "ruleContent": "The ETC Systems Form must be submitted in order to use ETC", "parentRuleCode": "IC.4.3", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.3.3", "ruleContent": "Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document Requirements", "parentRuleCode": "IC.4.3", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.3.4", "ruleContent": "Late or non submission will prevent use of ETC, see DR.3.4.1", "parentRuleCode": "IC.4.3", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4", "ruleContent": "Throttle Position Sensor - TPS", "parentRuleCode": "IC.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4.1", "ruleContent": "The TPS must measure the position of the throttle or the throttle actuator. Throttle position is defined as percent of travel from fully closed to wide open where 0% is fully closed and 100% is fully open.", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4.2", "ruleContent": "Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and reference lines only if effects of supply and/or reference line voltage offsets can be detected.", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4.3", - "ruleContent": "Implausibility is defined as a deviation of more than 10% throttle position between the sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be considered on a case by case basis and require justification in the ETC Systems Form", + "ruleContent": "Implausibility is defined as a deviation of more than 10% throttle position between the sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be considered on a case by case basis and require justification in the ETC Systems Form", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4.4", "ruleContent": "If an Implausibility occurs between the values of the two TPSs and persists for more than 100 msec, the power to the electronic throttle must be immediately shut down.", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4.5", "ruleContent": "If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% throttle position may be used to define the throttle position target and the 3rd TPS may be ignored.", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4.6", - "ruleContent": "Each TPS must be able to be checked during Technical Inspection by having one of: a. A separate detachable connector(s) for any TPS signal(s) to the main ECU without affecting any other connections b. An inline switchable breakout box available that allows disconnection of each TPS signal(s) to the main ECU without affecting any other connections", + "ruleContent": "Each TPS must be able to be checked during Technical Inspection by having one of:", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" + }, + { + "ruleCode": "IC.4.4.6.a", + "ruleContent": "A separate detachable connector(s) for any TPS signal(s) to the main ECU without affecting any other connections", + "parentRuleCode": "IC.4.4.6", + "pageNumber": "82" + }, + { + "ruleCode": "IC.4.4.6.b", + "ruleContent": "An inline switchable breakout box available that allows disconnection of each TPS signal(s) to the main ECU without affecting any other connections", + "parentRuleCode": "IC.4.4.6", + "pageNumber": "82" }, { "ruleCode": "IC.4.4.7", "ruleContent": "The TPS signals must be sent directly to the throttle controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring must be detectable by the controller and must be treated like Implausibility.", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4.8", "ruleContent": "When an analogue signal is used, the TPSs will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" }, { "ruleCode": "IC.4.4.9", - "ruleContent": "When any kind of digital data transmission is used to transmit the TPS signal, a. The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works. b. The failures to be considered must include but are not limited to the failure of the TPS, TPS signals being out of range, corruption of the message and loss of messages and the associated time outs.", + "ruleContent": "When any kind of digital data transmission is used to transmit the TPS signal,", "parentRuleCode": "IC.4.4", - "pageNumber": "82", - "isFromTOC": false + "pageNumber": "82" + }, + { + "ruleCode": "IC.4.4.9.a", + "ruleContent": "The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works.", + "parentRuleCode": "IC.4.4.9", + "pageNumber": "82" + }, + { + "ruleCode": "IC.4.4.9.b", + "ruleContent": "The failures to be considered must include but are not limited to the failure of the TPS, TPS signals being out of range, corruption of the message and loss of messages and the associated time outs. Version 1.0 31 Aug 2024", + "parentRuleCode": "IC.4.4.9", + "pageNumber": "82" }, { "ruleCode": "IC.4.5", "ruleContent": "Accelerator Pedal Position Sensor - APPS Refer to T.4.2 for specific requirements of the APPS", "parentRuleCode": "IC.4", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" }, { "ruleCode": "IC.4.6", "ruleContent": "Brake System Encoder - BSE Refer to T.4.3 for specific requirements of the BSE", "parentRuleCode": "IC.4", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" }, { "ruleCode": "IC.4.7", "ruleContent": "Throttle Plausibility Checks", "parentRuleCode": "IC.4", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" }, { "ruleCode": "IC.4.7.1", - "ruleContent": "Brakes and Throttle Position a. The power to the electronic throttle must be shut down if the mechanical brakes are operated and the TPS signals that the throttle is open by more than a permitted amount for more than one second. b. An interval of one second is allowed for the throttle to close (return to idle). Failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system. c. The permitted relationship between BSE and TPS may be defined by the team using a table. This functionality must be demonstrated at Technical Inspection.", + "ruleContent": "Brakes and Throttle Position", "parentRuleCode": "IC.4.7", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.7.1.a", + "ruleContent": "The power to the electronic throttle must be shut down if the mechanical brakes are operated and the TPS signals that the throttle is open by more than a permitted amount for more than one second.", + "parentRuleCode": "IC.4.7.1", + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.7.1.b", + "ruleContent": "An interval of one second is allowed for the throttle to close (return to idle). Failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system.", + "parentRuleCode": "IC.4.7.1", + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.7.1.c", + "ruleContent": "The permitted relationship between BSE and TPS may be defined by the team using a table. This functionality must be demonstrated at Technical Inspection.", + "parentRuleCode": "IC.4.7.1", + "pageNumber": "83" }, { "ruleCode": "IC.4.7.2", - "ruleContent": "Throttle Position vs Target a. The power to the electronic throttle must be immediately shut down, if throttle position differs by more than 10% from the expected target TPS position for more than one second. b. An interval of one second is allowed for the difference to reduce to less than 10%, failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system. c. An error in TPS position and the resultant system shutdown must be demonstrated at Technical Inspection. Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. System states displayed using calibration software must be accompanied by a detailed explanation of the control system.", + "ruleContent": "Throttle Position vs Target", "parentRuleCode": "IC.4.7", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.7.2.a", + "ruleContent": "The power to the electronic throttle must be immediately shut down, if throttle position differs by more than 10% from the expected target TPS position for more than one second.", + "parentRuleCode": "IC.4.7.2", + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.7.2.b", + "ruleContent": "An interval of one second is allowed for the difference to reduce to less than 10%, failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system.", + "parentRuleCode": "IC.4.7.2", + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.7.2.c", + "ruleContent": "An error in TPS position and the resultant system shutdown must be demonstrated at Technical Inspection. Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. System states displayed using calibration software must be accompanied by a detailed explanation of the control system.", + "parentRuleCode": "IC.4.7.2", + "pageNumber": "83" }, { "ruleCode": "IC.4.7.3", "ruleContent": "The electronic throttle and fuel injector/ignition system shutdown must stay active until the TPS signals indicate the throttle is at or below the unpowered default position for one second or longer.", "parentRuleCode": "IC.4.7", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" }, { "ruleCode": "IC.4.8", "ruleContent": "Brake System Plausibility Device - BSPD", "parentRuleCode": "IC.4", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" }, { "ruleCode": "IC.4.8.1", - "ruleContent": "A standalone nonprogrammable circuit must be used to monitor the electronic throttle control. The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7", + "ruleContent": "A standalone nonprogrammable circuit must be used to monitor the electronic throttle control. The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7", "parentRuleCode": "IC.4.8", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" }, { "ruleCode": "IC.4.8.2", "ruleContent": "Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may not be used in place of the raw sensor signals.", "parentRuleCode": "IC.4.8", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" }, { "ruleCode": "IC.4.8.3", - "ruleContent": "The BSPD must monitor for these conditions: a. The two of these for more than one second: • Demand for Hard Braking IC.4.6 • Throttle more than 10% open IC.4.4 b. Loss of signal from the braking sensor(s) for more than 100 msec c. Loss of signal from the throttle sensor(s) for more than 100 msec d. Removal of power from the BSPD circuit", + "ruleContent": "The BSPD must monitor for these conditions:", "parentRuleCode": "IC.4.8", - "pageNumber": "83", - "isFromTOC": false + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.8.3.a", + "ruleContent": "The two of these for more than one second: • Demand for Hard Braking IC.4.6 • Throttle more than 10% open IC.4.4", + "parentRuleCode": "IC.4.8.3", + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.8.3.b", + "ruleContent": "Loss of signal from the braking sensor(s) for more than 100 msec", + "parentRuleCode": "IC.4.8.3", + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.8.3.c", + "ruleContent": "Loss of signal from the throttle sensor(s) for more than 100 msec Version 1.0 31 Aug 2024", + "parentRuleCode": "IC.4.8.3", + "pageNumber": "83" + }, + { + "ruleCode": "IC.4.8.3.d", + "ruleContent": "Removal of power from the BSPD circuit", + "parentRuleCode": "IC.4.8.3", + "pageNumber": "83" }, { "ruleCode": "IC.4.8.4", "ruleContent": "When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2", "parentRuleCode": "IC.4.8", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.4.8.5", "ruleContent": "The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON", "parentRuleCode": "IC.4.8", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.4.8.6", "ruleContent": "The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF", "parentRuleCode": "IC.4.8", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.4.8.7", - "ruleContent": "The BSPD signals and function must be able to be checked during Technical Inspection by having one of: a. A separate set of detachable connectors for any signals from the braking sensor(s), throttle sensor(s) and removal of power to only the BSPD device. b. An inline switchable breakout box available that allows disconnection of the brake sensor(s), throttle sensor(s) individually and power to only the BSPD device.", + "ruleContent": "The BSPD signals and function must be able to be checked during Technical Inspection by having one of:", "parentRuleCode": "IC.4.8", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" + }, + { + "ruleCode": "IC.4.8.7.a", + "ruleContent": "A separate set of detachable connectors for any signals from the braking sensor(s), throttle sensor(s) and removal of power to only the BSPD device.", + "parentRuleCode": "IC.4.8.7", + "pageNumber": "84" + }, + { + "ruleCode": "IC.4.8.7.b", + "ruleContent": "An inline switchable breakout box available that allows disconnection of the brake sensor(s), throttle sensor(s) individually and power to only the BSPD device.", + "parentRuleCode": "IC.4.8.7", + "pageNumber": "84" }, { "ruleCode": "IC.5", "ruleContent": "FUEL AND FUEL SYSTEM", "parentRuleCode": "IC", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.1", "ruleContent": "Fuel", "parentRuleCode": "IC.5", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.1.1", "ruleContent": "Vehicles must be operated with the fuels provided at the competition", "parentRuleCode": "IC.5.1", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.1.2", - "ruleContent": "Fuels provided are expected to be Gasoline and E85. Consult the individual competition websites for fuel specifics and other information.", + "ruleContent": "Fuels provided are expected to be Gasoline and E85. Consult the individual competition websites for fuel specifics and other information.", "parentRuleCode": "IC.5.1", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.1.3", "ruleContent": "No agents other than the provided fuel and air may go into the combustion chamber.", "parentRuleCode": "IC.5.1", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.2", "ruleContent": "Fuel System", "parentRuleCode": "IC.5", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.2.1", - "ruleContent": "The Fuel System must meet these design criteria: a. The Fuel Tank is capable of being filled to capacity without manipulating the tank or the vehicle in any manner. b. During refueling on a level surface, the formation of air cavities or other effects that cause the fuel level observed at the sight tube to drop after movement or operation of the vehicle (other than due to consumption) are prevented. c. Spillage during refueling cannot contact the driver position, exhaust system, hot engine parts, or the ignition system.", + "ruleContent": "The Fuel System must meet these design criteria:", "parentRuleCode": "IC.5.2", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" + }, + { + "ruleCode": "IC.5.2.1.a", + "ruleContent": "The Fuel Tank is capable of being filled to capacity without manipulating the tank or the vehicle in any manner.", + "parentRuleCode": "IC.5.2.1", + "pageNumber": "84" + }, + { + "ruleCode": "IC.5.2.1.b", + "ruleContent": "During refueling on a level surface, the formation of air cavities or other effects that cause the fuel level observed at the sight tube to drop after movement or operation of the vehicle (other than due to consumption) are prevented.", + "parentRuleCode": "IC.5.2.1", + "pageNumber": "84" + }, + { + "ruleCode": "IC.5.2.1.c", + "ruleContent": "Spillage during refueling cannot contact the driver position, exhaust system, hot engine parts, or the ignition system.", + "parentRuleCode": "IC.5.2.1", + "pageNumber": "84" }, { "ruleCode": "IC.5.2.2", "ruleContent": "The Fuel System location must meet IC.1.2 and F.9", "parentRuleCode": "IC.5.2", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.2.3", "ruleContent": "A Firewall must separate the Fuel Tank from the driver, per T.1.8", "parentRuleCode": "IC.5.2", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.3", "ruleContent": "Fuel Tank The part(s) of the fuel containment device that is in contact with the fuel.", "parentRuleCode": "IC.5", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.3.1", - "ruleContent": "Fuel Tanks made of a rigid material must: a. Be securely attached to the vehicle structure. The mounting method must not allow chassis flex to load the Fuel Tank. b. Not be used to carry any structural loads; from Roll Hoops, suspension, engine or gearbox mounts", + "ruleContent": "Fuel Tanks made of a rigid material must:", "parentRuleCode": "IC.5.3", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" + }, + { + "ruleCode": "IC.5.3.1.a", + "ruleContent": "Be securely attached to the vehicle structure. The mounting method must not allow chassis flex to load the Fuel Tank.", + "parentRuleCode": "IC.5.3.1", + "pageNumber": "84" + }, + { + "ruleCode": "IC.5.3.1.b", + "ruleContent": "Not be used to carry any structural loads; from Roll Hoops, suspension, engine or gearbox mounts", + "parentRuleCode": "IC.5.3.1", + "pageNumber": "84" }, { "ruleCode": "IC.5.3.2", - "ruleContent": "Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag tank: a. Must be enclosed inside a rigid fuel tank container which is securely attached to the vehicle structure. b. The Fuel Tank container may be load carrying", + "ruleContent": "Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag tank:", "parentRuleCode": "IC.5.3", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" + }, + { + "ruleCode": "IC.5.3.2.a", + "ruleContent": "Must be enclosed inside a rigid fuel tank container which is securely attached to the vehicle structure.", + "parentRuleCode": "IC.5.3.2", + "pageNumber": "84" + }, + { + "ruleCode": "IC.5.3.2.b", + "ruleContent": "The Fuel Tank container may be load carrying", + "parentRuleCode": "IC.5.3.2", + "pageNumber": "84" }, { "ruleCode": "IC.5.3.3", - "ruleContent": "Any size Fuel Tank may be used", + "ruleContent": "Any size Fuel Tank may be used Version 1.0 31 Aug 2024", "parentRuleCode": "IC.5.3", - "pageNumber": "84", - "isFromTOC": false + "pageNumber": "84" }, { "ruleCode": "IC.5.3.4", "ruleContent": "The Fuel Tank, by design, must not have a variable capacity.", "parentRuleCode": "IC.5.3", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" }, { "ruleCode": "IC.5.3.5", "ruleContent": "The Fuel System must have a provision for emptying the Fuel Tank if required.", "parentRuleCode": "IC.5.3", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" }, { "ruleCode": "IC.5.4", "ruleContent": "Fuel Filler Neck & Sight Tube", "parentRuleCode": "IC.5", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" }, { "ruleCode": "IC.5.4.1", - "ruleContent": "All Fuel Tanks must have a Fuel Filler Neck which must be: a. Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler cap", + "ruleContent": "All Fuel Tanks must have a Fuel Filler Neck which must be:", "parentRuleCode": "IC.5.4", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" + }, + { + "ruleCode": "IC.5.4.1.a", + "ruleContent": "Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler cap", + "parentRuleCode": "IC.5.4.1", + "pageNumber": "85" }, { "ruleCode": "IC.5.4.2", - "ruleContent": "The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be: a. Minimum 125 mm vertical height above the top level of the Fuel Tank b. Angled no more than 30° from the vertical", + "ruleContent": "The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be:", "parentRuleCode": "IC.5.4", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" + }, + { + "ruleCode": "IC.5.4.2.a", + "ruleContent": "Minimum 125 mm vertical height above the top level of the Fuel Tank", + "parentRuleCode": "IC.5.4.2", + "pageNumber": "85" + }, + { + "ruleCode": "IC.5.4.2.b", + "ruleContent": "Angled no more than 30° from the vertical", + "parentRuleCode": "IC.5.4.2", + "pageNumber": "85" }, { "ruleCode": "IC.5.4.3", - "ruleContent": "The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the fuel level which must be: a. Visible vertical height: 125 mm minimum b. Inside diameter: 6 mm minimum c. Above the top surface of the Fuel Tank", + "ruleContent": "The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the fuel level which must be:", "parentRuleCode": "IC.5.4", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" + }, + { + "ruleCode": "IC.5.4.3.a", + "ruleContent": "Visible vertical height: 125 mm minimum", + "parentRuleCode": "IC.5.4.3", + "pageNumber": "85" + }, + { + "ruleCode": "IC.5.4.3.b", + "ruleContent": "Inside diameter: 6 mm minimum", + "parentRuleCode": "IC.5.4.3", + "pageNumber": "85" + }, + { + "ruleCode": "IC.5.4.3.c", + "ruleContent": "Above the top surface of the Fuel Tank", + "parentRuleCode": "IC.5.4.3", + "pageNumber": "85" }, { "ruleCode": "IC.5.4.4", "ruleContent": "A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules Question or technical inspectors at the event.", "parentRuleCode": "IC.5.4", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" }, { "ruleCode": "IC.5.4.5", "ruleContent": "Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm and 25 mm below the top of the visible portion of the sight tube. This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure the amount of fuel used during the Endurance Event.", "parentRuleCode": "IC.5.4", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" }, { "ruleCode": "IC.5.4.6", "ruleContent": "The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, etc) or the need to remove any parts (body panels, etc).", "parentRuleCode": "IC.5.4", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" }, { "ruleCode": "IC.5.4.7", "ruleContent": "The individual filling the tank must have complete direct access to the filler neck opening with a standard two gallon gas can assembly. The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top", "parentRuleCode": "IC.5.4", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" }, { "ruleCode": "IC.5.4.8", - "ruleContent": "The filler neck must have a fuel cap that can withstand severe vibrations or high pressures such as could occur during a vehicle rollover event", + "ruleContent": "The filler neck must have a fuel cap that can withstand severe vibrations or high pressures such as could occur during a vehicle rollover event Version 1.0 31 Aug 2024", "parentRuleCode": "IC.5.4", - "pageNumber": "85", - "isFromTOC": false + "pageNumber": "85" }, { "ruleCode": "IC.5.5", "ruleContent": "Fuel Tank Filling", "parentRuleCode": "IC.5", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.5.1", "ruleContent": "Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials.", "parentRuleCode": "IC.5.5", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.5.2", "ruleContent": "The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point.", "parentRuleCode": "IC.5.5", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.5.3", "ruleContent": "If, for any reason, the fuel level changes after the team have moved the vehicle, then no additional fuel will be added, unless fueling after Endurance, see D.13.2.5", "parentRuleCode": "IC.5.5", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.6", "ruleContent": "Venting Systems", "parentRuleCode": "IC.5", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.6.1", "ruleContent": "Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during hard cornering or acceleration.", "parentRuleCode": "IC.5.6", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.6.2", "ruleContent": "All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted.", "parentRuleCode": "IC.5.6", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.6.3", "ruleContent": "All fuel vent lines must exit outside the bodywork.", "parentRuleCode": "IC.5.6", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.7", "ruleContent": "Fuel Lines", "parentRuleCode": "IC.5", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.7.1", "ruleContent": "Fuel lines must be securely attached to the vehicle and/or engine.", "parentRuleCode": "IC.5.7", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.7.2", "ruleContent": "All fuel lines must be shielded from possible rotating equipment failure or collision damage.", "parentRuleCode": "IC.5.7", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.7.3", "ruleContent": "Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited.", "parentRuleCode": "IC.5.7", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.5.7.4", - "ruleContent": "Any rubber fuel line or hose used must meet the two: a. The components over which the hose is clamped must have annular bulb or barbed fittings to retain the hose b. Clamps specifically designed for fuel lines must be used. These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, and rolled edges to prevent the clamp cutting into the hose", + "ruleContent": "Any rubber fuel line or hose used must meet the two:", "parentRuleCode": "IC.5.7", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" + }, + { + "ruleCode": "IC.5.7.4.a", + "ruleContent": "The components over which the hose is clamped must have annular bulb or barbed fittings to retain the hose", + "parentRuleCode": "IC.5.7.4", + "pageNumber": "86" + }, + { + "ruleCode": "IC.5.7.4.b", + "ruleContent": "Clamps specifically designed for fuel lines must be used. These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, and rolled edges to prevent the clamp cutting into the hose", + "parentRuleCode": "IC.5.7.4", + "pageNumber": "86" }, { "ruleCode": "IC.5.7.5", "ruleContent": "Worm gear type hose clamps must not be used on any fuel line.", "parentRuleCode": "IC.5.7", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.6", "ruleContent": "FUEL INJECTION", "parentRuleCode": "IC", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.6.1", - "ruleContent": "Low Pressure Injection (LPI) Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most Port Fuel Injected (PFI) fuel systems are low pressure.", + "ruleContent": "Low Pressure Injection (LPI) Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most Port Fuel Injected (PFI) fuel systems are low pressure.", "parentRuleCode": "IC.6", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.6.1.1", "ruleContent": "Any Low Pressure flexible fuel lines must be one of: • Metal braided hose with threaded fittings (crimped on or reusable) • Reinforced rubber hose with some form of abrasion resistant protection", "parentRuleCode": "IC.6.1", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" }, { "ruleCode": "IC.6.1.2", - "ruleContent": "Fuel rail and mounting requirements: a. Unmodified OEM Fuel Rails are acceptable, regardless of material. b. Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable materials are prohibited. c. The fuel rail must be securely attached to the manifold, engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement. d. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2", + "ruleContent": "Fuel rail and mounting requirements:", "parentRuleCode": "IC.6.1", - "pageNumber": "86", - "isFromTOC": false + "pageNumber": "86" + }, + { + "ruleCode": "IC.6.1.2.a", + "ruleContent": "Unmodified OEM Fuel Rails are acceptable, regardless of material.", + "parentRuleCode": "IC.6.1.2", + "pageNumber": "86" + }, + { + "ruleCode": "IC.6.1.2.b", + "ruleContent": "Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable materials are prohibited.", + "parentRuleCode": "IC.6.1.2", + "pageNumber": "86" + }, + { + "ruleCode": "IC.6.1.2.c", + "ruleContent": "The fuel rail must be securely attached to the manifold, engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement.", + "parentRuleCode": "IC.6.1.2", + "pageNumber": "86" + }, + { + "ruleCode": "IC.6.1.2.d", + "ruleContent": "Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 Version 1.0 31 Aug 2024", + "parentRuleCode": "IC.6.1.2", + "pageNumber": "86" }, { "ruleCode": "IC.6.2", "ruleContent": "High Pressure Injection (HPI) / Direct Injection (DI)", "parentRuleCode": "IC.6", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" }, { "ruleCode": "IC.6.2.1", - "ruleContent": "Definitions a. High Pressure fuel systems - those functioning at 10 Bar pressure or above b. Direct Injection fuel systems - where the injection occurs directly into the combustion system Direct Injection systems often utilize a low pressure electric fuel pump and high pressure mechanical “boost” pump driven off the engine. c. High Pressure Fuel Lines - those between the boost pump and injectors d. Low Pressure Fuel Lines - from the electric supply pump to the boost pump", + "ruleContent": "Definitions", "parentRuleCode": "IC.6.2", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.1.a", + "ruleContent": "High Pressure fuel systems - those functioning at 10 Bar pressure or above", + "parentRuleCode": "IC.6.2.1", + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.1.b", + "ruleContent": "Direct Injection fuel systems - where the injection occurs directly into the combustion system Direct Injection systems often utilize a low pressure electric fuel pump and high pressure mechanical “boost” pump driven off the engine.", + "parentRuleCode": "IC.6.2.1", + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.1.c", + "ruleContent": "High Pressure Fuel Lines - those between the boost pump and injectors", + "parentRuleCode": "IC.6.2.1", + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.1.d", + "ruleContent": "Low Pressure Fuel Lines - from the electric supply pump to the boost pump", + "parentRuleCode": "IC.6.2.1", + "pageNumber": "87" }, { "ruleCode": "IC.6.2.2", - "ruleContent": "All High Pressure Fuel Lines must: a. Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel reinforcement and visible Nomex tracer yarn. Equivalent products may be used with prior approval. b. Not incorporate elastomeric seals c. Be rigidly connected every 100 mm by mechanical fasteners to structural engine components such as cylinder heads or block", + "ruleContent": "All High Pressure Fuel Lines must:", "parentRuleCode": "IC.6.2", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.2.a", + "ruleContent": "Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel reinforcement and visible Nomex tracer yarn. Equivalent products may be used with prior approval.", + "parentRuleCode": "IC.6.2.2", + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.2.b", + "ruleContent": "Not incorporate elastomeric seals", + "parentRuleCode": "IC.6.2.2", + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.2.c", + "ruleContent": "Be rigidly connected every 100 mm by mechanical fasteners to structural engine components such as cylinder heads or block", + "parentRuleCode": "IC.6.2.2", + "pageNumber": "87" }, { "ruleCode": "IC.6.2.3", "ruleContent": "Any Low Pressure flexible Fuel Lines must be one of: • Metal braided hose with threaded fittings (crimped on or reusable) • Reinforced rubber hose with some form of abrasion resistant protection", "parentRuleCode": "IC.6.2", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" }, { "ruleCode": "IC.6.2.4", - "ruleContent": "Fuel rail mounting requirements: a. The fuel rail must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement. b. The fastening method must be sufficient to hold the fuel rail in place with the maximum regulated pressure acting on the injector internals and neglecting any assistance from cylinder pressure acting on the injector tip. c. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2", + "ruleContent": "Fuel rail mounting requirements:", "parentRuleCode": "IC.6.2", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.4.a", + "ruleContent": "The fuel rail must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement.", + "parentRuleCode": "IC.6.2.4", + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.4.b", + "ruleContent": "The fastening method must be sufficient to hold the fuel rail in place with the maximum regulated pressure acting on the injector internals and neglecting any assistance from cylinder pressure acting on the injector tip.", + "parentRuleCode": "IC.6.2.4", + "pageNumber": "87" + }, + { + "ruleCode": "IC.6.2.4.c", + "ruleContent": "Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2", + "parentRuleCode": "IC.6.2.4", + "pageNumber": "87" }, { "ruleCode": "IC.6.2.5", "ruleContent": "High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as the cylinder head or engine block.", "parentRuleCode": "IC.6.2", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" }, { "ruleCode": "IC.6.2.6", - "ruleContent": "Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the fuel system in parallel with the DI boost pump. The external regulator must be used even if the DI boost pump comes equipped with an internal regulator.", + "ruleContent": "Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the fuel system in parallel with the DI boost pump. The external regulator must be used even if the DI boost pump comes equipped with an internal regulator.", "parentRuleCode": "IC.6.2", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" }, { "ruleCode": "IC.7", "ruleContent": "EXHAUST AND NOISE CONTROL", "parentRuleCode": "IC", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" }, { "ruleCode": "IC.7.1", "ruleContent": "Exhaust Protection", "parentRuleCode": "IC.7", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" }, { "ruleCode": "IC.7.1.1", - "ruleContent": "The exhaust system must be separated from any of these components by means given in T.1.6.3: a. Flammable materials, including the fuel and fuel system, the oil and oil system b. Thermally sensitive components, including brake lines, composite materials, and batteries", + "ruleContent": "The exhaust system must be separated from any of these components by means given in T.1.6.3:", "parentRuleCode": "IC.7.1", - "pageNumber": "87", - "isFromTOC": false + "pageNumber": "87" + }, + { + "ruleCode": "IC.7.1.1.a", + "ruleContent": "Flammable materials, including the fuel and fuel system, the oil and oil system", + "parentRuleCode": "IC.7.1.1", + "pageNumber": "87" + }, + { + "ruleCode": "IC.7.1.1.b", + "ruleContent": "Thermally sensitive components, including brake lines, composite materials, and batteries Version 1.0 31 Aug 2024", + "parentRuleCode": "IC.7.1.1", + "pageNumber": "87" }, { "ruleCode": "IC.7.2", "ruleContent": "Exhaust Outlet", "parentRuleCode": "IC.7", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.2.1", "ruleContent": "The exhaust must be routed to prevent the driver from fumes at any speed considering the draft of the vehicle", "parentRuleCode": "IC.7.2", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.2.2", - "ruleContent": "The Exhaust Outlet(s) must be: a. No more than 45 cm aft of the centerline of the rear axle b. No more than 60 cm above the ground.", + "ruleContent": "The Exhaust Outlet(s) must be:", "parentRuleCode": "IC.7.2", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" + }, + { + "ruleCode": "IC.7.2.2.a", + "ruleContent": "No more than 45 cm aft of the centerline of the rear axle", + "parentRuleCode": "IC.7.2.2", + "pageNumber": "88" + }, + { + "ruleCode": "IC.7.2.2.b", + "ruleContent": "No more than 60 cm above the ground.", + "parentRuleCode": "IC.7.2.2", + "pageNumber": "88" }, { "ruleCode": "IC.7.2.3", "ruleContent": "Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in front of the Main Hoop must be shielded to prevent contact by persons approaching the vehicle or a driver exiting the vehicle", "parentRuleCode": "IC.7.2", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.2.4", "ruleContent": "Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an exhaust manifold or exhaust system.", "parentRuleCode": "IC.7.2", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.3", "ruleContent": "Variable Exhaust", "parentRuleCode": "IC.7", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.3.1", "ruleContent": "Adjustable tuning or throttling devices are permitted.", "parentRuleCode": "IC.7.3", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.3.2", "ruleContent": "Manually adjustable tuning devices must require tools to change", "parentRuleCode": "IC.7.3", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.3.3", "ruleContent": "Refer to IN.10.2 for additional requirements during the Noise Test", "parentRuleCode": "IC.7.3", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.4", "ruleContent": "Connections to Exhaust Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum devices that connect directly to the exhaust system, are prohibited.", "parentRuleCode": "IC.7", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.5", "ruleContent": "Noise Level and Testing", "parentRuleCode": "IC.7", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.5.1", - "ruleContent": "The vehicle must stay below the permitted sound level at all times IN.10.5", + "ruleContent": "The vehicle must stay below the permitted sound level at all times IN.10.5", "parentRuleCode": "IC.7.5", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.7.5.2", "ruleContent": "Sound level will be verified during Technical Inspection, refer to IN.10", "parentRuleCode": "IC.7.5", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.8", "ruleContent": "ELECTRICAL", "parentRuleCode": "IC", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.8.1", "ruleContent": "Starter Each vehicle must start the engine using an onboard starter at all times", "parentRuleCode": "IC.8", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.8.2", "ruleContent": "Batteries Refer to T.9.2 for specific requirements of Low Voltage batteries", "parentRuleCode": "IC.8", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.8.3", "ruleContent": "Voltage Limit", "parentRuleCode": "IC.8", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.8.3.1", "ruleContent": "Voltage between any two electrical connections must be Low Voltage T.9.1.2", "parentRuleCode": "IC.8.3", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.8.3.2", "ruleContent": "This voltage limit does not apply to these systems: • High Voltage systems for ignition • High Voltage systems for injectors • Voltages internal to OEM charging systems designed for <60 V DC output.", "parentRuleCode": "IC.8.3", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.9", "ruleContent": "SHUTDOWN SYSTEM", "parentRuleCode": "IC", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.9.1", "ruleContent": "Shutdown Circuit", "parentRuleCode": "IC.9", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" }, { "ruleCode": "IC.9.1.1", - "ruleContent": "The Shutdown Circuit consists of these components: a. Primary Master Switch IC.9.3 b. Cockpit Main Switch IC.9.4 c. (ETC Only) Brake System Plausibility Device (BSPD) IC.4.8 d. Brake Overtravel Switch (BOTS) T.3.3 e. Inertia Switch (if used) T.9.4", + "ruleContent": "The Shutdown Circuit consists of these components:", "parentRuleCode": "IC.9.1", - "pageNumber": "88", - "isFromTOC": false + "pageNumber": "88" + }, + { + "ruleCode": "IC.9.1.1.a", + "ruleContent": "Primary Master Switch IC.9.3", + "parentRuleCode": "IC.9.1.1", + "pageNumber": "88" + }, + { + "ruleCode": "IC.9.1.1.b", + "ruleContent": "Cockpit Main Switch IC.9.4 Version 1.0 31 Aug 2024", + "parentRuleCode": "IC.9.1.1", + "pageNumber": "88" + }, + { + "ruleCode": "IC.9.1.1.c", + "ruleContent": "(ETC Only) Brake System Plausibility Device (BSPD) IC.4.8", + "parentRuleCode": "IC.9.1.1", + "pageNumber": "88" + }, + { + "ruleCode": "IC.9.1.1.d", + "ruleContent": "Brake Overtravel Switch (BOTS) T.3.3", + "parentRuleCode": "IC.9.1.1", + "pageNumber": "88" + }, + { + "ruleCode": "IC.9.1.1.e", + "ruleContent": "Inertia Switch (if used) T.9.4", + "parentRuleCode": "IC.9.1.1", + "pageNumber": "88" }, { "ruleCode": "IC.9.1.2", "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Technical Inspection", "parentRuleCode": "IC.9.1", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" }, { "ruleCode": "IC.9.1.3", - "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near the Primary Master Switch and the Cockpit Main Switch.", + "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near the Primary Master Switch and the Cockpit Main Switch.", "parentRuleCode": "IC.9.1", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" }, { "ruleCode": "IC.9.2", "ruleContent": "Shutdown Circuit Operation", "parentRuleCode": "IC.9", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" }, { "ruleCode": "IC.9.2.1", "ruleContent": "The Shutdown Circuit must Open upon operation of, or detection from any of the components listed in IC.9.1.1", "parentRuleCode": "IC.9.2", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" }, { "ruleCode": "IC.9.2.2", - "ruleContent": "When the Shutdown Circuit Opens, it must: a. Stop the engine b. Disconnect power to the: • Fuel Pump(s) • Ignition • (ETC only) Electronic Throttle IC.4.1.1", + "ruleContent": "When the Shutdown Circuit Opens, it must:", "parentRuleCode": "IC.9.2", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.2.2.a", + "ruleContent": "Stop the engine", + "parentRuleCode": "IC.9.2.2", + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.2.2.b", + "ruleContent": "Disconnect power to the: • Fuel Pump(s) • Ignition • (ETC only) Electronic Throttle IC.4.1.1", + "parentRuleCode": "IC.9.2.2", + "pageNumber": "89" }, { "ruleCode": "IC.9.3", "ruleContent": "Primary Master Switch", "parentRuleCode": "IC.9", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" }, { "ruleCode": "IC.9.3.1", "ruleContent": "Configuration and Location - The Primary Master Switch must meet T.9.3", "parentRuleCode": "IC.9.3", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" }, { "ruleCode": "IC.9.3.2", - "ruleContent": "Function - the Primary Master Switch must: a. Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel pump(s), ignition and electrical controls. All battery current must flow through this switch b. Be direct acting, not act through a relay or logic.", + "ruleContent": "Function - the Primary Master Switch must:", "parentRuleCode": "IC.9.3", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.3.2.a", + "ruleContent": "Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel pump(s), ignition and electrical controls. All battery current must flow through this switch", + "parentRuleCode": "IC.9.3.2", + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.3.2.b", + "ruleContent": "Be direct acting, not act through a relay or logic.", + "parentRuleCode": "IC.9.3.2", + "pageNumber": "89" }, { "ruleCode": "IC.9.4", "ruleContent": "Cockpit Main Switch", "parentRuleCode": "IC.9", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" }, { "ruleCode": "IC.9.4.1", - "ruleContent": "Configuration - The Cockpit Main Switch must: a. Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF position) b. Have a diameter of 24 mm minimum", + "ruleContent": "Configuration - The Cockpit Main Switch must:", "parentRuleCode": "IC.9.4", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.4.1.a", + "ruleContent": "Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF position)", + "parentRuleCode": "IC.9.4.1", + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.4.1.b", + "ruleContent": "Have a diameter of 24 mm minimum", + "parentRuleCode": "IC.9.4.1", + "pageNumber": "89" }, { "ruleCode": "IC.9.4.2", - "ruleContent": "Location – The Cockpit Main Switch must be: a. In easy reach of the driver when in a normal driving position wearing Harness b. Adjacent to the Steering Wheel c. Unobstructed by the Steering Wheel or any other part of the vehicle", + "ruleContent": "Location – The Cockpit Main Switch must be:", "parentRuleCode": "IC.9.4", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.4.2.a", + "ruleContent": "In easy reach of the driver when in a normal driving position wearing Harness", + "parentRuleCode": "IC.9.4.2", + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.4.2.b", + "ruleContent": "Adjacent to the Steering Wheel", + "parentRuleCode": "IC.9.4.2", + "pageNumber": "89" + }, + { + "ruleCode": "IC.9.4.2.c", + "ruleContent": "Unobstructed by the Steering Wheel or any other part of the vehicle", + "parentRuleCode": "IC.9.4.2", + "pageNumber": "89" }, { "ruleCode": "IC.9.4.3", - "ruleContent": "Function - the Cockpit Main Switch may act through a relay", + "ruleContent": "Function - the Cockpit Main Switch may act through a relay Version 1.0 31 Aug 2024", "parentRuleCode": "IC.9.4", - "pageNumber": "89", - "isFromTOC": false + "pageNumber": "89" }, { "ruleCode": "EV", "ruleContent": "ELECTRIC VEHICLES", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.1", "ruleContent": "DEFINITIONS", "parentRuleCode": "EV", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.1.1", "ruleContent": "Tractive System – TS Every part electrically connected to the Motor(s) and/or Accumulator(s)", "parentRuleCode": "EV.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.1.2", "ruleContent": "Grounded Low Voltage - GLV Every electrical part that is not part of the Tractive System", "parentRuleCode": "EV.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.1.3", "ruleContent": "Accumulator All the battery cells or super capacitors that store the electrical energy to be used by the Tractive System", "parentRuleCode": "EV.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.2", "ruleContent": "DOCUMENTATION", "parentRuleCode": "EV", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.2.1", "ruleContent": "Electrical System Form - ESF", "parentRuleCode": "EV.2", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.2.1.1", "ruleContent": "Each team must submit an Electrical System Form (ESF) with a clearly structured documentation of the entire vehicle electrical system (including control and Tractive System). Submission and approval of the ESF does not mean that the vehicle will automatically pass Electrical Technical Inspection with the described items / parts.", "parentRuleCode": "EV.2.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.2.1.2", "ruleContent": "The ESF may provide guidance or more details than the Formula SAE Rules.", "parentRuleCode": "EV.2.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.2.1.3", "ruleContent": "Use the format provided and submit the ESF as given in section DR - Document Requirements", "parentRuleCode": "EV.2.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.2.2", "ruleContent": "Submission Penalties Penalties for the ESF are imposed as given in section DR - Document Requirements.", "parentRuleCode": "EV.2", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3", "ruleContent": "ELECTRICAL LIMITATIONS", "parentRuleCode": "EV", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.1", "ruleContent": "Operation", "parentRuleCode": "EV.3", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.1.1", "ruleContent": "Supplying power to the motor to drive the vehicle in reverse is prohibited", "parentRuleCode": "EV.3.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.1.2", "ruleContent": "Drive by wire control of wheel torque is permitted", "parentRuleCode": "EV.3.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.1.3", "ruleContent": "Any algorithm or electronic control unit that can adjust the requested wheel torque may only decrease the total driver requested torque and must not increase it", "parentRuleCode": "EV.3.1", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.2", "ruleContent": "Energy Meter", "parentRuleCode": "EV.3", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.2.1", "ruleContent": "All Electric Vehicles must run with the Energy Meter provided at the event Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter", "parentRuleCode": "EV.3.2", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.2.2", "ruleContent": "The Energy Meter must be installed in an easily accessible location", "parentRuleCode": "EV.3.2", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.2.3", "ruleContent": "All Tractive System power must flow through the Energy Meter", "parentRuleCode": "EV.3.2", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.2.4", "ruleContent": "Each team must download their Energy Meter data in a manner and timeframe specified by the organizer", "parentRuleCode": "EV.3.2", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.2.5", - "ruleContent": "Power and Voltage limits will be checked by the Energy Meter data Energy is calculated as the time integrated value of the measured voltage multiplied by the measured current logged by the Energy Meter.", + "ruleContent": "Power and Voltage limits will be checked by the Energy Meter data Energy is calculated as the time integrated value of the measured voltage multiplied by the measured current logged by the Energy Meter. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.3.2", - "pageNumber": "90", - "isFromTOC": false + "pageNumber": "90" }, { "ruleCode": "EV.3.3", "ruleContent": "Power and Voltage", "parentRuleCode": "EV.3", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.3.1", "ruleContent": "The maximum power measured by the Energy Meter must not exceed 80 kW", "parentRuleCode": "EV.3.3", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.3.2", "ruleContent": "The maximum permitted voltage that may occur between any two points must not exceed 600 V DC", "parentRuleCode": "EV.3.3", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.3.3", "ruleContent": "The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr", "parentRuleCode": "EV.3.3", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.4", "ruleContent": "Violations", "parentRuleCode": "EV.3", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.4.1", - "ruleContent": "A Violation occurs when one or two of these exist: a. Use of more than the specified maximum power EV.3.3.1 b. Exceed the maximum voltage EV.3.3.2 for one or the two conditions: • Continuously for 100 ms or more • After a moving average over 500 ms is applied", + "ruleContent": "A Violation occurs when one or two of these exist:", "parentRuleCode": "EV.3.4", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" + }, + { + "ruleCode": "EV.3.4.1.a", + "ruleContent": "Use of more than the specified maximum power EV.3.3.1", + "parentRuleCode": "EV.3.4.1", + "pageNumber": "91" + }, + { + "ruleCode": "EV.3.4.1.b", + "ruleContent": "Exceed the maximum voltage EV.3.3.2 for one or the two conditions: • Continuously for 100 ms or more • After a moving average over 500 ms is applied", + "parentRuleCode": "EV.3.4.1", + "pageNumber": "91" }, { "ruleCode": "EV.3.4.2", "ruleContent": "Missing Energy Meter data may be treated as a Violation, subject to official discretion", "parentRuleCode": "EV.3.4", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.4.3", "ruleContent": "Tampering, or attempting to tamper with the Energy Meter or its data may result in Disqualification (DQ)", "parentRuleCode": "EV.3.4", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.5", "ruleContent": "Penalties", "parentRuleCode": "EV.3", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.5.1", - "ruleContent": "Violations during the Acceleration, Skidpad, Autocross Events: a. Each run with one or more Violations will Disqualify (DQ) the best run of the team b. Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the two best runs", + "ruleContent": "Violations during the Acceleration, Skidpad, Autocross Events:", "parentRuleCode": "EV.3.5", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" + }, + { + "ruleCode": "EV.3.5.1.a", + "ruleContent": "Each run with one or more Violations will Disqualify (DQ) the best run of the team", + "parentRuleCode": "EV.3.5.1", + "pageNumber": "91" + }, + { + "ruleCode": "EV.3.5.1.b", + "ruleContent": "Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the two best runs", + "parentRuleCode": "EV.3.5.1", + "pageNumber": "91" }, { "ruleCode": "EV.3.5.2", - "ruleContent": "Violations during the Endurance event: • Each Violation: 60 second penalty D.14.2.1", + "ruleContent": "Violations during the Endurance event: • Each Violation: 60 second penalty D.14.2.1", "parentRuleCode": "EV.3.5", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.5.3", "ruleContent": "Repeated Violations may void Inspection Approval or receive additional penalties up to and including Disqualification, subject to official discretion.", "parentRuleCode": "EV.3.5", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.3.5.4", "ruleContent": "The respective data of each run in which a team has a Violation and the resulting decision may be made public.", "parentRuleCode": "EV.3.5", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.4", "ruleContent": "COMPONENTS", "parentRuleCode": "EV", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.4.1", "ruleContent": "Motors", "parentRuleCode": "EV.4", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.4.1.1", - "ruleContent": "Only electrical motors are allowed. The number of motors is not limited.", + "ruleContent": "Only electrical motors are allowed. The number of motors is not limited.", "parentRuleCode": "EV.4.1", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.4.1.2", "ruleContent": "Motors must meet T.5.3", "parentRuleCode": "EV.4.1", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.4.1.3", - "ruleContent": "If Motors are mounted to the suspension uprights, their cables and wiring must: a. Include an Interlock EV.7.8 This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or knocked off the vehicle. b. Reduce the length of the portions of wiring and other connections that do not meet", + "ruleContent": "If Motors are mounted to the suspension uprights, their cables and wiring must:", "parentRuleCode": "EV.4.1", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" + }, + { + "ruleCode": "EV.4.1.3.a", + "ruleContent": "Include an Interlock EV.7.8 This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or knocked off the vehicle.", + "parentRuleCode": "EV.4.1.3", + "pageNumber": "91" + }, + { + "ruleCode": "EV.4.1.3.b", + "ruleContent": "Reduce the length of the portions of wiring and other connections that do not meet", + "parentRuleCode": "EV.4.1.3", + "pageNumber": "91" }, { "ruleCode": "F.11.1.3", - "ruleContent": "to the extent possible", + "ruleContent": "to the extent possible Version 1.0 31 Aug 2024", "parentRuleCode": "F.11.1", - "pageNumber": "91", - "isFromTOC": false + "pageNumber": "91" }, { "ruleCode": "EV.4.2", - "ruleContent": "Motor Controller The Tractive System Motor(s) must be connected to the Accumulator through a Motor Controller. No direct connections between Motor(s) and Accumulator.", + "ruleContent": "Motor Controller The Tractive System Motor(s) must be connected to the Accumulator through a Motor Controller. No direct connections between Motor(s) and Accumulator.", "parentRuleCode": "EV.4", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.3", "ruleContent": "Accumulator Container", "parentRuleCode": "EV.4", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.3.1", "ruleContent": "Accumulator Containers must meet F.10", "parentRuleCode": "EV.4.3", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.3.2", "ruleContent": "The Accumulator Container(s) must be removable from the vehicle while still remaining rules compliant", "parentRuleCode": "EV.4.3", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.3.3", "ruleContent": "The Accumulator Container(s) must be completely closed at all times (when mounted to the vehicle and when removed from the vehicle) without the need to install extra protective covers", "parentRuleCode": "EV.4.3", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.3.4", - "ruleContent": "The Accumulator Container(s) may contain Holes or Openings a. Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the Accumulator Container(s) b. Holes and Openings in the Accumulator Container must meet F.10.4 c. External holes must meet EV.6.1", + "ruleContent": "The Accumulator Container(s) may contain Holes or Openings", "parentRuleCode": "EV.4.3", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.3.4.a", + "ruleContent": "Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the Accumulator Container(s)", + "parentRuleCode": "EV.4.3.4", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.3.4.b", + "ruleContent": "Holes and Openings in the Accumulator Container must meet F.10.4", + "parentRuleCode": "EV.4.3.4", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.3.4.c", + "ruleContent": "External holes must meet EV.6.1", + "parentRuleCode": "EV.4.3.4", + "pageNumber": "92" }, { "ruleCode": "EV.4.3.5", "ruleContent": "Any Accumulators that may vent an explosive gas must have a ventilation system or pressure relief valve to release the vented gas", "parentRuleCode": "EV.4.3", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.3.6", "ruleContent": "Segments sealed in Accumulator Containers must have a path to a pressure relief valve", "parentRuleCode": "EV.4.3", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.3.7", "ruleContent": "Pressure relief valves must not have line of sight to the driver, with the Firewall installed or removed", "parentRuleCode": "EV.4.3", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.3.8", - "ruleContent": "Each Accumulator Container must be labelled with the: a. School Name and Vehicle Number b. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background) with: • Triangle side length of 100 mm minimum • Visibility from all angles, including when the lid is removed c. Text “Always Energized” d. Text “High Voltage” if the voltage meets T.9.1.1", + "ruleContent": "Each Accumulator Container must be labelled with the:", "parentRuleCode": "EV.4.3", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.3.8.a", + "ruleContent": "School Name and Vehicle Number", + "parentRuleCode": "EV.4.3.8", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.3.8.b", + "ruleContent": "Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background) with: • Triangle side length of 100 mm minimum • Visibility from all angles, including when the lid is removed", + "parentRuleCode": "EV.4.3.8", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.3.8.c", + "ruleContent": "Text “Always Energized”", + "parentRuleCode": "EV.4.3.8", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.3.8.d", + "ruleContent": "Text “High Voltage” if the voltage meets T.9.1.1", + "parentRuleCode": "EV.4.3.8", + "pageNumber": "92" }, { "ruleCode": "EV.4.4", "ruleContent": "Grounded Low Voltage System", "parentRuleCode": "EV.4", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.4.1", - "ruleContent": "The GLV System must be: a. A Low Voltage system that is Grounded to the Chassis b. Able to operate with Accumulator removed from the vehicle", + "ruleContent": "The GLV System must be:", "parentRuleCode": "EV.4.4", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.4.1.a", + "ruleContent": "A Low Voltage system that is Grounded to the Chassis", + "parentRuleCode": "EV.4.4.1", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.4.1.b", + "ruleContent": "Able to operate with Accumulator removed from the vehicle", + "parentRuleCode": "EV.4.4.1", + "pageNumber": "92" }, { "ruleCode": "EV.4.4.2", "ruleContent": "The GLV System must include a Master Switch, see EV.7.9.1", "parentRuleCode": "EV.4.4", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" }, { "ruleCode": "EV.4.4.3", - "ruleContent": "A GLV Measuring Point (GLVMP) must be installed which is: a. Connected to GLV System Ground b. Next to the TSMP EV.5.8 c. 4 mm shrouded banana jack d. Color: Black e. Marked “GND”", + "ruleContent": "A GLV Measuring Point (GLVMP) must be installed which is:", "parentRuleCode": "EV.4.4", - "pageNumber": "92", - "isFromTOC": false + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.4.3.a", + "ruleContent": "Connected to GLV System Ground", + "parentRuleCode": "EV.4.4.3", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.4.3.b", + "ruleContent": "Next to the TSMP EV.5.8", + "parentRuleCode": "EV.4.4.3", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.4.3.c", + "ruleContent": "4 mm shrouded banana jack", + "parentRuleCode": "EV.4.4.3", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.4.3.d", + "ruleContent": "Color: Black", + "parentRuleCode": "EV.4.4.3", + "pageNumber": "92" + }, + { + "ruleCode": "EV.4.4.3.e", + "ruleContent": "Marked “GND” Version 1.0 31 Aug 2024", + "parentRuleCode": "EV.4.4.3", + "pageNumber": "92" }, { "ruleCode": "EV.4.4.4", "ruleContent": "Low Voltage Batteries must meet T.9.2", "parentRuleCode": "EV.4.4", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.5", "ruleContent": "Accelerator Pedal Position Sensor - APPS Refer to T.4.2 for specific requirements of the APPS", "parentRuleCode": "EV.4", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.6", "ruleContent": "Brake System Encoder - BSE Refer to T.4.3 for specific requirements of the BSE", "parentRuleCode": "EV.4", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.7", "ruleContent": "APPS / Brake Pedal Plausibility Check", "parentRuleCode": "EV.4", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.7.1", - "ruleContent": "Must monitor for the two conditions: • The mechanical brakes are engaged EV.4.6, T.3.2.4 • The APPS signals more than 25% Pedal Travel EV.4.5", + "ruleContent": "Must monitor for the two conditions: • The mechanical brakes are engaged EV.4.6, T.3.2.4 • The APPS signals more than 25% Pedal Travel EV.4.5", "parentRuleCode": "EV.4.7", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.7.2", - "ruleContent": "If the two conditions in EV.4.7.1 occur at the same time: a. Power to the Motor(s) must be immediately and completely shut down b. The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, with or without brake operation The team must be able to demonstrate these actions at Technical Inspection", + "ruleContent": "If the two conditions in EV.4.7.1 occur at the same time:", "parentRuleCode": "EV.4.7", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" + }, + { + "ruleCode": "EV.4.7.2.a", + "ruleContent": "Power to the Motor(s) must be immediately and completely shut down", + "parentRuleCode": "EV.4.7.2", + "pageNumber": "93" + }, + { + "ruleCode": "EV.4.7.2.b", + "ruleContent": "The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, with or without brake operation The team must be able to demonstrate these actions at Technical Inspection", + "parentRuleCode": "EV.4.7.2", + "pageNumber": "93" }, { "ruleCode": "EV.4.8", "ruleContent": "Tractive System Part Positioning All parts belonging to the Tractive System must meet F.11", "parentRuleCode": "EV.4", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.9", "ruleContent": "Housings and Enclosures", "parentRuleCode": "EV.4", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.9.1", - "ruleContent": "Each housing or enclosure containing parts of the Tractive System other than Motor housings, must be labelled with the: a. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background) b. Text “High Voltage” if the voltage meets T.9.1.1", + "ruleContent": "Each housing or enclosure containing parts of the Tractive System other than Motor housings, must be labelled with the:", "parentRuleCode": "EV.4.9", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" + }, + { + "ruleCode": "EV.4.9.1.a", + "ruleContent": "Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background)", + "parentRuleCode": "EV.4.9.1", + "pageNumber": "93" + }, + { + "ruleCode": "EV.4.9.1.b", + "ruleContent": "Text “High Voltage” if the voltage meets T.9.1.1", + "parentRuleCode": "EV.4.9.1", + "pageNumber": "93" }, { "ruleCode": "EV.4.9.2", "ruleContent": "If the material of the housing containing parts of the Tractive System is electrically conductive, it must have a low resistance connection to GLV System Ground, see EV.6.7", "parentRuleCode": "EV.4.9", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.10", "ruleContent": "Accumulator Hand Cart", "parentRuleCode": "EV.4", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.10.1", "ruleContent": "Teams must have a Hand Cart to transport their Accumulator Container(s)", "parentRuleCode": "EV.4.10", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.10.2", - "ruleContent": "The Hand Cart must be used when the Accumulator Container(s) are transported on the competition site EV.11.4.2 EV.11.5.1", + "ruleContent": "The Hand Cart must be used when the Accumulator Container(s) are transported on the competition site EV.11.4.2 EV.11.5.1", "parentRuleCode": "EV.4.10", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.4.10.3", - "ruleContent": "The Hand Cart must: a. Be able to carry the load of the Accumulator Container(s) without tipping over b. Contain a minimum of two wheels c. Have a brake that must be: • Released only using a dead man type switch (where the brake is always on until released by pushing and holding a handle) or by manually lifting part of the cart off the ground • Able to stop the Hand Cart with a fully loaded Accumulator Container", + "ruleContent": "The Hand Cart must:", "parentRuleCode": "EV.4.10", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" + }, + { + "ruleCode": "EV.4.10.3.a", + "ruleContent": "Be able to carry the load of the Accumulator Container(s) without tipping over", + "parentRuleCode": "EV.4.10.3", + "pageNumber": "93" + }, + { + "ruleCode": "EV.4.10.3.b", + "ruleContent": "Contain a minimum of two wheels", + "parentRuleCode": "EV.4.10.3", + "pageNumber": "93" + }, + { + "ruleCode": "EV.4.10.3.c", + "ruleContent": "Have a brake that must be: • Released only using a dead man type switch (where the brake is always on until released by pushing and holding a handle) or by manually lifting part of the cart off the ground • Able to stop the Hand Cart with a fully loaded Accumulator Container", + "parentRuleCode": "EV.4.10.3", + "pageNumber": "93" }, { "ruleCode": "EV.4.10.4", - "ruleContent": "Accumulator Container(s) must be securely attached to the Hand Cart", + "ruleContent": "Accumulator Container(s) must be securely attached to the Hand Cart Version 1.0 31 Aug 2024", "parentRuleCode": "EV.4.10", - "pageNumber": "93", - "isFromTOC": false + "pageNumber": "93" }, { "ruleCode": "EV.5", "ruleContent": "ENERGY STORAGE", "parentRuleCode": "EV", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.1", "ruleContent": "Accumulator", "parentRuleCode": "EV.5", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.1.1", "ruleContent": "All cells or super capacitors which store the Tractive System energy are built into Accumulator Segments and must be enclosed in (an) Accumulator Container(s).", "parentRuleCode": "EV.5.1", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.1.2", "ruleContent": "Each Accumulator Segment must contain: • Static voltage of 120 V DC maximum • Energy of 6 MJ maximum The contained energy of a stack is calculated by multiplying the maximum stack voltage with the nominal capacity of the used cell(s) • Mass of 12 kg maximum", "parentRuleCode": "EV.5.1", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.1.3", - "ruleContent": "No further energy storage except for reasonably sized intermediate circuit capacitors are allowed after the Energy Meter EV.3.1", + "ruleContent": "No further energy storage except for reasonably sized intermediate circuit capacitors are allowed after the Energy Meter EV.3.1", "parentRuleCode": "EV.5.1", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.1.4", "ruleContent": "All Accumulator Segments and/or Accumulator Containers (including spares and replacement parts) must be identical to the design documented in the ESF and SES", "parentRuleCode": "EV.5.1", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.2", "ruleContent": "Electrical Configuration", "parentRuleCode": "EV.5", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.2.1", "ruleContent": "All Tractive System components must be rated for the maximum Tractive System voltage", "parentRuleCode": "EV.5.2", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.2.2", - "ruleContent": "If the Accumulator Container is made from an electrically conductive material: a. The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner wall of the Accumulator Container with an insulating material that is rated for the maximum Tractive System voltage. b. All conductive surfaces on the outside of the Accumulator Container must have a low resistance connection to the GLV System Ground, see EV.6.7 c. Any conductive penetrations, such as mounting hardware, must be protected against puncturing the insulating barrier.", + "ruleContent": "If the Accumulator Container is made from an electrically conductive material:", "parentRuleCode": "EV.5.2", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" + }, + { + "ruleCode": "EV.5.2.2.a", + "ruleContent": "The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner wall of the Accumulator Container with an insulating material that is rated for the maximum Tractive System voltage.", + "parentRuleCode": "EV.5.2.2", + "pageNumber": "94" + }, + { + "ruleCode": "EV.5.2.2.b", + "ruleContent": "All conductive surfaces on the outside of the Accumulator Container must have a low resistance connection to the GLV System Ground, see EV.6.7", + "parentRuleCode": "EV.5.2.2", + "pageNumber": "94" + }, + { + "ruleCode": "EV.5.2.2.c", + "ruleContent": "Any conductive penetrations, such as mounting hardware, must be protected against puncturing the insulating barrier.", + "parentRuleCode": "EV.5.2.2", + "pageNumber": "94" }, { "ruleCode": "EV.5.2.3", - "ruleContent": "Each Accumulator Segment must be electrically insulated with suitable Nonflammable Material (F.1.18) (not air) for the two: a. Between the segments in the container b. On top of the segment The intent is to prevent arc flashes caused by inter segment contact or by parts/tools accidentally falling into the container during maintenance for example.", + "ruleContent": "Each Accumulator Segment must be electrically insulated with suitable Nonflammable Material (F.1.18) (not air) for the two:", "parentRuleCode": "EV.5.2", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" + }, + { + "ruleCode": "EV.5.2.3.a", + "ruleContent": "Between the segments in the container", + "parentRuleCode": "EV.5.2.3", + "pageNumber": "94" + }, + { + "ruleCode": "EV.5.2.3.b", + "ruleContent": "On top of the segment The intent is to prevent arc flashes caused by inter segment contact or by parts/tools accidentally falling into the container during maintenance for example.", + "parentRuleCode": "EV.5.2.3", + "pageNumber": "94" }, { "ruleCode": "EV.5.2.4", - "ruleContent": "Soldering electrical connections in the high current path is prohibited Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are not part of the high current path.", + "ruleContent": "Soldering electrical connections in the high current path is prohibited Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are not part of the high current path. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.5.2", - "pageNumber": "94", - "isFromTOC": false + "pageNumber": "94" }, { "ruleCode": "EV.5.2.5", "ruleContent": "Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, must be rated to the maximum Tractive System voltage.", "parentRuleCode": "EV.5.2", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.3", "ruleContent": "Maintenance Plugs", "parentRuleCode": "EV.5", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.3.1", - "ruleContent": "Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet: a. The separated Segments meet voltage and energy limits of EV.5.1.2 b. The separation must affect the two poles of the Segment", + "ruleContent": "Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet:", "parentRuleCode": "EV.5.3", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.3.1.a", + "ruleContent": "The separated Segments meet voltage and energy limits of EV.5.1.2", + "parentRuleCode": "EV.5.3.1", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.3.1.b", + "ruleContent": "The separation must affect the two poles of the Segment", + "parentRuleCode": "EV.5.3.1", + "pageNumber": "95" }, { "ruleCode": "EV.5.3.2", - "ruleContent": "Maintenance Plugs must: a. Require the physical removal or separation of a component. Contactors or switches are not acceptable Maintenance Plugs b. Have access after opening the Accumulator Container and not necessary to move or remove any other components c. Not be physically possible to make electrical connection in any configuration other than the design intended configuration d. Not require tools to install or remove e. Include a positive locking feature which prevents the plug from unintentionally becoming loose f. Be nonconductive on surfaces that do not provide any electrical connection", + "ruleContent": "Maintenance Plugs must:", "parentRuleCode": "EV.5.3", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.3.2.a", + "ruleContent": "Require the physical removal or separation of a component. Contactors or switches are not acceptable Maintenance Plugs", + "parentRuleCode": "EV.5.3.2", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.3.2.b", + "ruleContent": "Have access after opening the Accumulator Container and not necessary to move or remove any other components", + "parentRuleCode": "EV.5.3.2", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.3.2.c", + "ruleContent": "Not be physically possible to make electrical connection in any configuration other than the design intended configuration", + "parentRuleCode": "EV.5.3.2", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.3.2.d", + "ruleContent": "Not require tools to install or remove", + "parentRuleCode": "EV.5.3.2", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.3.2.e", + "ruleContent": "Include a positive locking feature which prevents the plug from unintentionally becoming loose", + "parentRuleCode": "EV.5.3.2", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.3.2.f", + "ruleContent": "Be nonconductive on surfaces that do not provide any electrical connection", + "parentRuleCode": "EV.5.3.2", + "pageNumber": "95" }, { "ruleCode": "EV.5.3.3", - "ruleContent": "When the Accumulator Containers are opened or Segments are removed, the Accumulator Segments must be separated by using the Maintenance Plugs. See EV.11.4.1", + "ruleContent": "When the Accumulator Containers are opened or Segments are removed, the Accumulator Segments must be separated by using the Maintenance Plugs. See EV.11.4.1", "parentRuleCode": "EV.5.3", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.4", "ruleContent": "Isolation Relays - IR", "parentRuleCode": "EV.5", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.4.1", "ruleContent": "All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more Isolation Relays (IR)", "parentRuleCode": "EV.5.4", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.4.2", - "ruleContent": "The Isolation Relays must: a. Be a Normally Open type b. Open the two poles of the Accumulator", + "ruleContent": "The Isolation Relays must:", "parentRuleCode": "EV.5.4", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.4.2.a", + "ruleContent": "Be a Normally Open type", + "parentRuleCode": "EV.5.4.2", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.4.2.b", + "ruleContent": "Open the two poles of the Accumulator", + "parentRuleCode": "EV.5.4.2", + "pageNumber": "95" }, { "ruleCode": "EV.5.4.3", "ruleContent": "When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator Container", "parentRuleCode": "EV.5.4", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.4.4", "ruleContent": "The Isolation Relays and any fuses must be separated from the rest of the Accumulator with an electrically insulated and Nonflammable Material (F.1.18).", "parentRuleCode": "EV.5.4", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.4.5", - "ruleContent": "A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit Opens EV.7.2.2", + "ruleContent": "A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit Opens EV.7.2.2", "parentRuleCode": "EV.5.4", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.5", - "ruleContent": "Manual Service Disconnect - MSD A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two poles of the Accumulator EV.11.3.2", + "ruleContent": "Manual Service Disconnect - MSD A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two poles of the Accumulator EV.11.3.2", "parentRuleCode": "EV.5", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" }, { "ruleCode": "EV.5.5.1", - "ruleContent": "The Manual Service Disconnect (MSD) must be: a. A directly accessible element, fuse or connector that will visually show disconnected b. More than 350 mm from the ground c. Easily visible when standing behind the vehicle d. Operable in 10 seconds or less by an untrained person e. Operable without removing any bodywork or obstruction or using tools f. Directly operated. Remote operation through a long handle, rope or wire is not acceptable. g. Clearly marked with \"MSD\"", + "ruleContent": "The Manual Service Disconnect (MSD) must be:", "parentRuleCode": "EV.5.5", - "pageNumber": "95", - "isFromTOC": false + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.5.1.a", + "ruleContent": "A directly accessible element, fuse or connector that will visually show disconnected", + "parentRuleCode": "EV.5.5.1", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.5.1.b", + "ruleContent": "More than 350 mm from the ground", + "parentRuleCode": "EV.5.5.1", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.5.1.c", + "ruleContent": "Easily visible when standing behind the vehicle", + "parentRuleCode": "EV.5.5.1", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.5.1.d", + "ruleContent": "Operable in 10 seconds or less by an untrained person", + "parentRuleCode": "EV.5.5.1", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.5.1.e", + "ruleContent": "Operable without removing any bodywork or obstruction or using tools Version 1.0 31 Aug 2024", + "parentRuleCode": "EV.5.5.1", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.5.1.f", + "ruleContent": "Directly operated. Remote operation through a long handle, rope or wire is not acceptable.", + "parentRuleCode": "EV.5.5.1", + "pageNumber": "95" + }, + { + "ruleCode": "EV.5.5.1.g", + "ruleContent": "Clearly marked with \"MSD\"", + "parentRuleCode": "EV.5.5.1", + "pageNumber": "95" }, { "ruleCode": "EV.5.5.2", "ruleContent": "The Energy Meter must not be used as the Manual Service Disconnect (MSD)", "parentRuleCode": "EV.5.5", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.5.3", "ruleContent": "An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed", "parentRuleCode": "EV.5.5", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.5.4", "ruleContent": "A dummy connector or similar may be used to restore isolation to meet EV.6.1.2", "parentRuleCode": "EV.5.5", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.6", "ruleContent": "Precharge and Discharge Circuits", "parentRuleCode": "EV.5", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.6.1", - "ruleContent": "The Accumulator must contain a Precharge Circuit. The Precharge Circuit must: a. Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage before closing the second IR b. Be supplied from the Shutdown Circuit EV.7.1", + "ruleContent": "The Accumulator must contain a Precharge Circuit. The Precharge Circuit must:", "parentRuleCode": "EV.5.6", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.6.1.a", + "ruleContent": "Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage before closing the second IR", + "parentRuleCode": "EV.5.6.1", + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.6.1.b", + "ruleContent": "Be supplied from the Shutdown Circuit EV.7.1", + "parentRuleCode": "EV.5.6.1", + "pageNumber": "96" }, { "ruleCode": "EV.5.6.2", - "ruleContent": "The Intermediate Circuit must precharge before closing the second IR a. The end of precharge must be controlled by feedback by monitoring the voltage in the Intermediate Circuit", + "ruleContent": "The Intermediate Circuit must precharge before closing the second IR", "parentRuleCode": "EV.5.6", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.6.2.a", + "ruleContent": "The end of precharge must be controlled by feedback by monitoring the voltage in the Intermediate Circuit", + "parentRuleCode": "EV.5.6.2", + "pageNumber": "96" }, { "ruleCode": "EV.5.6.3", - "ruleContent": "The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be: a. Wired in a way that it is always active when the Shutdown Circuit is open b. Able to discharge the Intermediate Circuit capacitors if the MSD has been opened c. Not be fused d. Designed to handle the maximum Tractive System voltage for minimum 15 seconds", + "ruleContent": "The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be:", "parentRuleCode": "EV.5.6", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.6.3.a", + "ruleContent": "Wired in a way that it is always active when the Shutdown Circuit is open", + "parentRuleCode": "EV.5.6.3", + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.6.3.b", + "ruleContent": "Able to discharge the Intermediate Circuit capacitors if the MSD has been opened", + "parentRuleCode": "EV.5.6.3", + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.6.3.c", + "ruleContent": "Not be fused", + "parentRuleCode": "EV.5.6.3", + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.6.3.d", + "ruleContent": "Designed to handle the maximum Tractive System voltage for minimum 15 seconds", + "parentRuleCode": "EV.5.6.3", + "pageNumber": "96" }, { "ruleCode": "EV.5.6.4", "ruleContent": "Positive Temperature Coefficient (PTC) devices must not be used to limit current for the Precharge Circuit or Discharge Circuit", "parentRuleCode": "EV.5.6", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.6.5", "ruleContent": "The precharge relay must be a mechanical type relay", "parentRuleCode": "EV.5.6", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.7", "ruleContent": "Voltage Indicator Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is present at the vehicle side of the IRs", "parentRuleCode": "EV.5", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.7.1", "ruleContent": "The Voltage Indicator must always function, including when the Accumulator Container is disconnected or removed", "parentRuleCode": "EV.5.7", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.7.2", "ruleContent": "The voltage being present at the connectors must directly control the Voltage Indicator using hard wired electronics with no software control.", "parentRuleCode": "EV.5.7", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.7.3", "ruleContent": "The control signal which closes the IRs must not control the Voltage Indicator", "parentRuleCode": "EV.5.7", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.7.4", - "ruleContent": "The Voltage Indicator must: a. Be located where it is clearly visible when connecting/disconnecting the Accumulator Tractive System connections b. Be labeled “High Voltage Present”", + "ruleContent": "The Voltage Indicator must:", "parentRuleCode": "EV.5.7", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.7.4.a", + "ruleContent": "Be located where it is clearly visible when connecting/disconnecting the Accumulator Tractive System connections", + "parentRuleCode": "EV.5.7.4", + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.7.4.b", + "ruleContent": "Be labeled “High Voltage Present”", + "parentRuleCode": "EV.5.7.4", + "pageNumber": "96" }, { "ruleCode": "EV.5.8", "ruleContent": "Tractive System Measuring Points - TSMP", "parentRuleCode": "EV.5", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" }, { "ruleCode": "EV.5.8.1", - "ruleContent": "Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are: a. Connected to the positive and negative motor controller/inverter supply lines b. Next to the Master Switches EV.7.9 c. Protected by a nonconductive housing that can be opened without tools d. Protected from being touched with bare hands / fingers once the housing is opened", + "ruleContent": "Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are:", "parentRuleCode": "EV.5.8", - "pageNumber": "96", - "isFromTOC": false + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.8.1.a", + "ruleContent": "Connected to the positive and negative motor controller/inverter supply lines", + "parentRuleCode": "EV.5.8.1", + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.8.1.b", + "ruleContent": "Next to the Master Switches EV.7.9", + "parentRuleCode": "EV.5.8.1", + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.8.1.c", + "ruleContent": "Protected by a nonconductive housing that can be opened without tools Version 1.0 31 Aug 2024", + "parentRuleCode": "EV.5.8.1", + "pageNumber": "96" + }, + { + "ruleCode": "EV.5.8.1.d", + "ruleContent": "Protected from being touched with bare hands / fingers once the housing is opened", + "parentRuleCode": "EV.5.8.1", + "pageNumber": "96" }, { "ruleCode": "EV.5.8.2", - "ruleContent": "Two TSMPs must be installed in the Charger EV.8.2 which are: a. Connected to the positive and negative Charger output lines b. Available during charging of any Accumulator(s)", + "ruleContent": "Two TSMPs must be installed in the Charger EV.8.2 which are:", "parentRuleCode": "EV.5.8", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.8.2.a", + "ruleContent": "Connected to the positive and negative Charger output lines", + "parentRuleCode": "EV.5.8.2", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.8.2.b", + "ruleContent": "Available during charging of any Accumulator(s)", + "parentRuleCode": "EV.5.8.2", + "pageNumber": "97" }, { "ruleCode": "EV.5.8.3", - "ruleContent": "The TSMPs must be: a. 4 mm shrouded banana jacks rated to an appropriate voltage level b. Color: Red c. Marked “HV+” and “HV-“", + "ruleContent": "The TSMPs must be:", "parentRuleCode": "EV.5.8", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.8.3.a", + "ruleContent": "4 mm shrouded banana jacks rated to an appropriate voltage level", + "parentRuleCode": "EV.5.8.3", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.8.3.b", + "ruleContent": "Color: Red", + "parentRuleCode": "EV.5.8.3", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.8.3.c", + "ruleContent": "Marked “HV+” and “HV-“", + "parentRuleCode": "EV.5.8.3", + "pageNumber": "97" }, { "ruleCode": "EV.5.8.4", - "ruleContent": "Each TSMP must be secured with a current limiting resistor. a. The resistor must be sized for the voltage: Maximum TS Voltage (Vmax) Resistor Value Vmax <= 200 V DC 5 kOhm 200 V DC < Vmax <= 400 V DC 10 kOhm 400 V DC < Vmax <= 600 V DC 15 kOhm b. Resistor continuous power rating must be more than the power dissipated across the TSMPs if they are shorted together c. Direct measurement of the value of the resistor must be possible during Electrical Technical Inspection.", + "ruleContent": "Each TSMP must be secured with a current limiting resistor.", "parentRuleCode": "EV.5.8", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.8.4.a", + "ruleContent": "The resistor must be sized for the voltage: Maximum TS Voltage (Vmax) Resistor Value Vmax <= 200 V DC 5 kOhm 200 V DC < Vmax <= 400 V DC 10 kOhm 400 V DC < Vmax <= 600 V DC 15 kOhm", + "parentRuleCode": "EV.5.8.4", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.8.4.b", + "ruleContent": "Resistor continuous power rating must be more than the power dissipated across the TSMPs if they are shorted together", + "parentRuleCode": "EV.5.8.4", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.8.4.c", + "ruleContent": "Direct measurement of the value of the resistor must be possible during Electrical Technical Inspection.", + "parentRuleCode": "EV.5.8.4", + "pageNumber": "97" }, { "ruleCode": "EV.5.8.5", "ruleContent": "Any TSMP must not contain additional Overcurrent Protection.", "parentRuleCode": "EV.5.8", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" }, { "ruleCode": "EV.5.9", "ruleContent": "Connectors Tractive System connectors outside of a housing must contain an Interlock EV.7.8", "parentRuleCode": "EV.5", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" }, { "ruleCode": "EV.5.10", "ruleContent": "Ready to Move Light", "parentRuleCode": "EV.5", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" }, { "ruleCode": "EV.5.10.1", - "ruleContent": "The vehicle must have two Ready to Move Lights: a. One pointed forward b. One pointed aft", + "ruleContent": "The vehicle must have two Ready to Move Lights:", "parentRuleCode": "EV.5.10", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.1.a", + "ruleContent": "One pointed forward", + "parentRuleCode": "EV.5.10.1", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.1.b", + "ruleContent": "One pointed aft", + "parentRuleCode": "EV.5.10.1", + "pageNumber": "97" }, { "ruleCode": "EV.5.10.2", - "ruleContent": "Each Ready to Move Light must be: a. A Marker Light that complies with DOT FMVSS 108 b. Color: Amber c. Luminous area: minimum 1800 mm", + "ruleContent": "Each Ready to Move Light must be:", "parentRuleCode": "EV.5.10", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.2.a", + "ruleContent": "A Marker Light that complies with DOT FMVSS 108", + "parentRuleCode": "EV.5.10.2", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.2.b", + "ruleContent": "Color: Amber", + "parentRuleCode": "EV.5.10.2", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.2.c", + "ruleContent": "Luminous area: minimum 1800 mm 2", + "parentRuleCode": "EV.5.10.2", + "pageNumber": "97" }, { "ruleCode": "EV.5.10.3", - "ruleContent": "Mounting location of each Ready to Move Light must: a. Be near the Main Hoop near the highest point of the vehicle b. Be inside the Rollover Protection Envelope F.1.13 c. Be no lower than 150 mm from the highest point of the Main Hoop d. Not allow contact with the driver’s helmet in any circumstances e. Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm horizontal radius from the light Visibility is checked with Bodywork and Aerodynamic Devices in place", + "ruleContent": "Mounting location of each Ready to Move Light must:", "parentRuleCode": "EV.5.10", - "pageNumber": "97", - "isFromTOC": false + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.3.a", + "ruleContent": "Be near the Main Hoop near the highest point of the vehicle", + "parentRuleCode": "EV.5.10.3", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.3.b", + "ruleContent": "Be inside the Rollover Protection Envelope F.1.13", + "parentRuleCode": "EV.5.10.3", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.3.c", + "ruleContent": "Be no lower than 150 mm from the highest point of the Main Hoop", + "parentRuleCode": "EV.5.10.3", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.3.d", + "ruleContent": "Not allow contact with the driver’s helmet in any circumstances", + "parentRuleCode": "EV.5.10.3", + "pageNumber": "97" + }, + { + "ruleCode": "EV.5.10.3.e", + "ruleContent": "Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm horizontal radius from the light Visibility is checked with Bodywork and Aerodynamic Devices in place Version 1.0 31 Aug 2024", + "parentRuleCode": "EV.5.10.3", + "pageNumber": "97" }, { "ruleCode": "EV.5.10.4", - "ruleContent": "The Ready to Move Light must: a. Be powered by the GLV system b. Be directly controlled by the voltage present in the Tractive System using hard wired electronics. EV.6.5.4 Software control is not permitted. c. Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage outside the Accumulator Container(s) exceeds T.9.1.1 d. Not do any other functions", + "ruleContent": "The Ready to Move Light must:", "parentRuleCode": "EV.5.10", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.10.4.a", + "ruleContent": "Be powered by the GLV system", + "parentRuleCode": "EV.5.10.4", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.10.4.b", + "ruleContent": "Be directly controlled by the voltage present in the Tractive System using hard wired electronics. EV.6.5.4 Software control is not permitted.", + "parentRuleCode": "EV.5.10.4", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.10.4.c", + "ruleContent": "Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage outside the Accumulator Container(s) exceeds T.9.1.1", + "parentRuleCode": "EV.5.10.4", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.10.4.d", + "ruleContent": "Not do any other functions", + "parentRuleCode": "EV.5.10.4", + "pageNumber": "98" }, { "ruleCode": "EV.5.11", "ruleContent": "Tractive System Status Indicator", "parentRuleCode": "EV.5", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" }, { "ruleCode": "EV.5.11.1", "ruleContent": "The vehicle must have a Tractive System Status Indicator", "parentRuleCode": "EV.5.11", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" }, { "ruleCode": "EV.5.11.2", "ruleContent": "The Tractive System Status Indicator must have two separate Red and Green Status Lights", "parentRuleCode": "EV.5.11", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" }, { "ruleCode": "EV.5.11.3", - "ruleContent": "Each of the Status Lights: a. Must have a minimum luminous area of 130 mm b. Must be visible in direct sunlight c. May have one or more of the same elements", + "ruleContent": "Each of the Status Lights:", "parentRuleCode": "EV.5.11", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.3.a", + "ruleContent": "Must have a minimum luminous area of 130 mm 2", + "parentRuleCode": "EV.5.11.3", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.3.b", + "ruleContent": "Must be visible in direct sunlight", + "parentRuleCode": "EV.5.11.3", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.3.c", + "ruleContent": "May have one or more of the same elements", + "parentRuleCode": "EV.5.11.3", + "pageNumber": "98" }, { "ruleCode": "EV.5.11.4", - "ruleContent": "Mounting location of the Tractive System Status Indicator must: a. Be near the Main Hoop at the highest point of the vehicle b. Be above the Ready to Move Light c. Be inside the Rollover Protection Envelope F.1.13 d. Be no lower than 150 mm from the highest point of the Main Hoop e. Not allow contact with the driver’s helmet in any circumstances f. Easily visible to a person near the vehicle", + "ruleContent": "Mounting location of the Tractive System Status Indicator must:", "parentRuleCode": "EV.5.11", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.4.a", + "ruleContent": "Be near the Main Hoop at the highest point of the vehicle", + "parentRuleCode": "EV.5.11.4", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.4.b", + "ruleContent": "Be above the Ready to Move Light", + "parentRuleCode": "EV.5.11.4", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.4.c", + "ruleContent": "Be inside the Rollover Protection Envelope F.1.13", + "parentRuleCode": "EV.5.11.4", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.4.d", + "ruleContent": "Be no lower than 150 mm from the highest point of the Main Hoop", + "parentRuleCode": "EV.5.11.4", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.4.e", + "ruleContent": "Not allow contact with the driver’s helmet in any circumstances", + "parentRuleCode": "EV.5.11.4", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.4.f", + "ruleContent": "Easily visible to a person near the vehicle", + "parentRuleCode": "EV.5.11.4", + "pageNumber": "98" }, { "ruleCode": "EV.5.11.5", - "ruleContent": "The Tractive System Status Indicator must show when the GLV System is energized: Condition Green Light Red Light a. No Faults Always ON OFF b. Fault in one or the two: BMS EV.7.3.5 or IMD EV.7.6.5 OFF Flash 2 Hz to 5 Hz, 50% duty cycle", + "ruleContent": "The Tractive System Status Indicator must show when the GLV System is energized: Condition Green Light Red Light", "parentRuleCode": "EV.5.11", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.5.a", + "ruleContent": "No Faults Always ON OFF", + "parentRuleCode": "EV.5.11.5", + "pageNumber": "98" + }, + { + "ruleCode": "EV.5.11.5.b", + "ruleContent": "Fault in one or the two: BMS EV.7.3.5 or IMD EV.7.6.5 OFF Flash 2 Hz to 5 Hz, 50% duty cycle", + "parentRuleCode": "EV.5.11.5", + "pageNumber": "98" }, { "ruleCode": "EV.6", "ruleContent": "ELECTRICAL SYSTEM", "parentRuleCode": "EV", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" }, { "ruleCode": "EV.6.1", "ruleContent": "Covers", "parentRuleCode": "EV.6", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" }, { "ruleCode": "EV.6.1.1", "ruleContent": "Nonconductive material or covers must prevent inadvertent human contact with any Tractive System voltage. Covers must be secure and sufficiently rigid. Removable Bodywork is not suitable to enclose Tractive System connections.", "parentRuleCode": "EV.6.1", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" }, { "ruleCode": "EV.6.1.2", "ruleContent": "Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated test probe must not be possible when the Tractive System enclosures are in place.", "parentRuleCode": "EV.6.1", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" }, { "ruleCode": "EV.6.1.3", - "ruleContent": "Tractive System components and Accumulator Containers must be protected from moisture, rain or puddles. A rating of IP65 is recommended", + "ruleContent": "Tractive System components and Accumulator Containers must be protected from moisture, rain or puddles. A rating of IP65 is recommended Version 1.0 31 Aug 2024", "parentRuleCode": "EV.6.1", - "pageNumber": "98", - "isFromTOC": false + "pageNumber": "98" }, { "ruleCode": "EV.6.2", "ruleContent": "Insulation", "parentRuleCode": "EV.6", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" }, { "ruleCode": "EV.6.2.1", - "ruleContent": "Insulation material must: a. Be appropriate for the expected surrounding temperatures b. Have a minimum temperature rating of 90°C", + "ruleContent": "Insulation material must:", "parentRuleCode": "EV.6.2", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.2.1.a", + "ruleContent": "Be appropriate for the expected surrounding temperatures", + "parentRuleCode": "EV.6.2.1", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.2.1.b", + "ruleContent": "Have a minimum temperature rating of 90°C", + "parentRuleCode": "EV.6.2.1", + "pageNumber": "99" }, { "ruleCode": "EV.6.2.2", "ruleContent": "Insulating tape or paint may be part of the insulation, but must not be the only insulation.", "parentRuleCode": "EV.6.2", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" }, { "ruleCode": "EV.6.3", "ruleContent": "Wiring", "parentRuleCode": "EV.6", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" }, { "ruleCode": "EV.6.3.1", "ruleContent": "All wires and terminals and other conductors used in the Tractive System must be sized for the continuous current they will conduct", "parentRuleCode": "EV.6.3", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" }, { "ruleCode": "EV.6.3.2", - "ruleContent": "All Tractive System wiring must: a. Be marked with wire gauge, temperature rating and insulation voltage rating. A serial number or a norm printed on the wire is sufficient if this serial number or norm is clearly bound to the wire characteristics for example by a data sheet. b. Have temperature rating more than or equal to 90°C", + "ruleContent": "All Tractive System wiring must:", "parentRuleCode": "EV.6.3", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.2.a", + "ruleContent": "Be marked with wire gauge, temperature rating and insulation voltage rating. A serial number or a norm printed on the wire is sufficient if this serial number or norm is clearly bound to the wire characteristics for example by a data sheet.", + "parentRuleCode": "EV.6.3.2", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.2.b", + "ruleContent": "Have temperature rating more than or equal to 90°C", + "parentRuleCode": "EV.6.3.2", + "pageNumber": "99" }, { "ruleCode": "EV.6.3.3", - "ruleContent": "Tractive System wiring must be: a. Done to professional standards with sufficient strain relief b. Protected from loosening due to vibration c. Protected against damage by rotating and / or moving parts d. Located out of the way of possible snagging or damage", + "ruleContent": "Tractive System wiring must be:", "parentRuleCode": "EV.6.3", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.3.a", + "ruleContent": "Done to professional standards with sufficient strain relief", + "parentRuleCode": "EV.6.3.3", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.3.b", + "ruleContent": "Protected from loosening due to vibration", + "parentRuleCode": "EV.6.3.3", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.3.c", + "ruleContent": "Protected against damage by rotating and / or moving parts", + "parentRuleCode": "EV.6.3.3", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.3.d", + "ruleContent": "Located out of the way of possible snagging or damage", + "parentRuleCode": "EV.6.3.3", + "pageNumber": "99" }, { "ruleCode": "EV.6.3.4", - "ruleContent": "Any Tractive System wiring that runs outside of electrical enclosures: a. Must meet one of the two: • Enclosed in separate orange nonconductive conduit • Use an orange shielded cable b. The conduit or shielded cable must be securely anchored at each end to allow it to withstand a force of 200 N without straining the cable end crimp c. Any shielded cable must have the shield grounded", + "ruleContent": "Any Tractive System wiring that runs outside of electrical enclosures:", "parentRuleCode": "EV.6.3", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.4.a", + "ruleContent": "Must meet one of the two: • Enclosed in separate orange nonconductive conduit • Use an orange shielded cable", + "parentRuleCode": "EV.6.3.4", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.4.b", + "ruleContent": "The conduit or shielded cable must be securely anchored at each end to allow it to withstand a force of 200 N without straining the cable end crimp", + "parentRuleCode": "EV.6.3.4", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.3.4.c", + "ruleContent": "Any shielded cable must have the shield grounded", + "parentRuleCode": "EV.6.3.4", + "pageNumber": "99" }, { "ruleCode": "EV.6.3.5", "ruleContent": "Wiring that is not part of the Tractive System must not use orange wiring or conduit.", "parentRuleCode": "EV.6.3", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" }, { "ruleCode": "EV.6.4", "ruleContent": "Connections", "parentRuleCode": "EV.6", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" }, { "ruleCode": "EV.6.4.1", - "ruleContent": "All Tractive System connections must: a. Be designed to use intentional current paths through conductors designed for electrical current b. Not rely on steel bolts to be the primary conductor c. Not include compressible material such as plastic in the stack-up", + "ruleContent": "All Tractive System connections must:", "parentRuleCode": "EV.6.4", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.4.1.a", + "ruleContent": "Be designed to use intentional current paths through conductors designed for electrical current", + "parentRuleCode": "EV.6.4.1", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.4.1.b", + "ruleContent": "Not rely on steel bolts to be the primary conductor", + "parentRuleCode": "EV.6.4.1", + "pageNumber": "99" + }, + { + "ruleCode": "EV.6.4.1.c", + "ruleContent": "Not include compressible material such as plastic in the stack-up", + "parentRuleCode": "EV.6.4.1", + "pageNumber": "99" }, { "ruleCode": "EV.6.4.2", "ruleContent": "If external, uninsulated heat sinks are used, they must be properly grounded to the GLV System Ground, see EV.6.7", "parentRuleCode": "EV.6.4", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" }, { "ruleCode": "EV.6.4.3", - "ruleContent": "Bolted electrical connections in the high current path of the Tractive System must include a positive locking feature to prevent unintentional loosening Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. Bolts with nylon patches are allowed for blind connections into OEM components.", + "ruleContent": "Bolted electrical connections in the high current path of the Tractive System must include a positive locking feature to prevent unintentional loosening Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. Bolts with nylon patches are allowed for blind connections into OEM components. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.6.4", - "pageNumber": "99", - "isFromTOC": false + "pageNumber": "99" }, { "ruleCode": "EV.6.4.4", "ruleContent": "Information about the electrical connections supporting the high current path must be available at Electrical Technical Inspection", "parentRuleCode": "EV.6.4", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.6.5", "ruleContent": "Voltage Separation", "parentRuleCode": "EV.6", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.6.5.1", - "ruleContent": "Separation of Tractive System and GLV System: a. The entire Tractive System and GLV System must be completely galvanically separated. b. The border between Tractive System and GLV System is the galvanic isolation between the two systems. Some components, such as the Motor Controller, may be part of both systems.", + "ruleContent": "Separation of Tractive System and GLV System:", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" + }, + { + "ruleCode": "EV.6.5.1.a", + "ruleContent": "The entire Tractive System and GLV System must be completely galvanically separated.", + "parentRuleCode": "EV.6.5.1", + "pageNumber": "100" + }, + { + "ruleCode": "EV.6.5.1.b", + "ruleContent": "The border between Tractive System and GLV System is the galvanic isolation between the two systems. Some components, such as the Motor Controller, may be part of both systems.", + "parentRuleCode": "EV.6.5.1", + "pageNumber": "100" }, { "ruleCode": "EV.6.5.2", "ruleContent": "There must be no connection between the Chassis of the vehicle (or any other conductive surface that might be inadvertently touched by a person), and any part of any Tractive System circuits.", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.6.5.3", "ruleContent": "Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.6.5.4", "ruleContent": "GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.5.10", "ruleContent": "the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator Container.", "parentRuleCode": "EV.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.6.5.5", - "ruleContent": "Where Tractive System and GLV are included inside the same enclosure, they must meet one of the two: a. Be separated by insulating barriers (in addition to the insulation on the wire) made of moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or higher (such as Nomex based electrical insulation) b. Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: U < 100 V DC 10 mm 100 V DC < U < 200 V DC 20 mm U > 200 V DC 30 mm", + "ruleContent": "Where Tractive System and GLV are included inside the same enclosure, they must meet one of the two:", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" + }, + { + "ruleCode": "EV.6.5.5.a", + "ruleContent": "Be separated by insulating barriers (in addition to the insulation on the wire) made of moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or higher (such as Nomex based electrical insulation)", + "parentRuleCode": "EV.6.5.5", + "pageNumber": "100" + }, + { + "ruleCode": "EV.6.5.5.b", + "ruleContent": "Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: U < 100 V DC 10 mm 100 V DC < U < 200 V DC 20 mm U > 200 V DC 30 mm", + "parentRuleCode": "EV.6.5.5", + "pageNumber": "100" }, { "ruleCode": "EV.6.5.6", "ruleContent": "Spacing must be clearly defined. Components and cables capable of movement must be positively restrained to maintain spacing.", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.6.5.7", - "ruleContent": "If Tractive System and GLV are on the same circuit board: a. They must be on separate, clearly defined and clearly marked areas of the board b. Required spacing related to the spacing between traces / board areas are as follows: Voltage Over Surface Thru Air (cut in board) Under Conformal Coating 0-50 V DC 1.6 mm 1.6 mm 1 mm 50-150 V DC 6.4 mm 3.2 mm 2 mm 150-300 V DC 9.5 mm 6.4 mm 3 mm 300-600 V DC 12.7 mm 9.5 mm 4 mm", + "ruleContent": "If Tractive System and GLV are on the same circuit board:", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" + }, + { + "ruleCode": "EV.6.5.7.a", + "ruleContent": "They must be on separate, clearly defined and clearly marked areas of the board", + "parentRuleCode": "EV.6.5.7", + "pageNumber": "100" + }, + { + "ruleCode": "EV.6.5.7.b", + "ruleContent": "Required spacing related to the spacing between traces / board areas are as follows: Voltage Over Surface Thru Air (cut in board) Under Conformal Coating 0-50 V DC 1.6 mm 1.6 mm 1 mm 50-150 V DC 6.4 mm 3.2 mm 2 mm 150-300 V DC 9.5 mm 6.4 mm 3 mm 300-600 V DC 12.7 mm 9.5 mm 4 mm", + "parentRuleCode": "EV.6.5.7", + "pageNumber": "100" }, { "ruleCode": "EV.6.5.8", "ruleContent": "Teams must be prepared to show spacing on team built equipment For inaccessible circuitry, spare boards or appropriate photographs must be available for inspection", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.6.5.9", - "ruleContent": "All connections to external devices such as laptops from a Tractive System component must include galvanic isolation", + "ruleContent": "All connections to external devices such as laptops from a Tractive System component must include galvanic isolation Version 1.0 31 Aug 2024", "parentRuleCode": "EV.6.5", - "pageNumber": "100", - "isFromTOC": false + "pageNumber": "100" }, { "ruleCode": "EV.6.6", "ruleContent": "Overcurrent Protection", "parentRuleCode": "EV.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" }, { "ruleCode": "EV.6.6.1", "ruleContent": "All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent Protection/Fusing.", "parentRuleCode": "EV.6.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" }, { "ruleCode": "EV.6.6.2", - "ruleContent": "Unless otherwise allowed in the Rules, all Overcurrent Protection devices must: a. Be rated for the highest voltage in the systems they protect. Overcurrent Protection devices used for DC must be rated for DC and must carry a DC rating equal to or more than the system voltage b. Have a continuous current rating less than or equal to the continuous current rating of any electrical component that it protects c. Have an interrupt current rating higher than the theoretical short circuit current of the system that it protects", + "ruleContent": "Unless otherwise allowed in the Rules, all Overcurrent Protection devices must:", "parentRuleCode": "EV.6.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.6.2.a", + "ruleContent": "Be rated for the highest voltage in the systems they protect. Overcurrent Protection devices used for DC must be rated for DC and must carry a DC rating equal to or more than the system voltage", + "parentRuleCode": "EV.6.6.2", + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.6.2.b", + "ruleContent": "Have a continuous current rating less than or equal to the continuous current rating of any electrical component that it protects", + "parentRuleCode": "EV.6.6.2", + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.6.2.c", + "ruleContent": "Have an interrupt current rating higher than the theoretical short circuit current of the system that it protects", + "parentRuleCode": "EV.6.6.2", + "pageNumber": "101" }, { "ruleCode": "EV.6.6.3", "ruleContent": "Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, strings of capacitors, or conductors must have individual Overcurrent Protection.", "parentRuleCode": "EV.6.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" }, { "ruleCode": "EV.6.6.4", - "ruleContent": "Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of: a. Be appropriately sized for the total current that the individual Overcurrent Protection devices could transmit b. Contain additional Overcurrent Protection to protect the conductors", + "ruleContent": "Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of:", "parentRuleCode": "EV.6.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.6.4.a", + "ruleContent": "Be appropriately sized for the total current that the individual Overcurrent Protection devices could transmit", + "parentRuleCode": "EV.6.6.4", + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.6.4.b", + "ruleContent": "Contain additional Overcurrent Protection to protect the conductors", + "parentRuleCode": "EV.6.6.4", + "pageNumber": "101" }, { "ruleCode": "EV.6.6.5", "ruleContent": "Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be used when all three conditions are met: • An Overcurrent Protection device rated at less than or equal to one third the sum of the parallel fusible links and complying with EV.6.6.2.b above is connected in series. • The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a fault is detected. • Fusible link current rating is specified in manufacturer’s data or suitable test data is provided.", "parentRuleCode": "EV.6.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" }, { "ruleCode": "EV.6.6.6", - "ruleContent": "If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, the reduced conductor longer than 150 mm must have additional Overcurrent Protection. This additional Overcurrent Protection must be: a. 150 mm or less from the source end of the reduced conductor b. On the positive and the negative conductors in the Tractive System c. On the positive conductor in the Grounded Low Voltage System", + "ruleContent": "If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, the reduced conductor longer than 150 mm must have additional Overcurrent Protection. This additional Overcurrent Protection must be:", "parentRuleCode": "EV.6.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.6.6.a", + "ruleContent": "150 mm or less from the source end of the reduced conductor", + "parentRuleCode": "EV.6.6.6", + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.6.6.b", + "ruleContent": "On the positive and the negative conductors in the Tractive System", + "parentRuleCode": "EV.6.6.6", + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.6.6.c", + "ruleContent": "On the positive conductor in the Grounded Low Voltage System", + "parentRuleCode": "EV.6.6.6", + "pageNumber": "101" }, { "ruleCode": "EV.6.6.7", "ruleContent": "Cells with internal Overcurrent Protection may be used without external Overcurrent Protection if suitably rated. Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and conditions of EV.6.6.5 above will apply.", "parentRuleCode": "EV.6.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" }, { "ruleCode": "EV.6.7", "ruleContent": "Grounding", "parentRuleCode": "EV.6", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" }, { "ruleCode": "EV.6.7.1", - "ruleContent": "Grounding is required for: a. Parts of the vehicle which are 100 mm or less from any Tractive System component b. (EV only) The Firewall T.1.8.4", + "ruleContent": "Grounding is required for:", "parentRuleCode": "EV.6.7", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.7.1.a", + "ruleContent": "Parts of the vehicle which are 100 mm or less from any Tractive System component", + "parentRuleCode": "EV.6.7.1", + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.7.1.b", + "ruleContent": "(EV only) The Firewall T.1.8.4", + "parentRuleCode": "EV.6.7.1", + "pageNumber": "101" }, { "ruleCode": "EV.6.7.2", - "ruleContent": "Grounded parts of the vehicle must have a resistance to GLV System Ground less than the values specified below. a. Electrically conductive parts 300 mOhms (measured with a current of 1 A) Examples: parts made of steel, (anodized) aluminum, any other metal parts b. Parts which may become electrically conductive 5 Ohm Example: carbon fiber parts Carbon fiber parts may need special measures such as using copper mesh or similar to keep the ground resistance below 5 Ohms.", + "ruleContent": "Grounded parts of the vehicle must have a resistance to GLV System Ground less than the values specified below. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.6.7", - "pageNumber": "101", - "isFromTOC": false + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.7.2.a", + "ruleContent": "Electrically conductive parts 300 mOhms (measured with a current of 1 A) Examples: parts made of steel, (anodized) aluminum, any other metal parts", + "parentRuleCode": "EV.6.7.2", + "pageNumber": "101" + }, + { + "ruleCode": "EV.6.7.2.b", + "ruleContent": "Parts which may become electrically conductive 5 Ohm Example: carbon fiber parts Carbon fiber parts may need special measures such as using copper mesh or similar to keep the ground resistance below 5 Ohms.", + "parentRuleCode": "EV.6.7.2", + "pageNumber": "101" }, { "ruleCode": "EV.6.7.3", "ruleContent": "Electrical conductivity of any part may be tested by checking any point which is likely to be conductive. Where no convenient conductive point is available, an area of coating may be removed.", "parentRuleCode": "EV.6.7", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" }, { "ruleCode": "EV.7", "ruleContent": "SHUTDOWN SYSTEM", "parentRuleCode": "EV", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" }, { "ruleCode": "EV.7.1", "ruleContent": "Shutdown Circuit", "parentRuleCode": "EV.7", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" }, { "ruleCode": "EV.7.1.1", - "ruleContent": "The Shutdown Circuit consists of these components, connected in series: a. Battery Management System (BMS) EV.7.3 b. Insulation Monitoring Device (IMD) EV.7.6 c. Brake System Plausibility Device (BSPD) EV.7.7 d. Interlocks (as required) EV.7.8 e. Master Switches (GLVMS, TSMS) EV.7.9 f. Shutdown Buttons EV.7.10 g. Brake Over Travel Switch (BOTS) T.3.3 h. Inertia Switch T.9.4", + "ruleContent": "The Shutdown Circuit consists of these components, connected in series:", "parentRuleCode": "EV.7.1", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" + }, + { + "ruleCode": "EV.7.1.1.a", + "ruleContent": "Battery Management System (BMS) EV.7.3", + "parentRuleCode": "EV.7.1.1", + "pageNumber": "102" + }, + { + "ruleCode": "EV.7.1.1.b", + "ruleContent": "Insulation Monitoring Device (IMD) EV.7.6", + "parentRuleCode": "EV.7.1.1", + "pageNumber": "102" + }, + { + "ruleCode": "EV.7.1.1.c", + "ruleContent": "Brake System Plausibility Device (BSPD) EV.7.7", + "parentRuleCode": "EV.7.1.1", + "pageNumber": "102" + }, + { + "ruleCode": "EV.7.1.1.d", + "ruleContent": "Interlocks (as required) EV.7.8", + "parentRuleCode": "EV.7.1.1", + "pageNumber": "102" + }, + { + "ruleCode": "EV.7.1.1.e", + "ruleContent": "Master Switches (GLVMS, TSMS) EV.7.9", + "parentRuleCode": "EV.7.1.1", + "pageNumber": "102" + }, + { + "ruleCode": "EV.7.1.1.f", + "ruleContent": "Shutdown Buttons EV.7.10", + "parentRuleCode": "EV.7.1.1", + "pageNumber": "102" + }, + { + "ruleCode": "EV.7.1.1.g", + "ruleContent": "Brake Over Travel Switch (BOTS) T.3.3", + "parentRuleCode": "EV.7.1.1", + "pageNumber": "102" + }, + { + "ruleCode": "EV.7.1.1.h", + "ruleContent": "Inertia Switch T.9.4", + "parentRuleCode": "EV.7.1.1", + "pageNumber": "102" }, { "ruleCode": "EV.7.1.2", "ruleContent": "The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the Precharge Circuit Relay.", "parentRuleCode": "EV.7.1", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" }, { "ruleCode": "EV.7.1.3", "ruleContent": "The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open", "parentRuleCode": "EV.7.1", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" }, { "ruleCode": "EV.7.1.4", "ruleContent": "The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown Circuit. The design of the respective circuits must make sure that a failure cannot result in electrical power being fed back into the Shutdown Circuit.", "parentRuleCode": "EV.7.1", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" }, { "ruleCode": "EV.7.1.5", "ruleContent": "The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown Circuit current", "parentRuleCode": "EV.7.1", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" }, { "ruleCode": "EV.7.1.6", - "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Electrical Technical Inspection.", + "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Electrical Technical Inspection. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.7.1", - "pageNumber": "102", - "isFromTOC": false + "pageNumber": "102" }, { "ruleCode": "EV.7.2", "ruleContent": "Shutdown Circuit Operation", "parentRuleCode": "EV.7", - "pageNumber": "103", - "isFromTOC": false + "pageNumber": "103" }, { "ruleCode": "EV.7.2.1", - "ruleContent": "The Shutdown Circuit must Open when any of these exist: a. Operation of, or detection from any of the components listed in EV.7.1.1 b. Any shutdown of the GLV System", + "ruleContent": "The Shutdown Circuit must Open when any of these exist:", "parentRuleCode": "EV.7.2", - "pageNumber": "103", - "isFromTOC": false + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.1.a", + "ruleContent": "Operation of, or detection from any of the components listed in EV.7.1.1", + "parentRuleCode": "EV.7.2.1", + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.1.b", + "ruleContent": "Any shutdown of the GLV System", + "parentRuleCode": "EV.7.2.1", + "pageNumber": "103" }, { "ruleCode": "EV.7.2.2", - "ruleContent": "When the Shutdown Circuit Opens: a. The Tractive System must Shutdown b. All Accumulator current flow must stop immediately EV.5.4.3 c. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less d. The Motor(s) must spin free. Torque must not be applied to the Motor(s)", + "ruleContent": "When the Shutdown Circuit Opens:", "parentRuleCode": "EV.7.2", - "pageNumber": "103", - "isFromTOC": false + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.2.a", + "ruleContent": "The Tractive System must Shutdown", + "parentRuleCode": "EV.7.2.2", + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.2.b", + "ruleContent": "All Accumulator current flow must stop immediately EV.5.4.3", + "parentRuleCode": "EV.7.2.2", + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.2.c", + "ruleContent": "The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less", + "parentRuleCode": "EV.7.2.2", + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.2.d", + "ruleContent": "The Motor(s) must spin free. Torque must not be applied to the Motor(s)", + "parentRuleCode": "EV.7.2.2", + "pageNumber": "103" }, { "ruleCode": "EV.7.2.3", - "ruleContent": "When the BMS, IMD or BSPD Open the Shutdown Circuit: a. The Tractive System must stay disabled until manually reset b. The Tractive System must be reset only by manual action of a person directly at the vehicle c. The driver must not be able to reactivate the Tractive System from inside the vehicle d. Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close", + "ruleContent": "When the BMS, IMD or BSPD Open the Shutdown Circuit:", "parentRuleCode": "EV.7.2", - "pageNumber": "103", - "isFromTOC": false + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.3.a", + "ruleContent": "The Tractive System must stay disabled until manually reset", + "parentRuleCode": "EV.7.2.3", + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.3.b", + "ruleContent": "The Tractive System must be reset only by manual action of a person directly at the vehicle", + "parentRuleCode": "EV.7.2.3", + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.3.c", + "ruleContent": "The driver must not be able to reactivate the Tractive System from inside the vehicle", + "parentRuleCode": "EV.7.2.3", + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.2.3.d", + "ruleContent": "Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close", + "parentRuleCode": "EV.7.2.3", + "pageNumber": "103" }, { "ruleCode": "EV.7.3", "ruleContent": "Battery Management System - BMS", "parentRuleCode": "EV.7", - "pageNumber": "103", - "isFromTOC": false + "pageNumber": "103" }, { "ruleCode": "EV.7.3.1", - "ruleContent": "A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and Temperature EV.7.5 when the: a. Tractive System is Active EV.11.5 b. Accumulator is connected to a Charger EV.8.3", + "ruleContent": "A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and Temperature EV.7.5 when the:", "parentRuleCode": "EV.7.3", - "pageNumber": "103", - "isFromTOC": false + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.3.1.a", + "ruleContent": "Tractive System is Active EV.11.5", + "parentRuleCode": "EV.7.3.1", + "pageNumber": "103" + }, + { + "ruleCode": "EV.7.3.1.b", + "ruleContent": "Accumulator is connected to a Charger EV.8.3", + "parentRuleCode": "EV.7.3.1", + "pageNumber": "103" }, { "ruleCode": "EV.7.3.2", "ruleContent": "The BMS must have galvanic isolation at each segment to segment boundary, as approved in the ESF", "parentRuleCode": "EV.7.3", - "pageNumber": "103", - "isFromTOC": false + "pageNumber": "103" }, { "ruleCode": "EV.7.3.3", - "ruleContent": "Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) Chassis Master Switch Brake System Plausibility Device Ba ery Management System TSMP HV+ Trac ve System le right Shutdown Bu ons GLV System GLV System Trac ve System Accumulator Fuse(s) IR Accumulator Container(s) Trac ve System cockpit IR Precharge Precharge Control GLV Ba ery Interlock(s) GND GLVMP HV TSMP Iner a Switch Brake System Plausibility Device Insula on Monitoring Device Brake Over Travel Switch MSD Interlock LV TS le right GLV System Master Switch GLV System GLV Fuse Trac ve System Trac ve System", + "ruleContent": "Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) Chassis Master Switch Brake System Plausibility Device Ba ery Management System TSMP HV+ Trac ve System le right Shutdown Bu ons GLV System GLV System Trac ve System Accumulator Fuse(s) IR Accumulator Container(s) Trac ve System cockpit IR Precharge Precharge Control GLV Ba ery Interlock(s) GND GLVMP HV TSMP Iner a Switch Brake System Plausibility Device Insula on Monitoring Device Brake Over Travel Switch MSD Interlock LV TS le right GLV System Master Switch GLV System GLV Fuse Trac ve System Trac ve System Version 1.0 31 Aug 2024", "parentRuleCode": "EV.7.3", - "pageNumber": "103", - "isFromTOC": false + "pageNumber": "103" }, { "ruleCode": "EV.7.3.4", - "ruleContent": "The BMS must monitor for: a. Voltage values outside the allowable range EV.7.4.2 b. Voltage sense Overcurrent Protection device(s) blown or tripped c. Temperature values outside the allowable range EV.7.5.2 d. Missing or interrupted voltage or temperature measurements e. A fault in the BMS", + "ruleContent": "The BMS must monitor for:", "parentRuleCode": "EV.7.3", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.4.a", + "ruleContent": "Voltage values outside the allowable range EV.7.4.2", + "parentRuleCode": "EV.7.3.4", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.4.b", + "ruleContent": "Voltage sense Overcurrent Protection device(s) blown or tripped", + "parentRuleCode": "EV.7.3.4", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.4.c", + "ruleContent": "Temperature values outside the allowable range EV.7.5.2", + "parentRuleCode": "EV.7.3.4", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.4.d", + "ruleContent": "Missing or interrupted voltage or temperature measurements", + "parentRuleCode": "EV.7.3.4", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.4.e", + "ruleContent": "A fault in the BMS", + "parentRuleCode": "EV.7.3.4", + "pageNumber": "104" }, { "ruleCode": "EV.7.3.5", - "ruleContent": "If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must: a. Open the Shutdown Circuit EV.7.2.2 b. Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 The two lights must stay on until the BMS is manually reset EV.7.2.3", + "ruleContent": "If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must:", "parentRuleCode": "EV.7.3", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.5.a", + "ruleContent": "Open the Shutdown Circuit EV.7.2.2", + "parentRuleCode": "EV.7.3.5", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.5.b", + "ruleContent": "Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 The two lights must stay on until the BMS is manually reset EV.7.2.3", + "parentRuleCode": "EV.7.3.5", + "pageNumber": "104" }, { "ruleCode": "EV.7.3.6", - "ruleContent": "The BMS Indicator Light must be: a. Color: Red b. Clearly visible to the seated driver in bright sunlight c. Clearly marked with the lettering “BMS”", + "ruleContent": "The BMS Indicator Light must be:", "parentRuleCode": "EV.7.3", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.6.a", + "ruleContent": "Color: Red", + "parentRuleCode": "EV.7.3.6", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.6.b", + "ruleContent": "Clearly visible to the seated driver in bright sunlight", + "parentRuleCode": "EV.7.3.6", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.3.6.c", + "ruleContent": "Clearly marked with the lettering “BMS”", + "parentRuleCode": "EV.7.3.6", + "pageNumber": "104" }, { "ruleCode": "EV.7.4", "ruleContent": "Accumulator Voltage", "parentRuleCode": "EV.7", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" }, { "ruleCode": "EV.7.4.1", "ruleContent": "The BMS must measure the cell voltage of each cell When single cells are directly connected in parallel, only one voltage measurement is needed", "parentRuleCode": "EV.7.4", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" }, { "ruleCode": "EV.7.4.2", - "ruleContent": "Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels stated in the cell data sheet. Measurement accuracy must be considered.", + "ruleContent": "Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels stated in the cell data sheet. Measurement accuracy must be considered.", "parentRuleCode": "EV.7.4", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" }, { "ruleCode": "EV.7.4.3", - "ruleContent": "All voltage sense wires to the BMS must meet one of: a. Have Overcurrent Protection EV.7.4.4 below b. Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below", + "ruleContent": "All voltage sense wires to the BMS must meet one of:", "parentRuleCode": "EV.7.4", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.4.3.a", + "ruleContent": "Have Overcurrent Protection EV.7.4.4 below", + "parentRuleCode": "EV.7.4.3", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.4.3.b", + "ruleContent": "Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below", + "parentRuleCode": "EV.7.4.3", + "pageNumber": "104" }, { "ruleCode": "EV.7.4.4", - "ruleContent": "When used, Overcurrent Protection for the BMS voltage sense wires must meet the two: a. The Overcurrent Protection must occur in the conductor, wire or PCB trace which is directly connected to the cell tab. b. The voltage rating of the Overcurrent Protection must be equal to or higher than the maximum segment voltage", + "ruleContent": "When used, Overcurrent Protection for the BMS voltage sense wires must meet the two:", "parentRuleCode": "EV.7.4", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.4.4.a", + "ruleContent": "The Overcurrent Protection must occur in the conductor, wire or PCB trace which is directly connected to the cell tab.", + "parentRuleCode": "EV.7.4.4", + "pageNumber": "104" + }, + { + "ruleCode": "EV.7.4.4.b", + "ruleContent": "The voltage rating of the Overcurrent Protection must be equal to or higher than the maximum segment voltage", + "parentRuleCode": "EV.7.4.4", + "pageNumber": "104" }, { "ruleCode": "EV.7.4.5", "ruleContent": "Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: • BMS is a distributed BMS system (one cell measurement per board) • Sense wire length is less than 25 mm • BMS board has Overcurrent Protection", "parentRuleCode": "EV.7.4", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" }, { "ruleCode": "EV.7.5", "ruleContent": "Accumulator Temperature", "parentRuleCode": "EV.7", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" }, { "ruleCode": "EV.7.5.1", "ruleContent": "The BMS must measure the temperatures of critical points of the Accumulator", "parentRuleCode": "EV.7.5", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" }, { "ruleCode": "EV.7.5.2", "ruleContent": "Temperatures (considering measurement accuracy) must stay below the lower of the two: • The maximum cell temperature limit stated in the cell data sheet • 60°C", "parentRuleCode": "EV.7.5", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" }, { "ruleCode": "EV.7.5.3", - "ruleContent": "Cell temperatures must be measured at the negative terminal of the respective cell", + "ruleContent": "Cell temperatures must be measured at the negative terminal of the respective cell Version 1.0 31 Aug 2024", "parentRuleCode": "EV.7.5", - "pageNumber": "104", - "isFromTOC": false + "pageNumber": "104" }, { "ruleCode": "EV.7.5.4", "ruleContent": "The temperature sensor used must be in direct contact with one of: • The negative terminal itself • The negative terminal busbar less than 10 mm away from the spot weld or clamping source on the negative cell terminal", "parentRuleCode": "EV.7.5", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.5.5", - "ruleContent": "For lithium based cells, a. The temperature of a minimum of 20% of the cells must be monitored by the BMS b. The monitored cells must be equally distributed inside the Accumulator Container(s) The temperature of each cell should be monitored", + "ruleContent": "For lithium based cells,", "parentRuleCode": "EV.7.5", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.5.5.a", + "ruleContent": "The temperature of a minimum of 20% of the cells must be monitored by the BMS", + "parentRuleCode": "EV.7.5.5", + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.5.5.b", + "ruleContent": "The monitored cells must be equally distributed inside the Accumulator Container(s) The temperature of each cell should be monitored", + "parentRuleCode": "EV.7.5.5", + "pageNumber": "105" }, { "ruleCode": "EV.7.5.6", "ruleContent": "Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells sensed by the sensor.", "parentRuleCode": "EV.7.5", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.5.7", "ruleContent": "Temperature sensors must have appropriate electrical isolation that meets one of the two: • Between the sensor and cell • In the sensing circuit The isolation must consider GLV/TS isolation as well as common mode voltages between sense locations.", "parentRuleCode": "EV.7.5", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.6", "ruleContent": "Insulation Monitoring Device - IMD", "parentRuleCode": "EV.7", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.6.1", "ruleContent": "The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System", "parentRuleCode": "EV.7.6", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.6.2", "ruleContent": "The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved alternate equivalent IMD Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD", "parentRuleCode": "EV.7.6", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.6.3", "ruleContent": "The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the maximum Tractive System operation voltage.", "parentRuleCode": "EV.7.6", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.6.4", - "ruleContent": "The IMD must monitor the Tractive System for: a. An isolation failure b. A failure in the IMD operation This must be done without the influence of any programmable logic.", + "ruleContent": "The IMD must monitor the Tractive System for:", "parentRuleCode": "EV.7.6", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.6.4.a", + "ruleContent": "An isolation failure", + "parentRuleCode": "EV.7.6.4", + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.6.4.b", + "ruleContent": "A failure in the IMD operation This must be done without the influence of any programmable logic.", + "parentRuleCode": "EV.7.6.4", + "pageNumber": "105" }, { "ruleCode": "EV.7.6.5", - "ruleContent": "If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must: a. Open the Shutdown Circuit EV.7.2.2 b. Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 The two lights must stay on until the IMD is manually reset EV.7.2.3", + "ruleContent": "If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must:", "parentRuleCode": "EV.7.6", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.6.5.a", + "ruleContent": "Open the Shutdown Circuit EV.7.2.2", + "parentRuleCode": "EV.7.6.5", + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.6.5.b", + "ruleContent": "Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 The two lights must stay on until the IMD is manually reset EV.7.2.3", + "parentRuleCode": "EV.7.6.5", + "pageNumber": "105" }, { "ruleCode": "EV.7.6.6", - "ruleContent": "The IMD Indicator Light must be: a. Color: Red b. Clearly visible to the seated driver in bright sunlight c. Clearly marked with the lettering “IMD”", + "ruleContent": "The IMD Indicator Light must be:", "parentRuleCode": "EV.7.6", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.6.6.a", + "ruleContent": "Color: Red", + "parentRuleCode": "EV.7.6.6", + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.6.6.b", + "ruleContent": "Clearly visible to the seated driver in bright sunlight", + "parentRuleCode": "EV.7.6.6", + "pageNumber": "105" + }, + { + "ruleCode": "EV.7.6.6.c", + "ruleContent": "Clearly marked with the lettering “IMD”", + "parentRuleCode": "EV.7.6.6", + "pageNumber": "105" }, { "ruleCode": "EV.7.7", "ruleContent": "Brake System Plausibility Device - BSPD", "parentRuleCode": "EV.7", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.7.1", "ruleContent": "The vehicle must have a standalone nonprogrammable circuit to check for simultaneous braking and high power output The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7)", "parentRuleCode": "EV.7.7", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.7.2", - "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: • Demand for Hard Braking EV.4.6 • Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit is delivered to the Motor(s) at the nominal battery voltage The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips", + "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: Version 1.0 31 Aug 2024 • Demand for Hard Braking EV.4.6 • Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit is delivered to the Motor(s) at the nominal battery voltage The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips", "parentRuleCode": "EV.7.7", - "pageNumber": "105", - "isFromTOC": false + "pageNumber": "105" }, { "ruleCode": "EV.7.7.3", "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in any sensor input", "parentRuleCode": "EV.7.7", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" }, { "ruleCode": "EV.7.7.4", - "ruleContent": "The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection. a. Power must not be sent to the Motor(s) of the vehicle during the test b. The test must prove the function of the complete BSPD in the vehicle, including the current sensor The suggested test would introduce a current by a separate wire from an external power supply simulating the Tractive System current while pressing the brake pedal", + "ruleContent": "The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection.", "parentRuleCode": "EV.7.7", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.7.4.a", + "ruleContent": "Power must not be sent to the Motor(s) of the vehicle during the test", + "parentRuleCode": "EV.7.7.4", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.7.4.b", + "ruleContent": "The test must prove the function of the complete BSPD in the vehicle, including the current sensor The suggested test would introduce a current by a separate wire from an external power supply simulating the Tractive System current while pressing the brake pedal", + "parentRuleCode": "EV.7.7.4", + "pageNumber": "106" }, { "ruleCode": "EV.7.8", "ruleContent": "Interlocks", "parentRuleCode": "EV.7", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" }, { "ruleCode": "EV.7.8.1", "ruleContent": "Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 )", "parentRuleCode": "EV.7.8", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" }, { "ruleCode": "EV.7.8.2", "ruleContent": "Additional Interlocks may be included in the Tractive System or components", "parentRuleCode": "EV.7.8", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" }, { "ruleCode": "EV.7.8.3", - "ruleContent": "The Interlock is a wire or connection that must: a. Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted b. Not be in the low (ground) connection to the IR coils of the Shutdown Circuit", + "ruleContent": "The Interlock is a wire or connection that must:", "parentRuleCode": "EV.7.8", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.8.3.a", + "ruleContent": "Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted", + "parentRuleCode": "EV.7.8.3", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.8.3.b", + "ruleContent": "Not be in the low (ground) connection to the IR coils of the Shutdown Circuit", + "parentRuleCode": "EV.7.8.3", + "pageNumber": "106" }, { "ruleCode": "EV.7.8.4", - "ruleContent": "Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive System wiring or components when the Interlock circuit is: a. In the same wiring harness as Tractive System wiring b. Part of a Tractive System Connector EV.5.9 c. Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the connection to a Tractive System connector", + "ruleContent": "Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive System wiring or components when the Interlock circuit is:", "parentRuleCode": "EV.7.8", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.8.4.a", + "ruleContent": "In the same wiring harness as Tractive System wiring", + "parentRuleCode": "EV.7.8.4", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.8.4.b", + "ruleContent": "Part of a Tractive System Connector EV.5.9", + "parentRuleCode": "EV.7.8.4", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.8.4.c", + "ruleContent": "Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the connection to a Tractive System connector", + "parentRuleCode": "EV.7.8.4", + "pageNumber": "106" }, { "ruleCode": "EV.7.9", "ruleContent": "Master Switches", "parentRuleCode": "EV.7", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" }, { "ruleCode": "EV.7.9.1", - "ruleContent": "Each vehicle must have two Master Switches that must: a. Meet T.9.3 for Configuration and Location b. Be direct acting, not act through a relay or logic", + "ruleContent": "Each vehicle must have two Master Switches that must:", "parentRuleCode": "EV.7.9", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.1.a", + "ruleContent": "Meet T.9.3 for Configuration and Location", + "parentRuleCode": "EV.7.9.1", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.1.b", + "ruleContent": "Be direct acting, not act through a relay or logic", + "parentRuleCode": "EV.7.9.1", + "pageNumber": "106" }, { "ruleCode": "EV.7.9.2", - "ruleContent": "The Grounded Low Voltage Master Switch (GLVMS) must: a. Completely stop all power to the GLV System EV.4.4 b. Be in the center of a completely red circular area of > 50 mm in diameter c. Be labeled “LV”", + "ruleContent": "The Grounded Low Voltage Master Switch (GLVMS) must:", "parentRuleCode": "EV.7.9", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.2.a", + "ruleContent": "Completely stop all power to the GLV System EV.4.4", + "parentRuleCode": "EV.7.9.2", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.2.b", + "ruleContent": "Be in the center of a completely red circular area of > 50 mm in diameter", + "parentRuleCode": "EV.7.9.2", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.2.c", + "ruleContent": "Be labeled “LV”", + "parentRuleCode": "EV.7.9.2", + "pageNumber": "106" }, { "ruleCode": "EV.7.9.3", - "ruleContent": "The Tractive System Master Switch (TSMS) must: a. Open the Shutdown Circuit in the OFF position EV.7.2.2 b. Be the last switch before the IRs except for Precharge circuitry and Interlocks. c. Be in the center of a completely orange circular area of > 50 mm in diameter d. Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background). e. Be fitted with a \"lockout/tagout\" capability in the OFF position EV.11.3.1", + "ruleContent": "The Tractive System Master Switch (TSMS) must:", "parentRuleCode": "EV.7.9", - "pageNumber": "106", - "isFromTOC": false + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.3.a", + "ruleContent": "Open the Shutdown Circuit in the OFF position EV.7.2.2", + "parentRuleCode": "EV.7.9.3", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.3.b", + "ruleContent": "Be the last switch before the IRs except for Precharge circuitry and Interlocks.", + "parentRuleCode": "EV.7.9.3", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.3.c", + "ruleContent": "Be in the center of a completely orange circular area of > 50 mm in diameter", + "parentRuleCode": "EV.7.9.3", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.3.d", + "ruleContent": "Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background).", + "parentRuleCode": "EV.7.9.3", + "pageNumber": "106" + }, + { + "ruleCode": "EV.7.9.3.e", + "ruleContent": "Be fitted with a \"lockout/tagout\" capability in the OFF position EV.11.3.1 Version 1.0 31 Aug 2024", + "parentRuleCode": "EV.7.9.3", + "pageNumber": "106" }, { "ruleCode": "EV.7.10", "ruleContent": "Shutdown Buttons", "parentRuleCode": "EV.7", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.7.10.1", "ruleContent": "Three Shutdown Buttons must be installed on the vehicle", "parentRuleCode": "EV.7.10", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.7.10.2", - "ruleContent": "Each Shutdown Button must: a. Be a push-pull or push-rotate emergency stop switch b. Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position c. Hold when operated to the OFF position d. Let the Shutdown Circuit Close when operated to the ON position", + "ruleContent": "Each Shutdown Button must:", "parentRuleCode": "EV.7.10", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.2.a", + "ruleContent": "Be a push-pull or push-rotate emergency stop switch", + "parentRuleCode": "EV.7.10.2", + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.2.b", + "ruleContent": "Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position", + "parentRuleCode": "EV.7.10.2", + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.2.c", + "ruleContent": "Hold when operated to the OFF position", + "parentRuleCode": "EV.7.10.2", + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.2.d", + "ruleContent": "Let the Shutdown Circuit Close when operated to the ON position", + "parentRuleCode": "EV.7.10.2", + "pageNumber": "107" }, { "ruleCode": "EV.7.10.3", - "ruleContent": "One Shutdown Button must be on each side of the vehicle which: a. Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop Bracing F.5.9 b. Has a diameter of 40 mm minimum c. Must not be easily removable or mounted onto removable body work", + "ruleContent": "One Shutdown Button must be on each side of the vehicle which:", "parentRuleCode": "EV.7.10", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.3.a", + "ruleContent": "Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop Bracing F.5.9", + "parentRuleCode": "EV.7.10.3", + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.3.b", + "ruleContent": "Has a diameter of 40 mm minimum", + "parentRuleCode": "EV.7.10.3", + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.3.c", + "ruleContent": "Must not be easily removable or mounted onto removable body work", + "parentRuleCode": "EV.7.10.3", + "pageNumber": "107" }, { "ruleCode": "EV.7.10.4", - "ruleContent": "One Shutdown Button must be mounted in the cockpit which: a. Is located in easy reach of the belted in driver, adjacent to the steering wheel, and unobstructed by the steering wheel or any other part of the vehicle b. Has diameter of 24 mm minimum", + "ruleContent": "One Shutdown Button must be mounted in the cockpit which:", "parentRuleCode": "EV.7.10", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.4.a", + "ruleContent": "Is located in easy reach of the belted in driver, adjacent to the steering wheel, and unobstructed by the steering wheel or any other part of the vehicle", + "parentRuleCode": "EV.7.10.4", + "pageNumber": "107" + }, + { + "ruleCode": "EV.7.10.4.b", + "ruleContent": "Has diameter of 24 mm minimum", + "parentRuleCode": "EV.7.10.4", + "pageNumber": "107" }, { "ruleCode": "EV.7.10.5", - "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near each Shutdown Button.", + "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near each Shutdown Button.", "parentRuleCode": "EV.7.10", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8", "ruleContent": "CHARGER REQUIREMENTS", "parentRuleCode": "EV", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.1", "ruleContent": "Charger Requirements", "parentRuleCode": "EV.8", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.1.1", - "ruleContent": "All features and functions of the Charger and Charging Shutdown Circuit must be demonstrated at Electrical Technical Inspection. IN.4.1", + "ruleContent": "All features and functions of the Charger and Charging Shutdown Circuit must be demonstrated at Electrical Technical Inspection. IN.4.1", "parentRuleCode": "EV.8.1", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.1.2", - "ruleContent": "Chargers will be sealed after approval. IN.4.7.1", + "ruleContent": "Chargers will be sealed after approval. IN.4.7.1", "parentRuleCode": "EV.8.1", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.2", "ruleContent": "Charger Features", "parentRuleCode": "EV.8", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.2.1", "ruleContent": "The Charger must be galvanically isolated (AC) input to (DC) output.", "parentRuleCode": "EV.8.2", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.2.2", "ruleContent": "If the Charger housing is conductive it must be connected to the earth ground of the AC input.", "parentRuleCode": "EV.8.2", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.2.3", "ruleContent": "All connections of the Charger(s) must be isolated and covered.", "parentRuleCode": "EV.8.2", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.2.4", "ruleContent": "The Charger connector(s) must incorporate a feature to let the connector become live only when correctly connected to the Accumulator.", "parentRuleCode": "EV.8.2", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.2.5", "ruleContent": "High Voltage charging leads must be orange", "parentRuleCode": "EV.8.2", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.2.6", "ruleContent": "The Charger must have two TSMPs installed, see EV.5.8.2", "parentRuleCode": "EV.8.2", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" }, { "ruleCode": "EV.8.2.7", - "ruleContent": "The Charger must include a Charger Shutdown Button which must: a. Be a push-pull or push-rotate emergency stop switch b. Have a minimum diameter of 25 mm c. Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position d. Hold when operated to the OFF position e. Be labelled with the international electrical symbol (a red spark on a white edged blue triangle)", + "ruleContent": "The Charger must include a Charger Shutdown Button which must:", "parentRuleCode": "EV.8.2", - "pageNumber": "107", - "isFromTOC": false + "pageNumber": "107" + }, + { + "ruleCode": "EV.8.2.7.a", + "ruleContent": "Be a push-pull or push-rotate emergency stop switch", + "parentRuleCode": "EV.8.2.7", + "pageNumber": "107" + }, + { + "ruleCode": "EV.8.2.7.b", + "ruleContent": "Have a minimum diameter of 25 mm", + "parentRuleCode": "EV.8.2.7", + "pageNumber": "107" + }, + { + "ruleCode": "EV.8.2.7.c", + "ruleContent": "Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position", + "parentRuleCode": "EV.8.2.7", + "pageNumber": "107" + }, + { + "ruleCode": "EV.8.2.7.d", + "ruleContent": "Hold when operated to the OFF position", + "parentRuleCode": "EV.8.2.7", + "pageNumber": "107" + }, + { + "ruleCode": "EV.8.2.7.e", + "ruleContent": "Be labelled with the international electrical symbol (a red spark on a white edged blue triangle) Version 1.0 31 Aug 2024", + "parentRuleCode": "EV.8.2.7", + "pageNumber": "107" }, { "ruleCode": "EV.8.3", "ruleContent": "Charging Shutdown Circuit", "parentRuleCode": "EV.8", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.8.3.1", - "ruleContent": "The Charging Shutdown Circuit consists of: a. Charger Shutdown Button EV.8.2.7 b. Battery Management System (BMS) EV.7.3 c. Insulation Monitoring Device (IMD) EV.7.6", + "ruleContent": "The Charging Shutdown Circuit consists of:", "parentRuleCode": "EV.8.3", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.3.1.a", + "ruleContent": "Charger Shutdown Button EV.8.2.7", + "parentRuleCode": "EV.8.3.1", + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.3.1.b", + "ruleContent": "Battery Management System (BMS) EV.7.3", + "parentRuleCode": "EV.8.3.1", + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.3.1.c", + "ruleContent": "Insulation Monitoring Device (IMD) EV.7.6", + "parentRuleCode": "EV.8.3.1", + "pageNumber": "108" }, { "ruleCode": "EV.8.3.2", - "ruleContent": "The BMS and IMD parts of the Charging Shutdown Circuit must: a. Be designed as Normally Open contacts b. Have completely independent circuits to Open the Charging Shutdown Circuit. Design of the respective circuits must make sure that a failure cannot result in electrical power being fed back into the Charging Shutdown Circuit.", + "ruleContent": "The BMS and IMD parts of the Charging Shutdown Circuit must:", "parentRuleCode": "EV.8.3", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.3.2.a", + "ruleContent": "Be designed as Normally Open contacts", + "parentRuleCode": "EV.8.3.2", + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.3.2.b", + "ruleContent": "Have completely independent circuits to Open the Charging Shutdown Circuit. Design of the respective circuits must make sure that a failure cannot result in electrical power being fed back into the Charging Shutdown Circuit.", + "parentRuleCode": "EV.8.3.2", + "pageNumber": "108" }, { "ruleCode": "EV.8.4", "ruleContent": "Charging Shutdown Circuit Operation", "parentRuleCode": "EV.8", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.8.4.1", - "ruleContent": "When Charging, the BMS and IMD must: a. Monitor the Accumulator b. Open the Charging Shutdown Circuit if a fault is detected", + "ruleContent": "When Charging, the BMS and IMD must:", "parentRuleCode": "EV.8.4", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.4.1.a", + "ruleContent": "Monitor the Accumulator", + "parentRuleCode": "EV.8.4.1", + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.4.1.b", + "ruleContent": "Open the Charging Shutdown Circuit if a fault is detected", + "parentRuleCode": "EV.8.4.1", + "pageNumber": "108" }, { "ruleCode": "EV.8.4.2", - "ruleContent": "When the Charging Shutdown Circuit Opens: a. All current flow to the Accumulator must stop immediately b. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less c. The Charger must be turned off d. The Charger must stay disabled until manually reset", + "ruleContent": "When the Charging Shutdown Circuit Opens:", "parentRuleCode": "EV.8.4", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.4.2.a", + "ruleContent": "All current flow to the Accumulator must stop immediately", + "parentRuleCode": "EV.8.4.2", + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.4.2.b", + "ruleContent": "The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less", + "parentRuleCode": "EV.8.4.2", + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.4.2.c", + "ruleContent": "The Charger must be turned off", + "parentRuleCode": "EV.8.4.2", + "pageNumber": "108" + }, + { + "ruleCode": "EV.8.4.2.d", + "ruleContent": "The Charger must stay disabled until manually reset", + "parentRuleCode": "EV.8.4.2", + "pageNumber": "108" }, { "ruleCode": "EV.9", "ruleContent": "VEHICLE OPERATIONS", "parentRuleCode": "EV", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.9.1", "ruleContent": "Activation Requirement The driver must complete the Activation Sequence without external assistance after the Master Switches EV.7.9 are ON", "parentRuleCode": "EV.9", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.9.2", - "ruleContent": "Activation Sequence The vehicle systems must energize in this sequence: a. Low Voltage (GLV) System EV.9.3 b. Tractive System Active EV.9.4 c. Ready to Drive EV.9.5", + "ruleContent": "Activation Sequence The vehicle systems must energize in this sequence:", "parentRuleCode": "EV.9", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" + }, + { + "ruleCode": "EV.9.2.a", + "ruleContent": "Low Voltage (GLV) System EV.9.3", + "parentRuleCode": "EV.9.2", + "pageNumber": "108" + }, + { + "ruleCode": "EV.9.2.b", + "ruleContent": "Tractive System Active EV.9.4", + "parentRuleCode": "EV.9.2", + "pageNumber": "108" + }, + { + "ruleCode": "EV.9.2.c", + "ruleContent": "Ready to Drive EV.9.5", + "parentRuleCode": "EV.9.2", + "pageNumber": "108" }, { "ruleCode": "EV.9.3", "ruleContent": "Low Voltage (GLV) System The Shutdown Circuit may be Closed when or after the GLV System is energized", "parentRuleCode": "EV.9", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.9.4", "ruleContent": "Tractive System Active", "parentRuleCode": "EV.9", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.9.4.1", "ruleContent": "Definition – High Voltage is present outside of the Accumulator Container", "parentRuleCode": "EV.9.4", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.9.4.2", "ruleContent": "Tractive System Active must not be possible until the two: • GLV System is Energized • Shutdown Circuit is Closed", "parentRuleCode": "EV.9.4", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.9.5", "ruleContent": "Ready to Drive", "parentRuleCode": "EV.9", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.9.5.1", - "ruleContent": "Definition – the Motor(s) will respond to the input of the APPS", + "ruleContent": "Definition – the Motor(s) will respond to the input of the APPS Version 1.0 31 Aug 2024", "parentRuleCode": "EV.9.5", - "pageNumber": "108", - "isFromTOC": false + "pageNumber": "108" }, { "ruleCode": "EV.9.5.2", - "ruleContent": "Ready to Drive must not be possible until the three at the same time: • Tractive System Active EV.9.4 • The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 • The driver does a manual action to start Ready to Drive Such as pressing a specific button in the cockpit", + "ruleContent": "Ready to Drive must not be possible until the three at the same time: • Tractive System Active EV.9.4 • The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 • The driver does a manual action to start Ready to Drive Such as pressing a specific button in the cockpit", "parentRuleCode": "EV.9.5", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.9.6", "ruleContent": "Ready to Drive Sound", "parentRuleCode": "EV.9", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.9.6.1", "ruleContent": "The vehicle must make a characteristic sound when it is Ready to Drive", "parentRuleCode": "EV.9.6", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.9.6.2", - "ruleContent": "The Ready to Drive Sound must be: a. Sounded continuously for minimum 1 second and maximum 3 seconds b. A minimum sound level of 80 dBA, fast weighting IN.4.6 c. Easily recognizable. No animal voices, song parts or sounds that could be interpreted as offensive will be accepted", + "ruleContent": "The Ready to Drive Sound must be:", "parentRuleCode": "EV.9.6", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" + }, + { + "ruleCode": "EV.9.6.2.a", + "ruleContent": "Sounded continuously for minimum 1 second and maximum 3 seconds", + "parentRuleCode": "EV.9.6.2", + "pageNumber": "109" + }, + { + "ruleCode": "EV.9.6.2.b", + "ruleContent": "A minimum sound level of 80 dBA, fast weighting IN.4.6", + "parentRuleCode": "EV.9.6.2", + "pageNumber": "109" + }, + { + "ruleCode": "EV.9.6.2.c", + "ruleContent": "Easily recognizable. No animal voices, song parts or sounds that could be interpreted as offensive will be accepted", + "parentRuleCode": "EV.9.6.2", + "pageNumber": "109" }, { "ruleCode": "EV.9.6.3", "ruleContent": "The vehicle must not make other sounds similar to the Ready to Drive Sound.", "parentRuleCode": "EV.9.6", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.10", "ruleContent": "EVENT SITE ACTIVITIES", "parentRuleCode": "EV", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.10.1", "ruleContent": "Onsite Registration", "parentRuleCode": "EV.10", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.10.1.1", "ruleContent": "The Accumulator must be onsite at the time the team registers to be eligible for Accumulator Technical Inspection and Dynamic Events", "parentRuleCode": "EV.10.1", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.10.1.2", - "ruleContent": "Teams who register without the Accumulator: a. Must not bring their Accumulator onsite for the duration of the competition b. May participate in Technical Inspection and Static Events", + "ruleContent": "Teams who register without the Accumulator:", "parentRuleCode": "EV.10.1", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" + }, + { + "ruleCode": "EV.10.1.2.a", + "ruleContent": "Must not bring their Accumulator onsite for the duration of the competition", + "parentRuleCode": "EV.10.1.2", + "pageNumber": "109" + }, + { + "ruleCode": "EV.10.1.2.b", + "ruleContent": "May participate in Technical Inspection and Static Events", + "parentRuleCode": "EV.10.1.2", + "pageNumber": "109" }, { "ruleCode": "EV.10.2", "ruleContent": "Accumulator Removal", "parentRuleCode": "EV.10", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.10.2.1", "ruleContent": "After the team registers onsite, the Accumulator must remain on the competition site until the end of the competition, or the team withdraws and leaves the site", "parentRuleCode": "EV.10.2", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.10.2.2", "ruleContent": "Violators will be disqualified from the competition and must leave immediately", "parentRuleCode": "EV.10.2", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.11", "ruleContent": "WORK PRACTICES", "parentRuleCode": "EV", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.11.1", "ruleContent": "Personnel", "parentRuleCode": "EV.11", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.11.1.1", - "ruleContent": "The Electrical System Officer (ESO): AD.5.2 a. Is the only person on the team that may declare the vehicle electrically safe to allow work on any system b. Must accompany the vehicle when operated or moved at the competition site c. Must be immediately available by phone at all times during the event", + "ruleContent": "The Electrical System Officer (ESO): AD.5.2", "parentRuleCode": "EV.11.1", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" + }, + { + "ruleCode": "EV.11.1.1.a", + "ruleContent": "Is the only person on the team that may declare the vehicle electrically safe to allow work on any system", + "parentRuleCode": "EV.11.1.1", + "pageNumber": "109" + }, + { + "ruleCode": "EV.11.1.1.b", + "ruleContent": "Must accompany the vehicle when operated or moved at the competition site", + "parentRuleCode": "EV.11.1.1", + "pageNumber": "109" + }, + { + "ruleCode": "EV.11.1.1.c", + "ruleContent": "Must be immediately available by phone at all times during the event", + "parentRuleCode": "EV.11.1.1", + "pageNumber": "109" }, { "ruleCode": "EV.11.2", "ruleContent": "Maintenance", "parentRuleCode": "EV.11", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.11.2.1", - "ruleContent": "All participating team members must wear safety glasses with side shields at any time when: a. Parts of the Tractive System are exposed while energized b. Work is done on the Accumulators", + "ruleContent": "All participating team members must wear safety glasses with side shields at any time when:", "parentRuleCode": "EV.11.2", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" + }, + { + "ruleCode": "EV.11.2.1.a", + "ruleContent": "Parts of the Tractive System are exposed while energized", + "parentRuleCode": "EV.11.2.1", + "pageNumber": "109" + }, + { + "ruleCode": "EV.11.2.1.b", + "ruleContent": "Work is done on the Accumulators", + "parentRuleCode": "EV.11.2.1", + "pageNumber": "109" }, { "ruleCode": "EV.11.2.2", - "ruleContent": "Appropriate insulated tools must be used when working on the Accumulator or Tractive System", + "ruleContent": "Appropriate insulated tools must be used when working on the Accumulator or Tractive System Version 1.0 31 Aug 2024", "parentRuleCode": "EV.11.2", - "pageNumber": "109", - "isFromTOC": false + "pageNumber": "109" }, { "ruleCode": "EV.11.3", "ruleContent": "Lockout", "parentRuleCode": "EV.11", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.3.1", "ruleContent": "The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle.", "parentRuleCode": "EV.11.3", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.3.2", - "ruleContent": "The MSD EV.5.5 must be disconnected when vehicles are: a. Moved around the competition site b. Participating in Static Events", + "ruleContent": "The MSD EV.5.5 must be disconnected when vehicles are:", "parentRuleCode": "EV.11.3", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.3.2.a", + "ruleContent": "Moved around the competition site", + "parentRuleCode": "EV.11.3.2", + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.3.2.b", + "ruleContent": "Participating in Static Events", + "parentRuleCode": "EV.11.3.2", + "pageNumber": "110" }, { "ruleCode": "EV.11.4", "ruleContent": "Accumulator", "parentRuleCode": "EV.11", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.4.1", - "ruleContent": "These work activities at competition are allowed only in the designated area and during Electrical Technical Inspection IN.4 See EV.5.3.3 a. Opening Accumulator Containers b. Any work on Accumulators, cells, or Segments c. Energized electrical work", + "ruleContent": "These work activities at competition are allowed only in the designated area and during Electrical Technical Inspection IN.4 See EV.5.3.3", "parentRuleCode": "EV.11.4", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.4.1.a", + "ruleContent": "Opening Accumulator Containers", + "parentRuleCode": "EV.11.4.1", + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.4.1.b", + "ruleContent": "Any work on Accumulators, cells, or Segments", + "parentRuleCode": "EV.11.4.1", + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.4.1.c", + "ruleContent": "Energized electrical work", + "parentRuleCode": "EV.11.4.1", + "pageNumber": "110" }, { "ruleCode": "EV.11.4.2", - "ruleContent": "Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site inside one of the two: a. Completely closed Accumulator Container EV.4.3 See EV.4.10.2 b. Segment/Cell Transport Container EV.11.4.3", + "ruleContent": "Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site inside one of the two:", "parentRuleCode": "EV.11.4", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.4.2.a", + "ruleContent": "Completely closed Accumulator Container EV.4.3 See EV.4.10.2", + "parentRuleCode": "EV.11.4.2", + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.4.2.b", + "ruleContent": "Segment/Cell Transport Container EV.11.4.3", + "parentRuleCode": "EV.11.4.2", + "pageNumber": "110" }, { "ruleCode": "EV.11.4.3", - "ruleContent": "The Segment/Cell Transport Container(s) must be: a. Electrically insulated b. Protected from shock hazards and arc flash", + "ruleContent": "The Segment/Cell Transport Container(s) must be:", "parentRuleCode": "EV.11.4", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.4.3.a", + "ruleContent": "Electrically insulated", + "parentRuleCode": "EV.11.4.3", + "pageNumber": "110" + }, + { + "ruleCode": "EV.11.4.3.b", + "ruleContent": "Protected from shock hazards and arc flash", + "parentRuleCode": "EV.11.4.3", + "pageNumber": "110" }, { "ruleCode": "EV.11.4.4", "ruleContent": "Segments/Cells inside the Transport Container must agree with the voltage and energy limits of EV.5.1.2", "parentRuleCode": "EV.11.4", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.5", "ruleContent": "Charging", "parentRuleCode": "EV.11", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.5.1", "ruleContent": "Accumulators must be removed from the vehicle inside the Accumulator Container and put on the Accumulator Container Hand Cart EV.4.10 for Charging", "parentRuleCode": "EV.11.5", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.5.2", "ruleContent": "Accumulator Charging must occur only inside the designated area", "parentRuleCode": "EV.11.5", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.5.3", "ruleContent": "A team member(s) who has knowledge of the Charging process must stay with the Accumulator(s) during Charging", "parentRuleCode": "EV.11.5", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.5.4", "ruleContent": "Each Accumulator Container(s) must have a label with this data during Charging: • Team Name • Electrical System Officer phone number(s)", "parentRuleCode": "EV.11.5", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.11.5.5", "ruleContent": "Additional site specific rules or policies may apply", "parentRuleCode": "EV.11.5", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.12", "ruleContent": "RED CAR CONDITION", "parentRuleCode": "EV", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" }, { "ruleCode": "EV.12.1", - "ruleContent": "Definition A vehicle will be a Red Car if any of the following: a. Actual or possible damage to the vehicle affecting the Tractive System b. Vehicle fault indication (EV.5.11 or equivalent) c. Other conditions, at the discretion of the officials", + "ruleContent": "Definition A vehicle will be a Red Car if any of the following:", "parentRuleCode": "EV.12", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" + }, + { + "ruleCode": "EV.12.1.a", + "ruleContent": "Actual or possible damage to the vehicle affecting the Tractive System", + "parentRuleCode": "EV.12.1", + "pageNumber": "110" + }, + { + "ruleCode": "EV.12.1.b", + "ruleContent": "Vehicle fault indication (EV.5.11 or equivalent)", + "parentRuleCode": "EV.12.1", + "pageNumber": "110" + }, + { + "ruleCode": "EV.12.1.c", + "ruleContent": "Other conditions, at the discretion of the officials", + "parentRuleCode": "EV.12.1", + "pageNumber": "110" }, { "ruleCode": "EV.12.2", - "ruleContent": "Actions a. Isolate the vehicle b. No contact with the vehicle unless the officials give permission Contact with the vehicle may require trained personnel with proper Personal Protective Equipment c. Call out designated Red Car responders", + "ruleContent": "Actions", "parentRuleCode": "EV.12", - "pageNumber": "110", - "isFromTOC": false + "pageNumber": "110" + }, + { + "ruleCode": "EV.12.2.a", + "ruleContent": "Isolate the vehicle Version 1.0 31 Aug 2024", + "parentRuleCode": "EV.12.2", + "pageNumber": "110" + }, + { + "ruleCode": "EV.12.2.b", + "ruleContent": "No contact with the vehicle unless the officials give permission Contact with the vehicle may require trained personnel with proper Personal Protective Equipment", + "parentRuleCode": "EV.12.2", + "pageNumber": "110" + }, + { + "ruleCode": "EV.12.2.c", + "ruleContent": "Call out designated Red Car responders Version 1.0 31 Aug 2024", + "parentRuleCode": "EV.12.2", + "pageNumber": "110" }, { "ruleCode": "IN", "ruleContent": "TECHNICAL INSPECTION The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules.", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.1", "ruleContent": "INSPECTION REQUIREMENTS", "parentRuleCode": "IN", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.1.1", "ruleContent": "Inspection Required Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any Dynamic event.", "parentRuleCode": "IN.1", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.1.2", "ruleContent": "Technical Inspection Authority", "parentRuleCode": "IN.1", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.1.2.1", "ruleContent": "The exact procedures and instruments used for inspection and testing are entirely at the discretion of the Chief Technical Inspector(s).", "parentRuleCode": "IN.1.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.1.2.2", "ruleContent": "Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance are final.", "parentRuleCode": "IN.1.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.1.3", "ruleContent": "Team Responsibility Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE Rules before Technical Inspection.", "parentRuleCode": "IN.1", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.1.4", - "ruleContent": "Reinspection Officials may Reinspect any vehicle at any time during the competition IN.15", + "ruleContent": "Reinspection Officials may Reinspect any vehicle at any time during the competition IN.15", "parentRuleCode": "IN.1", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2", "ruleContent": "INSPECTION CONDUCT", "parentRuleCode": "IN", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.1", "ruleContent": "Vehicle Condition", "parentRuleCode": "IN.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.1.1", "ruleContent": "Vehicles must be presented for Technical Inspection in finished condition, fully assembled, complete and ready to run.", "parentRuleCode": "IN.2.1", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.1.2", "ruleContent": "Technical inspectors will not inspect any vehicle presented for inspection in an unfinished state.", "parentRuleCode": "IN.2.1", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.2", "ruleContent": "Measurement", "parentRuleCode": "IN.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.2.1", "ruleContent": "Allowable dimensions are absolute, and do not have any tolerance unless specifically stated", "parentRuleCode": "IN.2.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.2.2", "ruleContent": "Measurement tools and methods may vary", "parentRuleCode": "IN.2.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.2.3", "ruleContent": "No allowance is given for measurement accuracy or error", "parentRuleCode": "IN.2.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.3", "ruleContent": "Visible Access All items on the Technical Inspection Form must be clearly visible to the technical inspectors without using instruments such as endoscopes or mirrors. Methods to provide visible access include but are not limited to removable body panels, access panels, and other components", "parentRuleCode": "IN.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.4", "ruleContent": "Inspection Items", "parentRuleCode": "IN.2", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.4.1", "ruleContent": "Technical Inspection will examine all items included on the Technical Inspection Form to make sure the vehicle and other equipment obeys the Rules.", "parentRuleCode": "IN.2.4", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.4.2", - "ruleContent": "Technical Inspectors may examine any other items at their discretion", + "ruleContent": "Technical Inspectors may examine any other items at their discretion Version 1.0 31 Aug 2024", "parentRuleCode": "IN.2.4", - "pageNumber": "112", - "isFromTOC": false + "pageNumber": "112" }, { "ruleCode": "IN.2.5", "ruleContent": "Correction If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team must: • Correct the problem • Continue Inspection or have the vehicle Reinspected", "parentRuleCode": "IN.2", - "pageNumber": "113", - "isFromTOC": false + "pageNumber": "113" }, { "ruleCode": "IN.2.6", "ruleContent": "Marked Items", "parentRuleCode": "IN.2", - "pageNumber": "113", - "isFromTOC": false + "pageNumber": "113" }, { "ruleCode": "IN.2.6.1", "ruleContent": "Officials may mark, seal, or designate items or areas which have been inspected to document the inspection and reduce the chance of tampering", "parentRuleCode": "IN.2.6", - "pageNumber": "113", - "isFromTOC": false + "pageNumber": "113" }, { "ruleCode": "IN.2.6.2", - "ruleContent": "Damaged or lost marks or seals require Reinspection IN.15", + "ruleContent": "Damaged or lost marks or seals require Reinspection IN.15", "parentRuleCode": "IN.2.6", - "pageNumber": "113", - "isFromTOC": false + "pageNumber": "113" }, { "ruleCode": "IN.3", - "ruleContent": "INITIAL INSPECTION Bring these to Initial Inspection: • Technical Inspection Form • All Driver Equipment per VE.3 to be used by each driver • Fire Extinguishers (for paddock and vehicle) VE.2.3 • Wet Tires V.4.3.2", + "ruleContent": "INITIAL INSPECTION Bring these to Initial Inspection: • Technical Inspection Form • All Driver Equipment per VE.3 to be used by each driver • Fire Extinguishers (for paddock and vehicle) VE.2.3 • Wet Tires V.4.3.2", "parentRuleCode": "IN", - "pageNumber": "113", - "isFromTOC": false + "pageNumber": "113" }, { "ruleCode": "IN.4", "ruleContent": "ELECTRICAL TECHNICAL INSPECTION (EV ONLY)", "parentRuleCode": "IN", - "pageNumber": "113", - "isFromTOC": false + "pageNumber": "113" }, { "ruleCode": "IN.4.1", - "ruleContent": "Inspection Items Bring these to Electrical Technical Inspection: • Charger(s) for the Accumulator(s) EV.8.1 • Accumulator Container Hand Cart EV.4.10 • Spare Accumulator(s) (if applicable) EV.5.1.4 • Electrical Systems Form (ESF) and Component Data Sheets EV.2 • Copies of any submitted Rules Questions with the received answer GR.7 These basic tools in good condition: • Insulated cable shears • Insulated screw drivers • Multimeter with protected probe tips • Insulated tools, if screwed connections are used in the Tractive System • Face Shield • HV insulating gloves which are 12 months or less from their test date • Two HV insulating blankets of minimum 0.83 m² each • Safety glasses with side shields for all team members that might work on the Tractive System or Accumulator", + "ruleContent": "Inspection Items Bring these to Electrical Technical Inspection: • Charger(s) for the Accumulator(s) EV.8.1 • Accumulator Container Hand Cart EV.4.10 • Spare Accumulator(s) (if applicable) EV.5.1.4 • Electrical Systems Form (ESF) and Component Data Sheets EV.2 • Copies of any submitted Rules Questions with the received answer GR.7 These basic tools in good condition: • Insulated cable shears • Insulated screw drivers • Multimeter with protected probe tips • Insulated tools, if screwed connections are used in the Tractive System • Face Shield • HV insulating gloves which are 12 months or less from their test date • Two HV insulating blankets of minimum 0.83 m² each • Safety glasses with side shields for all team members that might work on the Tractive System or Accumulator", "parentRuleCode": "IN.4", - "pageNumber": "113", - "isFromTOC": false + "pageNumber": "113" }, { "ruleCode": "IN.4.2", - "ruleContent": "Accumulator Inspection The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected during Electrical Technical Inspection, or separately from the rest of Electrical Technical Inspection.", + "ruleContent": "Accumulator Inspection The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected during Electrical Technical Inspection, or separately from the rest of Electrical Technical Inspection. Version 1.0 31 Aug 2024", "parentRuleCode": "IN.4", - "pageNumber": "113", - "isFromTOC": false + "pageNumber": "113" }, { "ruleCode": "IN.4.3", "ruleContent": "Accumulator Access", "parentRuleCode": "IN.4", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.3.1", "ruleContent": "If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, provide detailed pictures of the internals taken during assembly", "parentRuleCode": "IN.4.3", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.3.2", "ruleContent": "Tech inspectors may require access to check any Accumulator(s) for rules compliance", "parentRuleCode": "IN.4.3", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.4", "ruleContent": "Insulation Monitoring Device Test", "parentRuleCode": "IN.4", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.4.1", "ruleContent": "The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the Tractive System is active", "parentRuleCode": "IN.4.4", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.4.2", "ruleContent": "The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault resistance of 50% below the response value corresponding to 250 Ohm / Volt", "parentRuleCode": "IN.4.4", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.5", "ruleContent": "Insulation Measurement Test", "parentRuleCode": "IN.4", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.5.1", "ruleContent": "The insulation resistance between the Tractive System and GLV System Ground will be measured.", "parentRuleCode": "IN.4.5", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.5.2", "ruleContent": "The available measurement voltages are 250 V and 500 V. All vehicles with a maximum nominal operation voltage below 500 V will be measured with the next available voltage level. All teams with a system voltage of 500 V or more will be measured with 500 V.", "parentRuleCode": "IN.4.5", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.5.3", "ruleContent": "To pass the Insulation Measurement Test the measured insulation resistance must be minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage.", "parentRuleCode": "IN.4.5", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.6", "ruleContent": "Ready to Drive Sound The sound level will be measured with a free field microphone placed free from obstructions in a radius of 2 m around the vehicle against the criteria in EV.9.6", "parentRuleCode": "IN.4", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.7", "ruleContent": "Electrical Inspection Completion", "parentRuleCode": "IN.4", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.7.1", - "ruleContent": "All or portions of the Tractive System, Charger and other components may be sealed IN.2.6", + "ruleContent": "All or portions of the Tractive System, Charger and other components may be sealed IN.2.6", "parentRuleCode": "IN.4.7", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.7.2", "ruleContent": "Additional monitoring to verify conformance to rules may be installed. Refer to the Event Website for further information.", "parentRuleCode": "IN.4.7", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.7.3", - "ruleContent": "A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle may be Tractive System Active EV.9.4", + "ruleContent": "A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle may be Tractive System Active EV.9.4", "parentRuleCode": "IN.4.7", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.4.7.4", - "ruleContent": "Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection before the vehicle may attempt any further Inspections. See EV.11.3.2", + "ruleContent": "Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection before the vehicle may attempt any further Inspections. See EV.11.3.2", "parentRuleCode": "IN.4.7", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.5", "ruleContent": "DRIVER COCKPIT CHECKS The Clearance Checks and Egress Test may be done separately or in conjunction with other parts of Technical Inspection", "parentRuleCode": "IN", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.5.1", - "ruleContent": "Driver Clearance Each driver in the normal driving position is checked for the three: • Helmet clearance F.5.6.4 • Head Restraint positioning T.2.8.5 • Harness fit and adjustment T.2.5, T.2.6, T.2.7", + "ruleContent": "Driver Clearance Each driver in the normal driving position is checked for the three: • Helmet clearance F.5.6.4 • Head Restraint positioning T.2.8.5 • Harness fit and adjustment T.2.5, T.2.6, T.2.7", "parentRuleCode": "IN.5", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.5.2", "ruleContent": "Egress Test", "parentRuleCode": "IN.5", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.5.2.1", - "ruleContent": "Each driver must be able to exit to the side of the vehicle in no more than 5 seconds.", + "ruleContent": "Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. Version 1.0 31 Aug 2024", "parentRuleCode": "IN.5.2", - "pageNumber": "114", - "isFromTOC": false + "pageNumber": "114" }, { "ruleCode": "IN.5.2.2", - "ruleContent": "The Egress Test will be conducted for each driver as follows: a. The driver must wear the specified Driver Equipment VE.3.2, VE.3.3 b. Egress time begins with the driver in the fully seated position, with hands in driving position on the connected steering wheel. c. Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown Button EV.7.10.4 d. Egress time will stop when the driver has two feet on the pavement", + "ruleContent": "The Egress Test will be conducted for each driver as follows:", "parentRuleCode": "IN.5.2", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" + }, + { + "ruleCode": "IN.5.2.2.a", + "ruleContent": "The driver must wear the specified Driver Equipment VE.3.2, VE.3.3", + "parentRuleCode": "IN.5.2.2", + "pageNumber": "115" + }, + { + "ruleCode": "IN.5.2.2.b", + "ruleContent": "Egress time begins with the driver in the fully seated position, with hands in driving position on the connected steering wheel.", + "parentRuleCode": "IN.5.2.2", + "pageNumber": "115" + }, + { + "ruleCode": "IN.5.2.2.c", + "ruleContent": "Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown Button EV.7.10.4", + "parentRuleCode": "IN.5.2.2", + "pageNumber": "115" + }, + { + "ruleCode": "IN.5.2.2.d", + "ruleContent": "Egress time will stop when the driver has two feet on the pavement", + "parentRuleCode": "IN.5.2.2", + "pageNumber": "115" }, { "ruleCode": "IN.5.3", "ruleContent": "Driver Clearance and Egress Test Completion", "parentRuleCode": "IN.5", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.5.3.1", - "ruleContent": "To drive the vehicle, each team driver must: a. Meet the Driver Clearance requirements IN.5.1 b. Successfully complete the Egress Test IN.5.2", + "ruleContent": "To drive the vehicle, each team driver must:", "parentRuleCode": "IN.5.3", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" + }, + { + "ruleCode": "IN.5.3.1.a", + "ruleContent": "Meet the Driver Clearance requirements IN.5.1", + "parentRuleCode": "IN.5.3.1", + "pageNumber": "115" + }, + { + "ruleCode": "IN.5.3.1.b", + "ruleContent": "Successfully complete the Egress Test IN.5.2", + "parentRuleCode": "IN.5.3.1", + "pageNumber": "115" }, { "ruleCode": "IN.5.3.2", "ruleContent": "A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection", "parentRuleCode": "IN.5.3", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.6", "ruleContent": "DRIVER TEMPLATE INSPECTIONS The Driver Template Inspection will be conducted as part of the Mechanical Inspection", "parentRuleCode": "IN", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.6.1", "ruleContent": "Conduct The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6", "parentRuleCode": "IN.6", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.6.2", "ruleContent": "Driver Template Clearance Criteria To pass Mechanical Technical Inspection, the Driver Template must meet the clearance specified in F.5.6.4", "parentRuleCode": "IN.6", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.7", "ruleContent": "COCKPIT TEMPLATE INSPECTIONS The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection", "parentRuleCode": "IN", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.7.1", "ruleContent": "Conduct", "parentRuleCode": "IN.7", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.7.1.1", "ruleContent": "The Cockpit Opening will be checked using the template and procedure given in T.1.1", "parentRuleCode": "IN.7.1", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.7.1.2", "ruleContent": "The Internal Cross Section will be checked using the template and procedure given in T.1.2", "parentRuleCode": "IN.7.1", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.7.2", "ruleContent": "Cockpit Template Criteria To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described.", "parentRuleCode": "IN.7", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.8", "ruleContent": "MECHANICAL TECHNICAL INSPECTION", "parentRuleCode": "IN", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.8.1", - "ruleContent": "Inspection Items Bring these to Mechanical Technical Inspection: • Vehicle on Dry Tires V.4.3.1 • Technical Inspection Form • Push Bar VE.2.2 • Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 • Monocoque Laminate Test Specimens (if applicable) F.4.2 • The Impact Attenuator that was tested (if applicable) F.8.8.7 • Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c • Electronic copies of any submitted Rules Questions with the received answer GR.7", + "ruleContent": "Inspection Items Bring these to Mechanical Technical Inspection: • Vehicle on Dry Tires V.4.3.1 • Technical Inspection Form • Push Bar VE.2.2 • Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 • Monocoque Laminate Test Specimens (if applicable) F.4.2 • The Impact Attenuator that was tested (if applicable) F.8.8.7 • Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c Version 1.0 31 Aug 2024 • Electronic copies of any submitted Rules Questions with the received answer GR.7", "parentRuleCode": "IN.8", - "pageNumber": "115", - "isFromTOC": false + "pageNumber": "115" }, { "ruleCode": "IN.8.2", "ruleContent": "Aerodynamic Devices Stability and Strength", "parentRuleCode": "IN.8", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.8.2.1", "ruleContent": "Any Aerodynamic Devices may be checked by pushing on the device in any direction and at any point. This is guidance, but actual conformance will be up to technical inspectors at the respective competitions. The intent is to reduce the likelihood of wings detaching", "parentRuleCode": "IN.8.2", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.8.2.2", - "ruleContent": "If any deflection is significant, then a force of approximately 200 N may be applied. a. Loaded deflection should not be more than 25 mm b. Any permanent deflection less than 5 mm", + "ruleContent": "If any deflection is significant, then a force of approximately 200 N may be applied.", "parentRuleCode": "IN.8.2", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" + }, + { + "ruleCode": "IN.8.2.2.a", + "ruleContent": "Loaded deflection should not be more than 25 mm", + "parentRuleCode": "IN.8.2.2", + "pageNumber": "116" + }, + { + "ruleCode": "IN.8.2.2.b", + "ruleContent": "Any permanent deflection less than 5 mm", + "parentRuleCode": "IN.8.2.2", + "pageNumber": "116" }, { "ruleCode": "IN.8.2.3", "ruleContent": "If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic Devices, then officials may Black Flag the vehicle for IN.15 Reinspection.", "parentRuleCode": "IN.8.2", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.8.3", "ruleContent": "Monocoque Inspections", "parentRuleCode": "IN.8", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.8.3.1", "ruleContent": "Dimensions of the Monocoque will be confirmed F.7.1.4", "parentRuleCode": "IN.8.3", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.8.3.2", - "ruleContent": "When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide: a. Documentation that shows dimensions on the tubes b. Pictures of the dimensioned tube being included in the layup", + "ruleContent": "When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide:", "parentRuleCode": "IN.8.3", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" + }, + { + "ruleCode": "IN.8.3.2.a", + "ruleContent": "Documentation that shows dimensions on the tubes", + "parentRuleCode": "IN.8.3.2", + "pageNumber": "116" + }, + { + "ruleCode": "IN.8.3.2.b", + "ruleContent": "Pictures of the dimensioned tube being included in the layup", + "parentRuleCode": "IN.8.3.2", + "pageNumber": "116" }, { "ruleCode": "IN.8.3.3", "ruleContent": "For items which cannot be verified by an inspector, the team must provide documentation, visual and/or written, that the requirements have been met.", "parentRuleCode": "IN.8.3", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.8.3.4", "ruleContent": "A team found to be improperly presenting any evidence of the manufacturing process may be barred from competing with a monocoque.", "parentRuleCode": "IN.8.3", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.8.4", "ruleContent": "Engine Inspection (IC Only) The organizer may measure or tear down engines to confirm conformance to the rules.", "parentRuleCode": "IN.8", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.8.5", "ruleContent": "Mechanical Inspection Completion All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any further inspections.", "parentRuleCode": "IN.8", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.9", "ruleContent": "TILT TEST", "parentRuleCode": "IN", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.9.1", - "ruleContent": "Tilt Test Requirements a. The vehicle must contain the maximum amount of fluids it may carry b. The tallest driver must be seated in the normal driving position c. Tilt tests may be conducted in one, the other, or the two directions to pass d. (IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and pressure the system downstream of the High Pressure pump. See IC.6.2", + "ruleContent": "Tilt Test Requirements", "parentRuleCode": "IN.9", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" + }, + { + "ruleCode": "IN.9.1.a", + "ruleContent": "The vehicle must contain the maximum amount of fluids it may carry", + "parentRuleCode": "IN.9.1", + "pageNumber": "116" + }, + { + "ruleCode": "IN.9.1.b", + "ruleContent": "The tallest driver must be seated in the normal driving position", + "parentRuleCode": "IN.9.1", + "pageNumber": "116" + }, + { + "ruleCode": "IN.9.1.c", + "ruleContent": "Tilt tests may be conducted in one, the other, or the two directions to pass", + "parentRuleCode": "IN.9.1", + "pageNumber": "116" + }, + { + "ruleCode": "IN.9.1.d", + "ruleContent": "(IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and pressure the system downstream of the High Pressure pump. See IC.6.2", + "parentRuleCode": "IN.9.1", + "pageNumber": "116" }, { "ruleCode": "IN.9.2", "ruleContent": "Tilt Test Criteria", "parentRuleCode": "IN.9", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.9.2.1", "ruleContent": "No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal", "parentRuleCode": "IN.9.2", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.9.2.2", "ruleContent": "Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g.", "parentRuleCode": "IN.9.2", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.9.3", - "ruleContent": "Tilt Test Completion Tilt Tests must be passed before a vehicle may attempt any further inspections", + "ruleContent": "Tilt Test Completion Tilt Tests must be passed before a vehicle may attempt any further inspections Version 1.0 31 Aug 2024", "parentRuleCode": "IN.9", - "pageNumber": "116", - "isFromTOC": false + "pageNumber": "116" }, { "ruleCode": "IN.10", "ruleContent": "NOISE AND SWITCH TEST (IC ONLY)", "parentRuleCode": "IN", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.1", "ruleContent": "Sound Level Measurement", "parentRuleCode": "IN.10", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.1.1", "ruleContent": "The sound level will be measured during a stationary test, with the vehicle gearbox in neutral at the defined Test Speed", "parentRuleCode": "IN.10.1", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.1.2", - "ruleContent": "Measurements will be made with a free field microphone placed: • free from obstructions • at the Exhaust Outlet vertical level IC.7.2.2 • 0.5 m from the end of the Exhaust Outlet IC.7.2.2 • at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below)", + "ruleContent": "Measurements will be made with a free field microphone placed: • free from obstructions • at the Exhaust Outlet vertical level IC.7.2.2 • 0.5 m from the end of the Exhaust Outlet IC.7.2.2 • at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below)", "parentRuleCode": "IN.10.1", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.2", "ruleContent": "Special Configurations", "parentRuleCode": "IN.10", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.2.1", - "ruleContent": "Where the Exhaust has more than one Exhaust Outlet: a. The noise test is repeated for each outlet b. The highest sound level is used", + "ruleContent": "Where the Exhaust has more than one Exhaust Outlet:", "parentRuleCode": "IN.10.2", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.2.1.a", + "ruleContent": "The noise test is repeated for each outlet", + "parentRuleCode": "IN.10.2.1", + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.2.1.b", + "ruleContent": "The highest sound level is used", + "parentRuleCode": "IN.10.2.1", + "pageNumber": "117" }, { "ruleCode": "IN.10.2.2", "ruleContent": "Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal plane.", "parentRuleCode": "IN.10.2", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.2.3", "ruleContent": "If the exhaust has any form of active tuning or throttling device or system, the exhaust must meet all requirements with the device or system in all positions.", "parentRuleCode": "IN.10.2", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.2.4", - "ruleContent": "When the exhaust has a manually adjustable tuning device(s): a. The position of the device must be visible to the officials for the noise test b. The device must be manually operable by the officials during the noise test c. The device must not be moved or modified after the noise test is passed", + "ruleContent": "When the exhaust has a manually adjustable tuning device(s):", "parentRuleCode": "IN.10.2", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.2.4.a", + "ruleContent": "The position of the device must be visible to the officials for the noise test", + "parentRuleCode": "IN.10.2.4", + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.2.4.b", + "ruleContent": "The device must be manually operable by the officials during the noise test", + "parentRuleCode": "IN.10.2.4", + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.2.4.c", + "ruleContent": "The device must not be moved or modified after the noise test is passed", + "parentRuleCode": "IN.10.2.4", + "pageNumber": "117" }, { "ruleCode": "IN.10.3", "ruleContent": "Industrial Engine An engine which, according to the manufacturers’ specifications and without the required restrictor, is capable of producing 5 hp per 100 cc or less. Submit a Rules Question to request approval of an Industrial Engine.", "parentRuleCode": "IN.10", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.4", "ruleContent": "Test Speeds", "parentRuleCode": "IN.10", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.4.1", - "ruleContent": "Maximum Test Speed The engine speed that corresponds to an average piston speed of: a. Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min) b. Industrial Engines 731.5 m/min (2,400 ft/min) The calculated speed will be rounded to the nearest 500 rpm. Test Speeds for typical engines are published on the FSAE Online website", + "ruleContent": "Maximum Test Speed The engine speed that corresponds to an average piston speed of:", "parentRuleCode": "IN.10.4", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.4.1.a", + "ruleContent": "Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min)", + "parentRuleCode": "IN.10.4.1", + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.4.1.b", + "ruleContent": "Industrial Engines 731.5 m/min (2,400 ft/min) The calculated speed will be rounded to the nearest 500 rpm. Test Speeds for typical engines are published on the FSAE Online website", + "parentRuleCode": "IN.10.4.1", + "pageNumber": "117" }, { "ruleCode": "IN.10.4.2", - "ruleContent": "Idle Test Speed a. Determined by the vehicle’s calibrated idle speed b. If the idle speed varies then the vehicle will be tested across the range of idle speeds determined by the team", + "ruleContent": "Idle Test Speed", "parentRuleCode": "IN.10.4", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.4.2.a", + "ruleContent": "Determined by the vehicle’s calibrated idle speed", + "parentRuleCode": "IN.10.4.2", + "pageNumber": "117" + }, + { + "ruleCode": "IN.10.4.2.b", + "ruleContent": "If the idle speed varies then the vehicle will be tested across the range of idle speeds determined by the team", + "parentRuleCode": "IN.10.4.2", + "pageNumber": "117" }, { "ruleCode": "IN.10.4.3", - "ruleContent": "The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed.", + "ruleContent": "The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. Version 1.0 31 Aug 2024", "parentRuleCode": "IN.10.4", - "pageNumber": "117", - "isFromTOC": false + "pageNumber": "117" }, { "ruleCode": "IN.10.5", - "ruleContent": "Maximum Permitted Sound Level a. At idle 103 dBC, fast weighting b. At all other speeds 110 dBC, fast weighting", + "ruleContent": "Maximum Permitted Sound Level", "parentRuleCode": "IN.10", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" + }, + { + "ruleCode": "IN.10.5.a", + "ruleContent": "At idle 103 dBC, fast weighting", + "parentRuleCode": "IN.10.5", + "pageNumber": "118" + }, + { + "ruleCode": "IN.10.5.b", + "ruleContent": "At all other speeds 110 dBC, fast weighting", + "parentRuleCode": "IN.10.5", + "pageNumber": "118" }, { "ruleCode": "IN.10.6", "ruleContent": "Noise Level Retesting", "parentRuleCode": "IN.10", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.10.6.1", "ruleContent": "Noise levels may be monitored at any time", "parentRuleCode": "IN.10.6", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.10.6.2", "ruleContent": "The Noise Test may be repeated at any time", "parentRuleCode": "IN.10.6", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.10.7", "ruleContent": "Switch Function The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, and/or BOTS T.3.3 will be verified during the Noise Test", "parentRuleCode": "IN.10", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.10.8", "ruleContent": "Noise Test Completion Noise Tests must be passed before a vehicle may attempt any further inspections", "parentRuleCode": "IN.10", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.11", "ruleContent": "RAIN TEST (EV ONLY)", "parentRuleCode": "IN", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.11.1", "ruleContent": "Rain Test Requirements • Tractive System must be Active • The vehicle must not be in Ready to Drive mode (EV.7) • Any driven wheels must not touch the ground • A driver must not be seated in the vehicle", "parentRuleCode": "IN.11", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.11.2", - "ruleContent": "Rain Test Conduct The water spray will be rain like, not a direct high pressure water jet a. Spray water at the vehicle from any possible direction for 120 seconds b. Stop the water spray c. Observe the vehicle for 120 seconds", + "ruleContent": "Rain Test Conduct The water spray will be rain like, not a direct high pressure water jet", "parentRuleCode": "IN.11", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" + }, + { + "ruleCode": "IN.11.2.a", + "ruleContent": "Spray water at the vehicle from any possible direction for 120 seconds", + "parentRuleCode": "IN.11.2", + "pageNumber": "118" + }, + { + "ruleCode": "IN.11.2.b", + "ruleContent": "Stop the water spray", + "parentRuleCode": "IN.11.2", + "pageNumber": "118" + }, + { + "ruleCode": "IN.11.2.c", + "ruleContent": "Observe the vehicle for 120 seconds", + "parentRuleCode": "IN.11.2", + "pageNumber": "118" }, { "ruleCode": "IN.11.3", "ruleContent": "Rain Test Completion The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire 240 seconds duration", "parentRuleCode": "IN.11", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.12", "ruleContent": "BRAKE TEST", "parentRuleCode": "IN", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.12.1", "ruleContent": "Objective The brake system will be dynamically tested and must demonstrate the capability of locking all four wheels when stopping the vehicle in a straight line at the end of an acceleration run specified by the brake inspectors", "parentRuleCode": "IN.12", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.12.2", "ruleContent": "Brake Test Conduct (IC Only)", "parentRuleCode": "IN.12", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.12.2.1", - "ruleContent": "Brake Test procedure: a. Accelerate to speed (typically getting into 2nd gear) until reaching the designated area b. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels", + "ruleContent": "Brake Test procedure:", "parentRuleCode": "IN.12.2", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" + }, + { + "ruleCode": "IN.12.2.1.a", + "ruleContent": "Accelerate to speed (typically getting into 2nd gear) until reaching the designated area", + "parentRuleCode": "IN.12.2.1", + "pageNumber": "118" + }, + { + "ruleCode": "IN.12.2.1.b", + "ruleContent": "Apply the brakes with force sufficient to demonstrate full lockup of all four wheels", + "parentRuleCode": "IN.12.2.1", + "pageNumber": "118" }, { "ruleCode": "IN.12.2.2", - "ruleContent": "The Brake Test passes if: • All four wheels lock up • The engine stays running during the complete test", + "ruleContent": "The Brake Test passes if: • All four wheels lock up • The engine stays running during the complete test Version 1.0 31 Aug 2024", "parentRuleCode": "IN.12.2", - "pageNumber": "118", - "isFromTOC": false + "pageNumber": "118" }, { "ruleCode": "IN.12.3", "ruleContent": "Brake Test Conduct (EV Only)", "parentRuleCode": "IN.12", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.12.3.1", - "ruleContent": "Brake Test procedure: a. Accelerate to speed until reaching the designated area b. Switch off the Tractive System EV.7.10.4 c. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels", + "ruleContent": "Brake Test procedure:", "parentRuleCode": "IN.12.3", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" + }, + { + "ruleCode": "IN.12.3.1.a", + "ruleContent": "Accelerate to speed until reaching the designated area", + "parentRuleCode": "IN.12.3.1", + "pageNumber": "119" + }, + { + "ruleCode": "IN.12.3.1.b", + "ruleContent": "Switch off the Tractive System EV.7.10.4", + "parentRuleCode": "IN.12.3.1", + "pageNumber": "119" + }, + { + "ruleCode": "IN.12.3.1.c", + "ruleContent": "Apply the brakes with force sufficient to demonstrate full lockup of all four wheels", + "parentRuleCode": "IN.12.3.1", + "pageNumber": "119" }, { "ruleCode": "IN.12.3.2", "ruleContent": "The Brake Test passes if all four wheels lock while the Tractive System is shut down", "parentRuleCode": "IN.12.3", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.12.3.3", - "ruleContent": "The Tractive System Active Light may switch a short time after the vehicle has come to a complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c", + "ruleContent": "The Tractive System Active Light may switch a short time after the vehicle has come to a complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c", "parentRuleCode": "IN.12.3", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13", "ruleContent": "INSPECTION APPROVAL", "parentRuleCode": "IN", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.1", "ruleContent": "Inspection Approval", "parentRuleCode": "IN.13", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.1.1", "ruleContent": "When all parts of Technical Inspection are complete as shown on the Technical Inspection sheet, the vehicle receives Inspection Approval", "parentRuleCode": "IN.13.1", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.1.2", "ruleContent": "The completed Inspection Sticker shows the Inspection Approval", "parentRuleCode": "IN.13.1", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.1.3", "ruleContent": "The Inspection Approval is contingent on the vehicle remaining in the required condition throughout the competition.", "parentRuleCode": "IN.13.1", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.1.4", "ruleContent": "The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any time for any reason", "parentRuleCode": "IN.13.1", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.2", "ruleContent": "Inspection Sticker", "parentRuleCode": "IN.13", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.2.1", "ruleContent": "Inspection Sticker(s) are issued after completion of all or part of Technical Inspection", "parentRuleCode": "IN.13.2", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.2.2", "ruleContent": "Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently", "parentRuleCode": "IN.13.2", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.3", "ruleContent": "Inspection Validity", "parentRuleCode": "IN.13", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.3.1", "ruleContent": "Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or are required to be Reinspected.", "parentRuleCode": "IN.13.3", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.13.3.2", "ruleContent": "Inspection Approval is valid only for the duration of the specific Formula SAE competition during which the inspection is conducted.", "parentRuleCode": "IN.13.3", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.14", "ruleContent": "MODIFICATIONS AND REPAIRS", "parentRuleCode": "IN", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.14.1", "ruleContent": "Prior to Inspection Approval Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for Technical Inspection, and until the vehicle has the full Inspection Approval, the only modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the Inspection Form.", "parentRuleCode": "IN.14", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.14.2", "ruleContent": "After Inspection Approval", "parentRuleCode": "IN.14", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.14.2.1", "ruleContent": "The vehicle must maintain all required specifications (including but not limited to ride height, suspension travel, braking capacity (pad material/composition), sound level and wing location) throughout the competition.", "parentRuleCode": "IN.14.2", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.14.2.2", - "ruleContent": "Changes to fit the vehicle to different drivers are allowed. Permitted changes are: • Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly • Substitution of the Head Restraint or seat insert • Adjustment of mirrors", + "ruleContent": "Changes to fit the vehicle to different drivers are allowed. Permitted changes are: • Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly • Substitution of the Head Restraint or seat insert • Adjustment of mirrors Version 1.0 31 Aug 2024", "parentRuleCode": "IN.14.2", - "pageNumber": "119", - "isFromTOC": false + "pageNumber": "119" }, { "ruleCode": "IN.14.2.3", - "ruleContent": "Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the vehicle are: • Adjustment of belts, chains and clutches • Adjustment of brake bias • Adjustment to engine / powertrain operating parameters, including fuel mixture and ignition timing, and any software calibration changes • Adjustment of the suspension • Changing springs, sway bars and shims in the suspension • Adjustment of Tire Pressure, subject to V.4.3.4 • Adjustment of wing or wing element(s) angle, but not the location T.7.1 • Replenishment of fluids • Replacement of worn tires or brake pads. Replacement tires and brake pads must be identical in material/composition/size to those presented and approved at Technical Inspection. • Changing of wheels and tires for weather conditions D.6 • Recharging Low Voltage batteries • Recharging High Voltage Accumulators", + "ruleContent": "Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the vehicle are: • Adjustment of belts, chains and clutches • Adjustment of brake bias • Adjustment to engine / powertrain operating parameters, including fuel mixture and ignition timing, and any software calibration changes • Adjustment of the suspension • Changing springs, sway bars and shims in the suspension • Adjustment of Tire Pressure, subject to V.4.3.4 • Adjustment of wing or wing element(s) angle, but not the location T.7.1 • Replenishment of fluids • Replacement of worn tires or brake pads. Replacement tires and brake pads must be identical in material/composition/size to those presented and approved at Technical Inspection. • Changing of wheels and tires for weather conditions D.6 • Recharging Low Voltage batteries • Recharging High Voltage Accumulators", "parentRuleCode": "IN.14.2", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.14.3", - "ruleContent": "Repairs or Changes After Inspection Approval The Inspection Approval may be voided for any reason including, but not limited to: a. Damage to the vehicle IN.13.1.3 b. Changes beyond those allowed per IN.14.2 above", + "ruleContent": "Repairs or Changes After Inspection Approval The Inspection Approval may be voided for any reason including, but not limited to:", "parentRuleCode": "IN.14", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" + }, + { + "ruleCode": "IN.14.3.a", + "ruleContent": "Damage to the vehicle IN.13.1.3", + "parentRuleCode": "IN.14.3", + "pageNumber": "120" + }, + { + "ruleCode": "IN.14.3.b", + "ruleContent": "Changes beyond those allowed per IN.14.2 above", + "parentRuleCode": "IN.14.3", + "pageNumber": "120" }, { "ruleCode": "IN.15", "ruleContent": "REINSPECTION", "parentRuleCode": "IN", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.1", "ruleContent": "Requirement", "parentRuleCode": "IN.15", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.1.1", "ruleContent": "Any vehicle may be Reinspected at any time for any reason", "parentRuleCode": "IN.15.1", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.1.2", "ruleContent": "Reinspection must be completed to restore Inspection Approval, if voided", "parentRuleCode": "IN.15.1", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.2", "ruleContent": "Conduct", "parentRuleCode": "IN.15", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.2.1", "ruleContent": "The Technical Inspection process may be repeated in entirety or in part", "parentRuleCode": "IN.15.2", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.2.2", "ruleContent": "Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector", "parentRuleCode": "IN.15.2", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.3", "ruleContent": "Result", "parentRuleCode": "IN.15", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.3.1", - "ruleContent": "With Voided Inspection Approval Successful completion of Reinspection will restore Inspection Approval IN.13.1", + "ruleContent": "With Voided Inspection Approval Successful completion of Reinspection will restore Inspection Approval IN.13.1", "parentRuleCode": "IN.15.3", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" }, { "ruleCode": "IN.15.3.2", - "ruleContent": "During Dynamic Events a. Issues found during Reinspection will void Inspection Approval b. Penalties may be applied to the Dynamic Events the vehicle has competed in Applied penalties may include additional time added to event(s), loss of one or more fastest runs, up to DQ, subject to official discretion.", + "ruleContent": "During Dynamic Events", "parentRuleCode": "IN.15.3", - "pageNumber": "120", - "isFromTOC": false + "pageNumber": "120" + }, + { + "ruleCode": "IN.15.3.2.a", + "ruleContent": "Issues found during Reinspection will void Inspection Approval", + "parentRuleCode": "IN.15.3.2", + "pageNumber": "120" + }, + { + "ruleCode": "IN.15.3.2.b", + "ruleContent": "Penalties may be applied to the Dynamic Events the vehicle has competed in Applied penalties may include additional time added to event(s), loss of one or more fastest runs, up to DQ, subject to official discretion. Version 1.0 31 Aug 2024", + "parentRuleCode": "IN.15.3.2", + "pageNumber": "120" }, { "ruleCode": "S", "ruleContent": "STATIC EVENTS", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.1", - "ruleContent": "GENERAL STATIC Presentation 75 points Cost 100 points Design 150 points Total 325 points", + "ruleContent": "GENERAL STATIC Presentation 75 points Cost 100 points Design 150 points Total 325 points", "parentRuleCode": "S", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2", "ruleContent": "PRESENTATION EVENT", "parentRuleCode": "S", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.1", "ruleContent": "Presentation Event Objective The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive business, logistical, production, or technical case that will convince outside interests to invest in the team’s concept.", "parentRuleCode": "S.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.2", "ruleContent": "Presentation Concept", "parentRuleCode": "S.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.2.1", "ruleContent": "The concept for the Presentation Event will be provided on the FSAE Online website.", "parentRuleCode": "S.2.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.2.2", "ruleContent": "The concept for the Presentation Event may change for each competition", "parentRuleCode": "S.2.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.2.3", "ruleContent": "The team presentation must meet the concept", "parentRuleCode": "S.2.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.2.4", "ruleContent": "The team presentation must relate specifically to the vehicle as entered in the competition", "parentRuleCode": "S.2.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.2.5", "ruleContent": "Teams should assume that the judges represent different areas, including engineering, production, marketing and finance, and may not all be engineers.", "parentRuleCode": "S.2.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.2.6", "ruleContent": "The presentation may be given in different settings, such as a conference room, a group meeting, virtually, or in conjunction with other Static Events. Specific details will be included in the Presentation Concept or communicated separately.", "parentRuleCode": "S.2.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.3", "ruleContent": "Presentation Schedule Teams that fail to make their presentation during their assigned time period get zero points for the Presentation Event.", "parentRuleCode": "S.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.4", "ruleContent": "Presentation Submissions", "parentRuleCode": "S.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.4.1", "ruleContent": "The Presentation Concept may require information to be submitted prior to the event. Specific details will be included in the Presentation Concept.", "parentRuleCode": "S.2.4", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.4.2", "ruleContent": "Submissions may be graded as part of the Presentation Event score.", "parentRuleCode": "S.2.4", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.4.3", "ruleContent": "Pre event submissions will be subject to penalties imposed as given in section DR - Document Requirements or the Presentation Concept", "parentRuleCode": "S.2.4", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.5", "ruleContent": "Presentation Format", "parentRuleCode": "S.2", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.5.1", "ruleContent": "One or more team members will give the presentation to the judges.", "parentRuleCode": "S.2.5", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.5.2", "ruleContent": "All team members who will give any part of the presentation, or who will respond to judges’ questions must be: • In the presentation area when the presentation starts • Introduced and identified to the judges", "parentRuleCode": "S.2.5", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.5.3", - "ruleContent": "Presentations will be time limited. The judges will stop any presentation exceeding the time limit.", + "ruleContent": "Presentations will be time limited. The judges will stop any presentation exceeding the time limit. Version 1.0 31 Aug 2024", "parentRuleCode": "S.2.5", - "pageNumber": "121", - "isFromTOC": false + "pageNumber": "121" }, { "ruleCode": "S.2.5.4", - "ruleContent": "The presentation itself will not be interrupted by questions. Immediately after the presentation there may be a question and answer session.", + "ruleContent": "The presentation itself will not be interrupted by questions. Immediately after the presentation there may be a question and answer session.", "parentRuleCode": "S.2.5", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.5.5", "ruleContent": "Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions.", "parentRuleCode": "S.2.5", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.6", "ruleContent": "Presentation Equipment Refer to the Presentation Concept for additional information", "parentRuleCode": "S.2", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.7", "ruleContent": "Evaluation Criteria", "parentRuleCode": "S.2", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.7.1", "ruleContent": "Presentations will be evaluated on content, organization, visual aids, delivery and the team’s response to the judges questions.", "parentRuleCode": "S.2.7", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.7.2", "ruleContent": "The actual quality of the prototype itself will not be considered as part of the presentation judging", "parentRuleCode": "S.2.7", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.7.3", "ruleContent": "Presentation Judging Score Sheet – available at the FSAE Online website", "parentRuleCode": "S.2.7", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.8", "ruleContent": "Judging Sequence Presentation judging may be conducted in one or more phases.", "parentRuleCode": "S.2", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.9", "ruleContent": "Presentation Event Scoring", "parentRuleCode": "S.2", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.9.1", "ruleContent": "The Presentation raw score is based on the average of the scores of each judge.", "parentRuleCode": "S.2.9", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.9.2", "ruleContent": "Presentation Event scores may range from 0 to 75 points, using a method at the discretion of the judges", "parentRuleCode": "S.2.9", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.2.9.3", "ruleContent": "Presentation Event scoring may include normalizing the scores of different judging teams and scaling the overall results.", "parentRuleCode": "S.2.9", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.3", "ruleContent": "COST AND MANUFACTURING EVENT", "parentRuleCode": "S", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.3.1", "ruleContent": "Cost Event Objective The Cost and Manufacturing Event evaluates the ability of the team to consider budget and incorporate production considerations for production and efficiency. Making tradeoff decisions between content and cost based on the performance of each part and assembly and accounting for each part and process to meet a budget is part of Project Management.", "parentRuleCode": "S.3", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.3.2", - "ruleContent": "Cost Event Supplement a. Additional specific information on the Cost and Manufacturing Event, including explanation and requirements, is provided in the Formula SAE Cost Event Supplement document. b. Use the Formula SAE Cost Event Supplement to properly complete the requirements of the Cost and Manufacturing Event. c. The Formula SAE Cost Event Supplement is available on the FSAE Online website", + "ruleContent": "Cost Event Supplement", "parentRuleCode": "S.3", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" + }, + { + "ruleCode": "S.3.2.a", + "ruleContent": "Additional specific information on the Cost and Manufacturing Event, including explanation and requirements, is provided in the Formula SAE Cost Event Supplement document.", + "parentRuleCode": "S.3.2", + "pageNumber": "122" + }, + { + "ruleCode": "S.3.2.b", + "ruleContent": "Use the Formula SAE Cost Event Supplement to properly complete the requirements of the Cost and Manufacturing Event.", + "parentRuleCode": "S.3.2", + "pageNumber": "122" + }, + { + "ruleCode": "S.3.2.c", + "ruleContent": "The Formula SAE Cost Event Supplement is available on the FSAE Online website", + "parentRuleCode": "S.3.2", + "pageNumber": "122" }, { "ruleCode": "S.3.3", "ruleContent": "Cost Event Areas", "parentRuleCode": "S.3", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.3.3.1", "ruleContent": "Cost Report Preparation and submission of a report (the “Cost Report”)", "parentRuleCode": "S.3.3", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.3.3.2", - "ruleContent": "Event Day Discussion Discussion at the Competition with the Cost Judges around the team’s vehicle.", + "ruleContent": "Event Day Discussion Discussion at the Competition with the Cost Judges around the team’s vehicle. Version 1.0 31 Aug 2024", "parentRuleCode": "S.3.3", - "pageNumber": "122", - "isFromTOC": false + "pageNumber": "122" }, { "ruleCode": "S.3.3.3", "ruleContent": "Cost Scenario Teams will respond to a challenge related to cost or manufacturing of the vehicle.", "parentRuleCode": "S.3.3", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.4", "ruleContent": "Cost Report", "parentRuleCode": "S.3", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.4.1", - "ruleContent": "The Cost Report must: a. List and cost each part on the vehicle using the standardized Cost Tables b. Base the cost on the actual manufacturing technique used on the prototype Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc. c. Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it. d. Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools). e. Include supporting documentation to allow officials to verify part costing", + "ruleContent": "The Cost Report must:", "parentRuleCode": "S.3.4", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" + }, + { + "ruleCode": "S.3.4.1.a", + "ruleContent": "List and cost each part on the vehicle using the standardized Cost Tables", + "parentRuleCode": "S.3.4.1", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.4.1.b", + "ruleContent": "Base the cost on the actual manufacturing technique used on the prototype Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc.", + "parentRuleCode": "S.3.4.1", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.4.1.c", + "ruleContent": "Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it.", + "parentRuleCode": "S.3.4.1", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.4.1.d", + "ruleContent": "Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools).", + "parentRuleCode": "S.3.4.1", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.4.1.e", + "ruleContent": "Include supporting documentation to allow officials to verify part costing", + "parentRuleCode": "S.3.4.1", + "pageNumber": "123" }, { "ruleCode": "S.3.4.2", "ruleContent": "Generate and submit the Cost Report using the FSAE Online website, see DR - Document Requirements", "parentRuleCode": "S.3.4", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.5", "ruleContent": "Bill of Materials - BOM", "parentRuleCode": "S.3", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.5.1", - "ruleContent": "The BOM is a list of all vehicle parts, showing the relationships between the items. a. The overall vehicle is broken down into separate Systems b. Systems are made up of Assemblies c. Assemblies are made up of Parts d. Parts consist of Materials, Processes and Fasteners e. Tooling is associated with each Process that requires production tooling", + "ruleContent": "The BOM is a list of all vehicle parts, showing the relationships between the items.", "parentRuleCode": "S.3.5", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" + }, + { + "ruleCode": "S.3.5.1.a", + "ruleContent": "The overall vehicle is broken down into separate Systems", + "parentRuleCode": "S.3.5.1", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.5.1.b", + "ruleContent": "Systems are made up of Assemblies", + "parentRuleCode": "S.3.5.1", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.5.1.c", + "ruleContent": "Assemblies are made up of Parts", + "parentRuleCode": "S.3.5.1", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.5.1.d", + "ruleContent": "Parts consist of Materials, Processes and Fasteners", + "parentRuleCode": "S.3.5.1", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.5.1.e", + "ruleContent": "Tooling is associated with each Process that requires production tooling", + "parentRuleCode": "S.3.5.1", + "pageNumber": "123" }, { "ruleCode": "S.3.6", "ruleContent": "Late Submission Penalties for Late Submission of Cost Report will be imposed as given in section DR - Document Requirements.", "parentRuleCode": "S.3", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.7", "ruleContent": "Cost Addendum", "parentRuleCode": "S.3", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.7.1", "ruleContent": "A supplement to the Cost Report that reflects any changes or corrections made after the submission of the Cost Report may be submitted.", "parentRuleCode": "S.3.7", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.7.2", "ruleContent": "The Cost Addendum must be submitted during Onsite Registration at the Event.", "parentRuleCode": "S.3.7", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.7.3", "ruleContent": "The Cost Addendum must follow the format as given in section DR - Document Requirements", "parentRuleCode": "S.3.7", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.7.4", "ruleContent": "Addenda apply only to the competition at which they are submitted.", "parentRuleCode": "S.3.7", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.7.5", "ruleContent": "A separate Cost Addendum may be submitted at each competition a vehicle attends.", "parentRuleCode": "S.3.7", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.7.6", - "ruleContent": "Changes to the Cost Report in the Cost Addendum will incur additional cost: a. Added items will be cost at 125% of the table cost: + (1.25 x Cost) b. Removed items will be credited 75% of the table cost: - (0.75 x Cost)", + "ruleContent": "Changes to the Cost Report in the Cost Addendum will incur additional cost:", "parentRuleCode": "S.3.7", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" + }, + { + "ruleCode": "S.3.7.6.a", + "ruleContent": "Added items will be cost at 125% of the table cost: + (1.25 x Cost)", + "parentRuleCode": "S.3.7.6", + "pageNumber": "123" + }, + { + "ruleCode": "S.3.7.6.b", + "ruleContent": "Removed items will be credited 75% of the table cost: - (0.75 x Cost)", + "parentRuleCode": "S.3.7.6", + "pageNumber": "123" }, { "ruleCode": "S.3.8", "ruleContent": "Cost Tables", "parentRuleCode": "S.3", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.8.1", "ruleContent": "All costs in the Cost Report must come from the standardized Cost Tables.", "parentRuleCode": "S.3.8", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.8.2", - "ruleContent": "If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add Item Request must be submitted. See S.3.10", + "ruleContent": "If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add Item Request must be submitted. See S.3.10 Version 1.0 31 Aug 2024", "parentRuleCode": "S.3.8", - "pageNumber": "123", - "isFromTOC": false + "pageNumber": "123" }, { "ruleCode": "S.3.9", "ruleContent": "Make versus Buy", "parentRuleCode": "S.3", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.9.1", "ruleContent": "Each part may be classified as Made or Bought Refer to the Formula SAE Cost Event Supplement for additional information", "parentRuleCode": "S.3.9", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.9.2", "ruleContent": "If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so.", "parentRuleCode": "S.3.9", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.9.3", "ruleContent": "Any part which is normally purchased that is optionally shown as a Made part must have supporting documentation submitted to prove team manufacture.", "parentRuleCode": "S.3.9", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.9.4", "ruleContent": "Teams costing Bought parts as Made parts will be penalized.", "parentRuleCode": "S.3.9", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.10", "ruleContent": "Add Item Request", "parentRuleCode": "S.3", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.10.1", "ruleContent": "An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost Tables for individual team requirements.", "parentRuleCode": "S.3.10", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.10.2", - "ruleContent": "After review, the item may be added to the Cost Table with an appropriate cost. It will then be available to all teams.", + "ruleContent": "After review, the item may be added to the Cost Table with an appropriate cost. It will then be available to all teams.", "parentRuleCode": "S.3.10", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.11", "ruleContent": "Public Cost Reports", "parentRuleCode": "S.3", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.11.1", "ruleContent": "The competition organizers may publish all or part of the submitted Cost Reports.", "parentRuleCode": "S.3.11", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.11.2", - "ruleContent": "Cost Reports for a given competition season will not be published before the end of the calendar year. Support materials, such as technical drawings, will not be released.", + "ruleContent": "Cost Reports for a given competition season will not be published before the end of the calendar year. Support materials, such as technical drawings, will not be released.", "parentRuleCode": "S.3.11", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.12", "ruleContent": "Cost Report Penalties Process", "parentRuleCode": "S.3", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.12.1", - "ruleContent": "This procedure will be used in determining penalties: a. Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions b. Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost Additions c. The higher of the two penalties will be applied against the Cost Event score • Penalty A expressed in points will be deducted from the Cost Event score • Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle", + "ruleContent": "This procedure will be used in determining penalties:", "parentRuleCode": "S.3.12", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" + }, + { + "ruleCode": "S.3.12.1.a", + "ruleContent": "Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions", + "parentRuleCode": "S.3.12.1", + "pageNumber": "124" + }, + { + "ruleCode": "S.3.12.1.b", + "ruleContent": "Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost Additions", + "parentRuleCode": "S.3.12.1", + "pageNumber": "124" + }, + { + "ruleCode": "S.3.12.1.c", + "ruleContent": "The higher of the two penalties will be applied against the Cost Event score • Penalty A expressed in points will be deducted from the Cost Event score • Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle", + "parentRuleCode": "S.3.12.1", + "pageNumber": "124" }, { "ruleCode": "S.3.12.2", "ruleContent": "Any error that results in a team over reporting a cost in their Cost Report will not be further penalized.", "parentRuleCode": "S.3.12", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.12.3", "ruleContent": "Any instance where a team’s score benefits by an intentional or unintentional error on the part of the students will be corrected on a case by case basis.", "parentRuleCode": "S.3.12", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" }, { "ruleCode": "S.3.12.4", - "ruleContent": "Penalty Method A - Fixed Point Deductions a. From the Bill of Material, the Cost Judges will determine if all Parts and Processes have been included in the analysis. b. In the case of any omission or error a penalty proportional to the BOM level of the error will be imposed: • Missing/inaccurate Material, Process, Fastener 1 point • Missing/inaccurate Part 3 point • Missing/inaccurate Assembly 5 point c. Each of the penalties listed above supersedes the previous penalty. Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. d. Differences other than those listed above will be deducted at the discretion of the Cost Judges.", + "ruleContent": "Penalty Method A - Fixed Point Deductions", "parentRuleCode": "S.3.12", - "pageNumber": "124", - "isFromTOC": false + "pageNumber": "124" + }, + { + "ruleCode": "S.3.12.4.a", + "ruleContent": "From the Bill of Material, the Cost Judges will determine if all Parts and Processes have been included in the analysis.", + "parentRuleCode": "S.3.12.4", + "pageNumber": "124" + }, + { + "ruleCode": "S.3.12.4.b", + "ruleContent": "In the case of any omission or error a penalty proportional to the BOM level of the error will be imposed: • Missing/inaccurate Material, Process, Fastener 1 point • Missing/inaccurate Part 3 point • Missing/inaccurate Assembly 5 point", + "parentRuleCode": "S.3.12.4", + "pageNumber": "124" + }, + { + "ruleCode": "S.3.12.4.c", + "ruleContent": "Each of the penalties listed above supersedes the previous penalty. Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. Version 1.0 31 Aug 2024", + "parentRuleCode": "S.3.12.4", + "pageNumber": "124" + }, + { + "ruleCode": "S.3.12.4.d", + "ruleContent": "Differences other than those listed above will be deducted at the discretion of the Cost Judges.", + "parentRuleCode": "S.3.12.4", + "pageNumber": "124" }, { "ruleCode": "S.3.12.5", - "ruleContent": "Penalty Method B – Adjusted Cost Additions a. The table cost for the missing or incomplete items will be calculated from the standard Cost Tables. b. The penalty will be a value equal to twice the difference between the team cost and the correct cost for all items in error. Penalty = 2 x (Table Cost – Team Reported Cost) The table costs of all items in error are included in the calculation. A missing Assembly would include the price of all Parts, Materials, Processes and Fasteners making up the Assembly.", + "ruleContent": "Penalty Method B – Adjusted Cost Additions", "parentRuleCode": "S.3.12", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" + }, + { + "ruleCode": "S.3.12.5.a", + "ruleContent": "The table cost for the missing or incomplete items will be calculated from the standard Cost Tables.", + "parentRuleCode": "S.3.12.5", + "pageNumber": "125" + }, + { + "ruleCode": "S.3.12.5.b", + "ruleContent": "The penalty will be a value equal to twice the difference between the team cost and the correct cost for all items in error. Penalty = 2 x (Table Cost – Team Reported Cost) The table costs of all items in error are included in the calculation. A missing Assembly would include the price of all Parts, Materials, Processes and Fasteners making up the Assembly.", + "parentRuleCode": "S.3.12.5", + "pageNumber": "125" }, { "ruleCode": "S.3.13", "ruleContent": "Event Day and Discussion", "parentRuleCode": "S.3", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.13.1", "ruleContent": "The team must present their vehicle at the designated time", "parentRuleCode": "S.3.13", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.13.2", "ruleContent": "The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during Cost Event judging", "parentRuleCode": "S.3.13", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.13.3", "ruleContent": "Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging", "parentRuleCode": "S.3.13", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.13.4", - "ruleContent": "The Cost Judges will: a. Review whether the Cost Report accurately reflects the vehicle as presented b. Review the manufacturing feasibility of the vehicle c. Assess supporting documentation based on its quality, accuracy and thoroughness d. Apply penalties for missing or incorrect information in the Cost Report compared to the vehicle presented at inspection", + "ruleContent": "The Cost Judges will:", "parentRuleCode": "S.3.13", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" + }, + { + "ruleCode": "S.3.13.4.a", + "ruleContent": "Review whether the Cost Report accurately reflects the vehicle as presented", + "parentRuleCode": "S.3.13.4", + "pageNumber": "125" + }, + { + "ruleCode": "S.3.13.4.b", + "ruleContent": "Review the manufacturing feasibility of the vehicle", + "parentRuleCode": "S.3.13.4", + "pageNumber": "125" + }, + { + "ruleCode": "S.3.13.4.c", + "ruleContent": "Assess supporting documentation based on its quality, accuracy and thoroughness", + "parentRuleCode": "S.3.13.4", + "pageNumber": "125" + }, + { + "ruleCode": "S.3.13.4.d", + "ruleContent": "Apply penalties for missing or incorrect information in the Cost Report compared to the vehicle presented at inspection", + "parentRuleCode": "S.3.13.4", + "pageNumber": "125" }, { "ruleCode": "S.3.14", "ruleContent": "Cost Audit", "parentRuleCode": "S.3", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.14.1", "ruleContent": "Teams may be selected for additional review to verify all processes and materials on their vehicle are in the Cost Report", "parentRuleCode": "S.3.14", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.14.2", "ruleContent": "Adjustments from the Cost Audit will be included in the final scores", "parentRuleCode": "S.3.14", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.15", "ruleContent": "Cost Scenario The Cost Scenario will be provided prior to the competition on the FSAE Online website The Cost Scenario will include detailed information about the conduct, scope, and conditions of the Cost Scenario", "parentRuleCode": "S.3", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.16", "ruleContent": "Cost Event Scoring", "parentRuleCode": "S.3", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.16.1", "ruleContent": "Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario", "parentRuleCode": "S.3.16", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.16.2", "ruleContent": "The Cost Event is worth 100 points", "parentRuleCode": "S.3.16", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.16.3", "ruleContent": "Cost Event Scores may be awarded in areas including, but not limited to: • Price Score • Discussion Score • Scenario Score", "parentRuleCode": "S.3.16", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.16.4", "ruleContent": "Penalty points may be subtracted from the Cost Score, with no limit.", "parentRuleCode": "S.3.16", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.3.16.5", - "ruleContent": "Cost Event scoring may include normalizing the scores of different judging teams and scaling the results.", + "ruleContent": "Cost Event scoring may include normalizing the scores of different judging teams and scaling the results. Version 1.0 31 Aug 2024", "parentRuleCode": "S.3.16", - "pageNumber": "125", - "isFromTOC": false + "pageNumber": "125" }, { "ruleCode": "S.4", "ruleContent": "DESIGN EVENT", "parentRuleCode": "S", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.1", "ruleContent": "Design Event Objective", "parentRuleCode": "S.4", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.1.1", "ruleContent": "The Design Event evaluates the engineering effort that went into the vehicle and how the engineering meets the intent of the market in terms of vehicle performance and overall value.", "parentRuleCode": "S.4.1", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.1.2", "ruleContent": "The team and vehicle that illustrate the best use of engineering to meet the design goals, a cost effective high performance vehicle, and the best understanding of the design by the team members will win the Design Event.", "parentRuleCode": "S.4.1", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.1.3", "ruleContent": "Components and systems that are incorporated into the design as finished items are not evaluated as a student designed unit, but are assessed on the team’s selection and application of that unit.", "parentRuleCode": "S.4.1", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.2", "ruleContent": "Design Documents", "parentRuleCode": "S.4", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.2.1", "ruleContent": "Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings", "parentRuleCode": "S.4.2", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.2.2", "ruleContent": "These Design Documents will be used for: • Design Judge reviews prior to the Design Event • Sorting teams into appropriate design groups based on the quality of their review.", "parentRuleCode": "S.4.2", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.2.3", "ruleContent": "Penalties for Late Submission of all or any one of the Design Documents will be imposed as given in section DR - Document Requirements", "parentRuleCode": "S.4.2", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.2.4", "ruleContent": "Teams that submit one or more Design Documents which do not represent a serious effort to comply with the requirements may be excluded from the Design Event or be awarded a lower score.", "parentRuleCode": "S.4.2", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.3", "ruleContent": "Design Briefing", "parentRuleCode": "S.4", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.3.1", "ruleContent": "The Design Briefing must use the template from the FSAE Online website.", "parentRuleCode": "S.4.3", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.3.2", - "ruleContent": "Refer to the Design Briefing template for: a. Specific content requirements, areas and details b. Maximum slides that may be used per topic", + "ruleContent": "Refer to the Design Briefing template for:", "parentRuleCode": "S.4.3", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" + }, + { + "ruleCode": "S.4.3.2.a", + "ruleContent": "Specific content requirements, areas and details", + "parentRuleCode": "S.4.3.2", + "pageNumber": "126" + }, + { + "ruleCode": "S.4.3.2.b", + "ruleContent": "Maximum slides that may be used per topic", + "parentRuleCode": "S.4.3.2", + "pageNumber": "126" }, { "ruleCode": "S.4.3.3", "ruleContent": "Submit the Design Briefing as given in section DR - Document Requirements", "parentRuleCode": "S.4.3", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.4", "ruleContent": "Vehicle Drawings", "parentRuleCode": "S.4", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.4.1", - "ruleContent": "The Vehicle Drawings must meet: a. Three view line drawings showing the vehicle, from the front, top, and side b. Each drawing must appear on a separate page c. May be manually or computer generated", + "ruleContent": "The Vehicle Drawings must meet:", "parentRuleCode": "S.4.4", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" + }, + { + "ruleCode": "S.4.4.1.a", + "ruleContent": "Three view line drawings showing the vehicle, from the front, top, and side", + "parentRuleCode": "S.4.4.1", + "pageNumber": "126" + }, + { + "ruleCode": "S.4.4.1.b", + "ruleContent": "Each drawing must appear on a separate page", + "parentRuleCode": "S.4.4.1", + "pageNumber": "126" + }, + { + "ruleCode": "S.4.4.1.c", + "ruleContent": "May be manually or computer generated", + "parentRuleCode": "S.4.4.1", + "pageNumber": "126" }, { "ruleCode": "S.4.4.2", "ruleContent": "Submit the Vehicle Drawings as given in section DR - Document Requirements", "parentRuleCode": "S.4.4", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.5", - "ruleContent": "Design Spec Sheet Use the format provided and submit the Design Spec Sheet as given in section DR - Document Requirements The Design Judges realize that final design refinements and vehicle development may cause the submitted values to differ from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate.", + "ruleContent": "Design Spec Sheet Use the format provided and submit the Design Spec Sheet as given in section DR - Document Requirements The Design Judges realize that final design refinements and vehicle development may cause the submitted values to differ from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate. Version 1.0 31 Aug 2024", "parentRuleCode": "S.4", - "pageNumber": "126", - "isFromTOC": false + "pageNumber": "126" }, { "ruleCode": "S.4.6", "ruleContent": "Vehicle Condition", "parentRuleCode": "S.4", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.6.1", "ruleContent": "Inspection Approval IN.13.1.1 is not required prior to Design judging.", "parentRuleCode": "S.4.6", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.6.2", - "ruleContent": "Vehicles must be presented for Design judging in finished condition, fully assembled, complete and ready to run. a. The judges will not evaluate any vehicle that is presented at the Design event in what they consider to be an unfinished state. b. Point penalties may be assessed for vehicles with obvious preparation issues", + "ruleContent": "Vehicles must be presented for Design judging in finished condition, fully assembled, complete and ready to run.", "parentRuleCode": "S.4.6", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" + }, + { + "ruleCode": "S.4.6.2.a", + "ruleContent": "The judges will not evaluate any vehicle that is presented at the Design event in what they consider to be an unfinished state.", + "parentRuleCode": "S.4.6.2", + "pageNumber": "127" + }, + { + "ruleCode": "S.4.6.2.b", + "ruleContent": "Point penalties may be assessed for vehicles with obvious preparation issues", + "parentRuleCode": "S.4.6.2", + "pageNumber": "127" }, { "ruleCode": "S.4.7", "ruleContent": "Support Material", "parentRuleCode": "S.4", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.7.1", "ruleContent": "Teams may bring to Design Judging any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process.", "parentRuleCode": "S.4.7", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.7.2", "ruleContent": "The available space in the Design Event judging area may be limited.", "parentRuleCode": "S.4.7", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.8", "ruleContent": "Judging Sequence Design judging may be conducted in one or more phases. Typical Design judging includes a first round review of all teams, then additional review of selected teams.", "parentRuleCode": "S.4", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.9", "ruleContent": "Judging Criteria", "parentRuleCode": "S.4", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.9.1", - "ruleContent": "The Design Judges will: a. Evaluate the engineering effort based upon the team’s Design Documents, discussion with the team, and an inspection of the vehicle b. Inspect the vehicle to determine if the design concepts are adequate and appropriate for the application (relative to the objectives stated in the rules). c. Deduct points if the team cannot adequately explain the engineering and construction of the vehicle", + "ruleContent": "The Design Judges will:", "parentRuleCode": "S.4.9", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" + }, + { + "ruleCode": "S.4.9.1.a", + "ruleContent": "Evaluate the engineering effort based upon the team’s Design Documents, discussion with the team, and an inspection of the vehicle", + "parentRuleCode": "S.4.9.1", + "pageNumber": "127" + }, + { + "ruleCode": "S.4.9.1.b", + "ruleContent": "Inspect the vehicle to determine if the design concepts are adequate and appropriate for the application (relative to the objectives stated in the rules).", + "parentRuleCode": "S.4.9.1", + "pageNumber": "127" + }, + { + "ruleCode": "S.4.9.1.c", + "ruleContent": "Deduct points if the team cannot adequately explain the engineering and construction of the vehicle", + "parentRuleCode": "S.4.9.1", + "pageNumber": "127" }, { "ruleCode": "S.4.9.2", "ruleContent": "The Design Judges may assign a portion of the Design Event points to the Design Documents", "parentRuleCode": "S.4.9", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.9.3", "ruleContent": "Design Judging Score Sheets are available at the FSAE Online website.", "parentRuleCode": "S.4.9", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.10", "ruleContent": "Design Event Scoring", "parentRuleCode": "S.4", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.10.1", "ruleContent": "Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge", "parentRuleCode": "S.4.10", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.10.2", "ruleContent": "Penalty points may be subtracted from the Design score", "parentRuleCode": "S.4.10", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "S.4.10.3", - "ruleContent": "Vehicles that are excluded from Design judging or refused judging get zero points for Design, and may receive penalty points.", + "ruleContent": "Vehicles that are excluded from Design judging or refused judging get zero points for Design, and may receive penalty points. Version 1.0 31 Aug 2024", "parentRuleCode": "S.4.10", - "pageNumber": "127", - "isFromTOC": false + "pageNumber": "127" }, { "ruleCode": "D", "ruleContent": "DYNAMIC EVENTS", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.1", "ruleContent": "GENERAL DYNAMIC", "parentRuleCode": "D", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.1.1", - "ruleContent": "Dynamic Events and Maximum Scores Acceleration 100 points Skid Pad 75 points Autocross 125 points Efficiency 100 points Endurance 275 points Total 675 points", + "ruleContent": "Dynamic Events and Maximum Scores Acceleration 100 points Skid Pad 75 points Autocross 125 points Efficiency 100 points Endurance 275 points Total 675 points", "parentRuleCode": "D.1", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.1.2", "ruleContent": "Definitions", "parentRuleCode": "D.1", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.1.2.1", - "ruleContent": "Dynamic Area – Any designated portion(s) of the competition site where the vehicles may move under their own power. This includes competition, inspection and practice areas.", + "ruleContent": "Dynamic Area – Any designated portion(s) of the competition site where the vehicles may move under their own power. This includes competition, inspection and practice areas.", "parentRuleCode": "D.1.2", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.1.2.2", "ruleContent": "Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the purpose of gathering those vehicles that are about to start.", "parentRuleCode": "D.1.2", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2", "ruleContent": "PIT AND PADDOCK", "parentRuleCode": "D", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2.1", "ruleContent": "Vehicle Movement", "parentRuleCode": "D.2", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2.1.1", "ruleContent": "Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside", "parentRuleCode": "D.2.1", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2.1.2", - "ruleContent": "The team may move the vehicle with a. All four wheels on the ground b. The rear wheels supported on dollies, by push bar mounted wheels The external wheels supporting the rear of the vehicle must be non pivoting so the vehicle travels only where the front wheels are steered. The driver must always be able to steer and brake the vehicle normally.", + "ruleContent": "The team may move the vehicle with", "parentRuleCode": "D.2.1", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" + }, + { + "ruleCode": "D.2.1.2.a", + "ruleContent": "All four wheels on the ground", + "parentRuleCode": "D.2.1.2", + "pageNumber": "128" + }, + { + "ruleCode": "D.2.1.2.b", + "ruleContent": "The rear wheels supported on dollies, by push bar mounted wheels The external wheels supporting the rear of the vehicle must be non pivoting so the vehicle travels only where the front wheels are steered. The driver must always be able to steer and brake the vehicle normally.", + "parentRuleCode": "D.2.1.2", + "pageNumber": "128" }, { "ruleCode": "D.2.1.3", "ruleContent": "When the Push Bar is attached, the engine must stay off, unless authorized by the officials", "parentRuleCode": "D.2.1", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2.1.4", "ruleContent": "Vehicles must be Shutdown when being moved around the paddock", "parentRuleCode": "D.2.1", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2.1.5", "ruleContent": "Vehicles with wings must have two team members, one walking on each side of the vehicle when the vehicle is being pushed", "parentRuleCode": "D.2.1", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2.1.6", "ruleContent": "A 25 point penalty may be assessed for each violation", "parentRuleCode": "D.2.1", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2.2", - "ruleContent": "Fueling and Charging (IC only) Officials must conduct all fueling activities in the designated location. (EV only) Accumulator charging must be done in the designated location EV.11.5", + "ruleContent": "Fueling and Charging (IC only) Officials must conduct all fueling activities in the designated location. (EV only) Accumulator charging must be done in the designated location EV.11.5", "parentRuleCode": "D.2", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" }, { "ruleCode": "D.2.3", - "ruleContent": "Powertrain Operation In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three: a. (IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR a Technical Inspector gives permission (EV only) The vehicle shows the OK to Energize sticker IN.4.7.3 b. The vehicle is supported on a stand c. The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed", + "ruleContent": "Powertrain Operation In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three:", "parentRuleCode": "D.2", - "pageNumber": "128", - "isFromTOC": false + "pageNumber": "128" + }, + { + "ruleCode": "D.2.3.a", + "ruleContent": "(IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR a Technical Inspector gives permission (EV only) The vehicle shows the OK to Energize sticker IN.4.7.3", + "parentRuleCode": "D.2.3", + "pageNumber": "128" + }, + { + "ruleCode": "D.2.3.b", + "ruleContent": "The vehicle is supported on a stand Version 1.0 31 Aug 2024", + "parentRuleCode": "D.2.3", + "pageNumber": "128" + }, + { + "ruleCode": "D.2.3.c", + "ruleContent": "The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed", + "parentRuleCode": "D.2.3", + "pageNumber": "128" }, { "ruleCode": "D.3", "ruleContent": "DRIVING", "parentRuleCode": "D", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.1", - "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event must attend the drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", + "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event must attend the drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", "parentRuleCode": "D.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.2", "ruleContent": "Dynamic Area Limitations Refer to the Event Website for specific information", "parentRuleCode": "D.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.2.1", - "ruleContent": "The organizer may specify restrictions for the Dynamic Area. These could include limiting the number of team members and what may be brought into the area.", + "ruleContent": "The organizer may specify restrictions for the Dynamic Area. These could include limiting the number of team members and what may be brought into the area.", "parentRuleCode": "D.3.2", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.2.2", - "ruleContent": "The organizer may specify additional restrictions for the Staging Area. These could include limiting the number of team members and what may be brought into the area.", + "ruleContent": "The organizer may specify additional restrictions for the Staging Area. These could include limiting the number of team members and what may be brought into the area.", "parentRuleCode": "D.3.2", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.2.3", "ruleContent": "The organizer may establish requirements for persons in the Dynamic Area, such as closed toe shoes or long pants.", "parentRuleCode": "D.3.2", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.3", "ruleContent": "Driving Under Power", "parentRuleCode": "D.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.3.1", "ruleContent": "Vehicles must move under their own power only when inside the designated Dynamic Area(s), unless otherwise directed by the officials.", "parentRuleCode": "D.3.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.3.2", "ruleContent": "Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point penalty for the first violation and disqualification for a second violation.", "parentRuleCode": "D.3.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.4", "ruleContent": "Driving Offsite - Prohibited Teams found to have driven their vehicle at an offsite location during the period of the competition will be excluded from the competition.", "parentRuleCode": "D.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.5", "ruleContent": "Driver Equipment", "parentRuleCode": "D.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.5.1", - "ruleContent": "All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with: a. (IC) Engine running or (EV) Tractive System Active b. Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run.", + "ruleContent": "All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with:", "parentRuleCode": "D.3.5", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" + }, + { + "ruleCode": "D.3.5.1.a", + "ruleContent": "(IC) Engine running or (EV) Tractive System Active", + "parentRuleCode": "D.3.5.1", + "pageNumber": "129" + }, + { + "ruleCode": "D.3.5.1.b", + "ruleContent": "Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run.", + "parentRuleCode": "D.3.5.1", + "pageNumber": "129" }, { "ruleCode": "D.3.5.2", "ruleContent": "Removal of any Driver Equipment during a Dynamic event will result in Disqualification.", "parentRuleCode": "D.3.5", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.6", - "ruleContent": "Starting Auxiliary batteries must not be used once a vehicle has moved to the starting line of any event. See IC.8.1", + "ruleContent": "Starting Auxiliary batteries must not be used once a vehicle has moved to the starting line of any event. See IC.8.1", "parentRuleCode": "D.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.7", "ruleContent": "Practice Area", "parentRuleCode": "D.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.7.1", "ruleContent": "A practice area for testing and tuning may be available", "parentRuleCode": "D.3.7", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.7.2", "ruleContent": "The practice area will be controlled and may only be used during the scheduled times", "parentRuleCode": "D.3.7", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.7.3", "ruleContent": "Vehicles using the practice area must have a complete Inspection Sticker", "parentRuleCode": "D.3.7", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.8", - "ruleContent": "Instructions from Officials Obey flags and hand signals from course marshals and officials immediately", + "ruleContent": "Instructions from Officials Obey flags and hand signals from course marshals and officials immediately Version 1.0 31 Aug 2024", "parentRuleCode": "D.3", - "pageNumber": "129", - "isFromTOC": false + "pageNumber": "129" }, { "ruleCode": "D.3.9", "ruleContent": "Vehicle Integrity Officials may revoke the Inspection Approval for any vehicle condition that could compromise vehicle integrity, compromise the track surface, or pose a potential hazard. This could result in DNF or DQ of any Dynamic event.", "parentRuleCode": "D.3", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.3.10", "ruleContent": "Stalled & Disabled Vehicles", "parentRuleCode": "D.3", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.3.10.1", "ruleContent": "If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to complete the run, it will be scored DNF for that run", "parentRuleCode": "D.3.10", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.3.10.2", "ruleContent": "Disabled vehicles will be cleared from the track by the track workers.", "parentRuleCode": "D.3.10", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4", "ruleContent": "FLAGS Any specific variations will be addressed at the drivers meeting.", "parentRuleCode": "D", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1", "ruleContent": "Command Flags", "parentRuleCode": "D.4", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.1", "ruleContent": "Any Command Flag must be obeyed immediately and without question.", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.2", - "ruleContent": "Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time penalty may be assessed.", + "ruleContent": "Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time penalty may be assessed.", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.3", "ruleContent": "Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, something has been observed that needs closer inspection.", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.4", "ruleContent": "Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the corner workers signals at the end of the passing zone to merge into competition.", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.5", - "ruleContent": "Checkered Flag - Run has been completed. Exit the course at the designated point.", + "ruleContent": "Checkered Flag - Run has been completed. Exit the course at the designated point.", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.6", - "ruleContent": "Green Flag – Approval to begin your run, enter the course under direction of the starter. If you stall the vehicle, please restart and await another Green Flag", + "ruleContent": "Green Flag – Approval to begin your run, enter the course under direction of the starter. If you stall the vehicle, please restart and await another Green Flag", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.7", - "ruleContent": "Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow corner worker directions.", + "ruleContent": "Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow corner worker directions.", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.8", - "ruleContent": "Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the corner workers.", + "ruleContent": "Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the corner workers.", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.1.9", "ruleContent": "Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless directed by the corner workers.", "parentRuleCode": "D.4.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.2", "ruleContent": "Informational Flags", "parentRuleCode": "D.4", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.2.1", "ruleContent": "An Information Flag communicates to the driver, but requires no specific action.", "parentRuleCode": "D.4.2", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.2.2", "ruleContent": "Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be prepared for evasive maneuvers.", "parentRuleCode": "D.4.2", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.4.2.3", - "ruleContent": "White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a cautious rate.", + "ruleContent": "White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a cautious rate.", "parentRuleCode": "D.4.2", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.5", "ruleContent": "WEATHER CONDITIONS", "parentRuleCode": "D", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.5.1", "ruleContent": "Operating Adjustments", "parentRuleCode": "D.5", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.5.1.1", - "ruleContent": "The organizer may alter the conduct and scoring of the competition based on weather conditions.", + "ruleContent": "The organizer may alter the conduct and scoring of the competition based on weather conditions. Version 1.0 31 Aug 2024", "parentRuleCode": "D.5.1", - "pageNumber": "130", - "isFromTOC": false + "pageNumber": "130" }, { "ruleCode": "D.5.1.2", "ruleContent": "No adjustments will be made to times for running in differing Operating Conditions.", "parentRuleCode": "D.5.1", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.5.1.3", "ruleContent": "The minimum performance levels to score points may be adjusted by the Officials.", "parentRuleCode": "D.5.1", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.5.2", "ruleContent": "Operating Conditions", "parentRuleCode": "D.5", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.5.2.1", "ruleContent": "These operating conditions will be recognized: • Dry • Damp • Wet", "parentRuleCode": "D.5.2", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.5.2.2", "ruleContent": "The current operating condition will be decided by the Officials and may change at any time.", "parentRuleCode": "D.5.2", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.5.2.3", "ruleContent": "The current operating condition will be prominently displayed at the Dynamic Area, and may be communicated by other means.", "parentRuleCode": "D.5.2", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.6", "ruleContent": "TIRES AND TIRE CHANGES", "parentRuleCode": "D", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.6.1", "ruleContent": "Tire Requirements", "parentRuleCode": "D.6", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.6.1.1", - "ruleContent": "Teams must run the tires allowed for each Operating Condition: Operating Condition Tires Allowed Dry Dry ( V.4.3.1 ) Damp Dry or Wet Wet Wet ( V.4.3.2 )", + "ruleContent": "Teams must run the tires allowed for each Operating Condition: Operating Condition Tires Allowed Dry Dry ( V.4.3.1 ) Damp Dry or Wet Wet Wet ( V.4.3.2 )", "parentRuleCode": "D.6.1", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.6.1.2", - "ruleContent": "When the operating condition is Damp, teams may change between Dry Tires and Wet Tires: a. Any time during the Acceleration, Skidpad, and Autocross Events b. Any time before starting their Endurance Event", + "ruleContent": "When the operating condition is Damp, teams may change between Dry Tires and Wet Tires:", "parentRuleCode": "D.6.1", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" + }, + { + "ruleCode": "D.6.1.2.a", + "ruleContent": "Any time during the Acceleration, Skidpad, and Autocross Events", + "parentRuleCode": "D.6.1.2", + "pageNumber": "131" + }, + { + "ruleCode": "D.6.1.2.b", + "ruleContent": "Any time before starting their Endurance Event", + "parentRuleCode": "D.6.1.2", + "pageNumber": "131" }, { "ruleCode": "D.6.2", "ruleContent": "Tire Changes during Endurance", "parentRuleCode": "D.6", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.6.2.1", "ruleContent": "All tire changes after a vehicle has received the Green flag to start the Endurance Event must occur in the Driver Change Area", "parentRuleCode": "D.6.2", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.6.2.2", "ruleContent": "If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or vehicles will be Black Flagged and brought into the Driver Change Area", "parentRuleCode": "D.6.2", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.6.2.3", "ruleContent": "The allowed tire changes and associated conditions are given in these tables. Existing Operating Condition Currently Running on: Operating Condition Changed to: Dry Damp Wet Dry Dry Tires ok A B Damp Dry Tires ok A B Damp Wet Tires C C ok Wet Wet Tires C C ok Requirement Allowed at Driver Change? A may change from Dry to Wet Yes B MUST change from Dry to Wet Yes C may change from Wet to Dry NO", "parentRuleCode": "D.6.2", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" }, { "ruleCode": "D.6.2.4", - "ruleContent": "Time allowed to change tires: a. Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 minutes with Driver Change, will be added to the team's total time for Endurance b. Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s total time for Endurance", + "ruleContent": "Time allowed to change tires: Version 1.0 31 Aug 2024", "parentRuleCode": "D.6.2", - "pageNumber": "131", - "isFromTOC": false + "pageNumber": "131" + }, + { + "ruleCode": "D.6.2.4.a", + "ruleContent": "Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 minutes with Driver Change, will be added to the team's total time for Endurance", + "parentRuleCode": "D.6.2.4", + "pageNumber": "131" + }, + { + "ruleCode": "D.6.2.4.b", + "ruleContent": "Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s total time for Endurance", + "parentRuleCode": "D.6.2.4", + "pageNumber": "131" }, { "ruleCode": "D.6.2.5", - "ruleContent": "If the vehicle has a tire puncture, a. The wheel and tire may be replaced with an identical wheel and tire b. When the puncture is caused by track debris and not a result of component failure or the vehicle itself, the tire change time will not count towards the team’s total time.", + "ruleContent": "If the vehicle has a tire puncture,", "parentRuleCode": "D.6.2", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" + }, + { + "ruleCode": "D.6.2.5.a", + "ruleContent": "The wheel and tire may be replaced with an identical wheel and tire", + "parentRuleCode": "D.6.2.5", + "pageNumber": "132" + }, + { + "ruleCode": "D.6.2.5.b", + "ruleContent": "When the puncture is caused by track debris and not a result of component failure or the vehicle itself, the tire change time will not count towards the team’s total time.", + "parentRuleCode": "D.6.2.5", + "pageNumber": "132" }, { "ruleCode": "D.7", "ruleContent": "DRIVER LIMITATIONS", "parentRuleCode": "D", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.7.1", "ruleContent": "Three Event Limit", "parentRuleCode": "D.7", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.7.1.1", "ruleContent": "An individual team member may not drive in more than three events.", "parentRuleCode": "D.7.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.7.1.2", "ruleContent": "The Efficiency Event is considered a separate event although it is conducted simultaneously with the Endurance Event. A minimum of four drivers are required to participate in all of the dynamic events.", "parentRuleCode": "D.7.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.8", "ruleContent": "DEFINITIONS", "parentRuleCode": "D", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.8.1.1", - "ruleContent": "DOO - Cone is Down or Out when one or the two: a. Cone has been knocked over (Down) b. The entire base of the cone lies outside the box marked around the cone in its undisturbed position (Out)", + "ruleContent": "DOO - Cone is Down or Out when one or the two:", "parentRuleCode": "D.8.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" + }, + { + "ruleCode": "D.8.1.1.a", + "ruleContent": "Cone has been knocked over (Down)", + "parentRuleCode": "D.8.1.1", + "pageNumber": "132" + }, + { + "ruleCode": "D.8.1.1.b", + "ruleContent": "The entire base of the cone lies outside the box marked around the cone in its undisturbed position (Out)", + "parentRuleCode": "D.8.1.1", + "pageNumber": "132" }, { "ruleCode": "D.8.1.2", "ruleContent": "DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed to complete it", "parentRuleCode": "D.8.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.8.1.3", "ruleContent": "DQ - Disqualified - run(s) or event(s) no longer valid", "parentRuleCode": "D.8.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.8.1.4", - "ruleContent": "Gate - The path between two cones through which the vehicle must pass. Two cones, one on each side of the course define a gate. Two sequential cones in a slalom define a gate.", + "ruleContent": "Gate - The path between two cones through which the vehicle must pass. Two cones, one on each side of the course define a gate. Two sequential cones in a slalom define a gate.", "parentRuleCode": "D.8.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.8.1.5", "ruleContent": "Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course.", "parentRuleCode": "D.8.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.8.1.6", "ruleContent": "Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course.", "parentRuleCode": "D.8.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.8.1.7", - "ruleContent": "OC – Off Course a. The vehicle did not pass through a gate in the required direction. b. The vehicle has all four wheels outside the course boundary as indicated by cones, edge marking or the edge of the paved surface. Where more than one boundary indicator is used on the same course, the narrowest track will be used when determining Off Course penalties.", + "ruleContent": "OC – Off Course", "parentRuleCode": "D.8.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" + }, + { + "ruleCode": "D.8.1.7.a", + "ruleContent": "The vehicle did not pass through a gate in the required direction.", + "parentRuleCode": "D.8.1.7", + "pageNumber": "132" + }, + { + "ruleCode": "D.8.1.7.b", + "ruleContent": "The vehicle has all four wheels outside the course boundary as indicated by cones, edge marking or the edge of the paved surface. Where more than one boundary indicator is used on the same course, the narrowest track will be used when determining Off Course penalties.", + "parentRuleCode": "D.8.1.7", + "pageNumber": "132" }, { "ruleCode": "D.9", "ruleContent": "ACCELERATION EVENT The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement.", "parentRuleCode": "D", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.9.1", "ruleContent": "Acceleration Layout", "parentRuleCode": "D.9", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.9.1.1", - "ruleContent": "Course length will be 75 m from starting line to finish line", + "ruleContent": "Course length will be 75 m from starting line to finish line Version 1.0 31 Aug 2024", "parentRuleCode": "D.9.1", - "pageNumber": "132", - "isFromTOC": false + "pageNumber": "132" }, { "ruleCode": "D.9.1.2", "ruleContent": "Course width will be minimum 4.9 m wide as measured between the inner edges of the bases of the course edge cones", "parentRuleCode": "D.9.1", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.1.3", "ruleContent": "Cones are put along the course edges at intervals, approximately 6 m", "parentRuleCode": "D.9.1", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.1.4", "ruleContent": "Cone locations are not marked on the pavement", "parentRuleCode": "D.9.1", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.2", "ruleContent": "Acceleration Procedure", "parentRuleCode": "D.9", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.2.1", "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver", "parentRuleCode": "D.9.2", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.2.2", "ruleContent": "Runs with the first driver have priority", "parentRuleCode": "D.9.2", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.2.3", - "ruleContent": "Each Acceleration run is done as follows: a. The foremost part of the vehicle will be staged at 0.30 m behind the starting line b. A Green Flag or light signal will give the approval to begin the run c. Timing starts when the vehicle crosses the starting line d. Timing ends when the vehicle crosses the finish line", + "ruleContent": "Each Acceleration run is done as follows:", "parentRuleCode": "D.9.2", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" + }, + { + "ruleCode": "D.9.2.3.a", + "ruleContent": "The foremost part of the vehicle will be staged at 0.30 m behind the starting line", + "parentRuleCode": "D.9.2.3", + "pageNumber": "133" + }, + { + "ruleCode": "D.9.2.3.b", + "ruleContent": "A Green Flag or light signal will give the approval to begin the run", + "parentRuleCode": "D.9.2.3", + "pageNumber": "133" + }, + { + "ruleCode": "D.9.2.3.c", + "ruleContent": "Timing starts when the vehicle crosses the starting line", + "parentRuleCode": "D.9.2.3", + "pageNumber": "133" + }, + { + "ruleCode": "D.9.2.3.d", + "ruleContent": "Timing ends when the vehicle crosses the finish line", + "parentRuleCode": "D.9.2.3", + "pageNumber": "133" }, { "ruleCode": "D.9.2.4", "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", "parentRuleCode": "D.9.2", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.3", "ruleContent": "Acceleration Penalties", "parentRuleCode": "D.9", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.3.1", "ruleContent": "Cones (DOO) Two second penalty for each DOO (including entry and exit gate cones) on that run", "parentRuleCode": "D.9.3", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.3.2", "ruleContent": "Off Course (OC) DNF for that run", "parentRuleCode": "D.9.3", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.4", "ruleContent": "Acceleration Scoring", "parentRuleCode": "D.9", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.4.1", - "ruleContent": "Scoring Term Definitions: • Corrected Time = Acceleration Run Time + ( DOO * 2 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 150% of Tmin", + "ruleContent": "Scoring Term Definitions: • Corrected Time = Acceleration Run Time + ( DOO * 2 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 150% of Tmin", "parentRuleCode": "D.9.4", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Acceleration Score = 95.5 x ( Tmax / Tyour ) -1 + 4.5 ( Tmax / Tmin ) -1", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Acceleration Score = 95.5 x ( Tmax / Tyour ) -1 + 4.5 ( Tmax / Tmin ) -1", "parentRuleCode": "D.9.4", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.9.4.3", "ruleContent": "When Tyour > Tmax , Acceleration Score = 4.5", "parentRuleCode": "D.9.4", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.10", "ruleContent": "SKIDPAD EVENT The Skidpad event measures the vehicle cornering ability on a flat surface while making a constant radius turn.", "parentRuleCode": "D", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.10.1", "ruleContent": "Skidpad Layout", "parentRuleCode": "D.10", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.10.1.1", - "ruleContent": "Course Design • Two pairs of concentric circles in a figure of eight pattern • Centers of the circles 18.25 m apart • Inner circles 15.25 m in diameter • Outer circles 21.25 m in diameter • Driving path the 3.0 m wide path between the inner and outer circles", + "ruleContent": "Course Design • Two pairs of concentric circles in a figure of eight pattern • Centers of the circles 18.25 m apart • Inner circles 15.25 m in diameter Version 1.0 31 Aug 2024 • Outer circles 21.25 m in diameter • Driving path the 3.0 m wide path between the inner and outer circles", "parentRuleCode": "D.10.1", - "pageNumber": "133", - "isFromTOC": false + "pageNumber": "133" }, { "ruleCode": "D.10.1.2", - "ruleContent": "Cone Placement a. Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) pylons will be positioned around the outside of each outer circle in the pattern shown in the Skidpad layout diagram b. Each circle will be marked with a chalk line, inside the inner circle and outside the outer circle The Skidpad layout diagram shows the circles for cone placement, not for course marking. Chalk lines are marked on the opposite side of the cones, outside the driving path c. Additional pylons will establish the entry and exit gates d. A cone may be put in the middle of the exit gate until the finish lap", + "ruleContent": "Cone Placement", "parentRuleCode": "D.10.1", - "pageNumber": "134", - "isFromTOC": false + "pageNumber": "134" + }, + { + "ruleCode": "D.10.1.2.a", + "ruleContent": "Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) pylons will be positioned around the outside of each outer circle in the pattern shown in the Skidpad layout diagram", + "parentRuleCode": "D.10.1.2", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.1.2.b", + "ruleContent": "Each circle will be marked with a chalk line, inside the inner circle and outside the outer circle The Skidpad layout diagram shows the circles for cone placement, not for course marking. Chalk lines are marked on the opposite side of the cones, outside the driving path", + "parentRuleCode": "D.10.1.2", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.1.2.c", + "ruleContent": "Additional pylons will establish the entry and exit gates", + "parentRuleCode": "D.10.1.2", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.1.2.d", + "ruleContent": "A cone may be put in the middle of the exit gate until the finish lap", + "parentRuleCode": "D.10.1.2", + "pageNumber": "134" }, { "ruleCode": "D.10.1.3", - "ruleContent": "Course Operation a. Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the circles where they meet. b. The line between the centers of the circles defines the start/stop line. c. A lap is defined as traveling around one of the circles from the start/stop line and returning to the start/stop line.", + "ruleContent": "Course Operation", "parentRuleCode": "D.10.1", - "pageNumber": "134", - "isFromTOC": false + "pageNumber": "134" + }, + { + "ruleCode": "D.10.1.3.a", + "ruleContent": "Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the circles where they meet.", + "parentRuleCode": "D.10.1.3", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.1.3.b", + "ruleContent": "The line between the centers of the circles defines the start/stop line.", + "parentRuleCode": "D.10.1.3", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.1.3.c", + "ruleContent": "A lap is defined as traveling around one of the circles from the start/stop line and returning to the start/stop line.", + "parentRuleCode": "D.10.1.3", + "pageNumber": "134" }, { "ruleCode": "D.10.2", "ruleContent": "Skidpad Procedure", "parentRuleCode": "D.10", - "pageNumber": "134", - "isFromTOC": false + "pageNumber": "134" }, { "ruleCode": "D.10.2.1", "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver.", "parentRuleCode": "D.10.2", - "pageNumber": "134", - "isFromTOC": false + "pageNumber": "134" }, { "ruleCode": "D.10.2.2", "ruleContent": "Runs with the first driver have priority", "parentRuleCode": "D.10.2", - "pageNumber": "134", - "isFromTOC": false + "pageNumber": "134" }, { "ruleCode": "D.10.2.3", - "ruleContent": "Each Skidpad run is done as follows: a. A Green Flag or light signal will give the approval to begin the run b. The vehicle will enter perpendicular to the figure eight and will take one full lap on the right circle c. The next lap will be on the right circle and will be timed d. Immediately after the second lap, the vehicle will enter the left circle for the third lap e. The fourth lap will be on the left circle and will be timed f. Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the intersection moving in the same direction as entered", + "ruleContent": "Each Skidpad run is done as follows:", "parentRuleCode": "D.10.2", - "pageNumber": "134", - "isFromTOC": false + "pageNumber": "134" + }, + { + "ruleCode": "D.10.2.3.a", + "ruleContent": "A Green Flag or light signal will give the approval to begin the run Version 1.0 31 Aug 2024", + "parentRuleCode": "D.10.2.3", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.2.3.b", + "ruleContent": "The vehicle will enter perpendicular to the figure eight and will take one full lap on the right circle", + "parentRuleCode": "D.10.2.3", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.2.3.c", + "ruleContent": "The next lap will be on the right circle and will be timed", + "parentRuleCode": "D.10.2.3", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.2.3.d", + "ruleContent": "Immediately after the second lap, the vehicle will enter the left circle for the third lap", + "parentRuleCode": "D.10.2.3", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.2.3.e", + "ruleContent": "The fourth lap will be on the left circle and will be timed", + "parentRuleCode": "D.10.2.3", + "pageNumber": "134" + }, + { + "ruleCode": "D.10.2.3.f", + "ruleContent": "Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the intersection moving in the same direction as entered", + "parentRuleCode": "D.10.2.3", + "pageNumber": "134" }, { "ruleCode": "D.10.2.4", "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", "parentRuleCode": "D.10.2", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.10.3", "ruleContent": "Skidpad Penalties", "parentRuleCode": "D.10", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.10.3.1", "ruleContent": "Cones (DOO) A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run", "parentRuleCode": "D.10.3", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.10.3.2", - "ruleContent": "Off Course (OC) DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off Course.", + "ruleContent": "Off Course (OC) DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off Course.", "parentRuleCode": "D.10.3", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.10.3.3", "ruleContent": "Incorrect Laps Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be DNF for that run.", "parentRuleCode": "D.10.3", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.10.4", "ruleContent": "Skidpad Scoring", "parentRuleCode": "D.10", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.10.4.1", - "ruleContent": "Scoring Term Definitions • Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) • Tyour - the best Corrected Time for the team • Tmin - is the lowest Corrected Time recorded for any team • Tmax - 125% of Tmin", + "ruleContent": "Scoring Term Definitions • Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) • Tyour - the best Corrected Time for the team • Tmin - is the lowest Corrected Time recorded for any team • Tmax - 125% of Tmin", "parentRuleCode": "D.10.4", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.10.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Skidpad Score = 71.5 x ( Tmax / Tyour ) -1 + 3.5 ( Tmax / Tmin ) -1", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Skidpad Score = 71.5 x ( Tmax / Tyour ) 2 -1 + 3.5 ( Tmax / Tmin ) 2 -1", "parentRuleCode": "D.10.4", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.10.4.3", "ruleContent": "When Tyour > Tmax , Skidpad Score = 3.5", "parentRuleCode": "D.10.4", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.11", "ruleContent": "AUTOCROSS EVENT The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight course", "parentRuleCode": "D", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.11.1", "ruleContent": "Autocross Layout", "parentRuleCode": "D.11", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" }, { "ruleCode": "D.11.1.1", - "ruleContent": "The Autocross course will be designed with these specifications. Average speeds should be 40 km/hr to 48 km/hr a. Straights: No longer than 60 m with hairpins at the two ends b. Straights: No longer than 45 m with wide turns on the ends c. Constant Turns: 23 m to 45 m diameter d. Hairpin Turns: 9 m minimum outside diameter (of the turn) e. Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. g. Minimum track width: 3.5 m h. Length of each run should be approximately 0.80 km", + "ruleContent": "The Autocross course will be designed with these specifications. Average speeds should be 40 km/hr to 48 km/hr", "parentRuleCode": "D.11.1", - "pageNumber": "135", - "isFromTOC": false + "pageNumber": "135" + }, + { + "ruleCode": "D.11.1.1.a", + "ruleContent": "Straights: No longer than 60 m with hairpins at the two ends", + "parentRuleCode": "D.11.1.1", + "pageNumber": "135" + }, + { + "ruleCode": "D.11.1.1.b", + "ruleContent": "Straights: No longer than 45 m with wide turns on the ends", + "parentRuleCode": "D.11.1.1", + "pageNumber": "135" + }, + { + "ruleCode": "D.11.1.1.c", + "ruleContent": "Constant Turns: 23 m to 45 m diameter", + "parentRuleCode": "D.11.1.1", + "pageNumber": "135" + }, + { + "ruleCode": "D.11.1.1.d", + "ruleContent": "Hairpin Turns: 9 m minimum outside diameter (of the turn) Version 1.0 31 Aug 2024", + "parentRuleCode": "D.11.1.1", + "pageNumber": "135" + }, + { + "ruleCode": "D.11.1.1.e", + "ruleContent": "Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing", + "parentRuleCode": "D.11.1.1", + "pageNumber": "135" + }, + { + "ruleCode": "D.11.1.1.f", + "ruleContent": "Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc.", + "parentRuleCode": "D.11.1.1", + "pageNumber": "135" + }, + { + "ruleCode": "D.11.1.1.g", + "ruleContent": "Minimum track width: 3.5 m", + "parentRuleCode": "D.11.1.1", + "pageNumber": "135" + }, + { + "ruleCode": "D.11.1.1.h", + "ruleContent": "Length of each run should be approximately 0.80 km", + "parentRuleCode": "D.11.1.1", + "pageNumber": "135" }, { "ruleCode": "D.11.1.2", "ruleContent": "The Autocross course specifications may deviate from the above to accommodate event site requirements.", "parentRuleCode": "D.11.1", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.2", "ruleContent": "Autocross Procedure", "parentRuleCode": "D.11", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.2.1", "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver", "parentRuleCode": "D.11.2", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.2.2", "ruleContent": "Runs with the first driver have priority", "parentRuleCode": "D.11.2", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.2.3", - "ruleContent": "Each Autocross run is done as follows: a. The vehicle will be staged at a specific distance behind the starting line b. A Green Flag or light signal will give the approval to begin the run c. Timing starts when the vehicle crosses the starting line d. Timing ends when the vehicle crosses the finish line", + "ruleContent": "Each Autocross run is done as follows:", "parentRuleCode": "D.11.2", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" + }, + { + "ruleCode": "D.11.2.3.a", + "ruleContent": "The vehicle will be staged at a specific distance behind the starting line", + "parentRuleCode": "D.11.2.3", + "pageNumber": "136" + }, + { + "ruleCode": "D.11.2.3.b", + "ruleContent": "A Green Flag or light signal will give the approval to begin the run", + "parentRuleCode": "D.11.2.3", + "pageNumber": "136" + }, + { + "ruleCode": "D.11.2.3.c", + "ruleContent": "Timing starts when the vehicle crosses the starting line", + "parentRuleCode": "D.11.2.3", + "pageNumber": "136" + }, + { + "ruleCode": "D.11.2.3.d", + "ruleContent": "Timing ends when the vehicle crosses the finish line", + "parentRuleCode": "D.11.2.3", + "pageNumber": "136" }, { "ruleCode": "D.11.2.4", "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", "parentRuleCode": "D.11.2", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.3", "ruleContent": "Autocross Penalties", "parentRuleCode": "D.11", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.3.1", "ruleContent": "Cones (DOO) Two second penalty for each DOO (including cones after the finish line) on that run", "parentRuleCode": "D.11.3", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.3.2", - "ruleContent": "Off Course (OC) a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or receive a 20 second penalty b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of track officials.", + "ruleContent": "Off Course (OC)", "parentRuleCode": "D.11.3", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" + }, + { + "ruleCode": "D.11.3.2.a", + "ruleContent": "When an OC occurs, the driver must reenter the track at or prior to the point of exit or receive a 20 second penalty", + "parentRuleCode": "D.11.3.2", + "pageNumber": "136" + }, + { + "ruleCode": "D.11.3.2.b", + "ruleContent": "Penalties will not be assessed to bypass an accident or other reasons at the discretion of track officials.", + "parentRuleCode": "D.11.3.2", + "pageNumber": "136" }, { "ruleCode": "D.11.3.3", "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one Off Course", "parentRuleCode": "D.11.3", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.4", "ruleContent": "Autocross Scoring", "parentRuleCode": "D.11", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.4.1", - "ruleContent": "Scoring Term Definitions: • Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 145% of Tmin", + "ruleContent": "Scoring Term Definitions: • Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 145% of Tmin", "parentRuleCode": "D.11.4", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Autocross Score = 118.5 x ( Tmax / Tyour ) -1 + 6.5 ( Tmax / Tmin ) -1", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Autocross Score = 118.5 x ( Tmax / Tyour ) -1 + 6.5 ( Tmax / Tmin ) -1", "parentRuleCode": "D.11.4", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.11.4.3", - "ruleContent": "When Tyour > Tmax , Autocross Score = 6.5", + "ruleContent": "When Tyour > Tmax , Autocross Score = 6.5 Version 1.0 31 Aug 2024", "parentRuleCode": "D.11.4", - "pageNumber": "136", - "isFromTOC": false + "pageNumber": "136" }, { "ruleCode": "D.12", "ruleContent": "ENDURANCE EVENT The Endurance event evaluates the overall performance of the vehicle and tests the durability and reliability.", "parentRuleCode": "D", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.1", "ruleContent": "Endurance General Information", "parentRuleCode": "D.12", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.1.1", "ruleContent": "The organizer may establish one or more requirements to allow teams to compete in the Endurance event.", "parentRuleCode": "D.12.1", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.1.2", "ruleContent": "Each team may attempt the Endurance event once.", "parentRuleCode": "D.12.1", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.1.3", "ruleContent": "The Endurance event consists of two Endurance runs, each using a different driver, with a Driver Change between.", "parentRuleCode": "D.12.1", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.1.4", "ruleContent": "Teams may not work on their vehicles once their Endurance event has started", "parentRuleCode": "D.12.1", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.1.5", "ruleContent": "Multiple vehicles may be on the track at the same time", "parentRuleCode": "D.12.1", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.1.6", "ruleContent": "Wheel to Wheel racing is prohibited.", "parentRuleCode": "D.12.1", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.1.7", "ruleContent": "Vehicles must not be driven in reverse", "parentRuleCode": "D.12.1", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.2", "ruleContent": "Endurance Layout", "parentRuleCode": "D.12", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.2.1", "ruleContent": "The Endurance event will consist of multiple laps over a closed course to a total distance of approximately 22 km.", "parentRuleCode": "D.12.2", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.2.2", - "ruleContent": "The Endurance course will be designed with these specifications. Average speed should be 48 km/hr to 57 km/hr with top speeds of approximately 105 km/hr. a. Straights: No longer than 77 m with hairpins at the two ends b. Straights: No longer than 61 m with wide turns on the ends c. Constant Turns: 30 m to 54 m diameter d. Hairpin Turns: 9 m minimum outside diameter (of the turn) e. Slaloms: Cones in a straight line with 9 m to 15 m spacing f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. g. Minimum track width: 4.5 m h. Designated passing zones at several locations", + "ruleContent": "The Endurance course will be designed with these specifications. Average speed should be 48 km/hr to 57 km/hr with top speeds of approximately 105 km/hr.", "parentRuleCode": "D.12.2", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" + }, + { + "ruleCode": "D.12.2.2.a", + "ruleContent": "Straights: No longer than 77 m with hairpins at the two ends", + "parentRuleCode": "D.12.2.2", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.2.2.b", + "ruleContent": "Straights: No longer than 61 m with wide turns on the ends", + "parentRuleCode": "D.12.2.2", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.2.2.c", + "ruleContent": "Constant Turns: 30 m to 54 m diameter", + "parentRuleCode": "D.12.2.2", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.2.2.d", + "ruleContent": "Hairpin Turns: 9 m minimum outside diameter (of the turn)", + "parentRuleCode": "D.12.2.2", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.2.2.e", + "ruleContent": "Slaloms: Cones in a straight line with 9 m to 15 m spacing", + "parentRuleCode": "D.12.2.2", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.2.2.f", + "ruleContent": "Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc.", + "parentRuleCode": "D.12.2.2", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.2.2.g", + "ruleContent": "Minimum track width: 4.5 m", + "parentRuleCode": "D.12.2.2", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.2.2.h", + "ruleContent": "Designated passing zones at several locations", + "parentRuleCode": "D.12.2.2", + "pageNumber": "137" }, { "ruleCode": "D.12.2.3", "ruleContent": "The Endurance course specifications may deviate from the above to accommodate event site requirements.", "parentRuleCode": "D.12.2", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.3", "ruleContent": "Endurance Run Order The Endurance Run Order is established to let vehicles of similar speed potential be on track together to reduce the need for passing.", "parentRuleCode": "D.12", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.3.1", - "ruleContent": "The Endurance Run Order: a. Should be primarily based on the Autocross event finish order b. Should include the teams eligible for Endurance which did not compete in the Autocross event. c. May be altered by the organizer to accommodate specific circumstances or event considerations", + "ruleContent": "The Endurance Run Order:", "parentRuleCode": "D.12.3", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" + }, + { + "ruleCode": "D.12.3.1.a", + "ruleContent": "Should be primarily based on the Autocross event finish order", + "parentRuleCode": "D.12.3.1", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.3.1.b", + "ruleContent": "Should include the teams eligible for Endurance which did not compete in the Autocross event.", + "parentRuleCode": "D.12.3.1", + "pageNumber": "137" + }, + { + "ruleCode": "D.12.3.1.c", + "ruleContent": "May be altered by the organizer to accommodate specific circumstances or event considerations", + "parentRuleCode": "D.12.3.1", + "pageNumber": "137" }, { "ruleCode": "D.12.3.2", - "ruleContent": "Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line and prepared to start when their turn to run arrives.", + "ruleContent": "Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line and prepared to start when their turn to run arrives. Version 1.0 31 Aug 2024", "parentRuleCode": "D.12.3", - "pageNumber": "137", - "isFromTOC": false + "pageNumber": "137" }, { "ruleCode": "D.12.4", "ruleContent": "Endurance Vehicle Starting / Restarting", "parentRuleCode": "D.12", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.4.1", - "ruleContent": "Teams that are not ready to run or cannot start their Endurance event in the allowed time when their turn in the Run Order arrives: a. Get a time penalty (D.12.12.5) b. May then run at the discretion of the Officials", + "ruleContent": "Teams that are not ready to run or cannot start their Endurance event in the allowed time when their turn in the Run Order arrives:", "parentRuleCode": "D.12.4", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" + }, + { + "ruleCode": "D.12.4.1.a", + "ruleContent": "Get a time penalty (D.12.12.5)", + "parentRuleCode": "D.12.4.1", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.4.1.b", + "ruleContent": "May then run at the discretion of the Officials", + "parentRuleCode": "D.12.4.1", + "pageNumber": "138" }, { "ruleCode": "D.12.4.2", - "ruleContent": "After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) restart the engine or to (EV) enter Ready to Drive EV.9.5 a. The time will start when the driver first tries to restart the engine or to enable the Tractive System b. The time to attempt start / restart is not counted towards the Endurance time", + "ruleContent": "After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) restart the engine or to (EV) enter Ready to Drive EV.9.5", "parentRuleCode": "D.12.4", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" + }, + { + "ruleCode": "D.12.4.2.a", + "ruleContent": "The time will start when the driver first tries to restart the engine or to enable the Tractive System", + "parentRuleCode": "D.12.4.2", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.4.2.b", + "ruleContent": "The time to attempt start / restart is not counted towards the Endurance time", + "parentRuleCode": "D.12.4.2", + "pageNumber": "138" }, { "ruleCode": "D.12.4.3", - "ruleContent": "If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it (approximately 60 seconds) to restart. This time counts toward the Endurance time.", + "ruleContent": "If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it (approximately 60 seconds) to restart. This time counts toward the Endurance time.", "parentRuleCode": "D.12.4", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.4.4", "ruleContent": "If starts / restarts are not accomplished in the above times, the vehicle may be DNF.", "parentRuleCode": "D.12.4", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.5", "ruleContent": "Endurance Event Procedure", "parentRuleCode": "D.12", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.5.1", "ruleContent": "Vehicles will be staged per the Endurance Run Order", "parentRuleCode": "D.12.5", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.5.2", - "ruleContent": "Endurance Event sequence: a. The first driver will do an Endurance Run per D.12.6 below b. The Driver Change must then be done per D.12.8 below c. The second driver will do an Endurance Run per D.12.6 below", + "ruleContent": "Endurance Event sequence:", "parentRuleCode": "D.12.5", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" + }, + { + "ruleCode": "D.12.5.2.a", + "ruleContent": "The first driver will do an Endurance Run per D.12.6 below", + "parentRuleCode": "D.12.5.2", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.5.2.b", + "ruleContent": "The Driver Change must then be done per D.12.8 below", + "parentRuleCode": "D.12.5.2", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.5.2.c", + "ruleContent": "The second driver will do an Endurance Run per D.12.6 below", + "parentRuleCode": "D.12.5.2", + "pageNumber": "138" }, { "ruleCode": "D.12.5.3", "ruleContent": "The Endurance Event is complete when the two: • The team has completed the specified number of laps • The second driver crosses the finish line", "parentRuleCode": "D.12.5", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.6", "ruleContent": "Endurance Run Procedure", "parentRuleCode": "D.12", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.6.1", "ruleContent": "A Green Flag or light signal will give the approval to begin the run", "parentRuleCode": "D.12.6", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.6.2", "ruleContent": "The driver will drive approximately half of the Endurance distance", "parentRuleCode": "D.12.6", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.6.3", "ruleContent": "A Checkered Flag will be displayed", "parentRuleCode": "D.12.6", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.6.4", "ruleContent": "The vehicle must exit the track into the Driver Change Area", "parentRuleCode": "D.12.6", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.7", "ruleContent": "Driver Change Limitations", "parentRuleCode": "D.12", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" }, { "ruleCode": "D.12.7.1", - "ruleContent": "The team may bring only these items into the Driver Change Area: a. Three team members, including the driver or drivers b. (EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers. c. Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires Team members may only carry tools by hand (no carts, tool chests etc) d. Each extra person entering the Driver Change Area: 20 point penalty", + "ruleContent": "The team may bring only these items into the Driver Change Area:", "parentRuleCode": "D.12.7", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" + }, + { + "ruleCode": "D.12.7.1.a", + "ruleContent": "Three team members, including the driver or drivers", + "parentRuleCode": "D.12.7.1", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.7.1.b", + "ruleContent": "(EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers.", + "parentRuleCode": "D.12.7.1", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.7.1.c", + "ruleContent": "Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires Team members may only carry tools by hand (no carts, tool chests etc)", + "parentRuleCode": "D.12.7.1", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.7.1.d", + "ruleContent": "Each extra person entering the Driver Change Area: 20 point penalty", + "parentRuleCode": "D.12.7.1", + "pageNumber": "138" }, { "ruleCode": "D.12.7.2", - "ruleContent": "The only work permitted during Driver Change is: a. Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons EV.7.10 b. Adjustments to fit the driver IN.14.2.2 c. Tire changes per D.6.2", + "ruleContent": "The only work permitted during Driver Change is:", "parentRuleCode": "D.12.7", - "pageNumber": "138", - "isFromTOC": false + "pageNumber": "138" + }, + { + "ruleCode": "D.12.7.2.a", + "ruleContent": "Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons EV.7.10", + "parentRuleCode": "D.12.7.2", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.7.2.b", + "ruleContent": "Adjustments to fit the driver IN.14.2.2", + "parentRuleCode": "D.12.7.2", + "pageNumber": "138" + }, + { + "ruleCode": "D.12.7.2.c", + "ruleContent": "Tire changes per D.6.2 Version 1.0 31 Aug 2024", + "parentRuleCode": "D.12.7.2", + "pageNumber": "138" }, { "ruleCode": "D.12.8", "ruleContent": "Driver Change Procedure", "parentRuleCode": "D.12", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.8.1", - "ruleContent": "The Driver Change will be done in this sequence: a. Vehicle will stop in Driver Change Area b. First Driver turns off the engine / Tractive System. Driver Change time starts. c. First Driver exits the vehicle d. Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2 e. Second Driver is secured in the vehicle f. Second Driver is ready to start the engine / enable the Tractive System. Driver Change time stops. g. Second Driver receives permission to continue h. The vehicle engine is started or Tractive System enabled. See D.12.4 i. The vehicle stages to go back onto course, at the direction of the event officials", + "ruleContent": "The Driver Change will be done in this sequence:", "parentRuleCode": "D.12.8", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.a", + "ruleContent": "Vehicle will stop in Driver Change Area", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.b", + "ruleContent": "First Driver turns off the engine / Tractive System. Driver Change time starts.", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.c", + "ruleContent": "First Driver exits the vehicle", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.d", + "ruleContent": "Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.e", + "ruleContent": "Second Driver is secured in the vehicle", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.f", + "ruleContent": "Second Driver is ready to start the engine / enable the Tractive System. Driver Change time stops.", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.g", + "ruleContent": "Second Driver receives permission to continue", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.h", + "ruleContent": "The vehicle engine is started or Tractive System enabled. See D.12.4", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.1.i", + "ruleContent": "The vehicle stages to go back onto course, at the direction of the event officials", + "parentRuleCode": "D.12.8.1", + "pageNumber": "139" }, { "ruleCode": "D.12.8.2", - "ruleContent": "Three minutes are allowed for the team to complete the Driver Change a. Any additional time for inspection of the vehicle and the Driver Equipment is not included in the Driver Change time b. Time in excess of the allowed will be added to the team Endurance time", + "ruleContent": "Three minutes are allowed for the team to complete the Driver Change", "parentRuleCode": "D.12.8", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.2.a", + "ruleContent": "Any additional time for inspection of the vehicle and the Driver Equipment is not included in the Driver Change time", + "parentRuleCode": "D.12.8.2", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.8.2.b", + "ruleContent": "Time in excess of the allowed will be added to the team Endurance time", + "parentRuleCode": "D.12.8.2", + "pageNumber": "139" }, { "ruleCode": "D.12.8.3", "ruleContent": "The Driver Change Area will be in a location where the timing system will see the Driver Change as a long lap which will be deleted from the total time", "parentRuleCode": "D.12.8", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.9", "ruleContent": "Breakdowns & Stalls", "parentRuleCode": "D.12", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.9.1", "ruleContent": "If a vehicle breaks down or cannot restart, it will be removed from the course by track workers and scored DNF", "parentRuleCode": "D.12.9", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.9.2", "ruleContent": "If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 and D.12.4", "parentRuleCode": "D.12.9", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.10", "ruleContent": "Endurance Event – Black Flags", "parentRuleCode": "D.12", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.10.1", "ruleContent": "A Black Flag will be shown at the designated location", "parentRuleCode": "D.12.10", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.10.2", "ruleContent": "The vehicle must pull into the Driver Change Area at the first opportunity", "parentRuleCode": "D.12.10", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.10.3", "ruleContent": "The amount of time spent in the Driver Change Area is at the discretion of the officials.", "parentRuleCode": "D.12.10", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.10.4", - "ruleContent": "Driving Black Flag a. May be shown for any reason such as aggressive driving, failing to obey signals, not yielding for passing, not driving inside the designated course, etc. b. Course officials will discuss the situation with the driver c. The time spent in Black Flag or a time penalty may be included in the Endurance Run time. d. If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or during post event review, officials may impose a penalty D.14.2", + "ruleContent": "Driving Black Flag", "parentRuleCode": "D.12.10", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" + }, + { + "ruleCode": "D.12.10.4.a", + "ruleContent": "May be shown for any reason such as aggressive driving, failing to obey signals, not yielding for passing, not driving inside the designated course, etc.", + "parentRuleCode": "D.12.10.4", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.10.4.b", + "ruleContent": "Course officials will discuss the situation with the driver", + "parentRuleCode": "D.12.10.4", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.10.4.c", + "ruleContent": "The time spent in Black Flag or a time penalty may be included in the Endurance Run time.", + "parentRuleCode": "D.12.10.4", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.10.4.d", + "ruleContent": "If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or during post event review, officials may impose a penalty D.14.2", + "parentRuleCode": "D.12.10.4", + "pageNumber": "139" }, { "ruleCode": "D.12.10.5", - "ruleContent": "Mechanical Black Flag a. May be shown for any reason to question the vehicle condition b. Time spent off track is not included in the Endurance Run time.", + "ruleContent": "Mechanical Black Flag", "parentRuleCode": "D.12.10", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" + }, + { + "ruleCode": "D.12.10.5.a", + "ruleContent": "May be shown for any reason to question the vehicle condition", + "parentRuleCode": "D.12.10.5", + "pageNumber": "139" + }, + { + "ruleCode": "D.12.10.5.b", + "ruleContent": "Time spent off track is not included in the Endurance Run time.", + "parentRuleCode": "D.12.10.5", + "pageNumber": "139" }, { "ruleCode": "D.12.10.6", - "ruleContent": "Based on the inspection or discussion during a Black Flag period, the vehicle may not be allowed to continue the Endurance Run and will be scored DNF", + "ruleContent": "Based on the inspection or discussion during a Black Flag period, the vehicle may not be allowed to continue the Endurance Run and will be scored DNF Version 1.0 31 Aug 2024", "parentRuleCode": "D.12.10", - "pageNumber": "139", - "isFromTOC": false + "pageNumber": "139" }, { "ruleCode": "D.12.11", "ruleContent": "Endurance Event – Passing", "parentRuleCode": "D.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.11.1", "ruleContent": "Passing during Endurance may only be done in the designated passing zones, under the control of the track officials.", "parentRuleCode": "D.12.11", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.11.2", "ruleContent": "Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and a fast lane for vehicles that are making a pass.", "parentRuleCode": "D.12.11", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.11.3", - "ruleContent": "When a pass is to be made: a. A slower leading vehicle gets a Blue Flag b. The slower vehicle must move into the slow lane and decelerate c. The faster vehicle will continue in the fast lane and make the pass d. The vehicle that had been passed may reenter traffic only under the control of the passing zone exit flag", + "ruleContent": "When a pass is to be made:", "parentRuleCode": "D.12.11", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" + }, + { + "ruleCode": "D.12.11.3.a", + "ruleContent": "A slower leading vehicle gets a Blue Flag", + "parentRuleCode": "D.12.11.3", + "pageNumber": "140" + }, + { + "ruleCode": "D.12.11.3.b", + "ruleContent": "The slower vehicle must move into the slow lane and decelerate", + "parentRuleCode": "D.12.11.3", + "pageNumber": "140" + }, + { + "ruleCode": "D.12.11.3.c", + "ruleContent": "The faster vehicle will continue in the fast lane and make the pass", + "parentRuleCode": "D.12.11.3", + "pageNumber": "140" + }, + { + "ruleCode": "D.12.11.3.d", + "ruleContent": "The vehicle that had been passed may reenter traffic only under the control of the passing zone exit flag", + "parentRuleCode": "D.12.11.3", + "pageNumber": "140" }, { "ruleCode": "D.12.11.4", - "ruleContent": "Passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", + "ruleContent": "Passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", "parentRuleCode": "D.12.11", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.12", "ruleContent": "Endurance Penalties", "parentRuleCode": "D.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.12.1", "ruleContent": "Cones (DOO) Two second penalty for each DOO (including cones after the finish line) on that run", "parentRuleCode": "D.12.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.12.2", - "ruleContent": "Off Course (OC) a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or receive a 20 second penalty b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of track officials.", + "ruleContent": "Off Course (OC)", "parentRuleCode": "D.12.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" + }, + { + "ruleCode": "D.12.12.2.a", + "ruleContent": "When an OC occurs, the driver must reenter the track at or prior to the point of exit or receive a 20 second penalty", + "parentRuleCode": "D.12.12.2", + "pageNumber": "140" + }, + { + "ruleCode": "D.12.12.2.b", + "ruleContent": "Penalties will not be assessed to bypass an accident or other reasons at the discretion of track officials.", + "parentRuleCode": "D.12.12.2", + "pageNumber": "140" }, { "ruleCode": "D.12.12.3", "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one Off Course", "parentRuleCode": "D.12.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.12.4", - "ruleContent": "Penalties for Moving or Post Event Violations a. Black Flag penalties per D.12.10, if applicable b. Post Event Inspection penalties per D.14.2, if applicable", + "ruleContent": "Penalties for Moving or Post Event Violations", "parentRuleCode": "D.12.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" + }, + { + "ruleCode": "D.12.12.4.a", + "ruleContent": "Black Flag penalties per D.12.10, if applicable", + "parentRuleCode": "D.12.12.4", + "pageNumber": "140" + }, + { + "ruleCode": "D.12.12.4.b", + "ruleContent": "Post Event Inspection penalties per D.14.2, if applicable", + "parentRuleCode": "D.12.12.4", + "pageNumber": "140" }, { "ruleCode": "D.12.12.5", "ruleContent": "Endurance Starting (D.12.4.1) Two minutes (120 seconds) penalty", "parentRuleCode": "D.12.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.12.6", "ruleContent": "Vehicle Operation The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for any reason including driver inexperience or mechanical problems, it is too slow or being driven in a manner that demonstrates an inability to properly control.", "parentRuleCode": "D.12.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.13", "ruleContent": "Endurance Scoring", "parentRuleCode": "D.12", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.13.1", - "ruleContent": "Scoring Term Definitions: • Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 • Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 145% of Tmin", + "ruleContent": "Scoring Term Definitions: • Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 • Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team Version 1.0 31 Aug 2024 • Tmax - 145% of Tmin", "parentRuleCode": "D.12.13", - "pageNumber": "140", - "isFromTOC": false + "pageNumber": "140" }, { "ruleCode": "D.12.13.2", - "ruleContent": "The vehicle must complete the Endurance Event to receive a score based on their Corrected Time a. If Tyour < Tmax, the team score is calculated as: Endurance Time Score = 250 x ( Tmax / Tyour ) -1 ( Tmax / Tmin ) -1 b. If Tyour > Tmax, Endurance Time Score = 0", + "ruleContent": "The vehicle must complete the Endurance Event to receive a score based on their Corrected Time", "parentRuleCode": "D.12.13", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" + }, + { + "ruleCode": "D.12.13.2.a", + "ruleContent": "If Tyour < Tmax, the team score is calculated as: Endurance Time Score = 250 x ( Tmax / Tyour ) -1 ( Tmax / Tmin ) -1", + "parentRuleCode": "D.12.13.2", + "pageNumber": "141" + }, + { + "ruleCode": "D.12.13.2.b", + "ruleContent": "If Tyour > Tmax, Endurance Time Score = 0", + "parentRuleCode": "D.12.13.2", + "pageNumber": "141" }, { "ruleCode": "D.12.13.3", "ruleContent": "The vehicle receives points based on the laps and/or parts of Endurance completed. The Endurance Laps Score is worth up to 25 points", "parentRuleCode": "D.12.13", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.12.13.4", "ruleContent": "The Endurance Score is calculated as: Endurance Score = Endurance Time Score + Endurance Laps Score", "parentRuleCode": "D.12.13", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13", "ruleContent": "EFFICIENCY EVENT The Efficiency event evaluates the fuel/energy used to complete the Endurance event", "parentRuleCode": "D", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13.1", "ruleContent": "Efficiency General Information", "parentRuleCode": "D.13", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13.1.1", "ruleContent": "The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap time on the endurance course, averaged over the length of the event.", "parentRuleCode": "D.13.1", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13.1.2", - "ruleContent": "The Efficiency score is based only on the distance the vehicle runs on the course during the Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy will be made.", + "ruleContent": "The Efficiency score is based only on the distance the vehicle runs on the course during the Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy will be made.", "parentRuleCode": "D.13.1", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13.2", "ruleContent": "Efficiency Procedure", "parentRuleCode": "D.13", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13.2.1", - "ruleContent": "For IC vehicles: a. The fuel tank must be filled to the fuel level line (IC.5.4.5) b. During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, or the entire vehicle is allowed.", + "ruleContent": "For IC vehicles:", "parentRuleCode": "D.13.2", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" + }, + { + "ruleCode": "D.13.2.1.a", + "ruleContent": "The fuel tank must be filled to the fuel level line (IC.5.4.5)", + "parentRuleCode": "D.13.2.1", + "pageNumber": "141" + }, + { + "ruleCode": "D.13.2.1.b", + "ruleContent": "During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, or the entire vehicle is allowed.", + "parentRuleCode": "D.13.2.1", + "pageNumber": "141" }, { "ruleCode": "D.13.2.2", "ruleContent": "(EV only) The vehicle may be fully charged", "parentRuleCode": "D.13.2", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13.2.3", "ruleContent": "The vehicle will then compete in the Endurance event, refer to D.12.5", "parentRuleCode": "D.13.2", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13.2.4", "ruleContent": "Vehicles must power down after leaving the course and be pushed to the fueling station or data download area", "parentRuleCode": "D.13.2", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" }, { "ruleCode": "D.13.2.5", - "ruleContent": "For Internal Combustion vehicles (IC): a. The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. IC.5.5.1 b. If the fuel level changes after refuelling: • Additional fuel will be added to return the fuel tank level to the fuel level line. • Twice this amount will be added to the previously measured fuel consumption c. If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the Fuel Tank will not be refilled D.13.3.4", + "ruleContent": "For Internal Combustion vehicles (IC):", "parentRuleCode": "D.13.2", - "pageNumber": "141", - "isFromTOC": false + "pageNumber": "141" + }, + { + "ruleCode": "D.13.2.5.a", + "ruleContent": "The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. IC.5.5.1", + "parentRuleCode": "D.13.2.5", + "pageNumber": "141" + }, + { + "ruleCode": "D.13.2.5.b", + "ruleContent": "If the fuel level changes after refuelling: • Additional fuel will be added to return the fuel tank level to the fuel level line. • Twice this amount will be added to the previously measured fuel consumption", + "parentRuleCode": "D.13.2.5", + "pageNumber": "141" + }, + { + "ruleCode": "D.13.2.5.c", + "ruleContent": "If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the Fuel Tank will not be refilled D.13.3.4 Version 1.0 31 Aug 2024", + "parentRuleCode": "D.13.2.5", + "pageNumber": "141" }, { "ruleCode": "D.13.2.6", - "ruleContent": "For Electric Vehicles (EV): a. Energy Meter data must be downloaded to measure energy used and check for Violations EV.3.3 b. Penalties will be applied per EV.3.5 and/or D.13.3.4", + "ruleContent": "For Electric Vehicles (EV):", "parentRuleCode": "D.13.2", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" + }, + { + "ruleCode": "D.13.2.6.a", + "ruleContent": "Energy Meter data must be downloaded to measure energy used and check for Violations EV.3.3", + "parentRuleCode": "D.13.2.6", + "pageNumber": "142" + }, + { + "ruleCode": "D.13.2.6.b", + "ruleContent": "Penalties will be applied per EV.3.5 and/or D.13.3.4", + "parentRuleCode": "D.13.2.6", + "pageNumber": "142" }, { "ruleCode": "D.13.3", "ruleContent": "Efficiency Eligibility", "parentRuleCode": "D.13", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.3.1", "ruleContent": "Maximum Time Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance laptime of the fastest team that completes the Endurance event get zero points", "parentRuleCode": "D.13.3", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.3.2", "ruleContent": "Maximum Fuel/Energy Used Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap exceeds the values in D.13.4.5 get zero points", "parentRuleCode": "D.13.3", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.3.3", - "ruleContent": "Partial Completion of Endurance a. Vehicles which cross the start line after Driver Change are eligible for Efficiency points b. Other vehicles get zero points", + "ruleContent": "Partial Completion of Endurance", "parentRuleCode": "D.13.3", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" + }, + { + "ruleCode": "D.13.3.3.a", + "ruleContent": "Vehicles which cross the start line after Driver Change are eligible for Efficiency points", + "parentRuleCode": "D.13.3.3", + "pageNumber": "142" + }, + { + "ruleCode": "D.13.3.3.b", + "ruleContent": "Other vehicles get zero points", + "parentRuleCode": "D.13.3.3", + "pageNumber": "142" }, { "ruleCode": "D.13.3.4", "ruleContent": "Cannot Measure Fuel/Energy Used The vehicle gets zero points", "parentRuleCode": "D.13.3", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.4", "ruleContent": "Efficiency Scoring", "parentRuleCode": "D.13", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.4.1", - "ruleContent": "Conversion Factors Each fuel or energy used is converted using the factors: a. Gasoline / Petrol 2.31 kg of CO per liter b. E85 1.65 kg of CO per liter c. Electric 0.65 kg of CO per kWh", + "ruleContent": "Conversion Factors Each fuel or energy used is converted using the factors:", "parentRuleCode": "D.13.4", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" + }, + { + "ruleCode": "D.13.4.1.a", + "ruleContent": "Gasoline / Petrol 2.31 kg of CO 2 per liter", + "parentRuleCode": "D.13.4.1", + "pageNumber": "142" + }, + { + "ruleCode": "D.13.4.1.b", + "ruleContent": "E85 1.65 kg of CO 2 per liter", + "parentRuleCode": "D.13.4.1", + "pageNumber": "142" + }, + { + "ruleCode": "D.13.4.1.c", + "ruleContent": "Electric 0.65 kg of CO 2 per kWh", + "parentRuleCode": "D.13.4.1", + "pageNumber": "142" }, { "ruleCode": "D.13.4.2", "ruleContent": "(EV only) Full credit is given for energy recovered through regenerative braking", "parentRuleCode": "D.13.4", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.4.3", - "ruleContent": "Scoring Term Definitions: • CO min - the smallest mass of CO used by any competitor who is eligible for Efficiency • CO your - the mass of CO used by the team being scored • Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency • Tyour - same as Endurance (D.12.13.1) • Lapyours - the number of laps driven by the team being scored • Laptotal Tmin and Latptotal CO min - be the number of laps completed by the teams which set Tmin and CO min, respectively", + "ruleContent": "Scoring Term Definitions: • CO 2 min - the smallest mass of CO 2 used by any competitor who is eligible for Efficiency • CO 2 your - the mass of CO 2 used by the team being scored • Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency • Tyour - same as Endurance (D.12.13.1) • Lapyours - the number of laps driven by the team being scored • Laptotal Tmin and Latptotal CO 2 min - be the number of laps completed by the teams which set Tmin and CO 2 min, respectively", "parentRuleCode": "D.13.4", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.4.4", - "ruleContent": "The Efficiency Factor is calculated by: Efficiency Factor = Tmin / LapTotal Tmin X CO min / LapTotal CO min Tyours / Lap yours CO your / Lap yours", + "ruleContent": "The Efficiency Factor is calculated by: Efficiency Factor = Tmin / LapTotal Tmin X CO 2 min / LapTotal CO 2 min Tyours / Lap yours CO 2 your / Lap yours", "parentRuleCode": "D.13.4", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.4.5", - "ruleContent": "EfficiencyFactor min is calculated using the above formula with: • CO your (IC) equivalent to 60.06 kg CO /100km (based on gasoline 26 ltr/100km) • CO your (EV) equivalent to 20.02 kg CO /100km • Tyour 1.45 times Tmin", + "ruleContent": "EfficiencyFactor min is calculated using the above formula with: • CO 2 your (IC) equivalent to 60.06 kg CO 2 /100km (based on gasoline 26 ltr/100km) • CO 2 your (EV) equivalent to 20.02 kg CO 2 /100km • Tyour 1.45 times Tmin Version 1.0 31 Aug 2024", "parentRuleCode": "D.13.4", - "pageNumber": "142", - "isFromTOC": false + "pageNumber": "142" }, { "ruleCode": "D.13.4.6", - "ruleContent": "When the team is eligible for Efficiency. the team score is calculated as: Efficiency Score = 100 x Efficiency Factor your - Efficiency Factor min Efficiency Factor max - Efficiency Factor min", + "ruleContent": "When the team is eligible for Efficiency. the team score is calculated as: Efficiency Score = 100 x Efficiency Factor your - Efficiency Factor min Efficiency Factor max - Efficiency Factor min", "parentRuleCode": "D.13.4", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14", "ruleContent": "POST ENDURANCE", "parentRuleCode": "D", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.1", "ruleContent": "Technical Inspection Required", "parentRuleCode": "D.14", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.1.1", "ruleContent": "After Endurance and refuelling are completed, all vehicles must report to Technical Inspection.", "parentRuleCode": "D.14.1", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.1.2", "ruleContent": "Vehicles may then be subject to IN.15 Reinspection", "parentRuleCode": "D.14.1", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.2", "ruleContent": "Post Endurance Penalties", "parentRuleCode": "D.14", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.2.1", - "ruleContent": "Penalties may be applied to the Endurance and/or Efficiency events based on: a. Infractions or issues during the Endurance Event (including D.12.10.4.d) b. Post Endurance Technical Inspection c. (EV only) Energy Meter violations EV.3.3, EV.3.5.2", + "ruleContent": "Penalties may be applied to the Endurance and/or Efficiency events based on:", "parentRuleCode": "D.14.2", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" + }, + { + "ruleCode": "D.14.2.1.a", + "ruleContent": "Infractions or issues during the Endurance Event (including D.12.10.4.d)", + "parentRuleCode": "D.14.2.1", + "pageNumber": "143" + }, + { + "ruleCode": "D.14.2.1.b", + "ruleContent": "Post Endurance Technical Inspection", + "parentRuleCode": "D.14.2.1", + "pageNumber": "143" + }, + { + "ruleCode": "D.14.2.1.c", + "ruleContent": "(EV only) Energy Meter violations EV.3.3, EV.3.5.2", + "parentRuleCode": "D.14.2.1", + "pageNumber": "143" }, { "ruleCode": "D.14.2.2", "ruleContent": "Any imposed penalty will be at the discretion of the officials.", "parentRuleCode": "D.14.2", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.3", "ruleContent": "Post Endurance Penalty Guidelines", "parentRuleCode": "D.14", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.3.1", - "ruleContent": "One or more minor violations (rules compliance, but no advantage to team): 15-30 sec", + "ruleContent": "One or more minor violations (rules compliance, but no advantage to team): 15-30 sec", "parentRuleCode": "D.14.3", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.3.2", - "ruleContent": "Violation which is a potential or actual performance advantage to team: 120-360 sec", + "ruleContent": "Violation which is a potential or actual performance advantage to team: 120-360 sec", "parentRuleCode": "D.14.3", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.3.3", - "ruleContent": "Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ", + "ruleContent": "Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ", "parentRuleCode": "D.14.3", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" }, { "ruleCode": "D.14.3.4", - "ruleContent": "Team may be DNF or DQ for: a. Multiple violations involving safety, environment, or performance advantage b. A single substantial violation", + "ruleContent": "Team may be DNF or DQ for:", "parentRuleCode": "D.14.3", - "pageNumber": "143", - "isFromTOC": false + "pageNumber": "143" + }, + { + "ruleCode": "D.14.3.4.a", + "ruleContent": "Multiple violations involving safety, environment, or performance advantage", + "parentRuleCode": "D.14.3.4", + "pageNumber": "143" + }, + { + "ruleCode": "D.14.3.4.b", + "ruleContent": "A single substantial violation", + "parentRuleCode": "D.14.3.4", + "pageNumber": "143" } ], - "totalRules": 1916, - "totalTOCRules": 111, - "generatedAt": "2025-09-26T03:03:28.354Z" + "totalRules": 2923, + "generatedAt": "2025-10-06T02:46:26.727Z" } \ No newline at end of file diff --git a/scripts/document-parser/ruleDocs/txtVersions/FSAE.txt b/scripts/document-parser/ruleDocs/txtVersions/FSAE.txt deleted file mode 100644 index e267561264..0000000000 --- a/scripts/document-parser/ruleDocs/txtVersions/FSAE.txt +++ /dev/null @@ -1,14043 +0,0 @@ -Rules 2025 - -Version 1.0 -31 Aug 2024 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 1 of 143 - - TABLE OF CONTENTS -GR - General Regulations....................................................................................................................5 -GR.1 -GR.2 -GR.3 -GR.4 -GR.5 -GR.6 -GR.7 -GR.8 -GR.9 - -Formula SAE Competition Objective .................................................................................................... 5 -Organizer Authority.............................................................................................................................. 6 -Team Responsibility ............................................................................................................................. 6 -Rules Authority and Issue..................................................................................................................... 7 -Rules of Conduct .................................................................................................................................. 7 -Rules Format and Use .......................................................................................................................... 8 -Rules Questions.................................................................................................................................... 9 -Protests ................................................................................................................................................ 9 -Vehicle Eligibility ................................................................................................................................ 10 - -AD - Administrative Regulations ....................................................................................................... 11 -AD.1 -AD.2 -AD.3 -AD.4 -AD.5 -AD.6 -AD.7 - -The Formula SAE Series ...................................................................................................................... 11 -Official Information Sources .............................................................................................................. 11 -Individual Participation Requirements............................................................................................... 11 -Individual Registration Requirements ................................................................................................ 12 -Team Advisors and Officers................................................................................................................ 12 -Competition Registration ................................................................................................................... 13 -Competition Site ................................................................................................................................ 14 - -DR - Document Requirements .......................................................................................................... 16 -DR.1 -DR.2 -DR.3 - -Documentation .................................................................................................................................. 16 -Submission Details ............................................................................................................................. 16 -Submission Penalties.......................................................................................................................... 17 - -V - Vehicle Requirements ................................................................................................................. 19 -V.1 -V.2 -V.3 -V.4 - -Configuration ..................................................................................................................................... 19 -Driver.................................................................................................................................................. 20 -Suspension and Steering .................................................................................................................... 20 -Wheels and Tires ................................................................................................................................ 21 - -F - Chassis and Structural.................................................................................................................. 23 -F.1 -F.2 -F.3 -F.4 -F.5 -F.6 -F.7 -F.8 -F.9 -F.10 -F.11 - -Definitions .......................................................................................................................................... 23 -Documentation .................................................................................................................................. 25 -Tubing and Material ........................................................................................................................... 25 -Composite and Other Materials ......................................................................................................... 28 -Chassis Requirements ........................................................................................................................ 30 -Tube Frames ....................................................................................................................................... 37 -Monocoque ........................................................................................................................................ 39 -Front Chassis Protection .................................................................................................................... 43 -Fuel System (IC Only) ......................................................................................................................... 48 -Accumulator Container (EV Only) ...................................................................................................... 49 -Tractive System (EV Only) .................................................................................................................. 52 - -T - Technical Aspects ........................................................................................................................ 54 -T.1 -T.2 -T.3 -T.4 -T.5 - -Cockpit................................................................................................................................................ 54 -Driver Accommodation ...................................................................................................................... 58 -Brakes ................................................................................................................................................. 63 -Electronic Throttle Components ........................................................................................................ 64 -Powertrain.......................................................................................................................................... 66 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 2 of 143 - - T.6 -T.7 -T.8 -T.9 - -Pressurized Systems ........................................................................................................................... 68 -Bodywork and Aerodynamic Devices ................................................................................................. 69 -Fasteners ............................................................................................................................................ 71 -Electrical Equipment .......................................................................................................................... 72 - -VE - Vehicle and Driver Equipment ................................................................................................... 75 -VE.1 -VE.2 -VE.3 - -Vehicle Identification ......................................................................................................................... 75 -Vehicle Equipment ............................................................................................................................. 75 -Driver Equipment ............................................................................................................................... 77 - -IC - Internal Combustion Engine Vehicles .......................................................................................... 79 -IC.1 -IC.2 -IC.3 -IC.4 -IC.5 -IC.6 -IC.7 -IC.8 -IC.9 - -General Requirements ....................................................................................................................... 79 -Air Intake System ............................................................................................................................... 79 -Throttle .............................................................................................................................................. 80 -Electronic Throttle Control................................................................................................................. 81 -Fuel and Fuel System ......................................................................................................................... 84 -Fuel Injection ...................................................................................................................................... 86 -Exhaust and Noise Control ................................................................................................................. 87 -Electrical ............................................................................................................................................. 88 -Shutdown System............................................................................................................................... 88 - -EV - Electric Vehicles ........................................................................................................................ 90 -EV.1 -EV.2 -EV.3 -EV.4 -EV.5 -EV.6 -EV.7 -EV.8 -EV.9 -EV.10 -EV.11 - -Definitions .......................................................................................................................................... 90 -Documentation .................................................................................................................................. 90 -Electrical Limitations .......................................................................................................................... 90 -Components ....................................................................................................................................... 91 -Energy Storage ................................................................................................................................... 94 -Electrical System ................................................................................................................................ 98 -Shutdown System............................................................................................................................. 102 -Charger Requirements ..................................................................................................................... 107 -Vehicle Operations ........................................................................................................................... 108 -Event Site Activities .......................................................................................................................... 109 -Work Practices ................................................................................................................................. 109 - -IN - Technical Inspection ................................................................................................................ 112 -IN.1 -IN.2 -IN.3 -IN.4 -IN.5 -IN.6 -IN.7 -IN.8 -IN.9 -IN.10 -IN.11 -IN.12 -IN.13 -IN.14 -IN.15 - -Inspection Requirements ................................................................................................................. 112 -Inspection Conduct .......................................................................................................................... 112 -Initial Inspection ............................................................................................................................... 113 -Electrical Technical Inspection (EV Only) ......................................................................................... 113 -Driver Cockpit Checks....................................................................................................................... 114 -Driver Template Inspections ............................................................................................................ 115 -Cockpit Template Inspections .......................................................................................................... 115 -Mechanical Technical Inspection ..................................................................................................... 115 -Tilt Test ............................................................................................................................................. 116 -Noise and Switch Test (IC Only) ....................................................................................................... 117 -Rain Test (EV Only) ........................................................................................................................... 118 -Brake Test......................................................................................................................................... 118 -Inspection Approval ......................................................................................................................... 119 -Modifications and Repairs ............................................................................................................... 119 -Reinspection ..................................................................................................................................... 120 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 3 of 143 - - S - Static Events.............................................................................................................................. 121 -S.1 -S.2 -S.3 -S.4 - -General Static ................................................................................................................................... 121 -Presentation Event ........................................................................................................................... 121 -Cost and Manufacturing Event......................................................................................................... 122 -Design Event..................................................................................................................................... 126 - -D - Dynamic Events ........................................................................................................................ 128 -D.1 -D.2 -D.3 -D.4 -D.5 -D.6 -D.7 -D.8 -D.9 -D.10 -D.11 -D.12 -D.13 -D.14 - -General Dynamic .............................................................................................................................. 128 -Pit and Paddock................................................................................................................................ 128 -Driving .............................................................................................................................................. 129 -Flags ................................................................................................................................................. 130 -Weather Conditions ......................................................................................................................... 130 -Tires and Tire Changes ..................................................................................................................... 131 -Driver Limitations ............................................................................................................................. 132 -Definitions ........................................................................................................................................ 132 -Acceleration Event ........................................................................................................................... 132 -Skidpad Event ................................................................................................................................... 133 -Autocross Event ............................................................................................................................... 135 -Endurance Event .............................................................................................................................. 137 -Efficiency Event ................................................................................................................................ 141 -Post Endurance ................................................................................................................................ 143 - -Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com - -REVISION SUMMARY -Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 -1.0 - -Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 -Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 -Allowance for Late Submissions DR.3.3.1 -Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, -EV.5.9, EV.7.8.4 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 4 of 143 - - GR - GENERAL REGULATIONS -GR.1 -GR.1.1 - -FORMULA SAE COMPETITION OBJECTIVE -Collegiate Design Series -SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and -graduate engineering students in a variety of disciplines for future employment in mobilityrelated industries by challenging them with a real world, engineering application. -Through the Engineering Design Process, experiences may include but are not limited to: -• -• -• -• -• -• - -Project management, budgeting, communication, and resource management skills -Team collaboration -Applying industry rules and regulations -Design, build, and test the performance of a real vehicle -Interact and compete with other students from around the globe -Develop and prepare technical documentation - -Students also gain valuable exposure to and engagement with industry professionals to -enhance 21st century learning skills, to build their own network and help prepare them for the -workforce after graduation. -GR.1.2 - -Formula SAE Concept -The Formula SAE® competitions challenge teams of university undergraduate and graduate -students to conceive, design, fabricate, develop and compete with small, formula style -vehicles. - -GR.1.3 - -Engineering Competition -Formula SAE® is an engineering education competition that requires performance -demonstration of vehicles in a series of events, off track and on track against the clock. -Each competition gives teams the chance to demonstrate their creativity and engineering -skills in comparison to teams from other universities around the world. - -GR.1.4 - -Vehicle Design Objectives - -GR.1.4.1 Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and -demonstrate a prototype vehicle -GR.1.4.2 The vehicle should have high performance and be sufficiently durable to successfully complete -all the events at the Formula SAE competitions. -GR.1.4.3 Additional design factors include: aesthetics, cost, ergonomics, maintainability, and -manufacturability. -GR.1.4.4 Each design will be judged and evaluated against other competing designs in a series of Static -and Dynamic events to determine the vehicle that best meets the design goals and may be -profitably built and marketed. -GR.1.5 - -Good Engineering Practices -Vehicles entered into Formula SAE competitions should be designed and fabricated in -accordance with good engineering practices. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 5 of 143 - - GR.2 -GR.2.1 - -ORGANIZER AUTHORITY -General Authority -SAE International and the competition organizing bodies reserve the right to revise the -schedule of any competition and/or interpret or modify the competition rules at any time and -in any manner that is, in their sole judgment, required for the efficient operation of the event -or the Formula SAE series as a whole. - -GR.2.2 - -Right to Impound - -GR.2.2.1 SAE International and other competition organizing bodies may impound any onsite vehicle or -part of the vehicle at any time during a competition. -GR.2.2.2 Team access to the vehicle or impound may be restricted. -GR.2.3 - -Problem Resolution -Any problems that arise during the competition will be resolved through the onsite organizers -and the decision will be final. - -GR.2.4 - -Restriction on Vehicle Use -SAE International, competition organizer(s) and officials are not responsible for use of vehicles -designed in compliance with these Formula SAE Rules outside of the official Formula SAE -competitions. - -GR.3 - -TEAM RESPONSIBILITY - -GR.3.1 - -Rules Compliance -By registering for a Formula SAE competition, the team, members of the team as individuals, -faculty advisors and other personnel of the entering university agree to comply with, and be -bound by, these rules and all rule interpretations or procedures issued or announced by SAE -International, the Formula SAE Rules Committee and the other organizing bodies. - -GR.3.2 - -Student Project -By registering for any university program, the University registered assumes liability of the -student project. - -GR.3.3 - -Understanding the Rules -Teams, team members as individuals and faculty advisors, are responsible for reading and -understanding the rules in effect for the competition in which they are participating. - -GR.3.4 - -Participating in the Competition - -GR.3.4.1 Teams, individual team members, faculty advisors and other representatives of a registered -university who are present onsite at a competition are “participating in the competition” from -the time they arrive at the competition site until they depart the site at the conclusion of the -competition or earlier by withdrawing. -GR.3.4.2 All team members, faculty advisors and other university representatives must cooperate with, -and follow all instructions from, competition organizers, officials and judges. -GR.3.5 - -Forfeit for Non Appearance - -GR.3.5.1 It is the responsibility of each team to be in the right location at the right time. -GR.3.5.2 If a team is not present and ready to compete at the scheduled time, they forfeit their attempt -at that event. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 6 of 143 - - GR.3.5.3 There are no makeups for missed appearances. - -GR.4 -GR.4.1 - -RULES AUTHORITY AND ISSUE -Rules Authority -The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are -issued under the authority of the SAE International Collegiate Design Series. - -GR.4.2 - -Rules Validity - -GR.4.2.1 The Formula SAE Rules posted on the website and dated for the calendar year of the -competition are the rules in effect for the competition. -GR.4.2.2 Rules appendices or supplements may be posted on the website and incorporated into the -rules by reference. -GR.4.2.3 Additional guidance or reference documents may be posted on the website. -GR.4.2.4 Any rules, questions, or resolutions from previous years are not valid for the current -competition year. -GR.4.3 - -Rules Alterations - -GR.4.3.1 The Formula SAE rules may be revised, updated, or amended at any time -GR.4.3.2 Official designated communications from the Formula SAE Rules Committee, SAE International -or the other organizing bodies are to be considered part of, and have the same validity as, -these rules -GR.4.3.3 Draft rules or proposals may be issued for comments, however they are a courtesy, are not -valid for any competitions, and may or may not be implemented in whole or in part. -GR.4.4 - -Rules Compliance - -GR.4.4.1 All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE -Online Website to verify the current version. -GR.4.4.2 Teams and team members must comply with the general rules and any specific rules for each -competition they enter. -GR.4.4.3 Any regulations pertaining to the use of the competition site by teams or individuals and -which are posted, announced and/or otherwise publicly available are incorporated into the -Formula SAE Rules by reference. -As examples, all competition site waiver requirements, speed limits, parking and facility use -rules apply to Formula SAE participants. -GR.4.5 - -Violations on Intent -The violation of the intent of a rule will be considered a violation of the rule itself. - -GR.5 -GR.5.1 - -RULES OF CONDUCT -Unsportsmanlike Conduct -If unsportsmanlike conduct occurs, the team gets a warning from an official. -A second violation will result in expulsion of the team from the competition. - -GR.5.2 - -Official Instructions -Failure of a team member to follow an instruction or command directed specifically to that -team or team member will result in a 25 point penalty. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 7 of 143 - - GR.5.3 - -Arguments with Officials -Argument with, or disobedience of, any official may result in the team being eliminated from -the competition. -All members of the team may be immediately escorted from the grounds. - -GR.5.4 - -Alcohol and Illegal Material - -GR.5.4.1 Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site -during the entire competition. -GR.5.4.2 Any violation of this rule by any team member or faculty advisor will cause immediate -disqualification and expulsion of the entire team. -GR.5.4.3 Any use of drugs, or the use of alcohol by an underage individual will be reported to the local -authorities. -GR.5.5 - -Smoking – Prohibited -Smoking and e-cigarette use is prohibited in all competition areas. - -GR.6 -GR.6.1 - -GR.6.2 - -RULES FORMAT AND USE -Definition of Terms -• - -Must - designates a requirement - -• - -Must NOT - designates a prohibition or restriction - -• - -Should - gives an expectation - -• - -May - gives permission, not a requirement and not a recommendation - -Capitalized Terms -Items or areas which have specific definitions or have specific rules are capitalized. -For example, “Rules Questions” or “Primary Structure” - -GR.6.3 - -Headings -The article, section and paragraph headings in these rules are provided only to facilitate -reading: they do not affect the paragraph contents. - -GR.6.4 - -Applicability - -GR.6.4.1 Unless otherwise specified, all rules apply to all vehicles at all times -GR.6.4.2 Rules specific to vehicles based on their powertrain will be specified as such in the rule text: - -GR.6.5 - -• - -Internal Combustion - -“IC” or “IC Only” - -• - -Electric Vehicle - -“EV” or “EV Only” - -Figures and Illustrations -Figures and illustrations give clarification or guidance, but are Rules only when referred to in -the text of a rule - -GR.6.6 - -Change Identification -Any summary of changed rules and/or changed portions marked in the rules themselves are -provided for courtesy, and may or may not include all changes. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 8 of 143 - - GR.7 - -RULES QUESTIONS - -GR.7.1 - -Question Types -Designated officials will answer questions that are not already answered in the rules or FAQs -or that require new or novel rule interpretations. -Rules Questions may also be used to request approval, as specified in these rules. - -GR.7.2 - -Question Format - -GR.7.2.1 All Rules Questions must include: -• - -Full name and contact information of the person submitting the question - -• - -University name – no abbreviations - -• - -The specific competition your team has, or is planning to, enter - -• - -Number of the applicable rule(s) - -GR.7.2.2 Response Time -• - -Please allow a minimum of two weeks for a response - -• - -Do not resubmit questions - -GR.7.2.3 Submission Addresses - -GR.7.3 - -a. - -Teams entering Formula SAE competitions: Follow the link and instructions published on -the FSAE Online Website to "Submit a Rules Question" - -b. - -Teams entering other competitions please visit those respective competition websites -for further instructions. - -Question Publication -Any submitted question and the official answer may be reproduced and freely distributed, in -complete and edited versions. - -GR.8 -GR.8.1 - -PROTESTS -Cause for Protest -A team may protest any rule interpretation, score or official action (unless specifically -excluded from Protest) which they feel has caused some actual, non trivial, harm to their -team, or has had a substantive effect on their score. - -GR.8.2 - -Preliminary Review – Required -Questions about scoring, judging, policies or any official action must be brought to the -attention of the organizer or SAE International staff for an informal preliminary review before -a protest may be filed. - -GR.8.3 - -GR.8.4 - -Protest Format -• - -All protests must be filed in writing - -• - -The completed protest must be presented to the organizer or SAE International staff by -the team captain. - -• - -Team video or data acquisition will not be reviewed as part of a protest. - -Protest Point Bond -A team must post a 25 point protest bond which will be forfeited if their protest is rejected. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 9 of 143 - - GR.8.5 - -Protest Period -Protests concerning any aspect of the competition must be filed in the protest period -announced by the competition organizers or 30 minutes of the posting of the scores of the -event to which the protest relates. - -GR.8.6 - -Decision -The decision regarding any protest is final. - -GR.9 -GR.9.1 - -VEHICLE ELIGIBILITY -Student Developed Vehicle - -GR.9.1.1 Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and -maintained by the student team members without direct involvement from professional -engineers, automotive engineers, racers, machinists or related professionals. -GR.9.1.2 Information Sources -The student team may use any literature or knowledge related to design and information from -professionals or from academics as long as the information is given as a discussion of -alternatives with their pros and cons. -GR.9.1.3 Professional Assistance -Professionals must not make design decisions or drawings. The Faculty Advisor may be -required to sign a statement of compliance with this restriction. -GR.9.1.4 Student Fabrication -Students should do all fabrication tasks -GR.9.2 - -Definitions - -GR.9.2.1 Competition Year -The period beginning at the event of the Formula SAE series where the vehicle first competes -and continuing until the start of the corresponding event held approximately 12 months later. -GR.9.2.2 First Year Vehicle -A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year -GR.9.2.3 Second Year Vehicle -A vehicle which has competed in a previous Competition Year -GR.9.2.4 Third Year Vehicle -A vehicle which has competed in more than one previous Competition Year -GR.9.3 - -Formula SAE Competition Eligibility - -GR.9.3.1 Only First Year Vehicles may enter the Formula SAE Competitions -a. - -If there is any question about the status as a First Year Vehicle, the team must provide -additional information and/or evidence. - -GR.9.3.2 Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the -organizer of the specific competition. -The Formula SAE and Formula SAE Electric events in North America do not allow Second Year -Vehicles -GR.9.3.3 Third Year Vehicles must not enter any Formula SAE Competitions - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 10 of 143 - - AD - ADMINISTRATIVE REGULATIONS -AD.1 THE FORMULA SAE SERIES -AD.1.1 - -Rule Variations -All competitions in the Formula SAE Series may post rule variations specific to the operation of -the events in their countries. Vehicle design requirements and restrictions will remain -unchanged. Any rule variations will be posted on the websites specific to those competitions. - -AD.1.2 - -Official Announcements and Competition Information -Teams must read the published announcements by SAE International and the other organizing -bodies and be familiar with all official announcements concerning the competitions and any -released rules interpretations. - -AD.1.3 - -Official Languages -The official language of the Formula SAE series is English. -Document submissions, presentations and discussions in English are acceptable at all -competitions in the series. - -AD.2 OFFICIAL INFORMATION SOURCES -These websites are referenced in these rules. Refer to the websites for additional information -and resources. -AD.2.1 - -Event Website -The Event Website for Formula SAE is specific to each competition, refer to: -https://www.sae.org/attend/student-events - -AD.2.2 - -FSAE Online Website -The FSAE Online website is at: - -http://fsaeonline.com/ - -AD.2.2.1 Documents, forms, and information are accessed from the “Series Resources” link -AD.2.2.2 Each registered team must have an account on the FSAE Online Website. -AD.2.2.3 Each team must have one or more persons as Team Captain. The Team Captain must accept -Team Members. -AD.2.2.4 Only persons designated Team Members or Team Captains are able to upload documents to -the website. -AD.2.3 - -Contacts -Contact collegiatecompetitions@sae.org with any problems/comments/concerns -Consult the specific website for the other competitions requirements. - -AD.3 INDIVIDUAL PARTICIPATION REQUIREMENTS -AD.3.1 - -Eligibility - -AD.3.1.1 Team members must be enrolled as degree seeking undergraduate or graduate students in -the college or university of the team with which they are participating. -AD.3.1.2 Team members who have graduated during the seven month period prior to the competition -remain eligible to participate. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 11 of 143 - - AD.3.1.3 Teams which are formed with members from two or more universities are treated as a single -team. A student at any university making up the team may compete at any competition -where the team participates. The multiple universities are treated as one university with the -same eligibility requirements. -AD.3.1.4 Each team member may participate at a competition for only one team. This includes -competitions where the University enters both IC and EV teams. -AD.3.2 - -Age -Team members must be minimum 18 years of age. - -AD.3.3 - -Driver’s License -Team members who will drive a competition vehicle at any time during a competition must -hold a valid, government issued driver’s license. - -AD.3.4 - -Society Membership -Team members must be members of SAE International -Proof of membership, such as membership card, is required at the competition. - -AD.3.5 - -Medical Insurance -Individual medical insurance coverage is required and is the sole responsibility of the -participant. - -AD.3.6 - -Disabled Accessibility -Team members who require accessibility for areas outside of ADA Compliance must contact -organizers at collegiatecompetitions@sae.org prior to start of competition. - -AD.4 INDIVIDUAL REGISTRATION REQUIREMENTS -AD.4.1 - -Preliminary Registration - -AD.4.1.1 All students and faculty must be affiliated to your respective school /college/university on the -Event Website before the deadline shown on the Event Website -AD.4.1.2 International student participants (or unaffiliated Faculty Advisors) who are not SAE -International members must create a free customer account profile on www.sae.org. Upon -completion, please email collegiatecompetitions@sae.org the assigned customer number -stating also the event and university affiliation. -AD.4.2 - -Onsite Registration - -AD.4.2.1 All team members and faculty advisors must register at the competition site -AD.4.2.2 All onsite participants, including students, faculty and volunteers, must sign a liability waiver -upon registering onsite. -AD.4.2.3 Onsite registration must be completed before the vehicle may be unloaded, uncrated or -worked upon in any manner. - -AD.5 TEAM ADVISORS AND OFFICERS -AD.5.1 - -Faculty Advisor - -AD.5.1.1 Each team must have a Faculty Advisor appointed by their university. -AD.5.1.2 The Faculty Advisor should accompany the team to the competition and will be considered by -the officials to be the official university representative. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 12 of 143 - - AD.5.1.3 Faculty Advisors: - -AD.5.2 - -a. - -May advise their teams on general engineering and engineering project management -theory - -b. - -Must not design, build or repair any part of the vehicle - -c. - -Must not develop any documentation or presentation - -Electrical System Officer (EV Only) -The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle -during the event - -AD.5.2.1 Each participating team must appoint one or more ESO for the event -AD.5.2.2 The ESO must be: -a. - -A valid team member, see AD.3 Individual Participation Requirements - -b. - -One or more ESO must not be a driver - -c. - -Certified or has received appropriate practical training whether formal or informal for -working with High Voltage systems in automotive vehicles -Give details of the training on the ESO/ESA form - -AD.5.2.3 Duties of the ESO - see EV.11.1.1 -AD.5.3 - -Electric System Advisor (EV Only) - -AD.5.3.1 The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated -by the team who can advise on the electrical and control systems that will be integrated into -the vehicle. The faculty advisor may also be the ESA if all the requirements below are met. -AD.5.3.2 The ESA must supply details of their experience of electrical and/or control systems -engineering as used in the vehicle on the ESO/ESA form -AD.5.3.3 The ESA must be sufficiently qualified to advise the team on their proposed electrical and -control system designs based on significant experience of the technology being developed and -its implementation into vehicles or other safety critical systems. More than one person may -be needed. -AD.5.3.4 The ESA must advise the team on the merits of any relevant engineering solutions. Solutions -should be discussed, questioned and approved before they are implemented into the final -vehicle design. -AD.5.3.5 The ESA should advise the students on any required training to work with the systems on the -vehicle. -AD.5.3.6 The ESA must review the Electrical System Form and to confirm that in principle the vehicle -has been designed using good engineering practices. -AD.5.3.7 The ESA must make sure that the team communicates any unusual aspects of the design to -reduce the risk of exclusion or significant changes being required to pass Technical Inspection. - -AD.6 COMPETITION REGISTRATION -AD.6.1 - -General Information - -AD.6.1.1 Registration for Formula SAE competitions must be completed on the Event Website. -AD.6.1.2 Refer to the individual competition websites for registration requirements for other -competitions - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 13 of 143 - - AD.6.2 - -Registration Details - -AD.6.2.1 Refer to the Event Website for specific registration requirements and details. -• - -Registration limits and Waitlist limits will be posted on the Event Website. - -• - -Registration will open at the date and time posted on the Event Website. - -• - -Registration(s) may have limitations - -AD.6.2.2 Once a competition reaches the registration limit, a Waitlist will open. -AD.6.2.3 Beginning on the date and time posted on the Event Website, any remaining slots will be -available to any team on a first come, first serve basis. -AD.6.2.4 Registration and the Waitlist will close at the date and time posted on the Event Website or -when all available slots have been taken, whichever occurs first. -AD.6.3 - -Registration Fees - -AD.6.3.1 Registration fees must be paid by the deadline specified on the respective competition -website -AD.6.3.2 Registration fees are not refundable and not transferrable to any other competition. -AD.6.4 - -Waitlist - -AD.6.4.1 Waitlisted teams must submit all documents by the same deadlines as registered teams to -remain on the Waitlist. -AD.6.4.2 Once a team withdraws from the competition, the organizer will inform the next team on the -Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the -registered list has opened. -AD.6.4.3 The team will then have 24 hours to accept or reject the position and an additional 24 hours -to have the registration payment completed or in process. -AD.6.5 - -Withdrawals -Registered teams that will not attend the competition must inform SAE International or the -organizer, as posted on the Event Website - -AD.7 COMPETITION SITE -AD.7.1 - -Personal Vehicles -Personal cars and trailers must be parked in designated areas only. Only authorized vehicles -will be allowed in the track areas. - -AD.7.2 - -Motorcycles, Bicycles, Rollerblades, etc. - Prohibited -The use of motorcycles, quads, bicycles, scooters, skateboards, rollerblades or similar personcarrying devices by team members and spectators in any part of the competition area, -including the paddocks, is prohibited. - -AD.7.3 - -Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited -The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any -part of the competition site, including the paddocks, is prohibited. - -AD.7.4 - -Trash Cleanup - -AD.7.4.1 Cleanup of trash and debris is the responsibility of the teams. -• - -The team’s work area should be kept uncluttered - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 14 of 143 - - • - -At the end of the day, each team must clean all debris from their area and help with -maintaining a clean paddock - -AD.7.4.2 Teams must remove all of their material and trash when leaving the site at the end of the -competition. -AD.7.4.3 Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be -billed for removal and/or cleanup costs. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 15 of 143 - - DR - DOCUMENT REQUIREMENTS -DR.1 - -DOCUMENTATION - -DR.1.1 - -Requirements - -DR.1.1.1 The documents supporting each vehicle must be submitted before the deadlines posted on -the Event Website or otherwise published by the organizer. -DR.1.1.2 The procedures for submitting documents are published on the Event Website or otherwise -identified by the organizer. -DR.1.2 - -Definitions - -DR.1.2.1 Submission Date -The date and time of upload to the website -DR.1.2.2 Submission Deadline -The date and time by which the document must be uploaded or submitted -DR.1.2.3 No Submissions Accepted After -The last date and time that documents may be uploaded or submitted -DR.1.2.4 Late Submission -• - -Uploaded after the Submission Deadline and prior to No Submissions Accepted After - -• - -Submitted largely incomplete prior to or after the Submission Deadline - -DR.1.2.5 Not Submitted -• - -Not uploaded prior to No Submissions Accepted After - -• - -Not in the specified form or format - -DR.1.2.6 Amount Late -The number of days between the Submission Deadline and the Submission Date. -Any partial day is rounded up to a full day. -Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late -would be two days penalty -DR.1.2.7 Grounds for Removal -A designated document that if Not Submitted may cause Removal of Team Entry -DR.1.2.8 Reviewer -A designated event official who is assigned to review and accept a Submission - -DR.2 - -SUBMISSION DETAILS - -DR.2.1 - -Submission Location -Teams entering Formula SAE competitions in North America must upload the required -documents to the team account on the FSAE Online Website, see AD.2.2 - -DR.2.2 - -Submission Format Requirements -Refer to Table DR-1 Submission Information - -DR.2.2.1 Template files with the required format must be used when specified in Table DR-1 -DR.2.2.2 Template files are available on the FSAE Online Website, see AD.2.2.1 -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 16 of 143 - - DR.2.2.3 Do Not alter the format of any provided template files -DR.2.2.4 Each submission must be one single file in the specified format (PDF - Portable Document File, -XLSX - Microsoft Excel Worksheet File) - -DR.3 -DR.3.1 - -SUBMISSION PENALTIES -Submissions - -DR.3.1.1 Each team is responsible for confirming that their documents have been properly uploaded or -submitted and that the deadlines have been met -DR.3.1.2 Prior to the Submission Deadline: -a. - -Documents may be uploaded at any time - -b. - -Uploads may be replaced with new uploads without penalty - -DR.3.1.3 If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline -for the revised document may apply -DR.3.1.4 Teams will not be notified if a document is submitted incorrectly -DR.3.2 - -Penalty Detail - -DR.3.2.1 Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion. -DR.3.2.2 Additional penalties will apply if Not Submitted, subject to official discretion -DR.3.2.3 Penalties up to and including Removal of Team Entry may apply based on document reviews, -subject to official discretion -DR.3.3 - -Removal of Team Entry - -DR.3.3.1 The organizer may remove the team entry when a: -a. - -Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. -Removals will occur after each Document Submission deadline - -b. - -Team does not respond to Reviewer requests or organizer communications - -DR.3.3.2 When a team entry will be removed: - -DR.3.4 - -a. - -The team will be notified prior to cancelling registration - -b. - -No refund of entry fees will be given - -Specific Penalties - -DR.3.4.1 Electronic Throttle Control (ETC) (IC Only) -a. - -There is no point penalty for ETC documents - -b. - -The team will not be allowed to run ETC on their vehicle and must use mechanical -throttle operation when: -• - -The ETC Notice of Intent is Not Submitted - -• - -The ETC Systems Form is Not Submitted, or is not accepted - -DR.3.4.2 Fuel Type IC.5.1 -There is no point penalty for a late fuel type order. Once the deadline has passed, the team -will be allocated the basic fuel type. -DR.3.4.3 Program Submissions -Please submit material requested for the Event Program by the published deadlines - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 17 of 143 - - Table DR-1 Submission Information -Submission - -Refer -to: - -Required -Format: - -Submit in -File Format: - -Penalty -Group - -Structural Equivalency Spreadsheet -(SES) -as applicable to your design - -F.2.1 - -see below - -XLSX - -Tech - -ETC - Notice of Intent - -IC.4.3 - -see below - -PDF - -ETC - -ETC – Systems Form (ETCSF) - -IC.4.3 - -see below - -XLSX - -ETC - -EV – Electrical Systems Officer and -Electrical Systems Advisor Form - -AD.5.2, -AD.5.3 - -see below - -PDF - -Tech - -EV - Electrical System Form (ESF) - -EV.2.1 - -see below - -XLSX - -Tech - -Presentation (if required, see S.2.4.1) - -S.2.4 - -see S.2.4 - -see S.2.4 - -Other - -Cost Report - -S.3.4 - -see S.3.4.2 - -(1) - -Other - -Cost Addendum - -S.3.7 - -see below - -see S.3.7 - -none - -Design Briefing - -S.4.3 - -see below - -PDF - -Other - -Vehicle Drawings - -S.4.4 - -see S.4.4.1 - -PDF - -Other - -Design Spec Sheet - -S.4.5 - -see below - -XLSX - -Other - -Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 -Note (1): Refer to the FSAE Online website for submission requirements -Table DR-2 Submission Penalty Information -Penalty Group - -Penalty Points -per 24 Hours - -ETC - -none - -Not Approved to use ETC - see DR.3.4.1 - -Tech - --20 - -Grounds for Removal - see DR.3.3 - -Other - --10 - -Removed from Cost/Design/Presentation -Event and Score 0 points – see DR.3.2.2 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -Not Submitted after the Deadline - -© 2024 SAE International - -Page 18 of 143 - - V - VEHICLE REQUIREMENTS -V.1 - -CONFIGURATION -The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels -that are not in a straight line. - -V.1.1 - -Open Wheel -Open Wheel vehicles must satisfy all of these criteria: - -V.1.2 - -a. - -The top 180° of the wheels/tires must be unobstructed when viewed from vertically -above the wheel. - -b. - -The wheels/tires must be unobstructed when viewed from the side. - -c. - -No part of the vehicle may enter a keep out zone defined by two lines extending -vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the -front and rear tires in the side view elevation of the vehicle, with tires steered straight -ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire -to the inboard plane of the wheel/tire. - -Wheelbase -The vehicle must have a minimum wheelbase of 1525 mm - -V.1.3 - -Vehicle Track - -V.1.3.1 - -The track and center of gravity must combine to provide sufficient rollover stability. See -IN.9.2 - -V.1.3.2 - -The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 19 of 143 - - V.1.4 - -Ground Clearance - -V.1.4.1 - -Ground clearance must be sufficient to prevent any portion of the vehicle except the tires -from touching the ground during dynamic events - -V.1.4.2 - -The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its -lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less. -a. - -V.1.4.3 - -There must be an opening for measuring the ride height at that point without removing -aerodynamic devices - -Intentional or excessive ground contact of any portion of the vehicle other than the tires will -forfeit a run or an entire dynamic event -The intent is that sliding skirts or other devices that by design, fabrication or as a consequence -of moving, contact the track surface are prohibited and any unintended contact with the -ground which causes damage, or in the opinion of the Dynamic Event Officials could result in -damage to the track, will result in forfeit of a run or an entire dynamic event - -V.2 - -DRIVER - -V.2.1 - -Accommodation - -V.2.1.1 - -The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female -up to 95th percentile male. -• - -Accommodation includes driver position, driver controls, and driver equipment - -• - -Anthropometric data may be found on the FSAE Online Website - -V.2.1.2 - -The driver’s head and hands must not contact the ground in any rollover attitude - -V.2.2 - -Visibility - -V.3 - -a. - -The driver must have sufficient visibility to the front and sides of the vehicle - -b. - -When seated in a normal driving position, the driver must have a minimum field of vision -of 100° to the left and the right sides - -c. - -If mirrors are required for this rule, they must remain in position and adjusted to enable -the required visibility throughout all Dynamic Events - -SUSPENSION AND STEERING - -V.3.1 - -Suspension - -V.3.1.1 - -The vehicle must have a fully operational suspension system with shock absorbers, front and -rear, with usable minimum wheel travel of 50 mm, with a driver seated. - -V.3.1.2 - -Officials may disqualify vehicles which do not represent a serious attempt at an operational -suspension system, or which demonstrate handling inappropriate for an autocross circuit. - -V.3.1.3 - -All suspension mounting points must be visible at Technical Inspection by direct view or by -removing any covers. - -V.3.1.4 - -Fasteners in the Suspension system are Critical Fasteners, see T.8.2 - -V.3.1.5 - -All spherical rod ends and spherical bearings on the suspension and steering must be one of: -• - -Mounted in double shear - -• - -Captured by having a screw/bolt head or washer with an outside diameter that is larger -than spherical bearing housing inside diameter. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 20 of 143 - - V.3.2 - -Steering - -V.3.2.1 - -The Steering Wheel must be mechanically connected to the front wheels - -V.3.2.2 - -Electrically operated steering of the front wheels is prohibited - -V.3.2.3 - -Steering systems must use a rigid mechanical linkage capable of tension and compression -loads for operation - -V.3.2.4 - -The steering system must have positive steering stops that prevent the steering linkages from -locking up (the inversion of a four bar linkage at one of the pivots). The stops: -a. - -Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis -during the track events - -b. - -May be put on the uprights or on the rack - -V.3.2.5 - -Allowable steering system free play is limited to seven degrees (7°) total measured at the -steering wheel. - -V.3.2.6 - -The steering rack must be mechanically attached to the Chassis F.5.14 - -V.3.2.7 - -Joints between all components attaching the Steering Wheel to the steering rack must be -mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup -are not permitted. - -V.3.2.8 - -Fasteners in the steering system are Critical Fasteners, see T.8.2 - -V.3.2.9 - -Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above - -V.3.2.10 Rear wheel steering may be used. -a. - -Rear wheel steering must incorporate mechanical stops to limit the range of angular -movement of the rear wheels to a maximum of six degrees (6°) - -b. - -The team must provide the ability for the steering angle range to be verified at Technical -Inspection with a driver in the vehicle - -c. - -Rear wheel steering may be electrically operated - -V.3.3 - -Steering Wheel - -V.3.3.1 - -In any angular position, the Steering Wheel must meet T.1.4.4 - -V.3.3.2 - -The Steering Wheel must be attached to the column with a quick disconnect. - -V.3.3.3 - -The driver must be able to operate the quick disconnect while in the normal driving position -with gloves on. - -V.3.3.4 - -The Steering Wheel must have a continuous perimeter that is near circular or near oval. -The outer perimeter profile may have some straight sections, but no concave sections. “H”, -“Figure 8”, or cutout wheels are not allowed. - -V.4 -V.4.1 - -WHEELS AND TIRES -Wheel Size -Wheels must be 203.2 mm (8.0 inches) or more in diameter. - -V.4.2 - -Wheel Attachment - -V.4.2.1 - -Any wheel mounting system that uses a single retaining nut must incorporate a device to -retain the nut and the wheel if the nut loosens. -A second nut (jam nut) does not meet this requirement - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 21 of 143 - - V.4.2.2 - -Teams using modified lug bolts or custom designs must provide proof that Good Engineering -Practices have been followed in their design. - -V.4.2.3 - -If used, aluminum wheel nuts must be hard anodized and in pristine condition. - -V.4.3 - -Tires -Vehicles may have two types of tires, Dry and Wet - -V.4.3.1 - -V.4.3.2 - -Dry Tires -a. - -The tires on the vehicle when it is presented for Technical Inspection. - -b. - -May be any size or type, slicks or treaded. - -Wet Tires -Any size or type of treaded or grooved tire where: -• - -The tread pattern or grooves were molded in by the tire manufacturer, or were cut by -the tire manufacturer or appointed agent. -Any grooves that have been cut must have documented proof that this rule was met - -• -V.4.3.3 - -V.4.3.4 - -V.4.3.5 - -There is a minimum tread depth of 2.4 mm - -Tire Set -a. - -All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be -identical. - -b. - -Once each tire set has been presented for Technical Inspection, any tire compound or -size, or wheel type or size must not be changed. - -Tire Pressure -a. - -Tire Pressure must be in the range allowed by the manufacturer at all times. - -b. - -Tire Pressure may be inspected at any time - -Requirements for All Tires -a. - -Teams must not do any hand cutting, grooving or modification of the tires. - -b. - -Tire warmers are not allowed. - -c. - -No traction enhancers may be applied to the tires at any time onsite at the competition. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 22 of 143 - - F - CHASSIS AND STRUCTURAL -F.1 - -DEFINITIONS - -F.1.1 - -Chassis -The fabricated structural assembly that supports all functional vehicle systems. -This assembly may be a single fabricated structure, multiple fabricated structures or a -combination of composite and welded structures. - -F.1.2 - -Frame Member -A minimum representative single piece of uncut, continuous tubing. - -F.1.3 - -Monocoque -A type of Chassis where loads are supported by the external panels - -F.1.4 - -Main Hoop -A roll bar located alongside or immediately aft of the driver’s torso. - -F.1.5 - -Front Hoop -A roll bar located above the driver’s legs, in proximity to the steering wheel. - -F.1.6 - -Roll Hoop(s) -Referring to the Front Hoop AND the Main Hoop - -F.1.7 - -Roll Hoop Bracing Supports -The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). - -F.1.8 - -Front Bulkhead -A planar structure that provides protection for the driver’s feet. - -F.1.9 - -Impact Attenuator -A deformable, energy absorbing device located forward of the Front Bulkhead. - -F.1.10 - -Primary Structure -The combination of these components: - -F.1.11 - -• - -Front Bulkhead and Front Bulkhead Support - -• - -Front Hoop, Main Hoop, Roll Hoop Braces and Supports - -• - -Side Impact Structure - -• - -(EV Only) Tractive System Protection and Rear Impact Protection - -• - -Any Frame Members, guides, or supports that transfer load from the Driver Restraint -System - -Primary Structure Envelope -A volume enclosed by multiple tangent planes, each of which follows the exact outline of the -Primary Structure Frame Members - -F.1.12 - -Major Structure -The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main -Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of -the Upper Side Impact Member or top of the Side Impact Zone. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 23 of 143 - - F.1.13 - -Rollover Protection Envelope -The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front -Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural -tube, or monocoque equivalent. -* If there are no Triangulated Structural members aft of the Main Hoop, the Rollover -Protection Envelope ends at the rear plane of the Main Hoop - -F.1.14 - -Tire Surface Envelope -The volume enclosed by tangent lines between the Main Hoop and the outside edge of each -of the four tires. - -F.1.15 - -Component Envelope -The area that is inside a plane from the top of the Main Hoop to the top of the Front -Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural -tube, or monocoque equivalent. * see note in step F.1.13 above - -F.1.16 - -Buckling Modulus (EI) -Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the -weakest axis - -F.1.17 - -Triangulation -An arrangement of Frame Members where all members and segments of members between -bends or nodes with Structural tubes form a structure composed entirely of triangles. -a. - -This is generally required between an upper member and a lower member, each may -have multiple segments requiring a diagonal to form multiple triangles. - -b. - -This is also what is meant by “properly triangulated” - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 24 of 143 - - F.1.18 - -Nonflammable Material -Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent - -F.2 - -DOCUMENTATION - -F.2.1 - -Structural Equivalency Spreadsheet - SES - -F.2.1.1 - -The SES is a supplement to the Formula SAE Rules and may provide guidance or further details -in addition to those of the Formula SAE Rules. - -F.2.1.2 - -The SES provides the means to: -a. - -Document the Primary Structure and show compliance with the Formula SAE Rules - -b. - -Determine Equivalence to Formula SAE Rules using an accepted basis - -F.2.2 - -Structural Documentation - -F.2.2.1 - -All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR Document Requirements - -F.2.3 - -Equivalence - -F.2.3.1 - -Equivalency in the structural context is determined and documented with the methods in the -SES - -F.2.3.2 - -Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same -application - -F.2.3.3 - -The properties of tubes and laminates may be combined to prove Equivalence. -For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate -panel, the panel only needs to be Equivalent to two Side Impact Tubes. - -F.2.4 - -Tolerance -Tolerance on dimensions given in the rules is allowed and is addressed in the SES. - -F.2.5 - -Fabrication -Vehicles must be fabricated in accordance with the design, materials, and processes described -in the SES. - -F.3 -F.3.1 - -TUBING AND MATERIAL -Dimensions -Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for -commonly available tubing. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 25 of 143 - - F.3.2 - -Tubing Requirements - -F.3.2.1 - -Requirements by Application -Steel Tube Must -Meet Size per -F.3.4: -Size B -Size C -Size A -Size B -Size B -Size D -Size A -Size B -Size C -Size B -Size A -Size C -Size B -Size C -Size C - -Application -a. -b. -c. -d. -e. -f. -g. -h. -i. -j. -k. -l. -m. -n. -o. - -Front Bulkhead -Front Bulkhead Support -Front Hoop -Front Hoop Bracing -Side Impact Structure -Bent / Multi Upper Side Impact Member -Main Hoop -Main Hoop Bracing -Main Hoop Bracing Supports -Driver Restraint Harness Attachment -Shoulder Harness Mounting Bar -Shoulder Harness Mounting Bar Bracing -Accumulator Mounting and Protection -Component Protection -Structural Tubing - -F.3.3 - -Non Structural Tubing - -F.3.3.1 - -Definition - -Alternative Tubing -Material Permitted -per F.3.5 ? -Yes -Yes -Yes -Yes -Yes -Yes -NO -NO -Yes -Yes -NO -Yes -Yes -Yes -Yes - -Any tubing which does NOT meet F.3.2.1.o Structural Tubing -F.3.3.2 - -Applicability -Non Structural Tubing is ignored when assessing compliance to any rule - -F.3.4 - -Steel Tubing and Material - -F.3.4.1 - -Minimum Requirements for Steel Tubing -A tube must have all four minimum requirements for each Size specified: -Tube - -Minimum -Area -Moment of -Inertia - -Minimum -Cross -Sectional -Area - -Minimum -Outside -Diameter or -Square Width - -Minimum -Wall -Thickness - -a. - -Size A - -11320 mm4 - -173 mm2 - -25.0 mm - -2.0 mm - -b. - -Size B - -8509 mm4 - -114 mm2 - -25.0 mm - -1.2 mm - -c. - -Size C - -6695 mm4 - -91 mm2 - -25.0 mm - -1.2 mm - -d. - -Size D - -18015 mm4 - -126 mm2 - -35.0 mm - -1.2 mm - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Example Sizes of -Round Tube -1.0” x 0.095” -25 x 2.5 mm -1.0” x 0.065” -25.4 x 1.6 mm -1.0” x 0.049” -25.4 x 1.2 mm -1.375” x 0.049” -35 x 1.2 mm - -Page 26 of 143 - - F.3.4.2 - -Properties for ANY steel material for calculations submitted in an SES must be: -a. - -Non Welded Properties for continuous material calculations: -Young’s Modulus (E) = 200 GPa (29,000 ksi) -Yield Strength (Sy) = 305 MPa (44.2 ksi) -Ultimate Strength (Su) = 365 MPa (52.9 ksi) - -b. - -Welded Properties for discontinuous material such as joint calculations: -Yield Strength (Sy) = 180 MPa (26 ksi) -Ultimate Strength (Su) = 300 MPa (43.5 ksi) - -F.3.4.3 - -Where Welded tubing reinforcements are required (such as inserts for bolt holes or material -to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be -shown to the original Non Welded tube in the SES - -F.3.5 - -Alternative Tubing Materials - -F.3.5.1 - -Alternative Materials may be used for applications shown as permitted in F.3.2.1 - -F.3.5.2 - -If any Alternative Materials are used, the SES must contain: - -F.3.5.3 - -a. - -Documentation of material type, (purchase receipt, shipping document or letter of -donation) and the material properties. - -b. - -Calculations that show equivalent to or better than the minimum requirements for steel -tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the -Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for -buckling modulus and for energy dissipation - -c. - -Details of the manufacturing technique and process - -Aluminum Tubing -a. - -Minimum Wall Thickness for Aluminum Tubing: Non Welded -Welded - -b. - -Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: -Young’s Modulus (E) - -69 GPa (10,000 ksi) - -Yield Strength (Sy) - -240 MPa (34.8 ksi) - -2.0 mm -3.0 mm - -Ultimate Strength (Su) 290 MPa (42.1 ksi) -c. - -Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: -Yield Strength (Sy) - -115 MPa (16.7 ksi) - -Ultimate Strength (Su) 175 MPa (25.4 ksi) -d. - -If welding is used on a regulated aluminum structure, the equivalent yield strength must -be considered in the “as welded” condition for the alloy used unless the team provides -detailed proof that the frame or component has been properly solution heat treated, -artificially aged, and not subject to heating during team manufacturing. - -e. - -If aluminum was solution heat treated and age hardened to increase its strength after -welding, the team must supply evidence of the process. -This includes, but is not limited to, the heat treating facility used, the process applied, -and the fixturing used. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 27 of 143 - - F.4 -F.4.1 - -COMPOSITE AND OTHER MATERIALS -Requirements -If any composite or other material is used, the SES must contain: - -F.4.1.1 - -Documentation of material type, (purchase receipt, shipping document or letter of donation) -and the material properties. - -F.4.1.2 - -Details of the manufacturing technique and/or composite layup technique as well as the -structural material used (examples - cloth type, weight, and resin type, number of layers, core -material, and skin material if metal). - -F.4.1.3 - -Calculations that show equivalence of the structure to one of similar geometry made to meet -the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency -calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, -buckling, and tension. - -F.4.1.4 - -Construction dates of the test panel(s) and monocoque, and approximate age(s) of the -materials used. - -F.4.2 - -Laminate and Material Testing - -F.4.2.1 - -Testing Requirements -a. - -Any tested samples must be engraved with the full date of construction and sample -name - -b. - -The same set of test results must not be used for different monocoques in different -years. - -The intent is for the test panel to use the same material batch, material age, material storage, -and student layup quality as the monocoque. -F.4.2.2 - -Primary Structure Laminate Testing -Teams must build new representative test panels for each ply schedule used in the regulated -regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer -to F.4.2.4 -a. - -b. - -Test panels must: -• - -Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm - -• - -Be supported by a span distance of 400 mm - -• - -Have equal surface area for the top and bottom skin - -• - -Have bare edges, without skin material - -The SES must include: -• - -Data from the 3 point bending tests - -• - -Pictures of the test samples - -• - -A picture of the test sample and test setup showing a measurement documenting -the supported span distance used in the SES - -c. - -Test panel results must be used to derive stiffness, yield strength, ultimate strength and -absorbed energy properties by the SES formula and limits for the purpose of calculating -laminate panels equivalency corresponding to Primary Structure regions of the chassis. - -d. - -Test panels must use the thickest core associated with each skin layup - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 28 of 143 - - Designs may use core thickness that is 50% - 100% of the test panel core thickness -associated with each skin layup - -F.4.2.3 - -e. - -Calculation of derived properties must use the part of test data where deflection is 50 -mm or less - -f. - -Calculation of absorbed energy must use the integral of force times displacement - -Comparison Test -Teams must make an equivalent test that will determine any compliance in the test rig and -establish an absorbed energy value of the baseline tubes. - -F.4.2.4 - -F.4.2.5 - -a. - -The comparison test must use two Side Impact steel tubes (F.3.2.1.e) - -b. - -The steel tubes must be tested to a minimum displacement of 19.0 mm - -c. - -The calculation of absorbed energy must use the integral of force times displacement -from the initiation of load to a displacement of 19.0 mm - -Test Conduct -a. - -The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture - -b. - -The load applicator used to test any panel/tubes as required in this section F.4.2 must -be: -• - -Metallic - -• - -Radius 50 mm - -c. - -The load applicator must overhang the test piece to prevent edge loading - -d. - -Any other material must not be put between the load applicator and the items on test - -Perimeter Shear Test -a. - -The Perimeter Shear Test must be completed by measuring the force required to push or -pull a 25 mm diameter flat punch through a flat laminate sample. - -b. - -The sample must: -• - -Measure 100 mm x 100 mm minimum - -• - -Have core and skin thicknesses identical to those used in the actual application - -• - -Be manufactured using the same materials and processes - -c. - -The fixture must support the entire sample, except for a 32 mm hole aligned coaxially -with the punch. - -d. - -The sample must not be clamped to the fixture - -e. - -The edge of the punch and hole in the fixture may include an optional fillet up to a -maximum radius of 1 mm. - -f. - -The SES must include force and displacement data and photos of the test setup. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 29 of 143 - - F.4.2.6 - -g. - -The first peak in the load-deflection curve must be used to determine the skin shear -strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5 - -h. - -The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5 - -Lap Joint Test -The Lap Joint Test measures the force required to pull apart a joint of two laminate samples -that are bonded together -a. - -A joint design with two perpendicular bond areas may show equivalence using the shear -performance of the smaller of the two areas - -b. - -A joint design with a single bond area must have two separate pull tests with different -orientations of the adhesive joint: - -c. - -• - -Parallel to the pull direction, with the adhesive joint in pure shear - -• - -T peel normal to the pull direction, with the adhesive joint in peel - -The samples used must: -• - -Have skin thicknesses identical to those used in the actual monocoque - -• - -Be manufactured using the same materials and processes - -The intent is to perform a test of the actual bond overlap, and fail the skin before the bond -d. - -The force and displacement data and photos of the test setup must be included in the -SES. - -e. - -The shear strength * normal area of the bond must be more than the UTS * cross -sectional area of the skin - -F.4.3 - -Use of Laminates - -F.4.3.1 - -Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the -nearest plies to core material. - -F.4.3.2 - -The monocoque must have the tested layup direction normal to the cross sections used for -Equivalence in the SES, with allowance for taper of the monocoque normal to the cross -section. - -F.4.3.3 - -Results from the 3 point bending test will be assigned to the 0 layup direction. - -F.4.3.4 - -All material properties in the directions designated by the SES must be 50% or more of those -in the tested “0” direction as calculated by the SES - -F.4.4 - -Equivalent Flat Panel Calculation - -F.4.4.1 - -When specified, the Equivalence of the chassis must be calculated as a flat panel with the -same composition as the chassis about the neutral axis of the laminate. - -F.4.4.2 - -The curvature of the panel and geometric cross section of the chassis must be ignored for -these calculations. - -F.4.4.3 - -Calculations of Equivalence that do not reference this section F.4.3 may use the actual -geometry of the chassis. - -F.5 - -CHASSIS REQUIREMENTS -This section applies to all Chassis, regardless of material or construction - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 30 of 143 - - F.5.1 - -Primary Structure - -F.5.1.1 - -The Primary Structure must be constructed from one or a combination of: - -F.5.1.2 - -• - -Steel Tubing and Material - -F.3.2 - -F.3.4 - -• - -Alternative Tubing Materials - -F.3.2 - -F.3.5 - -• - -Composite Material - -F.4 - -Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite -types must: -a. - -Meet all relevant requirements F.5.1.1 - -b. - -Show Equivalence F.2.3, as applicable - -c. - -Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent. - -F.5.2 - -Bent Tubes or Multiple Tubes - -F.5.2.1 - -The minimum radius of any bend, measured at the tube centerline, must be three or more -times the tube outside diameter (3 x OD). - -F.5.2.2 - -Bends must be smooth and continuous with no evidence of crimping or wall failure. - -F.5.2.3 - -If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere -in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be -attached to support it. -a. - -The support tube attachment point must be at the position along the bent tube where it -deviates farthest from a straight line connecting the two ends - -b. - -The support tube must terminate at a node of the chassis - -c. - -The support tube for any bent tube (other than the Upper Side Impact Member or -Shoulder Harness Mounting Bar) must be: -• - -The same diameter and thickness as the bent tube - -• - -Angled no more than 30° from the plane of the bent tube - -F.5.3 - -Holes and Openings in Regulated Tubing - -F.5.3.1 - -Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES. - -F.5.3.2 - -Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic -testing or by the drilling of inspection holes on request. - -F.5.3.3 - -Regulated tubing other than the open lower ends of Roll Hoops must have any open ends -closed by a welded cap or inserted metal plug. - -F.5.4 - -Fasteners in Primary Structure - -F.5.4.1 - -Bolted connections in the Primary Structure must use a removable bolt and nut. -Bonded fasteners and blind nuts and bolts do not meet this requirement - -F.5.4.2 - -Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2 - -F.5.4.3 - -Bolted connections in the Primary Structure using tabs or brackets must have an edge -distance ratio “e/D” of 1.5 or higher -“D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest -free edge -Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 31 of 143 - - F.5.5 - -Bonding in Regulated Structure - -F.5.5.1 - -Adhesive used and referenced bonding strength must be correct for the two substrate types - -F.5.5.2 - -Document the adhesive choice, age and expiration date, substrate preparation, and the -equivalency of the bonded joint in the SES - -F.5.5.3 - -The SES will reduce any referenced or tested adhesive values by 50% - -F.5.6 - -Roll Hoops - -F.5.6.1 - -The Chassis must include a Main Hoop and a Front Hoop - -F.5.6.2 - -The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with -Structural Tubing - -F.5.6.3 - -Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of -the two: - -F.5.6.4 - -a. - -Triangulated at a side view node - -b. - -Less than 25 mm from an Attachment point F.7.8 - -Roll Hoop and Driver Position -When seated normally and restrained by the Driver Restraint System, the helmet of a 95th -percentile male (see V.2.1.1) and all of the team’s drivers must: - -F.5.6.5 - -a. - -Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to -the top of the Front Hoop. - -b. - -Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to -the lower end of the Main Hoop Bracing if the bracing extends rearwards. - -c. - -Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing -extends forwards. - -Driver Template -A two dimensional template used to represent the 95th percentile male is made to these -dimensions (see figure below): -• - -A circle of diameter 200 mm will represent the hips and buttocks. - -• - -A circle of diameter 200 mm will represent the shoulder/cervical region. - -• - -A circle of diameter 300 mm will represent the head (with helmet). - -• - -A straight line measuring 490 mm will connect the centers of the two 200 mm circles. - -• - -A straight line measuring 280 mm will connect the centers of the upper 200 mm circle -and the 300 mm head circle. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 32 of 143 - - F.5.6.6 - -Driver Template Position -The Driver Template will be positioned as follows: -• - -The seat will be adjusted to the rearmost position - -• - -The pedals will be put in the most forward position - -• - -The bottom 200 mm circle will be put on the seat bottom where the distance between -the center of this circle and the rearmost face of the pedals is no less than 915 mm - -• - -The middle 200 mm circle, representing the shoulders, will be positioned on the seat -back - -• - -The upper 300 mm circle will be positioned no more than 25 mm away from the head -restraint (where the driver’s helmet would normally be located while driving) - -F.5.7 - -Front Hoop - -F.5.7.1 - -The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c - -F.5.7.2 - -With proper Triangulation, the Front Hoop may be fabricated from more than one piece of -tubing - -F.5.7.3 - -The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, -over and down to the lowest Frame Member on the other side of the Frame. - -F.5.7.4 - -The top-most surface of the Front Hoop must be no lower than the top of the steering wheel -in any angular position. See figure after F.5.9.6 below - -F.5.7.5 - -The Front Hoop must be no more than 250 mm forward of the steering wheel. -This distance is measured horizontally, on the vehicle centerline, from the rear surface of the -Front Hoop to the forward most surface of the steering wheel rim with the steering in the -straight ahead position. - -F.5.7.6 - -In side view, any part of the Front Hoop above the Upper Side Impact Structure must be -inclined less than 20° from the vertical. - -F.5.7.7 - -A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during -Technical Inspection - -F.5.8 - -Main Hoop - -F.5.8.1 - -The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing -meeting F.3.2.1.g - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 33 of 143 - - F.5.8.2 - -The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one -side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque -on the other side of the Frame. - -F.5.8.3 - -In the side view of the vehicle, -a. - -The part of the Main Hoop that lies above its attachment point to the upper Side Impact -Tube must be less than 10° from vertical. - -b. - -The part of the Main Hoop below the Upper Side Impact Member attachment: -• - -May be forward at any angle - -• - -Must not be rearward more than 10° from vertical - -F.5.8.4 - -In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 -mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom -tubes of the Major Structure of the Chassis. - -F.5.9 - -Main Hoop Braces - -F.5.9.1 - -Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h - -F.5.9.2 - -The Main Hoop must be supported by two Braces extending in the forward or rearward -direction, one on each of the left and right sides of the Main Hoop. - -F.5.9.3 - -In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the -same side of the vertical line through the top of the Main Hoop. -(If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the -Main Hoop leans rearward, the Braces must be rearward of the Main Hoop) - -F.5.9.4 - -The Main Hoop Braces must be attached 160 mm or less below the top most surface of the -Main Hoop. -The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop - -F.5.9.5 - -The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more. - -F.5.9.6 - -The Main Hoop Braces must be straight, without any bends. - -F.5.9.7 - -The Main Hoop Braces must be: -a. - -Securely integrated into the Frame - -b. - -Capable of transmitting all loads from the Main Hoop into the Major Structure of the -Chassis without failing - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 34 of 143 - - F.5.10 - -Head Restraint Protection -An additional frame member may be added to meet T.2.8.3.b - -F.5.10.1 If used, the Head Restraint Protection frame member must: -a. - -Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop - -b. - -Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting -F.3.2.1.h - -c. - -Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3) - -F.5.10.2 The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection -F.5.11 - -External Items - -F.5.11.1 Definition - items outside the exact outline of the part of the Primary Structure Envelope -F.1.11 defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other -tube nodes or composite attachments -F.5.11.2 External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if -the mount is one of the two: -a. - -Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis - -b. - -Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will -fail below the allowable load as calculated by the SES - -F.5.11.3 If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may -attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above: -a. - -Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service -Disconnect, Master Switches or Shutdown Buttons - -b. - -Lightweight mounts for items inside the Main Hoop Braces - -F.5.11.4 Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the -Main Hoop Braces or Main Hoop above other tube nodes or composite attachments -F.5.11.5 Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must -be longitudinally offset to avoid point loading in a rollover -F.5.11.6 External Items should not point at the driver -F.5.12 - -Mechanically Attached Roll Hoop Bracing - -F.5.12.1 When Roll Hoop Bracing is mechanically attached: -a. - -The threaded fasteners used to secure non permanent joints are Critical Fasteners, see -T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7 - -b. - -No spherical rod ends are allowed - -c. - -The attachment holes in the lugs, the attached bracing and the sleeves and tubes must -be a close fit with the pin or bolt - -F.5.12.2 Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 35 of 143 - - Figure – Double Lug Joint - -F.5.12.3 For Double Lug Joints, each lug must: -a. - -Be minimum 4.5 mm (0.177 in) thickness steel - -b. - -Measure 25 mm minimum perpendicular to the axis of the bracing - -c. - -Be as short as practical along the axis of the bracing. - -F.5.12.4 All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must -include a capping arrangement -F.5.12.5 In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 -minimum diameter and grade. See F.5.12.1 above -Figure – Sleeved Butt Joint - -F.5.12.6 For Sleeved Butt Joints, the sleeve must: -a. - -Have a minimum length of 75 mm; 37.5 mm to each side of the joint - -b. - -Be external to the base tubes, with a close fit around the base tubes. - -c. - -Have a wall thickness of 2.0 mm or more - -F.5.12.7 In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 -minimum diameter and grade. See F.5.12.1 above -F.5.13 - -Other Bracing Requirements - -F.5.13.1 Where the braces are not welded to steel Frame Members, the braces must be securely -attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2 -F.5.13.2 Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness -steel. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 36 of 143 - - F.5.14 - -Steering Protection -Steering system racks or mounting components that are external (vertically above or below) -to the Primary Structure must be protected from frontal impact. -The protective structure must: - -F.5.15 - -a. - -Be F.3.2.1.n or Equivalent - -b. - -Extend to the vertical limit of the steering component(s) - -c. - -Extend to the local width of the Chassis - -d. - -Meet F.7.8 if not welded to the Chassis - -Other Side Tube Requirements -If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck -of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the -Frame -This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or -frame tube, and the driver’s neck contacting this brace or tube. - -F.5.16 - -Component Protection -When specified in the rules, components must be protected by one or two of: - -F.6 -F.6.1 - -a. - -Fully Triangulated structure with tubes meeting F.3.2.1.n - -b. - -Structure Equivalent to the above, as determined per F.4.1.3 - -TUBE FRAMES -Front Bulkhead -The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a - -F.6.2 - -Front Bulkhead Support - -F.6.2.1 - -Frame Members of the Front Bulkhead Support system must be constructed of closed section -tubing meeting F.3.2.1.b - -F.6.2.2 - -The Front Bulkhead must be securely integrated into the Frame. - -F.6.2.3 - -The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame -Members on each side of the vehicle; an upper member; lower member and diagonal brace to -provide Triangulation. -a. - -The top of the upper support member must be attached 50 mm or less from the top -surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 -mm above and 50 mm below the Upper Side Impact member. - -b. - -If the upper support member is further than 100 mm above the top of the Upper Side -Impact member, then properly Triangulated bracing is required to transfer load to the -Main Hoop by one of: -• -• - -the Upper Side Impact member -an additional member transmitting load from the junction of the Upper Support -Member with the Front Hoop - -c. - -The lower support member must be attached to the base of the Front Bulkhead and the -base of the Front Hoop - -d. - -The diagonal brace must properly Triangulate the upper and lower support members - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 37 of 143 - - F.6.2.4 - -Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 -are met - -F.6.2.5 - -Examples of acceptable configurations of members may be found in the SES - -F.6.3 - -Front Hoop Bracing - -F.6.3.1 - -Front Hoop Braces must be constructed of material meeting F.3.2.1.d - -F.6.3.2 - -The Front Hoop must be supported by two Braces extending in the forward direction, one on -each of the left and right sides of the Front Hoop. - -F.6.3.3 - -The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to -the structure in front of the driver’s feet. - -F.6.3.4 - -The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but -not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 -above - -F.6.3.5 - -If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° -from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully -Triangulated structural node. - -F.6.3.6 - -The Front Hoop Braces must be straight, without any bends - -F.6.4 - -Side Impact Structure - -F.6.4.1 - -Frame Members of the Side Impact Structure must be constructed of closed section tubing -meeting F.3.2.1.e or F.3.2.1.f, as applicable - -F.6.4.2 - -With proper Triangulation, Side Impact Structure members may be fabricated from more than -one piece of tubing. - -F.6.4.3 - -The Side Impact Structure must include three or more tubular members located on each side -of the driver while seated in the normal driving position - -F.6.4.4 - -The Upper Side Impact Member must: - -F.6.4.5 - -a. - -Connect the Main Hoop and the Front Hoop. - -b. - -Have its top edge entirely in a zone that is parallel to the ground between 265 mm and -320 mm above the lowest point of the top surface of the Lower Side Impact Member - -The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the -bottom of the Front Hoop. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 38 of 143 - - F.6.4.6 - -The Diagonal Side Impact Member must: -a. - -Connect the Upper Side Impact Member and Lower Side Impact Member forward of the -Main Hoop and rearward of the Front Hoop - -b. - -Completely Triangulate the bays created by the Upper and Lower Side Impact Members. - -F.6.5 - -Shoulder Harness Mounting - -F.6.5.1 - -The Shoulder Harness Mounting Bar must: - -F.6.5.2 - -F.6.5.3 - -a. - -Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k - -b. - -Attach to the Main Hoop on the left and right sides of the chassis - -Bent Shoulder Harness Mounting Bars must: -a. - -Meet F.5.2.1 and F.5.2.2 - -b. - -Have bracing members attached at the bend(s) and to the Main Hoop. -• - -Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l - -• - -The included angle in side view between the Shoulder Harness Bar and the braces -must be no less than 30°. - -The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness -The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar - -F.6.6 - -Main Hoop Bracing Supports - -F.6.6.1 - -Frame Members of the Main Hoop Bracing Support system must be constructed of closed -section tubing meeting F.3.2.1.i - -F.6.6.2 - -The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a -minimum of two Frame Members on each side of the vehicle: an upper member and a lower -member in a properly Triangulated configuration. - -F.7 - -a. - -The upper support member must attach to the node where the upper Side Impact -Member attaches to the Main Hoop. - -b. - -The lower support member must attach to the node where the lower Side Impact -Member attaches to the Main Hoop. - -c. - -Each of the above members may be multiple or bent tubes provided the requirements of -F.5.2 are met. - -d. - -Examples of acceptable configurations of members may be found in the SES. - -MONOCOQUE - -F.7.1 - -General Requirements - -F.7.1.1 - -The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded -frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and -tension - -F.7.1.2 - -Composite and metallic monocoques have the same requirements - -F.7.1.3 - -Corners between panels used for structural equivalence must contain core - -F.7.1.4 - -An inspection hole approximately 4mm in diameter must be drilled through a low stress -location of each monocoque section regulated by the Structural Equivalency Spreadsheet -This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 39 of 143 - - F.7.1.5 - -Composite monocoques must: -a. - -Meet the materials requirements in F.4 Composite and Other Materials - -b. - -Use data from the laminate testing results as the basis for any strength or stiffness -calculations - -F.7.2 - -Front Bulkhead - -F.7.2.1 - -When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral -axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1 - -F.7.2.2 - -The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm -measured from the rearmost face of the Front Bulkhead - -F.7.2.3 - -Any Front Bulkhead which supports the IA plate must have a perimeter shear strength -equivalent to a 1.5 mm thick steel plate - -F.7.3 - -Front Bulkhead Support - -F.7.3.1 - -In addition to proving that the strength of the monocoque is sufficient, the monocoque must -have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces. - -F.7.3.2 - -The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or -more than the EI of one steel tube that it replaces when calculated as per F.4.3 - -F.7.3.3 - -The perimeter shear strength of the monocoque laminate in the Front Bulkhead support -structure must be 4 kN or more for a section with a diameter of 25 mm. -This must be proven by a physical test completed per F.4.2.5 and the results included in the -SES. - -F.7.4 - -Front Hoop Attachment - -F.7.4.1 - -The Front Hoop must be mechanically attached to the monocoque -a. - -Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c - -b. - -The Front Hoop tube must be mechanically connected to the Mounting Plate with -Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop -tube along the two sides of the mounting plate - -F.7.4.2 - -Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any -bends and nodes that are not at the top center of the Front Hoop - -F.7.4.3 - -The Front Hoop may be fully laminated into the monocoque if: - -F.7.4.4 - -a. - -The Front Hoop has core fit tightly around its entire circumference. Expanding foam is -not permitted - -b. - -Equivalence to six or more mounts compliant with F.7.8 must show in the SES - -c. - -A small gap in the laminate (approximately 25 mm) exists for inspection of the Front -Hoop F.5.7.7 - -Adhesive must not be the sole method of attaching the Front Hoop to the monocoque - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 40 of 143 - - F.7.5 - -Side Impact Structure - -F.7.5.1 - -Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front -Hoop consisting of the combination of a vertical section minimum 290 mm in height from the -bottom surface of the floor of the monocoque and half the horizontal floor - -F.7.5.2 - -The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it -replaces - -F.7.5.3 - -The portion of the Side Impact Zone that is vertically between the upper surface of the floor -and 320 mm above the lowest point of the upper surface of the floor (see figure above) must -have: -a. - -Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3 - -b. - -No openings in Side View between the Front Hoop and Main Hoop - -F.7.5.4 - -Horizontal floor Equivalence must be calculated per F.4.3 - -F.7.5.5 - -The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a -section with a diameter of 25 mm. -This must be proven by physical test completed per F.4.2.5 and the results included in the SES. - -F.7.6 - -Main Hoop Attachment - -F.7.6.1 - -The Main Hoop must be mechanically attached to the monocoque -a. - -Main Hoop mounting plates must be 2.0 mm minimum thickness steel - -b. - -The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 -mm minimum thickness steel plates parallel to the two sides of the tube, with gussets -from the Main Hoop tube along the two sides of the mounting plate - -F.7.6.2 - -Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and -nodes that are below the top of the monocoque - -F.7.7 - -Roll Hoop Bracing Attachment -Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8. - -F.7.8 - -Attachments - -F.7.8.1 - -Each attachment point between the monocoque or composite panels and the other Primary -Structure must be able to carry a minimum load of 30 kN in any direction. -a. - -When a Roll Hoop attaches in three locations on each side, the attachments must be -located at the bottom, top, and a location near the midpoint - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 41 of 143 - - b. - -F.7.8.2 - -F.7.8.3 - -When a Roll Hoop attaches at only the bottom and a point between the top and the -midpoint on each side, each of the four attachments must show load strength of 45 kN in -all directions - -If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must -obey one of the two: -a. - -Parallel brackets attached to the two sides of the Main Hoop and the two sides of the -Side Impact Structure - -b. - -Two mostly perpendicular brackets attached to the Main Hoop and the side and back of -the monocoque - -The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, -bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. -Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient -shear area is provided. - -F.7.8.4 - -Proof that the brackets are sufficiently stiff must be documented in the SES. - -F.7.8.5 - -Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical -Fasteners, see T.8.2 - -F.7.8.6 - -Each attachment point requires backing plates which meet one of: -• - -Steel with a minimum thickness of 2 mm - -• - -Alternate materials if Equivalency is approved - -F.7.8.7 - -The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only -one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 -above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in -bending, similar to the figure below. - -F.7.8.8 - -Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the -two: -a. - -A solid insert that is fully enclosed by the inner and outer skin - -b. - -Local elimination of any gap between inner and outer skin, with or without repeating -skin layups - -F.7.9 - -Driver Harness Attachment - -F.7.9.1 - -Required Loads -a. - -Each attachment point for the Shoulder Belts must support a minimum load of 15 kN -before failure with a required load of 30 kN distributed across the two belt attachments - -b. - -Each attachment point for the Lap Belts must support a minimum load of 15 kN before -failure. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 42 of 143 - - F.7.9.2 - -c. - -Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 -kN before failure. - -d. - -If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or -are attached to the same attachment point, then each mounting point must support a -minimum load of 30 kN before failure. - -Load Testing -The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven -by physical tests where the required load is applied to a representative attachment point -where the proposed layup and attachment bracket are used. -a. - -Edges of the test fixture supporting the sample must be a minimum of 125 mm from the -load application point (load vector intersecting a plane) - -b. - -Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 -degrees) to the plane of the test sample - -c. - -Shoulder Belt Test Load application must meet: -Installed Shoulder Belt Angle: -Between 90° and 45° -Between 45° and 0° - -Test Load Application Angle must be: -Between 90° and the installed -Shoulder Belt Angle -Between 90° and 45° - -should be: -90° -90° - -The angles are measured from the plane of the Test Sample (90° is normal to the Test -Sample and 0° is parallel to the Test Sample) -d. - -The Shoulder Harness test sample must not be any larger than the section of the -monocoque as built - -e. - -The width of the Shoulder Harness test sample must not be any wider than the Shoulder -Harness "panel height" (see Structural Equivalency Spreadsheet) used to show -equivalency for the Shoulder Harness mounting bar - -f. - -Designs with attachments near a free edge must not support the free edge during the -test - -The intent is that the test specimen, to the best extent possible, represents the vehicle as -driven at competition. Teams are expected to test a panel that is manufactured in as close a -configuration to what is built in the vehicle as possible - -F.8 - -FRONT CHASSIS PROTECTION - -F.8.1 - -Requirements - -F.8.1.1 - -Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion -Plate between the Impact Attenuator and the Front Bulkhead. - -F.8.1.2 - -All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the -Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse -and vertical loads if off-axis impacts occur. - -F.8.2 - -Anti Intrusion Plate - AIP - -F.8.2.1 - -The Anti Intrusion Plate must be one of the three: -a. - -1.5 mm minimum thickness solid steel - -b. - -4.0 mm minimum thickness solid aluminum plate - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 43 of 143 - - c. -F.8.2.2 - -F.8.2.3 - -Composite material per F.8.3 - -The outside profile requirement of the Anti Intrusion Plate depends on the method of -attachment to the Front Bulkhead: -a. - -Welded joints: the profile must align with or be more than the centerline of the Front -Bulkhead tubes on all sides - -b. - -Bolted joints, bonding, laminating: the profile must align with or be more than the -outside dimensions of the Front Bulkhead around the entire periphery - -Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in -the team’s SES submission. The accepted methods of attachment are: -a. - -b. - -c. - -d. - -Welding -• - -All weld lengths must be 25 mm or longer - -• - -If interrupted, the weld/space ratio must be 1:1 or higher - -Bolted joints -• - -Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. - -• - -The distance between any two bolt centers must be 50 mm minimum. - -• - -Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN - -Bonding -• - -The Front Bulkhead must have no openings - -• - -The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel -strength higher than 120 kN - -Laminating -• - -The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead - -• - -The lamination must fully enclose the Anti Intrusion Plate and have shear capability -higher than 120 kN - -F.8.3 - -Composite Anti Intrusion Plate - -F.8.3.1 - -Composite Anti Intrusion Plates: - -F.8.3.2 - -a. - -Must not fail in a frontal impact - -b. - -Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm -minimum Impact Attenuator area - -Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods: -a. - -b. - -Physical testing of the AIP attached to a structurally representative section of the -intended chassis -• - -The test fixture must have equivalent strength and stiffness to a baseline front -bulkhead or must be the same as the first 50 mm of the Chassis - -• - -Test data is valid for only one Competition Year - -Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending -and perimeter shear - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 44 of 143 - - F.8.4 - -Impact Attenuator - IA - -F.8.4.1 - -Teams must do one of: - -F.8.4.2 - -F.8.4.3 - -• - -Use an approved Standard Impact Attenuator from the FSAE Online Website - -• - -Build and test a Custom Impact Attenuator of their own design F.8.8 - -The Custom Impact Attenuator must meet these: -a. - -Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis. - -b. - -Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm -(parallel to the ground) for a minimum distance of 200 mm forward of the Front -Bulkhead. - -c. - -Segmented foam attenuators must have all segments bonded together to prevent sliding -or parallelogramming. - -d. - -Honeycomb attenuators made of multiple segments must have a continuous panel -between each segment. - -If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses -the Standard Honeycomb Impact Attenuator, and then one of the two must be met: -a. - -b. - -The Front Bulkhead must include an additional support that is a diagonal or X-brace that -meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 -• - -The structure must go across the entire Front Bulkhead opening on the diagonal - -• - -Attachment points at each end must carry a minimum load of 30 kN in any direction - -Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion -Plate does not permanently deflect more than 25 mm. - -F.8.5 - -Impact Attenuator Attachment - -F.8.5.1 - -The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must -be documented in the SES submission - -F.8.5.2 - -The Impact Attenuator must attach with an approved method: -Impact Attenuator Type -a. Standard or Custom -b. Custom - -F.8.5.3 - -F.8.5.4 - -Construction -Foam, Honeycomb -other - -Attachment Method(s): -Bonding -Bonding, Welding, Bolting - -If the Impact Attenuator is attached by bonding: -a. - -Bonding must meet F.5.5 - -b. - -The shear strength of the bond must be higher than: -• - -95 kN for foam Impact Attenuators - -• - -38.5 kN for honeycomb Impact Attenuators - -• - -The maximum compressive force for custom Impact Attenuators - -c. - -The entire surface of a foam Impact Attenuator must be bonded - -d. - -Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond -equivalence - -If the Impact Attenuator is attached by welding: -a. - -Welds may be continuous or interrupted - -b. - -If interrupted, the weld/space ratio must be 1:1 or higher - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 45 of 143 - - c. -F.8.5.5 - -F.8.5.6 - -F.8.5.7 - -All weld lengths must be more than 25 mm - -If the Impact Attenuator is attached by bolting: -a. - -Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2 - -b. - -The distance between any two bolt centers must be 50 mm minimum - -c. - -Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN - -d. - -Must be bolted directly to the Primary Structure - -Impact Attenuator Position -a. - -All Impact Attenuators must mount with the bottom leading edge 150 mm or less above -the lowest point on the top of the Lower Side Impact Structure - -b. - -A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 -mm or more wide that intersects a plane parallel to the ground that is 150 mm or less -above the lowest point on the top of the Lower Side Impact Structure - -Impact Attenuator Orientation -a. - -The Impact Attenuator must be centered laterally on the Front Bulkhead - -b. - -Standard Honeycomb must be mounted 200mm width x 100mm height - -c. - -Standard Foam may be mounted laterally or vertically - -F.8.6 - -Front Impact Objects - -F.8.6.1 - -The only items allowed forward of the Anti Intrusion Plate in front view are the Impact -Attenuator, fastener heads, and light bodywork / nosecones -Fasteners should be oriented with the nuts rearwards - -F.8.6.2 - -F.8.6.3 - -Front Wing and Bodywork Attachment -a. - -The front wing and front wing mounts must be able to move completely aft of the Anti -Intrusion Plate and not touch the front bulkhead during a frontal impact - -b. - -The attachment points for the front wing and bodywork mounts should be aft of the Anti -Intrusion Plate - -c. - -Tabs for wing and bodywork attachment must not extend more than 25 mm forward of -the Anti Intrusion Plate - -Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the: -a. - -Rear face of the Anti Intrusion Plate - -b. - -All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3 - -c. - -All Non Crushable Items inside the Primary Structure - -Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic -reservoirs -F.8.7 - -Front Impact Verification - -F.8.7.1 - -The combination of the Impact Attenuator assembly and the force to crush or detach all other -items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in -F.8.8.2 -Ignore light bodywork, light nosecones, and outboard wheel assemblies - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 46 of 143 - - F.8.7.2 - -The peak load for the type of Impact Attenuator: -• - -Standard Foam Impact Attenuator - -95 kN - -• - -Standard Honeycomb Impact Attenuator - -60 kN - -• - -Tested Impact Attenuator - -peak as measured - -F.8.7.3 - -Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement - -F.8.7.4 - -Test Method -Get the peak force from physical testing of the Impact Attenuator and any Non Crushable -Object(s) as one of the two: - -F.8.7.5 - -a. - -Tested together with the Impact Attenuator - -b. - -Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2 - -Calculation Method -a. - -Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener -shear, tearout, and/or link buckling - -b. - -Add the peak attenuator load from F.8.7.2 - -F.8.8 - -Impact Attenuator Data - IAD - -F.8.8.1 - -All teams must include an Impact Attenuator Data (IAD) report as part of the SES. - -F.8.8.2 - -Impact Attenuator Functional Requirements -These are not test requirements -a. - -Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak - -b. - -Energy absorbed must be more than 7350 J - -When: - -F.8.8.3 - -F.8.8.4 - -• - -Total mass of Vehicle is 300 kg - -• - -Impact velocity is 7.0 m/s - -When using the Standard Impact Attenuator, the SES must meet these: -a. - -Test data will not be submitted - -b. - -All other requirements of this section must be included. - -c. - -Photos of the actual attenuator must be included - -d. - -Evidence that the Standard IA meets the design criteria provided in the Standard Impact -Attenuator specification must be included with the SES. This may be a receipt or packing -slip from the supplier. - -The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must -include: -a. - -Test data that proves that the Impact Attenuator Assembly meets the Functional -Requirements F.8.8.2 - -b. - -Calculations showing how the reported absorbed energy and decelerations have been -derived. - -c. - -A schematic of the test method. - -d. - -Photos of the attenuator, annotated with the height of the attenuator before and after -testing. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 47 of 143 - - F.8.8.5 - -The Impact Attenuator Test is valid for only one Competition Year - -F.8.8.6 - -Impact Attenuator Test Setup -a. - -During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using -the intended vehicle attachment method. - -b. - -The Impact Attenuator Assembly must be attached to a structurally representative -section of the intended chassis. -The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. -A solid block of material in the shape of the front bulkhead is not “structurally -representative”. - -c. - -There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the -test fixture. - -d. - -No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond -the position of the Anti Intrusion Plate before the test. - -The 25 mm spacing represents the front bulkhead support and insures that the plate does not -intrude excessively into the cockpit. -F.8.8.7 - -Test Conduct -a. - -Composite Impact Attenuators must be Dynamic Tested. -Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested - -F.8.8.8 - -F.9 - -b. - -Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be -conducted at a dedicated test facility. This facility may be part of the University, but must -be supervised by professional staff or the University faculty. Teams must not construct -their own dynamic test apparatus. - -c. - -Quasi-Static Testing may be done by teams using their University’s facilities/equipment, -but teams are advised to exercise due care - -Test Analysis -a. - -When using acceleration data from the dynamic test, the average deceleration must be -calculated based on the raw unfiltered data. - -b. - -If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 -(100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or -a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied. - -FUEL SYSTEM (IC ONLY) -Fuel System Location and Protection are subject to approval during SES review and Technical -Inspection. - -F.9.1 - -Location - -F.9.1.1 - -These components must be inside the Primary Structure (F.1.10): - -F.9.1.2 - -a. - -Any part of the Fuel System that is below the Upper Side Impact Structure - -b. - -Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper -Side Impact Structure IC.1.2 - -In side view, any portion of the Fuel System must not project below the lower surface of the -chassis - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 48 of 143 - - F.9.2 - -Protection -All Fuel Tanks must be shielded from side or rear impact - -F.10 -F.10.1 - -ACCUMULATOR CONTAINER (EV ONLY) -General Requirements - -F.10.1.1 All Accumulator Containers must be: -a. - -Designed to withstand forces from deceleration in all directions - -b. - -Made from a Nonflammable Material ( F.1.18 ) - -F.10.1.2 Design of the Accumulator Container must be documented in the SES. -Documentation includes materials used, drawings/images, fastener locations, cell/segment -weight and cell/segment position. -F.10.1.3 The Accumulator Containers and mounting systems are subject to approval during SES review -and Technical Inspection -F.10.1.4 If the Accumulator Container is not constructed from steel or aluminum, the material -properties should be established at a temperature of 60°C -F.10.1.5 If adhesives are used for credited bonding, the bond properties should be established for a -temperature of 60°C -F.10.2 - -Structure - -F.10.2.1 The Floor or Bottom must be made from one of the three: -a. - -Steel - -1.25 mm minimum thickness - -b. - -Aluminum - -3.2 mm minimum thickness - -c. - -Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) - -F.10.2.2 Walls, Covers and Lids must be made from one of the three: -a. - -Steel - -0.9 mm minimum thickness - -b. - -Aluminum - -2.3 mm minimum thickness - -c. - -Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) - -F.10.2.3 Internal Vertical Walls: -a. - -Must surround and separate each Accumulator Segment EV.5.1.2 - -b. - -Must have minimum height of the full height of the Accumulator Segments -The Internal Walls should extend to the lid above any Segment - -c. - -Must surround no more than 12 kg on each side - -The intent is to have each Segment fully enclosed in its own six sided box -F.10.2.4 If segments are arranged vertically above other segments, each layer of segments must have a -load path to the Chassis attachments that does not pass through another layer of segments -F.10.2.5 Floors and all Wall sections must be joined on each side -The accepted methods of joining walls to walls and walls to floor are: -a. - -Welding -• - -Welds may be continuous or interrupted. - -• - -If interrupted, the weld/space ratio must be 1:1 or higher - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 49 of 143 - - • -b. - -All weld lengths must be more than 25 mm - -Fasteners -Combined strength of the fasteners must be Equivalent to the strength of the welded -joint ( F.10.2.5.a above ) - -c. - -Bonding -• - -Bonding must meet F.5.5 - -• - -Strength of the bonded joint must be Equivalent to the strength of the welded joint -( F.10.2.5.a above ) - -• - -Bonds must run the entire length of the joint - -Folding or bending plate material to create flanges or to eliminate joints between walls is -recommended. -F.10.2.6 Covers and Lids must be mechanically attached and include Positive Locking Mechanisms -F.10.3 - -Cells and Segments - -F.10.3.1 The structure of the Segments (without the structure of the Accumulator Container and -without the structure of the cells) must prevent cells from being crushed in any direction -under the following accelerations: -a. - -40 g in the longitudinal direction (forward/aft) - -b. - -40 g in the lateral direction (left/right) - -c. - -20 g in the vertical direction (up/down) - -F.10.3.2 Segments must be held by one of the two: -a. - -Mechanical Cover and Lid attachments must show equivalence to the strength of a -welded joint F.10.2.5.a - -b. - -Mechanical Segment attachments to the container must show they can support the -acceleration loads F.10.3.1 above in the direction of removal - -F.10.3.3 Calculations and/or tests proving these requirements are met must be included in the SES -F.10.4 - -Holes and Openings - -F.10.4.1 The Accumulator Container(s) exterior or interior walls may contain holes or openings, see -EV.4.3.4 -F.10.4.2 Any Holes and Openings must be the minimum area necessary -F.10.4.3 Exterior and interior walls must cover a minimum of 75% of each face of the battery segments -F.10.4.4 Holes and Openings for airflow: - -F.10.5 - -a. - -Must be round. Slots are prohibited - -b. - -Should be maximum 10 mm diameter - -c. - -Must not have line of sight to the driver, with the Firewall installed or removed - -Attachment - -F.10.5.1 Attachment of the Accumulator Container must be documented in the SES -F.10.5.2 Accumulator Containers must: -a. - -Attach to the Major Structure of the chassis - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 50 of 143 - - A maximum of two attachment points may be on a chassis tube between two -triangulated nodes. -b. - -Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing - -F.10.5.3 Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2 -F.10.5.4 Each fastened attachment point to a composite Accumulator Container requires backing -plates that are one of the two: -a. - -Steel with a thickness of 2 mm minimum - -b. - -Alternate materials Equivalent to 2 mm thickness steel - -F.10.5.5 Teams must justify the Accumulator Container attachment using one of the two methods: -• - -Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 - -• - -Load Based Analysis per F.10.5.7 and F.10.5.8 - -F.10.5.6 Accumulator Attachment – Corner Attachments -a. - -Eight or more attachments are required for any configuration. -• - -One attachment for each corner of a rectangular structure of multiple Accumulator -Segments - -• - -More than the minimum number of fasteners may be required for non rectangular -arrangements -Examples: If not filled in with additional structure, an extruded L shape would require -attachments at 10 convex corners (the corners at the inside of the L are not convex); -an extruded hexagon would require 12 attachments - -b. - -The mechanical connections at each corner must be 50 mm or less from the corner of -the Segment - -c. - -Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass -of the container accelerating at 40 g - -F.10.5.7 Accumulator Attachment – Load Based -a. - -b. - -The minimum number of attachment points depends on the total mass of the container: -Accumulator Weight - -Minimum Attachment Points - -< 20 kg - -4 - -20 – 30 kg - -6 - -30 – 40 kg - -8 - -> 40 kg - -10 - -Each attachment point, including any brackets, backing plates and inserts, must be able -to withstand 15 kN minimum in any direction - -F.10.5.8 Accumulator Attachment – All Types -a. - -Each fastener must withstand the Test Load in pure shear, using the minor diameter if -any threads are in shear - -b. - -Each Accumulator bracket, chassis bracket, or monocoque attachment point must -withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if -welded, and pure bond shear and pure bond tensile if bonded. - -c. - -Monocoque attachment points must meet F.7.8.8 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 51 of 143 - - d. - -F.11 - -Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment -points - -TRACTIVE SYSTEM (EV ONLY) -Tractive System Location and Protection are subject to approval during SES review and -Technical Inspection. - -F.11.1 - -Location - -F.11.1.1 All Accumulator Containers must lie inside the Primary Structure (F.1.10). -F.11.1.2 Motors mounted to a suspension upright and their connections must meet EV.4.1.3 -F.11.1.3 Tractive System (EV.1.1) components including Motors, cables and wiring other than those in -F.11.1.2 above must be contained inside one or two of: - -F.11.2 - -• - -The Rollover Protection Envelope F.1.13 - -• - -Structure meeting F.5.16 Component Protection - -Side Impact Protection - -F.11.2.1 All Accumulator Containers must be protected from side impact by structure Equivalent to -Side Impact Structure (F.6.4, F.7.5) -F.11.2.2 The Accumulator Container must not be part of the Equivalent structure. -F.11.2.3 Accumulator Container side impact protection must go to a minimum height that is the lower -of the two: -• - -The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 - -• - -The top of the Accumulator Container at that point - -F.11.2.4 Tractive System components other than Accumulator Containers in a position below 350 mm -from the ground must be protected from side impact by structure that meets F.5.16 -Component Protection -F.11.3 - -Rear Impact Protection - -F.11.3.1 All Tractive System components must be protected from rear impact by a Rear Bulkhead -a. - -When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure -must be Equivalent to Side Impact Structure (F.6.4, F.7.5) - -b. - -When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the -structure must meet F.5.16 Component Protection - -c. - -The Accumulator Container must not be part of the Equivalent structure - -F.11.3.2 The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side -Impact Structure F.6.4.4 / F.7.5.1 -F.11.3.3 The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead -F.11.3.4 The Rear Bulkhead Support must have: -a. - -A structural and triangulated load path from the top of the Rear Impact Protection to the -Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop - -b. - -A structural and triangulated load path from the bottom of the Rear Impact Protection to -the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 52 of 143 - - F.11.3.5 In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal -structure or X brace that meets F.11.3.1 above -a. - -Differential mounts, two vertical tubes with similar spacing, a metal plate, or an -Equivalent composite panel may replace a diagonal -If used, the mounts, plate, or panel must: - -b. - -• - -Be aft of the upper and lower Rear Bulkhead structures - -• - -Overlap at least 25 mm vertically at the top and the bottom - -A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. -If used, the plate must: -• - -Fully overlap the Rear Bulkhead Support F.11.3.3 above - -• - -Attach by one of the two, as determined by the SES: -- Fully laminated to the Rear Bulkhead or Rear Bulkhead Support -- Attachment strength greater than 120 kN - -F.11.4 - -Clearance and Non Crushable Items - -F.11.4.1 Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself -Accumulator mounts do not require clearance -F.11.4.2 The Accumulator Container should have a minimum 25 mm total clearance to each of the -front, side, and rear impact structures -The clearance may be put together on either side of any Non Crushable items around the -accumulator -F.11.4.3 Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through -the Rear Bulkhead - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 53 of 143 - - T - TECHNICAL ASPECTS -T.1 - -COCKPIT - -T.1.1 - -Cockpit Opening - -T.1.1.1 - -The template shown below must pass through the cockpit opening - -T.1.1.2 - -The template will be held horizontally, parallel to the ground, and inserted vertically from a -height above any Primary Structure or bodywork that is between the Front Hoop and the -Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 ) -a. - -Has passed 25 mm below the lowest point of the top of the Side Impact Structure - -b. - -Is less than or equal to 320 mm above the lowest point inside the cockpit - -T.1.1.3 - -Fore and aft translation of the template is permitted during insertion. - -T.1.1.4 - -During this test: -a. - -The steering wheel, steering column, seat and all padding may be removed - -b. - -The shifter, shift mechanism, or clutch mechanism must not be removed unless it is -integral with the steering wheel and is removed with the steering wheel - -c. - -The firewall must not be moved or removed - -d. - -Cables, wires, hoses, tubes, etc. must not block movement of the template - -During inspection, the steering column, for practical purposes, will not be removed. The -template may be maneuvered around the steering column, but not any fixed supports. -For ease of use, the template may contain a slot at the front center that the steering column -may pass through. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 54 of 143 - - T.1.2 - -Internal Cross Section - -T.1.2.1 - -Requirement: -a. - -The cockpit must have a free internal cross section - -b. - -The template shown below must pass through the cockpit - -Template maximum thickness: 7 mm - -T.1.2.2 - -T.1.2.3 - -Conduct of the test. The template: -a. - -Will be held vertically and inserted into the cockpit opening rearward of the rearmost -portion of the steering column. - -b. - -Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the -face of the rearmost pedal when in the inoperative position - -c. - -May be moved vertically inside the cockpit - -During this test: -a. - -If the pedals are adjustable, they must be in their most forward position. - -b. - -The steering wheel may be removed - -c. - -Padding may be removed if it can be easily removed without the use of tools with the -driver in the seat - -d. - -The seat and any seat insert(s) that may be used must stay in the cockpit - -e. - -Cables, wires, hoses, tubes, etc. must not block movement of the template - -f. - -The steering column and associated components may pass through the 50 mm wide -center band of the template. - -For ease of use, the template may contain a full or partial slot in the shaded area shown on the -figure -T.1.3 - -Driver Protection - -T.1.3.1 - -The driver’s feet and legs must be completely contained inside the Major Structure of the -Chassis. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 55 of 143 - - T.1.3.2 - -While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s -feet or legs must not extend above or outside of the Major Structure of the Chassis. - -T.1.3.3 - -All moving suspension and steering components and other sharp edges inside the cockpit -between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered -by a shield made of a solid material. -Moving components include, but are not limited to springs, shock absorbers, rocker arms, antiroll/sway bars, steering racks and steering column CV joints. - -T.1.3.4 - -Covers over suspension and steering components must be removable to allow inspection of -the mounting points - -T.1.4 - -Vehicle Controls - -T.1.4.1 - -Accelerator Pedal - -T.1.4.2 - -a. - -An Accelerator Pedal must control the Powertrain output - -b. - -Pedal Travel is the percent of travel from a fully released position to a fully applied -position. 0% is fully released and 100% is fully applied. - -c. - -The Accelerator Pedal must: -• - -Return to 0% Pedal Travel when not pushed - -• - -Have a positive stop to prevent any cable, actuation system or sensor from damage -or overstress - -Any mechanism in the throttle system that could become jammed must be covered. -This is to prevent debris or interference and includes but is not limited to a gear mechanism - -T.1.4.3 - -All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) -must be operated from inside the cockpit without any part of the driver, including hands, arms -or elbows, being outside of: -a. - -The Side Impact Structure defined in F.6.4 / F.7.5 - -b. - -Two longitudinal vertical planes parallel to the centerline of the chassis touching the -uppermost member of the Side Impact Structure - -T.1.4.4 - -All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational -position - -T.1.5 - -Driver’s Seat - -T.1.5.1 - -The Driver’s Seat must be protected by one of the two: -a. - -In side view, the lowest point of any Driver’s Seat must be no lower than the upper -surface of the lowest structural tube or equivalent - -b. - -A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing -(F.3.2.1.e), passing underneath the lowest point of the Driver Seat. - -T.1.6 - -Thermal Protection - -T.1.6.1 - -When seated in the normal driving position, sufficient heat insulation must be provided to -make sure that the driver will not contact any metal or other materials which may become -heated to a surface temperature above 60°C. - -T.1.6.2 - -Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 56 of 143 - - T.1.6.3 - -The design must address all three types of heat transfer between the heat source (examples -include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a -place that the driver could contact (including seat or floor): -a. - -Conduction Isolation by one of the two: -• - -No direct contact between the heat source and the panel - -• - -A heat resistant, conduction isolation material with a minimum thickness of 8 mm -between the heat source and the panel - -b. - -Convection Isolation by a minimum air gap of 25 mm between the heat source and the -panel - -c. - -Radiation Isolation by one of the two: -• - -A solid metal heat shield with a minimum thickness of 0.4 mm - -• - -Reflective foil or tape when combined with conduction insulation - -T.1.7 - -Floor Closeout - -T.1.7.1 - -All vehicles must have a Floor Closeout to prevent track debris from entering - -T.1.7.2 - -The Floor Closeout must extend from the foot area to the firewall - -T.1.7.3 - -The panel(s) must be made of a solid, non brittle material - -T.1.7.4 - -If multiple panels are used, gaps between panels must not exceed 3 mm - -T.1.8 - -Firewall - -T.1.8.1 - -A Firewall(s) must separate the driver compartment and any portion of the Driver Harness -from: -a. - -All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium -batteries - -b. - -(EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 -and cable to those Motors where mounted at the wheels or on the front control arms - -T.1.8.2 - -The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where -any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest -driver must not be in direct line of sight with any part given in T.1.8.1 above - -T.1.8.3 - -Any Firewall must be: - -T.1.8.4 - -a. - -A non permeable surface made from a rigid, Nonflammable Material - -b. - -Mounted tightly - -(EV only) The Firewall or the part of the Firewall on the Tractive System side must be: -a. - -Made of aluminum. The Firewall layer itself must not be aluminum tape. - -b. - -Grounded, refer to EV.6.7 Grounding - -T.1.8.5 - -(EV only) The Accumulator Container must not be part of the Firewall - -T.1.8.6 - -Sealing -a. - -Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, -edges, any pass throughs and Floor Closeout) - -b. - -Firewalls that have multiple panels must overlap and be sealed at the joints - -c. - -Sealing between Firewalls must not be a stressed part of the Firewall - -d. - -Grommets must be used to seal any pass through for wiring, cables, etc - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 57 of 143 - - e. - -T.2 -T.2.1 - -Any seals or adhesives used with the Firewall must be rated for the application -environment - -DRIVER ACCOMMODATION -Harness Definitions -a. - -5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine -Belt. - -b. - -6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or AntiSubmarine Belts. - -c. - -7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or AntiSubmarine Belts and a negative g or Z Belt. - -d. - -Upright Driving Position - with a seat back angled at 30° or less from the vertical as -measured along the line joining the two 200 mm circles of the template of the 95th -percentile male as defined in F.5.6.5 and positioned per F.5.6.6 - -e. - -Reclined Driving Position - with a seat back angled at more than 30° from the vertical as -measured along the line joining the two 200 mm circles of the template of the 95th -percentile male as defined in F.5.6.5 and positioned per F.5.6.6 - -f. - -Chest to Groin Line - the straight line that in side view follows the line of the Shoulder -Belts from the chest to the release buckle. - -T.2.2 - -Harness Specification - -T.2.2.1 - -The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three: -a. - -SFI Specification 16.1 - -b. - -SFI Specification 16.5 - -c. - -FIA specification 8853/2016 - -T.2.2.2 - -The belts must have the original manufacturers labels showing the specification and -expiration date - -T.2.2.3 - -The Harness must be in or before the year of expiration shown on the labels. Harnesses -expiring on or before Dec 31 of the calendar year of the competition are permitted. - -T.2.2.4 - -The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or -other issues - -T.2.2.5 - -All Harness hardware must be installed and threaded in accordance with manufacturer’s -instructions - -T.2.2.6 - -All Harness hardware must be used as received from the manufacturer. No modification -(including drilling, cutting, grinding, etc) is permitted. - -T.2.3 - -Harness Requirements - -T.2.3.1 - -Vehicles with a Reclined Driving Position must have: - -T.2.3.2 - -a. - -A 6 Point Harness or a 7 Point Harness - -b. - -Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of AntiSubmarine Belts installed. - -All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). -Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 58 of 143 - - T.2.3.3 - -The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are -permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed. - -T.2.4 - -Belt, Strap and Harness Installation - General - -T.2.4.1 - -The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the -Primary Structure. - -T.2.4.2 - -Any guide or support for the belts must be material meeting F.3.2.1.j - -T.2.4.3 - -Each tab, bracket or eye to which any part of the Harness is attached must: -a. - -Support a minimum load in pullout and tearout before failure of: -• - -If one belt is attached to the tab, bracket or eye - -• - -If two belts are attached to the tab, bracket or eye 30 kN - -b. - -Be 1.6 mm minimum thickness - -c. - -Not cause abrasion to the belt webbing - -15 kN - -Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest -radial cross section. -T.2.4.4 - -Attachment of tabs or brackets must meet these: -a. - -Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum -diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to -the chassis - -b. - -Welded tabs or eyes must have a base at least as large as the outer diameter of the tab -or eye - -c. - -Where a single shear tab is welded to the chassis, the tab to tube welding must be on the -two sides of the base of the tab - -Double shear attachments are preferred. Tabs and brackets for double shear mounts should -be welded on the two sides. -T.2.4.5 - -Eyebolts or weld eyes must: -a. - -Be one piece. No eyenuts or swivels. - -b. - -Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum -Threads should be 7/16-20 or greater - -T.2.4.6 - -T.2.4.7 - -c. - -Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other -harness brackets (lap and anti sub) or other vehicle parts - -d. - -Have a positive locking feature on threads or by the belt itself - -For the belt itself to be considered a positive locking feature, the eyebolt must: -a. - -Have minimum 10 threads engaged in a threaded insert - -b. - -Be shimmed to fully tight - -c. - -Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt -creating a torque on the eyebolt. - -Harness installation must meet T.1.8.1 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 59 of 143 - - T.2.5 - -Lap Belt Mounting - -T.2.5.1 - -The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the -hip bones) - -T.2.5.2 - -Installation of the Lap Belts must go in a straight line from the mounting point until they reach -the driver's body without touching any hole in the seat or any other intermediate structure - -T.2.5.3 - -The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the -seat - -T.2.5.4 - -With an Upright Driving Position: -a. - -The Lap Belt Side View Angle must be between 45° and 65° to the horizontal. - -b. - -The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward -of the seat back to seat bottom junction. - -T.2.5.5 - -With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to -the horizontal. - -T.2.5.6 - -The Lap Belts must attach by one of the two: -a. - -Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 - -b. - -Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame - -T.2.5.7 - -In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an -eye bolt attachment - -T.2.5.8 - -Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a -Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• - -The bolt diameter specified by the manufacturer - -• - -10 mm or 3/8” - -T.2.6 - -Shoulder Harness - -T.2.6.1 - -From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder -Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal. - -T.2.6.2 - -The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center - -T.2.6.3 - -The Shoulder Belts must attach by one of the four: -a. - -Wrap around the Shoulder Harness Mounting bar - -b. - -Bolt through a welded tube insert or tested monocoque attachment F.7.9 - -c. - -Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye ( -T.2.4.3 ) loaded in tension on the Shoulder Harness Mounting bar - -d. - -Wrap around physically tested hardware attached to a monocoque - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 60 of 143 - - T.2.6.4 - -Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is -a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• - -The bolt diameter specified by the manufacturer - -• - -10 mm or 3/8” - -T.2.7 - -Anti-Submarine Belt Mounting - -T.2.7.1 - -The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in -line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt -Side View Angle no more than 20° - -T.2.7.2 - -The Anti-Submarine Belts of a 6 point harness must mount in one of the two: -a. - -With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side -View Angle up to 20° rearwards. -The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart. - -b. - -With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the -Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming -up around the groin to the release buckle. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 61 of 143 - - T.2.7.3 - -T.2.7.4 - -T.2.7.5 - -Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt -Mounting Point(s) without touching any hole in the seat or any other intermediate structure -until they reach: -a. - -The release buckle for the 5 Point Harness mounting per T.2.7.1 - -b. - -The first point where the belt touches the driver’s body for the 6 Point Harness mounting -per T.2.7.2 - -The Anti Submarine Belts must attach by one of the three: -a. - -Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 - -b. - -Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame - -c. - -Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. -The belt must not be able to touch the ground. - -Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate -bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• - -The bolt diameter specified by the manufacturer - -• - -8 mm or 5/16” - -T.2.8 - -Head Restraint - -T.2.8.1 - -A Head Restraint must be provided to limit the rearward motion of the driver’s head. - -T.2.8.2 - -The Head Restraint must be vertical or near vertical in side view. - -T.2.8.3 - -All material and structure of the Head Restraint must be inside one or the two of: - -T.2.8.4 - -T.2.8.5 - -a. - -Rollover Protection Envelope F.1.13 - -b. - -Head Restraint Protection (if used) F.5.10 - -The Head Restraint, attachment and mounting must be strong enough to withstand a -minimum force of: -a. - -900 N applied in a rearward direction - -b. - -300 N applied in a lateral or vertical direction - -For all drivers, the Head Restraint must be located and adjusted where: -a. - -The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, -with the driver in their normal driving position. - -b. - -The contact point of the back of the driver’s helmet on the Head Restraint is no less than -50 mm from any edge of the Head Restraint. - -Approximately 100 mm of longitudinal adjustment should accommodate range of specified -drivers. Several Head Restraints with different thicknesses may be used -T.2.8.6 - -The Head Restraint padding must: -a. - -Be an energy absorbing material that is one of the two: -• - -Meets SFI Spec 45.2 - -• - -CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17 - -b. - -Have a minimum thickness of 38 mm - -c. - -Have a minimum width of 15 cm - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 62 of 143 - - d. - -e. -T.2.9 - -Meet one of the two: -• - -minimum area of 235 cm2 AND minimum total height adjustment of 17.5 cm - -• - -minimum height of 28 cm - -Be covered with a thin, flexible material that contains a ~20 mm diameter inspection -hole in a surface other than the front surface - -Roll Bar Padding -Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s -helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec -45.1 or FIA 8857-2001. - -T.3 - -BRAKES - -T.3.1 - -Brake System - -T.3.1.1 - -The vehicle must have a Brake System - -T.3.1.2 - -The Brake System must: - -T.3.1.3 - -a. - -Act on all four wheels - -b. - -Be operated by a single control - -c. - -Be capable of locking all four wheels - -The Brake System must have two independent hydraulic circuits -A leak or failure at any point in the Brake System must maintain effective brake power on -minimum two wheels - -T.3.1.4 - -Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM -style reservoir - -T.3.1.5 - -A single brake acting on a limited slip differential may be used - -T.3.1.6 - -“Brake by Wire” systems are prohibited - -T.3.1.7 - -Unarmored plastic brake lines are prohibited - -T.3.1.8 - -The Brake System must be protected with scatter shields from failure of the drive train (see -T.5.2) or from minor collisions. - -T.3.1.9 - -In side view any portion of the Brake System that is mounted on the sprung part of the vehicle -must not project below the lower surface of the chassis - -T.3.1.10 Fasteners in the Brake System are Critical Fasteners, see T.8.2 -T.3.2 - -Brake Pedal, Pedal Box and Mounting - -T.3.2.1 - -The Brake Pedal must be one of: - -T.3.2.2 - -• - -Fabricated from steel or aluminum - -• - -Machined from steel, aluminum or titanium - -The Brake Pedal and associated components design must withstand a minimum force of 2000 -N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment -This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the -pedal with the maximum force that can be exerted by any official when seated normally - -T.3.2.3 - -Failure of non-loadbearing components in the Brake System or pedal box must not interfere -with Brake Pedal operation or Brake System function - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 63 of 143 - - T.3.2.4 - -(EV only) Additional requirements for Electric Vehicles: -a. - -The first 90% of the Brake Pedal travel may be used to regenerate energy without -actuating the hydraulic brake system - -b. - -The remaining Brake Pedal travel must directly operate the hydraulic brake system. -Brake energy regeneration may stay active - -T.3.3 - -Brake Over Travel Switch - BOTS - -T.3.3.1 - -The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the -normal range will operate the switch - -T.3.3.2 - -The BOTS must: -a. - -Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or -flip type) - -b. - -Hold if operated to the OFF position - -T.3.3.3 - -Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 - -T.3.3.4 - -The driver must not be able to reset the BOTS - -T.3.3.5 - -The BOTS must be implemented with analog components, and not using programmable logic -controllers, engine control units, or similar functioning digital controllers. - -T.3.4 - -Brake Light - -T.3.4.1 - -The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight. - -T.3.4.2 - -The Brake Light must be: -a. - -Red in color on a Black background - -b. - -Rectangular, triangular or near round shape with a minimum shining surface of 15 cm2 - -c. - -Mounted between the wheel centerline and driver’s shoulder level vertically and -approximately on vehicle centerline laterally. - -T.3.4.3 - -When LED lights are used without a diffuser, they must not be more than 20 mm apart. - -T.3.4.4 - -If a single line of LEDs is used, the minimum length is 150 mm. - -T.4 -T.4.1 - -ELECTRONIC THROTTLE COMPONENTS -Applicability -This section T.4 applies only for: -• - -IC vehicles using Electronic Throttle Control (ETC) IC.4 - -• - -EV vehicles - -T.4.2 - -Accelerator Pedal Position Sensor - APPS - -T.4.2.1 - -The Accelerator Pedal must operate the APPS T.1.4.1 - -T.4.2.2 - -a. - -Two springs must be used to return the foot pedal to 0% Pedal Travel - -b. - -Each spring must be capable of returning the pedal to 0% Pedal Travel with the other -disconnected. The springs in the APPS are not acceptable pedal return springs. - -Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS -with two completely separate sensors in a single housing is acceptable. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 64 of 143 - - T.4.2.3 - -The APPS sensors must have different transfer functions which meet one of the two: -• - -Each sensor has different gradients and/or offsets to the other(s). The circuit must have -a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel - -• - -An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor -configurations require prior approval. - -The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel -T.4.2.4 - -Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or -other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel -require justification in the ETC Systems Form and may not be approved - -T.4.2.5 - -If an Implausibility occurs between the values of the APPSs and persists for more than 100 -msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped -completely. -(EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping -the power to the Motor(s) is sufficient. - -T.4.2.6 - -If three sensors are used, then in the case of an APPS failure, any two sensors that agree -within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target -and the 3rd APPS may be ignored. - -T.4.2.7 - -Each APPS must be able to be checked during Technical Inspection by having one of the two: -• - -A separate detachable connector that enables a check of functions by unplugging it - -• - -An inline switchable breakout box available that allows disconnection of each APPS -signal. - -T.4.2.8 - -The APPS signals must be sent directly to a controller using an analogue signal or via a digital -data transmission bus such as CAN or FlexRay. - -T.4.2.9 - -Any failure of the APPS or APPS wiring must be detectable by the controller and must be -treated like an Implausibility, see T.4.2.4 above - -T.4.2.10 When an analogue signal is used, the APPS will be considered to have failed when they -achieve an open circuit or short circuit condition which generates a signal outside of the -normal operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. -T.4.2.11 When any kind of digital data transmission is used to transmit the APPS signal, -a. - -The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. - -b. - -The failures to be considered must include but are not limited to the failure of the APPS, -APPS signals being out of range, corruption of the message and loss of messages and the -associated time outs. - -T.4.2.12 The current rules are written to only apply to the APPS (pedal), but the integrity of the torque -command signal is important in all stages. -T.4.3 - -Brake System Encoder - BSE - -T.4.3.1 - -The vehicle must have a sensor or switch to measure brake pedal position or brake system -pressure - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 65 of 143 - - T.4.3.2 - -T.4.3.3 - -The BSE must be able to be checked during Technical Inspection by having one of: -• - -A separate detachable connector(s) for any BSE signal(s) to the main ECU without -affecting any other connections - -• - -An inline switchable breakout box available that allows disconnection of each BSE -signal(s) to the main ECU without affecting any other connections - -The BSE or switch signals must be sent directly to a controller using an analogue signal or via a -digital data transmission bus such as CAN or FlexRay -Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by -the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) -Motor(s) must be immediately stopped completely. -(EV only) It is not necessary to completely deactivate the Tractive System, the motor -controller(s) stopping power to the motor(s) is sufficient. - -T.4.3.4 - -When an analogue signal is used, the BSE sensors will be considered to have failed when they -achieve an open circuit or short circuit condition which generates a signal outside of the -normal operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. - -T.4.3.5 - -T.5 -T.5.1 - -When any kind of digital data transmission is used to transmit the BSE signal: -a. - -The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. - -b. - -The failures modes must include but are not limited to the failure of the sensor, sensor -signals being out of range, corruption of the message and loss of messages and the -associated time outs. - -c. - -In all cases a sensor failure must immediately shutdown power to the motor(s). - -POWERTRAIN -Transmission and Drive -Any transmission and drivetrain may be used. - -T.5.2 - -Drivetrain Shields and Guards - -T.5.2.1 - -Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions -(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and -electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case -of radial failure - -T.5.2.2 - -The final drivetrain shield must: -a. - -Be made with solid material (not perforated) - -b. - -Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt -or pulley - -c. - -Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 66 of 143 - - d. - -Cover the bottom of the chain or belt or rotating component when fuel, brake lines -T.3.1.8, control, pressurized, electrical components are located below - -T.5.2.3 - -Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8 - -T.5.2.4 - -Frame Members or existing components that exceed the scatter shield material requirements -may be used as part of the shield. - -T.5.2.5 - -Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm) - -T.5.2.6 - -If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. - -T.5.2.7 - -Chain Drive - Scatter shields for chains must: - -T.5.2.8 - -T.5.2.9 - -a. - -Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed) - -b. - -Have a minimum width equal to three times the width of the chain - -c. - -Be centered on the center line of the chain - -d. - -Stay aligned with the chain under all conditions - -Non-metallic Belt Drive - Scatter shields for belts must: -a. - -Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6 - -b. - -Have a minimum width that is equal to 1.7 times the width of the belt. - -c. - -Be centered on the center line of the belt - -d. - -Stay aligned with the belt under all conditions - -Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or -1/4” minimum diameter Critical Fasteners, see T.8.2 - -T.5.2.10 Finger Guards -a. - -Must cover any drivetrain parts that spin while the vehicle is stationary with the engine -running. - -b. - -Must be made of material sufficient to resist finger forces. - -c. - -Mesh or perforated material may be used but must prevent the passage of a 12 mm -diameter object through the guard. - -T.5.3 - -Motor Protection (EV Only) - -T.5.3.1 - -The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. -The motor casing may be the original motor casing, a team built motor casing or the original -casing with additional material added to achieve the minimum required thickness. -• - -Minimum thickness for aluminum alloy 6061-T6: 3.0 mm -If lower grade aluminum alloy is used, then the material must be thicker to provide an -equivalent strength. - -• -T.5.3.2 - -T.5.3.3 - -Minimum thickness for steel: 2.0 mm - -A Scatter Shield must be included around the Motor(s) when one or the two: -• - -The motor casing rotates around the stator - -• - -The motor case is perforated - -The Motor Scatter Shield must be: -• - -Made from aluminum alloy 6061-T6 or steel - -• - -Minimum thickness: 1.0 mm - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 67 of 143 - - T.5.4 - -Coolant Fluid - -T.5.4.1 - -Water cooled engines must use only plain water with no additives of any kind - -T.5.4.2 - -Liquid coolant for electric motors, Accumulators or HV electronics must be one of: -• - -plain water with no additives - -• - -oil - -T.5.4.3 - -(EV only) Liquid coolant must not directly touch the cells in the Accumulator - -T.5.5 - -System Sealing - -T.5.5.1 - -Any cooling or lubrication system must be sealed to prevent leakage - -T.5.5.2 - -The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type. - -T.5.5.3 - -Flammable liquid and vapors or other leaks must not collect or contact the driver - -T.5.5.4 - -Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at -the locations: -a. - -The lowest point of the chassis - -b. - -Rearward of the driver position, forward of a fuel tank or other liquid source - -c. - -If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is -necessary - -T.5.5.5 - -Absorbent material and open collection devices (regardless of material) are prohibited in -compartments containing engine, drivetrain, exhaust and fuel systems below the highest -point on the exhaust system. - -T.5.6 - -Catch Cans - -T.5.6.1 - -The vehicle must have separate containers (catch cans) to retain fluids from any vents from -the powertrain systems. - -T.5.6.2 - -Catch cans must be: -a. - -Capable of containing boiling water without deformation - -b. - -Located rearwards of the Firewall below the driver’s shoulder level - -c. - -Positively retained, using no tie wraps or tape - -T.5.6.3 - -Catch cans for the engine coolant system and engine lubrication system must have a minimum -capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher - -T.5.6.4 - -Catch cans for any vent on other systems containing liquid lubricant or coolant, including a -differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid -being contained or 0.5 liter, whichever is higher - -T.5.6.5 - -Any catch can on the cooling system must vent through a hose with a minimum internal -diameter of 3 mm down to the bottom levels of the Chassis. - -T.6 -T.6.1 - -PRESSURIZED SYSTEMS -Compressed Gas Cylinders and Lines -Any system on the vehicle that uses a compressed gas as an actuating medium must meet: - -T.6.1.1 - -Working Gas - The working gas must be non flammable - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 68 of 143 - - T.6.1.2 - -Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed -and built for the pressure being used, certified by an accredited testing laboratory in the -country of its origin, and labeled or stamped appropriately. - -T.6.1.3 - -Pressure Regulation - The pressure regulator must be mounted directly onto the gas -cylinder/tank - -T.6.1.4 - -Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible -operating pressure of the system. - -T.6.1.5 - -Insulation - The gas cylinder/tank must be insulated from any heat sources - -T.6.1.6 - -Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system -must meet one of the two: - -T.6.1.7 - -• - -Made from metal - -• - -Meet the thermal protection requirements of T.1.6.3 - -Cylinder Location - The gas cylinder/tank and the pressure regulator must be: -a. - -Securely mounted inside the Chassis - -b. - -Located outside of the Cockpit - -c. - -In a position below the height of the Shoulder Belt Mount T.2.6 - -d. - -Aligned so the axis of the gas cylinder/tank does not point at the driver - -T.6.1.8 - -Protection – The gas cylinder/tank and lines must be protected from rollover, collision from -any direction, or damage resulting from the failure of rotating equipment - -T.6.1.9 - -The driver must be protected from failure of the cylinder/tank and regulator - -T.6.2 - -High Pressure Hydraulic Pumps and Lines -This section T.6.2 does not apply to Brake lines or hydraulic clutch lines - -T.6.2.1 - -The driver and anyone standing outside the vehicle must be shielded from any hydraulic -pumps and lines with line pressures of 2100 kPa or higher. - -T.6.2.2 - -The shields must be steel or aluminum with a minimum thickness of 1 mm. - -T.7 - -BODYWORK AND AERODYNAMIC DEVICES - -T.7.1 - -Aerodynamic Devices - -T.7.1.1 - -Aerodynamic Device -A part on the vehicle which guides airflow for purposes including generation of downforce -and/or change of drag. -Examples include but are not limited to: wings, undertray, splitter, endplates, vanes - -T.7.1.2 - -No power device may be used to move or remove air from under the vehicle. Power ground -effects are strictly prohibited. - -T.7.1.3 - -All Aerodynamic Devices must meet: - -T.7.1.4 - -a. - -The mounting system provides sufficient rigidity in the static condition - -b. - -The Aerodynamic Devices do not oscillate or move excessively when the vehicle is -moving. Refer to IN.8.2 - -All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) -must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 69 of 143 - - This may be the radius of the edges themselves, or additional permanently attached pieces -designed to meet this requirement. -T.7.1.5 - -Other edges that a person may touch must not be sharp - -T.7.2 - -Bodywork - -T.7.2.1 - -Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device - -T.7.2.2 - -Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic -Device if is designed to, or may possibly, produce force due to aerodynamic effects - -T.7.2.3 - -Bodywork must not contain openings into the cockpit from the front of the vehicle back to the -Main Hoop or Firewall. The cockpit opening and minimal openings around the front -suspension components are allowed. - -T.7.2.4 - -All forward facing edges on the Bodywork that could contact people, including the nose, must -have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more -relative to the forward direction, along the top, sides and bottom of all affected edges. - -T.7.3 - -Measurement - -T.7.3.1 - -All Aerodynamic Device limitations are measured: -a. - -With the wheels pointing in the straight ahead position - -b. - -Without a driver in the vehicle - -The intent is to standardize the measurement, see GR.6.4.1 -T.7.3.2 - -Head Restraint Plane -A transverse vertical plane through the rearmost portion of the front face of the driver head -restraint support, excluding any padding, set (if adjustable) in its fully rearward position - -T.7.3.3 - -Rear Aerodynamic Zone -The volume that is: - -T.7.4 - -• - -Rearward of the Head Restraint Plane - -• - -Inboard of two vertical planes parallel to the centerline of the chassis touching the inside -of the rear tires at the height of the hub centerline - -Location -Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1 - -T.7.5 - -Length -In plan view, any part of any Aerodynamic Device must be: - -T.7.6 - -a. - -No more than 700 mm forward of the fronts of the front tires - -b. - -No more than 250 mm rearward of the rear of the rear tires - -Width -In plan view, any part of any Aerodynamic Device must be: - -T.7.6.1 - -When forward of the centerline of the front wheel axles: -Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of -the front tires at the height of the hubs. - -T.7.6.2 - -When between the centerlines of the front and rear wheel axles: - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 70 of 143 - - Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height -of the wheel centers -T.7.6.3 - -When rearward of the centerline of the rear wheel axles: -In the Rear Aerodynamic Zone - -T.7.7 - -Height - -T.7.7.1 - -Any part of any Aerodynamic Device that is located: - -T.7.7.2 - -T.8 -T.8.1 - -a. - -In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground - -b. - -Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the -ground - -c. - -Forward of the centerline of the front wheel axles and outboard of two vertical planes -parallel to the centerline of the chassis touching the inside of the front tires at the height -of the hubs must be no higher than 250 mm above the ground - -Bodywork height is not restricted when the Bodywork is located: -• - -Between the transverse vertical planes positioned at the front and rear axle centerlines - -• - -Inside two vertical fore and aft planes 400 mm outboard from the centerline on each -side of the vehicle - -FASTENERS -Critical Fasteners -A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule - -T.8.2 - -Critical Fastener Requirements - -T.8.2.1 - -Any Critical Fastener must meet, at minimum, one of these: -a. - -SAE Grade 5 - -b. - -Metric Class 8.8 - -c. - -AN/MS Specifications - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 71 of 143 - - d. -T.8.2.2 - -Equivalent to or better than above, as approved by a Rules Question or at Technical -Inspection - -All threaded Critical Fasteners must be one of the two: -• - -Hex head - -• - -Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts) - -T.8.2.3 - -All Critical Fasteners must be secured from unintentional loosening with Positive Locking -Mechanisms see T.8.3 - -T.8.2.4 - -A minimum of two full threads must project from any lock nut. - -T.8.2.5 - -Some Critical Fastener applications have additional requirements that are provided in the -applicable section. - -T.8.3 - -Positive Locking Mechanisms - -T.8.3.1 - -Positive Locking Mechanisms are defined as those which: -a. - -Technical Inspectors / team members can see that the device/system is in place (visible). - -b. - -Do not rely on the clamping force to apply the locking or anti vibration feature. - -Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming -completely loose -T.8.3.2 - -Examples of acceptable Positive Locking Mechanisms include, but are not limited to: -a. - -Correctly installed safety wiring - -b. - -Cotter pins - -c. - -Nylon lock nuts (where temperature does not exceed 80°C) - -d. - -Prevailing torque lock nuts - -Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT -meet the positive locking requirement -T.8.3.3 - -T.8.4 - -If the Positive Locking Mechanism is by prevailing torque lock nuts: -a. - -Locking fasteners must be in as new condition - -b. - -A supply of replacement fasteners must be presented in Technical Inspection, including -any attachment method - -Requirements for All Fasteners -Adjustable tie rod ends must be constrained with a jam nut to prevent loosening. - -T.9 - -ELECTRICAL EQUIPMENT - -T.9.1 - -Definitions - -T.9.1.1 - -High Voltage – HV -Any voltage more than 60 V DC or 25 V AC RMS - -T.9.1.2 - -Low Voltage - LV -Any voltage less than and including 60 V DC or 25 V AC RMS - -T.9.1.3 - -Normally Open -A type of electrical relay or contactor that allows current flow only in the energized state - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 72 of 143 - - T.9.2 - -Low Voltage Batteries - -T.9.2.1 - -All Low Voltage Batteries and onboard power supplies must be securely mounted inside the -Chassis below the height of the Shoulder Belt Mount T.2.6 - -T.9.2.2 - -All Low Voltage batteries must have Overcurrent Protection that trips at or below the -maximum specified discharge current of the cells - -T.9.2.3 - -The hot (ungrounded) terminal must be insulated. - -T.9.2.4 - -Any wet cell battery located in the driver compartment must be enclosed in a nonconductive -marine type container or equivalent. - -T.9.2.5 - -Batteries or battery packs based on lithium chemistry must meet one of the two: -a. - -Have a rigid, sturdy casing made from Nonflammable Material - -b. - -A commercially available battery designed as an OEM style replacement - -T.9.2.6 - -All batteries using chemistries other than lead acid must be presented at Technical Inspection -with markings identifying it for comparison to a datasheet or other documentation proving -the pack and supporting electronics meet all rules requirements - -T.9.3 - -Master Switches -Each Master Switch ( IC.9.3 / EV.7.9 ) must meet: - -T.9.3.1 - -T.9.3.2 - -Location -a. - -On the driver’s right hand side of the vehicle - -b. - -In proximity to the Main Hoop - -c. - -At the driver's shoulder height - -d. - -Able to be easily operated from outside the vehicle - -Characteristics -a. - -Be of the rotary mechanical type - -b. - -Be rigidly mounted to the vehicle and must not be removed during maintenance - -c. - -Mounted where the rotary axis of the key is near horizontal and across the vehicle - -d. - -The ON position must be in the horizontal position and must be marked accordingly - -e. - -The OFF position must be clearly marked - -f. - -(EV Only) Operated with a red removable key that must only be removable in the -electrically open position - -T.9.4 - -Inertia Switch - -T.9.4.1 - -Inertia Switch Requirement - -T.9.4.2 - -• - -(EV) Must have an Inertia Switch - -• - -(IC) Should have an Inertia Switch - -The Inertia Switch must be: -a. - -A Sensata Resettable Crash Sensor or equivalent - -b. - -Mechanically and rigidly attached to the vehicle - -c. - -Removable to test functionality - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 73 of 143 - - T.9.4.3 - -Inertia Switch operation: -a. - -Must trigger due to a longitudinal impact load which decelerates the vehicle at between -8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the -Sensata device) - -b. - -Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered - -c. - -Must latch until manually reset - -d. - -May be reset by the driver from inside the driver's cell - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 74 of 143 - - VE - VEHICLE AND DRIVER EQUIPMENT -VE.1 -VE.1.1 - -VEHICLE IDENTIFICATION -Vehicle Number - -VE.1.1.1 The assigned vehicle number must appear on the vehicle as follows: -a. - -Locations: in three places, on the front of the chassis and the left and right sides - -b. - -Height: 150 mm minimum - -c. - -Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive -numbers) - -d. - -Stroke Width and Spacing between numbers: 18 mm minimum - -e. - -Color: White numbers on a black background OR black numbers on a white background - -f. - -Background: round, oval, square or rectangular - -g. - -Spacing: 25 mm minimum between the edge of the numbers and the edge of the -background - -h. - -The numbers must not be obscured by parts of the vehicle - -VE.1.1.2 Additional letters or numerals must not show before or after the vehicle number -VE.1.2 - -School Name -Each vehicle must clearly display the school name. - -VE.1.3 - -a. - -Abbreviations are allowed if unique and generally recognized - -b. - -The name must be in Roman characters minimum 50 mm high on the left and right sides -of the vehicle. - -c. - -The characters must be put on a high contrast background in an easily visible location - -d. - -The school name may also appear in non Roman characters, but the Roman character -version must be uppermost on the sides. - -SAE Logo -The SAE International Logo must be displayed on the front and/or the left and right sides of -the vehicle in a prominent location. - -VE.1.4 - -Inspection Sticker -The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: - -VE.1.5 - -• - -A clear and unobstructed area, minimum 25 cm wide x 20 cm high - -• - -Located on the upper front surface of the nose along the vehicle centerline - -Transponder / RFID Tag - -VE.1.5.1 Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the -specified type(s) -VE.1.5.2 Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information -and mounting details - -VE.2 -VE.2.1 - -VEHICLE EQUIPMENT -Jacking Point - -VE.2.1.1 A Jacking Point must be provided at the rear of the vehicle -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 75 of 143 - - VE.2.1.2 The Jacking Point must be: - -VE.2.2 - -a. - -Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the -FSAE Online website - -b. - -Visible to a person standing 1 m behind the vehicle - -c. - -Color: Orange - -d. - -Oriented laterally and perpendicular to the centerline of the vehicle - -e. - -Made from round, 25 - 30 mm OD aluminum or steel tube - -f. - -Exposed around the lower 180° of its circumference over a minimum length of 280 mm - -g. - -Access from the rear of the tube must be unobstructed for 300 mm or more of its length - -h. - -The height of the tube must allow 75 mm minimum clearance from the bottom of the -tube to the ground - -i. - -When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the -wheels do not touch the ground when they are in full rebound - -Push Bar -Each vehicle must have a removable device which attaches to the rear of the vehicle that: - -VE.2.3 - -a. - -Allows two people, standing erect behind the vehicle, to push the vehicle around the -competition site - -b. - -Is capable of slowing and stopping the forward motion of the vehicle and pulling it -rearwards - -Fire Extinguisher - -VE.2.3.1 Each team must have two or more fire extinguishers. -a. - -One extinguisher must readily be available in the team’s paddock area - -b. - -One extinguisher must accompany the vehicle when moved using the Push Bar -A commercially available on board fire system may be used instead of the fire -extinguisher that accompanies the vehicle - -VE.2.3.2 Hand held fire extinguishers must NOT be mounted on or in the vehicle -VE.2.3.3 Each fire extinguisher must meet these: -a. - -Capacity: 0.9 kg (2 lbs) - -b. - -Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and -Halon extinguishers and systems are prohibited. - -c. - -Equipped with a manufacturer installed pressure/charge gauge. - -d. - -Minimum acceptable ratings: - -e. -VE.2.4 - -• - -USA, Canada & Brazil: 10BC or 1A 10BC - -• - -Europe: 34B or 5A 34B - -• - -Australia: 20BE or 1A 10BE - -Extinguishers of larger capacity (higher numerical ratings) are acceptable. - -Electrical Equipment (EV Only) -These items must accompany the vehicle at all times: -• - -Two pairs of High Voltage insulating gloves - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 76 of 143 - - • -VE.2.5 - -A multimeter - -Camera Mounts - -VE.2.5.1 The mounts for video/photographic cameras must be of a safe and secure design. -VE.2.5.2 All camera installations must be approved at Technical Inspection. -VE.2.5.3 Helmet mounted cameras and helmet camera mounts are prohibited. -VE.2.5.4 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a -minimum of two points on different sides of the camera body. -VE.2.5.5 If a tether is used to restrain the camera, the tether length must be limited to prevent contact -with the driver. - -VE.3 -VE.3.1 - -DRIVER EQUIPMENT -General - -VE.3.1.1 Any Driver Equipment: -a. - -Must be in good condition with no tears, rips, open seams, areas of significant wear, -abrasions or stains which might compromise performance. - -b. - -Must fit properly - -c. - -May be inspected at any time - -VE.3.1.2 Flame Resistant Material -For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, -Polybenzimidazole (common name PBI) and Proban. -VE.3.1.3 Synthetic Material – Prohibited -Shirts, socks or other undergarments (not to be confused with flame resistant underwear) -made from nylon or any other synthetic material which could melt when exposed to high heat -are prohibited. -VE.3.1.4 Officials may impound any non approved Driver Equipment until the end of the competition. -VE.3.2 - -Helmet - -VE.3.2.1 The driver must wear a helmet which: -a. - -Is closed face with an integral, immovable chin guard - -b. - -Contains an integrated visor/face shield supplied with the helmet - -c. - -Meets an approved standard - -d. - -Is properly labeled for that standard - -VE.3.2.2 Acceptable helmet standards are listed below. Any additional approved standards are shown -on the Technical Inspection Form or the FAQ on the FSAE Online website -a. - -Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, -SA2025 - -b. - -SFI Specs 31.1/2015, 41.1/2015 - -c. - -FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 77 of 143 - - VE.3.3 - -Driver Gear -The driver must wear: - -VE.3.3.1 Driver Suit -A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers -the body from the neck to the ankles and the wrists. -Each suit must meet one or more of these standards and be labeled as such: -• - -SFI 3.2A/5 (or higher ex: /10, /15, /20) - -• - -SFI 3.4/5 (or higher ex: /10, /15, /20) - -• - -FIA Standard 1986 - -• - -FIA Standard 8856-2000 - -• - -FIA Standard 8856-2018 - -VE.3.3.2 Underclothing -All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under -their approved Driver Suit. -VE.3.3.3 Balaclava -A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame -Resistant Material -VE.3.3.4 Socks -Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit -and the Shoes. -VE.3.3.5 Shoes -Shoes or boots made from Flame Resistant Material that meet an approved standard and -labeled as such: -• - -SFI Spec 3.3 - -• - -FIA Standard 8856-2000 - -• - -FIA Standard 8856-2018 - -VE.3.3.6 Gloves -Gloves made from Flame Resistant Material. -Gloves of all leather construction or fire retardant gloves constructed using leather palms with -no insulating Flame Resistant Material underneath are not acceptable. -VE.3.3.7 Arm Restraints -a. - -Arm restraints must be worn in a way that the driver can release them and exit the -vehicle unassisted regardless of the vehicle’s position. - -b. - -Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec -3.3 and labeled as such meet this requirement. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 78 of 143 - - IC - INTERNAL COMBUSTION ENGINE VEHICLES -IC.1 - -GENERAL REQUIREMENTS - -IC.1.1 - -Engine Limitations - -IC.1.1.1 - -The engine(s) used to power the vehicle must: -a. - -Be a piston engine(s) using a four stroke primary heat cycle - -b. - -Have a total combined displacement less than or equal to 710 cc per cycle. - -IC.1.1.2 - -Hybrid powertrains, such as those using electric motors running off stored energy, are -prohibited. - -IC.1.1.3 - -All waste/rejected heat from the primary heat cycle may be used. The method of conversion is -not limited to the four stroke cycle. - -IC.1.1.4 - -The engine may be modified within the restrictions of the rules. - -IC.1.2 - -Air Intake and Fuel System Location -All parts of the engine air system and fuel control, delivery and storage systems (including the -throttle or carburetor, and the complete air intake system, including the air cleaner and any -air boxes) must lie inside the Tire Surface Envelope F.1.14 - -IC.2 - -AIR INTAKE SYSTEM - -IC.2.1 - -General - -IC.2.2 - -Intake System Location - -IC.2.2.1 - -The Intake System must meet IC.1.2 - -IC.2.2.2 - -Any portion of the air intake system that is less than 350 mm above the ground must be -shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable. - -IC.2.3 - -Intake System Mounting - -IC.2.3.1 - -The intake manifold must be securely attached to the engine block or cylinder head with -brackets and mechanical fasteners. -• - -Hose clamps, plastic ties, or safety wires do not meet this requirement. - -• - -The use of rubber bushings or hose is acceptable for creating and sealing air passages, -but is not a structural attachment. - -IC.2.3.2 - -Threaded fasteners used to secure and/or seal the intake manifold must have a Positive -Locking Mechanism, see T.8.3. - -IC.2.3.3 - -Intake systems with significant mass or cantilever from the cylinder head must be supported -to prevent stress to the intake system. -a. - -Supports to the engine must be rigid. - -b. - -Supports to the Chassis must incorporate some isolation to allow for engine movement -and chassis flex. - -IC.2.4 - -Intake System Restrictor - -IC.2.4.1 - -All airflow to the engine(s) must pass through a single circular restrictor in the intake system. - -IC.2.4.2 - -The only allowed sequence of components is: -a. - -For naturally aspirated engines, the sequence must be: throttle body, restrictor, and -engine. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 79 of 143 - - b. - -IC.2.4.3 - -For turbocharged or supercharged engines, the sequence must be: restrictor, -compressor, throttle body, engine. - -The maximum restrictor diameters at any time during the competition are: -a. - -Gasoline fueled vehicles - -20.0 mm - -b. - -E85 fueled vehicles - -19.0 mm - -IC.2.4.4 - -The restrictor must be located to facilitate measurement during Technical Inspection - -IC.2.4.5 - -The circular restricting cross section must NOT be movable or flexible in any way - -IC.2.4.6 - -The restrictor must not be part of the movable portion of a barrel throttle body. - -IC.2.5 - -Turbochargers & Superchargers - -IC.2.5.1 - -The intake air may be cooled with an intercooler (a charge air cooler). -a. - -It must be located downstream of the throttle body - -b. - -Only ambient air may be used to remove heat from the intercooler system - -c. - -Air to air and water to air intercoolers are permitted - -d. - -The coolant of a water to air intercooler system must meet T.5.4.1 - -IC.2.5.2 - -If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be -positioned in the intake system as shown in IC.2.4.2.b - -IC.2.5.3 - -Plenums must not be located anywhere upstream of the throttle body -For the purpose of definition, a plenum is any tank or volume that is a significant enlargement -of the normal intake runner system. Teams may submit their designs via a Rules Question for -review prior to competition if the legality of their proposed system is in doubt. - -IC.2.5.4 - -The maximum allowable area of the inner diameter of the intake runner system between the -restrictor and throttle body is 2825 mm2 - -IC.2.6 - -Connections to Intake -Any crankcase or engine lubrication vent lines routed to the intake system must be connected -upstream of the intake system restrictor. - -IC.3 - -THROTTLE - -IC.3.1 - -General - -IC.3.1.1 - -The vehicle must have a carburetor or throttle body. -a. - -The carburetor or throttle body may be of any size or design. - -b. - -Boosted applications must not use carburetors. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 80 of 143 - - IC.3.2 - -Throttle Actuation Method -The throttle may be operated: -a. - -Mechanically by a cable or rod system IC.3.3 - -b. - -By Electronic Throttle Control IC.4 - -IC.3.3 - -Throttle Actuation – Mechanical - -IC.3.3.1 - -The throttle cable or rod must: - -IC.3.3.2 - -a. - -Have smooth operation - -b. - -Have no possibility of binding or sticking - -c. - -Be minimum 50 mm from any exhaust system component and out of the exhaust stream - -d. - -Be protected from being bent or kinked by the driver’s foot when it is operated by the -driver or when the driver enters or exits the vehicle - -The throttle actuation system must use two or more return springs located at the throttle -body. -Throttle Position Sensors (TPS) are NOT acceptable as return springs - -IC.3.3.3 - -IC.4 - -Failure of any component of the throttle system must not prevent the throttle returning to -the closed position. - -ELECTRONIC THROTTLE CONTROL -This section IC.4 applies only when Electronic Throttle Control is used -An Electronic Throttle Control (ETC) system may be used. This is a device or system which -may change the engine throttle setting based on various inputs. - -IC.4.1 - -General Design - -IC.4.1.1 - -The electronic throttle must automatically close (return to idle) when power is removed. - -IC.4.1.2 - -The electronic throttle must use minimum two sources of energy capable of returning the -throttle to the idle position. -a. - -One of the sources may be the device (such as a DC motor) that normally operates the -throttle - -b. - -The other device(s) must be a throttle return spring that can return the throttle to the -idle position if loss of actuator power occurs. - -c. - -Springs in the TPS are not acceptable throttle return springs - -IC.4.1.3 - -The ETC system may blip the throttle during downshifts when proven that unintended -acceleration can be prevented. Document the functional analysis in the ETC Systems Form - -IC.4.2 - -Commercial ETC System - -IC.4.2.1 - -An ETC system that is commercially available, but does not comply with the regulations, may -be used, if approved prior to the event. - -IC.4.2.2 - -To obtain approval, submit a Rules Question which includes: -• - -Which ETC system the team is seeking approval to use. - -• - -The specific ETC rule(s) that the commercial system deviates from. - -• - -Sufficient technical details of these deviations to determine the acceptability of the -commercial system. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 81 of 143 - - IC.4.3 - -Documentation - -IC.4.3.1 - -The ETC Notice of Intent: -• - -Must be submitted to give the intent to run ETC - -• - -May be used to screen which teams are allowed to use ETC - -IC.4.3.2 - -The ETC Systems Form must be submitted in order to use ETC - -IC.4.3.3 - -Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document -Requirements - -IC.4.3.4 - -Late or non submission will prevent use of ETC, see DR.3.4.1 - -IC.4.4 - -Throttle Position Sensor - TPS - -IC.4.4.1 - -The TPS must measure the position of the throttle or the throttle actuator. -Throttle position is defined as percent of travel from fully closed to wide open where 0% is -fully closed and 100% is fully open. - -IC.4.4.2 - -Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and -reference lines only if effects of supply and/or reference line voltage offsets can be detected. - -IC.4.4.3 - -Implausibility is defined as a deviation of more than 10% throttle position between the -sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be -considered on a case by case basis and require justification in the ETC Systems Form - -IC.4.4.4 - -If an Implausibility occurs between the values of the two TPSs and persists for more than 100 -msec, the power to the electronic throttle must be immediately shut down. - -IC.4.4.5 - -If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% -throttle position may be used to define the throttle position target and the 3rd TPS may be -ignored. - -IC.4.4.6 - -Each TPS must be able to be checked during Technical Inspection by having one of: -a. - -A separate detachable connector(s) for any TPS signal(s) to the main ECU without -affecting any other connections - -b. - -An inline switchable breakout box available that allows disconnection of each TPS -signal(s) to the main ECU without affecting any other connections - -IC.4.4.7 - -The TPS signals must be sent directly to the throttle controller using an analogue signal or via -a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring -must be detectable by the controller and must be treated like Implausibility. - -IC.4.4.8 - -When an analogue signal is used, the TPSs will be considered to have failed when they achieve -an open circuit or short circuit condition which generates a signal outside of the normal -operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. - -IC.4.4.9 - -When any kind of digital data transmission is used to transmit the TPS signal, -a. - -The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. - -b. - -The failures to be considered must include but are not limited to the failure of the TPS, -TPS signals being out of range, corruption of the message and loss of messages and the -associated time outs. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 82 of 143 - - IC.4.5 - -Accelerator Pedal Position Sensor - APPS -Refer to T.4.2 for specific requirements of the APPS - -IC.4.6 - -Brake System Encoder - BSE -Refer to T.4.3 for specific requirements of the BSE - -IC.4.7 - -Throttle Plausibility Checks - -IC.4.7.1 - -Brakes and Throttle Position - -IC.4.7.2 - -a. - -The power to the electronic throttle must be shut down if the mechanical brakes are -operated and the TPS signals that the throttle is open by more than a permitted amount -for more than one second. - -b. - -An interval of one second is allowed for the throttle to close (return to idle). Failure to -achieve this in the required interval must result in immediate shut down of fuel flow and -the ignition system. - -c. - -The permitted relationship between BSE and TPS may be defined by the team using a -table. This functionality must be demonstrated at Technical Inspection. - -Throttle Position vs Target -a. - -The power to the electronic throttle must be immediately shut down, if throttle position -differs by more than 10% from the expected target TPS position for more than one -second. - -b. - -An interval of one second is allowed for the difference to reduce to less than 10%, failure -to achieve this in the required interval must result in immediate shut down of fuel flow -and the ignition system. - -c. - -An error in TPS position and the resultant system shutdown must be demonstrated at -Technical Inspection. -Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. -System states displayed using calibration software must be accompanied by a detailed -explanation of the control system. - -IC.4.7.3 - -The electronic throttle and fuel injector/ignition system shutdown must stay active until the -TPS signals indicate the throttle is at or below the unpowered default position for one second -or longer. - -IC.4.8 - -Brake System Plausibility Device - BSPD - -IC.4.8.1 - -A standalone nonprogrammable circuit must be used to monitor the electronic throttle -control. -The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7 - -IC.4.8.2 - -Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may -not be used in place of the raw sensor signals. - -IC.4.8.3 - -The BSPD must monitor for these conditions: -a. - -The two of these for more than one second: -• - -Demand for Hard Braking IC.4.6 - -• - -Throttle more than 10% open IC.4.4 - -b. - -Loss of signal from the braking sensor(s) for more than 100 msec - -c. - -Loss of signal from the throttle sensor(s) for more than 100 msec - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 83 of 143 - - d. - -Removal of power from the BSPD circuit - -IC.4.8.4 - -When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2 - -IC.4.8.5 - -The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON - -IC.4.8.6 - -The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF - -IC.4.8.7 - -The BSPD signals and function must be able to be checked during Technical Inspection by -having one of: - -IC.5 - -a. - -A separate set of detachable connectors for any signals from the braking sensor(s), -throttle sensor(s) and removal of power to only the BSPD device. - -b. - -An inline switchable breakout box available that allows disconnection of the brake -sensor(s), throttle sensor(s) individually and power to only the BSPD device. - -FUEL AND FUEL SYSTEM - -IC.5.1 - -Fuel - -IC.5.1.1 - -Vehicles must be operated with the fuels provided at the competition - -IC.5.1.2 - -Fuels provided are expected to be Gasoline and E85. Consult the individual competition -websites for fuel specifics and other information. - -IC.5.1.3 - -No agents other than the provided fuel and air may go into the combustion chamber. - -IC.5.2 - -Fuel System - -IC.5.2.1 - -The Fuel System must meet these design criteria: -a. - -The Fuel Tank is capable of being filled to capacity without manipulating the tank or the -vehicle in any manner. - -b. - -During refueling on a level surface, the formation of air cavities or other effects that -cause the fuel level observed at the sight tube to drop after movement or operation of -the vehicle (other than due to consumption) are prevented. - -c. - -Spillage during refueling cannot contact the driver position, exhaust system, hot engine -parts, or the ignition system. - -IC.5.2.2 - -The Fuel System location must meet IC.1.2 and F.9 - -IC.5.2.3 - -A Firewall must separate the Fuel Tank from the driver, per T.1.8 - -IC.5.3 - -Fuel Tank -The part(s) of the fuel containment device that is in contact with the fuel. - -IC.5.3.1 - -IC.5.3.2 - -IC.5.3.3 - -Fuel Tanks made of a rigid material must: -a. - -Be securely attached to the vehicle structure. The mounting method must not allow -chassis flex to load the Fuel Tank. - -b. - -Not be used to carry any structural loads; from Roll Hoops, suspension, engine or -gearbox mounts - -Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag -tank: -a. - -Must be enclosed inside a rigid fuel tank container which is securely attached to the -vehicle structure. - -b. - -The Fuel Tank container may be load carrying - -Any size Fuel Tank may be used - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 84 of 143 - - IC.5.3.4 - -The Fuel Tank, by design, must not have a variable capacity. - -IC.5.3.5 - -The Fuel System must have a provision for emptying the Fuel Tank if required. - -IC.5.4 - -Fuel Filler Neck & Sight Tube - -IC.5.4.1 - -All Fuel Tanks must have a Fuel Filler Neck which must be: -a. - -IC.5.4.2 - -IC.5.4.3 - -Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler -cap - -The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be: -a. - -Minimum 125 mm vertical height above the top level of the Fuel Tank - -b. - -Angled no more than 30° from the vertical - -The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the -fuel level which must be: -a. - -Visible vertical height: - -125 mm minimum - -b. - -Inside diameter: - -6 mm minimum - -c. - -Above the top surface of the Fuel Tank - -IC.5.4.4 - -A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules -Question or technical inspectors at the event. - -IC.5.4.5 - -Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm -and 25 mm below the top of the visible portion of the sight tube. -This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure -the amount of fuel used during the Endurance Event. - -IC.5.4.6 - -The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, -the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, -etc) or the need to remove any parts (body panels, etc). - -IC.5.4.7 - -The individual filling the tank must have complete direct access to the filler neck opening with -a standard two gallon gas can assembly. -The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top - -IC.5.4.8 - -The filler neck must have a fuel cap that can withstand severe vibrations or high pressures -such as could occur during a vehicle rollover event - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 85 of 143 - - IC.5.5 - -Fuel Tank Filling - -IC.5.5.1 - -Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials. - -IC.5.5.2 - -The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point. - -IC.5.5.3 - -If, for any reason, the fuel level changes after the team have moved the vehicle, then no -additional fuel will be added, unless fueling after Endurance, see D.13.2.5 - -IC.5.6 - -Venting Systems - -IC.5.6.1 - -Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during -hard cornering or acceleration. - -IC.5.6.2 - -All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted. - -IC.5.6.3 - -All fuel vent lines must exit outside the bodywork. - -IC.5.7 - -Fuel Lines - -IC.5.7.1 - -Fuel lines must be securely attached to the vehicle and/or engine. - -IC.5.7.2 - -All fuel lines must be shielded from possible rotating equipment failure or collision damage. - -IC.5.7.3 - -Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. - -IC.5.7.4 - -Any rubber fuel line or hose used must meet the two: -a. - -The components over which the hose is clamped must have annular bulb or barbed -fittings to retain the hose - -b. - -Clamps specifically designed for fuel lines must be used. -These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, -and rolled edges to prevent the clamp cutting into the hose - -IC.5.7.5 - -IC.6 -IC.6.1 - -Worm gear type hose clamps must not be used on any fuel line. - -FUEL INJECTION -Low Pressure Injection (LPI) -Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most -Port Fuel Injected (PFI) fuel systems are low pressure. - -IC.6.1.1 - -IC.6.1.2 - -Any Low Pressure flexible fuel lines must be one of: -• - -Metal braided hose with threaded fittings (crimped on or reusable) - -• - -Reinforced rubber hose with some form of abrasion resistant protection - -Fuel rail and mounting requirements: -a. - -Unmodified OEM Fuel Rails are acceptable, regardless of material. - -b. - -Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable -materials are prohibited. - -c. - -The fuel rail must be securely attached to the manifold, engine block or cylinder head -with brackets and mechanical fasteners. -Hose clamps, plastic ties, or safety wires do not meet this requirement. - -d. - -Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 86 of 143 - - IC.6.2 - -High Pressure Injection (HPI) / Direct Injection (DI) - -IC.6.2.1 - -Definitions -a. - -High Pressure fuel systems - those functioning at 10 Bar pressure or above - -b. - -Direct Injection fuel systems - where the injection occurs directly into the combustion -system - -Direct Injection systems often utilize a low pressure electric fuel pump and high pressure -mechanical “boost” pump driven off the engine. - -IC.6.2.2 - -IC.6.2.3 - -IC.6.2.4 - -c. - -High Pressure Fuel Lines - those between the boost pump and injectors - -d. - -Low Pressure Fuel Lines - from the electric supply pump to the boost pump - -All High Pressure Fuel Lines must: -a. - -Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel -reinforcement and visible Nomex tracer yarn. Equivalent products may be used with -prior approval. - -b. - -Not incorporate elastomeric seals - -c. - -Be rigidly connected every 100 mm by mechanical fasteners to structural engine -components such as cylinder heads or block - -Any Low Pressure flexible Fuel Lines must be one of: -• - -Metal braided hose with threaded fittings (crimped on or reusable) - -• - -Reinforced rubber hose with some form of abrasion resistant protection - -Fuel rail mounting requirements: -a. - -The fuel rail must be securely attached to the engine block or cylinder head with brackets -and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this -requirement. - -b. - -The fastening method must be sufficient to hold the fuel rail in place with the maximum -regulated pressure acting on the injector internals and neglecting any assistance from -cylinder pressure acting on the injector tip. - -c. - -Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 - -IC.6.2.5 - -High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as -the cylinder head or engine block. - -IC.6.2.6 - -Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the -fuel system in parallel with the DI boost pump. The external regulator must be used even if -the DI boost pump comes equipped with an internal regulator. - -IC.7 - -EXHAUST AND NOISE CONTROL - -IC.7.1 - -Exhaust Protection - -IC.7.1.1 - -The exhaust system must be separated from any of these components by means given in -T.1.6.3: -a. - -Flammable materials, including the fuel and fuel system, the oil and oil system - -b. - -Thermally sensitive components, including brake lines, composite materials, and -batteries - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 87 of 143 - - IC.7.2 - -Exhaust Outlet - -IC.7.2.1 - -The exhaust must be routed to prevent the driver from fumes at any speed considering the -draft of the vehicle - -IC.7.2.2 - -The Exhaust Outlet(s) must be: -a. - -No more than 45 cm aft of the centerline of the rear axle - -b. - -No more than 60 cm above the ground. - -IC.7.2.3 - -Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in -front of the Main Hoop must be shielded to prevent contact by persons approaching the -vehicle or a driver exiting the vehicle - -IC.7.2.4 - -Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an -exhaust manifold or exhaust system. - -IC.7.3 - -Variable Exhaust - -IC.7.3.1 - -Adjustable tuning or throttling devices are permitted. - -IC.7.3.2 - -Manually adjustable tuning devices must require tools to change - -IC.7.3.3 - -Refer to IN.10.2 for additional requirements during the Noise Test - -IC.7.4 - -Connections to Exhaust -Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum -devices that connect directly to the exhaust system, are prohibited. - -IC.7.5 - -Noise Level and Testing - -IC.7.5.1 - -The vehicle must stay below the permitted sound level at all times IN.10.5 - -IC.7.5.2 - -Sound level will be verified during Technical Inspection, refer to IN.10 - -IC.8 - -ELECTRICAL - -IC.8.1 - -Starter -Each vehicle must start the engine using an onboard starter at all times - -IC.8.2 - -Batteries -Refer to T.9.2 for specific requirements of Low Voltage batteries - -IC.8.3 - -Voltage Limit - -IC.8.3.1 - -Voltage between any two electrical connections must be Low Voltage T.9.1.2 - -IC.8.3.2 - -This voltage limit does not apply to these systems: -• - -High Voltage systems for ignition - -• - -High Voltage systems for injectors - -• - -Voltages internal to OEM charging systems designed for <60 V DC output. - -IC.9 - -SHUTDOWN SYSTEM - -IC.9.1 - -Shutdown Circuit - -IC.9.1.1 - -The Shutdown Circuit consists of these components: -a. - -Primary Master Switch IC.9.3 - -b. - -Cockpit Main Switch IC.9.4 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 88 of 143 - - c. - -(ETC Only) Brake System Plausibility Device (BSPD) IC.4.8 - -d. - -Brake Overtravel Switch (BOTS) T.3.3 - -e. - -Inertia Switch (if used) T.9.4 - -IC.9.1.2 - -The team must be able to demonstrate all features and functions of the Shutdown Circuit and -components at Technical Inspection - -IC.9.1.3 - -The international electrical symbol (a red spark on a white edged blue triangle) must be near -the Primary Master Switch and the Cockpit Main Switch. - -IC.9.2 - -Shutdown Circuit Operation - -IC.9.2.1 - -The Shutdown Circuit must Open upon operation of, or detection from any of the components -listed in IC.9.1.1 - -IC.9.2.2 - -When the Shutdown Circuit Opens, it must: -a. - -Stop the engine - -b. - -Disconnect power to the: -• - -Fuel Pump(s) - -• - -Ignition - -• - -(ETC only) Electronic Throttle IC.4.1.1 - -IC.9.3 - -Primary Master Switch - -IC.9.3.1 - -Configuration and Location - The Primary Master Switch must meet T.9.3 - -IC.9.3.2 - -Function - the Primary Master Switch must: -a. - -Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel -pump(s), ignition and electrical controls. -All battery current must flow through this switch - -b. - -Be direct acting, not act through a relay or logic. - -IC.9.4 - -Cockpit Main Switch - -IC.9.4.1 - -Configuration - The Cockpit Main Switch must: - -IC.9.4.2 - -IC.9.4.3 - -a. - -Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF -position) - -b. - -Have a diameter of 24 mm minimum - -Location – The Cockpit Main Switch must be: -a. - -In easy reach of the driver when in a normal driving position wearing Harness - -b. - -Adjacent to the Steering Wheel - -c. - -Unobstructed by the Steering Wheel or any other part of the vehicle - -Function - the Cockpit Main Switch may act through a relay - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 89 of 143 - - EV - ELECTRIC VEHICLES -EV.1 -EV.1.1 - -DEFINITIONS -Tractive System – TS -Every part electrically connected to the Motor(s) and/or Accumulator(s) - -EV.1.2 - -Grounded Low Voltage - GLV -Every electrical part that is not part of the Tractive System - -EV.1.3 - -Accumulator -All the battery cells or super capacitors that store the electrical energy to be used by the -Tractive System - -EV.2 -EV.2.1 - -DOCUMENTATION -Electrical System Form - ESF - -EV.2.1.1 Each team must submit an Electrical System Form (ESF) with a clearly structured -documentation of the entire vehicle electrical system (including control and Tractive System). -Submission and approval of the ESF does not mean that the vehicle will automatically pass -Electrical Technical Inspection with the described items / parts. -EV.2.1.2 The ESF may provide guidance or more details than the Formula SAE Rules. -EV.2.1.3 Use the format provided and submit the ESF as given in section DR - Document Requirements -EV.2.2 - -Submission Penalties -Penalties for the ESF are imposed as given in section DR - Document Requirements. - -EV.3 -EV.3.1 - -ELECTRICAL LIMITATIONS -Operation - -EV.3.1.1 Supplying power to the motor to drive the vehicle in reverse is prohibited -EV.3.1.2 Drive by wire control of wheel torque is permitted -EV.3.1.3 Any algorithm or electronic control unit that can adjust the requested wheel torque may only -decrease the total driver requested torque and must not increase it -EV.3.2 - -Energy Meter - -EV.3.2.1 All Electric Vehicles must run with the Energy Meter provided at the event -Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter -EV.3.2.2 The Energy Meter must be installed in an easily accessible location -EV.3.2.3 All Tractive System power must flow through the Energy Meter -EV.3.2.4 Each team must download their Energy Meter data in a manner and timeframe specified by -the organizer -EV.3.2.5 Power and Voltage limits will be checked by the Energy Meter data -Energy is calculated as the time integrated value of the measured voltage multiplied by the -measured current logged by the Energy Meter. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 90 of 143 - - EV.3.3 - -Power and Voltage - -EV.3.3.1 The maximum power measured by the Energy Meter must not exceed 80 kW -EV.3.3.2 The maximum permitted voltage that may occur between any two points must not exceed -600 V DC -EV.3.3.3 The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr -EV.3.4 - -Violations - -EV.3.4.1 A Violation occurs when one or two of these exist: -a. - -Use of more than the specified maximum power EV.3.3.1 - -b. - -Exceed the maximum voltage EV.3.3.2 - -for one or the two conditions: -• - -Continuously for 100 ms or more - -• - -After a moving average over 500 ms is applied - -EV.3.4.2 Missing Energy Meter data may be treated as a Violation, subject to official discretion -EV.3.4.3 Tampering, or attempting to tamper with the Energy Meter or its data may result in -Disqualification (DQ) -EV.3.5 - -Penalties - -EV.3.5.1 Violations during the Acceleration, Skidpad, Autocross Events: -a. - -Each run with one or more Violations will Disqualify (DQ) the best run of the team - -b. - -Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the -two best runs - -EV.3.5.2 Violations during the Endurance event: -• - -Each Violation: 60 second penalty D.14.2.1 - -EV.3.5.3 Repeated Violations may void Inspection Approval or receive additional penalties up to and -including Disqualification, subject to official discretion. -EV.3.5.4 The respective data of each run in which a team has a Violation and the resulting decision may -be made public. - -EV.4 -EV.4.1 - -COMPONENTS -Motors - -EV.4.1.1 Only electrical motors are allowed. The number of motors is not limited. -EV.4.1.2 Motors must meet T.5.3 -EV.4.1.3 If Motors are mounted to the suspension uprights, their cables and wiring must: -a. - -Include an Interlock EV.7.8 -This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive -System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or -knocked off the vehicle. - -b. - -Reduce the length of the portions of wiring and other connections that do not meet -F.11.1.3 to the extent possible - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 91 of 143 - - EV.4.2 - -Motor Controller -The Tractive System Motor(s) must be connected to the Accumulator through a Motor -Controller. No direct connections between Motor(s) and Accumulator. - -EV.4.3 - -Accumulator Container - -EV.4.3.1 Accumulator Containers must meet F.10 -EV.4.3.2 The Accumulator Container(s) must be removable from the vehicle while still remaining rules -compliant -EV.4.3.3 The Accumulator Container(s) must be completely closed at all times (when mounted to the -vehicle and when removed from the vehicle) without the need to install extra protective -covers -EV.4.3.4 The Accumulator Container(s) may contain Holes or Openings -a. - -Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the -Accumulator Container(s) - -b. - -Holes and Openings in the Accumulator Container must meet F.10.4 - -c. - -External holes must meet EV.6.1 - -EV.4.3.5 Any Accumulators that may vent an explosive gas must have a ventilation system or pressure -relief valve to release the vented gas -EV.4.3.6 Segments sealed in Accumulator Containers must have a path to a pressure relief valve -EV.4.3.7 Pressure relief valves must not have line of sight to the driver, with the Firewall installed or -removed -EV.4.3.8 Each Accumulator Container must be labelled with the: - -EV.4.4 - -a. - -School Name and Vehicle Number - -b. - -Symbol specified in ISO 7010-W012 -background) with: - -(triangle with black lightning bolt on yellow - -• - -Triangle side length of 100 mm minimum - -• - -Visibility from all angles, including when the lid is removed - -c. - -Text “Always Energized” - -d. - -Text “High Voltage” if the voltage meets T.9.1.1 - -Grounded Low Voltage System - -EV.4.4.1 The GLV System must be: -a. - -A Low Voltage system that is Grounded to the Chassis - -b. - -Able to operate with Accumulator removed from the vehicle - -EV.4.4.2 The GLV System must include a Master Switch, see EV.7.9.1 -EV.4.4.3 A GLV Measuring Point (GLVMP) must be installed which is: -a. - -Connected to GLV System Ground - -b. - -Next to the TSMP EV.5.8 - -c. - -4 mm shrouded banana jack - -d. - -Color: Black - -e. - -Marked “GND” - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 92 of 143 - - EV.4.4.4 Low Voltage Batteries must meet T.9.2 -EV.4.5 - -Accelerator Pedal Position Sensor - APPS -Refer to T.4.2 for specific requirements of the APPS - -EV.4.6 - -Brake System Encoder - BSE -Refer to T.4.3 for specific requirements of the BSE - -EV.4.7 - -APPS / Brake Pedal Plausibility Check - -EV.4.7.1 Must monitor for the two conditions: -• - -The mechanical brakes are engaged EV.4.6, T.3.2.4 - -• - -The APPS signals more than 25% Pedal Travel EV.4.5 - -EV.4.7.2 If the two conditions in EV.4.7.1 occur at the same time: -a. - -Power to the Motor(s) must be immediately and completely shut down - -b. - -The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, -with or without brake operation - -The team must be able to demonstrate these actions at Technical Inspection -EV.4.8 - -Tractive System Part Positioning -All parts belonging to the Tractive System must meet F.11 - -EV.4.9 - -Housings and Enclosures - -EV.4.9.1 Each housing or enclosure containing parts of the Tractive System other than Motor housings, -must be labelled with the: -a. - -Symbol specified in ISO 7010-W012 -background) - -(triangle with black lightning bolt on yellow - -b. - -Text “High Voltage” if the voltage meets T.9.1.1 - -EV.4.9.2 If the material of the housing containing parts of the Tractive System is electrically conductive, -it must have a low resistance connection to GLV System Ground, see EV.6.7 -EV.4.10 Accumulator Hand Cart -EV.4.10.1 Teams must have a Hand Cart to transport their Accumulator Container(s) -EV.4.10.2 The Hand Cart must be used when the Accumulator Container(s) are transported on the -competition site EV.11.4.2 EV.11.5.1 -EV.4.10.3 The Hand Cart must: -a. - -Be able to carry the load of the Accumulator Container(s) without tipping over - -b. - -Contain a minimum of two wheels - -c. - -Have a brake that must be: -• - -Released only using a dead man type switch (where the brake is always on until -released by pushing and holding a handle) or by manually lifting part of the cart off -the ground - -• - -Able to stop the Hand Cart with a fully loaded Accumulator Container - -EV.4.10.4 Accumulator Container(s) must be securely attached to the Hand Cart - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 93 of 143 - - EV.5 - -ENERGY STORAGE - -EV.5.1 - -Accumulator - -EV.5.1.1 All cells or super capacitors which store the Tractive System energy are built into Accumulator -Segments and must be enclosed in (an) Accumulator Container(s). -EV.5.1.2 Each Accumulator Segment must contain: -• - -Static voltage of 120 V DC maximum - -• - -Energy of 6 MJ maximum -The contained energy of a stack is calculated by multiplying the maximum stack voltage -with the nominal capacity of the used cell(s) - -• - -Mass of 12 kg maximum - -EV.5.1.3 No further energy storage except for reasonably sized intermediate circuit capacitors are -allowed after the Energy Meter EV.3.1 - -EV.5.1.4 All Accumulator Segments and/or Accumulator Containers (including spares and replacement -parts) must be identical to the design documented in the ESF and SES -EV.5.2 - -Electrical Configuration - -EV.5.2.1 All Tractive System components must be rated for the maximum Tractive System voltage -EV.5.2.2 If the Accumulator Container is made from an electrically conductive material: -a. - -The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner -wall of the Accumulator Container with an insulating material that is rated for the -maximum Tractive System voltage. - -b. - -All conductive surfaces on the outside of the Accumulator Container must have a low -resistance connection to the GLV System Ground, see EV.6.7 - -c. - -Any conductive penetrations, such as mounting hardware, must be protected against -puncturing the insulating barrier. - -EV.5.2.3 Each Accumulator Segment must be electrically insulated with suitable Nonflammable -Material (F.1.18) (not air) for the two: -a. - -Between the segments in the container - -b. - -On top of the segment - -The intent is to prevent arc flashes caused by inter segment contact or by parts/tools -accidentally falling into the container during maintenance for example. -EV.5.2.4 Soldering electrical connections in the high current path is prohibited -Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are -not part of the high current path. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 94 of 143 - - EV.5.2.5 Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, -must be rated to the maximum Tractive System voltage. -EV.5.3 - -Maintenance Plugs - -EV.5.3.1 Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet: -a. - -The separated Segments meet voltage and energy limits of EV.5.1.2 - -b. - -The separation must affect the two poles of the Segment - -EV.5.3.2 Maintenance Plugs must: -a. - -Require the physical removal or separation of a component. Contactors or switches are -not acceptable Maintenance Plugs - -b. - -Have access after opening the Accumulator Container and not necessary to move or -remove any other components - -c. - -Not be physically possible to make electrical connection in any configuration other than -the design intended configuration - -d. - -Not require tools to install or remove - -e. - -Include a positive locking feature which prevents the plug from unintentionally becoming -loose - -f. - -Be nonconductive on surfaces that do not provide any electrical connection - -EV.5.3.3 When the Accumulator Containers are opened or Segments are removed, the Accumulator -Segments must be separated by using the Maintenance Plugs. See EV.11.4.1 -EV.5.4 - -Isolation Relays - IR - -EV.5.4.1 All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more -Isolation Relays (IR) -EV.5.4.2 The Isolation Relays must: -a. - -Be a Normally Open type - -b. - -Open the two poles of the Accumulator - -EV.5.4.3 When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator -Container -EV.5.4.4 The Isolation Relays and any fuses must be separated from the rest of the Accumulator with -an electrically insulated and Nonflammable Material (F.1.18). -EV.5.4.5 A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit -Opens EV.7.2.2 -EV.5.5 - -Manual Service Disconnect - MSD -A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two -poles of the Accumulator EV.11.3.2 - -EV.5.5.1 The Manual Service Disconnect (MSD) must be: -a. - -A directly accessible element, fuse or connector that will visually show disconnected - -b. - -More than 350 mm from the ground - -c. - -Easily visible when standing behind the vehicle - -d. - -Operable in 10 seconds or less by an untrained person - -e. - -Operable without removing any bodywork or obstruction or using tools - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 95 of 143 - - f. - -Directly operated. Remote operation through a long handle, rope or wire is not -acceptable. - -g. - -Clearly marked with "MSD" - -EV.5.5.2 The Energy Meter must not be used as the Manual Service Disconnect (MSD) -EV.5.5.3 An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed -EV.5.5.4 A dummy connector or similar may be used to restore isolation to meet EV.6.1.2 -EV.5.6 - -Precharge and Discharge Circuits - -EV.5.6.1 The Accumulator must contain a Precharge Circuit. The Precharge Circuit must: -a. - -Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage -before closing the second IR - -b. - -Be supplied from the Shutdown Circuit EV.7.1 - -EV.5.6.2 The Intermediate Circuit must precharge before closing the second IR -a. - -The end of precharge must be controlled by feedback by monitoring the voltage in the -Intermediate Circuit - -EV.5.6.3 The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be: -a. - -Wired in a way that it is always active when the Shutdown Circuit is open - -b. - -Able to discharge the Intermediate Circuit capacitors if the MSD has been opened - -c. - -Not be fused - -d. - -Designed to handle the maximum Tractive System voltage for minimum 15 seconds - -EV.5.6.4 Positive Temperature Coefficient (PTC) devices must not be used to limit current for the -Precharge Circuit or Discharge Circuit -EV.5.6.5 The precharge relay must be a mechanical type relay -EV.5.7 - -Voltage Indicator -Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is -present at the vehicle side of the IRs - -EV.5.7.1 The Voltage Indicator must always function, including when the Accumulator Container is -disconnected or removed -EV.5.7.2 The voltage being present at the connectors must directly control the Voltage Indicator using -hard wired electronics with no software control. -EV.5.7.3 The control signal which closes the IRs must not control the Voltage Indicator -EV.5.7.4 The Voltage Indicator must: - -EV.5.8 - -a. - -Be located where it is clearly visible when connecting/disconnecting the Accumulator -Tractive System connections - -b. - -Be labeled “High Voltage Present” - -Tractive System Measuring Points - TSMP - -EV.5.8.1 Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are: -a. - -Connected to the positive and negative motor controller/inverter supply lines - -b. - -Next to the Master Switches EV.7.9 - -c. - -Protected by a nonconductive housing that can be opened without tools - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 96 of 143 - - d. - -Protected from being touched with bare hands / fingers once the housing is opened - -EV.5.8.2 Two TSMPs must be installed in the Charger EV.8.2 which are: -a. - -Connected to the positive and negative Charger output lines - -b. - -Available during charging of any Accumulator(s) - -EV.5.8.3 The TSMPs must be: -a. - -4 mm shrouded banana jacks rated to an appropriate voltage level - -b. - -Color: Red - -c. - -Marked “HV+” and “HV-“ - -EV.5.8.4 Each TSMP must be secured with a current limiting resistor. -a. - -The resistor must be sized for the voltage: -Maximum TS Voltage (Vmax) - -Resistor Value - -Vmax <= 200 V DC - -5 kOhm - -200 V DC < Vmax <= 400 V DC - -10 kOhm - -400 V DC < Vmax <= 600 V DC - -15 kOhm - -b. - -Resistor continuous power rating must be more than the power dissipated across the -TSMPs if they are shorted together - -c. - -Direct measurement of the value of the resistor must be possible during Electrical -Technical Inspection. - -EV.5.8.5 Any TSMP must not contain additional Overcurrent Protection. -EV.5.9 - -Connectors -Tractive System connectors outside of a housing must contain an Interlock EV.7.8 - -EV.5.10 Ready to Move Light -EV.5.10.1 The vehicle must have two Ready to Move Lights: -a. - -One pointed forward - -b. - -One pointed aft - -EV.5.10.2 Each Ready to Move Light must be: -a. - -A Marker Light that complies with DOT FMVSS 108 - -b. - -Color: Amber - -c. - -Luminous area: minimum 1800 mm2 - -EV.5.10.3 Mounting location of each Ready to Move Light must: -a. - -Be near the Main Hoop near the highest point of the vehicle - -b. - -Be inside the Rollover Protection Envelope F.1.13 - -c. - -Be no lower than 150 mm from the highest point of the Main Hoop - -d. - -Not allow contact with the driver’s helmet in any circumstances - -e. - -Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm -horizontal radius from the light -Visibility is checked with Bodywork and Aerodynamic Devices in place - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 97 of 143 - - EV.5.10.4 The Ready to Move Light must: -a. - -Be powered by the GLV system - -b. - -Be directly controlled by the voltage present in the Tractive System using hard wired -electronics. EV.6.5.4 Software control is not permitted. - -c. - -Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage -outside the Accumulator Container(s) exceeds T.9.1.1 - -d. - -Not do any other functions - -EV.5.11 Tractive System Status Indicator -EV.5.11.1 The vehicle must have a Tractive System Status Indicator -EV.5.11.2 The Tractive System Status Indicator must have two separate Red and Green Status Lights -EV.5.11.3 Each of the Status Lights: -a. - -Must have a minimum luminous area of 130 mm2 - -b. - -Must be visible in direct sunlight - -c. - -May have one or more of the same elements - -EV.5.11.4 Mounting location of the Tractive System Status Indicator must: -a. - -Be near the Main Hoop at the highest point of the vehicle - -b. - -Be above the Ready to Move Light - -c. - -Be inside the Rollover Protection Envelope F.1.13 - -d. - -Be no lower than 150 mm from the highest point of the Main Hoop - -e. - -Not allow contact with the driver’s helmet in any circumstances - -f. - -Easily visible to a person near the vehicle - -EV.5.11.5 The Tractive System Status Indicator must show when the GLV System is energized: -a. -b. - -EV.6 -EV.6.1 - -Condition - -Green Light - -Red Light - -No Faults -Fault in one or the two: -BMS EV.7.3.5 or IMD EV.7.6.5 - -Always ON - -OFF -Flash -2 Hz to 5 Hz, 50% duty cycle - -OFF - -ELECTRICAL SYSTEM -Covers - -EV.6.1.1 Nonconductive material or covers must prevent inadvertent human contact with any Tractive -System voltage. -Covers must be secure and sufficiently rigid. -Removable Bodywork is not suitable to enclose Tractive System connections. -EV.6.1.2 Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated -test probe must not be possible when the Tractive System enclosures are in place. -EV.6.1.3 Tractive System components and Accumulator Containers must be protected from moisture, -rain or puddles. -A rating of IP65 is recommended - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 98 of 143 - - EV.6.2 - -Insulation - -EV.6.2.1 Insulation material must: -a. - -Be appropriate for the expected surrounding temperatures - -b. - -Have a minimum temperature rating of 90°C - -EV.6.2.2 Insulating tape or paint may be part of the insulation, but must not be the only insulation. -EV.6.3 - -Wiring - -EV.6.3.1 All wires and terminals and other conductors used in the Tractive System must be sized for the -continuous current they will conduct -EV.6.3.2 All Tractive System wiring must: -a. - -Be marked with wire gauge, temperature rating and insulation voltage rating. -A serial number or a norm printed on the wire is sufficient if this serial number or norm is -clearly bound to the wire characteristics for example by a data sheet. - -b. - -Have temperature rating more than or equal to 90°C - -EV.6.3.3 Tractive System wiring must be: -a. - -Done to professional standards with sufficient strain relief - -b. - -Protected from loosening due to vibration - -c. - -Protected against damage by rotating and / or moving parts - -d. - -Located out of the way of possible snagging or damage - -EV.6.3.4 Any Tractive System wiring that runs outside of electrical enclosures: -a. - -Must meet one of the two: -• - -Enclosed in separate orange nonconductive conduit - -• - -Use an orange shielded cable - -b. - -The conduit or shielded cable must be securely anchored at each end to allow it to -withstand a force of 200 N without straining the cable end crimp - -c. - -Any shielded cable must have the shield grounded - -EV.6.3.5 Wiring that is not part of the Tractive System must not use orange wiring or conduit. -EV.6.4 - -Connections - -EV.6.4.1 All Tractive System connections must: -a. - -Be designed to use intentional current paths through conductors designed for electrical -current - -b. - -Not rely on steel bolts to be the primary conductor - -c. - -Not include compressible material such as plastic in the stack-up - -EV.6.4.2 If external, uninsulated heat sinks are used, they must be properly grounded to the GLV -System Ground, see EV.6.7 -EV.6.4.3 Bolted electrical connections in the high current path of the Tractive System must include a -positive locking feature to prevent unintentional loosening -Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. -Bolts with nylon patches are allowed for blind connections into OEM components. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 99 of 143 - - EV.6.4.4 Information about the electrical connections supporting the high current path must be -available at Electrical Technical Inspection -EV.6.5 - -Voltage Separation - -EV.6.5.1 Separation of Tractive System and GLV System: -a. - -The entire Tractive System and GLV System must be completely galvanically separated. - -b. - -The border between Tractive System and GLV System is the galvanic isolation between -the two systems. -Some components, such as the Motor Controller, may be part of both systems. - -EV.6.5.2 There must be no connection between the Chassis of the vehicle (or any other conductive -surface that might be inadvertently touched by a person), and any part of any Tractive System -circuits. -EV.6.5.3 Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4 -EV.6.5.4 GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, -HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light -EV.5.10 the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator -Container. -EV.6.5.5 Where Tractive System and GLV are included inside the same enclosure, they must meet one -of the two: -a. - -Be separated by insulating barriers (in addition to the insulation on the wire) made of -moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or -higher (such as Nomex based electrical insulation) - -b. - -Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: -U < 100 V DC - -10 mm - -100 V DC < U < 200 V DC - -20 mm - -U > 200 V DC - -30 mm - -EV.6.5.6 Spacing must be clearly defined. Components and cables capable of movement must be -positively restrained to maintain spacing. -EV.6.5.7 If Tractive System and GLV are on the same circuit board: -a. - -They must be on separate, clearly defined and clearly marked areas of the board - -b. - -Required spacing related to the spacing between traces / board areas are as follows: -Voltage - -Over Surface - -Thru Air (cut in board) Under Conformal Coating - -0-50 V DC - -1.6 mm - -1.6 mm - -1 mm - -50-150 V DC - -6.4 mm - -3.2 mm - -2 mm - -150-300 V DC - -9.5 mm - -6.4 mm - -3 mm - -300-600 V DC - -12.7 mm - -9.5 mm - -4 mm - -EV.6.5.8 Teams must be prepared to show spacing on team built equipment -For inaccessible circuitry, spare boards or appropriate photographs must be available for -inspection -EV.6.5.9 All connections to external devices such as laptops from a Tractive System component must -include galvanic isolation - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 100 of 143 - - EV.6.6 - -Overcurrent Protection - -EV.6.6.1 All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent -Protection/Fusing. -EV.6.6.2 Unless otherwise allowed in the Rules, all Overcurrent Protection devices must: -a. - -Be rated for the highest voltage in the systems they protect. -Overcurrent Protection devices used for DC must be rated for DC and must carry a DC -rating equal to or more than the system voltage - -b. - -Have a continuous current rating less than or equal to the continuous current rating of -any electrical component that it protects - -c. - -Have an interrupt current rating higher than the theoretical short circuit current of the -system that it protects - -EV.6.6.3 Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, -strings of capacitors, or conductors must have individual Overcurrent Protection. -EV.6.6.4 Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of: -a. - -Be appropriately sized for the total current that the individual Overcurrent Protection -devices could transmit - -b. - -Contain additional Overcurrent Protection to protect the conductors - -EV.6.6.5 Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be -used when all three conditions are met: -• - -An Overcurrent Protection device rated at less than or equal to one third the sum of the -parallel fusible links and complying with EV.6.6.2.b above is connected in series. - -• - -The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a -fault is detected. - -• - -Fusible link current rating is specified in manufacturer’s data or suitable test data is -provided. - -EV.6.6.6 If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, -the reduced conductor longer than 150 mm must have additional Overcurrent Protection. -This additional Overcurrent Protection must be: -a. - -150 mm or less from the source end of the reduced conductor - -b. - -On the positive and the negative conductors in the Tractive System - -c. - -On the positive conductor in the Grounded Low Voltage System - -EV.6.6.7 Cells with internal Overcurrent Protection may be used without external Overcurrent -Protection if suitably rated. -Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and -conditions of EV.6.6.5 above will apply. -EV.6.7 - -Grounding - -EV.6.7.1 Grounding is required for: -a. - -Parts of the vehicle which are 100 mm or less from any Tractive System component - -b. - -(EV only) The Firewall T.1.8.4 - -EV.6.7.2 Grounded parts of the vehicle must have a resistance to GLV System Ground less than the -values specified below. -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 101 of 143 - - a. - -Electrically conductive parts - -300 mOhms (measured with a current of 1 A) - -Examples: parts made of steel, (anodized) aluminum, any other metal parts -b. - -Parts which may become electrically conductive - -5 Ohm - -Example: carbon fiber parts -Carbon fiber parts may need special measures such as using copper mesh or similar to -keep the ground resistance below 5 Ohms. -EV.6.7.3 Electrical conductivity of any part may be tested by checking any point which is likely to be -conductive. -Where no convenient conductive point is available, an area of coating may be removed. - -EV.7 - -SHUTDOWN SYSTEM - -EV.7.1 - -Shutdown Circuit - -EV.7.1.1 The Shutdown Circuit consists of these components, connected in series: -a. - -Battery Management System (BMS) EV.7.3 - -b. - -Insulation Monitoring Device (IMD) EV.7.6 - -c. - -Brake System Plausibility Device (BSPD) EV.7.7 - -d. - -Interlocks (as required) EV.7.8 - -e. - -Master Switches (GLVMS, TSMS) EV.7.9 - -f. - -Shutdown Buttons EV.7.10 - -g. - -Brake Over Travel Switch (BOTS) T.3.3 - -h. - -Inertia Switch T.9.4 - -EV.7.1.2 The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the -Precharge Circuit Relay. -EV.7.1.3 The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open -EV.7.1.4 The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown -Circuit. -The design of the respective circuits must make sure that a failure cannot result in electrical -power being fed back into the Shutdown Circuit. -EV.7.1.5 The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown -Circuit current -EV.7.1.6 The team must be able to demonstrate all features and functions of the Shutdown Circuit and -components at Electrical Technical Inspection. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 102 of 143 - - Shutdown Bu ons - -Brake -System -Plausibility -Device - -GLV System -Master Switch - -GLV System - -LV - -Insula on -Monitoring -Device - -Ba ery -Management -System - -Iner a -Switch - -cockpit - -Brake -Over -Travel -Switch - -le - -TS - -right - -MSD -Interlock - -Interlock(s) -le - -Trac ve System -Master Switch - -GLV Fuse -Accumulator Container(s) - -GLV -Ba ery - -Precharge -Control - -GLV System - -Chas s is -TSMP - -TSMP - -GLVMP -GND - -HV+ - -HV -IR - -Accumulator -Fuse(s) - -IR - -Trac ve -System - -Trac ve -System -Precharge - -EV.7.2.1 The Shutdown Circuit must Open when any of these exist: - -Trac ve System - -GLV System - -Shutdown Circuit Operation - -Trac ve System - -EV.7.2 - -a. - -Operation of, or detection from any of the components listed in EV.7.1.1 - -b. - -Any shutdown of the GLV System - -EV.7.2.2 When the Shutdown Circuit Opens: -a. - -The Tractive System must Shutdown - -b. - -All Accumulator current flow must stop immediately EV.5.4.3 - -c. - -The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less - -d. - -The Motor(s) must spin free. Torque must not be applied to the Motor(s) - -EV.7.2.3 When the BMS, IMD or BSPD Open the Shutdown Circuit: - -EV.7.3 - -a. - -The Tractive System must stay disabled until manually reset - -b. - -The Tractive System must be reset only by manual action of a person directly at the -vehicle - -c. - -The driver must not be able to reactivate the Tractive System from inside the vehicle - -d. - -Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close - -Battery Management System - BMS - -EV.7.3.1 A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and -Temperature EV.7.5 when the: -a. - -Tractive System is Active EV.11.5 - -b. - -Accumulator is connected to a Charger EV.8.3 - -EV.7.3.2 The BMS must have galvanic isolation at each segment to segment boundary, as approved in -the ESF -EV.7.3.3 Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 103 of 143 - -right - - EV.7.3.4 The BMS must monitor for: -a. - -Voltage values outside the allowable range EV.7.4.2 - -b. - -Voltage sense Overcurrent Protection device(s) blown or tripped - -c. - -Temperature values outside the allowable range EV.7.5.2 - -d. - -Missing or interrupted voltage or temperature measurements - -e. - -A fault in the BMS - -EV.7.3.5 If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must: -a. - -Open the Shutdown Circuit EV.7.2.2 - -b. - -Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 -The two lights must stay on until the BMS is manually reset EV.7.2.3 - -EV.7.3.6 The BMS Indicator Light must be: - -EV.7.4 - -a. - -Color: Red - -b. - -Clearly visible to the seated driver in bright sunlight - -c. - -Clearly marked with the lettering “BMS” - -Accumulator Voltage - -EV.7.4.1 The BMS must measure the cell voltage of each cell -When single cells are directly connected in parallel, only one voltage measurement is needed -EV.7.4.2 Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels -stated in the cell data sheet. Measurement accuracy must be considered. -EV.7.4.3 All voltage sense wires to the BMS must meet one of: -a. - -Have Overcurrent Protection EV.7.4.4 below - -b. - -Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below - -EV.7.4.4 When used, Overcurrent Protection for the BMS voltage sense wires must meet the two: -a. - -The Overcurrent Protection must occur in the conductor, wire or PCB trace which is -directly connected to the cell tab. - -b. - -The voltage rating of the Overcurrent Protection must be equal to or higher than the -maximum segment voltage - -EV.7.4.5 Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: - -EV.7.5 - -• - -BMS is a distributed BMS system (one cell measurement per board) - -• - -Sense wire length is less than 25 mm - -• - -BMS board has Overcurrent Protection - -Accumulator Temperature - -EV.7.5.1 The BMS must measure the temperatures of critical points of the Accumulator -EV.7.5.2 Temperatures (considering measurement accuracy) must stay below the lower of the two: -• - -The maximum cell temperature limit stated in the cell data sheet - -• - -60°C - -EV.7.5.3 Cell temperatures must be measured at the negative terminal of the respective cell - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 104 of 143 - - EV.7.5.4 The temperature sensor used must be in direct contact with one of: -• - -The negative terminal itself - -• - -The negative terminal busbar less than 10 mm away from the spot weld or clamping -source on the negative cell terminal - -EV.7.5.5 For lithium based cells, -a. - -The temperature of a minimum of 20% of the cells must be monitored by the BMS - -b. - -The monitored cells must be equally distributed inside the Accumulator Container(s) - -The temperature of each cell should be monitored -EV.7.5.6 Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells -sensed by the sensor. -EV.7.5.7 Temperature sensors must have appropriate electrical isolation that meets one of the two: -• - -Between the sensor and cell - -• - -In the sensing circuit - -The isolation must consider GLV/TS isolation as well as common mode voltages between -sense locations. -EV.7.6 - -Insulation Monitoring Device - IMD - -EV.7.6.1 The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System -EV.7.6.2 The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved -alternate equivalent IMD -Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD -EV.7.6.3 The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the -maximum Tractive System operation voltage. -EV.7.6.4 The IMD must monitor the Tractive System for: -a. - -An isolation failure - -b. - -A failure in the IMD operation - -This must be done without the influence of any programmable logic. -EV.7.6.5 If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must: -a. - -Open the Shutdown Circuit EV.7.2.2 - -b. - -Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 -The two lights must stay on until the IMD is manually reset EV.7.2.3 - -EV.7.6.6 The IMD Indicator Light must be: - -EV.7.7 - -a. - -Color: Red - -b. - -Clearly visible to the seated driver in bright sunlight - -c. - -Clearly marked with the lettering “IMD” - -Brake System Plausibility Device - BSPD - -EV.7.7.1 The vehicle must have a standalone nonprogrammable circuit to check for simultaneous -braking and high power output -The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7) -EV.7.7.2 The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 105 of 143 - - • - -Demand for Hard Braking EV.4.6 - -• - -Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit -is delivered to the Motor(s) at the nominal battery voltage - -The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips -EV.7.7.3 The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in -any sensor input -EV.7.7.4 The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection. -a. - -Power must not be sent to the Motor(s) of the vehicle during the test - -b. - -The test must prove the function of the complete BSPD in the vehicle, including the -current sensor - -The suggested test would introduce a current by a separate wire from an external power -supply simulating the Tractive System current while pressing the brake pedal -EV.7.8 - -Interlocks - -EV.7.8.1 Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 ) -EV.7.8.2 Additional Interlocks may be included in the Tractive System or components -EV.7.8.3 The Interlock is a wire or connection that must: -a. - -Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted - -b. - -Not be in the low (ground) connection to the IR coils of the Shutdown Circuit - -EV.7.8.4 Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive -System wiring or components when the Interlock circuit is: - -EV.7.9 - -a. - -In the same wiring harness as Tractive System wiring - -b. - -Part of a Tractive System Connector EV.5.9 - -c. - -Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the -connection to a Tractive System connector - -Master Switches - -EV.7.9.1 Each vehicle must have two Master Switches that must: -a. - -Meet T.9.3 for Configuration and Location - -b. - -Be direct acting, not act through a relay or logic - -EV.7.9.2 The Grounded Low Voltage Master Switch (GLVMS) must: -a. - -Completely stop all power to the GLV System EV.4.4 - -b. - -Be in the center of a completely red circular area of > 50 mm in diameter - -c. - -Be labeled “LV” - -EV.7.9.3 The Tractive System Master Switch (TSMS) must: -a. - -Open the Shutdown Circuit in the OFF position EV.7.2.2 - -b. - -Be the last switch before the IRs except for Precharge circuitry and Interlocks. - -c. - -Be in the center of a completely orange circular area of > 50 mm in diameter - -d. - -Be labeled “TS” and the symbol specified in ISO 7010-W012 -lightning bolt on yellow background). - -e. - -Be fitted with a "lockout/tagout" capability in the OFF position EV.11.3.1 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -(triangle with black - -Page 106 of 143 - - EV.7.10 Shutdown Buttons -EV.7.10.1 Three Shutdown Buttons must be installed on the vehicle -EV.7.10.2 Each Shutdown Button must: -a. - -Be a push-pull or push-rotate emergency stop switch - -b. - -Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position - -c. - -Hold when operated to the OFF position - -d. - -Let the Shutdown Circuit Close when operated to the ON position - -EV.7.10.3 One Shutdown Button must be on each side of the vehicle which: -a. - -Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop -Bracing F.5.9 - -b. - -Has a diameter of 40 mm minimum - -c. - -Must not be easily removable or mounted onto removable body work - -EV.7.10.4 One Shutdown Button must be mounted in the cockpit which: -a. - -Is located in easy reach of the belted in driver, adjacent to the steering wheel, and -unobstructed by the steering wheel or any other part of the vehicle - -b. - -Has diameter of 24 mm minimum - -EV.7.10.5 The international electrical symbol -each Shutdown Button. - -EV.8 - -CHARGER REQUIREMENTS - -EV.8.1 - -Charger Requirements - -(a red spark on a white edged blue triangle) must be near - -EV.8.1.1 All features and functions of the Charger and Charging Shutdown Circuit must be -demonstrated at Electrical Technical Inspection. IN.4.1 -EV.8.1.2 Chargers will be sealed after approval. IN.4.7.1 -EV.8.2 - -Charger Features - -EV.8.2.1 The Charger must be galvanically isolated (AC) input to (DC) output. -EV.8.2.2 If the Charger housing is conductive it must be connected to the earth ground of the AC input. -EV.8.2.3 All connections of the Charger(s) must be isolated and covered. -EV.8.2.4 The Charger connector(s) must incorporate a feature to let the connector become live only -when correctly connected to the Accumulator. -EV.8.2.5 High Voltage charging leads must be orange -EV.8.2.6 The Charger must have two TSMPs installed, see EV.5.8.2 -EV.8.2.7 The Charger must include a Charger Shutdown Button which must: -a. - -Be a push-pull or push-rotate emergency stop switch - -b. - -Have a minimum diameter of 25 mm - -c. - -Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position - -d. - -Hold when operated to the OFF position - -e. - -Be labelled with the international electrical symbol -triangle) - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -(a red spark on a white edged blue - -Page 107 of 143 - - EV.8.3 - -Charging Shutdown Circuit - -EV.8.3.1 The Charging Shutdown Circuit consists of: -a. - -Charger Shutdown Button EV.8.2.7 - -b. - -Battery Management System (BMS) EV.7.3 - -c. - -Insulation Monitoring Device (IMD) EV.7.6 - -EV.8.3.2 The BMS and IMD parts of the Charging Shutdown Circuit must: -a. - -Be designed as Normally Open contacts - -b. - -Have completely independent circuits to Open the Charging Shutdown Circuit. -Design of the respective circuits must make sure that a failure cannot result in electrical -power being fed back into the Charging Shutdown Circuit. - -EV.8.4 - -Charging Shutdown Circuit Operation - -EV.8.4.1 When Charging, the BMS and IMD must: -a. - -Monitor the Accumulator - -b. - -Open the Charging Shutdown Circuit if a fault is detected - -EV.8.4.2 When the Charging Shutdown Circuit Opens: - -EV.9 -EV.9.1 - -a. - -All current flow to the Accumulator must stop immediately - -b. - -The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less - -c. - -The Charger must be turned off - -d. - -The Charger must stay disabled until manually reset - -VEHICLE OPERATIONS -Activation Requirement -The driver must complete the Activation Sequence without external assistance after the -Master Switches EV.7.9 are ON - -EV.9.2 - -Activation Sequence -The vehicle systems must energize in this sequence: - -EV.9.3 - -a. - -Low Voltage (GLV) System EV.9.3 - -b. - -Tractive System Active EV.9.4 - -c. - -Ready to Drive EV.9.5 - -Low Voltage (GLV) System -The Shutdown Circuit may be Closed when or after the GLV System is energized - -EV.9.4 - -Tractive System Active - -EV.9.4.1 Definition – High Voltage is present outside of the Accumulator Container -EV.9.4.2 Tractive System Active must not be possible until the two: - -EV.9.5 - -• - -GLV System is Energized - -• - -Shutdown Circuit is Closed - -Ready to Drive - -EV.9.5.1 Definition – the Motor(s) will respond to the input of the APPS - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 108 of 143 - - EV.9.5.2 Ready to Drive must not be possible until the three at the same time: -• - -Tractive System Active EV.9.4 - -• - -The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 - -• - -The driver does a manual action to start Ready to Drive -Such as pressing a specific button in the cockpit - -EV.9.6 - -Ready to Drive Sound - -EV.9.6.1 The vehicle must make a characteristic sound when it is Ready to Drive -EV.9.6.2 The Ready to Drive Sound must be: -a. - -Sounded continuously for minimum 1 second and maximum 3 seconds - -b. - -A minimum sound level of 80 dBA, fast weighting IN.4.6 - -c. - -Easily recognizable. No animal voices, song parts or sounds that could be interpreted as -offensive will be accepted - -EV.9.6.3 The vehicle must not make other sounds similar to the Ready to Drive Sound. - -EV.10 EVENT SITE ACTIVITIES -EV.10.1 Onsite Registration -EV.10.1.1 The Accumulator must be onsite at the time the team registers to be eligible for Accumulator -Technical Inspection and Dynamic Events -EV.10.1.2 Teams who register without the Accumulator: -a. - -Must not bring their Accumulator onsite for the duration of the competition - -b. - -May participate in Technical Inspection and Static Events - -EV.10.2 Accumulator Removal -EV.10.2.1 After the team registers onsite, the Accumulator must remain on the competition site until -the end of the competition, or the team withdraws and leaves the site -EV.10.2.2 Violators will be disqualified from the competition and must leave immediately - -EV.11 WORK PRACTICES -EV.11.1 Personnel -EV.11.1.1 The Electrical System Officer (ESO): AD.5.2 -a. - -Is the only person on the team that may declare the vehicle electrically safe to allow -work on any system - -b. - -Must accompany the vehicle when operated or moved at the competition site - -c. - -Must be immediately available by phone at all times during the event - -EV.11.2 Maintenance -EV.11.2.1 All participating team members must wear safety glasses with side shields at any time when: -a. - -Parts of the Tractive System are exposed while energized - -b. - -Work is done on the Accumulators - -EV.11.2.2 Appropriate insulated tools must be used when working on the Accumulator or Tractive -System - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 109 of 143 - - EV.11.3 Lockout -EV.11.3.1 The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle. -EV.11.3.2 The MSD EV.5.5 must be disconnected when vehicles are: -a. - -Moved around the competition site - -b. - -Participating in Static Events - -EV.11.4 Accumulator -EV.11.4.1 These work activities at competition are allowed only in the designated area and during -Electrical Technical Inspection IN.4 See EV.5.3.3 -a. - -Opening Accumulator Containers - -b. - -Any work on Accumulators, cells, or Segments - -c. - -Energized electrical work - -EV.11.4.2 Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site -inside one of the two: -a. - -Completely closed Accumulator Container EV.4.3 See EV.4.10.2 - -b. - -Segment/Cell Transport Container EV.11.4.3 - -EV.11.4.3 The Segment/Cell Transport Container(s) must be: -a. - -Electrically insulated - -b. - -Protected from shock hazards and arc flash - -EV.11.4.4 Segments/Cells inside the Transport Container must agree with the voltage and energy limits -of EV.5.1.2 -EV.11.5 Charging -EV.11.5.1 Accumulators must be removed from the vehicle inside the Accumulator Container and put on -the Accumulator Container Hand Cart EV.4.10 for Charging -EV.11.5.2 Accumulator Charging must occur only inside the designated area -EV.11.5.3 A team member(s) who has knowledge of the Charging process must stay with the -Accumulator(s) during Charging -EV.11.5.4 Each Accumulator Container(s) must have a label with this data during Charging: -• - -Team Name - -• - -Electrical System Officer phone number(s) - -EV.11.5.5 Additional site specific rules or policies may apply - -EV.12 RED CAR CONDITION -EV.12.1 Definition -A vehicle will be a Red Car if any of the following: -a. - -Actual or possible damage to the vehicle affecting the Tractive System - -b. - -Vehicle fault indication (EV.5.11 or equivalent) - -c. - -Other conditions, at the discretion of the officials - -EV.12.2 Actions -a. - -Isolate the vehicle - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 110 of 143 - - b. - -No contact with the vehicle unless the officials give permission -Contact with the vehicle may require trained personnel with proper Personal Protective -Equipment - -c. - -Call out designated Red Car responders - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 111 of 143 - - IN - TECHNICAL INSPECTION -The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE -Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the -Rules. - -IN.1 -IN.1.1 - -INSPECTION REQUIREMENTS -Inspection Required -Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection -Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any -Dynamic event. - -IN.1.2 - -Technical Inspection Authority - -IN.1.2.1 The exact procedures and instruments used for inspection and testing are entirely at the -discretion of the Chief Technical Inspector(s). -IN.1.2.2 Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance -are final. -IN.1.3 - -Team Responsibility -Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE -Rules before Technical Inspection. - -IN.1.4 - -Reinspection -Officials may Reinspect any vehicle at any time during the competition IN.15 - -IN.2 - -INSPECTION CONDUCT - -IN.2.1 - -Vehicle Condition - -IN.2.1.1 Vehicles must be presented for Technical Inspection in finished condition, fully assembled, -complete and ready to run. -IN.2.1.2 Technical inspectors will not inspect any vehicle presented for inspection in an unfinished -state. -IN.2.2 - -Measurement - -IN.2.2.1 Allowable dimensions are absolute, and do not have any tolerance unless specifically stated -IN.2.2.2 Measurement tools and methods may vary -IN.2.2.3 No allowance is given for measurement accuracy or error -IN.2.3 - -Visible Access -All items on the Technical Inspection Form must be clearly visible to the technical inspectors -without using instruments such as endoscopes or mirrors. -Methods to provide visible access include but are not limited to removable body panels, access -panels, and other components - -IN.2.4 - -Inspection Items - -IN.2.4.1 Technical Inspection will examine all items included on the Technical Inspection Form to make -sure the vehicle and other equipment obeys the Rules. -IN.2.4.2 Technical Inspectors may examine any other items at their discretion - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 112 of 143 - - IN.2.5 - -Correction -If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team -must: - -IN.2.6 - -• - -Correct the problem - -• - -Continue Inspection or have the vehicle Reinspected - -Marked Items - -IN.2.6.1 Officials may mark, seal, or designate items or areas which have been inspected to document -the inspection and reduce the chance of tampering -IN.2.6.2 Damaged or lost marks or seals require Reinspection IN.15 - -IN.3 - -INITIAL INSPECTION -Bring these to Initial Inspection: - -IN.4 -IN.4.1 - -• - -Technical Inspection Form - -• - -All Driver Equipment per VE.3 to be used by each driver - -• - -Fire Extinguishers (for paddock and vehicle) VE.2.3 - -• - -Wet Tires V.4.3.2 - -ELECTRICAL TECHNICAL INSPECTION (EV ONLY) -Inspection Items -Bring these to Electrical Technical Inspection: -• - -Charger(s) for the Accumulator(s) EV.8.1 - -• - -Accumulator Container Hand Cart EV.4.10 - -• - -Spare Accumulator(s) (if applicable) EV.5.1.4 - -• - -Electrical Systems Form (ESF) and Component Data Sheets EV.2 - -• - -Copies of any submitted Rules Questions with the received answer GR.7 - -These basic tools in good condition: - -IN.4.2 - -• - -Insulated cable shears - -• - -Insulated screw drivers - -• - -Multimeter with protected probe tips - -• - -Insulated tools, if screwed connections are used in the Tractive System - -• - -Face Shield - -• - -HV insulating gloves which are 12 months or less from their test date - -• - -Two HV insulating blankets of minimum 0.83 m² each - -• - -Safety glasses with side shields for all team members that might work on the Tractive -System or Accumulator - -Accumulator Inspection -The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected -during Electrical Technical Inspection, or separately from the rest of Electrical Technical -Inspection. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 113 of 143 - - IN.4.3 - -Accumulator Access - -IN.4.3.1 If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, -provide detailed pictures of the internals taken during assembly -IN.4.3.2 Tech inspectors may require access to check any Accumulator(s) for rules compliance -IN.4.4 - -Insulation Monitoring Device Test - -IN.4.4.1 The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive -System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the -Tractive System is active -IN.4.4.2 The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault -resistance of 50% below the response value corresponding to 250 Ohm / Volt -IN.4.5 - -Insulation Measurement Test - -IN.4.5.1 The insulation resistance between the Tractive System and GLV System Ground will be -measured. -IN.4.5.2 The available measurement voltages are 250 V and 500 V. All vehicles with a maximum -nominal operation voltage below 500 V will be measured with the next available voltage level. -All teams with a system voltage of 500 V or more will be measured with 500 V. -IN.4.5.3 To pass the Insulation Measurement Test the measured insulation resistance must be -minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage. -IN.4.6 - -Ready to Drive Sound -The sound level will be measured with a free field microphone placed free from obstructions -in a radius of 2 m around the vehicle against the criteria in EV.9.6 - -IN.4.7 - -Electrical Inspection Completion - -IN.4.7.1 All or portions of the Tractive System, Charger and other components may be sealed IN.2.6 -IN.4.7.2 Additional monitoring to verify conformance to rules may be installed. Refer to the Event -Website for further information. -IN.4.7.3 A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle -may be Tractive System Active EV.9.4 -IN.4.7.4 Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection -before the vehicle may attempt any further Inspections. See EV.11.3.2 - -IN.5 - -DRIVER COCKPIT CHECKS -The Clearance Checks and Egress Test may be done separately or in conjunction with other -parts of Technical Inspection - -IN.5.1 - -Driver Clearance -Each driver in the normal driving position is checked for the three: - -IN.5.2 - -• - -Helmet clearance F.5.6.4 - -• - -Head Restraint positioning T.2.8.5 - -• - -Harness fit and adjustment T.2.5, T.2.6, T.2.7 - -Egress Test - -IN.5.2.1 Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 114 of 143 - - IN.5.2.2 The Egress Test will be conducted for each driver as follows: - -IN.5.3 - -a. - -The driver must wear the specified Driver Equipment VE.3.2, VE.3.3 - -b. - -Egress time begins with the driver in the fully seated position, with hands in driving -position on the connected steering wheel. - -c. - -Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown -Button EV.7.10.4 - -d. - -Egress time will stop when the driver has two feet on the pavement - -Driver Clearance and Egress Test Completion - -IN.5.3.1 To drive the vehicle, each team driver must: -a. - -Meet the Driver Clearance requirements IN.5.1 - -b. - -Successfully complete the Egress Test IN.5.2 - -IN.5.3.2 A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection - -IN.6 - -DRIVER TEMPLATE INSPECTIONS -The Driver Template Inspection will be conducted as part of the Mechanical Inspection - -IN.6.1 - -Conduct -The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6 - -IN.6.2 - -Driver Template Clearance Criteria -To pass Mechanical Technical Inspection, the Driver Template must meet the clearance -specified in F.5.6.4 - -IN.7 - -COCKPIT TEMPLATE INSPECTIONS -The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection - -IN.7.1 - -Conduct - -IN.7.1.1 The Cockpit Opening will be checked using the template and procedure given in T.1.1 -IN.7.1.2 The Internal Cross Section will be checked using the template and procedure given in T.1.2 -IN.7.2 - -Cockpit Template Criteria -To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described. - -IN.8 -IN.8.1 - -MECHANICAL TECHNICAL INSPECTION -Inspection Items -Bring these to Mechanical Technical Inspection: -• - -Vehicle on Dry Tires V.4.3.1 - -• - -Technical Inspection Form - -• - -Push Bar VE.2.2 - -• - -Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 - -• - -Monocoque Laminate Test Specimens (if applicable) F.4.2 - -• - -The Impact Attenuator that was tested (if applicable) F.8.8.7 - -• - -Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 115 of 143 - - • -IN.8.2 - -Electronic copies of any submitted Rules Questions with the received answer GR.7 - -Aerodynamic Devices Stability and Strength - -IN.8.2.1 Any Aerodynamic Devices may be checked by pushing on the device in any direction and at -any point. -This is guidance, but actual conformance will be up to technical inspectors at the respective -competitions. The intent is to reduce the likelihood of wings detaching -IN.8.2.2 If any deflection is significant, then a force of approximately 200 N may be applied. -a. - -Loaded deflection should not be more than 25 mm - -b. - -Any permanent deflection less than 5 mm - -IN.8.2.3 If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic -Devices, then officials may Black Flag the vehicle for IN.15 Reinspection. -IN.8.3 - -Monocoque Inspections - -IN.8.3.1 Dimensions of the Monocoque will be confirmed F.7.1.4 -IN.8.3.2 When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide: -a. - -Documentation that shows dimensions on the tubes - -b. - -Pictures of the dimensioned tube being included in the layup - -IN.8.3.3 For items which cannot be verified by an inspector, the team must provide documentation, -visual and/or written, that the requirements have been met. -IN.8.3.4 A team found to be improperly presenting any evidence of the manufacturing process may be -barred from competing with a monocoque. -IN.8.4 - -Engine Inspection (IC Only) -The organizer may measure or tear down engines to confirm conformance to the rules. - -IN.8.5 - -Mechanical Inspection Completion -All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any -further inspections. - -IN.9 -IN.9.1 - -IN.9.2 - -TILT TEST -Tilt Test Requirements -a. - -The vehicle must contain the maximum amount of fluids it may carry - -b. - -The tallest driver must be seated in the normal driving position - -c. - -Tilt tests may be conducted in one, the other, or the two directions to pass - -d. - -(IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and -pressure the system downstream of the High Pressure pump. See IC.6.2 - -Tilt Test Criteria - -IN.9.2.1 No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal -IN.9.2.2 Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g. -IN.9.3 - -Tilt Test Completion -Tilt Tests must be passed before a vehicle may attempt any further inspections - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 116 of 143 - - IN.10 NOISE AND SWITCH TEST (IC ONLY) -IN.10.1 - -Sound Level Measurement - -IN.10.1.1 The sound level will be measured during a stationary test, with the vehicle gearbox in neutral -at the defined Test Speed -IN.10.1.2 Measurements will be made with a free field microphone placed: - -IN.10.2 - -• - -free from obstructions - -• - -at the Exhaust Outlet vertical level IC.7.2.2 - -• - -0.5 m from the end of the Exhaust Outlet IC.7.2.2 - -• - -at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below) - -Special Configurations - -IN.10.2.1 Where the Exhaust has more than one Exhaust Outlet: -a. - -The noise test is repeated for each outlet - -b. - -The highest sound level is used - -IN.10.2.2 Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal -plane. -IN.10.2.3 If the exhaust has any form of active tuning or throttling device or system, the exhaust must -meet all requirements with the device or system in all positions. -IN.10.2.4 When the exhaust has a manually adjustable tuning device(s): - -IN.10.3 - -a. - -The position of the device must be visible to the officials for the noise test - -b. - -The device must be manually operable by the officials during the noise test - -c. - -The device must not be moved or modified after the noise test is passed - -Industrial Engine -An engine which, according to the manufacturers’ specifications and without the required -restrictor, is capable of producing 5 hp per 100 cc or less. -Submit a Rules Question to request approval of an Industrial Engine. - -IN.10.4 - -Test Speeds - -IN.10.4.1 Maximum Test Speed -The engine speed that corresponds to an average piston speed of: -a. - -Automotive / Motorcycle engines - -914.4 m/min (3,000 ft/min) - -b. - -Industrial Engines - -731.5 m/min (2,400 ft/min) - -The calculated speed will be rounded to the nearest 500 rpm. -Test Speeds for typical engines are published on the FSAE Online website -IN.10.4.2 Idle Test Speed -a. - -Determined by the vehicle’s calibrated idle speed - -b. - -If the idle speed varies then the vehicle will be tested across the range of idle speeds -determined by the team - -IN.10.4.3 The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 117 of 143 - - IN.10.5 - -IN.10.6 - -Maximum Permitted Sound Level -a. - -At idle - -103 dBC, fast weighting - -b. - -At all other speeds - -110 dBC, fast weighting - -Noise Level Retesting - -IN.10.6.1 Noise levels may be monitored at any time -IN.10.6.2 The Noise Test may be repeated at any time -IN.10.7 - -Switch Function -The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, -and/or BOTS T.3.3 will be verified during the Noise Test - -IN.10.8 - -Noise Test Completion -Noise Tests must be passed before a vehicle may attempt any further inspections - -IN.11 RAIN TEST (EV ONLY) -IN.11.1 - -IN.11.2 - -Rain Test Requirements -• - -Tractive System must be Active - -• - -The vehicle must not be in Ready to Drive mode (EV.7) - -• - -Any driven wheels must not touch the ground - -• - -A driver must not be seated in the vehicle - -Rain Test Conduct -The water spray will be rain like, not a direct high pressure water jet - -IN.11.3 - -a. - -Spray water at the vehicle from any possible direction for 120 seconds - -b. - -Stop the water spray - -c. - -Observe the vehicle for 120 seconds - -Rain Test Completion -The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire -240 seconds duration - -IN.12 BRAKE TEST -IN.12.1 - -Objective -The brake system will be dynamically tested and must demonstrate the capability of locking all -four wheels when stopping the vehicle in a straight line at the end of an acceleration run -specified by the brake inspectors - -IN.12.2 - -Brake Test Conduct (IC Only) - -IN.12.2.1 Brake Test procedure: -a. - -Accelerate to speed (typically getting into 2nd gear) until reaching the designated area - -b. - -Apply the brakes with force sufficient to demonstrate full lockup of all four wheels - -IN.12.2.2 The Brake Test passes if: -• - -All four wheels lock up - -• - -The engine stays running during the complete test - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 118 of 143 - - IN.12.3 - -Brake Test Conduct (EV Only) - -IN.12.3.1 Brake Test procedure: -a. - -Accelerate to speed until reaching the designated area - -b. - -Switch off the Tractive System EV.7.10.4 - -c. - -Apply the brakes with force sufficient to demonstrate full lockup of all four wheels - -IN.12.3.2 The Brake Test passes if all four wheels lock while the Tractive System is shut down -IN.12.3.3 The Tractive System Active Light may switch a short time after the vehicle has come to a -complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c - -IN.13 INSPECTION APPROVAL -IN.13.1 - -Inspection Approval - -IN.13.1.1 When all parts of Technical Inspection are complete as shown on the Technical Inspection -sheet, the vehicle receives Inspection Approval -IN.13.1.2 The completed Inspection Sticker shows the Inspection Approval -IN.13.1.3 The Inspection Approval is contingent on the vehicle remaining in the required condition -throughout the competition. -IN.13.1.4 The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any -time for any reason -IN.13.2 - -Inspection Sticker - -IN.13.2.1 Inspection Sticker(s) are issued after completion of all or part of Technical Inspection -IN.13.2.2 Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently -IN.13.3 - -Inspection Validity - -IN.13.3.1 Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or -are required to be Reinspected. -IN.13.3.2 Inspection Approval is valid only for the duration of the specific Formula SAE competition -during which the inspection is conducted. - -IN.14 MODIFICATIONS AND REPAIRS -IN.14.1 - -Prior to Inspection Approval -Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for -Technical Inspection, and until the vehicle has the full Inspection Approval, the only -modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the -Inspection Form. - -IN.14.2 - -After Inspection Approval - -IN.14.2.1 The vehicle must maintain all required specifications (including but not limited to ride height, -suspension travel, braking capacity (pad material/composition), sound level and wing location) -throughout the competition. -IN.14.2.2 Changes to fit the vehicle to different drivers are allowed. Permitted changes are: -• - -Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly - -• - -Substitution of the Head Restraint or seat insert - -• - -Adjustment of mirrors - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 119 of 143 - - IN.14.2.3 Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the -vehicle are: - -IN.14.3 - -• - -Adjustment of belts, chains and clutches - -• - -Adjustment of brake bias - -• - -Adjustment to engine / powertrain operating parameters, including fuel mixture and -ignition timing, and any software calibration changes - -• - -Adjustment of the suspension - -• - -Changing springs, sway bars and shims in the suspension - -• - -Adjustment of Tire Pressure, subject to V.4.3.4 - -• - -Adjustment of wing or wing element(s) angle, but not the location T.7.1 - -• - -Replenishment of fluids - -• - -Replacement of worn tires or brake pads. Replacement tires and brake pads must be -identical in material/composition/size to those presented and approved at Technical -Inspection. - -• - -Changing of wheels and tires for weather conditions D.6 - -• - -Recharging Low Voltage batteries - -• - -Recharging High Voltage Accumulators - -Repairs or Changes After Inspection Approval -The Inspection Approval may be voided for any reason including, but not limited to: -a. - -Damage to the vehicle IN.13.1.3 - -b. - -Changes beyond those allowed per IN.14.2 above - -IN.15 REINSPECTION -IN.15.1 - -Requirement - -IN.15.1.1 Any vehicle may be Reinspected at any time for any reason -IN.15.1.2 Reinspection must be completed to restore Inspection Approval, if voided -IN.15.2 - -Conduct - -IN.15.2.1 The Technical Inspection process may be repeated in entirety or in part -IN.15.2.2 Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector -IN.15.3 - -Result - -IN.15.3.1 With Voided Inspection Approval -Successful completion of Reinspection will restore Inspection Approval IN.13.1 -IN.15.3.2 During Dynamic Events -a. - -Issues found during Reinspection will void Inspection Approval - -b. - -Penalties may be applied to the Dynamic Events the vehicle has competed in -Applied penalties may include additional time added to event(s), loss of one or more -fastest runs, up to DQ, subject to official discretion. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 120 of 143 - - S - STATIC EVENTS -S.1 - -S.2 -S.2.1 - -GENERAL STATIC -Presentation - -75 points - -Cost - -100 points - -Design - -150 points - -Total - -325 points - -PRESENTATION EVENT -Presentation Event Objective -The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive -business, logistical, production, or technical case that will convince outside interests to invest -in the team’s concept. - -S.2.2 - -Presentation Concept - -S.2.2.1 - -The concept for the Presentation Event will be provided on the FSAE Online website. - -S.2.2.2 - -The concept for the Presentation Event may change for each competition - -S.2.2.3 - -The team presentation must meet the concept - -S.2.2.4 - -The team presentation must relate specifically to the vehicle as entered in the competition - -S.2.2.5 - -Teams should assume that the judges represent different areas, including engineering, -production, marketing and finance, and may not all be engineers. - -S.2.2.6 - -The presentation may be given in different settings, such as a conference room, a group -meeting, virtually, or in conjunction with other Static Events. -Specific details will be included in the Presentation Concept or communicated separately. - -S.2.3 - -Presentation Schedule -Teams that fail to make their presentation during their assigned time period get zero points -for the Presentation Event. - -S.2.4 - -Presentation Submissions - -S.2.4.1 - -The Presentation Concept may require information to be submitted prior to the event. -Specific details will be included in the Presentation Concept. - -S.2.4.2 - -Submissions may be graded as part of the Presentation Event score. - -S.2.4.3 - -Pre event submissions will be subject to penalties imposed as given in section DR - Document -Requirements or the Presentation Concept - -S.2.5 - -Presentation Format - -S.2.5.1 - -One or more team members will give the presentation to the judges. - -S.2.5.2 - -All team members who will give any part of the presentation, or who will respond to judges’ -questions must be: - -S.2.5.3 - -• - -In the presentation area when the presentation starts - -• - -Introduced and identified to the judges - -Presentations will be time limited. The judges will stop any presentation exceeding the time -limit. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 121 of 143 - - S.2.5.4 - -The presentation itself will not be interrupted by questions. Immediately after the -presentation there may be a question and answer session. - -S.2.5.5 - -Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions. - -S.2.6 - -Presentation Equipment -Refer to the Presentation Concept for additional information - -S.2.7 - -Evaluation Criteria - -S.2.7.1 - -Presentations will be evaluated on content, organization, visual aids, delivery and the team’s -response to the judges questions. - -S.2.7.2 - -The actual quality of the prototype itself will not be considered as part of the presentation -judging - -S.2.7.3 - -Presentation Judging Score Sheet – available at the FSAE Online website - -S.2.8 - -Judging Sequence -Presentation judging may be conducted in one or more phases. - -S.2.9 - -Presentation Event Scoring - -S.2.9.1 - -The Presentation raw score is based on the average of the scores of each judge. - -S.2.9.2 - -Presentation Event scores may range from 0 to 75 points, using a method at the discretion of -the judges - -S.2.9.3 - -Presentation Event scoring may include normalizing the scores of different judging teams and -scaling the overall results. - -S.3 -S.3.1 - -COST AND MANUFACTURING EVENT -Cost Event Objective -The Cost and Manufacturing Event evaluates the ability of the team to consider budget and -incorporate production considerations for production and efficiency. -Making tradeoff decisions between content and cost based on the performance of each part -and assembly and accounting for each part and process to meet a budget is part of Project -Management. - -S.3.2 - -Cost Event Supplement -a. - -Additional specific information on the Cost and Manufacturing Event, including -explanation and requirements, is provided in the Formula SAE Cost Event Supplement -document. - -b. - -Use the Formula SAE Cost Event Supplement to properly complete the requirements of -the Cost and Manufacturing Event. - -c. - -The Formula SAE Cost Event Supplement is available on the FSAE Online website - -S.3.3 - -Cost Event Areas - -S.3.3.1 - -Cost Report -Preparation and submission of a report (the “Cost Report”) - -S.3.3.2 - -Event Day Discussion -Discussion at the Competition with the Cost Judges around the team’s vehicle. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 122 of 143 - - S.3.3.3 - -Cost Scenario -Teams will respond to a challenge related to cost or manufacturing of the vehicle. - -S.3.4 - -Cost Report - -S.3.4.1 - -The Cost Report must: -a. - -List and cost each part on the vehicle using the standardized Cost Tables - -b. - -Base the cost on the actual manufacturing technique used on the prototype - -Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc. -c. - -Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it. - -d. - -Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools). - -e. - -Include supporting documentation to allow officials to verify part costing - -S.3.4.2 - -Generate and submit the Cost Report using the FSAE Online website, see DR - Document -Requirements - -S.3.5 - -Bill of Materials - BOM - -S.3.5.1 - -The BOM is a list of all vehicle parts, showing the relationships between the items. - -S.3.6 - -a. - -The overall vehicle is broken down into separate Systems - -b. - -Systems are made up of Assemblies - -c. - -Assemblies are made up of Parts - -d. - -Parts consist of Materials, Processes and Fasteners - -e. - -Tooling is associated with each Process that requires production tooling - -Late Submission -Penalties for Late Submission of Cost Report will be imposed as given in section DR Document Requirements. - -S.3.7 - -Cost Addendum - -S.3.7.1 - -A supplement to the Cost Report that reflects any changes or corrections made after the -submission of the Cost Report may be submitted. - -S.3.7.2 - -The Cost Addendum must be submitted during Onsite Registration at the Event. - -S.3.7.3 - -The Cost Addendum must follow the format as given in section DR - Document Requirements - -S.3.7.4 - -Addenda apply only to the competition at which they are submitted. - -S.3.7.5 - -A separate Cost Addendum may be submitted at each competition a vehicle attends. - -S.3.7.6 - -Changes to the Cost Report in the Cost Addendum will incur additional cost: -a. - -Added items will be cost at 125% of the table cost: - -+ (1.25 x Cost) - -b. - -Removed items will be credited 75% of the table cost: - -- (0.75 x Cost) - -S.3.8 - -Cost Tables - -S.3.8.1 - -All costs in the Cost Report must come from the standardized Cost Tables. - -S.3.8.2 - -If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add -Item Request must be submitted. See S.3.10 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 123 of 143 - - S.3.9 - -Make versus Buy - -S.3.9.1 - -Each part may be classified as Made or Bought -Refer to the Formula SAE Cost Event Supplement for additional information - -S.3.9.2 - -If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively -cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so. - -S.3.9.3 - -Any part which is normally purchased that is optionally shown as a Made part must have -supporting documentation submitted to prove team manufacture. - -S.3.9.4 - -Teams costing Bought parts as Made parts will be penalized. - -S.3.10 - -Add Item Request - -S.3.10.1 An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost -Tables for individual team requirements. -S.3.10.2 After review, the item may be added to the Cost Table with an appropriate cost. It will then -be available to all teams. -S.3.11 - -Public Cost Reports - -S.3.11.1 The competition organizers may publish all or part of the submitted Cost Reports. -S.3.11.2 Cost Reports for a given competition season will not be published before the end of the -calendar year. Support materials, such as technical drawings, will not be released. -S.3.12 - -Cost Report Penalties Process - -S.3.12.1 This procedure will be used in determining penalties: -a. - -Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions - -b. - -Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost -Additions - -c. - -The higher of the two penalties will be applied against the Cost Event score -• - -Penalty A expressed in points will be deducted from the Cost Event score - -• - -Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle - -S.3.12.2 Any error that results in a team over reporting a cost in their Cost Report will not be further -penalized. -S.3.12.3 Any instance where a team’s score benefits by an intentional or unintentional error on the -part of the students will be corrected on a case by case basis. -S.3.12.4 Penalty Method A - Fixed Point Deductions -a. - -From the Bill of Material, the Cost Judges will determine if all Parts and Processes have -been included in the analysis. - -b. - -In the case of any omission or error a penalty proportional to the BOM level of the error -will be imposed: - -c. - -• - -Missing/inaccurate Material, Process, Fastener - -1 point - -• - -Missing/inaccurate Part - -3 point - -• - -Missing/inaccurate Assembly - -5 point - -Each of the penalties listed above supersedes the previous penalty. - -Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 124 of 143 - - d. - -Differences other than those listed above will be deducted at the discretion of the Cost -Judges. - -S.3.12.5 Penalty Method B – Adjusted Cost Additions -a. - -The table cost for the missing or incomplete items will be calculated from the standard -Cost Tables. - -b. - -The penalty will be a value equal to twice the difference between the team cost and the -correct cost for all items in error. - -Penalty = 2 x (Table Cost – Team Reported Cost) -The table costs of all items in error are included in the calculation. A missing Assembly would -include the price of all Parts, Materials, Processes and Fasteners making up the Assembly. -S.3.13 - -Event Day and Discussion - -S.3.13.1 The team must present their vehicle at the designated time -S.3.13.2 The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during -Cost Event judging -S.3.13.3 Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging -S.3.13.4 The Cost Judges will: - -S.3.14 - -a. - -Review whether the Cost Report accurately reflects the vehicle as presented - -b. - -Review the manufacturing feasibility of the vehicle - -c. - -Assess supporting documentation based on its quality, accuracy and thoroughness - -d. - -Apply penalties for missing or incorrect information in the Cost Report compared to the -vehicle presented at inspection - -Cost Audit - -S.3.14.1 Teams may be selected for additional review to verify all processes and materials on their -vehicle are in the Cost Report -S.3.14.2 Adjustments from the Cost Audit will be included in the final scores -S.3.15 - -Cost Scenario -The Cost Scenario will be provided prior to the competition on the FSAE Online website -The Cost Scenario will include detailed information about the conduct, scope, and conditions -of the Cost Scenario - -S.3.16 - -Cost Event Scoring - -S.3.16.1 Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario -S.3.16.2 The Cost Event is worth 100 points -S.3.16.3 Cost Event Scores may be awarded in areas including, but not limited to: -• - -Price Score - -• - -Discussion Score - -• - -Scenario Score - -S.3.16.4 Penalty points may be subtracted from the Cost Score, with no limit. -S.3.16.5 Cost Event scoring may include normalizing the scores of different judging teams and scaling -the results. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 125 of 143 - - S.4 - -DESIGN EVENT - -S.4.1 - -Design Event Objective - -S.4.1.1 - -The Design Event evaluates the engineering effort that went into the vehicle and how the -engineering meets the intent of the market in terms of vehicle performance and overall value. - -S.4.1.2 - -The team and vehicle that illustrate the best use of engineering to meet the design goals, a -cost effective high performance vehicle, and the best understanding of the design by the team -members will win the Design Event. - -S.4.1.3 - -Components and systems that are incorporated into the design as finished items are not -evaluated as a student designed unit, but are assessed on the team’s selection and application -of that unit. - -S.4.2 - -Design Documents - -S.4.2.1 - -Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings - -S.4.2.2 - -These Design Documents will be used for: -• - -Design Judge reviews prior to the Design Event - -• - -Sorting teams into appropriate design groups based on the quality of their review. - -S.4.2.3 - -Penalties for Late Submission of all or any one of the Design Documents will be imposed as -given in section DR - Document Requirements - -S.4.2.4 - -Teams that submit one or more Design Documents which do not represent a serious effort to -comply with the requirements may be excluded from the Design Event or be awarded a lower -score. - -S.4.3 - -Design Briefing - -S.4.3.1 - -The Design Briefing must use the template from the FSAE Online website. - -S.4.3.2 - -Refer to the Design Briefing template for: -a. - -Specific content requirements, areas and details - -b. - -Maximum slides that may be used per topic - -S.4.3.3 - -Submit the Design Briefing as given in section DR - Document Requirements - -S.4.4 - -Vehicle Drawings - -S.4.4.1 - -The Vehicle Drawings must meet: -a. - -Three view line drawings showing the vehicle, from the front, top, and side - -b. - -Each drawing must appear on a separate page - -c. - -May be manually or computer generated - -S.4.4.2 - -Submit the Vehicle Drawings as given in section DR - Document Requirements - -S.4.5 - -Design Spec Sheet -Use the format provided and submit the Design Spec Sheet as given in section DR - Document -Requirements -The Design Judges realize that final design refinements and vehicle development may cause -the submitted values to differ from those of the completed vehicle. For specifications that are -subject to tuning, an anticipated range of values may be appropriate. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 126 of 143 - - S.4.6 - -Vehicle Condition - -S.4.6.1 - -Inspection Approval IN.13.1.1 is not required prior to Design judging. - -S.4.6.2 - -Vehicles must be presented for Design judging in finished condition, fully assembled, complete -and ready to run. -a. - -The judges will not evaluate any vehicle that is presented at the Design event in what -they consider to be an unfinished state. - -b. - -Point penalties may be assessed for vehicles with obvious preparation issues - -S.4.7 - -Support Material - -S.4.7.1 - -Teams may bring to Design Judging any photographs, drawings, plans, charts, example -components or other materials that they believe are needed to support the presentation of -the vehicle and the discussion of their development process. - -S.4.7.2 - -The available space in the Design Event judging area may be limited. - -S.4.8 - -Judging Sequence -Design judging may be conducted in one or more phases. -Typical Design judging includes a first round review of all teams, then additional review of -selected teams. - -S.4.9 - -Judging Criteria - -S.4.9.1 - -The Design Judges will: -a. - -Evaluate the engineering effort based upon the team’s Design Documents, discussion -with the team, and an inspection of the vehicle - -b. - -Inspect the vehicle to determine if the design concepts are adequate and appropriate for -the application (relative to the objectives stated in the rules). - -c. - -Deduct points if the team cannot adequately explain the engineering and construction of -the vehicle - -S.4.9.2 - -The Design Judges may assign a portion of the Design Event points to the Design Documents - -S.4.9.3 - -Design Judging Score Sheets are available at the FSAE Online website. - -S.4.10 - -Design Event Scoring - -S.4.10.1 Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge -S.4.10.2 Penalty points may be subtracted from the Design score -S.4.10.3 Vehicles that are excluded from Design judging or refused judging get zero points for Design, -and may receive penalty points. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 127 of 143 - - D - DYNAMIC EVENTS -D.1 -D.1.1 - -GENERAL DYNAMIC -Dynamic Events and Maximum Scores -Acceleration - -100 points - -Skid Pad - -75 points - -Autocross - -125 points - -Efficiency - -100 points - -Endurance - -275 points - -Total - -675 points - -D.1.2 - -Definitions - -D.1.2.1 - -Dynamic Area – Any designated portion(s) of the competition site where the vehicles may -move under their own power. This includes competition, inspection and practice areas. - -D.1.2.2 - -Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the -purpose of gathering those vehicles that are about to start. - -D.2 - -PIT AND PADDOCK - -D.2.1 - -Vehicle Movement - -D.2.1.1 - -Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the -Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside - -D.2.1.2 - -The team may move the vehicle with -a. - -All four wheels on the ground - -b. - -The rear wheels supported on dollies, by push bar mounted wheels -The external wheels supporting the rear of the vehicle must be non pivoting so the -vehicle travels only where the front wheels are steered. The driver must always be able -to steer and brake the vehicle normally. - -D.2.1.3 - -When the Push Bar is attached, the engine must stay off, unless authorized by the officials - -D.2.1.4 - -Vehicles must be Shutdown when being moved around the paddock - -D.2.1.5 - -Vehicles with wings must have two team members, one walking on each side of the vehicle -when the vehicle is being pushed - -D.2.1.6 - -A 25 point penalty may be assessed for each violation - -D.2.2 - -Fueling and Charging -(IC only) Officials must conduct all fueling activities in the designated location. -(EV only) Accumulator charging must be done in the designated location EV.11.5 - -D.2.3 - -Powertrain Operation -In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three: -a. - -(IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR -a Technical Inspector gives permission -(EV only) The vehicle shows the OK to Energize sticker IN.4.7.3 - -b. - -The vehicle is supported on a stand - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 128 of 143 - - c. - -D.3 -D.3.1 - -The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed - -DRIVING -Drivers Meetings – Attendance Required -All drivers for an event must attend the drivers meeting(s). The driver for an event will be -disqualified if he/she does not attend the driver meeting for the event. - -D.3.2 - -Dynamic Area Limitations -Refer to the Event Website for specific information - -D.3.2.1 - -The organizer may specify restrictions for the Dynamic Area. These could include limiting the -number of team members and what may be brought into the area. - -D.3.2.2 - -The organizer may specify additional restrictions for the Staging Area. These could include -limiting the number of team members and what may be brought into the area. - -D.3.2.3 - -The organizer may establish requirements for persons in the Dynamic Area, such as closed toe -shoes or long pants. - -D.3.3 - -Driving Under Power - -D.3.3.1 - -Vehicles must move under their own power only when inside the designated Dynamic Area(s), -unless otherwise directed by the officials. - -D.3.3.2 - -Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point -penalty for the first violation and disqualification for a second violation. - -D.3.4 - -Driving Offsite - Prohibited -Teams found to have driven their vehicle at an offsite location during the period of the -competition will be excluded from the competition. - -D.3.5 - -Driver Equipment - -D.3.5.1 - -All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with: -a. - -(IC) Engine running or (EV) Tractive System Active - -b. - -Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run. - -D.3.5.2 - -Removal of any Driver Equipment during a Dynamic event will result in Disqualification. - -D.3.6 - -Starting -Auxiliary batteries must not be used once a vehicle has moved to the starting line of any -event. See IC.8.1 - -D.3.7 - -Practice Area - -D.3.7.1 - -A practice area for testing and tuning may be available - -D.3.7.2 - -The practice area will be controlled and may only be used during the scheduled times - -D.3.7.3 - -Vehicles using the practice area must have a complete Inspection Sticker - -D.3.8 - -Instructions from Officials -Obey flags and hand signals from course marshals and officials immediately - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 129 of 143 - - D.3.9 - -Vehicle Integrity -Officials may revoke the Inspection Approval for any vehicle condition that could compromise -vehicle integrity, compromise the track surface, or pose a potential hazard. -This could result in DNF or DQ of any Dynamic event. - -D.3.10 - -Stalled & Disabled Vehicles - -D.3.10.1 If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to -complete the run, it will be scored DNF for that run -D.3.10.2 Disabled vehicles will be cleared from the track by the track workers. - -D.4 - -FLAGS -Any specific variations will be addressed at the drivers meeting. - -D.4.1 - -Command Flags - -D.4.1.1 - -Any Command Flag must be obeyed immediately and without question. - -D.4.1.2 - -Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time -penalty may be assessed. - -D.4.1.3 - -Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, -something has been observed that needs closer inspection. - -D.4.1.4 - -Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the -corner workers signals at the end of the passing zone to merge into competition. - -D.4.1.5 - -Checkered Flag - Run has been completed. Exit the course at the designated point. - -D.4.1.6 - -Green Flag – Approval to begin your run, enter the course under direction of the starter. If -you stall the vehicle, please restart and await another Green Flag - -D.4.1.7 - -Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the -course as much as possible to keep the course open. Follow corner worker directions. - -D.4.1.8 - -Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, -something has happened beyond the flag station. NO PASSING unless directed by the corner -workers. - -D.4.1.9 - -Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE -PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless -directed by the corner workers. - -D.4.2 - -Informational Flags - -D.4.2.1 - -An Information Flag communicates to the driver, but requires no specific action. - -D.4.2.2 - -Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be -prepared for evasive maneuvers. - -D.4.2.3 - -White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a -cautious rate. - -D.5 - -WEATHER CONDITIONS - -D.5.1 - -Operating Adjustments - -D.5.1.1 - -The organizer may alter the conduct and scoring of the competition based on weather -conditions. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 130 of 143 - - D.5.1.2 - -No adjustments will be made to times for running in differing Operating Conditions. - -D.5.1.3 - -The minimum performance levels to score points may be adjusted by the Officials. - -D.5.2 - -Operating Conditions - -D.5.2.1 - -These operating conditions will be recognized: -• - -Dry - -• - -Damp - -• - -Wet - -D.5.2.2 - -The current operating condition will be decided by the Officials and may change at any time. - -D.5.2.3 - -The current operating condition will be prominently displayed at the Dynamic Area, and may -be communicated by other means. - -D.6 - -TIRES AND TIRE CHANGES - -D.6.1 - -Tire Requirements - -D.6.1.1 - -Teams must run the tires allowed for each Operating Condition: - -D.6.1.2 - -Operating Condition -Tires Allowed -Dry -Dry ( V.4.3.1 ) -Damp -Dry or Wet -Wet -Wet ( V.4.3.2 ) -When the operating condition is Damp, teams may change between Dry Tires and Wet Tires: -a. - -Any time during the Acceleration, Skidpad, and Autocross Events - -b. - -Any time before starting their Endurance Event - -D.6.2 - -Tire Changes during Endurance - -D.6.2.1 - -All tire changes after a vehicle has received the Green flag to start the Endurance Event must -occur in the Driver Change Area - -D.6.2.2 - -If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or -vehicles will be Black Flagged and brought into the Driver Change Area - -D.6.2.3 - -The allowed tire changes and associated conditions are given in these tables. -Existing -Operating -Condition -Dry -Damp -Damp -Wet - -Currently -Running on: -Dry Tires -Dry Tires -Wet Tires -Wet Tires - -Operating Condition Changed to: -Dry - -Damp - -Wet - -ok -ok -C -C - -A -A -C -C - -B -B -ok -ok - -Requirement -A -B -C -D.6.2.4 - -may change from Dry to Wet -MUST change from Dry to Wet -may change from Wet to Dry - -Allowed at -Driver Change? -Yes -Yes -NO - -Time allowed to change tires: - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 131 of 143 - - D.6.2.5 - -a. - -Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 -minutes with Driver Change, will be added to the team's total time for Endurance - -b. - -Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s -total time for Endurance - -If the vehicle has a tire puncture, -a. - -The wheel and tire may be replaced with an identical wheel and tire - -b. - -When the puncture is caused by track debris and not a result of component failure or the -vehicle itself, the tire change time will not count towards the team’s total time. - -D.7 - -DRIVER LIMITATIONS - -D.7.1 - -Three Event Limit - -D.7.1.1 - -An individual team member may not drive in more than three events. - -D.7.1.2 - -The Efficiency Event is considered a separate event although it is conducted simultaneously -with the Endurance Event. -A minimum of four drivers are required to participate in all of the dynamic events. - -D.8 -D.8.1.1 - -DEFINITIONS -DOO - Cone is Down or Out when one or the two: -a. - -Cone has been knocked over (Down) - -b. - -The entire base of the cone lies outside the box marked around the cone in its -undisturbed position (Out) - -D.8.1.2 - -DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed -to complete it - -D.8.1.3 - -DQ - Disqualified - run(s) or event(s) no longer valid - -D.8.1.4 - -Gate - The path between two cones through which the vehicle must pass. Two cones, one on -each side of the course define a gate. Two sequential cones in a slalom define a gate. - -D.8.1.5 - -Entry Gate -The path marked by cones which establishes the required path the vehicle must -take to enter the course. - -D.8.1.6 - -Exit Gate - The path marked by cones which establishes the required path the vehicle must -take to exit the course. - -D.8.1.7 - -OC – Off Course -a. - -The vehicle did not pass through a gate in the required direction. - -b. - -The vehicle has all four wheels outside the course boundary as indicated by cones, edge -marking or the edge of the paved surface. - -Where more than one boundary indicator is used on the same course, the narrowest track will -be used when determining Off Course penalties. - -D.9 - -ACCELERATION EVENT -The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement. - -D.9.1 - -Acceleration Layout - -D.9.1.1 - -Course length will be 75 m from starting line to finish line - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 132 of 143 - - D.9.1.2 - -Course width will be minimum 4.9 m wide as measured between the inner edges of the bases -of the course edge cones - -D.9.1.3 - -Cones are put along the course edges at intervals, approximately 6 m - -D.9.1.4 - -Cone locations are not marked on the pavement - -D.9.2 - -Acceleration Procedure - -D.9.2.1 - -Each team may attempt up to four runs, using two drivers, limited to two runs for each driver - -D.9.2.2 - -Runs with the first driver have priority - -D.9.2.3 - -Each Acceleration run is done as follows: -a. - -The foremost part of the vehicle will be staged at 0.30 m behind the starting line - -b. - -A Green Flag or light signal will give the approval to begin the run - -c. - -Timing starts when the vehicle crosses the starting line - -d. - -Timing ends when the vehicle crosses the finish line - -D.9.2.4 - -Each driver may go to the front of the staging line immediately after their first run to make a -second run - -D.9.3 - -Acceleration Penalties - -D.9.3.1 - -Cones (DOO) -Two second penalty for each DOO (including entry and exit gate cones) on that run - -D.9.3.2 - -Off Course (OC) -DNF for that run - -D.9.4 - -Acceleration Scoring - -D.9.4.1 - -Scoring Term Definitions: - -D.9.4.2 - -• - -Corrected Time = Acceleration Run Time + ( DOO * 2 ) - -• - -Tyour - the best Corrected Time for the team - -• - -Tmin - the lowest Corrected Time recorded for any team - -• - -Tmax - 150% of Tmin - -When Tyour < Tmax. the team score is calculated as: -Acceleration Score = - -95.5 x - -( Tmax / Tyour ) -1 - -+ 4.5 - -( Tmax / Tmin ) -1 -D.9.4.3 - -D.10 - -When Tyour > Tmax , Acceleration Score = 4.5 - -SKIDPAD EVENT -The Skidpad event measures the vehicle cornering ability on a flat surface while making a -constant radius turn. - -D.10.1 - -Skidpad Layout - -D.10.1.1 Course Design -• - -Two pairs of concentric circles in a figure of eight pattern - -• - -Centers of the circles - -18.25 m apart - -• - -Inner circles - -15.25 m in diameter - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 133 of 143 - - • - -Outer circles - -21.25 m in diameter - -• - -Driving path - -the 3.0 m wide path between the inner and outer circles - -D.10.1.2 Cone Placement -a. - -Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) -pylons will be positioned around the outside of each outer circle in the pattern shown in -the Skidpad layout diagram - -b. - -Each circle will be marked with a chalk line, inside the inner circle and outside the outer -circle - -The Skidpad layout diagram shows the circles for cone placement, not for course marking. -Chalk lines are marked on the opposite side of the cones, outside the driving path -c. - -Additional pylons will establish the entry and exit gates - -d. - -A cone may be put in the middle of the exit gate until the finish lap - -D.10.1.3 Course Operation - -D.10.2 - -a. - -Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the -circles where they meet. - -b. - -The line between the centers of the circles defines the start/stop line. - -c. - -A lap is defined as traveling around one of the circles from the start/stop line and -returning to the start/stop line. - -Skidpad Procedure - -D.10.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver. -D.10.2.2 Runs with the first driver have priority -D.10.2.3 Each Skidpad run is done as follows: -a. - -A Green Flag or light signal will give the approval to begin the run - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 134 of 143 - - b. - -The vehicle will enter perpendicular to the figure eight and will take one full lap on the -right circle - -c. - -The next lap will be on the right circle and will be timed - -d. - -Immediately after the second lap, the vehicle will enter the left circle for the third lap - -e. - -The fourth lap will be on the left circle and will be timed - -f. - -Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the -intersection moving in the same direction as entered - -D.10.2.4 Each driver may go to the front of the staging line immediately after their first run to make a -second run -D.10.3 - -Skidpad Penalties - -D.10.3.1 Cones (DOO) -A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run -D.10.3.2 Off Course (OC) -DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off -Course. -D.10.3.3 Incorrect Laps -Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be -DNF for that run. -D.10.4 - -Skidpad Scoring - -D.10.4.1 Scoring Term Definitions -• - -Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) - -• - -Tyour - the best Corrected Time for the team - -• - -Tmin - is the lowest Corrected Time recorded for any team - -• - -Tmax - 125% of Tmin - -D.10.4.2 When Tyour < Tmax. the team score is calculated as: -Skidpad Score = - -71.5 x - -( Tmax / Tyour )2 -1 - -+ 3.5 - -( Tmax / Tmin )2 -1 -D.10.4.3 When Tyour > Tmax , Skidpad Score = 3.5 - -D.11 - -AUTOCROSS EVENT -The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight -course - -D.11.1 - -Autocross Layout - -D.11.1.1 The Autocross course will be designed with these specifications. Average speeds should be 40 -km/hr to 48 km/hr -a. - -Straights: No longer than 60 m with hairpins at the two ends - -b. - -Straights: No longer than 45 m with wide turns on the ends - -c. - -Constant Turns: 23 m to 45 m diameter - -d. - -Hairpin Turns: 9 m minimum outside diameter (of the turn) - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 135 of 143 - - e. - -Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing - -f. - -Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. - -g. - -Minimum track width: 3.5 m - -h. - -Length of each run should be approximately 0.80 km - -D.11.1.2 The Autocross course specifications may deviate from the above to accommodate event site -requirements. -D.11.2 - -Autocross Procedure - -D.11.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver -D.11.2.2 Runs with the first driver have priority -D.11.2.3 Each Autocross run is done as follows: -a. - -The vehicle will be staged at a specific distance behind the starting line - -b. - -A Green Flag or light signal will give the approval to begin the run - -c. - -Timing starts when the vehicle crosses the starting line - -d. - -Timing ends when the vehicle crosses the finish line - -D.11.2.4 Each driver may go to the front of the staging line immediately after their first run to make a -second run -D.11.3 - -Autocross Penalties - -D.11.3.1 Cones (DOO) -Two second penalty for each DOO (including cones after the finish line) on that run -D.11.3.2 Off Course (OC) -a. - -When an OC occurs, the driver must reenter the track at or prior to the point of exit or -receive a 20 second penalty - -b. - -Penalties will not be assessed to bypass an accident or other reasons at the discretion of -track officials. - -D.11.3.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one Off Course -D.11.4 - -Autocross Scoring - -D.11.4.1 Scoring Term Definitions: -• - -Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) - -• - -Tyour - the best Corrected Time for the team - -• - -Tmin - the lowest Corrected Time recorded for any team - -• - -Tmax - 145% of Tmin - -D.11.4.2 When Tyour < Tmax. the team score is calculated as: -Autocross Score = - -118.5 x - -( Tmax / Tyour ) -1 - -+ 6.5 - -( Tmax / Tmin ) -1 -D.11.4.3 When Tyour > Tmax , Autocross Score = 6.5 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 136 of 143 - - D.12 - -ENDURANCE EVENT -The Endurance event evaluates the overall performance of the vehicle and tests the durability -and reliability. - -D.12.1 - -Endurance General Information - -D.12.1.1 The organizer may establish one or more requirements to allow teams to compete in the -Endurance event. -D.12.1.2 Each team may attempt the Endurance event once. -D.12.1.3 The Endurance event consists of two Endurance runs, each using a different driver, with a -Driver Change between. -D.12.1.4 Teams may not work on their vehicles once their Endurance event has started -D.12.1.5 Multiple vehicles may be on the track at the same time -D.12.1.6 Wheel to Wheel racing is prohibited. -D.12.1.7 Vehicles must not be driven in reverse -D.12.2 - -Endurance Layout - -D.12.2.1 The Endurance event will consist of multiple laps over a closed course to a total distance of -approximately 22 km. -D.12.2.2 The Endurance course will be designed with these specifications. Average speed should be 48 -km/hr to 57 km/hr with top speeds of approximately 105 km/hr. -a. - -Straights: No longer than 77 m with hairpins at the two ends - -b. - -Straights: No longer than 61 m with wide turns on the ends - -c. - -Constant Turns: 30 m to 54 m diameter - -d. - -Hairpin Turns: 9 m minimum outside diameter (of the turn) - -e. - -Slaloms: Cones in a straight line with 9 m to 15 m spacing - -f. - -Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. - -g. - -Minimum track width: 4.5 m - -h. - -Designated passing zones at several locations - -D.12.2.3 The Endurance course specifications may deviate from the above to accommodate event site -requirements. -D.12.3 - -Endurance Run Order -The Endurance Run Order is established to let vehicles of similar speed potential be on track -together to reduce the need for passing. - -D.12.3.1 The Endurance Run Order: -a. - -Should be primarily based on the Autocross event finish order - -b. - -Should include the teams eligible for Endurance which did not compete in the Autocross -event. - -c. - -May be altered by the organizer to accommodate specific circumstances or event -considerations - -D.12.3.2 Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line -and prepared to start when their turn to run arrives. - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 137 of 143 - - D.12.4 - -Endurance Vehicle Starting / Restarting - -D.12.4.1 Teams that are not ready to run or cannot start their Endurance event in the allowed time -when their turn in the Run Order arrives: -a. - -Get a time penalty (D.12.12.5) - -b. - -May then run at the discretion of the Officials - -D.12.4.2 After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) -restart the engine or to (EV) enter Ready to Drive EV.9.5 -a. - -The time will start when the driver first tries to restart the engine or to enable the -Tractive System - -b. - -The time to attempt start / restart is not counted towards the Endurance time - -D.12.4.3 If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it -(approximately 60 seconds) to restart. This time counts toward the Endurance time. -D.12.4.4 If starts / restarts are not accomplished in the above times, the vehicle may be DNF. -D.12.5 - -Endurance Event Procedure - -D.12.5.1 Vehicles will be staged per the Endurance Run Order -D.12.5.2 Endurance Event sequence: -a. - -The first driver will do an Endurance Run per D.12.6 below - -b. - -The Driver Change must then be done per D.12.8 below - -c. - -The second driver will do an Endurance Run per D.12.6 below - -D.12.5.3 The Endurance Event is complete when the two: - -D.12.6 - -• - -The team has completed the specified number of laps - -• - -The second driver crosses the finish line - -Endurance Run Procedure - -D.12.6.1 A Green Flag or light signal will give the approval to begin the run -D.12.6.2 The driver will drive approximately half of the Endurance distance -D.12.6.3 A Checkered Flag will be displayed -D.12.6.4 The vehicle must exit the track into the Driver Change Area -D.12.7 - -Driver Change Limitations - -D.12.7.1 The team may bring only these items into the Driver Change Area: -a. - -Three team members, including the driver or drivers - -b. - -(EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers. - -c. - -Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires -Team members may only carry tools by hand (no carts, tool chests etc) - -d. - -Each extra person entering the Driver Change Area: 20 point penalty - -D.12.7.2 The only work permitted during Driver Change is: -a. - -Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons -EV.7.10 - -b. - -Adjustments to fit the driver IN.14.2.2 - -c. - -Tire changes per D.6.2 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 138 of 143 - - D.12.8 - -Driver Change Procedure - -D.12.8.1 The Driver Change will be done in this sequence: -a. - -Vehicle will stop in Driver Change Area - -b. - -First Driver turns off the engine / Tractive System. Driver Change time starts. - -c. - -First Driver exits the vehicle - -d. - -Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2 - -e. - -Second Driver is secured in the vehicle - -f. - -Second Driver is ready to start the engine / enable the Tractive System. Driver Change -time stops. - -g. - -Second Driver receives permission to continue - -h. - -The vehicle engine is started or Tractive System enabled. See D.12.4 - -i. - -The vehicle stages to go back onto course, at the direction of the event officials - -D.12.8.2 Three minutes are allowed for the team to complete the Driver Change -a. - -Any additional time for inspection of the vehicle and the Driver Equipment is not -included in the Driver Change time - -b. - -Time in excess of the allowed will be added to the team Endurance time - -D.12.8.3 The Driver Change Area will be in a location where the timing system will see the Driver -Change as a long lap which will be deleted from the total time -D.12.9 - -Breakdowns & Stalls - -D.12.9.1 If a vehicle breaks down or cannot restart, it will be removed from the course by track workers -and scored DNF -D.12.9.2 If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 -and D.12.4 -D.12.10 Endurance Event – Black Flags -D.12.10.1 A Black Flag will be shown at the designated location -D.12.10.2 The vehicle must pull into the Driver Change Area at the first opportunity -D.12.10.3 The amount of time spent in the Driver Change Area is at the discretion of the officials. -D.12.10.4 Driving Black Flag -a. - -May be shown for any reason such as aggressive driving, failing to obey signals, not -yielding for passing, not driving inside the designated course, etc. - -b. - -Course officials will discuss the situation with the driver - -c. - -The time spent in Black Flag or a time penalty may be included in the Endurance Run -time. - -d. - -If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or -during post event review, officials may impose a penalty D.14.2 - -D.12.10.5 Mechanical Black Flag -a. - -May be shown for any reason to question the vehicle condition - -b. - -Time spent off track is not included in the Endurance Run time. - -D.12.10.6 Based on the inspection or discussion during a Black Flag period, the vehicle may not be -allowed to continue the Endurance Run and will be scored DNF -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 139 of 143 - - D.12.11 Endurance Event – Passing -D.12.11.1 Passing during Endurance may only be done in the designated passing zones, under the -control of the track officials. -D.12.11.2 Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and -a fast lane for vehicles that are making a pass. -D.12.11.3 When a pass is to be made: -a. - -A slower leading vehicle gets a Blue Flag - -b. - -The slower vehicle must move into the slow lane and decelerate - -c. - -The faster vehicle will continue in the fast lane and make the pass - -d. - -The vehicle that had been passed may reenter traffic only under the control of the -passing zone exit flag - -D.12.11.4 Passing rules do not apply to vehicles that are passing disabled vehicles on the course or -vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, -slow down, drive cautiously and be aware of all the vehicles and track workers in the area. -D.12.12 Endurance Penalties -D.12.12.1 Cones (DOO) -Two second penalty for each DOO (including cones after the finish line) on that run -D.12.12.2 Off Course (OC) -a. - -When an OC occurs, the driver must reenter the track at or prior to the point of exit or -receive a 20 second penalty - -b. - -Penalties will not be assessed to bypass an accident or other reasons at the discretion of -track officials. - -D.12.12.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one Off Course -D.12.12.4 Penalties for Moving or Post Event Violations -a. - -Black Flag penalties per D.12.10, if applicable - -b. - -Post Event Inspection penalties per D.14.2, if applicable - -D.12.12.5 Endurance Starting (D.12.4.1) -Two minutes (120 seconds) penalty -D.12.12.6 Vehicle Operation -The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for -any reason including driver inexperience or mechanical problems, it is too slow or being -driven in a manner that demonstrates an inability to properly control. -D.12.13 Endurance Scoring -D.12.13.1 Scoring Term Definitions: -• - -Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, -minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 - -• - -Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) - -• - -Tyour - the Corrected Time for the team - -• - -Tmin - the lowest Corrected Time recorded for any team - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 140 of 143 - - • - -Tmax - 145% of Tmin - -D.12.13.2 The vehicle must complete the Endurance Event to receive a score based on their Corrected -Time -a. - -If Tyour < Tmax, the team score is calculated as: -Endurance Time Score = - -250 x - -( Tmax / Tyour ) -1 -( Tmax / Tmin ) -1 - -b. - -If Tyour > Tmax, Endurance Time Score = 0 - -D.12.13.3 The vehicle receives points based on the laps and/or parts of Endurance completed. -The Endurance Laps Score is worth up to 25 points -D.12.13.4 The Endurance Score is calculated as: -Endurance Score = Endurance Time Score + Endurance Laps Score - -D.13 - -EFFICIENCY EVENT -The Efficiency event evaluates the fuel/energy used to complete the Endurance event - -D.13.1 - -Efficiency General Information - -D.13.1.1 The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap -time on the endurance course, averaged over the length of the event. -D.13.1.2 The Efficiency score is based only on the distance the vehicle runs on the course during the -Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy -will be made. -D.13.2 - -Efficiency Procedure - -D.13.2.1 For IC vehicles: -a. - -The fuel tank must be filled to the fuel level line (IC.5.4.5) - -b. - -During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, -or the entire vehicle is allowed. - -D.13.2.2 (EV only) The vehicle may be fully charged -D.13.2.3 The vehicle will then compete in the Endurance event, refer to D.12.5 -D.13.2.4 Vehicles must power down after leaving the course and be pushed to the fueling station or -data download area -D.13.2.5 For Internal Combustion vehicles (IC): -a. - -The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. -IC.5.5.1 - -b. - -If the fuel level changes after refuelling: - -c. - -• - -Additional fuel will be added to return the fuel tank level to the fuel level line. - -• - -Twice this amount will be added to the previously measured fuel consumption - -If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the -Fuel Tank will not be refilled D.13.3.4 - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 141 of 143 - - D.13.2.6 For Electric Vehicles (EV): - -D.13.3 - -a. - -Energy Meter data must be downloaded to measure energy used and check for -Violations EV.3.3 - -b. - -Penalties will be applied per EV.3.5 and/or D.13.3.4 - -Efficiency Eligibility - -D.13.3.1 Maximum Time -Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance -laptime of the fastest team that completes the Endurance event get zero points -D.13.3.2 Maximum Fuel/Energy Used -Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap -exceeds the values in D.13.4.5 get zero points -D.13.3.3 Partial Completion of Endurance -a. - -Vehicles which cross the start line after Driver Change are eligible for Efficiency points - -b. - -Other vehicles get zero points - -D.13.3.4 Cannot Measure Fuel/Energy Used -The vehicle gets zero points -D.13.4 - -Efficiency Scoring - -D.13.4.1 Conversion Factors -Each fuel or energy used is converted using the factors: -a. - -Gasoline / Petrol - -2.31 kg of CO2 per liter - -b. - -E85 - -1.65 kg of CO2 per liter - -c. - -Electric - -0.65 kg of CO2 per kWh - -D.13.4.2 (EV only) Full credit is given for energy recovered through regenerative braking -D.13.4.3 Scoring Term Definitions: -• - -CO2 min - the smallest mass of CO2 used by any competitor who is eligible for Efficiency - -• - -CO2 your - the mass of CO2 used by the team being scored - -• - -Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency - -• - -Tyour - same as Endurance (D.12.13.1) - -• - -Lapyours - the number of laps driven by the team being scored - -• - -Laptotal Tmin and Latptotal CO2 min - be the number of laps completed by the teams -which set Tmin and CO2min, respectively - -D.13.4.4 The Efficiency Factor is calculated by: -Efficiency Factor = - -Tmin / LapTotal Tmin - -X - -CO2 min / LapTotal CO2 min - -Tyours / Lap yours -CO2 your / Lap yours -D.13.4.5 EfficiencyFactor min is calculated using the above formula with: -• - -CO2 your - -(IC) equivalent to 60.06 kg CO2/100km (based on gasoline 26 ltr/100km) - -• - -CO2 your - -(EV) equivalent to 20.02 kg CO2/100km - -• - -Tyour - -1.45 times Tmin - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 142 of 143 - - D.13.4.6 When the team is eligible for Efficiency. the team score is calculated as: -Efficiency Score = - -D.14 -D.14.1 - -100 x - -Efficiency Factor your - Efficiency Factor min -Efficiency Factor max - Efficiency Factor min - -POST ENDURANCE -Technical Inspection Required - -D.14.1.1 After Endurance and refuelling are completed, all vehicles must report to Technical Inspection. -D.14.1.2 Vehicles may then be subject to IN.15 Reinspection -D.14.2 - -Post Endurance Penalties - -D.14.2.1 Penalties may be applied to the Endurance and/or Efficiency events based on: -a. - -Infractions or issues during the Endurance Event (including D.12.10.4.d) - -b. - -Post Endurance Technical Inspection - -c. - -(EV only) Energy Meter violations EV.3.3, EV.3.5.2 - -D.14.2.2 Any imposed penalty will be at the discretion of the officials. -D.14.3 - -Post Endurance Penalty Guidelines - -D.14.3.1 One or more minor violations (rules compliance, but no advantage to team): 15-30 sec -D.14.3.2 Violation which is a potential or actual performance advantage to team: 120-360 sec -D.14.3.3 Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ -D.14.3.4 Team may be DNF or DQ for: -a. - -Multiple violations involving safety, environment, or performance advantage - -b. - -A single substantial violation - -Formula SAE® Rules 2025 -Version 1.0 31 Aug 2024 - -© 2024 SAE International - -Page 143 of 143 - - \ No newline at end of file diff --git a/scripts/document-parser/ruleDocs/txtVersions/FHE.txt b/scripts/document-parser/txtVersions/FHE.txt similarity index 100% rename from scripts/document-parser/ruleDocs/txtVersions/FHE.txt rename to scripts/document-parser/txtVersions/FHE.txt diff --git a/scripts/document-parser/txtVersions/FSAE.txt b/scripts/document-parser/txtVersions/FSAE.txt new file mode 100644 index 0000000000..1374af51bc --- /dev/null +++ b/scripts/document-parser/txtVersions/FSAE.txt @@ -0,0 +1,6034 @@ + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 1 of 143 +Version 1.0 31 Aug 2024 + + + + + +Rules 2025 + + + + +Version 1.0 +31 Aug 2024 + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 2 of 143 +Version 1.0 31 Aug 2024 +TABLE OF CONTENTS +GR - General Regulations ....................................................................................................................5 +GR.1 Formula SAE Competition Objective .................................................................................................... 5 +GR.2 Organizer Authority .............................................................................................................................. 6 +GR.3 Team Responsibility ............................................................................................................................. 6 +GR.4 Rules Authority and Issue ..................................................................................................................... 7 +GR.5 Rules of Conduct .................................................................................................................................. 7 +GR.6 Rules Format and Use .......................................................................................................................... 8 +GR.7 Rules Questions .................................................................................................................................... 9 +GR.8 Protests ................................................................................................................................................ 9 +GR.9 Vehicle Eligibility ................................................................................................................................ 10 +AD - Administrative Regulations ....................................................................................................... 11 +AD.1 The Formula SAE Series ...................................................................................................................... 11 +AD.2 Official Information Sources .............................................................................................................. 11 +AD.3 Individual Participation Requirements ............................................................................................... 11 +AD.4 Individual Registration Requirements ................................................................................................ 12 +AD.5 Team Advisors and Officers................................................................................................................ 12 +AD.6 Competition Registration ................................................................................................................... 13 +AD.7 Competition Site ................................................................................................................................ 14 +DR - Document Requirements .......................................................................................................... 16 +DR.1 Documentation .................................................................................................................................. 16 +DR.2 Submission Details ............................................................................................................................. 16 +DR.3 Submission Penalties .......................................................................................................................... 17 +V - Vehicle Requirements ................................................................................................................. 19 +V.1 Configuration ..................................................................................................................................... 19 +V.2 Driver .................................................................................................................................................. 20 +V.3 Suspension and Steering .................................................................................................................... 20 +V.4 Wheels and Tires ................................................................................................................................ 21 +F - Chassis and Structural .................................................................................................................. 23 +F.1 Definitions .......................................................................................................................................... 23 +F.2 Documentation .................................................................................................................................. 25 +F.3 Tubing and Material ........................................................................................................................... 25 +F.4 Composite and Other Materials ......................................................................................................... 28 +F.5 Chassis Requirements ........................................................................................................................ 30 +F.6 Tube Frames ....................................................................................................................................... 37 +F.7 Monocoque ........................................................................................................................................ 39 +F.8 Front Chassis Protection .................................................................................................................... 43 +F.9 Fuel System (IC Only) ......................................................................................................................... 48 +F.10 Accumulator Container (EV Only) ...................................................................................................... 49 +F.11 Tractive System (EV Only) .................................................................................................................. 52 +T - Technical Aspects ........................................................................................................................ 54 +T.1 Cockpit................................................................................................................................................ 54 +T.2 Driver Accommodation ...................................................................................................................... 58 +T.3 Brakes ................................................................................................................................................. 63 +T.4 Electronic Throttle Components ........................................................................................................ 64 +T.5 Powertrain .......................................................................................................................................... 66 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 3 of 143 +Version 1.0 31 Aug 2024 +T.6 Pressurized Systems ........................................................................................................................... 68 +T.7 Bodywork and Aerodynamic Devices ................................................................................................. 69 +T.8 Fasteners ............................................................................................................................................ 71 +T.9 Electrical Equipment .......................................................................................................................... 72 +VE - Vehicle and Driver Equipment ................................................................................................... 75 +VE.1 Vehicle Identification ......................................................................................................................... 75 +VE.2 Vehicle Equipment ............................................................................................................................. 75 +VE.3 Driver Equipment ............................................................................................................................... 77 +IC - Internal Combustion Engine Vehicles .......................................................................................... 79 +IC.1 General Requirements ....................................................................................................................... 79 +IC.2 Air Intake System ............................................................................................................................... 79 +IC.3 Throttle .............................................................................................................................................. 80 +IC.4 Electronic Throttle Control ................................................................................................................. 81 +IC.5 Fuel and Fuel System ......................................................................................................................... 84 +IC.6 Fuel Injection ...................................................................................................................................... 86 +IC.7 Exhaust and Noise Control ................................................................................................................. 87 +IC.8 Electrical ............................................................................................................................................. 88 +IC.9 Shutdown System............................................................................................................................... 88 +EV - Electric Vehicles ........................................................................................................................ 90 +EV.1 Definitions .......................................................................................................................................... 90 +EV.2 Documentation .................................................................................................................................. 90 +EV.3 Electrical Limitations .......................................................................................................................... 90 +EV.4 Components ....................................................................................................................................... 91 +EV.5 Energy Storage ................................................................................................................................... 94 +EV.6 Electrical System ................................................................................................................................ 98 +EV.7 Shutdown System............................................................................................................................. 102 +EV.8 Charger Requirements ..................................................................................................................... 107 +EV.9 Vehicle Operations ........................................................................................................................... 108 +EV.10 Event Site Activities .......................................................................................................................... 109 +EV.11 Work Practices ................................................................................................................................. 109 +IN - Technical Inspection ................................................................................................................ 112 +IN.1 Inspection Requirements ................................................................................................................. 112 +IN.2 Inspection Conduct .......................................................................................................................... 112 +IN.3 Initial Inspection ............................................................................................................................... 113 +IN.4 Electrical Technical Inspection (EV Only) ......................................................................................... 113 +IN.5 Driver Cockpit Checks ....................................................................................................................... 114 +IN.6 Driver Template Inspections ............................................................................................................ 115 +IN.7 Cockpit Template Inspections .......................................................................................................... 115 +IN.8 Mechanical Technical Inspection ..................................................................................................... 115 +IN.9 Tilt Test ............................................................................................................................................. 116 +IN.10 Noise and Switch Test (IC Only) ....................................................................................................... 117 +IN.11 Rain Test (EV Only) ........................................................................................................................... 118 +IN.12 Brake Test ......................................................................................................................................... 118 +IN.13 Inspection Approval ......................................................................................................................... 119 +IN.14 Modifications and Repairs ............................................................................................................... 119 +IN.15 Reinspection ..................................................................................................................................... 120 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 4 of 143 +Version 1.0 31 Aug 2024 +S - Static Events .............................................................................................................................. 121 +S.1 General Static ................................................................................................................................... 121 +S.2 Presentation Event ........................................................................................................................... 121 +S.3 Cost and Manufacturing Event ......................................................................................................... 122 +S.4 Design Event ..................................................................................................................................... 126 +D - Dynamic Events ........................................................................................................................ 128 +D.1 General Dynamic .............................................................................................................................. 128 +D.2 Pit and Paddock ................................................................................................................................ 128 +D.3 Driving .............................................................................................................................................. 129 +D.4 Flags ................................................................................................................................................. 130 +D.5 Weather Conditions ......................................................................................................................... 130 +D.6 Tires and Tire Changes ..................................................................................................................... 131 +D.7 Driver Limitations ............................................................................................................................. 132 +D.8 Definitions ........................................................................................................................................ 132 +D.9 Acceleration Event ........................................................................................................................... 132 +D.10 Skidpad Event ................................................................................................................................... 133 +D.11 Autocross Event ............................................................................................................................... 135 +D.12 Endurance Event .............................................................................................................................. 137 +D.13 Efficiency Event ................................................................................................................................ 141 +D.14 Post Endurance ................................................................................................................................ 143 + +Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com +REVISION SUMMARY +Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 +1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 +Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 +Allowance for Late Submissions DR.3.3.1 +Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, +EV.5.9, EV.7.8.4 + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 5 of 143 +Version 1.0 31 Aug 2024 +GR - GENERAL REGULATIONS +GR.1 FORMULA SAE COMPETITION OBJECTIVE +GR.1.1 Collegiate Design Series +SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and +graduate engineering students in a variety of disciplines for future employment in mobility- +related industries by challenging them with a real world, engineering application. +Through the Engineering Design Process, experiences may include but are not limited to: +• Project management, budgeting, communication, and resource management skills +• Team collaboration +• Applying industry rules and regulations +• Design, build, and test the performance of a real vehicle +• Interact and compete with other students from around the globe +• Develop and prepare technical documentation +Students also gain valuable exposure to and engagement with industry professionals to +enhance 21st century learning skills, to build their own network and help prepare them for the +workforce after graduation. +GR.1.2 Formula SAE Concept +The Formula SAE® competitions challenge teams of university undergraduate and graduate +students to conceive, design, fabricate, develop and compete with small, formula style +vehicles. +GR.1.3 Engineering Competition +Formula SAE® is an engineering education competition that requires performance +demonstration of vehicles in a series of events, off track and on track against the clock. +Each competition gives teams the chance to demonstrate their creativity and engineering +skills in comparison to teams from other universities around the world. +GR.1.4 Vehicle Design Objectives +GR.1.4.1 Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and +demonstrate a prototype vehicle +GR.1.4.2 The vehicle should have high performance and be sufficiently durable to successfully complete +all the events at the Formula SAE competitions. +GR.1.4.3 Additional design factors include: aesthetics, cost, ergonomics, maintainability, and +manufacturability. +GR.1.4.4 Each design will be judged and evaluated against other competing designs in a series of Static +and Dynamic events to determine the vehicle that best meets the design goals and may be +profitably built and marketed. +GR.1.5 Good Engineering Practices +Vehicles entered into Formula SAE competitions should be designed and fabricated in +accordance with good engineering practices. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 6 of 143 +Version 1.0 31 Aug 2024 +GR.2 ORGANIZER AUTHORITY +GR.2.1 General Authority +SAE International and the competition organizing bodies reserve the right to revise the +schedule of any competition and/or interpret or modify the competition rules at any time and +in any manner that is, in their sole judgment, required for the efficient operation of the event +or the Formula SAE series as a whole. +GR.2.2 Right to Impound +GR.2.2.1 SAE International and other competition organizing bodies may impound any onsite vehicle or +part of the vehicle at any time during a competition. +GR.2.2.2 Team access to the vehicle or impound may be restricted. +GR.2.3 Problem Resolution +Any problems that arise during the competition will be resolved through the onsite organizers +and the decision will be final. +GR.2.4 Restriction on Vehicle Use +SAE International, competition organizer(s) and officials are not responsible for use of vehicles +designed in compliance with these Formula SAE Rules outside of the official Formula SAE +competitions. +GR.3 TEAM RESPONSIBILITY +GR.3.1 Rules Compliance +By registering for a Formula SAE competition, the team, members of the team as individuals, +faculty advisors and other personnel of the entering university agree to comply with, and be +bound by, these rules and all rule interpretations or procedures issued or announced by SAE +International, the Formula SAE Rules Committee and the other organizing bodies. +GR.3.2 Student Project +By registering for any university program, the University registered assumes liability of the +student project. +GR.3.3 Understanding the Rules +Teams, team members as individuals and faculty advisors, are responsible for reading and +understanding the rules in effect for the competition in which they are participating. +GR.3.4 Participating in the Competition +GR.3.4.1 Teams, individual team members, faculty advisors and other representatives of a registered +university who are present onsite at a competition are “participating in the competition” from +the time they arrive at the competition site until they depart the site at the conclusion of the +competition or earlier by withdrawing. +GR.3.4.2 All team members, faculty advisors and other university representatives must cooperate with, +and follow all instructions from, competition organizers, officials and judges. +GR.3.5 Forfeit for Non Appearance +GR.3.5.1 It is the responsibility of each team to be in the right location at the right time. +GR.3.5.2 If a team is not present and ready to compete at the scheduled time, they forfeit their attempt +at that event. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 7 of 143 +Version 1.0 31 Aug 2024 +GR.3.5.3 There are no makeups for missed appearances. +GR.4 RULES AUTHORITY AND ISSUE +GR.4.1 Rules Authority +The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are +issued under the authority of the SAE International Collegiate Design Series. +GR.4.2 Rules Validity +GR.4.2.1 The Formula SAE Rules posted on the website and dated for the calendar year of the +competition are the rules in effect for the competition. +GR.4.2.2 Rules appendices or supplements may be posted on the website and incorporated into the +rules by reference. +GR.4.2.3 Additional guidance or reference documents may be posted on the website. +GR.4.2.4 Any rules, questions, or resolutions from previous years are not valid for the current +competition year. +GR.4.3 Rules Alterations +GR.4.3.1 The Formula SAE rules may be revised, updated, or amended at any time +GR.4.3.2 Official designated communications from the Formula SAE Rules Committee, SAE International +or the other organizing bodies are to be considered part of, and have the same validity as, +these rules +GR.4.3.3 Draft rules or proposals may be issued for comments, however they are a courtesy, are not +valid for any competitions, and may or may not be implemented in whole or in part. +GR.4.4 Rules Compliance +GR.4.4.1 All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE +Online Website to verify the current version. +GR.4.4.2 Teams and team members must comply with the general rules and any specific rules for each +competition they enter. +GR.4.4.3 Any regulations pertaining to the use of the competition site by teams or individuals and +which are posted, announced and/or otherwise publicly available are incorporated into the +Formula SAE Rules by reference. +As examples, all competition site waiver requirements, speed limits, parking and facility use +rules apply to Formula SAE participants. +GR.4.5 Violations on Intent +The violation of the intent of a rule will be considered a violation of the rule itself. +GR.5 RULES OF CONDUCT +GR.5.1 Unsportsmanlike Conduct +If unsportsmanlike conduct occurs, the team gets a warning from an official. +A second violation will result in expulsion of the team from the competition. +GR.5.2 Official Instructions +Failure of a team member to follow an instruction or command directed specifically to that +team or team member will result in a 25 point penalty. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 8 of 143 +Version 1.0 31 Aug 2024 +GR.5.3 Arguments with Officials +Argument with, or disobedience of, any official may result in the team being eliminated from +the competition. +All members of the team may be immediately escorted from the grounds. +GR.5.4 Alcohol and Illegal Material +GR.5.4.1 Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site +during the entire competition. +GR.5.4.2 Any violation of this rule by any team member or faculty advisor will cause immediate +disqualification and expulsion of the entire team. +GR.5.4.3 Any use of drugs, or the use of alcohol by an underage individual will be reported to the local +authorities. +GR.5.5 Smoking – Prohibited +Smoking and e-cigarette use is prohibited in all competition areas. +GR.6 RULES FORMAT AND USE +GR.6.1 Definition of Terms +• Must - designates a requirement +• Must NOT - designates a prohibition or restriction +• Should - gives an expectation +• May - gives permission, not a requirement and not a recommendation +GR.6.2 Capitalized Terms +Items or areas which have specific definitions or have specific rules are capitalized. +For example, “Rules Questions” or “Primary Structure” +GR.6.3 Headings +The article, section and paragraph headings in these rules are provided only to facilitate +reading: they do not affect the paragraph contents. +GR.6.4 Applicability +GR.6.4.1 Unless otherwise specified, all rules apply to all vehicles at all times +GR.6.4.2 Rules specific to vehicles based on their powertrain will be specified as such in the rule text: +• Internal Combustion “IC” or “IC Only” +• Electric Vehicle “EV” or “EV Only” +GR.6.5 Figures and Illustrations +Figures and illustrations give clarification or guidance, but are Rules only when referred to in +the text of a rule +GR.6.6 Change Identification +Any summary of changed rules and/or changed portions marked in the rules themselves are +provided for courtesy, and may or may not include all changes. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 9 of 143 +Version 1.0 31 Aug 2024 +GR.7 RULES QUESTIONS +GR.7.1 Question Types +Designated officials will answer questions that are not already answered in the rules or FAQs +or that require new or novel rule interpretations. +Rules Questions may also be used to request approval, as specified in these rules. +GR.7.2 Question Format +GR.7.2.1 All Rules Questions must include: +• Full name and contact information of the person submitting the question +• University name – no abbreviations +• The specific competition your team has, or is planning to, enter +• Number of the applicable rule(s) +GR.7.2.2 Response Time +• Please allow a minimum of two weeks for a response +• Do not resubmit questions +GR.7.2.3 Submission Addresses +a. Teams entering Formula SAE competitions: Follow the link and instructions published on +the FSAE Online Website to "Submit a Rules Question" +b. Teams entering other competitions please visit those respective competition websites +for further instructions. +GR.7.3 Question Publication +Any submitted question and the official answer may be reproduced and freely distributed, in +complete and edited versions. +GR.8 PROTESTS +GR.8.1 Cause for Protest +A team may protest any rule interpretation, score or official action (unless specifically +excluded from Protest) which they feel has caused some actual, non trivial, harm to their +team, or has had a substantive effect on their score. +GR.8.2 Preliminary Review – Required +Questions about scoring, judging, policies or any official action must be brought to the +attention of the organizer or SAE International staff for an informal preliminary review before +a protest may be filed. +GR.8.3 Protest Format +• All protests must be filed in writing +• The completed protest must be presented to the organizer or SAE International staff by +the team captain. +• Team video or data acquisition will not be reviewed as part of a protest. +GR.8.4 Protest Point Bond +A team must post a 25 point protest bond which will be forfeited if their protest is rejected. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 10 of 143 +Version 1.0 31 Aug 2024 +GR.8.5 Protest Period +Protests concerning any aspect of the competition must be filed in the protest period +announced by the competition organizers or 30 minutes of the posting of the scores of the +event to which the protest relates. +GR.8.6 Decision +The decision regarding any protest is final. +GR.9 VEHICLE ELIGIBILITY +GR.9.1 Student Developed Vehicle +GR.9.1.1 Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and +maintained by the student team members without direct involvement from professional +engineers, automotive engineers, racers, machinists or related professionals. +GR.9.1.2 Information Sources +The student team may use any literature or knowledge related to design and information from +professionals or from academics as long as the information is given as a discussion of +alternatives with their pros and cons. +GR.9.1.3 Professional Assistance +Professionals must not make design decisions or drawings. The Faculty Advisor may be +required to sign a statement of compliance with this restriction. +GR.9.1.4 Student Fabrication +Students should do all fabrication tasks +GR.9.2 Definitions +GR.9.2.1 Competition Year +The period beginning at the event of the Formula SAE series where the vehicle first competes +and continuing until the start of the corresponding event held approximately 12 months later. +GR.9.2.2 First Year Vehicle +A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year +GR.9.2.3 Second Year Vehicle +A vehicle which has competed in a previous Competition Year +GR.9.2.4 Third Year Vehicle +A vehicle which has competed in more than one previous Competition Year +GR.9.3 Formula SAE Competition Eligibility +GR.9.3.1 Only First Year Vehicles may enter the Formula SAE Competitions +a. If there is any question about the status as a First Year Vehicle, the team must provide +additional information and/or evidence. +GR.9.3.2 Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the +organizer of the specific competition. +The Formula SAE and Formula SAE Electric events in North America do not allow Second Year +Vehicles +GR.9.3.3 Third Year Vehicles must not enter any Formula SAE Competitions + + +Formula SAE® Rules 2025 © 2024 SAE International Page 11 of 143 +Version 1.0 31 Aug 2024 +AD - ADMINISTRATIVE REGULATIONS +AD.1 THE FORMULA SAE SERIES +AD.1.1 Rule Variations +All competitions in the Formula SAE Series may post rule variations specific to the operation of +the events in their countries. Vehicle design requirements and restrictions will remain +unchanged. Any rule variations will be posted on the websites specific to those competitions. +AD.1.2 Official Announcements and Competition Information +Teams must read the published announcements by SAE International and the other organizing +bodies and be familiar with all official announcements concerning the competitions and any +released rules interpretations. +AD.1.3 Official Languages +The official language of the Formula SAE series is English. +Document submissions, presentations and discussions in English are acceptable at all +competitions in the series. +AD.2 OFFICIAL INFORMATION SOURCES +These websites are referenced in these rules. Refer to the websites for additional information +and resources. +AD.2.1 Event Website +The Event Website for Formula SAE is specific to each competition, refer to: +https://www.sae.org/attend/student-events +AD.2.2 FSAE Online Website +The FSAE Online website is at: http://fsaeonline.com/ +AD.2.2.1 Documents, forms, and information are accessed from the “Series Resources” link +AD.2.2.2 Each registered team must have an account on the FSAE Online Website. +AD.2.2.3 Each team must have one or more persons as Team Captain. The Team Captain must accept +Team Members. +AD.2.2.4 Only persons designated Team Members or Team Captains are able to upload documents to +the website. +AD.2.3 Contacts +Contact collegiatecompetitions@sae.org with any problems/comments/concerns +Consult the specific website for the other competitions requirements. +AD.3 INDIVIDUAL PARTICIPATION REQUIREMENTS +AD.3.1 Eligibility +AD.3.1.1 Team members must be enrolled as degree seeking undergraduate or graduate students in +the college or university of the team with which they are participating. +AD.3.1.2 Team members who have graduated during the seven month period prior to the competition +remain eligible to participate. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 12 of 143 +Version 1.0 31 Aug 2024 +AD.3.1.3 Teams which are formed with members from two or more universities are treated as a single +team. A student at any university making up the team may compete at any competition +where the team participates. The multiple universities are treated as one university with the +same eligibility requirements. +AD.3.1.4 Each team member may participate at a competition for only one team. This includes +competitions where the University enters both IC and EV teams. +AD.3.2 Age +Team members must be minimum 18 years of age. +AD.3.3 Driver’s License +Team members who will drive a competition vehicle at any time during a competition must +hold a valid, government issued driver’s license. +AD.3.4 Society Membership +Team members must be members of SAE International +Proof of membership, such as membership card, is required at the competition. +AD.3.5 Medical Insurance +Individual medical insurance coverage is required and is the sole responsibility of the +participant. +AD.3.6 Disabled Accessibility +Team members who require accessibility for areas outside of ADA Compliance must contact +organizers at collegiatecompetitions@sae.org prior to start of competition. +AD.4 INDIVIDUAL REGISTRATION REQUIREMENTS +AD.4.1 Preliminary Registration +AD.4.1.1 All students and faculty must be affiliated to your respective school /college/university on the +Event Website before the deadline shown on the Event Website +AD.4.1.2 International student participants (or unaffiliated Faculty Advisors) who are not SAE +International members must create a free customer account profile on www.sae.org. Upon +completion, please email collegiatecompetitions@sae.org the assigned customer number +stating also the event and university affiliation. +AD.4.2 Onsite Registration +AD.4.2.1 All team members and faculty advisors must register at the competition site +AD.4.2.2 All onsite participants, including students, faculty and volunteers, must sign a liability waiver +upon registering onsite. +AD.4.2.3 Onsite registration must be completed before the vehicle may be unloaded, uncrated or +worked upon in any manner. +AD.5 TEAM ADVISORS AND OFFICERS +AD.5.1 Faculty Advisor +AD.5.1.1 Each team must have a Faculty Advisor appointed by their university. +AD.5.1.2 The Faculty Advisor should accompany the team to the competition and will be considered by +the officials to be the official university representative. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 13 of 143 +Version 1.0 31 Aug 2024 +AD.5.1.3 Faculty Advisors: +a. May advise their teams on general engineering and engineering project management +theory +b. Must not design, build or repair any part of the vehicle +c. Must not develop any documentation or presentation +AD.5.2 Electrical System Officer (EV Only) +The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle +during the event +AD.5.2.1 Each participating team must appoint one or more ESO for the event +AD.5.2.2 The ESO must be: +a. A valid team member, see AD.3 Individual Participation Requirements +b. One or more ESO must not be a driver +c. Certified or has received appropriate practical training whether formal or informal for +working with High Voltage systems in automotive vehicles +Give details of the training on the ESO/ESA form +AD.5.2.3 Duties of the ESO - see EV.11.1.1 +AD.5.3 Electric System Advisor (EV Only) +AD.5.3.1 The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated +by the team who can advise on the electrical and control systems that will be integrated into +the vehicle. The faculty advisor may also be the ESA if all the requirements below are met. +AD.5.3.2 The ESA must supply details of their experience of electrical and/or control systems +engineering as used in the vehicle on the ESO/ESA form +AD.5.3.3 The ESA must be sufficiently qualified to advise the team on their proposed electrical and +control system designs based on significant experience of the technology being developed and +its implementation into vehicles or other safety critical systems. More than one person may +be needed. +AD.5.3.4 The ESA must advise the team on the merits of any relevant engineering solutions. Solutions +should be discussed, questioned and approved before they are implemented into the final +vehicle design. +AD.5.3.5 The ESA should advise the students on any required training to work with the systems on the +vehicle. +AD.5.3.6 The ESA must review the Electrical System Form and to confirm that in principle the vehicle +has been designed using good engineering practices. +AD.5.3.7 The ESA must make sure that the team communicates any unusual aspects of the design to +reduce the risk of exclusion or significant changes being required to pass Technical Inspection. +AD.6 COMPETITION REGISTRATION +AD.6.1 General Information +AD.6.1.1 Registration for Formula SAE competitions must be completed on the Event Website. +AD.6.1.2 Refer to the individual competition websites for registration requirements for other +competitions + + +Formula SAE® Rules 2025 © 2024 SAE International Page 14 of 143 +Version 1.0 31 Aug 2024 +AD.6.2 Registration Details +AD.6.2.1 Refer to the Event Website for specific registration requirements and details. +• Registration limits and Waitlist limits will be posted on the Event Website. +• Registration will open at the date and time posted on the Event Website. +• Registration(s) may have limitations +AD.6.2.2 Once a competition reaches the registration limit, a Waitlist will open. +AD.6.2.3 Beginning on the date and time posted on the Event Website, any remaining slots will be +available to any team on a first come, first serve basis. +AD.6.2.4 Registration and the Waitlist will close at the date and time posted on the Event Website or +when all available slots have been taken, whichever occurs first. +AD.6.3 Registration Fees +AD.6.3.1 Registration fees must be paid by the deadline specified on the respective competition +website +AD.6.3.2 Registration fees are not refundable and not transferrable to any other competition. +AD.6.4 Waitlist +AD.6.4.1 Waitlisted teams must submit all documents by the same deadlines as registered teams to +remain on the Waitlist. +AD.6.4.2 Once a team withdraws from the competition, the organizer will inform the next team on the +Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the +registered list has opened. +AD.6.4.3 The team will then have 24 hours to accept or reject the position and an additional 24 hours +to have the registration payment completed or in process. +AD.6.5 Withdrawals +Registered teams that will not attend the competition must inform SAE International or the +organizer, as posted on the Event Website +AD.7 COMPETITION SITE +AD.7.1 Personal Vehicles +Personal cars and trailers must be parked in designated areas only. Only authorized vehicles +will be allowed in the track areas. +AD.7.2 Motorcycles, Bicycles, Rollerblades, etc. - Prohibited +The use of motorcycles, quads, bicycles, scooters, skateboards, rollerblades or similar person- +carrying devices by team members and spectators in any part of the competition area, +including the paddocks, is prohibited. +AD.7.3 Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited +The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any +part of the competition site, including the paddocks, is prohibited. +AD.7.4 Trash Cleanup +AD.7.4.1 Cleanup of trash and debris is the responsibility of the teams. +• The team’s work area should be kept uncluttered + + +Formula SAE® Rules 2025 © 2024 SAE International Page 15 of 143 +Version 1.0 31 Aug 2024 +• At the end of the day, each team must clean all debris from their area and help with +maintaining a clean paddock +AD.7.4.2 Teams must remove all of their material and trash when leaving the site at the end of the +competition. +AD.7.4.3 Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be +billed for removal and/or cleanup costs. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 16 of 143 +Version 1.0 31 Aug 2024 +DR - DOCUMENT REQUIREMENTS +DR.1 DOCUMENTATION +DR.1.1 Requirements +DR.1.1.1 The documents supporting each vehicle must be submitted before the deadlines posted on +the Event Website or otherwise published by the organizer. +DR.1.1.2 The procedures for submitting documents are published on the Event Website or otherwise +identified by the organizer. +DR.1.2 Definitions +DR.1.2.1 Submission Date +The date and time of upload to the website +DR.1.2.2 Submission Deadline +The date and time by which the document must be uploaded or submitted +DR.1.2.3 No Submissions Accepted After +The last date and time that documents may be uploaded or submitted +DR.1.2.4 Late Submission +• Uploaded after the Submission Deadline and prior to No Submissions Accepted After +• Submitted largely incomplete prior to or after the Submission Deadline +DR.1.2.5 Not Submitted +• Not uploaded prior to No Submissions Accepted After +• Not in the specified form or format +DR.1.2.6 Amount Late +The number of days between the Submission Deadline and the Submission Date. +Any partial day is rounded up to a full day. +Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late +would be two days penalty +DR.1.2.7 Grounds for Removal +A designated document that if Not Submitted may cause Removal of Team Entry +DR.1.2.8 Reviewer +A designated event official who is assigned to review and accept a Submission +DR.2 SUBMISSION DETAILS +DR.2.1 Submission Location +Teams entering Formula SAE competitions in North America must upload the required +documents to the team account on the FSAE Online Website, see AD.2.2 +DR.2.2 Submission Format Requirements +Refer to Table DR-1 Submission Information +DR.2.2.1 Template files with the required format must be used when specified in Table DR-1 +DR.2.2.2 Template files are available on the FSAE Online Website, see AD.2.2.1 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 17 of 143 +Version 1.0 31 Aug 2024 +DR.2.2.3 Do Not alter the format of any provided template files +DR.2.2.4 Each submission must be one single file in the specified format (PDF - Portable Document File, +XLSX - Microsoft Excel Worksheet File) +DR.3 SUBMISSION PENALTIES +DR.3.1 Submissions +DR.3.1.1 Each team is responsible for confirming that their documents have been properly uploaded or +submitted and that the deadlines have been met +DR.3.1.2 Prior to the Submission Deadline: +a. Documents may be uploaded at any time +b. Uploads may be replaced with new uploads without penalty +DR.3.1.3 If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline +for the revised document may apply +DR.3.1.4 Teams will not be notified if a document is submitted incorrectly +DR.3.2 Penalty Detail +DR.3.2.1 Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion. +DR.3.2.2 Additional penalties will apply if Not Submitted, subject to official discretion +DR.3.2.3 Penalties up to and including Removal of Team Entry may apply based on document reviews, +subject to official discretion +DR.3.3 Removal of Team Entry +DR.3.3.1 The organizer may remove the team entry when a: +a. Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. +Removals will occur after each Document Submission deadline +b. Team does not respond to Reviewer requests or organizer communications +DR.3.3.2 When a team entry will be removed: +a. The team will be notified prior to cancelling registration +b. No refund of entry fees will be given +DR.3.4 Specific Penalties +DR.3.4.1 Electronic Throttle Control (ETC) (IC Only) +a. There is no point penalty for ETC documents +b. The team will not be allowed to run ETC on their vehicle and must use mechanical +throttle operation when: +• The ETC Notice of Intent is Not Submitted +• The ETC Systems Form is Not Submitted, or is not accepted +DR.3.4.2 Fuel Type IC.5.1 +There is no point penalty for a late fuel type order. Once the deadline has passed, the team +will be allocated the basic fuel type. +DR.3.4.3 Program Submissions +Please submit material requested for the Event Program by the published deadlines + + +Formula SAE® Rules 2025 © 2024 SAE International Page 18 of 143 +Version 1.0 31 Aug 2024 +Table DR-1 Submission Information +Submission +Refer +to: +Required +Format: +Submit in +File Format: +Penalty +Group + +Structural Equivalency Spreadsheet +(SES) +as applicable to your design +F.2.1 see below XLSX Tech + +ETC - Notice of Intent IC.4.3 see below PDF ETC +ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC +EV – Electrical Systems Officer and +Electrical Systems Advisor Form +AD.5.2, +AD.5.3 +see below PDF Tech + +EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech +Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other +Cost Report S.3.4 see S.3.4.2 (1) Other +Cost Addendum S.3.7 see below see S.3.7 none +Design Briefing S.4.3 see below PDF Other +Vehicle Drawings S.4.4 see S.4.4.1 PDF Other +Design Spec Sheet S.4.5 see below XLSX Other + +Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 +Note (1): Refer to the FSAE Online website for submission requirements +Table DR-2 Submission Penalty Information +Penalty Group +Penalty Points +per 24 Hours +Not Submitted after the Deadline + +ETC none Not Approved to use ETC - see DR.3.4.1 + +Tech -20 Grounds for Removal - see DR.3.3 + +Other -10 +Removed from Cost/Design/Presentation +Event and Score 0 points – see DR.3.2.2 + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 19 of 143 +Version 1.0 31 Aug 2024 +V - VEHICLE REQUIREMENTS +V.1 CONFIGURATION +The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels +that are not in a straight line. +V.1.1 Open Wheel +Open Wheel vehicles must satisfy all of these criteria: +a. The top 180° of the wheels/tires must be unobstructed when viewed from vertically +above the wheel. +b. The wheels/tires must be unobstructed when viewed from the side. +c. No part of the vehicle may enter a keep out zone defined by two lines extending +vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the +front and rear tires in the side view elevation of the vehicle, with tires steered straight +ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire +to the inboard plane of the wheel/tire. + +V.1.2 Wheelbase +The vehicle must have a minimum wheelbase of 1525 mm +V.1.3 Vehicle Track +V.1.3.1 The track and center of gravity must combine to provide sufficient rollover stability. See +IN.9.2 +V.1.3.2 The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 20 of 143 +Version 1.0 31 Aug 2024 +V.1.4 Ground Clearance +V.1.4.1 Ground clearance must be sufficient to prevent any portion of the vehicle except the tires +from touching the ground during dynamic events +V.1.4.2 The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its +lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less. +a. There must be an opening for measuring the ride height at that point without removing +aerodynamic devices +V.1.4.3 Intentional or excessive ground contact of any portion of the vehicle other than the tires will +forfeit a run or an entire dynamic event +The intent is that sliding skirts or other devices that by design, fabrication or as a consequence +of moving, contact the track surface are prohibited and any unintended contact with the +ground which causes damage, or in the opinion of the Dynamic Event Officials could result in +damage to the track, will result in forfeit of a run or an entire dynamic event +V.2 DRIVER +V.2.1 Accommodation +V.2.1.1 The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female +up to 95th percentile male. +• Accommodation includes driver position, driver controls, and driver equipment +• Anthropometric data may be found on the FSAE Online Website +V.2.1.2 The driver’s head and hands must not contact the ground in any rollover attitude +V.2.2 Visibility +a. The driver must have sufficient visibility to the front and sides of the vehicle +b. When seated in a normal driving position, the driver must have a minimum field of vision +of 100° to the left and the right sides +c. If mirrors are required for this rule, they must remain in position and adjusted to enable +the required visibility throughout all Dynamic Events +V.3 SUSPENSION AND STEERING +V.3.1 Suspension +V.3.1.1 The vehicle must have a fully operational suspension system with shock absorbers, front and +rear, with usable minimum wheel travel of 50 mm, with a driver seated. +V.3.1.2 Officials may disqualify vehicles which do not represent a serious attempt at an operational +suspension system, or which demonstrate handling inappropriate for an autocross circuit. +V.3.1.3 All suspension mounting points must be visible at Technical Inspection by direct view or by +removing any covers. +V.3.1.4 Fasteners in the Suspension system are Critical Fasteners, see T.8.2 +V.3.1.5 All spherical rod ends and spherical bearings on the suspension and steering must be one of: +• Mounted in double shear +• Captured by having a screw/bolt head or washer with an outside diameter that is larger +than spherical bearing housing inside diameter. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 21 of 143 +Version 1.0 31 Aug 2024 +V.3.2 Steering +V.3.2.1 The Steering Wheel must be mechanically connected to the front wheels +V.3.2.2 Electrically operated steering of the front wheels is prohibited +V.3.2.3 Steering systems must use a rigid mechanical linkage capable of tension and compression +loads for operation +V.3.2.4 The steering system must have positive steering stops that prevent the steering linkages from +locking up (the inversion of a four bar linkage at one of the pivots). The stops: +a. Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis +during the track events +b. May be put on the uprights or on the rack +V.3.2.5 Allowable steering system free play is limited to seven degrees (7°) total measured at the +steering wheel. +V.3.2.6 The steering rack must be mechanically attached to the Chassis F.5.14 +V.3.2.7 Joints between all components attaching the Steering Wheel to the steering rack must be +mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup +are not permitted. +V.3.2.8 Fasteners in the steering system are Critical Fasteners, see T.8.2 +V.3.2.9 Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above +V.3.2.10 Rear wheel steering may be used. +a. Rear wheel steering must incorporate mechanical stops to limit the range of angular +movement of the rear wheels to a maximum of six degrees (6°) +b. The team must provide the ability for the steering angle range to be verified at Technical +Inspection with a driver in the vehicle +c. Rear wheel steering may be electrically operated +V.3.3 Steering Wheel +V.3.3.1 In any angular position, the Steering Wheel must meet T.1.4.4 +V.3.3.2 The Steering Wheel must be attached to the column with a quick disconnect. +V.3.3.3 The driver must be able to operate the quick disconnect while in the normal driving position +with gloves on. +V.3.3.4 The Steering Wheel must have a continuous perimeter that is near circular or near oval. +The outer perimeter profile may have some straight sections, but no concave sections. “H”, +“Figure 8”, or cutout wheels are not allowed. +V.4 WHEELS AND TIRES +V.4.1 Wheel Size +Wheels must be 203.2 mm (8.0 inches) or more in diameter. +V.4.2 Wheel Attachment +V.4.2.1 Any wheel mounting system that uses a single retaining nut must incorporate a device to +retain the nut and the wheel if the nut loosens. +A second nut (jam nut) does not meet this requirement + + +Formula SAE® Rules 2025 © 2024 SAE International Page 22 of 143 +Version 1.0 31 Aug 2024 +V.4.2.2 Teams using modified lug bolts or custom designs must provide proof that Good Engineering +Practices have been followed in their design. +V.4.2.3 If used, aluminum wheel nuts must be hard anodized and in pristine condition. +V.4.3 Tires +Vehicles may have two types of tires, Dry and Wet +V.4.3.1 Dry Tires +a. The tires on the vehicle when it is presented for Technical Inspection. +b. May be any size or type, slicks or treaded. +V.4.3.2 Wet Tires +Any size or type of treaded or grooved tire where: +• The tread pattern or grooves were molded in by the tire manufacturer, or were cut by +the tire manufacturer or appointed agent. +Any grooves that have been cut must have documented proof that this rule was met +• There is a minimum tread depth of 2.4 mm +V.4.3.3 Tire Set +a. All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be +identical. +b. Once each tire set has been presented for Technical Inspection, any tire compound or +size, or wheel type or size must not be changed. +V.4.3.4 Tire Pressure +a. Tire Pressure must be in the range allowed by the manufacturer at all times. +b. Tire Pressure may be inspected at any time +V.4.3.5 Requirements for All Tires +a. Teams must not do any hand cutting, grooving or modification of the tires. +b. Tire warmers are not allowed. +c. No traction enhancers may be applied to the tires at any time onsite at the competition. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 23 of 143 +Version 1.0 31 Aug 2024 +F - CHASSIS AND STRUCTURAL +F.1 DEFINITIONS +F.1.1 Chassis +The fabricated structural assembly that supports all functional vehicle systems. +This assembly may be a single fabricated structure, multiple fabricated structures or a +combination of composite and welded structures. +F.1.2 Frame Member +A minimum representative single piece of uncut, continuous tubing. +F.1.3 Monocoque +A type of Chassis where loads are supported by the external panels +F.1.4 Main Hoop +A roll bar located alongside or immediately aft of the driver’s torso. +F.1.5 Front Hoop +A roll bar located above the driver’s legs, in proximity to the steering wheel. +F.1.6 Roll Hoop(s) +Referring to the Front Hoop AND the Main Hoop +F.1.7 Roll Hoop Bracing Supports +The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). +F.1.8 Front Bulkhead +A planar structure that provides protection for the driver’s feet. +F.1.9 Impact Attenuator +A deformable, energy absorbing device located forward of the Front Bulkhead. +F.1.10 Primary Structure +The combination of these components: +• Front Bulkhead and Front Bulkhead Support +• Front Hoop, Main Hoop, Roll Hoop Braces and Supports +• Side Impact Structure +• (EV Only) Tractive System Protection and Rear Impact Protection +• Any Frame Members, guides, or supports that transfer load from the Driver Restraint +System +F.1.11 Primary Structure Envelope +A volume enclosed by multiple tangent planes, each of which follows the exact outline of the +Primary Structure Frame Members +F.1.12 Major Structure +The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main +Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of +the Upper Side Impact Member or top of the Side Impact Zone. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 24 of 143 +Version 1.0 31 Aug 2024 +F.1.13 Rollover Protection Envelope +The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front +Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural +tube, or monocoque equivalent. +* If there are no Triangulated Structural members aft of the Main Hoop, the Rollover +Protection Envelope ends at the rear plane of the Main Hoop + +F.1.14 Tire Surface Envelope +The volume enclosed by tangent lines between the Main Hoop and the outside edge of each +of the four tires. + +F.1.15 Component Envelope +The area that is inside a plane from the top of the Main Hoop to the top of the Front +Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural +tube, or monocoque equivalent. * see note in step F.1.13 above + +F.1.16 Buckling Modulus (EI) +Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the +weakest axis +F.1.17 Triangulation +An arrangement of Frame Members where all members and segments of members between +bends or nodes with Structural tubes form a structure composed entirely of triangles. +a. This is generally required between an upper member and a lower member, each may +have multiple segments requiring a diagonal to form multiple triangles. +b. This is also what is meant by “properly triangulated” + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 25 of 143 +Version 1.0 31 Aug 2024 + +F.1.18 Nonflammable Material +Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent +F.2 DOCUMENTATION +F.2.1 Structural Equivalency Spreadsheet - SES +F.2.1.1 The SES is a supplement to the Formula SAE Rules and may provide guidance or further details +in addition to those of the Formula SAE Rules. +F.2.1.2 The SES provides the means to: +a. Document the Primary Structure and show compliance with the Formula SAE Rules +b. Determine Equivalence to Formula SAE Rules using an accepted basis +F.2.2 Structural Documentation +F.2.2.1 All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR - +Document Requirements +F.2.3 Equivalence +F.2.3.1 Equivalency in the structural context is determined and documented with the methods in the +SES +F.2.3.2 Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same +application +F.2.3.3 The properties of tubes and laminates may be combined to prove Equivalence. +For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate +panel, the panel only needs to be Equivalent to two Side Impact Tubes. +F.2.4 Tolerance +Tolerance on dimensions given in the rules is allowed and is addressed in the SES. +F.2.5 Fabrication +Vehicles must be fabricated in accordance with the design, materials, and processes described +in the SES. +F.3 TUBING AND MATERIAL +F.3.1 Dimensions +Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for +commonly available tubing. + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 26 of 143 +Version 1.0 31 Aug 2024 +F.3.2 Tubing Requirements +F.3.2.1 Requirements by Application + Application +Steel Tube Must +Meet Size per +F.3.4: +Alternative Tubing +Material Permitted +per F.3.5 ? + +a. Front Bulkhead Size B Yes +b. Front Bulkhead Support Size C Yes +c. Front Hoop Size A Yes +d. Front Hoop Bracing Size B Yes +e. Side Impact Structure Size B Yes +f. Bent / Multi Upper Side Impact Member Size D Yes +g. Main Hoop Size A NO + +h. Main Hoop Bracing Size B NO +i. Main Hoop Bracing Supports Size C Yes +j. Driver Restraint Harness Attachment Size B Yes +k. Shoulder Harness Mounting Bar Size A NO +l. Shoulder Harness Mounting Bar Bracing Size C Yes +m. Accumulator Mounting and Protection Size B Yes +n. Component Protection Size C Yes +o. Structural Tubing Size C Yes +F.3.3 Non Structural Tubing +F.3.3.1 Definition +Any tubing which does NOT meet F.3.2.1.o Structural Tubing +F.3.3.2 Applicability +Non Structural Tubing is ignored when assessing compliance to any rule +F.3.4 Steel Tubing and Material +F.3.4.1 Minimum Requirements for Steel Tubing +A tube must have all four minimum requirements for each Size specified: + Tube +Minimum +Area +Moment of +Inertia +Minimum +Cross +Sectional +Area +Minimum +Outside +Diameter or +Square Width +Minimum +Wall +Thickness +Example Sizes of +Round Tube + +a. Size A +11320 mm +4 + 173 mm +2 + 25.0 mm 2.0 mm +1.0” x 0.095” +25 x 2.5 mm + +b. Size B +8509 mm +4 + 114 mm +2 + 25.0 mm 1.2 mm +1.0” x 0.065” +25.4 x 1.6 mm + +c. Size C +6695 mm +4 + 91 mm +2 + 25.0 mm 1.2 mm +1.0” x 0.049” +25.4 x 1.2 mm + +d. Size D +18015 mm +4 + 126 mm +2 + 35.0 mm 1.2 mm +1.375” x 0.049” +35 x 1.2 mm + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 27 of 143 +Version 1.0 31 Aug 2024 +F.3.4.2 Properties for ANY steel material for calculations submitted in an SES must be: +a. Non Welded Properties for continuous material calculations: +Young’s Modulus (E) = 200 GPa (29,000 ksi) +Yield Strength (Sy) = 305 MPa (44.2 ksi) +Ultimate Strength (Su) = 365 MPa (52.9 ksi) +b. Welded Properties for discontinuous material such as joint calculations: +Yield Strength (Sy) = 180 MPa (26 ksi) +Ultimate Strength (Su) = 300 MPa (43.5 ksi) +F.3.4.3 Where Welded tubing reinforcements are required (such as inserts for bolt holes or material +to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be +shown to the original Non Welded tube in the SES +F.3.5 Alternative Tubing Materials +F.3.5.1 Alternative Materials may be used for applications shown as permitted in F.3.2.1 +F.3.5.2 If any Alternative Materials are used, the SES must contain: +a. Documentation of material type, (purchase receipt, shipping document or letter of +donation) and the material properties. +b. Calculations that show equivalent to or better than the minimum requirements for steel +tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the +Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for +buckling modulus and for energy dissipation +c. Details of the manufacturing technique and process +F.3.5.3 Aluminum Tubing +a. Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm +Welded 3.0 mm +b. Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: +Young’s Modulus (E) 69 GPa (10,000 ksi) +Yield Strength (Sy) 240 MPa (34.8 ksi) +Ultimate Strength (Su) 290 MPa (42.1 ksi) +c. Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: +Yield Strength (Sy) 115 MPa (16.7 ksi) +Ultimate Strength (Su) 175 MPa (25.4 ksi) +d. If welding is used on a regulated aluminum structure, the equivalent yield strength must +be considered in the “as welded” condition for the alloy used unless the team provides +detailed proof that the frame or component has been properly solution heat treated, +artificially aged, and not subject to heating during team manufacturing. +e. If aluminum was solution heat treated and age hardened to increase its strength after +welding, the team must supply evidence of the process. +This includes, but is not limited to, the heat treating facility used, the process applied, +and the fixturing used. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 28 of 143 +Version 1.0 31 Aug 2024 +F.4 COMPOSITE AND OTHER MATERIALS +F.4.1 Requirements +If any composite or other material is used, the SES must contain: +F.4.1.1 Documentation of material type, (purchase receipt, shipping document or letter of donation) +and the material properties. +F.4.1.2 Details of the manufacturing technique and/or composite layup technique as well as the +structural material used (examples - cloth type, weight, and resin type, number of layers, core +material, and skin material if metal). +F.4.1.3 Calculations that show equivalence of the structure to one of similar geometry made to meet +the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency +calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, +buckling, and tension. +F.4.1.4 Construction dates of the test panel(s) and monocoque, and approximate age(s) of the +materials used. +F.4.2 Laminate and Material Testing +F.4.2.1 Testing Requirements +a. Any tested samples must be engraved with the full date of construction and sample +name +b. The same set of test results must not be used for different monocoques in different +years. +The intent is for the test panel to use the same material batch, material age, material storage, +and student layup quality as the monocoque. +F.4.2.2 Primary Structure Laminate Testing +Teams must build new representative test panels for each ply schedule used in the regulated +regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer +to F.4.2.4 +a. Test panels must: +• Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm +• Be supported by a span distance of 400 mm +• Have equal surface area for the top and bottom skin +• Have bare edges, without skin material +b. The SES must include: +• Data from the 3 point bending tests +• Pictures of the test samples +• A picture of the test sample and test setup showing a measurement documenting +the supported span distance used in the SES +c. Test panel results must be used to derive stiffness, yield strength, ultimate strength and +absorbed energy properties by the SES formula and limits for the purpose of calculating +laminate panels equivalency corresponding to Primary Structure regions of the chassis. +d. Test panels must use the thickest core associated with each skin layup + + +Formula SAE® Rules 2025 © 2024 SAE International Page 29 of 143 +Version 1.0 31 Aug 2024 +Designs may use core thickness that is 50% - 100% of the test panel core thickness +associated with each skin layup +e. Calculation of derived properties must use the part of test data where deflection is 50 +mm or less +f. Calculation of absorbed energy must use the integral of force times displacement +F.4.2.3 Comparison Test +Teams must make an equivalent test that will determine any compliance in the test rig and +establish an absorbed energy value of the baseline tubes. +a. The comparison test must use two Side Impact steel tubes (F.3.2.1.e) +b. The steel tubes must be tested to a minimum displacement of 19.0 mm +c. The calculation of absorbed energy must use the integral of force times displacement +from the initiation of load to a displacement of 19.0 mm +F.4.2.4 Test Conduct +a. The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture +b. The load applicator used to test any panel/tubes as required in this section F.4.2 must +be: +• Metallic +• Radius 50 mm +c. The load applicator must overhang the test piece to prevent edge loading +d. Any other material must not be put between the load applicator and the items on test + +F.4.2.5 Perimeter Shear Test +a. The Perimeter Shear Test must be completed by measuring the force required to push or +pull a 25 mm diameter flat punch through a flat laminate sample. +b. The sample must: +• Measure 100 mm x 100 mm minimum +• Have core and skin thicknesses identical to those used in the actual application +• Be manufactured using the same materials and processes +c. The fixture must support the entire sample, except for a 32 mm hole aligned coaxially +with the punch. +d. The sample must not be clamped to the fixture +e. The edge of the punch and hole in the fixture may include an optional fillet up to a +maximum radius of 1 mm. +f. The SES must include force and displacement data and photos of the test setup. + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 30 of 143 +Version 1.0 31 Aug 2024 +g. The first peak in the load-deflection curve must be used to determine the skin shear +strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5 +h. The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5 +F.4.2.6 Lap Joint Test +The Lap Joint Test measures the force required to pull apart a joint of two laminate samples +that are bonded together +a. A joint design with two perpendicular bond areas may show equivalence using the shear +performance of the smaller of the two areas +b. A joint design with a single bond area must have two separate pull tests with different +orientations of the adhesive joint: +• Parallel to the pull direction, with the adhesive joint in pure shear +• T peel normal to the pull direction, with the adhesive joint in peel +c. The samples used must: +• Have skin thicknesses identical to those used in the actual monocoque +• Be manufactured using the same materials and processes +The intent is to perform a test of the actual bond overlap, and fail the skin before the bond +d. The force and displacement data and photos of the test setup must be included in the +SES. +e. The shear strength * normal area of the bond must be more than the UTS * cross +sectional area of the skin +F.4.3 Use of Laminates +F.4.3.1 Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the +nearest plies to core material. +F.4.3.2 The monocoque must have the tested layup direction normal to the cross sections used for +Equivalence in the SES, with allowance for taper of the monocoque normal to the cross +section. +F.4.3.3 Results from the 3 point bending test will be assigned to the 0 layup direction. +F.4.3.4 All material properties in the directions designated by the SES must be 50% or more of those +in the tested “0” direction as calculated by the SES +F.4.4 Equivalent Flat Panel Calculation +F.4.4.1 When specified, the Equivalence of the chassis must be calculated as a flat panel with the +same composition as the chassis about the neutral axis of the laminate. +F.4.4.2 The curvature of the panel and geometric cross section of the chassis must be ignored for +these calculations. +F.4.4.3 Calculations of Equivalence that do not reference this section F.4.3 may use the actual +geometry of the chassis. +F.5 CHASSIS REQUIREMENTS +This section applies to all Chassis, regardless of material or construction + + +Formula SAE® Rules 2025 © 2024 SAE International Page 31 of 143 +Version 1.0 31 Aug 2024 +F.5.1 Primary Structure +F.5.1.1 The Primary Structure must be constructed from one or a combination of: +• Steel Tubing and Material F.3.2 F.3.4 +• Alternative Tubing Materials F.3.2 F.3.5 +• Composite Material F.4 +F.5.1.2 Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite +types must: +a. Meet all relevant requirements F.5.1.1 +b. Show Equivalence F.2.3, as applicable +c. Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent. +F.5.2 Bent Tubes or Multiple Tubes +F.5.2.1 The minimum radius of any bend, measured at the tube centerline, must be three or more +times the tube outside diameter (3 x OD). +F.5.2.2 Bends must be smooth and continuous with no evidence of crimping or wall failure. +F.5.2.3 If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere +in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be +attached to support it. +a. The support tube attachment point must be at the position along the bent tube where it +deviates farthest from a straight line connecting the two ends +b. The support tube must terminate at a node of the chassis +c. The support tube for any bent tube (other than the Upper Side Impact Member or +Shoulder Harness Mounting Bar) must be: +• The same diameter and thickness as the bent tube +• Angled no more than 30° from the plane of the bent tube +F.5.3 Holes and Openings in Regulated Tubing +F.5.3.1 Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES. +F.5.3.2 Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic +testing or by the drilling of inspection holes on request. +F.5.3.3 Regulated tubing other than the open lower ends of Roll Hoops must have any open ends +closed by a welded cap or inserted metal plug. +F.5.4 Fasteners in Primary Structure +F.5.4.1 Bolted connections in the Primary Structure must use a removable bolt and nut. +Bonded fasteners and blind nuts and bolts do not meet this requirement +F.5.4.2 Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2 +F.5.4.3 Bolted connections in the Primary Structure using tabs or brackets must have an edge +distance ratio “e/D” of 1.5 or higher +“D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest +free edge +Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” + + +Formula SAE® Rules 2025 © 2024 SAE International Page 32 of 143 +Version 1.0 31 Aug 2024 +F.5.5 Bonding in Regulated Structure +F.5.5.1 Adhesive used and referenced bonding strength must be correct for the two substrate types +F.5.5.2 Document the adhesive choice, age and expiration date, substrate preparation, and the +equivalency of the bonded joint in the SES +F.5.5.3 The SES will reduce any referenced or tested adhesive values by 50% +F.5.6 Roll Hoops +F.5.6.1 The Chassis must include a Main Hoop and a Front Hoop +F.5.6.2 The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with +Structural Tubing +F.5.6.3 Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of +the two: +a. Triangulated at a side view node +b. Less than 25 mm from an Attachment point F.7.8 +F.5.6.4 Roll Hoop and Driver Position +When seated normally and restrained by the Driver Restraint System, the helmet of a 95th +percentile male (see V.2.1.1) and all of the team’s drivers must: +a. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to +the top of the Front Hoop. +b. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to +the lower end of the Main Hoop Bracing if the bracing extends rearwards. +c. Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing +extends forwards. + +F.5.6.5 Driver Template +A two dimensional template used to represent the 95th percentile male is made to these +dimensions (see figure below): +• A circle of diameter 200 mm will represent the hips and buttocks. +• A circle of diameter 200 mm will represent the shoulder/cervical region. +• A circle of diameter 300 mm will represent the head (with helmet). +• A straight line measuring 490 mm will connect the centers of the two 200 mm circles. +• A straight line measuring 280 mm will connect the centers of the upper 200 mm circle +and the 300 mm head circle. + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 33 of 143 +Version 1.0 31 Aug 2024 +F.5.6.6 Driver Template Position +The Driver Template will be positioned as follows: +• The seat will be adjusted to the rearmost position +• The pedals will be put in the most forward position +• The bottom 200 mm circle will be put on the seat bottom where the distance between +the center of this circle and the rearmost face of the pedals is no less than 915 mm +• The middle 200 mm circle, representing the shoulders, will be positioned on the seat +back +• The upper 300 mm circle will be positioned no more than 25 mm away from the head +restraint (where the driver’s helmet would normally be located while driving) + +F.5.7 Front Hoop +F.5.7.1 The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c +F.5.7.2 With proper Triangulation, the Front Hoop may be fabricated from more than one piece of +tubing +F.5.7.3 The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, +over and down to the lowest Frame Member on the other side of the Frame. +F.5.7.4 The top-most surface of the Front Hoop must be no lower than the top of the steering wheel +in any angular position. See figure after F.5.9.6 below +F.5.7.5 The Front Hoop must be no more than 250 mm forward of the steering wheel. +This distance is measured horizontally, on the vehicle centerline, from the rear surface of the +Front Hoop to the forward most surface of the steering wheel rim with the steering in the +straight ahead position. +F.5.7.6 In side view, any part of the Front Hoop above the Upper Side Impact Structure must be +inclined less than 20° from the vertical. +F.5.7.7 A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during +Technical Inspection +F.5.8 Main Hoop +F.5.8.1 The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing +meeting F.3.2.1.g + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 34 of 143 +Version 1.0 31 Aug 2024 +F.5.8.2 The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one +side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque +on the other side of the Frame. +F.5.8.3 In the side view of the vehicle, +a. The part of the Main Hoop that lies above its attachment point to the upper Side Impact +Tube must be less than 10° from vertical. +b. The part of the Main Hoop below the Upper Side Impact Member attachment: +• May be forward at any angle +• Must not be rearward more than 10° from vertical +F.5.8.4 In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 +mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom +tubes of the Major Structure of the Chassis. +F.5.9 Main Hoop Braces +F.5.9.1 Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h +F.5.9.2 The Main Hoop must be supported by two Braces extending in the forward or rearward +direction, one on each of the left and right sides of the Main Hoop. +F.5.9.3 In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the +same side of the vertical line through the top of the Main Hoop. +(If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the +Main Hoop leans rearward, the Braces must be rearward of the Main Hoop) +F.5.9.4 The Main Hoop Braces must be attached 160 mm or less below the top most surface of the +Main Hoop. +The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop +F.5.9.5 The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more. +F.5.9.6 The Main Hoop Braces must be straight, without any bends. + +F.5.9.7 The Main Hoop Braces must be: +a. Securely integrated into the Frame +b. Capable of transmitting all loads from the Main Hoop into the Major Structure of the +Chassis without failing + + +Formula SAE® Rules 2025 © 2024 SAE International Page 35 of 143 +Version 1.0 31 Aug 2024 +F.5.10 Head Restraint Protection +An additional frame member may be added to meet T.2.8.3.b +F.5.10.1 If used, the Head Restraint Protection frame member must: +a. Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop +b. Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting +F.3.2.1.h +c. Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3) +F.5.10.2 The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection +F.5.11 External Items +F.5.11.1 Definition - items outside the exact outline of the part of the Primary Structure Envelope +F.1.11 defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other +tube nodes or composite attachments +F.5.11.2 External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if +the mount is one of the two: +a. Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis +b. Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will +fail below the allowable load as calculated by the SES +F.5.11.3 If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may +attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above: +a. Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service +Disconnect, Master Switches or Shutdown Buttons +b. Lightweight mounts for items inside the Main Hoop Braces +F.5.11.4 Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the +Main Hoop Braces or Main Hoop above other tube nodes or composite attachments +F.5.11.5 Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must +be longitudinally offset to avoid point loading in a rollover +F.5.11.6 External Items should not point at the driver +F.5.12 Mechanically Attached Roll Hoop Bracing +F.5.12.1 When Roll Hoop Bracing is mechanically attached: +a. The threaded fasteners used to secure non permanent joints are Critical Fasteners, see +T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7 +b. No spherical rod ends are allowed +c. The attachment holes in the lugs, the attached bracing and the sleeves and tubes must +be a close fit with the pin or bolt +F.5.12.2 Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint + + +Formula SAE® Rules 2025 © 2024 SAE International Page 36 of 143 +Version 1.0 31 Aug 2024 +Figure – Double Lug Joint + +F.5.12.3 For Double Lug Joints, each lug must: +a. Be minimum 4.5 mm (0.177 in) thickness steel +b. Measure 25 mm minimum perpendicular to the axis of the bracing +c. Be as short as practical along the axis of the bracing. +F.5.12.4 All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must +include a capping arrangement +F.5.12.5 In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 +minimum diameter and grade. See F.5.12.1 above +Figure – Sleeved Butt Joint + +F.5.12.6 For Sleeved Butt Joints, the sleeve must: +a. Have a minimum length of 75 mm; 37.5 mm to each side of the joint +b. Be external to the base tubes, with a close fit around the base tubes. +c. Have a wall thickness of 2.0 mm or more +F.5.12.7 In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 +minimum diameter and grade. See F.5.12.1 above +F.5.13 Other Bracing Requirements +F.5.13.1 Where the braces are not welded to steel Frame Members, the braces must be securely +attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2 +F.5.13.2 Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness +steel. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 37 of 143 +Version 1.0 31 Aug 2024 +F.5.14 Steering Protection +Steering system racks or mounting components that are external (vertically above or below) +to the Primary Structure must be protected from frontal impact. +The protective structure must: +a. Be F.3.2.1.n or Equivalent +b. Extend to the vertical limit of the steering component(s) +c. Extend to the local width of the Chassis +d. Meet F.7.8 if not welded to the Chassis +F.5.15 Other Side Tube Requirements +If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck +of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the +Frame +This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or +frame tube, and the driver’s neck contacting this brace or tube. +F.5.16 Component Protection +When specified in the rules, components must be protected by one or two of: +a. Fully Triangulated structure with tubes meeting F.3.2.1.n +b. Structure Equivalent to the above, as determined per F.4.1.3 +F.6 TUBE FRAMES +F.6.1 Front Bulkhead +The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a +F.6.2 Front Bulkhead Support +F.6.2.1 Frame Members of the Front Bulkhead Support system must be constructed of closed section +tubing meeting F.3.2.1.b +F.6.2.2 The Front Bulkhead must be securely integrated into the Frame. +F.6.2.3 The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame +Members on each side of the vehicle; an upper member; lower member and diagonal brace to +provide Triangulation. +a. The top of the upper support member must be attached 50 mm or less from the top +surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 +mm above and 50 mm below the Upper Side Impact member. +b. If the upper support member is further than 100 mm above the top of the Upper Side +Impact member, then properly Triangulated bracing is required to transfer load to the +Main Hoop by one of: +• the Upper Side Impact member +• an additional member transmitting load from the junction of the Upper Support +Member with the Front Hoop +c. The lower support member must be attached to the base of the Front Bulkhead and the +base of the Front Hoop +d. The diagonal brace must properly Triangulate the upper and lower support members + + +Formula SAE® Rules 2025 © 2024 SAE International Page 38 of 143 +Version 1.0 31 Aug 2024 +F.6.2.4 Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 +are met +F.6.2.5 Examples of acceptable configurations of members may be found in the SES +F.6.3 Front Hoop Bracing +F.6.3.1 Front Hoop Braces must be constructed of material meeting F.3.2.1.d +F.6.3.2 The Front Hoop must be supported by two Braces extending in the forward direction, one on +each of the left and right sides of the Front Hoop. +F.6.3.3 The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to +the structure in front of the driver’s feet. +F.6.3.4 The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but +not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 +above +F.6.3.5 If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° +from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully +Triangulated structural node. +F.6.3.6 The Front Hoop Braces must be straight, without any bends +F.6.4 Side Impact Structure +F.6.4.1 Frame Members of the Side Impact Structure must be constructed of closed section tubing +meeting F.3.2.1.e or F.3.2.1.f, as applicable +F.6.4.2 With proper Triangulation, Side Impact Structure members may be fabricated from more than +one piece of tubing. +F.6.4.3 The Side Impact Structure must include three or more tubular members located on each side +of the driver while seated in the normal driving position + +F.6.4.4 The Upper Side Impact Member must: +a. Connect the Main Hoop and the Front Hoop. +b. Have its top edge entirely in a zone that is parallel to the ground between 265 mm and +320 mm above the lowest point of the top surface of the Lower Side Impact Member +F.6.4.5 The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the +bottom of the Front Hoop. + + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 39 of 143 +Version 1.0 31 Aug 2024 +F.6.4.6 The Diagonal Side Impact Member must: +a. Connect the Upper Side Impact Member and Lower Side Impact Member forward of the +Main Hoop and rearward of the Front Hoop +b. Completely Triangulate the bays created by the Upper and Lower Side Impact Members. +F.6.5 Shoulder Harness Mounting +F.6.5.1 The Shoulder Harness Mounting Bar must: +a. Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k +b. Attach to the Main Hoop on the left and right sides of the chassis +F.6.5.2 Bent Shoulder Harness Mounting Bars must: +a. Meet F.5.2.1 and F.5.2.2 +b. Have bracing members attached at the bend(s) and to the Main Hoop. +• Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l +• The included angle in side view between the Shoulder Harness Bar and the braces +must be no less than 30°. +F.6.5.3 The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness +The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar +F.6.6 Main Hoop Bracing Supports +F.6.6.1 Frame Members of the Main Hoop Bracing Support system must be constructed of closed +section tubing meeting F.3.2.1.i +F.6.6.2 The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a +minimum of two Frame Members on each side of the vehicle: an upper member and a lower +member in a properly Triangulated configuration. +a. The upper support member must attach to the node where the upper Side Impact +Member attaches to the Main Hoop. +b. The lower support member must attach to the node where the lower Side Impact +Member attaches to the Main Hoop. +c. Each of the above members may be multiple or bent tubes provided the requirements of +F.5.2 are met. +d. Examples of acceptable configurations of members may be found in the SES. +F.7 MONOCOQUE +F.7.1 General Requirements +F.7.1.1 The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded +frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and +tension +F.7.1.2 Composite and metallic monocoques have the same requirements +F.7.1.3 Corners between panels used for structural equivalence must contain core +F.7.1.4 An inspection hole approximately 4mm in diameter must be drilled through a low stress +location of each monocoque section regulated by the Structural Equivalency Spreadsheet +This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b + + +Formula SAE® Rules 2025 © 2024 SAE International Page 40 of 143 +Version 1.0 31 Aug 2024 +F.7.1.5 Composite monocoques must: +a. Meet the materials requirements in F.4 Composite and Other Materials +b. Use data from the laminate testing results as the basis for any strength or stiffness +calculations +F.7.2 Front Bulkhead +F.7.2.1 When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral +axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1 +F.7.2.2 The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm +measured from the rearmost face of the Front Bulkhead +F.7.2.3 Any Front Bulkhead which supports the IA plate must have a perimeter shear strength +equivalent to a 1.5 mm thick steel plate +F.7.3 Front Bulkhead Support +F.7.3.1 In addition to proving that the strength of the monocoque is sufficient, the monocoque must +have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces. +F.7.3.2 The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or +more than the EI of one steel tube that it replaces when calculated as per F.4.3 +F.7.3.3 The perimeter shear strength of the monocoque laminate in the Front Bulkhead support +structure must be 4 kN or more for a section with a diameter of 25 mm. +This must be proven by a physical test completed per F.4.2.5 and the results included in the +SES. +F.7.4 Front Hoop Attachment +F.7.4.1 The Front Hoop must be mechanically attached to the monocoque +a. Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c +b. The Front Hoop tube must be mechanically connected to the Mounting Plate with +Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop +tube along the two sides of the mounting plate +F.7.4.2 Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any +bends and nodes that are not at the top center of the Front Hoop +F.7.4.3 The Front Hoop may be fully laminated into the monocoque if: +a. The Front Hoop has core fit tightly around its entire circumference. Expanding foam is +not permitted +b. Equivalence to six or more mounts compliant with F.7.8 must show in the SES +c. A small gap in the laminate (approximately 25 mm) exists for inspection of the Front +Hoop F.5.7.7 +F.7.4.4 Adhesive must not be the sole method of attaching the Front Hoop to the monocoque + + +Formula SAE® Rules 2025 © 2024 SAE International Page 41 of 143 +Version 1.0 31 Aug 2024 +F.7.5 Side Impact Structure +F.7.5.1 Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front +Hoop consisting of the combination of a vertical section minimum 290 mm in height from the +bottom surface of the floor of the monocoque and half the horizontal floor + +F.7.5.2 The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it +replaces +F.7.5.3 The portion of the Side Impact Zone that is vertically between the upper surface of the floor +and 320 mm above the lowest point of the upper surface of the floor (see figure above) must +have: +a. Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3 +b. No openings in Side View between the Front Hoop and Main Hoop +F.7.5.4 Horizontal floor Equivalence must be calculated per F.4.3 +F.7.5.5 The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a +section with a diameter of 25 mm. +This must be proven by physical test completed per F.4.2.5 and the results included in the SES. +F.7.6 Main Hoop Attachment +F.7.6.1 The Main Hoop must be mechanically attached to the monocoque +a. Main Hoop mounting plates must be 2.0 mm minimum thickness steel +b. The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 +mm minimum thickness steel plates parallel to the two sides of the tube, with gussets +from the Main Hoop tube along the two sides of the mounting plate +F.7.6.2 Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and +nodes that are below the top of the monocoque +F.7.7 Roll Hoop Bracing Attachment +Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8. +F.7.8 Attachments +F.7.8.1 Each attachment point between the monocoque or composite panels and the other Primary +Structure must be able to carry a minimum load of 30 kN in any direction. +a. When a Roll Hoop attaches in three locations on each side, the attachments must be +located at the bottom, top, and a location near the midpoint + + + + + + + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 42 of 143 +Version 1.0 31 Aug 2024 +b. When a Roll Hoop attaches at only the bottom and a point between the top and the +midpoint on each side, each of the four attachments must show load strength of 45 kN in +all directions +F.7.8.2 If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must +obey one of the two: +a. Parallel brackets attached to the two sides of the Main Hoop and the two sides of the +Side Impact Structure +b. Two mostly perpendicular brackets attached to the Main Hoop and the side and back of +the monocoque +F.7.8.3 The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, +bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. +Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient +shear area is provided. +F.7.8.4 Proof that the brackets are sufficiently stiff must be documented in the SES. +F.7.8.5 Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical +Fasteners, see T.8.2 +F.7.8.6 Each attachment point requires backing plates which meet one of: +• Steel with a minimum thickness of 2 mm +• Alternate materials if Equivalency is approved +F.7.8.7 The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only +one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 +above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in +bending, similar to the figure below. + +F.7.8.8 Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the +two: +a. A solid insert that is fully enclosed by the inner and outer skin +b. Local elimination of any gap between inner and outer skin, with or without repeating +skin layups +F.7.9 Driver Harness Attachment +F.7.9.1 Required Loads +a. Each attachment point for the Shoulder Belts must support a minimum load of 15 kN +before failure with a required load of 30 kN distributed across the two belt attachments +b. Each attachment point for the Lap Belts must support a minimum load of 15 kN before +failure. + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 43 of 143 +Version 1.0 31 Aug 2024 +c. Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 +kN before failure. +d. If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or +are attached to the same attachment point, then each mounting point must support a +minimum load of 30 kN before failure. +F.7.9.2 Load Testing +The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven +by physical tests where the required load is applied to a representative attachment point +where the proposed layup and attachment bracket are used. +a. Edges of the test fixture supporting the sample must be a minimum of 125 mm from the +load application point (load vector intersecting a plane) +b. Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 +degrees) to the plane of the test sample +c. Shoulder Belt Test Load application must meet: + Installed Shoulder Belt Angle: Test Load Application Angle must be: should be: + +Between 90° and 45° +Between 90° and the installed +Shoulder Belt Angle +90° + + Between 45° and 0° +Between 90° and 45° 90° + +The angles are measured from the plane of the Test Sample (90° is normal to the Test +Sample and 0° is parallel to the Test Sample) +d. The Shoulder Harness test sample must not be any larger than the section of the +monocoque as built +e. The width of the Shoulder Harness test sample must not be any wider than the Shoulder +Harness "panel height" (see Structural Equivalency Spreadsheet) used to show +equivalency for the Shoulder Harness mounting bar +f. Designs with attachments near a free edge must not support the free edge during the +test +The intent is that the test specimen, to the best extent possible, represents the vehicle as +driven at competition. Teams are expected to test a panel that is manufactured in as close a +configuration to what is built in the vehicle as possible +F.8 FRONT CHASSIS PROTECTION +F.8.1 Requirements +F.8.1.1 Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion +Plate between the Impact Attenuator and the Front Bulkhead. +F.8.1.2 All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the +Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse +and vertical loads if off-axis impacts occur. +F.8.2 Anti Intrusion Plate - AIP +F.8.2.1 The Anti Intrusion Plate must be one of the three: +a. 1.5 mm minimum thickness solid steel +b. 4.0 mm minimum thickness solid aluminum plate + + +Formula SAE® Rules 2025 © 2024 SAE International Page 44 of 143 +Version 1.0 31 Aug 2024 +c. Composite material per F.8.3 +F.8.2.2 The outside profile requirement of the Anti Intrusion Plate depends on the method of +attachment to the Front Bulkhead: +a. Welded joints: the profile must align with or be more than the centerline of the Front +Bulkhead tubes on all sides +b. Bolted joints, bonding, laminating: the profile must align with or be more than the +outside dimensions of the Front Bulkhead around the entire periphery +F.8.2.3 Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in +the team’s SES submission. The accepted methods of attachment are: +a. Welding +• All weld lengths must be 25 mm or longer +• If interrupted, the weld/space ratio must be 1:1 or higher +b. Bolted joints +• Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. +• The distance between any two bolt centers must be 50 mm minimum. +• Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN +c. Bonding +• The Front Bulkhead must have no openings +• The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel +strength higher than 120 kN +d. Laminating +• The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead +• The lamination must fully enclose the Anti Intrusion Plate and have shear capability +higher than 120 kN +F.8.3 Composite Anti Intrusion Plate +F.8.3.1 Composite Anti Intrusion Plates: +a. Must not fail in a frontal impact +b. Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm +minimum Impact Attenuator area +F.8.3.2 Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods: +a. Physical testing of the AIP attached to a structurally representative section of the +intended chassis +• The test fixture must have equivalent strength and stiffness to a baseline front +bulkhead or must be the same as the first 50 mm of the Chassis +• Test data is valid for only one Competition Year +b. Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending +and perimeter shear + + +Formula SAE® Rules 2025 © 2024 SAE International Page 45 of 143 +Version 1.0 31 Aug 2024 +F.8.4 Impact Attenuator - IA +F.8.4.1 Teams must do one of: +• Use an approved Standard Impact Attenuator from the FSAE Online Website +• Build and test a Custom Impact Attenuator of their own design F.8.8 +F.8.4.2 The Custom Impact Attenuator must meet these: +a. Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis. +b. Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm +(parallel to the ground) for a minimum distance of 200 mm forward of the Front +Bulkhead. +c. Segmented foam attenuators must have all segments bonded together to prevent sliding +or parallelogramming. +d. Honeycomb attenuators made of multiple segments must have a continuous panel +between each segment. +F.8.4.3 If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses +the Standard Honeycomb Impact Attenuator, and then one of the two must be met: +a. The Front Bulkhead must include an additional support that is a diagonal or X-brace that +meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 +• The structure must go across the entire Front Bulkhead opening on the diagonal +• Attachment points at each end must carry a minimum load of 30 kN in any direction +b. Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion +Plate does not permanently deflect more than 25 mm. +F.8.5 Impact Attenuator Attachment +F.8.5.1 The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must +be documented in the SES submission +F.8.5.2 The Impact Attenuator must attach with an approved method: + Impact Attenuator Type Construction Attachment Method(s): + a. Standard or Custom Foam, Honeycomb Bonding + b. Custom other Bonding, Welding, Bolting + +F.8.5.3 If the Impact Attenuator is attached by bonding: +a. Bonding must meet F.5.5 +b. The shear strength of the bond must be higher than: +• 95 kN for foam Impact Attenuators +• 38.5 kN for honeycomb Impact Attenuators +• The maximum compressive force for custom Impact Attenuators +c. The entire surface of a foam Impact Attenuator must be bonded +d. Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond +equivalence +F.8.5.4 If the Impact Attenuator is attached by welding: +a. Welds may be continuous or interrupted +b. If interrupted, the weld/space ratio must be 1:1 or higher + + +Formula SAE® Rules 2025 © 2024 SAE International Page 46 of 143 +Version 1.0 31 Aug 2024 +c. All weld lengths must be more than 25 mm +F.8.5.5 If the Impact Attenuator is attached by bolting: +a. Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2 +b. The distance between any two bolt centers must be 50 mm minimum +c. Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN +d. Must be bolted directly to the Primary Structure +F.8.5.6 Impact Attenuator Position +a. All Impact Attenuators must mount with the bottom leading edge 150 mm or less above +the lowest point on the top of the Lower Side Impact Structure +b. A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 +mm or more wide that intersects a plane parallel to the ground that is 150 mm or less +above the lowest point on the top of the Lower Side Impact Structure +F.8.5.7 Impact Attenuator Orientation +a. The Impact Attenuator must be centered laterally on the Front Bulkhead +b. Standard Honeycomb must be mounted 200mm width x 100mm height +c. Standard Foam may be mounted laterally or vertically +F.8.6 Front Impact Objects +F.8.6.1 The only items allowed forward of the Anti Intrusion Plate in front view are the Impact +Attenuator, fastener heads, and light bodywork / nosecones +Fasteners should be oriented with the nuts rearwards +F.8.6.2 Front Wing and Bodywork Attachment +a. The front wing and front wing mounts must be able to move completely aft of the Anti +Intrusion Plate and not touch the front bulkhead during a frontal impact +b. The attachment points for the front wing and bodywork mounts should be aft of the Anti +Intrusion Plate +c. Tabs for wing and bodywork attachment must not extend more than 25 mm forward of +the Anti Intrusion Plate +F.8.6.3 Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the: +a. Rear face of the Anti Intrusion Plate +b. All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3 +c. All Non Crushable Items inside the Primary Structure +Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic +reservoirs +F.8.7 Front Impact Verification +F.8.7.1 The combination of the Impact Attenuator assembly and the force to crush or detach all other +items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in +F.8.8.2 +Ignore light bodywork, light nosecones, and outboard wheel assemblies + + +Formula SAE® Rules 2025 © 2024 SAE International Page 47 of 143 +Version 1.0 31 Aug 2024 +F.8.7.2 The peak load for the type of Impact Attenuator: +• Standard Foam Impact Attenuator 95 kN +• Standard Honeycomb Impact Attenuator 60 kN +• Tested Impact Attenuator peak as measured +F.8.7.3 Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement +F.8.7.4 Test Method +Get the peak force from physical testing of the Impact Attenuator and any Non Crushable +Object(s) as one of the two: +a. Tested together with the Impact Attenuator +b. Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2 +F.8.7.5 Calculation Method +a. Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener +shear, tearout, and/or link buckling +b. Add the peak attenuator load from F.8.7.2 +F.8.8 Impact Attenuator Data - IAD +F.8.8.1 All teams must include an Impact Attenuator Data (IAD) report as part of the SES. +F.8.8.2 Impact Attenuator Functional Requirements +These are not test requirements +a. Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak +b. Energy absorbed must be more than 7350 J +When: +• Total mass of Vehicle is 300 kg +• Impact velocity is 7.0 m/s +F.8.8.3 When using the Standard Impact Attenuator, the SES must meet these: +a. Test data will not be submitted +b. All other requirements of this section must be included. +c. Photos of the actual attenuator must be included +d. Evidence that the Standard IA meets the design criteria provided in the Standard Impact +Attenuator specification must be included with the SES. This may be a receipt or packing +slip from the supplier. +F.8.8.4 The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must +include: +a. Test data that proves that the Impact Attenuator Assembly meets the Functional +Requirements F.8.8.2 +b. Calculations showing how the reported absorbed energy and decelerations have been +derived. +c. A schematic of the test method. +d. Photos of the attenuator, annotated with the height of the attenuator before and after +testing. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 48 of 143 +Version 1.0 31 Aug 2024 +F.8.8.5 The Impact Attenuator Test is valid for only one Competition Year +F.8.8.6 Impact Attenuator Test Setup +a. During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using +the intended vehicle attachment method. +b. The Impact Attenuator Assembly must be attached to a structurally representative +section of the intended chassis. +The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. +A solid block of material in the shape of the front bulkhead is not “structurally +representative”. +c. There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the +test fixture. +d. No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond +the position of the Anti Intrusion Plate before the test. +The 25 mm spacing represents the front bulkhead support and insures that the plate does not +intrude excessively into the cockpit. +F.8.8.7 Test Conduct +a. Composite Impact Attenuators must be Dynamic Tested. +Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested +b. Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be +conducted at a dedicated test facility. This facility may be part of the University, but must +be supervised by professional staff or the University faculty. Teams must not construct +their own dynamic test apparatus. +c. Quasi-Static Testing may be done by teams using their University’s facilities/equipment, +but teams are advised to exercise due care +F.8.8.8 Test Analysis +a. When using acceleration data from the dynamic test, the average deceleration must be +calculated based on the raw unfiltered data. +b. If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 +(100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or +a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied. +F.9 FUEL SYSTEM (IC ONLY) +Fuel System Location and Protection are subject to approval during SES review and Technical +Inspection. +F.9.1 Location +F.9.1.1 These components must be inside the Primary Structure (F.1.10): +a. Any part of the Fuel System that is below the Upper Side Impact Structure +b. Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper +Side Impact Structure IC.1.2 +F.9.1.2 In side view, any portion of the Fuel System must not project below the lower surface of the +chassis + + +Formula SAE® Rules 2025 © 2024 SAE International Page 49 of 143 +Version 1.0 31 Aug 2024 +F.9.2 Protection +All Fuel Tanks must be shielded from side or rear impact +F.10 ACCUMULATOR CONTAINER (EV ONLY) +F.10.1 General Requirements +F.10.1.1 All Accumulator Containers must be: +a. Designed to withstand forces from deceleration in all directions +b. Made from a Nonflammable Material ( F.1.18 ) +F.10.1.2 Design of the Accumulator Container must be documented in the SES. +Documentation includes materials used, drawings/images, fastener locations, cell/segment +weight and cell/segment position. +F.10.1.3 The Accumulator Containers and mounting systems are subject to approval during SES review +and Technical Inspection +F.10.1.4 If the Accumulator Container is not constructed from steel or aluminum, the material +properties should be established at a temperature of 60°C +F.10.1.5 If adhesives are used for credited bonding, the bond properties should be established for a +temperature of 60°C +F.10.2 Structure +F.10.2.1 The Floor or Bottom must be made from one of the three: +a. Steel 1.25 mm minimum thickness +b. Aluminum 3.2 mm minimum thickness +c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) +F.10.2.2 Walls, Covers and Lids must be made from one of the three: +a. Steel 0.9 mm minimum thickness +b. Aluminum 2.3 mm minimum thickness +c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) +F.10.2.3 Internal Vertical Walls: +a. Must surround and separate each Accumulator Segment EV.5.1.2 +b. Must have minimum height of the full height of the Accumulator Segments +The Internal Walls should extend to the lid above any Segment +c. Must surround no more than 12 kg on each side +The intent is to have each Segment fully enclosed in its own six sided box +F.10.2.4 If segments are arranged vertically above other segments, each layer of segments must have a +load path to the Chassis attachments that does not pass through another layer of segments +F.10.2.5 Floors and all Wall sections must be joined on each side +The accepted methods of joining walls to walls and walls to floor are: +a. Welding +• Welds may be continuous or interrupted. +• If interrupted, the weld/space ratio must be 1:1 or higher + + +Formula SAE® Rules 2025 © 2024 SAE International Page 50 of 143 +Version 1.0 31 Aug 2024 +• All weld lengths must be more than 25 mm +b. Fasteners +Combined strength of the fasteners must be Equivalent to the strength of the welded +joint ( F.10.2.5.a above ) +c. Bonding +• Bonding must meet F.5.5 +• Strength of the bonded joint must be Equivalent to the strength of the welded joint +( F.10.2.5.a above ) +• Bonds must run the entire length of the joint +Folding or bending plate material to create flanges or to eliminate joints between walls is +recommended. +F.10.2.6 Covers and Lids must be mechanically attached and include Positive Locking Mechanisms +F.10.3 Cells and Segments +F.10.3.1 The structure of the Segments (without the structure of the Accumulator Container and +without the structure of the cells) must prevent cells from being crushed in any direction +under the following accelerations: +a. 40 g in the longitudinal direction (forward/aft) +b. 40 g in the lateral direction (left/right) +c. 20 g in the vertical direction (up/down) +F.10.3.2 Segments must be held by one of the two: +a. Mechanical Cover and Lid attachments must show equivalence to the strength of a +welded joint F.10.2.5.a +b. Mechanical Segment attachments to the container must show they can support the +acceleration loads F.10.3.1 above in the direction of removal +F.10.3.3 Calculations and/or tests proving these requirements are met must be included in the SES +F.10.4 Holes and Openings +F.10.4.1 The Accumulator Container(s) exterior or interior walls may contain holes or openings, see +EV.4.3.4 +F.10.4.2 Any Holes and Openings must be the minimum area necessary +F.10.4.3 Exterior and interior walls must cover a minimum of 75% of each face of the battery segments +F.10.4.4 Holes and Openings for airflow: +a. Must be round. Slots are prohibited +b. Should be maximum 10 mm diameter +c. Must not have line of sight to the driver, with the Firewall installed or removed +F.10.5 Attachment +F.10.5.1 Attachment of the Accumulator Container must be documented in the SES +F.10.5.2 Accumulator Containers must: +a. Attach to the Major Structure of the chassis + + +Formula SAE® Rules 2025 © 2024 SAE International Page 51 of 143 +Version 1.0 31 Aug 2024 +A maximum of two attachment points may be on a chassis tube between two +triangulated nodes. +b. Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing +F.10.5.3 Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2 +F.10.5.4 Each fastened attachment point to a composite Accumulator Container requires backing +plates that are one of the two: +a. Steel with a thickness of 2 mm minimum +b. Alternate materials Equivalent to 2 mm thickness steel +F.10.5.5 Teams must justify the Accumulator Container attachment using one of the two methods: +• Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 +• Load Based Analysis per F.10.5.7 and F.10.5.8 +F.10.5.6 Accumulator Attachment – Corner Attachments +a. Eight or more attachments are required for any configuration. +• One attachment for each corner of a rectangular structure of multiple Accumulator +Segments +• More than the minimum number of fasteners may be required for non rectangular +arrangements +Examples: If not filled in with additional structure, an extruded L shape would require +attachments at 10 convex corners (the corners at the inside of the L are not convex); +an extruded hexagon would require 12 attachments +b. The mechanical connections at each corner must be 50 mm or less from the corner of +the Segment +c. Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass +of the container accelerating at 40 g +F.10.5.7 Accumulator Attachment – Load Based +a. The minimum number of attachment points depends on the total mass of the container: + Accumulator Weight Minimum Attachment Points + < 20 kg 4 + 20 – 30 kg 6 + 30 – 40 kg 8 + > 40 kg 10 +b. Each attachment point, including any brackets, backing plates and inserts, must be able +to withstand 15 kN minimum in any direction +F.10.5.8 Accumulator Attachment – All Types +a. Each fastener must withstand the Test Load in pure shear, using the minor diameter if +any threads are in shear +b. Each Accumulator bracket, chassis bracket, or monocoque attachment point must +withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if +welded, and pure bond shear and pure bond tensile if bonded. +c. Monocoque attachment points must meet F.7.8.8 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 52 of 143 +Version 1.0 31 Aug 2024 +d. Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment +points +F.11 TRACTIVE SYSTEM (EV ONLY) +Tractive System Location and Protection are subject to approval during SES review and +Technical Inspection. +F.11.1 Location +F.11.1.1 All Accumulator Containers must lie inside the Primary Structure (F.1.10). +F.11.1.2 Motors mounted to a suspension upright and their connections must meet EV.4.1.3 +F.11.1.3 Tractive System (EV.1.1) components including Motors, cables and wiring other than those in +F.11.1.2 above must be contained inside one or two of: +• The Rollover Protection Envelope F.1.13 +• Structure meeting F.5.16 Component Protection +F.11.2 Side Impact Protection +F.11.2.1 All Accumulator Containers must be protected from side impact by structure Equivalent to +Side Impact Structure (F.6.4, F.7.5) +F.11.2.2 The Accumulator Container must not be part of the Equivalent structure. +F.11.2.3 Accumulator Container side impact protection must go to a minimum height that is the lower +of the two: +• The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 +• The top of the Accumulator Container at that point +F.11.2.4 Tractive System components other than Accumulator Containers in a position below 350 mm +from the ground must be protected from side impact by structure that meets F.5.16 +Component Protection +F.11.3 Rear Impact Protection +F.11.3.1 All Tractive System components must be protected from rear impact by a Rear Bulkhead +a. When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure +must be Equivalent to Side Impact Structure (F.6.4, F.7.5) +b. When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the +structure must meet F.5.16 Component Protection +c. The Accumulator Container must not be part of the Equivalent structure +F.11.3.2 The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side +Impact Structure F.6.4.4 / F.7.5.1 +F.11.3.3 The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead +F.11.3.4 The Rear Bulkhead Support must have: +a. A structural and triangulated load path from the top of the Rear Impact Protection to the +Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop +b. A structural and triangulated load path from the bottom of the Rear Impact Protection to +the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop + + +Formula SAE® Rules 2025 © 2024 SAE International Page 53 of 143 +Version 1.0 31 Aug 2024 +F.11.3.5 In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal +structure or X brace that meets F.11.3.1 above +a. Differential mounts, two vertical tubes with similar spacing, a metal plate, or an +Equivalent composite panel may replace a diagonal +If used, the mounts, plate, or panel must: +• Be aft of the upper and lower Rear Bulkhead structures +• Overlap at least 25 mm vertically at the top and the bottom +b. A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. +If used, the plate must: +• Fully overlap the Rear Bulkhead Support F.11.3.3 above +• Attach by one of the two, as determined by the SES: +- Fully laminated to the Rear Bulkhead or Rear Bulkhead Support +- Attachment strength greater than 120 kN +F.11.4 Clearance and Non Crushable Items +F.11.4.1 Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself +Accumulator mounts do not require clearance +F.11.4.2 The Accumulator Container should have a minimum 25 mm total clearance to each of the +front, side, and rear impact structures +The clearance may be put together on either side of any Non Crushable items around the +accumulator +F.11.4.3 Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through +the Rear Bulkhead + + +Formula SAE® Rules 2025 © 2024 SAE International Page 54 of 143 +Version 1.0 31 Aug 2024 +T - TECHNICAL ASPECTS +T.1 COCKPIT +T.1.1 Cockpit Opening +T.1.1.1 The template shown below must pass through the cockpit opening + +T.1.1.2 The template will be held horizontally, parallel to the ground, and inserted vertically from a +height above any Primary Structure or bodywork that is between the Front Hoop and the +Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 ) +a. Has passed 25 mm below the lowest point of the top of the Side Impact Structure +b. Is less than or equal to 320 mm above the lowest point inside the cockpit +T.1.1.3 Fore and aft translation of the template is permitted during insertion. +T.1.1.4 During this test: +a. The steering wheel, steering column, seat and all padding may be removed +b. The shifter, shift mechanism, or clutch mechanism must not be removed unless it is +integral with the steering wheel and is removed with the steering wheel +c. The firewall must not be moved or removed +d. Cables, wires, hoses, tubes, etc. must not block movement of the template +During inspection, the steering column, for practical purposes, will not be removed. The +template may be maneuvered around the steering column, but not any fixed supports. +For ease of use, the template may contain a slot at the front center that the steering column +may pass through. + + + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 55 of 143 +Version 1.0 31 Aug 2024 +T.1.2 Internal Cross Section +T.1.2.1 Requirement: +a. The cockpit must have a free internal cross section +b. The template shown below must pass through the cockpit + +Template maximum thickness: 7 mm +T.1.2.2 Conduct of the test. The template: +a. Will be held vertically and inserted into the cockpit opening rearward of the rearmost +portion of the steering column. +b. Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the +face of the rearmost pedal when in the inoperative position +c. May be moved vertically inside the cockpit +T.1.2.3 During this test: +a. If the pedals are adjustable, they must be in their most forward position. +b. The steering wheel may be removed +c. Padding may be removed if it can be easily removed without the use of tools with the +driver in the seat +d. The seat and any seat insert(s) that may be used must stay in the cockpit +e. Cables, wires, hoses, tubes, etc. must not block movement of the template +f. The steering column and associated components may pass through the 50 mm wide +center band of the template. +For ease of use, the template may contain a full or partial slot in the shaded area shown on the +figure +T.1.3 Driver Protection +T.1.3.1 The driver’s feet and legs must be completely contained inside the Major Structure of the +Chassis. + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 56 of 143 +Version 1.0 31 Aug 2024 +T.1.3.2 While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s +feet or legs must not extend above or outside of the Major Structure of the Chassis. +T.1.3.3 All moving suspension and steering components and other sharp edges inside the cockpit +between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered +by a shield made of a solid material. +Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti- +roll/sway bars, steering racks and steering column CV joints. +T.1.3.4 Covers over suspension and steering components must be removable to allow inspection of +the mounting points +T.1.4 Vehicle Controls +T.1.4.1 Accelerator Pedal +a. An Accelerator Pedal must control the Powertrain output +b. Pedal Travel is the percent of travel from a fully released position to a fully applied +position. 0% is fully released and 100% is fully applied. +c. The Accelerator Pedal must: +• Return to 0% Pedal Travel when not pushed +• Have a positive stop to prevent any cable, actuation system or sensor from damage +or overstress +T.1.4.2 Any mechanism in the throttle system that could become jammed must be covered. +This is to prevent debris or interference and includes but is not limited to a gear mechanism +T.1.4.3 All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) +must be operated from inside the cockpit without any part of the driver, including hands, arms +or elbows, being outside of: +a. The Side Impact Structure defined in F.6.4 / F.7.5 +b. Two longitudinal vertical planes parallel to the centerline of the chassis touching the +uppermost member of the Side Impact Structure +T.1.4.4 All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational +position +T.1.5 Driver’s Seat +T.1.5.1 The Driver’s Seat must be protected by one of the two: +a. In side view, the lowest point of any Driver’s Seat must be no lower than the upper +surface of the lowest structural tube or equivalent +b. A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing +(F.3.2.1.e), passing underneath the lowest point of the Driver Seat. +T.1.6 Thermal Protection +T.1.6.1 When seated in the normal driving position, sufficient heat insulation must be provided to +make sure that the driver will not contact any metal or other materials which may become +heated to a surface temperature above 60°C. +T.1.6.2 Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 57 of 143 +Version 1.0 31 Aug 2024 +T.1.6.3 The design must address all three types of heat transfer between the heat source (examples +include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a +place that the driver could contact (including seat or floor): +a. Conduction Isolation by one of the two: +• No direct contact between the heat source and the panel +• A heat resistant, conduction isolation material with a minimum thickness of 8 mm +between the heat source and the panel +b. Convection Isolation by a minimum air gap of 25 mm between the heat source and the +panel +c. Radiation Isolation by one of the two: +• A solid metal heat shield with a minimum thickness of 0.4 mm +• Reflective foil or tape when combined with conduction insulation +T.1.7 Floor Closeout +T.1.7.1 All vehicles must have a Floor Closeout to prevent track debris from entering +T.1.7.2 The Floor Closeout must extend from the foot area to the firewall +T.1.7.3 The panel(s) must be made of a solid, non brittle material +T.1.7.4 If multiple panels are used, gaps between panels must not exceed 3 mm +T.1.8 Firewall +T.1.8.1 A Firewall(s) must separate the driver compartment and any portion of the Driver Harness +from: +a. All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium +batteries +b. (EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 +and cable to those Motors where mounted at the wheels or on the front control arms +T.1.8.2 The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where +any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest +driver must not be in direct line of sight with any part given in T.1.8.1 above +T.1.8.3 Any Firewall must be: +a. A non permeable surface made from a rigid, Nonflammable Material +b. Mounted tightly +T.1.8.4 (EV only) The Firewall or the part of the Firewall on the Tractive System side must be: +a. Made of aluminum. The Firewall layer itself must not be aluminum tape. +b. Grounded, refer to EV.6.7 Grounding +T.1.8.5 (EV only) The Accumulator Container must not be part of the Firewall +T.1.8.6 Sealing +a. Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, +edges, any pass throughs and Floor Closeout) +b. Firewalls that have multiple panels must overlap and be sealed at the joints +c. Sealing between Firewalls must not be a stressed part of the Firewall +d. Grommets must be used to seal any pass through for wiring, cables, etc + + +Formula SAE® Rules 2025 © 2024 SAE International Page 58 of 143 +Version 1.0 31 Aug 2024 +e. Any seals or adhesives used with the Firewall must be rated for the application +environment +T.2 DRIVER ACCOMMODATION +T.2.1 Harness Definitions +a. 5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine +Belt. +b. 6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or Anti- +Submarine Belts. +c. 7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or Anti- +Submarine Belts and a negative g or Z Belt. +d. Upright Driving Position - with a seat back angled at 30° or less from the vertical as +measured along the line joining the two 200 mm circles of the template of the 95th +percentile male as defined in F.5.6.5 and positioned per F.5.6.6 +e. Reclined Driving Position - with a seat back angled at more than 30° from the vertical as +measured along the line joining the two 200 mm circles of the template of the 95th +percentile male as defined in F.5.6.5 and positioned per F.5.6.6 +f. Chest to Groin Line - the straight line that in side view follows the line of the Shoulder +Belts from the chest to the release buckle. +T.2.2 Harness Specification +T.2.2.1 The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three: +a. SFI Specification 16.1 +b. SFI Specification 16.5 +c. FIA specification 8853/2016 +T.2.2.2 The belts must have the original manufacturers labels showing the specification and +expiration date +T.2.2.3 The Harness must be in or before the year of expiration shown on the labels. Harnesses +expiring on or before Dec 31 of the calendar year of the competition are permitted. +T.2.2.4 The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or +other issues +T.2.2.5 All Harness hardware must be installed and threaded in accordance with manufacturer’s +instructions +T.2.2.6 All Harness hardware must be used as received from the manufacturer. No modification +(including drilling, cutting, grinding, etc) is permitted. +T.2.3 Harness Requirements +T.2.3.1 Vehicles with a Reclined Driving Position must have: +a. A 6 Point Harness or a 7 Point Harness +b. Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of Anti- +Submarine Belts installed. +T.2.3.2 All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). +Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 59 of 143 +Version 1.0 31 Aug 2024 +T.2.3.3 The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are +permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed. +T.2.4 Belt, Strap and Harness Installation - General +T.2.4.1 The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the +Primary Structure. +T.2.4.2 Any guide or support for the belts must be material meeting F.3.2.1.j +T.2.4.3 Each tab, bracket or eye to which any part of the Harness is attached must: +a. Support a minimum load in pullout and tearout before failure of: +• If one belt is attached to the tab, bracket or eye 15 kN +• If two belts are attached to the tab, bracket or eye 30 kN +b. Be 1.6 mm minimum thickness +c. Not cause abrasion to the belt webbing +Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest +radial cross section. +T.2.4.4 Attachment of tabs or brackets must meet these: +a. Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum +diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to +the chassis +b. Welded tabs or eyes must have a base at least as large as the outer diameter of the tab +or eye +c. Where a single shear tab is welded to the chassis, the tab to tube welding must be on the +two sides of the base of the tab +Double shear attachments are preferred. Tabs and brackets for double shear mounts should +be welded on the two sides. +T.2.4.5 Eyebolts or weld eyes must: +a. Be one piece. No eyenuts or swivels. +b. Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum +Threads should be 7/16-20 or greater +c. Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other +harness brackets (lap and anti sub) or other vehicle parts +d. Have a positive locking feature on threads or by the belt itself +T.2.4.6 For the belt itself to be considered a positive locking feature, the eyebolt must: +a. Have minimum 10 threads engaged in a threaded insert +b. Be shimmed to fully tight +c. Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt +creating a torque on the eyebolt. +T.2.4.7 Harness installation must meet T.1.8.1 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 60 of 143 +Version 1.0 31 Aug 2024 +T.2.5 Lap Belt Mounting +T.2.5.1 The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the +hip bones) +T.2.5.2 Installation of the Lap Belts must go in a straight line from the mounting point until they reach +the driver's body without touching any hole in the seat or any other intermediate structure +T.2.5.3 The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the +seat +T.2.5.4 With an Upright Driving Position: +a. The Lap Belt Side View Angle must be between 45° and 65° to the horizontal. +b. The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward +of the seat back to seat bottom junction. +T.2.5.5 With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to +the horizontal. + +T.2.5.6 The Lap Belts must attach by one of the two: +a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 +b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame +T.2.5.7 In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an +eye bolt attachment +T.2.5.8 Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a +Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• The bolt diameter specified by the manufacturer +• 10 mm or 3/8” +T.2.6 Shoulder Harness +T.2.6.1 From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder +Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal. +T.2.6.2 The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center +T.2.6.3 The Shoulder Belts must attach by one of the four: +a. Wrap around the Shoulder Harness Mounting bar +b. Bolt through a welded tube insert or tested monocoque attachment F.7.9 +c. Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye ( +T.2.4.3 ) loaded in tension on the Shoulder Harness Mounting bar +d. Wrap around physically tested hardware attached to a monocoque + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 61 of 143 +Version 1.0 31 Aug 2024 +T.2.6.4 Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is +a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• The bolt diameter specified by the manufacturer +• 10 mm or 3/8” +T.2.7 Anti-Submarine Belt Mounting +T.2.7.1 The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in +line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt +Side View Angle no more than 20° + +T.2.7.2 The Anti-Submarine Belts of a 6 point harness must mount in one of the two: +a. With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side +View Angle up to 20° rearwards. +The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart. + +b. With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the +Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming +up around the groin to the release buckle. + + + + + + + + + + + + + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 62 of 143 +Version 1.0 31 Aug 2024 +T.2.7.3 Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt +Mounting Point(s) without touching any hole in the seat or any other intermediate structure +until they reach: +a. The release buckle for the 5 Point Harness mounting per T.2.7.1 +b. The first point where the belt touches the driver’s body for the 6 Point Harness mounting +per T.2.7.2 +T.2.7.4 The Anti Submarine Belts must attach by one of the three: +a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 +b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame +c. Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. +The belt must not be able to touch the ground. +T.2.7.5 Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate +bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• The bolt diameter specified by the manufacturer +• 8 mm or 5/16” +T.2.8 Head Restraint +T.2.8.1 A Head Restraint must be provided to limit the rearward motion of the driver’s head. +T.2.8.2 The Head Restraint must be vertical or near vertical in side view. +T.2.8.3 All material and structure of the Head Restraint must be inside one or the two of: +a. Rollover Protection Envelope F.1.13 +b. Head Restraint Protection (if used) F.5.10 +T.2.8.4 The Head Restraint, attachment and mounting must be strong enough to withstand a +minimum force of: +a. 900 N applied in a rearward direction +b. 300 N applied in a lateral or vertical direction +T.2.8.5 For all drivers, the Head Restraint must be located and adjusted where: +a. The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, +with the driver in their normal driving position. +b. The contact point of the back of the driver’s helmet on the Head Restraint is no less than +50 mm from any edge of the Head Restraint. +Approximately 100 mm of longitudinal adjustment should accommodate range of specified +drivers. Several Head Restraints with different thicknesses may be used +T.2.8.6 The Head Restraint padding must: +a. Be an energy absorbing material that is one of the two: +• Meets SFI Spec 45.2 +• CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17 +b. Have a minimum thickness of 38 mm +c. Have a minimum width of 15 cm + + +Formula SAE® Rules 2025 © 2024 SAE International Page 63 of 143 +Version 1.0 31 Aug 2024 +d. Meet one of the two: +• minimum area of 235 cm +2 + AND minimum total height adjustment of 17.5 cm +• minimum height of 28 cm +e. Be covered with a thin, flexible material that contains a ~20 mm diameter inspection +hole in a surface other than the front surface +T.2.9 Roll Bar Padding +Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s +helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec +45.1 or FIA 8857-2001. +T.3 BRAKES +T.3.1 Brake System +T.3.1.1 The vehicle must have a Brake System +T.3.1.2 The Brake System must: +a. Act on all four wheels +b. Be operated by a single control +c. Be capable of locking all four wheels +T.3.1.3 The Brake System must have two independent hydraulic circuits +A leak or failure at any point in the Brake System must maintain effective brake power on +minimum two wheels +T.3.1.4 Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM +style reservoir +T.3.1.5 A single brake acting on a limited slip differential may be used +T.3.1.6 “Brake by Wire” systems are prohibited +T.3.1.7 Unarmored plastic brake lines are prohibited +T.3.1.8 The Brake System must be protected with scatter shields from failure of the drive train (see +T.5.2) or from minor collisions. +T.3.1.9 In side view any portion of the Brake System that is mounted on the sprung part of the vehicle +must not project below the lower surface of the chassis +T.3.1.10 Fasteners in the Brake System are Critical Fasteners, see T.8.2 +T.3.2 Brake Pedal, Pedal Box and Mounting +T.3.2.1 The Brake Pedal must be one of: +• Fabricated from steel or aluminum +• Machined from steel, aluminum or titanium +T.3.2.2 The Brake Pedal and associated components design must withstand a minimum force of 2000 +N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment +This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the +pedal with the maximum force that can be exerted by any official when seated normally +T.3.2.3 Failure of non-loadbearing components in the Brake System or pedal box must not interfere +with Brake Pedal operation or Brake System function + + +Formula SAE® Rules 2025 © 2024 SAE International Page 64 of 143 +Version 1.0 31 Aug 2024 +T.3.2.4 (EV only) Additional requirements for Electric Vehicles: +a. The first 90% of the Brake Pedal travel may be used to regenerate energy without +actuating the hydraulic brake system +b. The remaining Brake Pedal travel must directly operate the hydraulic brake system. +Brake energy regeneration may stay active +T.3.3 Brake Over Travel Switch - BOTS +T.3.3.1 The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the +normal range will operate the switch +T.3.3.2 The BOTS must: +a. Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or +flip type) +b. Hold if operated to the OFF position +T.3.3.3 Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 +T.3.3.4 The driver must not be able to reset the BOTS +T.3.3.5 The BOTS must be implemented with analog components, and not using programmable logic +controllers, engine control units, or similar functioning digital controllers. +T.3.4 Brake Light +T.3.4.1 The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight. +T.3.4.2 The Brake Light must be: +a. Red in color on a Black background +b. Rectangular, triangular or near round shape with a minimum shining surface of 15 cm +2 + +c. Mounted between the wheel centerline and driver’s shoulder level vertically and +approximately on vehicle centerline laterally. +T.3.4.3 When LED lights are used without a diffuser, they must not be more than 20 mm apart. +T.3.4.4 If a single line of LEDs is used, the minimum length is 150 mm. +T.4 ELECTRONIC THROTTLE COMPONENTS +T.4.1 Applicability +This section T.4 applies only for: +• IC vehicles using Electronic Throttle Control (ETC) IC.4 +• EV vehicles +T.4.2 Accelerator Pedal Position Sensor - APPS +T.4.2.1 The Accelerator Pedal must operate the APPS T.1.4.1 +a. Two springs must be used to return the foot pedal to 0% Pedal Travel +b. Each spring must be capable of returning the pedal to 0% Pedal Travel with the other +disconnected. The springs in the APPS are not acceptable pedal return springs. +T.4.2.2 Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS +with two completely separate sensors in a single housing is acceptable. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 65 of 143 +Version 1.0 31 Aug 2024 +T.4.2.3 The APPS sensors must have different transfer functions which meet one of the two: +• Each sensor has different gradients and/or offsets to the other(s). The circuit must have +a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel +• An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor +configurations require prior approval. +The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel +T.4.2.4 Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or +other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel +require justification in the ETC Systems Form and may not be approved +T.4.2.5 If an Implausibility occurs between the values of the APPSs and persists for more than 100 +msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped +completely. +(EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping +the power to the Motor(s) is sufficient. +T.4.2.6 If three sensors are used, then in the case of an APPS failure, any two sensors that agree +within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target +and the 3rd APPS may be ignored. +T.4.2.7 Each APPS must be able to be checked during Technical Inspection by having one of the two: +• A separate detachable connector that enables a check of functions by unplugging it +• An inline switchable breakout box available that allows disconnection of each APPS +signal. +T.4.2.8 The APPS signals must be sent directly to a controller using an analogue signal or via a digital +data transmission bus such as CAN or FlexRay. +T.4.2.9 Any failure of the APPS or APPS wiring must be detectable by the controller and must be +treated like an Implausibility, see T.4.2.4 above +T.4.2.10 When an analogue signal is used, the APPS will be considered to have failed when they +achieve an open circuit or short circuit condition which generates a signal outside of the +normal operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. +T.4.2.11 When any kind of digital data transmission is used to transmit the APPS signal, +a. The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. +b. The failures to be considered must include but are not limited to the failure of the APPS, +APPS signals being out of range, corruption of the message and loss of messages and the +associated time outs. +T.4.2.12 The current rules are written to only apply to the APPS (pedal), but the integrity of the torque +command signal is important in all stages. +T.4.3 Brake System Encoder - BSE +T.4.3.1 The vehicle must have a sensor or switch to measure brake pedal position or brake system +pressure + + +Formula SAE® Rules 2025 © 2024 SAE International Page 66 of 143 +Version 1.0 31 Aug 2024 +T.4.3.2 The BSE must be able to be checked during Technical Inspection by having one of: +• A separate detachable connector(s) for any BSE signal(s) to the main ECU without +affecting any other connections +• An inline switchable breakout box available that allows disconnection of each BSE +signal(s) to the main ECU without affecting any other connections +T.4.3.3 The BSE or switch signals must be sent directly to a controller using an analogue signal or via a +digital data transmission bus such as CAN or FlexRay +Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by +the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) +Motor(s) must be immediately stopped completely. +(EV only) It is not necessary to completely deactivate the Tractive System, the motor +controller(s) stopping power to the motor(s) is sufficient. +T.4.3.4 When an analogue signal is used, the BSE sensors will be considered to have failed when they +achieve an open circuit or short circuit condition which generates a signal outside of the +normal operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. +T.4.3.5 When any kind of digital data transmission is used to transmit the BSE signal: +a. The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. +b. The failures modes must include but are not limited to the failure of the sensor, sensor +signals being out of range, corruption of the message and loss of messages and the +associated time outs. +c. In all cases a sensor failure must immediately shutdown power to the motor(s). +T.5 POWERTRAIN +T.5.1 Transmission and Drive +Any transmission and drivetrain may be used. +T.5.2 Drivetrain Shields and Guards +T.5.2.1 Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions +(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and +electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case +of radial failure +T.5.2.2 The final drivetrain shield must: +a. Be made with solid material (not perforated) +b. Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt +or pulley +c. Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 67 of 143 +Version 1.0 31 Aug 2024 +d. Cover the bottom of the chain or belt or rotating component when fuel, brake lines +T.3.1.8, control, pressurized, electrical components are located below +T.5.2.3 Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8 +T.5.2.4 Frame Members or existing components that exceed the scatter shield material requirements +may be used as part of the shield. +T.5.2.5 Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm) +T.5.2.6 If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. +T.5.2.7 Chain Drive - Scatter shields for chains must: +a. Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed) +b. Have a minimum width equal to three times the width of the chain +c. Be centered on the center line of the chain +d. Stay aligned with the chain under all conditions +T.5.2.8 Non-metallic Belt Drive - Scatter shields for belts must: +a. Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6 +b. Have a minimum width that is equal to 1.7 times the width of the belt. +c. Be centered on the center line of the belt +d. Stay aligned with the belt under all conditions +T.5.2.9 Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or +1/4” minimum diameter Critical Fasteners, see T.8.2 +T.5.2.10 Finger Guards +a. Must cover any drivetrain parts that spin while the vehicle is stationary with the engine +running. +b. Must be made of material sufficient to resist finger forces. +c. Mesh or perforated material may be used but must prevent the passage of a 12 mm +diameter object through the guard. +T.5.3 Motor Protection (EV Only) +T.5.3.1 The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. +The motor casing may be the original motor casing, a team built motor casing or the original +casing with additional material added to achieve the minimum required thickness. +• Minimum thickness for aluminum alloy 6061-T6: 3.0 mm +If lower grade aluminum alloy is used, then the material must be thicker to provide an +equivalent strength. +• Minimum thickness for steel: 2.0 mm +T.5.3.2 A Scatter Shield must be included around the Motor(s) when one or the two: +• The motor casing rotates around the stator +• The motor case is perforated +T.5.3.3 The Motor Scatter Shield must be: +• Made from aluminum alloy 6061-T6 or steel +• Minimum thickness: 1.0 mm + + +Formula SAE® Rules 2025 © 2024 SAE International Page 68 of 143 +Version 1.0 31 Aug 2024 +T.5.4 Coolant Fluid +T.5.4.1 Water cooled engines must use only plain water with no additives of any kind +T.5.4.2 Liquid coolant for electric motors, Accumulators or HV electronics must be one of: +• plain water with no additives +• oil +T.5.4.3 (EV only) Liquid coolant must not directly touch the cells in the Accumulator +T.5.5 System Sealing +T.5.5.1 Any cooling or lubrication system must be sealed to prevent leakage +T.5.5.2 The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type. +T.5.5.3 Flammable liquid and vapors or other leaks must not collect or contact the driver +T.5.5.4 Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at +the locations: +a. The lowest point of the chassis +b. Rearward of the driver position, forward of a fuel tank or other liquid source +c. If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is +necessary +T.5.5.5 Absorbent material and open collection devices (regardless of material) are prohibited in +compartments containing engine, drivetrain, exhaust and fuel systems below the highest +point on the exhaust system. +T.5.6 Catch Cans +T.5.6.1 The vehicle must have separate containers (catch cans) to retain fluids from any vents from +the powertrain systems. +T.5.6.2 Catch cans must be: +a. Capable of containing boiling water without deformation +b. Located rearwards of the Firewall below the driver’s shoulder level +c. Positively retained, using no tie wraps or tape +T.5.6.3 Catch cans for the engine coolant system and engine lubrication system must have a minimum +capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher +T.5.6.4 Catch cans for any vent on other systems containing liquid lubricant or coolant, including a +differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid +being contained or 0.5 liter, whichever is higher +T.5.6.5 Any catch can on the cooling system must vent through a hose with a minimum internal +diameter of 3 mm down to the bottom levels of the Chassis. +T.6 PRESSURIZED SYSTEMS +T.6.1 Compressed Gas Cylinders and Lines +Any system on the vehicle that uses a compressed gas as an actuating medium must meet: +T.6.1.1 Working Gas - The working gas must be non flammable + + +Formula SAE® Rules 2025 © 2024 SAE International Page 69 of 143 +Version 1.0 31 Aug 2024 +T.6.1.2 Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed +and built for the pressure being used, certified by an accredited testing laboratory in the +country of its origin, and labeled or stamped appropriately. +T.6.1.3 Pressure Regulation - The pressure regulator must be mounted directly onto the gas +cylinder/tank +T.6.1.4 Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible +operating pressure of the system. +T.6.1.5 Insulation - The gas cylinder/tank must be insulated from any heat sources +T.6.1.6 Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system +must meet one of the two: +• Made from metal +• Meet the thermal protection requirements of T.1.6.3 +T.6.1.7 Cylinder Location - The gas cylinder/tank and the pressure regulator must be: +a. Securely mounted inside the Chassis +b. Located outside of the Cockpit +c. In a position below the height of the Shoulder Belt Mount T.2.6 +d. Aligned so the axis of the gas cylinder/tank does not point at the driver +T.6.1.8 Protection – The gas cylinder/tank and lines must be protected from rollover, collision from +any direction, or damage resulting from the failure of rotating equipment +T.6.1.9 The driver must be protected from failure of the cylinder/tank and regulator +T.6.2 High Pressure Hydraulic Pumps and Lines +This section T.6.2 does not apply to Brake lines or hydraulic clutch lines +T.6.2.1 The driver and anyone standing outside the vehicle must be shielded from any hydraulic +pumps and lines with line pressures of 2100 kPa or higher. +T.6.2.2 The shields must be steel or aluminum with a minimum thickness of 1 mm. +T.7 BODYWORK AND AERODYNAMIC DEVICES +T.7.1 Aerodynamic Devices +T.7.1.1 Aerodynamic Device +A part on the vehicle which guides airflow for purposes including generation of downforce +and/or change of drag. +Examples include but are not limited to: wings, undertray, splitter, endplates, vanes +T.7.1.2 No power device may be used to move or remove air from under the vehicle. Power ground +effects are strictly prohibited. +T.7.1.3 All Aerodynamic Devices must meet: +a. The mounting system provides sufficient rigidity in the static condition +b. The Aerodynamic Devices do not oscillate or move excessively when the vehicle is +moving. Refer to IN.8.2 +T.7.1.4 All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) +must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 70 of 143 +Version 1.0 31 Aug 2024 +This may be the radius of the edges themselves, or additional permanently attached pieces +designed to meet this requirement. +T.7.1.5 Other edges that a person may touch must not be sharp +T.7.2 Bodywork +T.7.2.1 Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device +T.7.2.2 Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic +Device if is designed to, or may possibly, produce force due to aerodynamic effects +T.7.2.3 Bodywork must not contain openings into the cockpit from the front of the vehicle back to the +Main Hoop or Firewall. The cockpit opening and minimal openings around the front +suspension components are allowed. +T.7.2.4 All forward facing edges on the Bodywork that could contact people, including the nose, must +have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more +relative to the forward direction, along the top, sides and bottom of all affected edges. +T.7.3 Measurement +T.7.3.1 All Aerodynamic Device limitations are measured: +a. With the wheels pointing in the straight ahead position +b. Without a driver in the vehicle +The intent is to standardize the measurement, see GR.6.4.1 +T.7.3.2 Head Restraint Plane +A transverse vertical plane through the rearmost portion of the front face of the driver head +restraint support, excluding any padding, set (if adjustable) in its fully rearward position +T.7.3.3 Rear Aerodynamic Zone +The volume that is: +• Rearward of the Head Restraint Plane +• Inboard of two vertical planes parallel to the centerline of the chassis touching the inside +of the rear tires at the height of the hub centerline +T.7.4 Location +Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1 +T.7.5 Length +In plan view, any part of any Aerodynamic Device must be: +a. No more than 700 mm forward of the fronts of the front tires +b. No more than 250 mm rearward of the rear of the rear tires +T.7.6 Width +In plan view, any part of any Aerodynamic Device must be: +T.7.6.1 When forward of the centerline of the front wheel axles: +Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of +the front tires at the height of the hubs. +T.7.6.2 When between the centerlines of the front and rear wheel axles: + + +Formula SAE® Rules 2025 © 2024 SAE International Page 71 of 143 +Version 1.0 31 Aug 2024 +Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height +of the wheel centers +T.7.6.3 When rearward of the centerline of the rear wheel axles: +In the Rear Aerodynamic Zone +T.7.7 Height +T.7.7.1 Any part of any Aerodynamic Device that is located: +a. In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground +b. Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the +ground +c. Forward of the centerline of the front wheel axles and outboard of two vertical planes +parallel to the centerline of the chassis touching the inside of the front tires at the height +of the hubs must be no higher than 250 mm above the ground +T.7.7.2 Bodywork height is not restricted when the Bodywork is located: +• Between the transverse vertical planes positioned at the front and rear axle centerlines +• Inside two vertical fore and aft planes 400 mm outboard from the centerline on each +side of the vehicle + +T.8 FASTENERS +T.8.1 Critical Fasteners +A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule +T.8.2 Critical Fastener Requirements +T.8.2.1 Any Critical Fastener must meet, at minimum, one of these: +a. SAE Grade 5 +b. Metric Class 8.8 +c. AN/MS Specifications + + + + + + + + + + + + + + + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 72 of 143 +Version 1.0 31 Aug 2024 +d. Equivalent to or better than above, as approved by a Rules Question or at Technical +Inspection +T.8.2.2 All threaded Critical Fasteners must be one of the two: +• Hex head +• Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts) +T.8.2.3 All Critical Fasteners must be secured from unintentional loosening with Positive Locking +Mechanisms see T.8.3 +T.8.2.4 A minimum of two full threads must project from any lock nut. +T.8.2.5 Some Critical Fastener applications have additional requirements that are provided in the +applicable section. +T.8.3 Positive Locking Mechanisms +T.8.3.1 Positive Locking Mechanisms are defined as those which: +a. Technical Inspectors / team members can see that the device/system is in place (visible). +b. Do not rely on the clamping force to apply the locking or anti vibration feature. +Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming +completely loose +T.8.3.2 Examples of acceptable Positive Locking Mechanisms include, but are not limited to: +a. Correctly installed safety wiring +b. Cotter pins +c. Nylon lock nuts (where temperature does not exceed 80°C) +d. Prevailing torque lock nuts +Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT +meet the positive locking requirement +T.8.3.3 If the Positive Locking Mechanism is by prevailing torque lock nuts: +a. Locking fasteners must be in as new condition +b. A supply of replacement fasteners must be presented in Technical Inspection, including +any attachment method +T.8.4 Requirements for All Fasteners +Adjustable tie rod ends must be constrained with a jam nut to prevent loosening. +T.9 ELECTRICAL EQUIPMENT +T.9.1 Definitions +T.9.1.1 High Voltage – HV +Any voltage more than 60 V DC or 25 V AC RMS +T.9.1.2 Low Voltage - LV +Any voltage less than and including 60 V DC or 25 V AC RMS +T.9.1.3 Normally Open +A type of electrical relay or contactor that allows current flow only in the energized state + + +Formula SAE® Rules 2025 © 2024 SAE International Page 73 of 143 +Version 1.0 31 Aug 2024 +T.9.2 Low Voltage Batteries +T.9.2.1 All Low Voltage Batteries and onboard power supplies must be securely mounted inside the +Chassis below the height of the Shoulder Belt Mount T.2.6 +T.9.2.2 All Low Voltage batteries must have Overcurrent Protection that trips at or below the +maximum specified discharge current of the cells +T.9.2.3 The hot (ungrounded) terminal must be insulated. +T.9.2.4 Any wet cell battery located in the driver compartment must be enclosed in a nonconductive +marine type container or equivalent. +T.9.2.5 Batteries or battery packs based on lithium chemistry must meet one of the two: +a. Have a rigid, sturdy casing made from Nonflammable Material +b. A commercially available battery designed as an OEM style replacement +T.9.2.6 All batteries using chemistries other than lead acid must be presented at Technical Inspection +with markings identifying it for comparison to a datasheet or other documentation proving +the pack and supporting electronics meet all rules requirements +T.9.3 Master Switches +Each Master Switch ( IC.9.3 / EV.7.9 ) must meet: +T.9.3.1 Location +a. On the driver’s right hand side of the vehicle +b. In proximity to the Main Hoop +c. At the driver's shoulder height +d. Able to be easily operated from outside the vehicle +T.9.3.2 Characteristics +a. Be of the rotary mechanical type +b. Be rigidly mounted to the vehicle and must not be removed during maintenance +c. Mounted where the rotary axis of the key is near horizontal and across the vehicle +d. The ON position must be in the horizontal position and must be marked accordingly +e. The OFF position must be clearly marked +f. (EV Only) Operated with a red removable key that must only be removable in the +electrically open position +T.9.4 Inertia Switch +T.9.4.1 Inertia Switch Requirement +• (EV) Must have an Inertia Switch +• (IC) Should have an Inertia Switch +T.9.4.2 The Inertia Switch must be: +a. A Sensata Resettable Crash Sensor or equivalent +b. Mechanically and rigidly attached to the vehicle +c. Removable to test functionality + + +Formula SAE® Rules 2025 © 2024 SAE International Page 74 of 143 +Version 1.0 31 Aug 2024 +T.9.4.3 Inertia Switch operation: +a. Must trigger due to a longitudinal impact load which decelerates the vehicle at between +8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the +Sensata device) +b. Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered +c. Must latch until manually reset +d. May be reset by the driver from inside the driver's cell + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 75 of 143 +Version 1.0 31 Aug 2024 +VE - VEHICLE AND DRIVER EQUIPMENT +VE.1 VEHICLE IDENTIFICATION +VE.1.1 Vehicle Number +VE.1.1.1 The assigned vehicle number must appear on the vehicle as follows: +a. Locations: in three places, on the front of the chassis and the left and right sides +b. Height: 150 mm minimum +c. Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive +numbers) +d. Stroke Width and Spacing between numbers: 18 mm minimum +e. Color: White numbers on a black background OR black numbers on a white background +f. Background: round, oval, square or rectangular +g. Spacing: 25 mm minimum between the edge of the numbers and the edge of the +background +h. The numbers must not be obscured by parts of the vehicle +VE.1.1.2 Additional letters or numerals must not show before or after the vehicle number +VE.1.2 School Name +Each vehicle must clearly display the school name. +a. Abbreviations are allowed if unique and generally recognized +b. The name must be in Roman characters minimum 50 mm high on the left and right sides +of the vehicle. +c. The characters must be put on a high contrast background in an easily visible location +d. The school name may also appear in non Roman characters, but the Roman character +version must be uppermost on the sides. +VE.1.3 SAE Logo +The SAE International Logo must be displayed on the front and/or the left and right sides of +the vehicle in a prominent location. +VE.1.4 Inspection Sticker +The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: +• A clear and unobstructed area, minimum 25 cm wide x 20 cm high +• Located on the upper front surface of the nose along the vehicle centerline +VE.1.5 Transponder / RFID Tag +VE.1.5.1 Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the +specified type(s) +VE.1.5.2 Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information +and mounting details +VE.2 VEHICLE EQUIPMENT +VE.2.1 Jacking Point +VE.2.1.1 A Jacking Point must be provided at the rear of the vehicle + + +Formula SAE® Rules 2025 © 2024 SAE International Page 76 of 143 +Version 1.0 31 Aug 2024 +VE.2.1.2 The Jacking Point must be: +a. Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the +FSAE Online website +b. Visible to a person standing 1 m behind the vehicle +c. Color: Orange +d. Oriented laterally and perpendicular to the centerline of the vehicle +e. Made from round, 25 - 30 mm OD aluminum or steel tube +f. Exposed around the lower 180° of its circumference over a minimum length of 280 mm +g. Access from the rear of the tube must be unobstructed for 300 mm or more of its length +h. The height of the tube must allow 75 mm minimum clearance from the bottom of the +tube to the ground +i. When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the +wheels do not touch the ground when they are in full rebound +VE.2.2 Push Bar +Each vehicle must have a removable device which attaches to the rear of the vehicle that: +a. Allows two people, standing erect behind the vehicle, to push the vehicle around the +competition site +b. Is capable of slowing and stopping the forward motion of the vehicle and pulling it +rearwards +VE.2.3 Fire Extinguisher +VE.2.3.1 Each team must have two or more fire extinguishers. +a. One extinguisher must readily be available in the team’s paddock area +b. One extinguisher must accompany the vehicle when moved using the Push Bar +A commercially available on board fire system may be used instead of the fire +extinguisher that accompanies the vehicle +VE.2.3.2 Hand held fire extinguishers must NOT be mounted on or in the vehicle +VE.2.3.3 Each fire extinguisher must meet these: +a. Capacity: 0.9 kg (2 lbs) +b. Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and +Halon extinguishers and systems are prohibited. +c. Equipped with a manufacturer installed pressure/charge gauge. +d. Minimum acceptable ratings: +• USA, Canada & Brazil: 10BC or 1A 10BC +• Europe: 34B or 5A 34B +• Australia: 20BE or 1A 10BE +e. Extinguishers of larger capacity (higher numerical ratings) are acceptable. +VE.2.4 Electrical Equipment (EV Only) +These items must accompany the vehicle at all times: +• Two pairs of High Voltage insulating gloves + + +Formula SAE® Rules 2025 © 2024 SAE International Page 77 of 143 +Version 1.0 31 Aug 2024 +• A multimeter +VE.2.5 Camera Mounts +VE.2.5.1 The mounts for video/photographic cameras must be of a safe and secure design. +VE.2.5.2 All camera installations must be approved at Technical Inspection. +VE.2.5.3 Helmet mounted cameras and helmet camera mounts are prohibited. +VE.2.5.4 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a +minimum of two points on different sides of the camera body. +VE.2.5.5 If a tether is used to restrain the camera, the tether length must be limited to prevent contact +with the driver. +VE.3 DRIVER EQUIPMENT +VE.3.1 General +VE.3.1.1 Any Driver Equipment: +a. Must be in good condition with no tears, rips, open seams, areas of significant wear, +abrasions or stains which might compromise performance. +b. Must fit properly +c. May be inspected at any time +VE.3.1.2 Flame Resistant Material +For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, +Polybenzimidazole (common name PBI) and Proban. +VE.3.1.3 Synthetic Material – Prohibited +Shirts, socks or other undergarments (not to be confused with flame resistant underwear) +made from nylon or any other synthetic material which could melt when exposed to high heat +are prohibited. +VE.3.1.4 Officials may impound any non approved Driver Equipment until the end of the competition. +VE.3.2 Helmet +VE.3.2.1 The driver must wear a helmet which: +a. Is closed face with an integral, immovable chin guard +b. Contains an integrated visor/face shield supplied with the helmet +c. Meets an approved standard +d. Is properly labeled for that standard +VE.3.2.2 Acceptable helmet standards are listed below. Any additional approved standards are shown +on the Technical Inspection Form or the FAQ on the FSAE Online website +a. Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, +SA2025 +b. SFI Specs 31.1/2015, 41.1/2015 +c. FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) + + +Formula SAE® Rules 2025 © 2024 SAE International Page 78 of 143 +Version 1.0 31 Aug 2024 +VE.3.3 Driver Gear +The driver must wear: +VE.3.3.1 Driver Suit +A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers +the body from the neck to the ankles and the wrists. +Each suit must meet one or more of these standards and be labeled as such: +• SFI 3.2A/5 (or higher ex: /10, /15, /20) +• SFI 3.4/5 (or higher ex: /10, /15, /20) +• FIA Standard 1986 +• FIA Standard 8856-2000 +• FIA Standard 8856-2018 +VE.3.3.2 Underclothing +All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under +their approved Driver Suit. +VE.3.3.3 Balaclava +A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame +Resistant Material +VE.3.3.4 Socks +Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit +and the Shoes. +VE.3.3.5 Shoes +Shoes or boots made from Flame Resistant Material that meet an approved standard and +labeled as such: +• SFI Spec 3.3 +• FIA Standard 8856-2000 +• FIA Standard 8856-2018 +VE.3.3.6 Gloves +Gloves made from Flame Resistant Material. +Gloves of all leather construction or fire retardant gloves constructed using leather palms with +no insulating Flame Resistant Material underneath are not acceptable. +VE.3.3.7 Arm Restraints +a. Arm restraints must be worn in a way that the driver can release them and exit the +vehicle unassisted regardless of the vehicle’s position. +b. Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec +3.3 and labeled as such meet this requirement. + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 79 of 143 +Version 1.0 31 Aug 2024 +IC - INTERNAL COMBUSTION ENGINE VEHICLES +IC.1 GENERAL REQUIREMENTS +IC.1.1 Engine Limitations +IC.1.1.1 The engine(s) used to power the vehicle must: +a. Be a piston engine(s) using a four stroke primary heat cycle +b. Have a total combined displacement less than or equal to 710 cc per cycle. +IC.1.1.2 Hybrid powertrains, such as those using electric motors running off stored energy, are +prohibited. +IC.1.1.3 All waste/rejected heat from the primary heat cycle may be used. The method of conversion is +not limited to the four stroke cycle. +IC.1.1.4 The engine may be modified within the restrictions of the rules. +IC.1.2 Air Intake and Fuel System Location +All parts of the engine air system and fuel control, delivery and storage systems (including the +throttle or carburetor, and the complete air intake system, including the air cleaner and any +air boxes) must lie inside the Tire Surface Envelope F.1.14 +IC.2 AIR INTAKE SYSTEM +IC.2.1 General +IC.2.2 Intake System Location +IC.2.2.1 The Intake System must meet IC.1.2 +IC.2.2.2 Any portion of the air intake system that is less than 350 mm above the ground must be +shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable. +IC.2.3 Intake System Mounting +IC.2.3.1 The intake manifold must be securely attached to the engine block or cylinder head with +brackets and mechanical fasteners. +• Hose clamps, plastic ties, or safety wires do not meet this requirement. +• The use of rubber bushings or hose is acceptable for creating and sealing air passages, +but is not a structural attachment. +IC.2.3.2 Threaded fasteners used to secure and/or seal the intake manifold must have a Positive +Locking Mechanism, see T.8.3. +IC.2.3.3 Intake systems with significant mass or cantilever from the cylinder head must be supported +to prevent stress to the intake system. +a. Supports to the engine must be rigid. +b. Supports to the Chassis must incorporate some isolation to allow for engine movement +and chassis flex. +IC.2.4 Intake System Restrictor +IC.2.4.1 All airflow to the engine(s) must pass through a single circular restrictor in the intake system. +IC.2.4.2 The only allowed sequence of components is: +a. For naturally aspirated engines, the sequence must be: throttle body, restrictor, and +engine. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 80 of 143 +Version 1.0 31 Aug 2024 +b. For turbocharged or supercharged engines, the sequence must be: restrictor, +compressor, throttle body, engine. + +IC.2.4.3 The maximum restrictor diameters at any time during the competition are: +a. Gasoline fueled vehicles 20.0 mm +b. E85 fueled vehicles 19.0 mm +IC.2.4.4 The restrictor must be located to facilitate measurement during Technical Inspection +IC.2.4.5 The circular restricting cross section must NOT be movable or flexible in any way +IC.2.4.6 The restrictor must not be part of the movable portion of a barrel throttle body. +IC.2.5 Turbochargers & Superchargers +IC.2.5.1 The intake air may be cooled with an intercooler (a charge air cooler). +a. It must be located downstream of the throttle body +b. Only ambient air may be used to remove heat from the intercooler system +c. Air to air and water to air intercoolers are permitted +d. The coolant of a water to air intercooler system must meet T.5.4.1 +IC.2.5.2 If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be +positioned in the intake system as shown in IC.2.4.2.b +IC.2.5.3 Plenums must not be located anywhere upstream of the throttle body +For the purpose of definition, a plenum is any tank or volume that is a significant enlargement +of the normal intake runner system. Teams may submit their designs via a Rules Question for +review prior to competition if the legality of their proposed system is in doubt. +IC.2.5.4 The maximum allowable area of the inner diameter of the intake runner system between the +restrictor and throttle body is 2825 mm +2 + +IC.2.6 Connections to Intake +Any crankcase or engine lubrication vent lines routed to the intake system must be connected +upstream of the intake system restrictor. +IC.3 THROTTLE +IC.3.1 General +IC.3.1.1 The vehicle must have a carburetor or throttle body. +a. The carburetor or throttle body may be of any size or design. +b. Boosted applications must not use carburetors. + + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 81 of 143 +Version 1.0 31 Aug 2024 +IC.3.2 Throttle Actuation Method +The throttle may be operated: +a. Mechanically by a cable or rod system IC.3.3 +b. By Electronic Throttle Control IC.4 +IC.3.3 Throttle Actuation – Mechanical +IC.3.3.1 The throttle cable or rod must: +a. Have smooth operation +b. Have no possibility of binding or sticking +c. Be minimum 50 mm from any exhaust system component and out of the exhaust stream +d. Be protected from being bent or kinked by the driver’s foot when it is operated by the +driver or when the driver enters or exits the vehicle +IC.3.3.2 The throttle actuation system must use two or more return springs located at the throttle +body. +Throttle Position Sensors (TPS) are NOT acceptable as return springs +IC.3.3.3 Failure of any component of the throttle system must not prevent the throttle returning to +the closed position. +IC.4 ELECTRONIC THROTTLE CONTROL +This section IC.4 applies only when Electronic Throttle Control is used +An Electronic Throttle Control (ETC) system may be used. This is a device or system which +may change the engine throttle setting based on various inputs. +IC.4.1 General Design +IC.4.1.1 The electronic throttle must automatically close (return to idle) when power is removed. +IC.4.1.2 The electronic throttle must use minimum two sources of energy capable of returning the +throttle to the idle position. +a. One of the sources may be the device (such as a DC motor) that normally operates the +throttle +b. The other device(s) must be a throttle return spring that can return the throttle to the +idle position if loss of actuator power occurs. +c. Springs in the TPS are not acceptable throttle return springs +IC.4.1.3 The ETC system may blip the throttle during downshifts when proven that unintended +acceleration can be prevented. Document the functional analysis in the ETC Systems Form +IC.4.2 Commercial ETC System +IC.4.2.1 An ETC system that is commercially available, but does not comply with the regulations, may +be used, if approved prior to the event. +IC.4.2.2 To obtain approval, submit a Rules Question which includes: +• Which ETC system the team is seeking approval to use. +• The specific ETC rule(s) that the commercial system deviates from. +• Sufficient technical details of these deviations to determine the acceptability of the +commercial system. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 82 of 143 +Version 1.0 31 Aug 2024 +IC.4.3 Documentation +IC.4.3.1 The ETC Notice of Intent: +• Must be submitted to give the intent to run ETC +• May be used to screen which teams are allowed to use ETC +IC.4.3.2 The ETC Systems Form must be submitted in order to use ETC +IC.4.3.3 Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document +Requirements +IC.4.3.4 Late or non submission will prevent use of ETC, see DR.3.4.1 +IC.4.4 Throttle Position Sensor - TPS +IC.4.4.1 The TPS must measure the position of the throttle or the throttle actuator. +Throttle position is defined as percent of travel from fully closed to wide open where 0% is +fully closed and 100% is fully open. +IC.4.4.2 Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and +reference lines only if effects of supply and/or reference line voltage offsets can be detected. +IC.4.4.3 Implausibility is defined as a deviation of more than 10% throttle position between the +sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be +considered on a case by case basis and require justification in the ETC Systems Form +IC.4.4.4 If an Implausibility occurs between the values of the two TPSs and persists for more than 100 +msec, the power to the electronic throttle must be immediately shut down. +IC.4.4.5 If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% +throttle position may be used to define the throttle position target and the 3rd TPS may be +ignored. +IC.4.4.6 Each TPS must be able to be checked during Technical Inspection by having one of: +a. A separate detachable connector(s) for any TPS signal(s) to the main ECU without +affecting any other connections +b. An inline switchable breakout box available that allows disconnection of each TPS +signal(s) to the main ECU without affecting any other connections +IC.4.4.7 The TPS signals must be sent directly to the throttle controller using an analogue signal or via +a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring +must be detectable by the controller and must be treated like Implausibility. +IC.4.4.8 When an analogue signal is used, the TPSs will be considered to have failed when they achieve +an open circuit or short circuit condition which generates a signal outside of the normal +operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. +IC.4.4.9 When any kind of digital data transmission is used to transmit the TPS signal, +a. The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. +b. The failures to be considered must include but are not limited to the failure of the TPS, +TPS signals being out of range, corruption of the message and loss of messages and the +associated time outs. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 83 of 143 +Version 1.0 31 Aug 2024 +IC.4.5 Accelerator Pedal Position Sensor - APPS +Refer to T.4.2 for specific requirements of the APPS +IC.4.6 Brake System Encoder - BSE +Refer to T.4.3 for specific requirements of the BSE +IC.4.7 Throttle Plausibility Checks +IC.4.7.1 Brakes and Throttle Position +a. The power to the electronic throttle must be shut down if the mechanical brakes are +operated and the TPS signals that the throttle is open by more than a permitted amount +for more than one second. +b. An interval of one second is allowed for the throttle to close (return to idle). Failure to +achieve this in the required interval must result in immediate shut down of fuel flow and +the ignition system. +c. The permitted relationship between BSE and TPS may be defined by the team using a +table. This functionality must be demonstrated at Technical Inspection. +IC.4.7.2 Throttle Position vs Target +a. The power to the electronic throttle must be immediately shut down, if throttle position +differs by more than 10% from the expected target TPS position for more than one +second. +b. An interval of one second is allowed for the difference to reduce to less than 10%, failure +to achieve this in the required interval must result in immediate shut down of fuel flow +and the ignition system. +c. An error in TPS position and the resultant system shutdown must be demonstrated at +Technical Inspection. +Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. +System states displayed using calibration software must be accompanied by a detailed +explanation of the control system. +IC.4.7.3 The electronic throttle and fuel injector/ignition system shutdown must stay active until the +TPS signals indicate the throttle is at or below the unpowered default position for one second +or longer. +IC.4.8 Brake System Plausibility Device - BSPD +IC.4.8.1 A standalone nonprogrammable circuit must be used to monitor the electronic throttle +control. +The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7 +IC.4.8.2 Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may +not be used in place of the raw sensor signals. +IC.4.8.3 The BSPD must monitor for these conditions: +a. The two of these for more than one second: +• Demand for Hard Braking IC.4.6 +• Throttle more than 10% open IC.4.4 +b. Loss of signal from the braking sensor(s) for more than 100 msec +c. Loss of signal from the throttle sensor(s) for more than 100 msec + + +Formula SAE® Rules 2025 © 2024 SAE International Page 84 of 143 +Version 1.0 31 Aug 2024 +d. Removal of power from the BSPD circuit +IC.4.8.4 When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2 +IC.4.8.5 The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON +IC.4.8.6 The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF +IC.4.8.7 The BSPD signals and function must be able to be checked during Technical Inspection by +having one of: +a. A separate set of detachable connectors for any signals from the braking sensor(s), +throttle sensor(s) and removal of power to only the BSPD device. +b. An inline switchable breakout box available that allows disconnection of the brake +sensor(s), throttle sensor(s) individually and power to only the BSPD device. +IC.5 FUEL AND FUEL SYSTEM +IC.5.1 Fuel +IC.5.1.1 Vehicles must be operated with the fuels provided at the competition +IC.5.1.2 Fuels provided are expected to be Gasoline and E85. Consult the individual competition +websites for fuel specifics and other information. +IC.5.1.3 No agents other than the provided fuel and air may go into the combustion chamber. +IC.5.2 Fuel System +IC.5.2.1 The Fuel System must meet these design criteria: +a. The Fuel Tank is capable of being filled to capacity without manipulating the tank or the +vehicle in any manner. +b. During refueling on a level surface, the formation of air cavities or other effects that +cause the fuel level observed at the sight tube to drop after movement or operation of +the vehicle (other than due to consumption) are prevented. +c. Spillage during refueling cannot contact the driver position, exhaust system, hot engine +parts, or the ignition system. +IC.5.2.2 The Fuel System location must meet IC.1.2 and F.9 +IC.5.2.3 A Firewall must separate the Fuel Tank from the driver, per T.1.8 +IC.5.3 Fuel Tank +The part(s) of the fuel containment device that is in contact with the fuel. +IC.5.3.1 Fuel Tanks made of a rigid material must: +a. Be securely attached to the vehicle structure. The mounting method must not allow +chassis flex to load the Fuel Tank. +b. Not be used to carry any structural loads; from Roll Hoops, suspension, engine or +gearbox mounts +IC.5.3.2 Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag +tank: +a. Must be enclosed inside a rigid fuel tank container which is securely attached to the +vehicle structure. +b. The Fuel Tank container may be load carrying +IC.5.3.3 Any size Fuel Tank may be used + + +Formula SAE® Rules 2025 © 2024 SAE International Page 85 of 143 +Version 1.0 31 Aug 2024 +IC.5.3.4 The Fuel Tank, by design, must not have a variable capacity. +IC.5.3.5 The Fuel System must have a provision for emptying the Fuel Tank if required. +IC.5.4 Fuel Filler Neck & Sight Tube +IC.5.4.1 All Fuel Tanks must have a Fuel Filler Neck which must be: +a. Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler +cap +IC.5.4.2 The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be: +a. Minimum 125 mm vertical height above the top level of the Fuel Tank +b. Angled no more than 30° from the vertical +IC.5.4.3 The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the +fuel level which must be: +a. Visible vertical height: 125 mm minimum +b. Inside diameter: 6 mm minimum +c. Above the top surface of the Fuel Tank +IC.5.4.4 A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules +Question or technical inspectors at the event. + +IC.5.4.5 Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm +and 25 mm below the top of the visible portion of the sight tube. +This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure +the amount of fuel used during the Endurance Event. +IC.5.4.6 The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, +the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, +etc) or the need to remove any parts (body panels, etc). +IC.5.4.7 The individual filling the tank must have complete direct access to the filler neck opening with +a standard two gallon gas can assembly. +The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top +IC.5.4.8 The filler neck must have a fuel cap that can withstand severe vibrations or high pressures +such as could occur during a vehicle rollover event + + + + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 86 of 143 +Version 1.0 31 Aug 2024 +IC.5.5 Fuel Tank Filling +IC.5.5.1 Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials. +IC.5.5.2 The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point. +IC.5.5.3 If, for any reason, the fuel level changes after the team have moved the vehicle, then no +additional fuel will be added, unless fueling after Endurance, see D.13.2.5 +IC.5.6 Venting Systems +IC.5.6.1 Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during +hard cornering or acceleration. +IC.5.6.2 All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted. +IC.5.6.3 All fuel vent lines must exit outside the bodywork. +IC.5.7 Fuel Lines +IC.5.7.1 Fuel lines must be securely attached to the vehicle and/or engine. +IC.5.7.2 All fuel lines must be shielded from possible rotating equipment failure or collision damage. +IC.5.7.3 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. +IC.5.7.4 Any rubber fuel line or hose used must meet the two: +a. The components over which the hose is clamped must have annular bulb or barbed +fittings to retain the hose +b. Clamps specifically designed for fuel lines must be used. +These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, +and rolled edges to prevent the clamp cutting into the hose +IC.5.7.5 Worm gear type hose clamps must not be used on any fuel line. +IC.6 FUEL INJECTION +IC.6.1 Low Pressure Injection (LPI) +Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most +Port Fuel Injected (PFI) fuel systems are low pressure. +IC.6.1.1 Any Low Pressure flexible fuel lines must be one of: +• Metal braided hose with threaded fittings (crimped on or reusable) +• Reinforced rubber hose with some form of abrasion resistant protection +IC.6.1.2 Fuel rail and mounting requirements: +a. Unmodified OEM Fuel Rails are acceptable, regardless of material. +b. Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable +materials are prohibited. +c. The fuel rail must be securely attached to the manifold, engine block or cylinder head +with brackets and mechanical fasteners. +Hose clamps, plastic ties, or safety wires do not meet this requirement. +d. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 87 of 143 +Version 1.0 31 Aug 2024 +IC.6.2 High Pressure Injection (HPI) / Direct Injection (DI) +IC.6.2.1 Definitions +a. High Pressure fuel systems - those functioning at 10 Bar pressure or above +b. Direct Injection fuel systems - where the injection occurs directly into the combustion +system +Direct Injection systems often utilize a low pressure electric fuel pump and high pressure +mechanical “boost” pump driven off the engine. +c. High Pressure Fuel Lines - those between the boost pump and injectors +d. Low Pressure Fuel Lines - from the electric supply pump to the boost pump +IC.6.2.2 All High Pressure Fuel Lines must: +a. Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel +reinforcement and visible Nomex tracer yarn. Equivalent products may be used with +prior approval. +b. Not incorporate elastomeric seals +c. Be rigidly connected every 100 mm by mechanical fasteners to structural engine +components such as cylinder heads or block +IC.6.2.3 Any Low Pressure flexible Fuel Lines must be one of: +• Metal braided hose with threaded fittings (crimped on or reusable) +• Reinforced rubber hose with some form of abrasion resistant protection +IC.6.2.4 Fuel rail mounting requirements: +a. The fuel rail must be securely attached to the engine block or cylinder head with brackets +and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this +requirement. +b. The fastening method must be sufficient to hold the fuel rail in place with the maximum +regulated pressure acting on the injector internals and neglecting any assistance from +cylinder pressure acting on the injector tip. +c. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 +IC.6.2.5 High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as +the cylinder head or engine block. +IC.6.2.6 Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the +fuel system in parallel with the DI boost pump. The external regulator must be used even if +the DI boost pump comes equipped with an internal regulator. +IC.7 EXHAUST AND NOISE CONTROL +IC.7.1 Exhaust Protection +IC.7.1.1 The exhaust system must be separated from any of these components by means given in +T.1.6.3: +a. Flammable materials, including the fuel and fuel system, the oil and oil system +b. Thermally sensitive components, including brake lines, composite materials, and +batteries + + +Formula SAE® Rules 2025 © 2024 SAE International Page 88 of 143 +Version 1.0 31 Aug 2024 +IC.7.2 Exhaust Outlet +IC.7.2.1 The exhaust must be routed to prevent the driver from fumes at any speed considering the +draft of the vehicle +IC.7.2.2 The Exhaust Outlet(s) must be: +a. No more than 45 cm aft of the centerline of the rear axle +b. No more than 60 cm above the ground. +IC.7.2.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in +front of the Main Hoop must be shielded to prevent contact by persons approaching the +vehicle or a driver exiting the vehicle +IC.7.2.4 Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an +exhaust manifold or exhaust system. +IC.7.3 Variable Exhaust +IC.7.3.1 Adjustable tuning or throttling devices are permitted. +IC.7.3.2 Manually adjustable tuning devices must require tools to change +IC.7.3.3 Refer to IN.10.2 for additional requirements during the Noise Test +IC.7.4 Connections to Exhaust +Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum +devices that connect directly to the exhaust system, are prohibited. +IC.7.5 Noise Level and Testing +IC.7.5.1 The vehicle must stay below the permitted sound level at all times IN.10.5 +IC.7.5.2 Sound level will be verified during Technical Inspection, refer to IN.10 +IC.8 ELECTRICAL +IC.8.1 Starter +Each vehicle must start the engine using an onboard starter at all times +IC.8.2 Batteries +Refer to T.9.2 for specific requirements of Low Voltage batteries +IC.8.3 Voltage Limit +IC.8.3.1 Voltage between any two electrical connections must be Low Voltage T.9.1.2 +IC.8.3.2 This voltage limit does not apply to these systems: +• High Voltage systems for ignition +• High Voltage systems for injectors +• Voltages internal to OEM charging systems designed for <60 V DC output. +IC.9 SHUTDOWN SYSTEM +IC.9.1 Shutdown Circuit +IC.9.1.1 The Shutdown Circuit consists of these components: +a. Primary Master Switch IC.9.3 +b. Cockpit Main Switch IC.9.4 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 89 of 143 +Version 1.0 31 Aug 2024 +c. (ETC Only) Brake System Plausibility Device (BSPD) IC.4.8 +d. Brake Overtravel Switch (BOTS) T.3.3 +e. Inertia Switch (if used) T.9.4 +IC.9.1.2 The team must be able to demonstrate all features and functions of the Shutdown Circuit and +components at Technical Inspection +IC.9.1.3 The international electrical symbol (a red spark on a white edged blue triangle) must be near +the Primary Master Switch and the Cockpit Main Switch. +IC.9.2 Shutdown Circuit Operation +IC.9.2.1 The Shutdown Circuit must Open upon operation of, or detection from any of the components +listed in IC.9.1.1 +IC.9.2.2 When the Shutdown Circuit Opens, it must: +a. Stop the engine +b. Disconnect power to the: +• Fuel Pump(s) +• Ignition +• (ETC only) Electronic Throttle IC.4.1.1 +IC.9.3 Primary Master Switch +IC.9.3.1 Configuration and Location - The Primary Master Switch must meet T.9.3 +IC.9.3.2 Function - the Primary Master Switch must: +a. Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel +pump(s), ignition and electrical controls. +All battery current must flow through this switch +b. Be direct acting, not act through a relay or logic. +IC.9.4 Cockpit Main Switch +IC.9.4.1 Configuration - The Cockpit Main Switch must: +a. Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF +position) +b. Have a diameter of 24 mm minimum +IC.9.4.2 Location – The Cockpit Main Switch must be: +a. In easy reach of the driver when in a normal driving position wearing Harness +b. Adjacent to the Steering Wheel +c. Unobstructed by the Steering Wheel or any other part of the vehicle +IC.9.4.3 Function - the Cockpit Main Switch may act through a relay + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 90 of 143 +Version 1.0 31 Aug 2024 +EV - ELECTRIC VEHICLES +EV.1 DEFINITIONS +EV.1.1 Tractive System – TS +Every part electrically connected to the Motor(s) and/or Accumulator(s) +EV.1.2 Grounded Low Voltage - GLV +Every electrical part that is not part of the Tractive System +EV.1.3 Accumulator +All the battery cells or super capacitors that store the electrical energy to be used by the +Tractive System +EV.2 DOCUMENTATION +EV.2.1 Electrical System Form - ESF +EV.2.1.1 Each team must submit an Electrical System Form (ESF) with a clearly structured +documentation of the entire vehicle electrical system (including control and Tractive System). +Submission and approval of the ESF does not mean that the vehicle will automatically pass +Electrical Technical Inspection with the described items / parts. +EV.2.1.2 The ESF may provide guidance or more details than the Formula SAE Rules. +EV.2.1.3 Use the format provided and submit the ESF as given in section DR - Document Requirements +EV.2.2 Submission Penalties +Penalties for the ESF are imposed as given in section DR - Document Requirements. +EV.3 ELECTRICAL LIMITATIONS +EV.3.1 Operation +EV.3.1.1 Supplying power to the motor to drive the vehicle in reverse is prohibited +EV.3.1.2 Drive by wire control of wheel torque is permitted +EV.3.1.3 Any algorithm or electronic control unit that can adjust the requested wheel torque may only +decrease the total driver requested torque and must not increase it +EV.3.2 Energy Meter +EV.3.2.1 All Electric Vehicles must run with the Energy Meter provided at the event +Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter +EV.3.2.2 The Energy Meter must be installed in an easily accessible location +EV.3.2.3 All Tractive System power must flow through the Energy Meter +EV.3.2.4 Each team must download their Energy Meter data in a manner and timeframe specified by +the organizer +EV.3.2.5 Power and Voltage limits will be checked by the Energy Meter data +Energy is calculated as the time integrated value of the measured voltage multiplied by the +measured current logged by the Energy Meter. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 91 of 143 +Version 1.0 31 Aug 2024 +EV.3.3 Power and Voltage +EV.3.3.1 The maximum power measured by the Energy Meter must not exceed 80 kW +EV.3.3.2 The maximum permitted voltage that may occur between any two points must not exceed +600 V DC +EV.3.3.3 The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr +EV.3.4 Violations +EV.3.4.1 A Violation occurs when one or two of these exist: +a. Use of more than the specified maximum power EV.3.3.1 +b. Exceed the maximum voltage EV.3.3.2 +for one or the two conditions: +• Continuously for 100 ms or more +• After a moving average over 500 ms is applied +EV.3.4.2 Missing Energy Meter data may be treated as a Violation, subject to official discretion +EV.3.4.3 Tampering, or attempting to tamper with the Energy Meter or its data may result in +Disqualification (DQ) +EV.3.5 Penalties +EV.3.5.1 Violations during the Acceleration, Skidpad, Autocross Events: +a. Each run with one or more Violations will Disqualify (DQ) the best run of the team +b. Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the +two best runs +EV.3.5.2 Violations during the Endurance event: +• Each Violation: 60 second penalty D.14.2.1 +EV.3.5.3 Repeated Violations may void Inspection Approval or receive additional penalties up to and +including Disqualification, subject to official discretion. +EV.3.5.4 The respective data of each run in which a team has a Violation and the resulting decision may +be made public. +EV.4 COMPONENTS +EV.4.1 Motors +EV.4.1.1 Only electrical motors are allowed. The number of motors is not limited. +EV.4.1.2 Motors must meet T.5.3 +EV.4.1.3 If Motors are mounted to the suspension uprights, their cables and wiring must: +a. Include an Interlock EV.7.8 +This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive +System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or +knocked off the vehicle. +b. Reduce the length of the portions of wiring and other connections that do not meet +F.11.1.3 to the extent possible + + +Formula SAE® Rules 2025 © 2024 SAE International Page 92 of 143 +Version 1.0 31 Aug 2024 +EV.4.2 Motor Controller +The Tractive System Motor(s) must be connected to the Accumulator through a Motor +Controller. No direct connections between Motor(s) and Accumulator. +EV.4.3 Accumulator Container +EV.4.3.1 Accumulator Containers must meet F.10 +EV.4.3.2 The Accumulator Container(s) must be removable from the vehicle while still remaining rules +compliant +EV.4.3.3 The Accumulator Container(s) must be completely closed at all times (when mounted to the +vehicle and when removed from the vehicle) without the need to install extra protective +covers +EV.4.3.4 The Accumulator Container(s) may contain Holes or Openings +a. Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the +Accumulator Container(s) +b. Holes and Openings in the Accumulator Container must meet F.10.4 +c. External holes must meet EV.6.1 +EV.4.3.5 Any Accumulators that may vent an explosive gas must have a ventilation system or pressure +relief valve to release the vented gas +EV.4.3.6 Segments sealed in Accumulator Containers must have a path to a pressure relief valve +EV.4.3.7 Pressure relief valves must not have line of sight to the driver, with the Firewall installed or +removed +EV.4.3.8 Each Accumulator Container must be labelled with the: +a. School Name and Vehicle Number +b. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow +background) with: +• Triangle side length of 100 mm minimum +• Visibility from all angles, including when the lid is removed +c. Text “Always Energized” +d. Text “High Voltage” if the voltage meets T.9.1.1 +EV.4.4 Grounded Low Voltage System +EV.4.4.1 The GLV System must be: +a. A Low Voltage system that is Grounded to the Chassis +b. Able to operate with Accumulator removed from the vehicle +EV.4.4.2 The GLV System must include a Master Switch, see EV.7.9.1 +EV.4.4.3 A GLV Measuring Point (GLVMP) must be installed which is: +a. Connected to GLV System Ground +b. Next to the TSMP EV.5.8 +c. 4 mm shrouded banana jack +d. Color: Black +e. Marked “GND” + + +Formula SAE® Rules 2025 © 2024 SAE International Page 93 of 143 +Version 1.0 31 Aug 2024 +EV.4.4.4 Low Voltage Batteries must meet T.9.2 +EV.4.5 Accelerator Pedal Position Sensor - APPS +Refer to T.4.2 for specific requirements of the APPS +EV.4.6 Brake System Encoder - BSE +Refer to T.4.3 for specific requirements of the BSE +EV.4.7 APPS / Brake Pedal Plausibility Check +EV.4.7.1 Must monitor for the two conditions: +• The mechanical brakes are engaged EV.4.6, T.3.2.4 +• The APPS signals more than 25% Pedal Travel EV.4.5 +EV.4.7.2 If the two conditions in EV.4.7.1 occur at the same time: +a. Power to the Motor(s) must be immediately and completely shut down +b. The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, +with or without brake operation +The team must be able to demonstrate these actions at Technical Inspection +EV.4.8 Tractive System Part Positioning +All parts belonging to the Tractive System must meet F.11 +EV.4.9 Housings and Enclosures +EV.4.9.1 Each housing or enclosure containing parts of the Tractive System other than Motor housings, +must be labelled with the: +a. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow +background) +b. Text “High Voltage” if the voltage meets T.9.1.1 +EV.4.9.2 If the material of the housing containing parts of the Tractive System is electrically conductive, +it must have a low resistance connection to GLV System Ground, see EV.6.7 +EV.4.10 Accumulator Hand Cart +EV.4.10.1 Teams must have a Hand Cart to transport their Accumulator Container(s) +EV.4.10.2 The Hand Cart must be used when the Accumulator Container(s) are transported on the +competition site EV.11.4.2 EV.11.5.1 +EV.4.10.3 The Hand Cart must: +a. Be able to carry the load of the Accumulator Container(s) without tipping over +b. Contain a minimum of two wheels +c. Have a brake that must be: +• Released only using a dead man type switch (where the brake is always on until +released by pushing and holding a handle) or by manually lifting part of the cart off +the ground +• Able to stop the Hand Cart with a fully loaded Accumulator Container +EV.4.10.4 Accumulator Container(s) must be securely attached to the Hand Cart + + +Formula SAE® Rules 2025 © 2024 SAE International Page 94 of 143 +Version 1.0 31 Aug 2024 +EV.5 ENERGY STORAGE +EV.5.1 Accumulator +EV.5.1.1 All cells or super capacitors which store the Tractive System energy are built into Accumulator +Segments and must be enclosed in (an) Accumulator Container(s). +EV.5.1.2 Each Accumulator Segment must contain: +• Static voltage of 120 V DC maximum +• Energy of 6 MJ maximum +The contained energy of a stack is calculated by multiplying the maximum stack voltage +with the nominal capacity of the used cell(s) +• Mass of 12 kg maximum +EV.5.1.3 No further energy storage except for reasonably sized intermediate circuit capacitors are +allowed after the Energy Meter EV.3.1 + +EV.5.1.4 All Accumulator Segments and/or Accumulator Containers (including spares and replacement +parts) must be identical to the design documented in the ESF and SES +EV.5.2 Electrical Configuration +EV.5.2.1 All Tractive System components must be rated for the maximum Tractive System voltage +EV.5.2.2 If the Accumulator Container is made from an electrically conductive material: +a. The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner +wall of the Accumulator Container with an insulating material that is rated for the +maximum Tractive System voltage. +b. All conductive surfaces on the outside of the Accumulator Container must have a low +resistance connection to the GLV System Ground, see EV.6.7 +c. Any conductive penetrations, such as mounting hardware, must be protected against +puncturing the insulating barrier. +EV.5.2.3 Each Accumulator Segment must be electrically insulated with suitable Nonflammable +Material (F.1.18) (not air) for the two: +a. Between the segments in the container +b. On top of the segment +The intent is to prevent arc flashes caused by inter segment contact or by parts/tools +accidentally falling into the container during maintenance for example. +EV.5.2.4 Soldering electrical connections in the high current path is prohibited +Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are +not part of the high current path. + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 95 of 143 +Version 1.0 31 Aug 2024 +EV.5.2.5 Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, +must be rated to the maximum Tractive System voltage. +EV.5.3 Maintenance Plugs +EV.5.3.1 Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet: +a. The separated Segments meet voltage and energy limits of EV.5.1.2 +b. The separation must affect the two poles of the Segment +EV.5.3.2 Maintenance Plugs must: +a. Require the physical removal or separation of a component. Contactors or switches are +not acceptable Maintenance Plugs +b. Have access after opening the Accumulator Container and not necessary to move or +remove any other components +c. Not be physically possible to make electrical connection in any configuration other than +the design intended configuration +d. Not require tools to install or remove +e. Include a positive locking feature which prevents the plug from unintentionally becoming +loose +f. Be nonconductive on surfaces that do not provide any electrical connection +EV.5.3.3 When the Accumulator Containers are opened or Segments are removed, the Accumulator +Segments must be separated by using the Maintenance Plugs. See EV.11.4.1 +EV.5.4 Isolation Relays - IR +EV.5.4.1 All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more +Isolation Relays (IR) +EV.5.4.2 The Isolation Relays must: +a. Be a Normally Open type +b. Open the two poles of the Accumulator +EV.5.4.3 When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator +Container +EV.5.4.4 The Isolation Relays and any fuses must be separated from the rest of the Accumulator with +an electrically insulated and Nonflammable Material (F.1.18). +EV.5.4.5 A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit +Opens EV.7.2.2 +EV.5.5 Manual Service Disconnect - MSD +A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two +poles of the Accumulator EV.11.3.2 +EV.5.5.1 The Manual Service Disconnect (MSD) must be: +a. A directly accessible element, fuse or connector that will visually show disconnected +b. More than 350 mm from the ground +c. Easily visible when standing behind the vehicle +d. Operable in 10 seconds or less by an untrained person +e. Operable without removing any bodywork or obstruction or using tools + + +Formula SAE® Rules 2025 © 2024 SAE International Page 96 of 143 +Version 1.0 31 Aug 2024 +f. Directly operated. Remote operation through a long handle, rope or wire is not +acceptable. +g. Clearly marked with "MSD" +EV.5.5.2 The Energy Meter must not be used as the Manual Service Disconnect (MSD) +EV.5.5.3 An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed +EV.5.5.4 A dummy connector or similar may be used to restore isolation to meet EV.6.1.2 +EV.5.6 Precharge and Discharge Circuits +EV.5.6.1 The Accumulator must contain a Precharge Circuit. The Precharge Circuit must: +a. Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage +before closing the second IR +b. Be supplied from the Shutdown Circuit EV.7.1 +EV.5.6.2 The Intermediate Circuit must precharge before closing the second IR +a. The end of precharge must be controlled by feedback by monitoring the voltage in the +Intermediate Circuit +EV.5.6.3 The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be: +a. Wired in a way that it is always active when the Shutdown Circuit is open +b. Able to discharge the Intermediate Circuit capacitors if the MSD has been opened +c. Not be fused +d. Designed to handle the maximum Tractive System voltage for minimum 15 seconds +EV.5.6.4 Positive Temperature Coefficient (PTC) devices must not be used to limit current for the +Precharge Circuit or Discharge Circuit +EV.5.6.5 The precharge relay must be a mechanical type relay +EV.5.7 Voltage Indicator +Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is +present at the vehicle side of the IRs +EV.5.7.1 The Voltage Indicator must always function, including when the Accumulator Container is +disconnected or removed +EV.5.7.2 The voltage being present at the connectors must directly control the Voltage Indicator using +hard wired electronics with no software control. +EV.5.7.3 The control signal which closes the IRs must not control the Voltage Indicator +EV.5.7.4 The Voltage Indicator must: +a. Be located where it is clearly visible when connecting/disconnecting the Accumulator +Tractive System connections +b. Be labeled “High Voltage Present” +EV.5.8 Tractive System Measuring Points - TSMP +EV.5.8.1 Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are: +a. Connected to the positive and negative motor controller/inverter supply lines +b. Next to the Master Switches EV.7.9 +c. Protected by a nonconductive housing that can be opened without tools + + +Formula SAE® Rules 2025 © 2024 SAE International Page 97 of 143 +Version 1.0 31 Aug 2024 +d. Protected from being touched with bare hands / fingers once the housing is opened +EV.5.8.2 Two TSMPs must be installed in the Charger EV.8.2 which are: +a. Connected to the positive and negative Charger output lines +b. Available during charging of any Accumulator(s) +EV.5.8.3 The TSMPs must be: +a. 4 mm shrouded banana jacks rated to an appropriate voltage level +b. Color: Red +c. Marked “HV+” and “HV-“ +EV.5.8.4 Each TSMP must be secured with a current limiting resistor. +a. The resistor must be sized for the voltage: +Maximum TS Voltage (Vmax) Resistor Value +Vmax <= 200 V DC 5 kOhm +200 V DC < Vmax <= 400 V DC 10 kOhm +400 V DC < Vmax <= 600 V DC 15 kOhm +b. Resistor continuous power rating must be more than the power dissipated across the +TSMPs if they are shorted together +c. Direct measurement of the value of the resistor must be possible during Electrical +Technical Inspection. +EV.5.8.5 Any TSMP must not contain additional Overcurrent Protection. +EV.5.9 Connectors +Tractive System connectors outside of a housing must contain an Interlock EV.7.8 +EV.5.10 Ready to Move Light +EV.5.10.1 The vehicle must have two Ready to Move Lights: +a. One pointed forward +b. One pointed aft +EV.5.10.2 Each Ready to Move Light must be: +a. A Marker Light that complies with DOT FMVSS 108 +b. Color: Amber +c. Luminous area: minimum 1800 mm +2 + +EV.5.10.3 Mounting location of each Ready to Move Light must: +a. Be near the Main Hoop near the highest point of the vehicle +b. Be inside the Rollover Protection Envelope F.1.13 +c. Be no lower than 150 mm from the highest point of the Main Hoop +d. Not allow contact with the driver’s helmet in any circumstances +e. Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm +horizontal radius from the light +Visibility is checked with Bodywork and Aerodynamic Devices in place + + +Formula SAE® Rules 2025 © 2024 SAE International Page 98 of 143 +Version 1.0 31 Aug 2024 +EV.5.10.4 The Ready to Move Light must: +a. Be powered by the GLV system +b. Be directly controlled by the voltage present in the Tractive System using hard wired +electronics. EV.6.5.4 Software control is not permitted. +c. Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage +outside the Accumulator Container(s) exceeds T.9.1.1 +d. Not do any other functions +EV.5.11 Tractive System Status Indicator +EV.5.11.1 The vehicle must have a Tractive System Status Indicator +EV.5.11.2 The Tractive System Status Indicator must have two separate Red and Green Status Lights +EV.5.11.3 Each of the Status Lights: +a. Must have a minimum luminous area of 130 mm +2 + +b. Must be visible in direct sunlight +c. May have one or more of the same elements +EV.5.11.4 Mounting location of the Tractive System Status Indicator must: +a. Be near the Main Hoop at the highest point of the vehicle +b. Be above the Ready to Move Light +c. Be inside the Rollover Protection Envelope F.1.13 +d. Be no lower than 150 mm from the highest point of the Main Hoop +e. Not allow contact with the driver’s helmet in any circumstances +f. Easily visible to a person near the vehicle +EV.5.11.5 The Tractive System Status Indicator must show when the GLV System is energized: +Condition Green Light Red Light +a. No Faults Always ON OFF +b. Fault in one or the two: +BMS EV.7.3.5 or IMD EV.7.6.5 +OFF +Flash +2 Hz to 5 Hz, 50% duty cycle + +EV.6 ELECTRICAL SYSTEM +EV.6.1 Covers +EV.6.1.1 Nonconductive material or covers must prevent inadvertent human contact with any Tractive +System voltage. +Covers must be secure and sufficiently rigid. +Removable Bodywork is not suitable to enclose Tractive System connections. +EV.6.1.2 Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated +test probe must not be possible when the Tractive System enclosures are in place. +EV.6.1.3 Tractive System components and Accumulator Containers must be protected from moisture, +rain or puddles. +A rating of IP65 is recommended + + +Formula SAE® Rules 2025 © 2024 SAE International Page 99 of 143 +Version 1.0 31 Aug 2024 +EV.6.2 Insulation +EV.6.2.1 Insulation material must: +a. Be appropriate for the expected surrounding temperatures +b. Have a minimum temperature rating of 90°C +EV.6.2.2 Insulating tape or paint may be part of the insulation, but must not be the only insulation. +EV.6.3 Wiring +EV.6.3.1 All wires and terminals and other conductors used in the Tractive System must be sized for the +continuous current they will conduct +EV.6.3.2 All Tractive System wiring must: +a. Be marked with wire gauge, temperature rating and insulation voltage rating. +A serial number or a norm printed on the wire is sufficient if this serial number or norm is +clearly bound to the wire characteristics for example by a data sheet. +b. Have temperature rating more than or equal to 90°C +EV.6.3.3 Tractive System wiring must be: +a. Done to professional standards with sufficient strain relief +b. Protected from loosening due to vibration +c. Protected against damage by rotating and / or moving parts +d. Located out of the way of possible snagging or damage +EV.6.3.4 Any Tractive System wiring that runs outside of electrical enclosures: +a. Must meet one of the two: +• Enclosed in separate orange nonconductive conduit +• Use an orange shielded cable +b. The conduit or shielded cable must be securely anchored at each end to allow it to +withstand a force of 200 N without straining the cable end crimp +c. Any shielded cable must have the shield grounded +EV.6.3.5 Wiring that is not part of the Tractive System must not use orange wiring or conduit. +EV.6.4 Connections +EV.6.4.1 All Tractive System connections must: +a. Be designed to use intentional current paths through conductors designed for electrical +current +b. Not rely on steel bolts to be the primary conductor +c. Not include compressible material such as plastic in the stack-up +EV.6.4.2 If external, uninsulated heat sinks are used, they must be properly grounded to the GLV +System Ground, see EV.6.7 +EV.6.4.3 Bolted electrical connections in the high current path of the Tractive System must include a +positive locking feature to prevent unintentional loosening +Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. +Bolts with nylon patches are allowed for blind connections into OEM components. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 100 of 143 +Version 1.0 31 Aug 2024 +EV.6.4.4 Information about the electrical connections supporting the high current path must be +available at Electrical Technical Inspection +EV.6.5 Voltage Separation +EV.6.5.1 Separation of Tractive System and GLV System: +a. The entire Tractive System and GLV System must be completely galvanically separated. +b. The border between Tractive System and GLV System is the galvanic isolation between +the two systems. +Some components, such as the Motor Controller, may be part of both systems. +EV.6.5.2 There must be no connection between the Chassis of the vehicle (or any other conductive +surface that might be inadvertently touched by a person), and any part of any Tractive System +circuits. +EV.6.5.3 Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4 +EV.6.5.4 GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, +HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light +EV.5.10 the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator +Container. +EV.6.5.5 Where Tractive System and GLV are included inside the same enclosure, they must meet one +of the two: +a. Be separated by insulating barriers (in addition to the insulation on the wire) made of +moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or +higher (such as Nomex based electrical insulation) +b. Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: +U < 100 V DC 10 mm +100 V DC < U < 200 V DC 20 mm +U > 200 V DC 30 mm +EV.6.5.6 Spacing must be clearly defined. Components and cables capable of movement must be +positively restrained to maintain spacing. +EV.6.5.7 If Tractive System and GLV are on the same circuit board: +a. They must be on separate, clearly defined and clearly marked areas of the board +b. Required spacing related to the spacing between traces / board areas are as follows: +Voltage Over Surface Thru Air (cut in board) Under Conformal Coating +0-50 V DC 1.6 mm 1.6 mm 1 mm +50-150 V DC 6.4 mm 3.2 mm 2 mm +150-300 V DC 9.5 mm 6.4 mm 3 mm +300-600 V DC 12.7 mm 9.5 mm 4 mm +EV.6.5.8 Teams must be prepared to show spacing on team built equipment +For inaccessible circuitry, spare boards or appropriate photographs must be available for +inspection +EV.6.5.9 All connections to external devices such as laptops from a Tractive System component must +include galvanic isolation + + +Formula SAE® Rules 2025 © 2024 SAE International Page 101 of 143 +Version 1.0 31 Aug 2024 +EV.6.6 Overcurrent Protection +EV.6.6.1 All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent +Protection/Fusing. +EV.6.6.2 Unless otherwise allowed in the Rules, all Overcurrent Protection devices must: +a. Be rated for the highest voltage in the systems they protect. +Overcurrent Protection devices used for DC must be rated for DC and must carry a DC +rating equal to or more than the system voltage +b. Have a continuous current rating less than or equal to the continuous current rating of +any electrical component that it protects +c. Have an interrupt current rating higher than the theoretical short circuit current of the +system that it protects +EV.6.6.3 Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, +strings of capacitors, or conductors must have individual Overcurrent Protection. +EV.6.6.4 Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of: +a. Be appropriately sized for the total current that the individual Overcurrent Protection +devices could transmit +b. Contain additional Overcurrent Protection to protect the conductors +EV.6.6.5 Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be +used when all three conditions are met: +• An Overcurrent Protection device rated at less than or equal to one third the sum of the +parallel fusible links and complying with EV.6.6.2.b above is connected in series. +• The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a +fault is detected. +• Fusible link current rating is specified in manufacturer’s data or suitable test data is +provided. +EV.6.6.6 If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, +the reduced conductor longer than 150 mm must have additional Overcurrent Protection. +This additional Overcurrent Protection must be: +a. 150 mm or less from the source end of the reduced conductor +b. On the positive and the negative conductors in the Tractive System +c. On the positive conductor in the Grounded Low Voltage System +EV.6.6.7 Cells with internal Overcurrent Protection may be used without external Overcurrent +Protection if suitably rated. +Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and +conditions of EV.6.6.5 above will apply. +EV.6.7 Grounding +EV.6.7.1 Grounding is required for: +a. Parts of the vehicle which are 100 mm or less from any Tractive System component +b. (EV only) The Firewall T.1.8.4 +EV.6.7.2 Grounded parts of the vehicle must have a resistance to GLV System Ground less than the +values specified below. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 102 of 143 +Version 1.0 31 Aug 2024 +a. Electrically conductive parts 300 mOhms (measured with a current of 1 A) +Examples: parts made of steel, (anodized) aluminum, any other metal parts +b. Parts which may become electrically conductive 5 Ohm +Example: carbon fiber parts +Carbon fiber parts may need special measures such as using copper mesh or similar to +keep the ground resistance below 5 Ohms. +EV.6.7.3 Electrical conductivity of any part may be tested by checking any point which is likely to be +conductive. +Where no convenient conductive point is available, an area of coating may be removed. +EV.7 SHUTDOWN SYSTEM +EV.7.1 Shutdown Circuit +EV.7.1.1 The Shutdown Circuit consists of these components, connected in series: +a. Battery Management System (BMS) EV.7.3 +b. Insulation Monitoring Device (IMD) EV.7.6 +c. Brake System Plausibility Device (BSPD) EV.7.7 +d. Interlocks (as required) EV.7.8 +e. Master Switches (GLVMS, TSMS) EV.7.9 +f. Shutdown Buttons EV.7.10 +g. Brake Over Travel Switch (BOTS) T.3.3 +h. Inertia Switch T.9.4 +EV.7.1.2 The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the +Precharge Circuit Relay. +EV.7.1.3 The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open +EV.7.1.4 The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown +Circuit. +The design of the respective circuits must make sure that a failure cannot result in electrical +power being fed back into the Shutdown Circuit. +EV.7.1.5 The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown +Circuit current +EV.7.1.6 The team must be able to demonstrate all features and functions of the Shutdown Circuit and +components at Electrical Technical Inspection. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 103 of 143 +Version 1.0 31 Aug 2024 + +EV.7.2 Shutdown Circuit Operation +EV.7.2.1 The Shutdown Circuit must Open when any of these exist: +a. Operation of, or detection from any of the components listed in EV.7.1.1 +b. Any shutdown of the GLV System +EV.7.2.2 When the Shutdown Circuit Opens: +a. The Tractive System must Shutdown +b. All Accumulator current flow must stop immediately EV.5.4.3 +c. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less +d. The Motor(s) must spin free. Torque must not be applied to the Motor(s) +EV.7.2.3 When the BMS, IMD or BSPD Open the Shutdown Circuit: +a. The Tractive System must stay disabled until manually reset +b. The Tractive System must be reset only by manual action of a person directly at the +vehicle +c. The driver must not be able to reactivate the Tractive System from inside the vehicle +d. Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close +EV.7.3 Battery Management System - BMS +EV.7.3.1 A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and +Temperature EV.7.5 when the: +a. Tractive System is Active EV.11.5 +b. Accumulator is connected to a Charger EV.8.3 +EV.7.3.2 The BMS must have galvanic isolation at each segment to segment boundary, as approved in +the ESF +EV.7.3.3 Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) +Chassis +Master Switch +Brake +System +Plausibility +Device +Ba ery +Management +System +TSMP +HV+ +Trac ve System +le +right +Shutdown Bu ons +GLV System +GLV System +Trac ve System +Accumulator +Fuse(s) +IR +Accumulator Container(s) +Trac ve System +cockpit +IR +Precharge +Precharge +Control +GLV +Ba ery +Interlock(s) +GND +GLVMP +HV +TSMP +Iner a +Switch +Brake +System +Plausibility +Device +Insula on +Monitoring +Device +Brake +Over +Travel +Switch +MSD +Interlock +LV +TS +le right +GLV System +Master Switch +GLV System +GLV Fuse +Trac ve +System +Trac ve +System + + +Formula SAE® Rules 2025 © 2024 SAE International Page 104 of 143 +Version 1.0 31 Aug 2024 +EV.7.3.4 The BMS must monitor for: +a. Voltage values outside the allowable range EV.7.4.2 +b. Voltage sense Overcurrent Protection device(s) blown or tripped +c. Temperature values outside the allowable range EV.7.5.2 +d. Missing or interrupted voltage or temperature measurements +e. A fault in the BMS +EV.7.3.5 If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must: +a. Open the Shutdown Circuit EV.7.2.2 +b. Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 +The two lights must stay on until the BMS is manually reset EV.7.2.3 +EV.7.3.6 The BMS Indicator Light must be: +a. Color: Red +b. Clearly visible to the seated driver in bright sunlight +c. Clearly marked with the lettering “BMS” +EV.7.4 Accumulator Voltage +EV.7.4.1 The BMS must measure the cell voltage of each cell +When single cells are directly connected in parallel, only one voltage measurement is needed +EV.7.4.2 Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels +stated in the cell data sheet. Measurement accuracy must be considered. +EV.7.4.3 All voltage sense wires to the BMS must meet one of: +a. Have Overcurrent Protection EV.7.4.4 below +b. Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below +EV.7.4.4 When used, Overcurrent Protection for the BMS voltage sense wires must meet the two: +a. The Overcurrent Protection must occur in the conductor, wire or PCB trace which is +directly connected to the cell tab. +b. The voltage rating of the Overcurrent Protection must be equal to or higher than the +maximum segment voltage +EV.7.4.5 Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: +• BMS is a distributed BMS system (one cell measurement per board) +• Sense wire length is less than 25 mm +• BMS board has Overcurrent Protection +EV.7.5 Accumulator Temperature +EV.7.5.1 The BMS must measure the temperatures of critical points of the Accumulator +EV.7.5.2 Temperatures (considering measurement accuracy) must stay below the lower of the two: +• The maximum cell temperature limit stated in the cell data sheet +• 60°C +EV.7.5.3 Cell temperatures must be measured at the negative terminal of the respective cell + + +Formula SAE® Rules 2025 © 2024 SAE International Page 105 of 143 +Version 1.0 31 Aug 2024 +EV.7.5.4 The temperature sensor used must be in direct contact with one of: +• The negative terminal itself +• The negative terminal busbar less than 10 mm away from the spot weld or clamping +source on the negative cell terminal +EV.7.5.5 For lithium based cells, +a. The temperature of a minimum of 20% of the cells must be monitored by the BMS +b. The monitored cells must be equally distributed inside the Accumulator Container(s) +The temperature of each cell should be monitored +EV.7.5.6 Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells +sensed by the sensor. +EV.7.5.7 Temperature sensors must have appropriate electrical isolation that meets one of the two: +• Between the sensor and cell +• In the sensing circuit +The isolation must consider GLV/TS isolation as well as common mode voltages between +sense locations. +EV.7.6 Insulation Monitoring Device - IMD +EV.7.6.1 The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System +EV.7.6.2 The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved +alternate equivalent IMD +Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD +EV.7.6.3 The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the +maximum Tractive System operation voltage. +EV.7.6.4 The IMD must monitor the Tractive System for: +a. An isolation failure +b. A failure in the IMD operation +This must be done without the influence of any programmable logic. +EV.7.6.5 If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must: +a. Open the Shutdown Circuit EV.7.2.2 +b. Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 +The two lights must stay on until the IMD is manually reset EV.7.2.3 +EV.7.6.6 The IMD Indicator Light must be: +a. Color: Red +b. Clearly visible to the seated driver in bright sunlight +c. Clearly marked with the lettering “IMD” +EV.7.7 Brake System Plausibility Device - BSPD +EV.7.7.1 The vehicle must have a standalone nonprogrammable circuit to check for simultaneous +braking and high power output +The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7) +EV.7.7.2 The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: + + +Formula SAE® Rules 2025 © 2024 SAE International Page 106 of 143 +Version 1.0 31 Aug 2024 +• Demand for Hard Braking EV.4.6 +• Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit +is delivered to the Motor(s) at the nominal battery voltage +The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips +EV.7.7.3 The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in +any sensor input +EV.7.7.4 The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection. +a. Power must not be sent to the Motor(s) of the vehicle during the test +b. The test must prove the function of the complete BSPD in the vehicle, including the +current sensor +The suggested test would introduce a current by a separate wire from an external power +supply simulating the Tractive System current while pressing the brake pedal +EV.7.8 Interlocks +EV.7.8.1 Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 ) +EV.7.8.2 Additional Interlocks may be included in the Tractive System or components +EV.7.8.3 The Interlock is a wire or connection that must: +a. Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted +b. Not be in the low (ground) connection to the IR coils of the Shutdown Circuit +EV.7.8.4 Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive +System wiring or components when the Interlock circuit is: +a. In the same wiring harness as Tractive System wiring +b. Part of a Tractive System Connector EV.5.9 +c. Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the +connection to a Tractive System connector +EV.7.9 Master Switches +EV.7.9.1 Each vehicle must have two Master Switches that must: +a. Meet T.9.3 for Configuration and Location +b. Be direct acting, not act through a relay or logic +EV.7.9.2 The Grounded Low Voltage Master Switch (GLVMS) must: +a. Completely stop all power to the GLV System EV.4.4 +b. Be in the center of a completely red circular area of > 50 mm in diameter +c. Be labeled “LV” +EV.7.9.3 The Tractive System Master Switch (TSMS) must: +a. Open the Shutdown Circuit in the OFF position EV.7.2.2 +b. Be the last switch before the IRs except for Precharge circuitry and Interlocks. +c. Be in the center of a completely orange circular area of > 50 mm in diameter +d. Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black +lightning bolt on yellow background). +e. Be fitted with a "lockout/tagout" capability in the OFF position EV.11.3.1 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 107 of 143 +Version 1.0 31 Aug 2024 +EV.7.10 Shutdown Buttons +EV.7.10.1 Three Shutdown Buttons must be installed on the vehicle +EV.7.10.2 Each Shutdown Button must: +a. Be a push-pull or push-rotate emergency stop switch +b. Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position +c. Hold when operated to the OFF position +d. Let the Shutdown Circuit Close when operated to the ON position +EV.7.10.3 One Shutdown Button must be on each side of the vehicle which: +a. Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop +Bracing F.5.9 +b. Has a diameter of 40 mm minimum +c. Must not be easily removable or mounted onto removable body work +EV.7.10.4 One Shutdown Button must be mounted in the cockpit which: +a. Is located in easy reach of the belted in driver, adjacent to the steering wheel, and +unobstructed by the steering wheel or any other part of the vehicle +b. Has diameter of 24 mm minimum +EV.7.10.5 The international electrical symbol (a red spark on a white edged blue triangle) must be near +each Shutdown Button. +EV.8 CHARGER REQUIREMENTS +EV.8.1 Charger Requirements +EV.8.1.1 All features and functions of the Charger and Charging Shutdown Circuit must be +demonstrated at Electrical Technical Inspection. IN.4.1 +EV.8.1.2 Chargers will be sealed after approval. IN.4.7.1 +EV.8.2 Charger Features +EV.8.2.1 The Charger must be galvanically isolated (AC) input to (DC) output. +EV.8.2.2 If the Charger housing is conductive it must be connected to the earth ground of the AC input. +EV.8.2.3 All connections of the Charger(s) must be isolated and covered. +EV.8.2.4 The Charger connector(s) must incorporate a feature to let the connector become live only +when correctly connected to the Accumulator. +EV.8.2.5 High Voltage charging leads must be orange +EV.8.2.6 The Charger must have two TSMPs installed, see EV.5.8.2 +EV.8.2.7 The Charger must include a Charger Shutdown Button which must: +a. Be a push-pull or push-rotate emergency stop switch +b. Have a minimum diameter of 25 mm +c. Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position +d. Hold when operated to the OFF position +e. Be labelled with the international electrical symbol (a red spark on a white edged blue +triangle) + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 108 of 143 +Version 1.0 31 Aug 2024 +EV.8.3 Charging Shutdown Circuit +EV.8.3.1 The Charging Shutdown Circuit consists of: +a. Charger Shutdown Button EV.8.2.7 +b. Battery Management System (BMS) EV.7.3 +c. Insulation Monitoring Device (IMD) EV.7.6 +EV.8.3.2 The BMS and IMD parts of the Charging Shutdown Circuit must: +a. Be designed as Normally Open contacts +b. Have completely independent circuits to Open the Charging Shutdown Circuit. +Design of the respective circuits must make sure that a failure cannot result in electrical +power being fed back into the Charging Shutdown Circuit. +EV.8.4 Charging Shutdown Circuit Operation +EV.8.4.1 When Charging, the BMS and IMD must: +a. Monitor the Accumulator +b. Open the Charging Shutdown Circuit if a fault is detected +EV.8.4.2 When the Charging Shutdown Circuit Opens: +a. All current flow to the Accumulator must stop immediately +b. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less +c. The Charger must be turned off +d. The Charger must stay disabled until manually reset +EV.9 VEHICLE OPERATIONS +EV.9.1 Activation Requirement +The driver must complete the Activation Sequence without external assistance after the +Master Switches EV.7.9 are ON +EV.9.2 Activation Sequence +The vehicle systems must energize in this sequence: +a. Low Voltage (GLV) System EV.9.3 +b. Tractive System Active EV.9.4 +c. Ready to Drive EV.9.5 +EV.9.3 Low Voltage (GLV) System +The Shutdown Circuit may be Closed when or after the GLV System is energized +EV.9.4 Tractive System Active +EV.9.4.1 Definition – High Voltage is present outside of the Accumulator Container +EV.9.4.2 Tractive System Active must not be possible until the two: +• GLV System is Energized +• Shutdown Circuit is Closed +EV.9.5 Ready to Drive +EV.9.5.1 Definition – the Motor(s) will respond to the input of the APPS + + +Formula SAE® Rules 2025 © 2024 SAE International Page 109 of 143 +Version 1.0 31 Aug 2024 +EV.9.5.2 Ready to Drive must not be possible until the three at the same time: +• Tractive System Active EV.9.4 +• The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 +• The driver does a manual action to start Ready to Drive +Such as pressing a specific button in the cockpit +EV.9.6 Ready to Drive Sound +EV.9.6.1 The vehicle must make a characteristic sound when it is Ready to Drive +EV.9.6.2 The Ready to Drive Sound must be: +a. Sounded continuously for minimum 1 second and maximum 3 seconds +b. A minimum sound level of 80 dBA, fast weighting IN.4.6 +c. Easily recognizable. No animal voices, song parts or sounds that could be interpreted as +offensive will be accepted +EV.9.6.3 The vehicle must not make other sounds similar to the Ready to Drive Sound. +EV.10 EVENT SITE ACTIVITIES +EV.10.1 Onsite Registration +EV.10.1.1 The Accumulator must be onsite at the time the team registers to be eligible for Accumulator +Technical Inspection and Dynamic Events +EV.10.1.2 Teams who register without the Accumulator: +a. Must not bring their Accumulator onsite for the duration of the competition +b. May participate in Technical Inspection and Static Events +EV.10.2 Accumulator Removal +EV.10.2.1 After the team registers onsite, the Accumulator must remain on the competition site until +the end of the competition, or the team withdraws and leaves the site +EV.10.2.2 Violators will be disqualified from the competition and must leave immediately +EV.11 WORK PRACTICES +EV.11.1 Personnel +EV.11.1.1 The Electrical System Officer (ESO): AD.5.2 +a. Is the only person on the team that may declare the vehicle electrically safe to allow +work on any system +b. Must accompany the vehicle when operated or moved at the competition site +c. Must be immediately available by phone at all times during the event +EV.11.2 Maintenance +EV.11.2.1 All participating team members must wear safety glasses with side shields at any time when: +a. Parts of the Tractive System are exposed while energized +b. Work is done on the Accumulators +EV.11.2.2 Appropriate insulated tools must be used when working on the Accumulator or Tractive +System + + +Formula SAE® Rules 2025 © 2024 SAE International Page 110 of 143 +Version 1.0 31 Aug 2024 +EV.11.3 Lockout +EV.11.3.1 The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle. +EV.11.3.2 The MSD EV.5.5 must be disconnected when vehicles are: +a. Moved around the competition site +b. Participating in Static Events +EV.11.4 Accumulator +EV.11.4.1 These work activities at competition are allowed only in the designated area and during +Electrical Technical Inspection IN.4 See EV.5.3.3 +a. Opening Accumulator Containers +b. Any work on Accumulators, cells, or Segments +c. Energized electrical work +EV.11.4.2 Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site +inside one of the two: +a. Completely closed Accumulator Container EV.4.3 See EV.4.10.2 +b. Segment/Cell Transport Container EV.11.4.3 +EV.11.4.3 The Segment/Cell Transport Container(s) must be: +a. Electrically insulated +b. Protected from shock hazards and arc flash +EV.11.4.4 Segments/Cells inside the Transport Container must agree with the voltage and energy limits +of EV.5.1.2 +EV.11.5 Charging +EV.11.5.1 Accumulators must be removed from the vehicle inside the Accumulator Container and put on +the Accumulator Container Hand Cart EV.4.10 for Charging +EV.11.5.2 Accumulator Charging must occur only inside the designated area +EV.11.5.3 A team member(s) who has knowledge of the Charging process must stay with the +Accumulator(s) during Charging +EV.11.5.4 Each Accumulator Container(s) must have a label with this data during Charging: +• Team Name +• Electrical System Officer phone number(s) +EV.11.5.5 Additional site specific rules or policies may apply +EV.12 RED CAR CONDITION +EV.12.1 Definition +A vehicle will be a Red Car if any of the following: +a. Actual or possible damage to the vehicle affecting the Tractive System +b. Vehicle fault indication (EV.5.11 or equivalent) +c. Other conditions, at the discretion of the officials +EV.12.2 Actions +a. Isolate the vehicle + + +Formula SAE® Rules 2025 © 2024 SAE International Page 111 of 143 +Version 1.0 31 Aug 2024 +b. No contact with the vehicle unless the officials give permission +Contact with the vehicle may require trained personnel with proper Personal Protective +Equipment +c. Call out designated Red Car responders + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 112 of 143 +Version 1.0 31 Aug 2024 +IN - TECHNICAL INSPECTION +The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE +Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the +Rules. +IN.1 INSPECTION REQUIREMENTS +IN.1.1 Inspection Required +Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection +Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any +Dynamic event. +IN.1.2 Technical Inspection Authority +IN.1.2.1 The exact procedures and instruments used for inspection and testing are entirely at the +discretion of the Chief Technical Inspector(s). +IN.1.2.2 Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance +are final. +IN.1.3 Team Responsibility +Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE +Rules before Technical Inspection. +IN.1.4 Reinspection +Officials may Reinspect any vehicle at any time during the competition IN.15 +IN.2 INSPECTION CONDUCT +IN.2.1 Vehicle Condition +IN.2.1.1 Vehicles must be presented for Technical Inspection in finished condition, fully assembled, +complete and ready to run. +IN.2.1.2 Technical inspectors will not inspect any vehicle presented for inspection in an unfinished +state. +IN.2.2 Measurement +IN.2.2.1 Allowable dimensions are absolute, and do not have any tolerance unless specifically stated +IN.2.2.2 Measurement tools and methods may vary +IN.2.2.3 No allowance is given for measurement accuracy or error +IN.2.3 Visible Access +All items on the Technical Inspection Form must be clearly visible to the technical inspectors +without using instruments such as endoscopes or mirrors. +Methods to provide visible access include but are not limited to removable body panels, access +panels, and other components +IN.2.4 Inspection Items +IN.2.4.1 Technical Inspection will examine all items included on the Technical Inspection Form to make +sure the vehicle and other equipment obeys the Rules. +IN.2.4.2 Technical Inspectors may examine any other items at their discretion + + +Formula SAE® Rules 2025 © 2024 SAE International Page 113 of 143 +Version 1.0 31 Aug 2024 +IN.2.5 Correction +If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team +must: +• Correct the problem +• Continue Inspection or have the vehicle Reinspected +IN.2.6 Marked Items +IN.2.6.1 Officials may mark, seal, or designate items or areas which have been inspected to document +the inspection and reduce the chance of tampering +IN.2.6.2 Damaged or lost marks or seals require Reinspection IN.15 +IN.3 INITIAL INSPECTION +Bring these to Initial Inspection: +• Technical Inspection Form +• All Driver Equipment per VE.3 to be used by each driver +• Fire Extinguishers (for paddock and vehicle) VE.2.3 +• Wet Tires V.4.3.2 +IN.4 ELECTRICAL TECHNICAL INSPECTION (EV ONLY) +IN.4.1 Inspection Items +Bring these to Electrical Technical Inspection: +• Charger(s) for the Accumulator(s) EV.8.1 +• Accumulator Container Hand Cart EV.4.10 +• Spare Accumulator(s) (if applicable) EV.5.1.4 +• Electrical Systems Form (ESF) and Component Data Sheets EV.2 +• Copies of any submitted Rules Questions with the received answer GR.7 +These basic tools in good condition: +• Insulated cable shears +• Insulated screw drivers +• Multimeter with protected probe tips +• Insulated tools, if screwed connections are used in the Tractive System +• Face Shield +• HV insulating gloves which are 12 months or less from their test date +• Two HV insulating blankets of minimum 0.83 m² each +• Safety glasses with side shields for all team members that might work on the Tractive +System or Accumulator +IN.4.2 Accumulator Inspection +The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected +during Electrical Technical Inspection, or separately from the rest of Electrical Technical +Inspection. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 114 of 143 +Version 1.0 31 Aug 2024 +IN.4.3 Accumulator Access +IN.4.3.1 If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, +provide detailed pictures of the internals taken during assembly +IN.4.3.2 Tech inspectors may require access to check any Accumulator(s) for rules compliance +IN.4.4 Insulation Monitoring Device Test +IN.4.4.1 The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive +System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the +Tractive System is active +IN.4.4.2 The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault +resistance of 50% below the response value corresponding to 250 Ohm / Volt +IN.4.5 Insulation Measurement Test +IN.4.5.1 The insulation resistance between the Tractive System and GLV System Ground will be +measured. +IN.4.5.2 The available measurement voltages are 250 V and 500 V. All vehicles with a maximum +nominal operation voltage below 500 V will be measured with the next available voltage level. +All teams with a system voltage of 500 V or more will be measured with 500 V. +IN.4.5.3 To pass the Insulation Measurement Test the measured insulation resistance must be +minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage. +IN.4.6 Ready to Drive Sound +The sound level will be measured with a free field microphone placed free from obstructions +in a radius of 2 m around the vehicle against the criteria in EV.9.6 +IN.4.7 Electrical Inspection Completion +IN.4.7.1 All or portions of the Tractive System, Charger and other components may be sealed IN.2.6 +IN.4.7.2 Additional monitoring to verify conformance to rules may be installed. Refer to the Event +Website for further information. +IN.4.7.3 A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle +may be Tractive System Active EV.9.4 +IN.4.7.4 Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection +before the vehicle may attempt any further Inspections. See EV.11.3.2 +IN.5 DRIVER COCKPIT CHECKS +The Clearance Checks and Egress Test may be done separately or in conjunction with other +parts of Technical Inspection +IN.5.1 Driver Clearance +Each driver in the normal driving position is checked for the three: +• Helmet clearance F.5.6.4 +• Head Restraint positioning T.2.8.5 +• Harness fit and adjustment T.2.5, T.2.6, T.2.7 +IN.5.2 Egress Test +IN.5.2.1 Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 115 of 143 +Version 1.0 31 Aug 2024 +IN.5.2.2 The Egress Test will be conducted for each driver as follows: +a. The driver must wear the specified Driver Equipment VE.3.2, VE.3.3 +b. Egress time begins with the driver in the fully seated position, with hands in driving +position on the connected steering wheel. +c. Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown +Button EV.7.10.4 +d. Egress time will stop when the driver has two feet on the pavement +IN.5.3 Driver Clearance and Egress Test Completion +IN.5.3.1 To drive the vehicle, each team driver must: +a. Meet the Driver Clearance requirements IN.5.1 +b. Successfully complete the Egress Test IN.5.2 +IN.5.3.2 A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection +IN.6 DRIVER TEMPLATE INSPECTIONS +The Driver Template Inspection will be conducted as part of the Mechanical Inspection +IN.6.1 Conduct +The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6 +IN.6.2 Driver Template Clearance Criteria +To pass Mechanical Technical Inspection, the Driver Template must meet the clearance +specified in F.5.6.4 +IN.7 COCKPIT TEMPLATE INSPECTIONS +The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection +IN.7.1 Conduct +IN.7.1.1 The Cockpit Opening will be checked using the template and procedure given in T.1.1 +IN.7.1.2 The Internal Cross Section will be checked using the template and procedure given in T.1.2 +IN.7.2 Cockpit Template Criteria +To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described. +IN.8 MECHANICAL TECHNICAL INSPECTION +IN.8.1 Inspection Items +Bring these to Mechanical Technical Inspection: +• Vehicle on Dry Tires V.4.3.1 +• Technical Inspection Form +• Push Bar VE.2.2 +• Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 +• Monocoque Laminate Test Specimens (if applicable) F.4.2 +• The Impact Attenuator that was tested (if applicable) F.8.8.7 +• Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c + + +Formula SAE® Rules 2025 © 2024 SAE International Page 116 of 143 +Version 1.0 31 Aug 2024 +• Electronic copies of any submitted Rules Questions with the received answer GR.7 +IN.8.2 Aerodynamic Devices Stability and Strength +IN.8.2.1 Any Aerodynamic Devices may be checked by pushing on the device in any direction and at +any point. +This is guidance, but actual conformance will be up to technical inspectors at the respective +competitions. The intent is to reduce the likelihood of wings detaching +IN.8.2.2 If any deflection is significant, then a force of approximately 200 N may be applied. +a. Loaded deflection should not be more than 25 mm +b. Any permanent deflection less than 5 mm +IN.8.2.3 If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic +Devices, then officials may Black Flag the vehicle for IN.15 Reinspection. +IN.8.3 Monocoque Inspections +IN.8.3.1 Dimensions of the Monocoque will be confirmed F.7.1.4 +IN.8.3.2 When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide: +a. Documentation that shows dimensions on the tubes +b. Pictures of the dimensioned tube being included in the layup +IN.8.3.3 For items which cannot be verified by an inspector, the team must provide documentation, +visual and/or written, that the requirements have been met. +IN.8.3.4 A team found to be improperly presenting any evidence of the manufacturing process may be +barred from competing with a monocoque. +IN.8.4 Engine Inspection (IC Only) +The organizer may measure or tear down engines to confirm conformance to the rules. +IN.8.5 Mechanical Inspection Completion +All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any +further inspections. +IN.9 TILT TEST +IN.9.1 Tilt Test Requirements +a. The vehicle must contain the maximum amount of fluids it may carry +b. The tallest driver must be seated in the normal driving position +c. Tilt tests may be conducted in one, the other, or the two directions to pass +d. (IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and +pressure the system downstream of the High Pressure pump. See IC.6.2 +IN.9.2 Tilt Test Criteria +IN.9.2.1 No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal +IN.9.2.2 Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g. +IN.9.3 Tilt Test Completion +Tilt Tests must be passed before a vehicle may attempt any further inspections + + +Formula SAE® Rules 2025 © 2024 SAE International Page 117 of 143 +Version 1.0 31 Aug 2024 +IN.10 NOISE AND SWITCH TEST (IC ONLY) +IN.10.1 Sound Level Measurement +IN.10.1.1 The sound level will be measured during a stationary test, with the vehicle gearbox in neutral +at the defined Test Speed +IN.10.1.2 Measurements will be made with a free field microphone placed: +• free from obstructions +• at the Exhaust Outlet vertical level IC.7.2.2 +• 0.5 m from the end of the Exhaust Outlet IC.7.2.2 +• at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below) +IN.10.2 Special Configurations +IN.10.2.1 Where the Exhaust has more than one Exhaust Outlet: +a. The noise test is repeated for each outlet +b. The highest sound level is used +IN.10.2.2 Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal +plane. +IN.10.2.3 If the exhaust has any form of active tuning or throttling device or system, the exhaust must +meet all requirements with the device or system in all positions. +IN.10.2.4 When the exhaust has a manually adjustable tuning device(s): +a. The position of the device must be visible to the officials for the noise test +b. The device must be manually operable by the officials during the noise test +c. The device must not be moved or modified after the noise test is passed +IN.10.3 Industrial Engine +An engine which, according to the manufacturers’ specifications and without the required +restrictor, is capable of producing 5 hp per 100 cc or less. +Submit a Rules Question to request approval of an Industrial Engine. +IN.10.4 Test Speeds +IN.10.4.1 Maximum Test Speed +The engine speed that corresponds to an average piston speed of: +a. Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min) +b. Industrial Engines 731.5 m/min (2,400 ft/min) +The calculated speed will be rounded to the nearest 500 rpm. +Test Speeds for typical engines are published on the FSAE Online website +IN.10.4.2 Idle Test Speed +a. Determined by the vehicle’s calibrated idle speed +b. If the idle speed varies then the vehicle will be tested across the range of idle speeds +determined by the team +IN.10.4.3 The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 118 of 143 +Version 1.0 31 Aug 2024 +IN.10.5 Maximum Permitted Sound Level +a. At idle 103 dBC, fast weighting +b. At all other speeds 110 dBC, fast weighting +IN.10.6 Noise Level Retesting +IN.10.6.1 Noise levels may be monitored at any time +IN.10.6.2 The Noise Test may be repeated at any time +IN.10.7 Switch Function +The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, +and/or BOTS T.3.3 will be verified during the Noise Test +IN.10.8 Noise Test Completion +Noise Tests must be passed before a vehicle may attempt any further inspections +IN.11 RAIN TEST (EV ONLY) +IN.11.1 Rain Test Requirements +• Tractive System must be Active +• The vehicle must not be in Ready to Drive mode (EV.7) +• Any driven wheels must not touch the ground +• A driver must not be seated in the vehicle +IN.11.2 Rain Test Conduct +The water spray will be rain like, not a direct high pressure water jet +a. Spray water at the vehicle from any possible direction for 120 seconds +b. Stop the water spray +c. Observe the vehicle for 120 seconds +IN.11.3 Rain Test Completion +The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire +240 seconds duration +IN.12 BRAKE TEST +IN.12.1 Objective +The brake system will be dynamically tested and must demonstrate the capability of locking all +four wheels when stopping the vehicle in a straight line at the end of an acceleration run +specified by the brake inspectors +IN.12.2 Brake Test Conduct (IC Only) +IN.12.2.1 Brake Test procedure: +a. Accelerate to speed (typically getting into 2nd gear) until reaching the designated area +b. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels +IN.12.2.2 The Brake Test passes if: +• All four wheels lock up +• The engine stays running during the complete test + + +Formula SAE® Rules 2025 © 2024 SAE International Page 119 of 143 +Version 1.0 31 Aug 2024 +IN.12.3 Brake Test Conduct (EV Only) +IN.12.3.1 Brake Test procedure: +a. Accelerate to speed until reaching the designated area +b. Switch off the Tractive System EV.7.10.4 +c. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels +IN.12.3.2 The Brake Test passes if all four wheels lock while the Tractive System is shut down +IN.12.3.3 The Tractive System Active Light may switch a short time after the vehicle has come to a +complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c +IN.13 INSPECTION APPROVAL +IN.13.1 Inspection Approval +IN.13.1.1 When all parts of Technical Inspection are complete as shown on the Technical Inspection +sheet, the vehicle receives Inspection Approval +IN.13.1.2 The completed Inspection Sticker shows the Inspection Approval +IN.13.1.3 The Inspection Approval is contingent on the vehicle remaining in the required condition +throughout the competition. +IN.13.1.4 The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any +time for any reason +IN.13.2 Inspection Sticker +IN.13.2.1 Inspection Sticker(s) are issued after completion of all or part of Technical Inspection +IN.13.2.2 Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently +IN.13.3 Inspection Validity +IN.13.3.1 Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or +are required to be Reinspected. +IN.13.3.2 Inspection Approval is valid only for the duration of the specific Formula SAE competition +during which the inspection is conducted. +IN.14 MODIFICATIONS AND REPAIRS +IN.14.1 Prior to Inspection Approval +Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for +Technical Inspection, and until the vehicle has the full Inspection Approval, the only +modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the +Inspection Form. +IN.14.2 After Inspection Approval +IN.14.2.1 The vehicle must maintain all required specifications (including but not limited to ride height, +suspension travel, braking capacity (pad material/composition), sound level and wing location) +throughout the competition. +IN.14.2.2 Changes to fit the vehicle to different drivers are allowed. Permitted changes are: +• Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly +• Substitution of the Head Restraint or seat insert +• Adjustment of mirrors + + +Formula SAE® Rules 2025 © 2024 SAE International Page 120 of 143 +Version 1.0 31 Aug 2024 +IN.14.2.3 Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the +vehicle are: +• Adjustment of belts, chains and clutches +• Adjustment of brake bias +• Adjustment to engine / powertrain operating parameters, including fuel mixture and +ignition timing, and any software calibration changes +• Adjustment of the suspension +• Changing springs, sway bars and shims in the suspension +• Adjustment of Tire Pressure, subject to V.4.3.4 +• Adjustment of wing or wing element(s) angle, but not the location T.7.1 +• Replenishment of fluids +• Replacement of worn tires or brake pads. Replacement tires and brake pads must be +identical in material/composition/size to those presented and approved at Technical +Inspection. +• Changing of wheels and tires for weather conditions D.6 +• Recharging Low Voltage batteries +• Recharging High Voltage Accumulators +IN.14.3 Repairs or Changes After Inspection Approval +The Inspection Approval may be voided for any reason including, but not limited to: +a. Damage to the vehicle IN.13.1.3 +b. Changes beyond those allowed per IN.14.2 above +IN.15 REINSPECTION +IN.15.1 Requirement +IN.15.1.1 Any vehicle may be Reinspected at any time for any reason +IN.15.1.2 Reinspection must be completed to restore Inspection Approval, if voided +IN.15.2 Conduct +IN.15.2.1 The Technical Inspection process may be repeated in entirety or in part +IN.15.2.2 Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector +IN.15.3 Result +IN.15.3.1 With Voided Inspection Approval +Successful completion of Reinspection will restore Inspection Approval IN.13.1 +IN.15.3.2 During Dynamic Events +a. Issues found during Reinspection will void Inspection Approval +b. Penalties may be applied to the Dynamic Events the vehicle has competed in +Applied penalties may include additional time added to event(s), loss of one or more +fastest runs, up to DQ, subject to official discretion. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 121 of 143 +Version 1.0 31 Aug 2024 +S - STATIC EVENTS +S.1 GENERAL STATIC +Presentation 75 points +Cost 100 points +Design 150 points +Total 325 points +S.2 PRESENTATION EVENT +S.2.1 Presentation Event Objective +The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive +business, logistical, production, or technical case that will convince outside interests to invest +in the team’s concept. +S.2.2 Presentation Concept +S.2.2.1 The concept for the Presentation Event will be provided on the FSAE Online website. +S.2.2.2 The concept for the Presentation Event may change for each competition +S.2.2.3 The team presentation must meet the concept +S.2.2.4 The team presentation must relate specifically to the vehicle as entered in the competition +S.2.2.5 Teams should assume that the judges represent different areas, including engineering, +production, marketing and finance, and may not all be engineers. +S.2.2.6 The presentation may be given in different settings, such as a conference room, a group +meeting, virtually, or in conjunction with other Static Events. +Specific details will be included in the Presentation Concept or communicated separately. +S.2.3 Presentation Schedule +Teams that fail to make their presentation during their assigned time period get zero points +for the Presentation Event. +S.2.4 Presentation Submissions +S.2.4.1 The Presentation Concept may require information to be submitted prior to the event. +Specific details will be included in the Presentation Concept. +S.2.4.2 Submissions may be graded as part of the Presentation Event score. +S.2.4.3 Pre event submissions will be subject to penalties imposed as given in section DR - Document +Requirements or the Presentation Concept +S.2.5 Presentation Format +S.2.5.1 One or more team members will give the presentation to the judges. +S.2.5.2 All team members who will give any part of the presentation, or who will respond to judges’ +questions must be: +• In the presentation area when the presentation starts +• Introduced and identified to the judges +S.2.5.3 Presentations will be time limited. The judges will stop any presentation exceeding the time +limit. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 122 of 143 +Version 1.0 31 Aug 2024 +S.2.5.4 The presentation itself will not be interrupted by questions. Immediately after the +presentation there may be a question and answer session. +S.2.5.5 Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions. +S.2.6 Presentation Equipment +Refer to the Presentation Concept for additional information +S.2.7 Evaluation Criteria +S.2.7.1 Presentations will be evaluated on content, organization, visual aids, delivery and the team’s +response to the judges questions. +S.2.7.2 The actual quality of the prototype itself will not be considered as part of the presentation +judging +S.2.7.3 Presentation Judging Score Sheet – available at the FSAE Online website +S.2.8 Judging Sequence +Presentation judging may be conducted in one or more phases. +S.2.9 Presentation Event Scoring +S.2.9.1 The Presentation raw score is based on the average of the scores of each judge. +S.2.9.2 Presentation Event scores may range from 0 to 75 points, using a method at the discretion of +the judges +S.2.9.3 Presentation Event scoring may include normalizing the scores of different judging teams and +scaling the overall results. +S.3 COST AND MANUFACTURING EVENT +S.3.1 Cost Event Objective +The Cost and Manufacturing Event evaluates the ability of the team to consider budget and +incorporate production considerations for production and efficiency. +Making tradeoff decisions between content and cost based on the performance of each part +and assembly and accounting for each part and process to meet a budget is part of Project +Management. +S.3.2 Cost Event Supplement +a. Additional specific information on the Cost and Manufacturing Event, including +explanation and requirements, is provided in the Formula SAE Cost Event Supplement +document. +b. Use the Formula SAE Cost Event Supplement to properly complete the requirements of +the Cost and Manufacturing Event. +c. The Formula SAE Cost Event Supplement is available on the FSAE Online website +S.3.3 Cost Event Areas +S.3.3.1 Cost Report +Preparation and submission of a report (the “Cost Report”) +S.3.3.2 Event Day Discussion +Discussion at the Competition with the Cost Judges around the team’s vehicle. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 123 of 143 +Version 1.0 31 Aug 2024 +S.3.3.3 Cost Scenario +Teams will respond to a challenge related to cost or manufacturing of the vehicle. +S.3.4 Cost Report +S.3.4.1 The Cost Report must: +a. List and cost each part on the vehicle using the standardized Cost Tables +b. Base the cost on the actual manufacturing technique used on the prototype +Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc. +c. Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it. +d. Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools). +e. Include supporting documentation to allow officials to verify part costing +S.3.4.2 Generate and submit the Cost Report using the FSAE Online website, see DR - Document +Requirements +S.3.5 Bill of Materials - BOM +S.3.5.1 The BOM is a list of all vehicle parts, showing the relationships between the items. +a. The overall vehicle is broken down into separate Systems +b. Systems are made up of Assemblies +c. Assemblies are made up of Parts +d. Parts consist of Materials, Processes and Fasteners +e. Tooling is associated with each Process that requires production tooling +S.3.6 Late Submission +Penalties for Late Submission of Cost Report will be imposed as given in section DR - +Document Requirements. +S.3.7 Cost Addendum +S.3.7.1 A supplement to the Cost Report that reflects any changes or corrections made after the +submission of the Cost Report may be submitted. +S.3.7.2 The Cost Addendum must be submitted during Onsite Registration at the Event. +S.3.7.3 The Cost Addendum must follow the format as given in section DR - Document Requirements +S.3.7.4 Addenda apply only to the competition at which they are submitted. +S.3.7.5 A separate Cost Addendum may be submitted at each competition a vehicle attends. +S.3.7.6 Changes to the Cost Report in the Cost Addendum will incur additional cost: +a. Added items will be cost at 125% of the table cost: + (1.25 x Cost) +b. Removed items will be credited 75% of the table cost: - (0.75 x Cost) +S.3.8 Cost Tables +S.3.8.1 All costs in the Cost Report must come from the standardized Cost Tables. +S.3.8.2 If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add +Item Request must be submitted. See S.3.10 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 124 of 143 +Version 1.0 31 Aug 2024 +S.3.9 Make versus Buy +S.3.9.1 Each part may be classified as Made or Bought +Refer to the Formula SAE Cost Event Supplement for additional information +S.3.9.2 If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively +cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so. +S.3.9.3 Any part which is normally purchased that is optionally shown as a Made part must have +supporting documentation submitted to prove team manufacture. +S.3.9.4 Teams costing Bought parts as Made parts will be penalized. +S.3.10 Add Item Request +S.3.10.1 An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost +Tables for individual team requirements. +S.3.10.2 After review, the item may be added to the Cost Table with an appropriate cost. It will then +be available to all teams. +S.3.11 Public Cost Reports +S.3.11.1 The competition organizers may publish all or part of the submitted Cost Reports. +S.3.11.2 Cost Reports for a given competition season will not be published before the end of the +calendar year. Support materials, such as technical drawings, will not be released. +S.3.12 Cost Report Penalties Process +S.3.12.1 This procedure will be used in determining penalties: +a. Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions +b. Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost +Additions +c. The higher of the two penalties will be applied against the Cost Event score +• Penalty A expressed in points will be deducted from the Cost Event score +• Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle +S.3.12.2 Any error that results in a team over reporting a cost in their Cost Report will not be further +penalized. +S.3.12.3 Any instance where a team’s score benefits by an intentional or unintentional error on the +part of the students will be corrected on a case by case basis. +S.3.12.4 Penalty Method A - Fixed Point Deductions +a. From the Bill of Material, the Cost Judges will determine if all Parts and Processes have +been included in the analysis. +b. In the case of any omission or error a penalty proportional to the BOM level of the error +will be imposed: +• Missing/inaccurate Material, Process, Fastener 1 point +• Missing/inaccurate Part 3 point +• Missing/inaccurate Assembly 5 point +c. Each of the penalties listed above supersedes the previous penalty. +Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 125 of 143 +Version 1.0 31 Aug 2024 +d. Differences other than those listed above will be deducted at the discretion of the Cost +Judges. +S.3.12.5 Penalty Method B – Adjusted Cost Additions +a. The table cost for the missing or incomplete items will be calculated from the standard +Cost Tables. +b. The penalty will be a value equal to twice the difference between the team cost and the +correct cost for all items in error. +Penalty = 2 x (Table Cost – Team Reported Cost) +The table costs of all items in error are included in the calculation. A missing Assembly would +include the price of all Parts, Materials, Processes and Fasteners making up the Assembly. +S.3.13 Event Day and Discussion +S.3.13.1 The team must present their vehicle at the designated time +S.3.13.2 The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during +Cost Event judging +S.3.13.3 Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging +S.3.13.4 The Cost Judges will: +a. Review whether the Cost Report accurately reflects the vehicle as presented +b. Review the manufacturing feasibility of the vehicle +c. Assess supporting documentation based on its quality, accuracy and thoroughness +d. Apply penalties for missing or incorrect information in the Cost Report compared to the +vehicle presented at inspection +S.3.14 Cost Audit +S.3.14.1 Teams may be selected for additional review to verify all processes and materials on their +vehicle are in the Cost Report +S.3.14.2 Adjustments from the Cost Audit will be included in the final scores +S.3.15 Cost Scenario +The Cost Scenario will be provided prior to the competition on the FSAE Online website +The Cost Scenario will include detailed information about the conduct, scope, and conditions +of the Cost Scenario +S.3.16 Cost Event Scoring +S.3.16.1 Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario +S.3.16.2 The Cost Event is worth 100 points +S.3.16.3 Cost Event Scores may be awarded in areas including, but not limited to: +• Price Score +• Discussion Score +• Scenario Score +S.3.16.4 Penalty points may be subtracted from the Cost Score, with no limit. +S.3.16.5 Cost Event scoring may include normalizing the scores of different judging teams and scaling +the results. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 126 of 143 +Version 1.0 31 Aug 2024 +S.4 DESIGN EVENT +S.4.1 Design Event Objective +S.4.1.1 The Design Event evaluates the engineering effort that went into the vehicle and how the +engineering meets the intent of the market in terms of vehicle performance and overall value. +S.4.1.2 The team and vehicle that illustrate the best use of engineering to meet the design goals, a +cost effective high performance vehicle, and the best understanding of the design by the team +members will win the Design Event. +S.4.1.3 Components and systems that are incorporated into the design as finished items are not +evaluated as a student designed unit, but are assessed on the team’s selection and application +of that unit. +S.4.2 Design Documents +S.4.2.1 Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings +S.4.2.2 These Design Documents will be used for: +• Design Judge reviews prior to the Design Event +• Sorting teams into appropriate design groups based on the quality of their review. +S.4.2.3 Penalties for Late Submission of all or any one of the Design Documents will be imposed as +given in section DR - Document Requirements +S.4.2.4 Teams that submit one or more Design Documents which do not represent a serious effort to +comply with the requirements may be excluded from the Design Event or be awarded a lower +score. +S.4.3 Design Briefing +S.4.3.1 The Design Briefing must use the template from the FSAE Online website. +S.4.3.2 Refer to the Design Briefing template for: +a. Specific content requirements, areas and details +b. Maximum slides that may be used per topic +S.4.3.3 Submit the Design Briefing as given in section DR - Document Requirements +S.4.4 Vehicle Drawings +S.4.4.1 The Vehicle Drawings must meet: +a. Three view line drawings showing the vehicle, from the front, top, and side +b. Each drawing must appear on a separate page +c. May be manually or computer generated +S.4.4.2 Submit the Vehicle Drawings as given in section DR - Document Requirements +S.4.5 Design Spec Sheet +Use the format provided and submit the Design Spec Sheet as given in section DR - Document +Requirements +The Design Judges realize that final design refinements and vehicle development may cause +the submitted values to differ from those of the completed vehicle. For specifications that are +subject to tuning, an anticipated range of values may be appropriate. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 127 of 143 +Version 1.0 31 Aug 2024 +S.4.6 Vehicle Condition +S.4.6.1 Inspection Approval IN.13.1.1 is not required prior to Design judging. +S.4.6.2 Vehicles must be presented for Design judging in finished condition, fully assembled, complete +and ready to run. +a. The judges will not evaluate any vehicle that is presented at the Design event in what +they consider to be an unfinished state. +b. Point penalties may be assessed for vehicles with obvious preparation issues +S.4.7 Support Material +S.4.7.1 Teams may bring to Design Judging any photographs, drawings, plans, charts, example +components or other materials that they believe are needed to support the presentation of +the vehicle and the discussion of their development process. +S.4.7.2 The available space in the Design Event judging area may be limited. +S.4.8 Judging Sequence +Design judging may be conducted in one or more phases. +Typical Design judging includes a first round review of all teams, then additional review of +selected teams. +S.4.9 Judging Criteria +S.4.9.1 The Design Judges will: +a. Evaluate the engineering effort based upon the team’s Design Documents, discussion +with the team, and an inspection of the vehicle +b. Inspect the vehicle to determine if the design concepts are adequate and appropriate for +the application (relative to the objectives stated in the rules). +c. Deduct points if the team cannot adequately explain the engineering and construction of +the vehicle +S.4.9.2 The Design Judges may assign a portion of the Design Event points to the Design Documents +S.4.9.3 Design Judging Score Sheets are available at the FSAE Online website. +S.4.10 Design Event Scoring +S.4.10.1 Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge +S.4.10.2 Penalty points may be subtracted from the Design score +S.4.10.3 Vehicles that are excluded from Design judging or refused judging get zero points for Design, +and may receive penalty points. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 128 of 143 +Version 1.0 31 Aug 2024 +D - DYNAMIC EVENTS +D.1 GENERAL DYNAMIC +D.1.1 Dynamic Events and Maximum Scores +Acceleration 100 points +Skid Pad 75 points +Autocross 125 points +Efficiency 100 points +Endurance 275 points +Total 675 points +D.1.2 Definitions +D.1.2.1 Dynamic Area – Any designated portion(s) of the competition site where the vehicles may +move under their own power. This includes competition, inspection and practice areas. +D.1.2.2 Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the +purpose of gathering those vehicles that are about to start. +D.2 PIT AND PADDOCK +D.2.1 Vehicle Movement +D.2.1.1 Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the +Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside +D.2.1.2 The team may move the vehicle with +a. All four wheels on the ground +b. The rear wheels supported on dollies, by push bar mounted wheels +The external wheels supporting the rear of the vehicle must be non pivoting so the +vehicle travels only where the front wheels are steered. The driver must always be able +to steer and brake the vehicle normally. +D.2.1.3 When the Push Bar is attached, the engine must stay off, unless authorized by the officials +D.2.1.4 Vehicles must be Shutdown when being moved around the paddock +D.2.1.5 Vehicles with wings must have two team members, one walking on each side of the vehicle +when the vehicle is being pushed +D.2.1.6 A 25 point penalty may be assessed for each violation +D.2.2 Fueling and Charging +(IC only) Officials must conduct all fueling activities in the designated location. +(EV only) Accumulator charging must be done in the designated location EV.11.5 +D.2.3 Powertrain Operation +In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three: +a. (IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR +a Technical Inspector gives permission +(EV only) The vehicle shows the OK to Energize sticker IN.4.7.3 +b. The vehicle is supported on a stand + + +Formula SAE® Rules 2025 © 2024 SAE International Page 129 of 143 +Version 1.0 31 Aug 2024 +c. The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed +D.3 DRIVING +D.3.1 Drivers Meetings – Attendance Required +All drivers for an event must attend the drivers meeting(s). The driver for an event will be +disqualified if he/she does not attend the driver meeting for the event. +D.3.2 Dynamic Area Limitations +Refer to the Event Website for specific information +D.3.2.1 The organizer may specify restrictions for the Dynamic Area. These could include limiting the +number of team members and what may be brought into the area. +D.3.2.2 The organizer may specify additional restrictions for the Staging Area. These could include +limiting the number of team members and what may be brought into the area. +D.3.2.3 The organizer may establish requirements for persons in the Dynamic Area, such as closed toe +shoes or long pants. +D.3.3 Driving Under Power +D.3.3.1 Vehicles must move under their own power only when inside the designated Dynamic Area(s), +unless otherwise directed by the officials. +D.3.3.2 Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point +penalty for the first violation and disqualification for a second violation. +D.3.4 Driving Offsite - Prohibited +Teams found to have driven their vehicle at an offsite location during the period of the +competition will be excluded from the competition. +D.3.5 Driver Equipment +D.3.5.1 All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with: +a. (IC) Engine running or (EV) Tractive System Active +b. Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run. +D.3.5.2 Removal of any Driver Equipment during a Dynamic event will result in Disqualification. +D.3.6 Starting +Auxiliary batteries must not be used once a vehicle has moved to the starting line of any +event. See IC.8.1 +D.3.7 Practice Area +D.3.7.1 A practice area for testing and tuning may be available +D.3.7.2 The practice area will be controlled and may only be used during the scheduled times +D.3.7.3 Vehicles using the practice area must have a complete Inspection Sticker +D.3.8 Instructions from Officials +Obey flags and hand signals from course marshals and officials immediately + + +Formula SAE® Rules 2025 © 2024 SAE International Page 130 of 143 +Version 1.0 31 Aug 2024 +D.3.9 Vehicle Integrity +Officials may revoke the Inspection Approval for any vehicle condition that could compromise +vehicle integrity, compromise the track surface, or pose a potential hazard. +This could result in DNF or DQ of any Dynamic event. +D.3.10 Stalled & Disabled Vehicles +D.3.10.1 If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to +complete the run, it will be scored DNF for that run +D.3.10.2 Disabled vehicles will be cleared from the track by the track workers. +D.4 FLAGS +Any specific variations will be addressed at the drivers meeting. +D.4.1 Command Flags +D.4.1.1 Any Command Flag must be obeyed immediately and without question. +D.4.1.2 Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time +penalty may be assessed. +D.4.1.3 Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, +something has been observed that needs closer inspection. +D.4.1.4 Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the +corner workers signals at the end of the passing zone to merge into competition. +D.4.1.5 Checkered Flag - Run has been completed. Exit the course at the designated point. +D.4.1.6 Green Flag – Approval to begin your run, enter the course under direction of the starter. If +you stall the vehicle, please restart and await another Green Flag +D.4.1.7 Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the +course as much as possible to keep the course open. Follow corner worker directions. +D.4.1.8 Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, +something has happened beyond the flag station. NO PASSING unless directed by the corner +workers. +D.4.1.9 Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE +PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless +directed by the corner workers. +D.4.2 Informational Flags +D.4.2.1 An Information Flag communicates to the driver, but requires no specific action. +D.4.2.2 Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be +prepared for evasive maneuvers. +D.4.2.3 White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a +cautious rate. +D.5 WEATHER CONDITIONS +D.5.1 Operating Adjustments +D.5.1.1 The organizer may alter the conduct and scoring of the competition based on weather +conditions. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 131 of 143 +Version 1.0 31 Aug 2024 +D.5.1.2 No adjustments will be made to times for running in differing Operating Conditions. +D.5.1.3 The minimum performance levels to score points may be adjusted by the Officials. +D.5.2 Operating Conditions +D.5.2.1 These operating conditions will be recognized: +• Dry +• Damp +• Wet +D.5.2.2 The current operating condition will be decided by the Officials and may change at any time. +D.5.2.3 The current operating condition will be prominently displayed at the Dynamic Area, and may +be communicated by other means. +D.6 TIRES AND TIRE CHANGES +D.6.1 Tire Requirements +D.6.1.1 Teams must run the tires allowed for each Operating Condition: +Operating Condition Tires Allowed +Dry Dry ( V.4.3.1 ) +Damp Dry or Wet +Wet Wet ( V.4.3.2 ) +D.6.1.2 When the operating condition is Damp, teams may change between Dry Tires and Wet Tires: +a. Any time during the Acceleration, Skidpad, and Autocross Events +b. Any time before starting their Endurance Event +D.6.2 Tire Changes during Endurance +D.6.2.1 All tire changes after a vehicle has received the Green flag to start the Endurance Event must +occur in the Driver Change Area +D.6.2.2 If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or +vehicles will be Black Flagged and brought into the Driver Change Area +D.6.2.3 The allowed tire changes and associated conditions are given in these tables. +Existing +Operating +Condition +Currently +Running on: +Operating Condition Changed to: +Dry Damp Wet +Dry Dry Tires ok A B +Damp Dry Tires ok A B +Damp Wet Tires C C ok +Wet Wet Tires C C ok + + +Requirement +Allowed at +Driver Change? +A may change from Dry to Wet Yes +B MUST change from Dry to Wet Yes +C may change from Wet to Dry NO + +D.6.2.4 Time allowed to change tires: + + +Formula SAE® Rules 2025 © 2024 SAE International Page 132 of 143 +Version 1.0 31 Aug 2024 +a. Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 +minutes with Driver Change, will be added to the team's total time for Endurance +b. Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s +total time for Endurance +D.6.2.5 If the vehicle has a tire puncture, +a. The wheel and tire may be replaced with an identical wheel and tire +b. When the puncture is caused by track debris and not a result of component failure or the +vehicle itself, the tire change time will not count towards the team’s total time. +D.7 DRIVER LIMITATIONS +D.7.1 Three Event Limit +D.7.1.1 An individual team member may not drive in more than three events. +D.7.1.2 The Efficiency Event is considered a separate event although it is conducted simultaneously +with the Endurance Event. +A minimum of four drivers are required to participate in all of the dynamic events. +D.8 DEFINITIONS +D.8.1.1 DOO - Cone is Down or Out when one or the two: +a. Cone has been knocked over (Down) +b. The entire base of the cone lies outside the box marked around the cone in its +undisturbed position (Out) +D.8.1.2 DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed +to complete it +D.8.1.3 DQ - Disqualified - run(s) or event(s) no longer valid +D.8.1.4 Gate - The path between two cones through which the vehicle must pass. Two cones, one on +each side of the course define a gate. Two sequential cones in a slalom define a gate. +D.8.1.5 Entry Gate -The path marked by cones which establishes the required path the vehicle must +take to enter the course. +D.8.1.6 Exit Gate - The path marked by cones which establishes the required path the vehicle must +take to exit the course. +D.8.1.7 OC – Off Course +a. The vehicle did not pass through a gate in the required direction. +b. The vehicle has all four wheels outside the course boundary as indicated by cones, edge +marking or the edge of the paved surface. +Where more than one boundary indicator is used on the same course, the narrowest track will +be used when determining Off Course penalties. +D.9 ACCELERATION EVENT +The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement. +D.9.1 Acceleration Layout +D.9.1.1 Course length will be 75 m from starting line to finish line + + +Formula SAE® Rules 2025 © 2024 SAE International Page 133 of 143 +Version 1.0 31 Aug 2024 +D.9.1.2 Course width will be minimum 4.9 m wide as measured between the inner edges of the bases +of the course edge cones +D.9.1.3 Cones are put along the course edges at intervals, approximately 6 m +D.9.1.4 Cone locations are not marked on the pavement +D.9.2 Acceleration Procedure +D.9.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver +D.9.2.2 Runs with the first driver have priority +D.9.2.3 Each Acceleration run is done as follows: +a. The foremost part of the vehicle will be staged at 0.30 m behind the starting line +b. A Green Flag or light signal will give the approval to begin the run +c. Timing starts when the vehicle crosses the starting line +d. Timing ends when the vehicle crosses the finish line +D.9.2.4 Each driver may go to the front of the staging line immediately after their first run to make a +second run +D.9.3 Acceleration Penalties +D.9.3.1 Cones (DOO) +Two second penalty for each DOO (including entry and exit gate cones) on that run +D.9.3.2 Off Course (OC) +DNF for that run +D.9.4 Acceleration Scoring +D.9.4.1 Scoring Term Definitions: +• Corrected Time = Acceleration Run Time + ( DOO * 2 ) +• Tyour - the best Corrected Time for the team +• Tmin - the lowest Corrected Time recorded for any team +• Tmax - 150% of Tmin +D.9.4.2 When Tyour < Tmax. the team score is calculated as: + +Acceleration Score = 95.5 x +( Tmax / Tyour ) -1 ++ 4.5 + + ( Tmax / Tmin ) -1 +D.9.4.3 When Tyour > Tmax , Acceleration Score = 4.5 +D.10 SKIDPAD EVENT +The Skidpad event measures the vehicle cornering ability on a flat surface while making a +constant radius turn. +D.10.1 Skidpad Layout +D.10.1.1 Course Design +• Two pairs of concentric circles in a figure of eight pattern +• Centers of the circles 18.25 m apart +• Inner circles 15.25 m in diameter + + +Formula SAE® Rules 2025 © 2024 SAE International Page 134 of 143 +Version 1.0 31 Aug 2024 +• Outer circles 21.25 m in diameter +• Driving path the 3.0 m wide path between the inner and outer circles +D.10.1.2 Cone Placement +a. Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) +pylons will be positioned around the outside of each outer circle in the pattern shown in +the Skidpad layout diagram +b. Each circle will be marked with a chalk line, inside the inner circle and outside the outer +circle +The Skidpad layout diagram shows the circles for cone placement, not for course marking. +Chalk lines are marked on the opposite side of the cones, outside the driving path +c. Additional pylons will establish the entry and exit gates +d. A cone may be put in the middle of the exit gate until the finish lap +D.10.1.3 Course Operation +a. Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the +circles where they meet. +b. The line between the centers of the circles defines the start/stop line. +c. A lap is defined as traveling around one of the circles from the start/stop line and +returning to the start/stop line. + +D.10.2 Skidpad Procedure +D.10.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver. +D.10.2.2 Runs with the first driver have priority +D.10.2.3 Each Skidpad run is done as follows: +a. A Green Flag or light signal will give the approval to begin the run + + + + + + + + + + +Formula SAE® Rules 2025 © 2024 SAE International Page 135 of 143 +Version 1.0 31 Aug 2024 +b. The vehicle will enter perpendicular to the figure eight and will take one full lap on the +right circle +c. The next lap will be on the right circle and will be timed +d. Immediately after the second lap, the vehicle will enter the left circle for the third lap +e. The fourth lap will be on the left circle and will be timed +f. Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the +intersection moving in the same direction as entered +D.10.2.4 Each driver may go to the front of the staging line immediately after their first run to make a +second run +D.10.3 Skidpad Penalties +D.10.3.1 Cones (DOO) +A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run +D.10.3.2 Off Course (OC) +DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off +Course. +D.10.3.3 Incorrect Laps +Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be +DNF for that run. +D.10.4 Skidpad Scoring +D.10.4.1 Scoring Term Definitions +• Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) +• Tyour - the best Corrected Time for the team +• Tmin - is the lowest Corrected Time recorded for any team +• Tmax - 125% of Tmin +D.10.4.2 When Tyour < Tmax. the team score is calculated as: + +Skidpad Score = 71.5 x +( Tmax / Tyour ) +2 + -1 ++ 3.5 + + ( Tmax / Tmin ) +2 + -1 +D.10.4.3 When Tyour > Tmax , Skidpad Score = 3.5 +D.11 AUTOCROSS EVENT +The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight +course +D.11.1 Autocross Layout +D.11.1.1 The Autocross course will be designed with these specifications. Average speeds should be 40 +km/hr to 48 km/hr +a. Straights: No longer than 60 m with hairpins at the two ends +b. Straights: No longer than 45 m with wide turns on the ends +c. Constant Turns: 23 m to 45 m diameter +d. Hairpin Turns: 9 m minimum outside diameter (of the turn) + + +Formula SAE® Rules 2025 © 2024 SAE International Page 136 of 143 +Version 1.0 31 Aug 2024 +e. Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing +f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. +g. Minimum track width: 3.5 m +h. Length of each run should be approximately 0.80 km +D.11.1.2 The Autocross course specifications may deviate from the above to accommodate event site +requirements. +D.11.2 Autocross Procedure +D.11.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver +D.11.2.2 Runs with the first driver have priority +D.11.2.3 Each Autocross run is done as follows: +a. The vehicle will be staged at a specific distance behind the starting line +b. A Green Flag or light signal will give the approval to begin the run +c. Timing starts when the vehicle crosses the starting line +d. Timing ends when the vehicle crosses the finish line +D.11.2.4 Each driver may go to the front of the staging line immediately after their first run to make a +second run +D.11.3 Autocross Penalties +D.11.3.1 Cones (DOO) +Two second penalty for each DOO (including cones after the finish line) on that run +D.11.3.2 Off Course (OC) +a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or +receive a 20 second penalty +b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of +track officials. +D.11.3.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one Off Course +D.11.4 Autocross Scoring +D.11.4.1 Scoring Term Definitions: +• Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) +• Tyour - the best Corrected Time for the team +• Tmin - the lowest Corrected Time recorded for any team +• Tmax - 145% of Tmin +D.11.4.2 When Tyour < Tmax. the team score is calculated as: + +Autocross Score = 118.5 x +( Tmax / Tyour ) -1 ++ 6.5 + + ( Tmax / Tmin ) -1 +D.11.4.3 When Tyour > Tmax , Autocross Score = 6.5 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 137 of 143 +Version 1.0 31 Aug 2024 +D.12 ENDURANCE EVENT +The Endurance event evaluates the overall performance of the vehicle and tests the durability +and reliability. +D.12.1 Endurance General Information +D.12.1.1 The organizer may establish one or more requirements to allow teams to compete in the +Endurance event. +D.12.1.2 Each team may attempt the Endurance event once. +D.12.1.3 The Endurance event consists of two Endurance runs, each using a different driver, with a +Driver Change between. +D.12.1.4 Teams may not work on their vehicles once their Endurance event has started +D.12.1.5 Multiple vehicles may be on the track at the same time +D.12.1.6 Wheel to Wheel racing is prohibited. +D.12.1.7 Vehicles must not be driven in reverse +D.12.2 Endurance Layout +D.12.2.1 The Endurance event will consist of multiple laps over a closed course to a total distance of +approximately 22 km. +D.12.2.2 The Endurance course will be designed with these specifications. Average speed should be 48 +km/hr to 57 km/hr with top speeds of approximately 105 km/hr. +a. Straights: No longer than 77 m with hairpins at the two ends +b. Straights: No longer than 61 m with wide turns on the ends +c. Constant Turns: 30 m to 54 m diameter +d. Hairpin Turns: 9 m minimum outside diameter (of the turn) +e. Slaloms: Cones in a straight line with 9 m to 15 m spacing +f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. +g. Minimum track width: 4.5 m +h. Designated passing zones at several locations +D.12.2.3 The Endurance course specifications may deviate from the above to accommodate event site +requirements. +D.12.3 Endurance Run Order +The Endurance Run Order is established to let vehicles of similar speed potential be on track +together to reduce the need for passing. +D.12.3.1 The Endurance Run Order: +a. Should be primarily based on the Autocross event finish order +b. Should include the teams eligible for Endurance which did not compete in the Autocross +event. +c. May be altered by the organizer to accommodate specific circumstances or event +considerations +D.12.3.2 Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line +and prepared to start when their turn to run arrives. + + +Formula SAE® Rules 2025 © 2024 SAE International Page 138 of 143 +Version 1.0 31 Aug 2024 +D.12.4 Endurance Vehicle Starting / Restarting +D.12.4.1 Teams that are not ready to run or cannot start their Endurance event in the allowed time +when their turn in the Run Order arrives: +a. Get a time penalty (D.12.12.5) +b. May then run at the discretion of the Officials +D.12.4.2 After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) +restart the engine or to (EV) enter Ready to Drive EV.9.5 +a. The time will start when the driver first tries to restart the engine or to enable the +Tractive System +b. The time to attempt start / restart is not counted towards the Endurance time +D.12.4.3 If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it +(approximately 60 seconds) to restart. This time counts toward the Endurance time. +D.12.4.4 If starts / restarts are not accomplished in the above times, the vehicle may be DNF. +D.12.5 Endurance Event Procedure +D.12.5.1 Vehicles will be staged per the Endurance Run Order +D.12.5.2 Endurance Event sequence: +a. The first driver will do an Endurance Run per D.12.6 below +b. The Driver Change must then be done per D.12.8 below +c. The second driver will do an Endurance Run per D.12.6 below +D.12.5.3 The Endurance Event is complete when the two: +• The team has completed the specified number of laps +• The second driver crosses the finish line +D.12.6 Endurance Run Procedure +D.12.6.1 A Green Flag or light signal will give the approval to begin the run +D.12.6.2 The driver will drive approximately half of the Endurance distance +D.12.6.3 A Checkered Flag will be displayed +D.12.6.4 The vehicle must exit the track into the Driver Change Area +D.12.7 Driver Change Limitations +D.12.7.1 The team may bring only these items into the Driver Change Area: +a. Three team members, including the driver or drivers +b. (EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers. +c. Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires +Team members may only carry tools by hand (no carts, tool chests etc) +d. Each extra person entering the Driver Change Area: 20 point penalty +D.12.7.2 The only work permitted during Driver Change is: +a. Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons +EV.7.10 +b. Adjustments to fit the driver IN.14.2.2 +c. Tire changes per D.6.2 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 139 of 143 +Version 1.0 31 Aug 2024 +D.12.8 Driver Change Procedure +D.12.8.1 The Driver Change will be done in this sequence: +a. Vehicle will stop in Driver Change Area +b. First Driver turns off the engine / Tractive System. Driver Change time starts. +c. First Driver exits the vehicle +d. Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2 +e. Second Driver is secured in the vehicle +f. Second Driver is ready to start the engine / enable the Tractive System. Driver Change +time stops. +g. Second Driver receives permission to continue +h. The vehicle engine is started or Tractive System enabled. See D.12.4 +i. The vehicle stages to go back onto course, at the direction of the event officials +D.12.8.2 Three minutes are allowed for the team to complete the Driver Change +a. Any additional time for inspection of the vehicle and the Driver Equipment is not +included in the Driver Change time +b. Time in excess of the allowed will be added to the team Endurance time +D.12.8.3 The Driver Change Area will be in a location where the timing system will see the Driver +Change as a long lap which will be deleted from the total time +D.12.9 Breakdowns & Stalls +D.12.9.1 If a vehicle breaks down or cannot restart, it will be removed from the course by track workers +and scored DNF +D.12.9.2 If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 +and D.12.4 +D.12.10 Endurance Event – Black Flags +D.12.10.1 A Black Flag will be shown at the designated location +D.12.10.2 The vehicle must pull into the Driver Change Area at the first opportunity +D.12.10.3 The amount of time spent in the Driver Change Area is at the discretion of the officials. +D.12.10.4 Driving Black Flag +a. May be shown for any reason such as aggressive driving, failing to obey signals, not +yielding for passing, not driving inside the designated course, etc. +b. Course officials will discuss the situation with the driver +c. The time spent in Black Flag or a time penalty may be included in the Endurance Run +time. +d. If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or +during post event review, officials may impose a penalty D.14.2 +D.12.10.5 Mechanical Black Flag +a. May be shown for any reason to question the vehicle condition +b. Time spent off track is not included in the Endurance Run time. +D.12.10.6 Based on the inspection or discussion during a Black Flag period, the vehicle may not be +allowed to continue the Endurance Run and will be scored DNF + + +Formula SAE® Rules 2025 © 2024 SAE International Page 140 of 143 +Version 1.0 31 Aug 2024 +D.12.11 Endurance Event – Passing +D.12.11.1 Passing during Endurance may only be done in the designated passing zones, under the +control of the track officials. +D.12.11.2 Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and +a fast lane for vehicles that are making a pass. +D.12.11.3 When a pass is to be made: +a. A slower leading vehicle gets a Blue Flag +b. The slower vehicle must move into the slow lane and decelerate +c. The faster vehicle will continue in the fast lane and make the pass +d. The vehicle that had been passed may reenter traffic only under the control of the +passing zone exit flag +D.12.11.4 Passing rules do not apply to vehicles that are passing disabled vehicles on the course or +vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, +slow down, drive cautiously and be aware of all the vehicles and track workers in the area. +D.12.12 Endurance Penalties +D.12.12.1 Cones (DOO) +Two second penalty for each DOO (including cones after the finish line) on that run +D.12.12.2 Off Course (OC) +a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or +receive a 20 second penalty +b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of +track officials. +D.12.12.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one Off Course +D.12.12.4 Penalties for Moving or Post Event Violations +a. Black Flag penalties per D.12.10, if applicable +b. Post Event Inspection penalties per D.14.2, if applicable +D.12.12.5 Endurance Starting (D.12.4.1) +Two minutes (120 seconds) penalty +D.12.12.6 Vehicle Operation +The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for +any reason including driver inexperience or mechanical problems, it is too slow or being +driven in a manner that demonstrates an inability to properly control. +D.12.13 Endurance Scoring +D.12.13.1 Scoring Term Definitions: +• Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, +minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 +• Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) +• Tyour - the Corrected Time for the team +• Tmin - the lowest Corrected Time recorded for any team + + +Formula SAE® Rules 2025 © 2024 SAE International Page 141 of 143 +Version 1.0 31 Aug 2024 +• Tmax - 145% of Tmin +D.12.13.2 The vehicle must complete the Endurance Event to receive a score based on their Corrected +Time +a. If Tyour < Tmax, the team score is calculated as: + +Endurance Time Score = 250 x +( Tmax / Tyour ) -1 + + + ( Tmax / Tmin ) -1 +b. If Tyour > Tmax, Endurance Time Score = 0 +D.12.13.3 The vehicle receives points based on the laps and/or parts of Endurance completed. +The Endurance Laps Score is worth up to 25 points +D.12.13.4 The Endurance Score is calculated as: +Endurance Score = Endurance Time Score + Endurance Laps Score +D.13 EFFICIENCY EVENT +The Efficiency event evaluates the fuel/energy used to complete the Endurance event +D.13.1 Efficiency General Information +D.13.1.1 The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap +time on the endurance course, averaged over the length of the event. +D.13.1.2 The Efficiency score is based only on the distance the vehicle runs on the course during the +Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy +will be made. +D.13.2 Efficiency Procedure +D.13.2.1 For IC vehicles: +a. The fuel tank must be filled to the fuel level line (IC.5.4.5) +b. During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, +or the entire vehicle is allowed. +D.13.2.2 (EV only) The vehicle may be fully charged +D.13.2.3 The vehicle will then compete in the Endurance event, refer to D.12.5 +D.13.2.4 Vehicles must power down after leaving the course and be pushed to the fueling station or +data download area +D.13.2.5 For Internal Combustion vehicles (IC): +a. The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. +IC.5.5.1 +b. If the fuel level changes after refuelling: +• Additional fuel will be added to return the fuel tank level to the fuel level line. +• Twice this amount will be added to the previously measured fuel consumption +c. If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the +Fuel Tank will not be refilled D.13.3.4 + + +Formula SAE® Rules 2025 © 2024 SAE International Page 142 of 143 +Version 1.0 31 Aug 2024 +D.13.2.6 For Electric Vehicles (EV): +a. Energy Meter data must be downloaded to measure energy used and check for +Violations EV.3.3 +b. Penalties will be applied per EV.3.5 and/or D.13.3.4 +D.13.3 Efficiency Eligibility +D.13.3.1 Maximum Time +Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance +laptime of the fastest team that completes the Endurance event get zero points +D.13.3.2 Maximum Fuel/Energy Used +Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap +exceeds the values in D.13.4.5 get zero points +D.13.3.3 Partial Completion of Endurance +a. Vehicles which cross the start line after Driver Change are eligible for Efficiency points +b. Other vehicles get zero points +D.13.3.4 Cannot Measure Fuel/Energy Used +The vehicle gets zero points +D.13.4 Efficiency Scoring +D.13.4.1 Conversion Factors +Each fuel or energy used is converted using the factors: +a. Gasoline / Petrol 2.31 kg of CO +2 + per liter +b. E85 1.65 kg of CO +2 + per liter +c. Electric 0.65 kg of CO +2 + per kWh +D.13.4.2 (EV only) Full credit is given for energy recovered through regenerative braking +D.13.4.3 Scoring Term Definitions: +• CO +2 + min - the smallest mass of CO +2 + used by any competitor who is eligible for Efficiency +• CO +2 + your - the mass of CO +2 + used by the team being scored +• Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency +• Tyour - same as Endurance (D.12.13.1) +• Lapyours - the number of laps driven by the team being scored +• Laptotal Tmin and Latptotal CO +2 +min - be the number of laps completed by the teams +which set Tmin and CO +2 +min, respectively +D.13.4.4 The Efficiency Factor is calculated by: + +Efficiency Factor = +Tmin / LapTotal Tmin +X +CO +2 + min / LapTotal CO +2 + min + Tyours / Lap yours CO +2 + your / Lap yours +D.13.4.5 EfficiencyFactor min is calculated using the above formula with: +• CO +2 + your (IC) equivalent to 60.06 kg CO +2 +/100km (based on gasoline 26 ltr/100km) +• CO +2 + your (EV) equivalent to 20.02 kg CO +2 +/100km +• Tyour 1.45 times Tmin + + +Formula SAE® Rules 2025 © 2024 SAE International Page 143 of 143 +Version 1.0 31 Aug 2024 +D.13.4.6 When the team is eligible for Efficiency. the team score is calculated as: + +Efficiency Score = 100 x +Efficiency Factor your - Efficiency Factor min + Efficiency Factor max - Efficiency Factor min +D.14 POST ENDURANCE +D.14.1 Technical Inspection Required +D.14.1.1 After Endurance and refuelling are completed, all vehicles must report to Technical Inspection. +D.14.1.2 Vehicles may then be subject to IN.15 Reinspection +D.14.2 Post Endurance Penalties +D.14.2.1 Penalties may be applied to the Endurance and/or Efficiency events based on: +a. Infractions or issues during the Endurance Event (including D.12.10.4.d) +b. Post Endurance Technical Inspection +c. (EV only) Energy Meter violations EV.3.3, EV.3.5.2 +D.14.2.2 Any imposed penalty will be at the discretion of the officials. +D.14.3 Post Endurance Penalty Guidelines +D.14.3.1 One or more minor violations (rules compliance, but no advantage to team): 15-30 sec +D.14.3.2 Violation which is a potential or actual performance advantage to team: 120-360 sec +D.14.3.3 Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ +D.14.3.4 Team may be DNF or DQ for: +a. Multiple violations involving safety, environment, or performance advantage +b. A single substantial violation + + + \ No newline at end of file From a31c1865fb5d8e92a837db1f7eaefc96109c7323 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Tue, 14 Oct 2025 22:49:40 -0400 Subject: [PATCH 03/25] #3622 FHE parser beginnings --- scripts/document-parser/FHEparser.ts | 233 + scripts/document-parser/fhe_rules.json | 5380 +++++++++ scripts/document-parser/txtVersions/FHE.txt | 11384 ++++++++++++------ 3 files changed, 13038 insertions(+), 3959 deletions(-) create mode 100644 scripts/document-parser/FHEparser.ts create mode 100644 scripts/document-parser/fhe_rules.json diff --git a/scripts/document-parser/FHEparser.ts b/scripts/document-parser/FHEparser.ts new file mode 100644 index 0000000000..9075df713b --- /dev/null +++ b/scripts/document-parser/FHEparser.ts @@ -0,0 +1,233 @@ +import * as fs from 'fs'; +import pdf from 'pdf-parse'; + +interface RuleData { + ruleCode: string; + ruleContent: string; + parentRuleCode?: string; + pageNumber: string; +} + +interface Rule { + ruleCode: string; + ruleContent: string; +} + +interface ParsedOutput { + rules: RuleData[]; + totalRules: number; + generatedAt: string; +} + +class FHERuleParser { + async parsePdf(path: string): Promise<{ rules: RuleData[]; text: string }> { + const filePath = "ruleDocs/" + path; + console.log(`Reading ${filePath}`); + + const dataBuffer = fs.readFileSync(filePath); + const pdfData = await pdf(dataBuffer); + + console.log(`PDF Stats: ${pdfData.numpages} pages, ${pdfData.text.length} characters`); + + const rules = this.extractRules(pdfData.text); + return { rules, text: pdfData.text }; + } + + private extractRules(text: string): RuleData[] { + const rules: RuleData[] = []; + const lines = text.split('\n'); + + let currentRule: { code: string; text: string; pageNumber: string } | null = null; + let currentPageNumber = '1'; + + const saveCurrentRule = () => { + if (currentRule) { + // Check if the rule has lettered sub-items + const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); + + if (subRules.length > 0) { + // Add the main rule and all sub-rules + rules.push(...subRules); + } else { + // No sub-rules, just add the main rule + rules.push({ + ruleCode: currentRule.code, + ruleContent: currentRule.text.trim(), + parentRuleCode: this.findParentRuleCode(currentRule.code), + pageNumber: currentRule.pageNumber, + }); + } + } + }; + + for (const line of lines) { + const trimmedLine = line.trim(); + if (!trimmedLine) continue; + + // Update page number if found + const pageMatch = this.extractPageNumber(trimmedLine); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + // Check if this line starts a new rule + const rule = this.parseRuleNumber(trimmedLine); + if (rule) { + saveCurrentRule(); + + currentRule = { + code: rule.ruleCode, + text: rule.ruleContent, + pageNumber: currentPageNumber, + }; + } else if (currentRule) { + // Append to existing rule + currentRule.text += ' ' + trimmedLine; + } + } + + saveCurrentRule(); + return rules; + } + + /** + * Extracts bulleted child rules (a, b, c, etc.) from a rule's content + * and adds them as separate rules + * @param ruleCode The parent rule code (e.g., "EV.5.2.2") + * @param content The full rule content + * @param pageNumber The page number + * @returns Array of RuleData including the main rule and new subrules + */ + private extractSubRules(ruleCode: string, content: string, pageNumber: string): RuleData[] { + const subRules: RuleData[] = []; + + // Pattern for lettered bullets like "a. Some text" or "b. Some text" + const letterPattern = /\s+([a-z])\.\s+/g; + const matches = [...content.matchAll(letterPattern)]; + + if (matches.length === 0) { + // No sub-rules found + return []; + } + + // Extract the main rule content (everything before the first lettered item) + const firstMatchIndex = matches[0].index!; + const mainContent = content.substring(0, firstMatchIndex).trim(); + + // Add the main rule + subRules.push({ + ruleCode: ruleCode, + ruleContent: mainContent, + parentRuleCode: this.findParentRuleCode(ruleCode), + pageNumber: pageNumber, + }); + + // Extract the lettered sub-rules + for (let i = 0; i < matches.length; i++) { + const letter = matches[i][1]; + const startIndex = matches[i].index! + matches[i][0].length; + + // Find where this sub-rule ends (either at next letter or end of rule content) + const endIndex = i < matches.length - 1 + ? matches[i + 1].index! + : content.length; + + const subRuleContent = content.substring(startIndex, endIndex).trim(); + const subRuleCode = `${ruleCode}.${letter}`; + + subRules.push({ + ruleCode: subRuleCode, + ruleContent: subRuleContent, + parentRuleCode: ruleCode, + pageNumber: pageNumber, + }); + } + return subRules; + } + + private parseRuleNumber(line: string): Rule | null { + // Match FHE rule patterns like "1T3.17.1" followed by text + const rulePattern = /^(\d+[A-Z]+\d+(?:\.\d+)*)\s+(.+)$/; + + // "PART A1 - ADMINISTRATIVE REGULATIONS" + const partPattern = /^(PART\s+[A-Z0-9]+)\s+-\s+(.+)$/; + + // "ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW" + const articlePattern = /^(ARTICLE\s+[A-Z]+\d+)\s+(.+)$/; + + let match = line.match(rulePattern) || line.match(partPattern) || line.match(articlePattern); + if (match) { + return { + ruleCode: match[1], + ruleContent: match[2] + }; + } + + return null; + } + + + + /** + * Looks for page indicators like "Page 5 of 143" + * @param line current rule line being observed + * @returns the page number if found, otherwise null + */ + private extractPageNumber(line: string): string | null { + const pagePattern = /Page\s+(\d+)\s+of\s+\d+/i; + const match = line.match(pagePattern); + + if (match) { + return match[1]; + } + return null; + } + + private findParentRuleCode(ruleCode: string): string | undefined { + const parts = ruleCode.split('.'); + if (parts.length <= 1) { + return undefined; + } + const parentParts = parts.slice(0, -1); + return parentParts.join('.'); + } + + async saveToJSON(rules: RuleData[], outputPath: string = './fhe_rules.json'): Promise { + const output: ParsedOutput = { + rules: rules, + totalRules: rules.length, + generatedAt: new Date().toISOString() + }; + + fs.writeFileSync(outputPath, JSON.stringify(output, null, 2), 'utf-8'); + console.log(`Saved ${rules.length} rules to ${outputPath}`); + } + + async saveToTxt(text: string): Promise { + const txtPath = './txtVersions/FHE.txt'; + fs.writeFileSync(txtPath, text, 'utf-8'); + console.log(`Saved text version to ${txtPath}`); + } +} + +async function main(): Promise { + const filePath = process.argv[2]; + const outputFile = process.argv[3] || './fhe_rules.json'; + const parser = new FHERuleParser(); + + try { + const { rules, text } = await parser.parsePdf(filePath); + await parser.saveToJSON(rules, outputFile); + await parser.saveToTxt(text); + } catch (error) { + console.error('Error:', error); + process.exit(1); + } +} + +if (require.main === module) { + main(); +} + +export { FHERuleParser }; \ No newline at end of file diff --git a/scripts/document-parser/fhe_rules.json b/scripts/document-parser/fhe_rules.json new file mode 100644 index 0000000000..5a2296e194 --- /dev/null +++ b/scripts/document-parser/fhe_rules.json @@ -0,0 +1,5380 @@ +{ + "rules": [ + { + "ruleCode": "PART EV", + "ruleContent": "EV10.4.1 AMS Test Typo (changed (“three” to “two”)", + "pageNumber": "1" + }, + { + "ruleCode": "PART EV", + "ruleContent": "EV10.4.1 AMS Test – point 2 Clarification EV12.2.6 Charger Inspection Chargers must be reviewed EV12.2.15 Charging External Charger Safety", + "pageNumber": "1" + }, + { + "ruleCode": "PART EV", + "ruleContent": "ARTICLE EV14 Acronyms SSOK changed to ESOK 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Table 8 Voltage and Energy Limits Changes to maximum GLV Figure 37CAN watchdog Added CAN watchdog failure Figure 37Acronym SSOK changed to ESOK (see EV14) Figure 37Shutdown Sources Fixed typo (“coclpit” to “cockpit”) Figure 37Shutdown Sources Far right row corrected to all “yes” EV9.3.3. Shutdown Sources Section Removed 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Advice from Our Rules Committee Formula Hybrid + Electric’s Rules Committee welcomes you to the most challenging of the SAE Collegiate Design Series competitions. Many of us are former Formula Hybrid + Electric competitors who are now professionals in the engineering industry. We have two goals: to have a safe competition and to see every team on the track. Top 10 Tips for Building a Formula Hybrid + Electric Racecar and Passing Tech Inspection Start work early. Everything takes longer than you expect. Consider starting from an existing FSAE chassis and concentrating on the powertrain. Read all rules carefully. If you don’t understand something, ask us for clarification. Use the Project Management techniques and tools. They will make life easier—and will help you as engineers. Most importantly, they will help you arrive at the competition with a finished car. Take advantage of our Mentor Program. These experts will help you solve issues—and will be valuable career contacts. Your car should be running on its own power at least a month prior to competition. Make brake testing an early priority. Take advantage of the extra day of electrical tech inspection on Sunday. That will give you extra time if you need to make modifications. This is also a good time to have your documentation reviewed. Watch out for the rules tagged with the \"attention\" symbol. These rules have a history of tripping up teams. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Index RULES CHANGES FOR 2025 III", + "pageNumber": "1" + }, + { + "ruleCode": "PART A", + "ruleContent": "ADMINISTRATIVE REGULATIONS 1", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A1", + "ruleContent": "1 A1.1 1 A1.2 1 A1.3 2 A1.4 2 A1.5 2", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A2", + "ruleContent": "3 A2.1 3 A2.2 3 A2.3 3 A2.4 4 A2.5 4", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A3", + "ruleContent": "4 A3.1 4 A3.2 4 A3.3 4", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A4", + "ruleContent": "5 A4.1 5 A4.2 5 A4.3 5 A4.4 5 A4.5 5 A4.6 5 A4.7 5 A4.8 6", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A5", + "ruleContent": "6 A5.2 6 A5.3 6 INDIVIDUAL PARTICIPATION REQUIREMENTS 7 A5.4 7 A5.5 7 A5.6 7 A5.7 7 A5.8 7 A5.9 8 A5.10 8 A5.11 8", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A6", + "ruleContent": "8 A6.1 8 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 A6.2 8 A6.3 9 A6.4 9", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A7", + "ruleContent": "10 A7.1 10 A7.2 10 A7.3 10 A7.4 10 A7.5 10 A7.6 11", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A8", + "ruleContent": "11 A8.1 11 A8.2 11 A8.3 11", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A9", + "ruleContent": "11 A9.1 11 A9.2 12 A9.3 12 A9.4 13", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A10", + "ruleContent": "15", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A11", + "ruleContent": "15 A11.1 15 A11.2 15 A11.3 15 A11.4 15 A11.5 16 A11.6 16", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A12", + "ruleContent": "16 A12.1 16 A12.2 16 A12.3 16 A12.4 16 A12.5 17 A12.6 17", + "pageNumber": "1" + }, + { + "ruleCode": "PART T", + "ruleContent": "GENERAL TECHNICAL REQUIREMENTS 18", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T1", + "ruleContent": "18 T1.1 18 T1.2 18", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T2", + "ruleContent": "19 T2.1 19 T2.2 19 T2.3 20 T2.4 20 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 T2.5 20", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T3", + "ruleContent": "20 T3.1 20 T3.2 20 T3.3 21 T3.4 23 T3.5 23 T3.6 24 T3.7 24 T3.8 24 T3.9 25 T3.10 28 T3.11 28 T3.12 29 T3.13 30 T3.14 30 T3.15 30 T3.16 30 T3.17 32 T3.18 32 T3.19 32 T3.20 32 T3.21 34 T3.22 35 T3.23 35 T3.24 36 T3.25 37 T3.26 37 T3.27 37 T3.28 37 T3.29 38 T3.30 38 T3.31 39 T3.32 39 T3.33 39 T3.34 40 T3.35 40 T3.36 40 T3.37 40 T3.38 40 T3.39 41 T3.40 41", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T4", + "ruleContent": "42 T4.1 42 T4.2 43 T4.3 44 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 T4.4 44 T4.5 44 T4.6 46 T4.7 46 T4.8 47 T4.9 47", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T5", + "ruleContent": "47 T5.1 47 T5.2 48 T5.3 49 T5.4 50 T5.5 51 T5.6 53 T5.7 54 T5.8 54", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T6", + "ruleContent": "54 T6.1 54 T6.2 54 T6.3 54 T6.4 54 T6.5 55 T6.6 56 T6.7 56", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T7", + "ruleContent": "56 T7.1 56 T7.2 57 T7.3 57 T7.4 58", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T8", + "ruleContent": "58 T8.1 58 T8.2 59 T8.3 59 T8.4 59 T8.5 60", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T9", + "ruleContent": "61 T9.1 61 T9.2 61 T9.3 61 T9.4 61 T9.5 61 T9.6 61", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T10", + "ruleContent": "61 T10.1 61 T10.2 62 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T11", + "ruleContent": "62 T11.1 62 T11.2 63", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T12", + "ruleContent": "64 T12.1 64 T12.2 64", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T13", + "ruleContent": "65 T13.1 65 T13.2 65 T13.3 66 T13.4 66", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T14", + "ruleContent": "66 T14.1 66 T14.2 66 T14.3 66 T14.4 66 T14.5 67 T14.6 68 T14.7 68 T14.8 68 T14.9 68 T14.10 68 T14.11 68 T14.12 68 T14.13 68", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T15", + "ruleContent": "68 T15.1 68 T15.2 69 T15.3 69 T15.4 69 T15.5 69 T15.6 69 T15.7 69", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T16", + "ruleContent": "69 T16.1 69", + "pageNumber": "1" + }, + { + "ruleCode": "PART IC", + "ruleContent": "INTERNAL COMBUSTION ENGINE 69", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE IC1", + "ruleContent": "70 IC1.1 70 IC1.2 70 IC1.3 70 IC1.4 71 IC1.5 71 IC1.6 72 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IC1.7 73 IC1.8 73 IC1.9 73 IC1.10 74 IC1.11 74", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE IC2", + "ruleContent": "74 IC2.1 74 IC2.2 75 IC2.3 75 IC2.4 75 IC2.5 75 IC2.6 75 IC2.7 76 IC2.8 76", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE IC3", + "ruleContent": "76 IC3.1 76 IC3.2 77 IC3.3 77 IC3.4 77", + "pageNumber": "1" + }, + { + "ruleCode": "PART EV", + "ruleContent": "ELECTRICAL POWERTRAINS AND SYSTEMS 78", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV1", + "ruleContent": "78 EV1.1 78 EV1.2 79", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV2", + "ruleContent": "80 EV2.1 80 EV2.2 80 EV2.3 80 EV2.4 81 EV2.5 82 EV2.6 82 EV2.7 84 EV2.8 85 EV2.9 86 EV2.10 87 EV2.11 88 EV2.12 90", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV3", + "ruleContent": "92 EV3.1 92 EV3.2 93 EV3.3 94 EV3.4 95 EV3.5 96 EV3.6 97 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV4", + "ruleContent": "98 EV4.1 98", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV5", + "ruleContent": "99 EV5.1 99 EV5.2 99 EV5.3 99 EV5.4 100 EV5.5 101", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV6", + "ruleContent": "103", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV7", + "ruleContent": "104 EV7.1 104 EV7.2 106 EV7.3 107 EV7.4 107 EV7.5 108 EV7.6 108 EV7.7 109 EV7.8 109 EV7.9 110", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV8", + "ruleContent": "112 EV8.1 112", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV9", + "ruleContent": "113 EV9.1 113 EV9.2 113 EV9.3 114 EV9.4 114 EV9.5 114 EV9.6 115", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV10", + "ruleContent": "116 EV10.1 116 EV10.2 116 EV10.3 116 EV10.4 118 EV10.5 118", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV11", + "ruleContent": "120 EV11.1 120 EV11.2 120", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV12", + "ruleContent": "121 EV12.1 121 EV12.2 121 EV12.3 122 EV12.4 122", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV13", + "ruleContent": "124 EV13.1 124 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV13.2 124", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV14", + "ruleContent": "125", + "pageNumber": "1" + }, + { + "ruleCode": "PART S", + "ruleContent": "STATIC EVENTS 126", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE S1", + "ruleContent": "127 S1.1 127 S1.2 127 S1.3 127 S1.4 127 S1.5 128 S1.6 128", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE S2", + "ruleContent": "129 S2.1 129 S2.2 129 S2.3 129 S2.4 130 S2.5 131 S2.6 131 S2.7 131 S2.8 132 S2.9 132 S2.10 132", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE S3", + "ruleContent": "133 S3.1 133 S3.2 133 S3.3 134 S3.4 134 S3.5 134 S3.6 135 S3.7 135 S3.8 135 S3.9 135 S3.10 135 S3.11 135 S3.12 135 S3.13 136 S3.14 136", + "pageNumber": "1" + }, + { + "ruleCode": "PART D", + "ruleContent": "DYNAMIC EVENTS 137", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D1", + "ruleContent": "137 D1.1 137 D1.2 137 D1.3 137 D1.4 137 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D2", + "ruleContent": "138", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D3", + "ruleContent": "138 D3.1 138 D3.2 138 D3.3 138 D3.4 138 D3.5 138 D3.6 138 D3.7 138 D3.8 138", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D4", + "ruleContent": "140 D4.1 140", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D5", + "ruleContent": "140 D5.1 140 D5.2 140 D5.4 140 D5.5 141 D5.6 141 D5.7 141 D5.8 141 D5.9 141", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D6", + "ruleContent": "141 D6.1 141 D6.2 142 D6.3 142 D6.4 142 D6.5 143 D6.6 143 D6.7 143", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D7", + "ruleContent": "143 D7.1 143 D7.2 143 D7.3 144 D7.4 144 D7.5 144 D7.6 144 D7.7 145 D7.8 145 D7.9 145 D7.10 145 D7.11 145 D7.12 145 D7.13 146 D7.14 147 D7.15 147 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 D7.16 147 D7.17 147 D7.18 149 D7.19 150 D7.20 150 D7.21 150 D7.22 150 D7.23 150", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D8", + "ruleContent": "152 D8.1 152 D8.2 152 D8.3 152 D8.4 152 D8.5 152 D8.6 152 D8.7 153", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D9", + "ruleContent": "153 D9.1 153 D9.2 153 D9.3 153 D9.4 153 D9.5 153 D9.6 153 D9.7 154", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D10", + "ruleContent": "154 D10.1 154 D10.2 154 D10.3 154 D10.4 154 D10.5 155 D10.6 155 D10.7 155 D10.8 155", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D11", + "ruleContent": "155 D11.1 155 D11.2 155 D11.3 155 D11.4 155", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D12", + "ruleContent": "156 APPENDIX A 157 APPENDIX B 158 APPENDIX C 160 APPENDIX D 170 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 APPENDIX E 171 APPENDIX F 172 APPENDIX G 173 APPENDIX H 174 APPENDIX I 175 Index of Figures FIGURE 1 - FORMULA HYBRID + ELECTRIC SUPPORT PAGE 16 FIGURE 2 - OPEN WHEEL DEFINITION 19 FIGURE 3 - TRIANGULATION 21 FIGURES FROM TOP: 4A, 4B, AND 4C- ROLL HOOPS AND HELMET CLEARANCE 26 FIGURE 5 - PERCY -- 95TH PERCENTILE MALE WITH HELMET 26 FIGURE 6 – 95TH PERCENTILE TEMPLATE POSITIONING 27 FIGURE 7 - MAIN AND FRONT HOOP BRACING 29 FIGURE 8 – DOUBLE-LUG JOINT 30 FIGURE 9 – DOUBLE LUG JOINT 30 FIGURE 10 – SLEEVED BUTT JOINT 30 FIGURE 11 – SIDE IMPACT STRUCTURE 35 FIGURE 12 – SIDE IMPACT ZONE DEFINITION FOR A MONOCOQUE 39 FIGURE 13 – ALTERNATE SINGLE BOLT ATTACHMENT 40 FIGURE 14 – COCKPIT OPENING TEMPLATE 41 FIGURE 15 – COCKPIT INTERNAL CROSS SECTION TEMPLATE 42 FIGURE 16 – EXAMPLES OF FIREWALL CONFIGURATIONS 45 FIGURE 17 - SEAT BELT THREADING EXAMPLES 48 FIGURE 18 – LAP BELT ANGLES WITH UPRIGHT DRIVER 49 FIGURE 19 – SHOULDER HARNESS MOUNTING – TOP VIEW 50 FIGURE 20 - SHOULDER HARNESS MOUNTING – SIDE VIEW 50 FIGURE 21 – OVER-TRAVEL SWITCHES 57 FIGURE 22 - FINAL DRIVE SCATTER SHIELD EXAMPLE 59 FIGURE 23 - EXAMPLES OF POSITIVE LOCKING NUTS 62 FIGURE 24 - EXAMPLE CAR NUMBER 64 FIGURE 25- SURFACE ENVELOPE 70 FIGURE 26 – HOSE CLAMPS 73 FIGURE 27 - FILLER NECK 75 FIGURE 28 - ACCUMULATOR STICKER 80 FIGURE 29 - EXAMPLE NP3S CONFIGURATION 83 FIGURE 30 – EXAMPLE 5S4P CONFIGURATION 84 FIGURE 31 - EXAMPLE ACCUMULATOR SEGMENTING 86 FIGURE 32 - VIRTUAL ACCUMULATOR EXAMPLE 91 FIGURE 33 - FINGER PROBE 92 FIGURE 34 - HIGH VOLTAGE LABEL 92 FIGURE 35 - CONNECTION STACK-UP 95 FIGURE 36 – CREEPAGE DISTANCE EXAMPLE 101 FIGURE 37 - PRIORITY OF SHUTDOWN SOURCES 104 FIGURE 38 - EXAMPLE MASTER SWITCH AND SHUTDOWN CIRCUIT CONFIGURATION 106 FIGURE 39 - TYPICAL MASTER SWITCH 107 FIGURE 40 - INTERNATIONAL KILL SWITCH SYMBOL 108 FIGURE 41 - EXAMPLE SHUTDOWN STATE DIAGRAM 110 FIGURE 42 – TYPICAL ESOK LAMP 114 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 FIGURE 43 – INSULATION MONITORING DEVICE TEST 116 FIGURE 44 118 FIGURE 45 - PLOT OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 159 FIGURE 46 - SCORING GUIDELINES: PROJECT PLAN COMPONENT 164 FIGURE 47: CHANGE MANAGEMENT REPORT SCORING GUIDELINES 166 FIGURE 48 – EVALUATION CRITERIA 168 FIGURE 49 - PROJECT MANAGEMENT SCORING SHEET 169 FIGURE 50 - LATCHING FOR ACTIVE-HIGH OUTPUT FIGURE 51 - LATCHING FOR ACTIVE-LOW OUTPUT 173 Index of Tables TABLE 1 – 2024 ENERGY AND ACCUMULATOR LIMITS 1 TABLE 2 - EVENT POINTS 2 TABLE 3 - REQUIRED DOCUMENTS 12 TABLE 4 - BASELINE STEEL 22 TABLE 5 - STEEL TUBING MINIMUM WALL THICKNESSES 23 TABLE 6 - 95TH PERCENTILE MALE TEMPLATE DIMENSIONS 25 TABLE 7 – SFI / FIA STANDARDS LOGOS 66 TABLE 8 - VOLTAGE AND ENERGY LIMITS 79 TABLE 9 - AMS VOLTAGE MONITORING 89 TABLE 10 – AMS TEMPERATURE MONITORING 89 TABLE 11 - RECOMMENDED TS CONNECTION FASTENERS 96 TABLE 12 – MINIMUM SPACINGS 100 TABLE 13 - INSULATING MATERIAL - MINIMUM TEMPERATURES AND THICKNESSES 100 TABLE 14 – PCB TS/GLV SPACINGS 102 TABLE 15 – STATIC EVENT MAXIMUM SCORES 126 TABLE 16 - PROJECT MANAGEMENT SCORING 129 TABLE 17 - DYNAMIC EVENT MAXIMUM SCORES 137 TABLE 18 - FLAGS 151 TABLE 19 - ACCUMULATOR DEVICE ENERGY CALCULATIONS 157 TABLE 20 - FUEL ENERGY EQUIVALENCIES 157 TABLE 21 - EXAMPLE OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 158 TABLE 22 – WIRE CURRENT CAPACITY (SINGLE CONDUCTOR IN AIR) 171 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "PART A1", + "ruleContent": "ADMINISTRATIVE REGULATIONS", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A1", + "ruleContent": "FORMULA HYBRID + ELECTRIC OVERVIEW AND COMPETITION", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.1", + "ruleContent": "Formula Hybrid + Electric Competition Objective", + "parentRuleCode": "1A1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.1.1", + "ruleContent": "The Formula Hybrid + Electric competition challenges teams of university undergraduate and graduate students to conceive, design, fabricate, develop and compete with small, formula- style, hybrid-powered and electric cars.", + "parentRuleCode": "1A1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.1.2", + "ruleContent": "The Formula Hybrid + Electric competition is intended as an educational program requiring students to work across disciplinary boundaries, such as those of electrical and mechanical engineering.", + "parentRuleCode": "1A1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.1.3", + "ruleContent": "To give teams the maximum design flexibility and the freedom to express their creativity and imagination there are very few restrictions on the overall vehicle design apart from the requirement for a mechanical/electrical hybrid or electric-only drivetrain.", + "parentRuleCode": "1A1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.1.4", + "ruleContent": "Teams typically spend eight to twelve months designing, building, testing and preparing their vehicles before a competition. The competitions themselves give teams the chance to demonstrate and prove both their creativity and their engineering skills in comparison to teams from other universities around the world.", + "parentRuleCode": "1A1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.2", + "ruleContent": "Energy Limits", + "parentRuleCode": "1A1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.2.1", + "ruleContent": "Competitiveness and high efficiency designs are encouraged through limits on accumulator capacities and the amount of energy that a team has available to complete the endurance event.", + "parentRuleCode": "1A1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.2.2", + "ruleContent": "The accumulator capacities and endurance energy allocation will be reviewed by the Formula Hybrid + Electric rules committee each year, and posted as early in the season as possible. Hybrid (and Hybrid In Progress) Endurance Energy Allocation 31.25 MJ Maximum Accumulator Capacity 4,449 Wh Electric Maximum Accumulator Capacity 5,400 Wh Table 1 – 2024 Energy and Accumulator Limits", + "parentRuleCode": "1A1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.2.3", + "ruleContent": "Vehicles may run with accumulator capacities greater than the Table 1 value if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted. See also D7.5.1- Energy for Endurance Event.", + "parentRuleCode": "1A1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.2.4", + "ruleContent": "Accumulator capacities are calculated as: Energy (Wh) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 80% Segment Energy (Table 8) is calculated as Energy (MJ) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 0.0036. See Appendix A for energy calculations for capacitors. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.3", + "ruleContent": "Vehicle Design Objectives For the purpose of this competition, the students are to assume that a manufacturing firm has engaged them to design, fabricate and demonstrate a prototype hybrid-electric or all electric vehicle for evaluation as a production item. The intended market is the nonprofessional weekend autocross competitor. Therefore, the car must balance exceptional performance with fuel efficiency. Performance will be evaluated in terms of its acceleration, braking, and handling qualities. Fuel efficiency will be evaluated during the 44 km endurance event. The car must be easy to maintain and reliable. It should accommodate drivers whose stature varies from a 5th percentile female to a 95th percentile male. In addition, the car’s marketability is enhanced by other factors such as aesthetics, comfort and use of common parts. The manufacturing firm is planning to produce four (4) cars per day for a limited production run. The challenge to the design team is to develop a prototype car that best meets these goals and intents. Each design will be compared and judged with other competing designs to determine the best overall car.", + "parentRuleCode": "1A1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.4", + "ruleContent": "Good Engineering Practices", + "parentRuleCode": "1A1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.4.1", + "ruleContent": "Vehicles entered into Formula Hybrid + Electric competitions are expected to be designed and fabricated in accordance with good engineering practices. Note in particular, that the high-voltage electrical systems in a Formula Hybrid + Electric car present health and safety risks unique to a hybrid/electric vehicle, and that carelessness or poor engineering can result in serious injury or death.", + "parentRuleCode": "1A1.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.4.2", + "ruleContent": "The organizers have produced several advisory publications that are available on the Formula Hybrid + Electric website. It is expected that all team members will familiarize themselves with these publications, and will apply the information in them appropriately.", + "parentRuleCode": "1A1.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.5", + "ruleContent": "Judging Categories The cars are judged in a series of static and dynamic events including: technical inspections, project management skills, engineering design, solo performance trials, and high-performance track endurance. These events are scored to determine how well the car performs. Static Events Project Management 150 Engineering Design 200 Virtual Racing Challenge 1 0 Dynamic Events Acceleration 100 Autocross 200 Endurance 350 Total Points 1000 Table 2 - Event Points 1 Virtual Racing Challenge will be awarded trophies without points going towards the Event Points 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A1", + "pageNumber": "1" + }, + { + "ruleCode": "1A1.5.1", + "ruleContent": "A team’s final score will equal the sum of their event scores plus or minus penalty and/or bonus points. Note: If a team’s penalty points exceed the sum of their event scores, their final score will be Zero (0). i.e. negative final scores will not be given.", + "parentRuleCode": "1A1.5", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A2", + "ruleContent": "FORMULA HYBRID + ELECTRIC VEHICLE CATEGORIES", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.1", + "ruleContent": "Hybrid", + "parentRuleCode": "1A2", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.1.1", + "ruleContent": "A Hybrid vehicle is defined as a vehicle using a propulsion system which comprises both a 4- stroke Internal Combustion Engine (ICE) and electrical storage (accumulator) with electric motor drive.", + "parentRuleCode": "1A2.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.1.2", + "ruleContent": "A hybrid drive system may deploy the ICE and electric motor(s) in any configuration, including series and/or parallel. Coupling through the road surface is permitted.", + "parentRuleCode": "1A2.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.1.3", + "ruleContent": "To qualify as a hybrid, vehicles must have a drive system utilizing one or more electric motors with a minimum continuous power rating of 2.5 kW (sum total of all motors) and one or more I.C engines with a minimum (sum total) power rating of 2.5 kW.", + "parentRuleCode": "1A2.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.2", + "ruleContent": "Electric An Electric vehicle is defined as a vehicle wherein the accumulator is charged from an external electrical source (and/or through regenerative braking) and propelled by electric drive only. There is no minimum power requirement for electric-only drive motors.", + "parentRuleCode": "1A2", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.3", + "ruleContent": "Hybrid in Progress (HIP) A Hybrid-in-Progress is a not-yet-completed hybrid vehicle, which includes both an internal combustion engine and electric motor. Note: The purpose of the HIP category is to give teams that are on a 2-year development/build cycle an opportunity to enter and compete their vehicle alongside the regular entries. The HIP is regarded, for all scoring purposes, as a hybrid, but will run the dynamic events on electric power only.", + "parentRuleCode": "1A2", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.3.1", + "ruleContent": "To qualify as an HIP, a vehicle must have been designed, and intended for completion as a hybrid vehicle.", + "parentRuleCode": "1A2.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.3.2", + "ruleContent": "Teams planning to enter a vehicle in the HIP category will initially register as a Hybrid. To change to the HIP category, the team must submit a request to the organizers in writing before the start of the design event. Note: The advantages of entering as an HIP are: (a) Receive a full technical inspection of the vehicle and electrical drive systems. (b) Participate in all the competition events. (Provided tech inspection is passed). (c) Receive feedback from the design judges. Note: Teams can maximize the benefits of an HIP entry by including the full-hybrid designs in their document submissions and design event presentations, as well as including the full multi- year program in their Project Management materials. (d) When the vehicle is completed and entered as a hybrid, in a subsequent competition, it is considered an all-new vehicle, and not a second-year entry. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A2.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.4", + "ruleContent": "Static Events Only (SEO)", + "parentRuleCode": "1A2", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.4.1", + "ruleContent": "SEO is a category that may only be declared after arrival at the competition. All teams must initially register as either Hybrid/HIP or Electric.", + "parentRuleCode": "1A2.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.4.2", + "ruleContent": "A team may declare themselves as SEO and participate in the design 2 and other static events even if the vehicle is in an unfinished state. (a) An SEO vehicle may not participate in any of the dynamic events. (b) An SEO vehicle may continue the technical inspection process, but will be given a lower priority than the non-SEO teams.", + "parentRuleCode": "1A2.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.4.3", + "ruleContent": "An SEO declaration must be submitted in writing to the organizers before the scheduled start of the design events.", + "parentRuleCode": "1A2.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.4.4", + "ruleContent": "A vehicle that declares SEO in one year, will not be penalized by the design judges as a multi- year vehicle the following year per A7.5.", + "parentRuleCode": "1A2.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.5", + "ruleContent": "Electric vs. Hybrid Vehicles", + "parentRuleCode": "1A2", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.5.1", + "ruleContent": "The Electric and Hybrid categories are separate. Although they compete in the same events, and may be on the endurance course at the same time, they are scored separately and receive separate awards.", + "parentRuleCode": "1A2.5", + "pageNumber": "1" + }, + { + "ruleCode": "1A2.5.2", + "ruleContent": "The event scoring formulas will maintain separate baselines (T max , T min ) for Hybrid and Electric categories. Note: Electric vehicles, because they are not carrying the extra weight of engines and generating systems, may demonstrate higher performances in some of the dynamic events. Design scores should not be compared, as the engineering challenge between the two classes is different and scored accordingly.", + "parentRuleCode": "1A2.5", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A3", + "ruleContent": "THE FORMULA HYBRID + ELECTRIC COMPETITION", + "pageNumber": "1" + }, + { + "ruleCode": "1A3.1", + "ruleContent": "Open Registration The Formula Hybrid + Electric Competition has an open registration policy and will accept registrations by student teams representing universities in any country.", + "parentRuleCode": "1A3", + "pageNumber": "1" + }, + { + "ruleCode": "1A3.2", + "ruleContent": "Official Announcements and Competition Information", + "parentRuleCode": "1A3", + "pageNumber": "1" + }, + { + "ruleCode": "1A3.2.1", + "ruleContent": "Teams should read any newsletters published by SAE or Formula Hybrid + Electric and to be familiar with all official announcements concerning the competition and rules interpretations released by the Formula Hybrid + Electric Rules Committee.", + "parentRuleCode": "1A3.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A3.2.2", + "ruleContent": "Formula Hybrid + Electric posts announcements to the “Announcements” page of the Formula Hybrid + Electric website at https://www.formula-hybrid.org/announcements", + "parentRuleCode": "1A3.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A3.3", + "ruleContent": "Official Language The official language of the Formula Hybrid + Electric competition is English. 2 Provided the team has met the document submission requirements of A9.3(c) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A3", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A4", + "ruleContent": "FORMULA HYBRID + ELECTRIC RULES AND ORGANIZER AUTHORITY", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.1", + "ruleContent": "Rules Authority", + "parentRuleCode": "1A4", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.1.1", + "ruleContent": "The Formula Hybrid + Electric Rules are the responsibility of the Formula Hybrid + Electric Rules Committee and are issued under the authority of the SAE Collegiate Design Series Committee. Official announcements from the Formula Hybrid + Electric Rules Committee are to be considered part of, and have the same validity as, these rules.", + "parentRuleCode": "1A4.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.1.2", + "ruleContent": "Ambiguities or questions concerning the meaning or intent of these rules will be resolved by the Formula Hybrid + Electric Rules Committee, SAE or by the individual competition organizers as appropriate. (See ARTICLE A12)", + "parentRuleCode": "1A4.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.2", + "ruleContent": "Rules Validity The Formula Hybrid + Electric Rules posted on the Formula Hybrid + Electric website and dated for the calendar year of the competition are the rules in effect for the competition. Rule sets dated for other years are invalid.", + "parentRuleCode": "1A4", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.3", + "ruleContent": "Rules Compliance", + "parentRuleCode": "1A4", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.3.1", + "ruleContent": "By entering a Formula Hybrid + Electric competition the team, members of the team as individuals, faculty advisors and other personnel of the entering university agree to comply with, and be bound by, these rules and all rule interpretations or procedures issued or announced by SAE, the Formula Hybrid + Electric Rules Committee or the organizers.", + "parentRuleCode": "1A4.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.3.2", + "ruleContent": "Any rules or regulations pertaining to the use of the competition site by teams or individuals and which are posted, announced and/or otherwise publicly available are incorporated into these rules by reference. As examples, all event site waiver requirements, speed limits, parking and facility use rules apply to Formula Hybrid + Electric participants.", + "parentRuleCode": "1A4.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.3.3", + "ruleContent": "All team members, faculty advisors and other university representatives are required to cooperate with, and follow all instructions from, competition organizers, officials and judges.", + "parentRuleCode": "1A4.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.4", + "ruleContent": "Understanding the Rules Teams, team members as individuals and faculty advisors, are responsible for reading and understanding the rules in effect for the competition in which they are participating.", + "parentRuleCode": "1A4", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.5", + "ruleContent": "Participating in the Competition Teams, team members as individuals, faculty advisors and other representatives of a registered university who are present on-site at a competition are considered to be “participating in the competition” from the time they arrive at the event site until they depart the site at the conclusion of the competition or earlier by withdrawing.", + "parentRuleCode": "1A4", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.6", + "ruleContent": "Violations of Intent", + "parentRuleCode": "1A4", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.6.1", + "ruleContent": "The violation of intent of a rule will be considered a violation of the rule itself.", + "parentRuleCode": "1A4.6", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.6.2", + "ruleContent": "Questions about the intent or meaning of a rule may be addressed to the Formula Hybrid + Electric Rules Committee or by the individual competition organizers as appropriate.", + "parentRuleCode": "1A4.6", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.7", + "ruleContent": "Right to Impound SAE and other competition organizing bodies reserve the right to impound any onsite registered vehicles at any time during a competition for inspection and examination by the organizers, officials and technical inspectors. The organizers may also impound any equipment deemed hazardous by the technical inspectors. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A4", + "pageNumber": "1" + }, + { + "ruleCode": "1A4.8", + "ruleContent": "Restriction on Vehicle Use Teams are cautioned that the vehicles designed in compliance with these Formula Hybrid + Electric Rules are intended for competition operation only at the official Formula Hybrid + Electric competitions.", + "parentRuleCode": "1A4", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A5", + "ruleContent": "RULES FORMAT AND USE", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.1.1", + "ruleContent": "Definition of Terms Must - designates a requirement Must NOT - designates a prohibition or restriction Should - gives an expectation May - gives permission, not a requirement and not a recommendation", + "parentRuleCode": "1A5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.1.2", + "ruleContent": "Capitalized Terms Items or areas which have specific definitions or are covered by specific rules are capitalized. For example, “Rules Questions” or “Primary Structure”.", + "parentRuleCode": "1A5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.1.3", + "ruleContent": "Headings The article, section and paragraph headings in these rules are provided only to facilitate reading: they do not affect the paragraph contents.", + "parentRuleCode": "1A5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.1.4", + "ruleContent": "Applicability Unless otherwise designated, all rules apply to all vehicles at all times.", + "parentRuleCode": "1A5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.1.5", + "ruleContent": "Figures and Illustrations Figures and illustrations give clarification or guidance, but are rules only when referred to in the text of a rule.", + "parentRuleCode": "1A5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.1.6", + "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes.", + "parentRuleCode": "1A5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.2", + "ruleContent": "General Authority SAE and the competition organizing bodies reserve the right to revise the schedule of any competition and/or interpret or modify the competition rules at any time and in any manner that is, in their sole judgment, required for the efficient operation of the event or the Formula Hybrid + Electric series as a whole.", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.3", + "ruleContent": "SAE Technical Standards Access", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.3.1", + "ruleContent": "A cooperative program of SAE International University Programs and Technical Standards Board is making some of SAE’s Technical Standards available to teams registered for any SAE International hosted competition at no cost. A list of accessible standards can be found online www.fsaeonline.com and accessed under the team’s registration online www.sae.org. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 INDIVIDUAL PARTICIPATION REQUIREMENTS", + "parentRuleCode": "1A5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.4", + "ruleContent": "Eligibility Limits Eligibility is limited to undergraduate and graduate students to ensure that this is an engineering design competition.", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.5", + "ruleContent": "Student Status", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.5.1", + "ruleContent": "Team members must be enrolled as degree seeking undergraduate or graduate students in the college or university of the team with which they are participating. Team members who have graduated during the twelve (12) month period prior to the competition remain eligible to participate.", + "parentRuleCode": "1A5.5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.5.2", + "ruleContent": "Teams which are formed with members from two or more Universities are treated as a single team. A student at any University making up the team may compete at any event where the team participates. The multiple Universities are in effect treated as one University with two campuses and all eligibility requirements are enforced.", + "parentRuleCode": "1A5.5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.6", + "ruleContent": "Society Membership", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.6.1", + "ruleContent": "Team members must be members of at least one of the following societies: (a) SAE (b) IEEE (c) SAE Australasia (d) SAE Brazil (e) ATA (f) IMechE (g) VDI", + "parentRuleCode": "1A5.6", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.6.2", + "ruleContent": "Proof of membership, such as membership card, is required at the competition. Students who are members of one of the societies listed above are not required to join any of the other societies in order to participate in the Formula Hybrid + Electric competition.", + "parentRuleCode": "1A5.6", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.6.3", + "ruleContent": "Students can join SAE at: http://www.sae.org/students IEEE at https://www.ieee.org/membership/join/index.html Note: SAE membership is required to complete the on-line vehicle registration process, so at least one team member must be a member of SAE.", + "parentRuleCode": "1A5.6", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.7", + "ruleContent": "Age Team members must be at least eighteen (18) years of age.", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.8", + "ruleContent": "Driver’s License Team members who will drive a competition vehicle at any time during a competition must hold a valid, government issued driver’s license. All drivers will be required to submit copies of their driver’s licenses prior to the competition. Additional instructions will be sent to teams 6 weeks before the competition. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.9", + "ruleContent": "Driver Restrictions Drivers who have driven for a professional racing team in a national or international series at any time may not drive in any competition event. A “professional racing team” is defined as a team that provides racing cars and enables drivers to compete in national or international racing series and employs full time staff in order to achieve this.", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.10", + "ruleContent": "Liability Waiver All on-site participants, including students, faculty, volunteers and guests, are required to sign a liability waiver upon registering on-site.", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "1A5.11", + "ruleContent": "Medical Insurance Individual medical insurance coverage is required and is the sole responsibility of the participant.", + "parentRuleCode": "1A5", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A6", + "ruleContent": "INDIVIDUAL REGISTRATION REQUIREMENTS", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.1", + "ruleContent": "SAE Student Members", + "parentRuleCode": "1A6", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.1.1", + "ruleContent": "If your qualifying professional society membership is with the SAE, you should link yourself to your respective school, and complete the following information on the SAE website: (a) Medical insurance (provider, policy/ID number, telephone number) (b) Driver’s license (state/country, ID number) (c) Emergency contact data (point of contact (parent/guardian, spouse), relationship, and phone number)", + "parentRuleCode": "1A6.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.1.2", + "ruleContent": "To do this you will need to go to “Registration” page under the specific event the team is registered and then click on the “Register Your Team / Update Team Information” link. At this point, if you are properly affiliated to the school/college/university, a link will appear with your team name to select. Once you have selected the link, the registration page will appear. Selecting the “Add New Member” button will allow individuals to include themselves with the rest of the team. This can also be completed by team captain and faculty advisor for all team members.", + "parentRuleCode": "1A6.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.1.3", + "ruleContent": "All students, both domestic and international, must affiliate themselves online or submit the International Student Registration form by March 1, 2025. For additional assistance, please contact collegiatecompetitions@sae.org", + "parentRuleCode": "1A6.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.2", + "ruleContent": "Onsite Registration Requirement", + "parentRuleCode": "1A6", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.2.1", + "ruleContent": "Onsite registration is required of all team members and faculty advisors", + "parentRuleCode": "1A6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.2.2", + "ruleContent": "Registration must be completed and the credentials and/or other identification issued by the organizers properly worn before the car can be unloaded, uncrated or worked upon in any manner.", + "parentRuleCode": "1A6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.2.3", + "ruleContent": "The following is required at registration: (a) Government issued driver’s license or passport and (b) Medical insurance card or documentation (c) Proof of professional society membership (such as card or member number) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.2.4", + "ruleContent": "All international student participants (or unaffiliated faculty advisors) who are not SAE members are required to complete the International Student Registration form for the entire team found under “Competition Resources” on the event specific webpage. Upon completion, email the form to collegiatecompetitions@sae.org", + "parentRuleCode": "1A6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.2.5", + "ruleContent": "All students, both domestic and international, must affiliate themselves online or submit the International Student Registration form prior to the date shown in the Action Deadlines on the Formula Hybrid + Electric website. For additional assistance, please contact collegiatecompetitions@sae.org NOTE: When your team is registering for a competition, only the student or faculty advisor completing the registration needs to be linked to the school. All other students and faculty can affiliate themselves after registration has been completed.", + "parentRuleCode": "1A6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.3", + "ruleContent": "Team Advisor", + "parentRuleCode": "1A6", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.3.1", + "ruleContent": "Each team must have a Professional Advisor appointed by the university. The Advisor, or an official university representative, must accompany the team to the competition and will be considered by competition officials to be the official university representative. If the appointed advisor cannot attend the competition, the team must have an alternate college or university approved adult attend.", + "parentRuleCode": "1A6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.3.2", + "ruleContent": "Advisors are expected to review their team’s Structural Equivalency, Impact Attenuator data and both ESFs prior to submission. Advisors are not required to certify the accuracy of these documents, but should perform a “sanity check” and look for omissions.", + "parentRuleCode": "1A6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.3.3", + "ruleContent": "Advisors may advise their teams on general engineering and engineering project management theory, but must not design any part of the vehicle nor directly participate in the development of any documentation or presentation. Additionally, Advisors may neither fabricate nor assemble any components nor assist in the preparation, maintenance, testing or operation of the vehicle. In Brief –Advisors must not design, build or repair any part of the car.", + "parentRuleCode": "1A6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.4", + "ruleContent": "Rules and Safety Officer (RSO)", + "parentRuleCode": "1A6", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.4.1", + "ruleContent": "Each team must appoint a person to be the “Rules and Safety Officer (RSO)”.", + "parentRuleCode": "1A6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.4.2", + "ruleContent": "The RSO must: (a) Be present at the entire Formula Hybrid + Electric event. (b) Be responsible for understanding the Formula Hybrid + Electric rules prior to the competition and ensuring that competing vehicles comply with all those rules requirements. (c) System Documentation – Have vehicle designs, plans, schematics and supporting documents available for review by the officials as needed. (d) Component Documentation – Have manufacturer’s documentation and information available on all components of the electrical system. (e) Be responsible for team safety while at the event. This includes issues such as: (i) Use of safety glasses and other safety equipment (ii) Control of shock hazards such as charging equipment and accessible high voltage sources 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (iii) Control of fire hazards such as fuel, sources of ignition (grinding, welding etc.) (iv) Safe working practices (lock-out/tag-out, clean work area, use of jack stands etc.) (f) Be the point of contact between the team and Formula Hybrid + Electric organizers should rules or safety issues arise.", + "parentRuleCode": "1A6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.4.3", + "ruleContent": "If the RSO is also a driver in a dynamic event, a backup RSO must be appointed who will take responsibility for sections A6.4.2(e) and A6.4.2(f) (above) while the primary RSO is in the vehicle.", + "parentRuleCode": "1A6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.4.4", + "ruleContent": "Preferably, the RSO should be the team's faculty advisor or a member of the university's professional staff, but the position may be held by a student member of the team.", + "parentRuleCode": "1A6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1A6.4.5", + "ruleContent": "Contact information for the primary and backup RSOs (Name, Cell Phone number, etc.) must be provided to the organizers during registration.", + "parentRuleCode": "1A6.4", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A7", + "ruleContent": "VEHICLE ELIGIBILITY", + "pageNumber": "1" + }, + { + "ruleCode": "1A7.1", + "ruleContent": "Student Developed Vehicle Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained by the student team members without direct involvement from professional engineers, automotive engineers, racers, machinists or related professionals.", + "parentRuleCode": "1A7", + "pageNumber": "1" + }, + { + "ruleCode": "1A7.2", + "ruleContent": "Information Sources The student team may use any literature or knowledge related to car design and information from professionals or from academics as long as the information is given as a discussion of alternatives with their pros and cons.", + "parentRuleCode": "1A7", + "pageNumber": "1" + }, + { + "ruleCode": "1A7.3", + "ruleContent": "Professional Assistance Professionals may not make design decisions or drawings and the Faculty Advisor may be required to sign a statement of compliance with this restriction.", + "parentRuleCode": "1A7", + "pageNumber": "1" + }, + { + "ruleCode": "1A7.4", + "ruleContent": "Student Fabrication It is the intent of the SAE Collegiate Design Series competitions to provide direct hands-on experience to the students. Therefore, students should perform all fabrication tasks whenever possible.", + "parentRuleCode": "1A7", + "pageNumber": "1" + }, + { + "ruleCode": "1A7.5", + "ruleContent": "Vehicles Entered for Multiple Years Formula Hybrid + Electric does not require that teams design and build a new vehicle from scratch each year.", + "parentRuleCode": "1A7", + "pageNumber": "1" + }, + { + "ruleCode": "1A7.5.1", + "ruleContent": "Teams may enter the same vehicle used in previous competitions, provided it complies with all the Formula Hybrid + Electric rules in effect at the competition in which it is entered.", + "parentRuleCode": "1A7.5", + "pageNumber": "1" + }, + { + "ruleCode": "1A7.5.2", + "ruleContent": "Rules waivers issued to vehicles are valid for only one year. It is assumed that teams will address the issues requiring a waiver before entering the vehicle in a subsequent year. NOTE 1: Design judges will look more favorably on vehicles that have clearly documented upgrades and improvements since last entered in a Formula Hybrid + Electric competition. NOTE 2: Because the Formula Hybrid + Electric competition emphasizes high-efficiency drive systems, engineered improvements to the drive train and control systems will be weighted more heavily by the design judges than updates to the chassis, suspension etc. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A7.5", + "pageNumber": "1" + }, + { + "ruleCode": "1A7.6", + "ruleContent": "Entries per University Universities may enter up to two vehicles per competition. Note that there will be a registration wait period imposed for a second vehicle.", + "parentRuleCode": "1A7", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A8", + "ruleContent": "REGISTRATION Registration for the Formula Hybrid + Electric competition must be completed on-line. Online registration must be done by either (a) an SAE member or (b) the official faculty advisor connected with the registering university and recorded as such in the SAE record system. Note: It typically takes at least 1 working day between the time you complete an online SAE membership application and our system recognizes you as eligible to register your team.", + "pageNumber": "1" + }, + { + "ruleCode": "1A8.1", + "ruleContent": "Registration Cap The Formula Hybrid + Electric competition is capped at 35 entries. Registrations received after the entry cap is reached will be placed on a waiting list. If no slots become available prior to the competition, the entry fee will be refunded. Registration Fees", + "parentRuleCode": "1A8", + "pageNumber": "1" + }, + { + "ruleCode": "1A8.1.1", + "ruleContent": "Registration fees must be paid to the organizer by the deadline specified on the Formula Hybrid +Electric website.", + "parentRuleCode": "1A8.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A8.1.2", + "ruleContent": "Registration fees are not refundable.", + "parentRuleCode": "1A8.1", + "pageNumber": "1" + }, + { + "ruleCode": "1A8.2", + "ruleContent": "Withdrawals Registered teams that find that they will not be able to attend the Formula Hybrid + Electric competition are requested to officially withdraw by notifying the organizers at the following address not later than one (1) week before the event: formulahybridcomp@gmail.com", + "parentRuleCode": "1A8", + "pageNumber": "1" + }, + { + "ruleCode": "1A8.3", + "ruleContent": "United States Visas", + "parentRuleCode": "1A8", + "pageNumber": "1" + }, + { + "ruleCode": "1A8.3.1", + "ruleContent": "Teams requiring visas to enter to the United States are advised to apply at least sixty (60) days prior to the competition. Although many visa applications go through without an unreasonable delay, occasionally teams have had difficulties and in several instances visas were not issued before the competition. Don’t wait – apply early for your visa. Note: After your team has registered for the Formula Hybrid + Electric competition, the organizers can provide an acknowledgement your registration. We do not issue letters of invitation or participation certificates.", + "parentRuleCode": "1A8.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A8.3.2", + "ruleContent": "Neither SAE staff nor any competition organizers are permitted to give advice on visas, customs regulations or vehicle shipping regulations concerning the United States or any other country.", + "parentRuleCode": "1A8.3", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A9", + "ruleContent": "VEHICLE DOCUMENTS, DEADLINES AND PENALTIES", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.1", + "ruleContent": "Required Documents The following documents supporting each vehicle must be submitted by the action deadlines posted on the Formula Hybrid + Electric website or otherwise published by the organizers. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Document Section Project Management Plan S2.3 Electrical System Form (ESF-1) EV13.1 Change Management Report S2.4 Structural Equivalency Spreadsheet (SES) T3.8 Impact Attenuator Data (IA) T3.21 Program Submission ARTICLE A10(f) Site Pre-Registration ARTICLE A10(l) Design Report S3.2.1 Design Specification Sheet S3.2.2 Electrical System Form (ESF-2) EV13.2 Table 3 - Required Documents", + "parentRuleCode": "1A9", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.2", + "ruleContent": "Document Submission Policies Note: Volunteer examiners and judges evaluate all the required submissions and it is essential that they have enough time to complete their work. There are no exceptions to the document submission deadlines and late submissions will incur penalties.", + "parentRuleCode": "1A9", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.2.1", + "ruleContent": "Document submission penalties or bonus points are factored into a team’s final score. They do not alter the individual event scores.", + "parentRuleCode": "1A9.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.2.2", + "ruleContent": "All documents must be submitted using the following document title, unless otherwise noted in individual document requirements: Car Number_University_Document_Competition Year i.e. 000_Oxford University_SES_2025 Teams are responsible for submitting properly labeled documents and will accrue applicable penalty points if documents with corrected formatting are late.", + "parentRuleCode": "1A9.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.2.3", + "ruleContent": "Teams must submit the required documents online at https://formulahybridupload.supportsystem.com/", + "parentRuleCode": "1A9.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.2.4", + "ruleContent": "Document submission deadlines are listed in GMT (Greenwich Mean Time) unless otherwise explicitly stated. This means that deadlines are typically 7:00 PM Eastern Standard Time. Please use this website for time conversions or https://time.is/GMT .", + "parentRuleCode": "1A9.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.2.5", + "ruleContent": "The time and date that the document is uploaded is recorded in GMT (Greenwich Mean Time) and constitutes the official record for deadline compliance.", + "parentRuleCode": "1A9.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.2.6", + "ruleContent": "The official time and date of document receipt will be posted on the Formula Hybrid + Electric website. Teams are responsible for ensuring the accuracy of these postings and must notify the organizers within three days of their submission to report a discrepancy. After three days the submission time and date will become final.", + "parentRuleCode": "1A9.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.3", + "ruleContent": "Late submissions Documents received after their deadlines will be penalized as follows: (a) Structural Equivalency Spreadsheet (SES) – The penalty for late SES submission is 10 points per day and is capped at negative fifty (-50) points. However, teams are advised 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 that the SES’s are evaluated in the order in which they are received and that late submissions will be reviewed last. Late SES approval could delay the completion of your vehicle. We strongly recommend you submit your SES as early as possible. (b) Impact Attenuator Report (IA) - The penalty for late IA submissions is 10 points per day and is capped at negative fifty (-50) points. (c) Design Reports – The Design Report and Design Spec Sheet collectively constitute the “Design Documents”. (i) Design Report 10 points/day up to 100 points (ii) Design Spec Sheet 5 points/day up to 50 points NOTE: The total penalty for late arrival of any design documents will not exceed 100 points. (d) Program Submissions – There are no penalties for late program submissions. However, late submissions will not be included in the race program, which can be an important tool for future team fund raising. (e) Project Management Project Plan - Late submission or failure to submit the Project Plan will be penalized at five (5) points per day and is capped at negative fifty-five (-55) points. (f) Change Management Report - Late submission or failure to submit the interim report will be penalized at five (5) points per day and is capped at negative forty (-40) points. (g) ESF - The penalty for late ESF submissions is 10 points per day and is capped at negative twenty-five points (-25) per ESF or fifty (-50) points total. (h) Site Pre-Registration – The penalty for late submission of Site Pre-Registration will be five (5) points. Teams may submit additional team member information up to one week prior to the competition, and all drivers must submit a photo of their driver’s license prior to April 26 th on the “Document Upload Page”.", + "parentRuleCode": "1A9", + "pageNumber": "1" + }, + { + "ruleCode": "1A9.4", + "ruleContent": "Early submissions In some cases, documents submitted before their deadline can earn a team bonus points as follows: (a) Structural Equivalency Spreadsheet (SES) (i) Approved documents that were submitted 30 days or more before the SES deadline will receive 20 bonus points. (ii) Approved documents that were submitted between 29 and 15 days before the SES deadline will receive 10 bonus points. (b) Electrical System Forms (ESF-1 and ESF-2) (i) Approved documents that were submitted 30 days or more before each ESF deadline will receive 10 bonus points. (ii) Approved documents that were submitted between 29 and 15 days before each ESF deadline will receive 5 bonus points. Note 1: The qualifying dates for bonus points will be listed on the Formula Hybrid + Electric website. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note 2: The number of bonus points will be based on the submission date of the document, not on the approval date. Documents submitted early that are not approved will not qualify for bonus points. Note 3: Some bonus point deadlines may occur before the closing date of registration. If a team has not previously registered for a Formula Hybrid + Electric competition, they may not be listed on the documents submission page. (A9.2.3) In that case, a team should submit the document via email to formulahybridcomp@gmail.com 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A9", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A10", + "ruleContent": "FORMS AND DOCUMENTS The following forms and documents are available on the Formula Hybrid + Electric website: (a) 2025 Formula Hybrid + Electric Rules (This Document) (b) Structural Equivalency Spreadsheet (SES) (c) Impact Attenuator (IA) Data Sheet (d) Electrical Systems Form (ESF-1) template (e) Electrical Systems Form (ESF-2) template (f) Program Information Sheet (Team information for the Event Program) (g) Mechanical Inspection Sheet (For reference) (h) Electrical Inspection Sheet (For reference) (i) Design Specification Sheet (j) Design Event Judging Form (For reference) (k) Project Management Judging Form (For reference) (l) Site pre-registration form Note: Formula Hybrid + Electric strives to provide student engineering teams with timely and useful information to assist in the design and construction of their vehicles. Check the Formula Hybrid + Electric website often for new or updated advisory publications.", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A11", + "ruleContent": "PROTESTS", + "pageNumber": "1" + }, + { + "ruleCode": "1A11.1", + "ruleContent": "Protests - General It is recognized that thousands of hours of work have gone into fielding a vehicle and that teams are entitled to all the points they can earn. We also recognize that there can be differences in the interpretation of rules, the application of penalties and the understanding of procedures. The officials and SAE staff will make every effort to fully review all questions and resolve problems and discrepancies quickly and equitably", + "parentRuleCode": "1A11", + "pageNumber": "1" + }, + { + "ruleCode": "1A11.2", + "ruleContent": "Preliminary Review – Required If a team has a question about scoring, judging, policies, or any official action it must be brought to the organizer’s or SAE staff’s attention for an informal preliminary review before a protest can be filed.", + "parentRuleCode": "1A11", + "pageNumber": "1" + }, + { + "ruleCode": "1A11.3", + "ruleContent": "Cause for Protest A team may protest any rule interpretation, score, or official action (unless specifically excluded from protest) which they feel has caused some actual, non-trivial, harm to their team, or has had substantive effect on their score. Teams may not protest rule interpretations or actions that have not caused them any substantive damage.", + "parentRuleCode": "1A11", + "pageNumber": "1" + }, + { + "ruleCode": "1A11.4", + "ruleContent": "Protest Format and Forfeit All protests must be filed in writing and presented to the organizer or SAE staff by the team captain. In order to have a protest considered, a team must post a twenty-five (25) point protest bond which will be forfeited if their protest is rejected. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A11", + "pageNumber": "1" + }, + { + "ruleCode": "1A11.5", + "ruleContent": "Protest Period Protests concerning any aspect of the competition must be filed within one-half hour (30 minutes) of the posting of the scores of the event to which the protest relates.", + "parentRuleCode": "1A11", + "pageNumber": "1" + }, + { + "ruleCode": "1A11.6", + "ruleContent": "Decision The decision of the competition protest committee regarding any protest is final.", + "parentRuleCode": "1A11", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE A12", + "ruleContent": "QUESTIONS ABOUT THE FORMULA HYBRID + ELECTRIC RULES", + "pageNumber": "1" + }, + { + "ruleCode": "1A12.1", + "ruleContent": "Question Publication By submitting, a question to the Formula Hybrid + Electric Rules Committee or the competition’s organizing body you and your team agree that both your question and the official answer can be reproduced and distributed by SAE or Formula Hybrid + Electric, in both complete and edited versions, in any medium or format anywhere in the world.", + "parentRuleCode": "1A12", + "pageNumber": "1" + }, + { + "ruleCode": "1A12.2", + "ruleContent": "Question Types", + "parentRuleCode": "1A12", + "pageNumber": "1" + }, + { + "ruleCode": "1A12.2.1", + "ruleContent": "The Committee will answer questions that are not already answered in the rules or FAQs or that require new or novel rule interpretations. The Committee will not respond to questions that are already answered in the rules. For example, if a rule specifies a minimum dimension for a part the Committee will not answer questions asking if a smaller dimension can be used.", + "parentRuleCode": "1A12.2", + "pageNumber": "1" + }, + { + "ruleCode": "1A12.3", + "ruleContent": "Frequently Asked Questions", + "parentRuleCode": "1A12", + "pageNumber": "1" + }, + { + "ruleCode": "1A12.3.1", + "ruleContent": "Before submitting a question, check the Frequently Asked Questions section of the Formula Hybrid + Electric website.", + "parentRuleCode": "1A12.3", + "pageNumber": "1" + }, + { + "ruleCode": "1A12.4", + "ruleContent": "Question Submission Questions must be submitted on the Formula Hybrid + Electric Support page: https://formulahybridelectric.supportsystem.com/ Figure 1 - Formula Hybrid + Electric Support Page 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A12", + "pageNumber": "1" + }, + { + "ruleCode": "1A12.5", + "ruleContent": "Question Format The following information is required: (a) Submitter’s Name (b) Submitter’s Email (c) Topic (Select from the pull-down menu) (d) University Name (Registered teams will find their University name in a pull-down list) You may type your question into the “Message” box, or upload a document. You will receive a confirmation email with a link to enable you to check on your question’s status.", + "parentRuleCode": "1A12", + "pageNumber": "1" + }, + { + "ruleCode": "1A12.6", + "ruleContent": "Response Time Please allow a minimum of 3 days for a response. The Rules Committee will respond as quickly as possible, however, responses to questions presenting new issues, or of unusual complexity, may take more than one week. Please do not resend questions. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1A12", + "pageNumber": "1" + }, + { + "ruleCode": "PART T1", + "ruleContent": "GENERAL TECHNICAL REQUIREMENTS", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T1", + "ruleContent": "VEHICLE REQUIREMENTS AND RESTRICTIONS ***", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.1", + "ruleContent": "Technical Inspection", + "parentRuleCode": "1T1", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.1.1", + "ruleContent": "The following requirements and restrictions will be enforced through technical inspection. Noncompliance must be corrected and the car re-inspected before the car is allowed to operate under power.", + "parentRuleCode": "1T1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.2", + "ruleContent": "Modifications and Repairs", + "parentRuleCode": "1T1", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.2.1", + "ruleContent": "Once the vehicle has been presented for judging in the Design Events, or submitted for Technical Inspection, and until the vehicle is approved to compete in the dynamic events, i.e. all the inspection stickers are awarded, the only modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the Inspection Form.", + "parentRuleCode": "1T1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.2.2", + "ruleContent": "Once the vehicle is approved to compete in the dynamic events, the ONLY modifications permitted to the vehicle are: (a) Adjustment of belts, chains and clutches (b) Adjustment of brake bias (c) Adjustment of the driver restraint system, head restraint, seat and pedal assembly (d) Substitution of the head restraint or seat inserts for different drivers (e) Adjustment to engine operating parameters, e.g. fuel mixture and ignition timing and any software calibration changes (f) Adjustment of mirrors (g) Adjustment of the suspension where no part substitution is required, (except that springs, sway bars and shims may be changed) (h) Adjustment of tire pressure (i) Adjustment of wing angle (but not the location) (j) Replenishment of fluids (k) Replacement of worn tires or brake pads The replacement tires and/or brake pads must be identical in material, composition and size to those presented and approved at Technical Inspection. (l) The changing of wheels and tires for “wet” or “damp” conditions as allowed in D3.1 of the Formula Hybrid + Electric Rules. (m) Recharging of Grounded Low Voltage (GLV) supplies. (n) Recharging of Accumulators. (See EV12.2) (o) Adjustment of motor controller operating parameters.", + "parentRuleCode": "1T1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.2.3", + "ruleContent": "The vehicle must maintain all required specifications, e.g. ride height, suspension travel, braking capacity, sound level and wing location throughout the competition.", + "parentRuleCode": "1T1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.2.4", + "ruleContent": "Once the vehicle is approved for competition, any damage to the vehicle that requires repair, e.g. crash damage, electrical or mechanical damage will void the Inspection Approval. Upon 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 the completion of the repair and before re-entering into any dynamic competition, the vehicle MUST be re-submitted to Technical Inspection for re-approval.", + "parentRuleCode": "1T1.2", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T2", + "ruleContent": "GENERAL DESIGN REQUIREMENTS", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.1", + "ruleContent": "Vehicle Configuration", + "parentRuleCode": "1T2", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.1.1", + "ruleContent": "The vehicle must be open-wheeled and open-cockpit (a formula style body) with four (4) wheels that are not in a straight line.", + "parentRuleCode": "1T2.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.1.2", + "ruleContent": "Definition of \"Open Wheel\" – Open Wheel vehicles must satisfy all of the following criteria: (a) The top 180 degrees of the wheels/tires must be unobstructed when viewed from vertically above the wheel. (b) The wheels/tires must be unobstructed when viewed from the side. (c) No part of the vehicle may enter a keep-out-zone defined by two lines extending vertically from positions 75 mm in front of and 75 mm behind the outer diameter of the front and rear tires in side view elevation of the vehicle with the tires steered straight ahead. This keep-out zone will extend laterally from the outside plane of the wheel/tire to the inboard plane of the wheel/tire. See Figure 2 below. Note: The dry tires will be used for all inspections. Figure 2 - Open Wheel Definition", + "parentRuleCode": "1T2.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.2", + "ruleContent": "Bodywork There must be no openings through the bodywork into the driver compartment from the front of the vehicle back to the roll bar main hoop or firewall other than that required for the cockpit opening. Minimal openings around the front suspension components are allowed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T2", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.3", + "ruleContent": "Wheelbase The car must have a wheelbase of at least 1524 mm. The wheelbase is measured from the center of ground contact of the front and rear tires with the wheels pointed straight ahead.", + "parentRuleCode": "1T2", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.4", + "ruleContent": "Vehicle Track The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track.", + "parentRuleCode": "1T2", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.5", + "ruleContent": "Visible Access All items on the Inspection Form must be clearly visible to the technical inspectors without using instruments such as endoscopes or mirrors. Visible access can be provided by removing body panels or by providing removable access panels.", + "parentRuleCode": "1T2", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T3", + "ruleContent": "DRIVER’S CELL", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.1", + "ruleContent": "General Requirements", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.1.1", + "ruleContent": "Among other requirements, the vehicle’s structure must include two roll hoops that are braced, a front bulkhead with support system and Impact Attenuator, and side impact structures. Note: Many teams will be retrofitting Formula SAE cars for Formula Hybrid + Electric. In most cases these vehicles will be considerably heavier than what the original frame and suspension was designed to carry. It is important to analyze the structure of the car and to strengthen it as required to insure that it will handle the additional stresses. The technical inspectors will also be paying close attention to the mounting of accumulator systems. These can be very heavy and must be adequately fastened to the main structure of the vehicle.", + "parentRuleCode": "1T3.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.2", + "ruleContent": "Definitions The following definitions apply throughout the Rules document: (a) Main Hoop - A roll bar located alongside or just behind the driver’s torso. (b) Front Hoop - A roll bar located above the driver’s legs, in proximity to the steering wheel. (c) Roll Hoops – Both the Front Hoop and the Main Hoop are classified as “Roll Hoops” (d) Roll Hoop Bracing Supports – The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). (e) Frame Member - A minimum representative single piece of uncut, continuous tubing. (f) Frame - The “Frame” is the fabricated structural assembly that supports all functional vehicle systems. This assembly may be a single welded structure, multiple welded structures or a combination of composite and welded structures. (g) Primary Structure – The Primary Structure is comprised of the following Frame components: (i) Main Hoop (ii) Front Hoop (iii) Roll Hoop Braces and Supports (iv) Side Impact Structure 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (v) Front Bulkhead (vi) Front Bulkhead Support System (vii) All Frame Members, guides and supports that transfer load from the Driver’s Restraint System into items (i) through (vi). (h) Major Structure of the Frame – The portion of the Frame that lies within the envelope defined by the Primary Structure. The upper portion of the Main Hoop and the Main Hoop Bracing are not included in defining this envelope. (i) Front Bulkhead – A planar structure that defines the forward plane of the Major Structure of the Frame and functions to provide protection for the driver’s feet. (j) Impact Attenuator – A deformable, energy absorbing device located forward of the Front Bulkhead. (k) Side Impact Zone – The area of the side of the car extending from the top of the floor to 350 mm above the ground and from the Front Hoop back to the Main Hoop. (l) Node-to-node triangulation – An arrangement of frame members projected onto a plane, where a co-planar load applied in any direction, at any node, results in only tensile or compressive forces in the frame members. This is also what is meant by “properly triangulated”. Figure 3 - Triangulation", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.3", + "ruleContent": "Minimum Material Requirements", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.3.1", + "ruleContent": "Baseline Steel Material The Primary Structure of the car must be constructed of: Either: Round, mild or alloy, steel tubing (minimum 0.1% carbon) of the minimum dimensions specified in Table 4 . Or: Approved alternatives per Rules T3.3, T3.3.2, T3.5 and T3.6. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Inch Metric Main & Front Hoops, Round: 1.0\" x 0.095\" Round: 25.0 mm x 2.50 mm Shoulder Harness Mounting Bar Side Impact Structure Round: 1.0\" x 0.065\" Round: 25.0 mm x 1.75 mm Roll Hoop Bracing Square: 1.0\" x 1.0\" x 0.049\" Square: 25.0 mm x 25.0 mm x 1.25 mm Front Bulkhead Square: 26.0 mm x 26.0 mm x 1.2 mm Main Hoop Bracing Supports Round: 1.0\" x 0.049\" Round: 25.0 mm x 1.5 mm Front Bulkhead Supports Round: 26.0 mm x 1.2 mm Protection of Tractive System Components OUTSIDE DIMENSION x WALL THICKNESS ITEM or APPLICATION Driver’s Restraint Harness Attachment (except for Shoulder Harness Mounting Bar) Table 4 - Baseline Steel Note 1: The use of alloy steel does not allow the wall thickness to be thinner than that used for mild steel. Note 2: For a specific application using tubing of the specified outside diameter but with greater wall thickness, or of the specified wall thickness and a greater outside diameter, or replacing round tubing with square tubing of the same or larger size to those listed above, are NOT rules deviations requiring approval. Note 3: Except for inspection holes, any holes drilled in any regulated tubing require the submission of an SES. Note 4: Baseline steel properties used for calculations to be submitted in an SES may not be lower than the following: Bending and buckling strength calculations: Young’s Modulus (E) = 200 GPa (29,000 ksi) Yield Strength (S y ) = 305 MPa (44.2 ksi) Ultimate Strength (S u ) = 365 MPa (52.9 ksi) Welded monocoque attachment points or welded tube joint calculations: Yield Strength (S y ) = 180 MPa (26 ksi) Ultimate Strength (S u ) = 300 MPa (43.5 ksi)", + "parentRuleCode": "1T3.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.3.2", + "ruleContent": "When a cutout, or a hole greater in diameter than 3/16 inch (4 mm), is made in a regulated tube, e.g. to mount the safety harness or suspension and steering components, in order to regain the baseline, cold rolled strength of the original tubing, the tubing must be reinforced by the use of a welded insert or other reinforcement. The welded strength figures given above must be used for the additional material. And the details, including dimensioned drawings, must be included in the SES. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.4", + "ruleContent": "Alternative Tubing and Material - General", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.4.1", + "ruleContent": "Alternative tubing geometry and/or materials may be used except that the Main Roll Hoop and Main Roll Hoop Bracing must be made from steel, i.e. the use of aluminum or titanium tubing or composites for these components is prohibited.", + "parentRuleCode": "1T3.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.4.2", + "ruleContent": "Titanium or magnesium on which welding has been utilized may not be used for any part of the Primary Structure. This includes the attachment of brackets to the tubing or the attachment of the tubing to other components.", + "parentRuleCode": "1T3.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.4.3", + "ruleContent": "If a team chooses to use alternative tubing and/or materials they must still submit a “Structural Equivalency Spreadsheet” per Rule T3.8. The teams must submit calculations for the material they have chosen, demonstrating equivalence to the minimum requirements found in Section T3.3.1 for yield and ultimate strengths in bending, buckling and tension, for buckling modulus and for energy dissipation. Note: The Buckling Modulus is defined as EI, where, E = modulus of Elasticity, and I = area moment of inertia about the weakest axis.", + "parentRuleCode": "1T3.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.4.4", + "ruleContent": "To be considered as a structural tube in the SES Submission (T3.8) tubing cannot have an outside dimension less than 25 mm or a wall thickness less than that listed in T3.5 or T3.6.", + "parentRuleCode": "1T3.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.4.5", + "ruleContent": "If a bent tube is used anywhere in the primary structure, other than the front and main roll hoops, an additional tube must be attached to support it. The attachment point must be the position along the tube where it deviates farthest from a straight line connecting both ends. The support tube must have the same diameter and thickness as the bent tube. The support tube must terminate at a node of the chassis.", + "parentRuleCode": "1T3.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.4.6", + "ruleContent": "Any chassis design that is a hybrid of the baseline and monocoque rules, must meet all relevant rules requirements, e.g. a sandwich panel side impact structure in a tube frame chassis must meet the requirements of rules T3.27, T3.28, T3.29, T3.30 and T3.33. Note: It is allowable for the properties of tubes and laminates to be combined to prove equivalence. E.g. in a side-impact structure consisting of one tube as per T3.3 and a laminate panel, the panel only needs to be equivalent to two side-impact tubes.", + "parentRuleCode": "1T3.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.5", + "ruleContent": "Alternative Steel Tubing Minimum Wall Thickness Allowed: MATERIAL & APPLICATION MINIMUM WALL THICKNESS Front and Main Roll Hoops Shoulder Harness Mounting Bar 2.0 mm Roll Hoop Bracing Roll Hoop Bracing Supports Side Impact Structure Front Bulkhead Front Bulkhead Support Driver’s Harness Attachment (Except for Shoulder Harness Mounting Bar - above) Protection of accumulators Protection of TSV components 1.2 mm Table 5 - Steel Tubing Minimum Wall Thicknesses 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note 1: All steel is treated equally - there is no allowance for alloy steel tubing, e.g. SAE 4130, to have a thinner wall thickness than that used with mild steel. Note 2: To maintain EI with a thinner wall thickness than specified in T3.3.1, the outside diameter MUST be increased. Note 3: To maintain the equivalent yield and ultimate tensile strength the same cross-sectional area of steel as the baseline tubing specified in T3.3.1 must be maintained.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.6", + "ruleContent": "Aluminum Tubing Requirements", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.6.1", + "ruleContent": "Minimum Wall Thickness of Aluminum Tubing is 3.0 mm", + "parentRuleCode": "1T3.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.6.2", + "ruleContent": "The equivalent yield strength must be considered in the “as-welded” condition, (Reference: WELDING ALUMINUM (latest Edition) by the Aluminum Association, or THE WELDING HANDBOOK, Volume 4, 9th Ed., by The American Welding Society), unless the team demonstrates and shows proof that the frame has been properly solution heat treated and artificially aged.", + "parentRuleCode": "1T3.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.6.3", + "ruleContent": "Should aluminum tubing be solution heat-treated and age hardened to increase its strength after welding; the team must supply sufficient documentation as to how the process was performed. This includes, but is not limited to, the heat-treating facility used, the process applied, and the fixturing used.", + "parentRuleCode": "1T3.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.7", + "ruleContent": "Composite Materials", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.7.1", + "ruleContent": "If any composite or other material is used, the team must present documentation of material type, e.g. purchase receipt, shipping document or letter of donation, and of the material properties. Details of the composite lay-up technique as well as the structural material used (cloth type, weight, and resin type, number of layers, core material, and skin material if metal) must also be submitted. The team must submit calculations demonstrating equivalence of their composite structure to one of similar geometry made to the minimum requirements found in Section T3.3.1. Equivalency calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, buckling, and tension. Submit the completed “Structural Equivalency Spreadsheet” per Section T3.8 Note: Some composite materials present unique electrical shock hazards, and may require additional engineering and fabrication effort to minimize those hazards. See: ARTICLE EV8.", + "parentRuleCode": "1T3.7", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.7.2", + "ruleContent": "Composite materials are not allowed for the Main Hoop or the Front Hoop.", + "parentRuleCode": "1T3.7", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8", + "ruleContent": "Structural Documentation – SES Submission All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8.1", + "ruleContent": "All teams must submit a Structural Equivalency Spreadsheet (SES) even if they are not planning to use alternative materials or tubing sizes to those specified in T3.3.1 Baseline Steel Materials.", + "parentRuleCode": "1T3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8.2", + "ruleContent": "The use of alternative materials or tubing sizes to those specified in T3.3.1 “Baseline Steel Material,” is allowed, provided they have been judged by a technical review to have equal or superior properties to those specified in T3.3.1.", + "parentRuleCode": "1T3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8.3", + "ruleContent": "Approval of alternative material or tubing sizes will be based upon the engineering judgment and experience of the chief technical inspector or their appointee.", + "parentRuleCode": "1T3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8.4", + "ruleContent": "The technical review is initiated by completing the “Structural Equivalency Spreadsheet” (SES) which can be downloaded from the Formula Hybrid + Electric website.", + "parentRuleCode": "1T3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8.5", + "ruleContent": "Structural Equivalency Spreadsheet – Submission 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 SESs must be submitted via the Formula Hybrid + Electric Document Upload page. See Section A9.2. Do Not Resubmit SES’s unless instructed to do so.", + "parentRuleCode": "1T3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8.6", + "ruleContent": "Vehicles completed under an approved SES must be fabricated in accordance with the materials and processes described in the SES.", + "parentRuleCode": "1T3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8.7", + "ruleContent": "Teams must bring a copy of the approved SES with them to Technical Inspection. Comment - The resubmission of an SES that was written and submitted for a competition in a previous year is strongly discouraged. Each team is expected to perform their own tests and to submit SESs based on their original work. Understanding the engineering that justifies the equivalency is essential to discussing your work with the officials.", + "parentRuleCode": "1T3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.8.8", + "ruleContent": "An approved SES for a Formula SAE 2024 or 2025 competition may be submitted in place of the Formula Hybrid + Electric specific SES required by T3.8.4.", + "parentRuleCode": "1T3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.9", + "ruleContent": "Main and Front Roll Hoops – General Requirements", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.9.1", + "ruleContent": "The driver’s head and hands must not contact the ground in any rollover attitude.", + "parentRuleCode": "1T3.9", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.9.2", + "ruleContent": "The Frame must include both a Main Hoop and a Front Hoop as shown in Figures from Top: 4.", + "parentRuleCode": "1T3.9", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.9.3", + "ruleContent": "When seated normally and restrained by the Driver’s Restraint System, the helmet of a 95th percentile male (anthropometrical data; See Table 6 and Figure 5) and all of the team’s drivers must: (a) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the top of the front hoop. (Figures from Top: 4a) (b) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the lower end of the main hoop bracing if the bracing extends rearwards. (Figures from Top: 4b) (c) Be no further rearwards than the rear surface of the main hoop if the main hoop bracing extends forwards. (Figures from Top: 4c) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 A two dimensional template used to represent the 95th percentile male is made to the following dimensions: ● A circle of diameter 200 mm will represent the hips and buttocks. ● A circle of diameter 200 mm will represent the shoulder/cervical region. ● A circle of diameter 300 mm will represent the head (with helmet). ● A straight line measuring 490 mm will connect the centers of the two 200 mm circles. ● A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle. Table 6 - 95th Percentile Male Template Dimensions Figures from Top: 4a, 4b, and 4c- Roll Hoops and Helmet Clearance 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 5 - Percy -- 95th Percentile Male with Helmet Figure 6 – 95th Percentile Template Positioning", + "parentRuleCode": "1T3.9", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.9.4", + "ruleContent": "The 95th percentile male template (Percy) will be positioned as follows: (See Figure 6) (a) The seat will be adjusted to the rearmost position, (b) The pedals will be placed in the most forward position. (c) The bottom 200 mm circle will be placed on the seat bottom such that the distance between the center of this circle and the rearmost face of the pedals is no less than 915 mm. (d) The middle 200 mm circle, representing the shoulders, will be positioned on the seat back. (e) The upper 300 mm circle will be positioned no more than 25.4 mm away from the head restraint (i.e. where the driver’s helmet would normally be located while driving). 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IMPORTANT: If the requirements of T3.9.3 are not met with the 95 th percentile male template, the car will not receive a Technical Inspection Sticker and will not be allowed to compete in the dynamic events.", + "parentRuleCode": "1T3.9", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.9.5", + "ruleContent": "Drivers who do not meet the helmet clearance requirements of T3.9.3 will not be allowed to drive in the competition.", + "parentRuleCode": "1T3.9", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.9.6", + "ruleContent": "The minimum radius of any bend, measured at the tube centerline, must be at least three times the tube outside diameter. Bends must be smooth and continuous with no evidence of crimping or wall failure.", + "parentRuleCode": "1T3.9", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.9.7", + "ruleContent": "The Main Hoop and Front Hoop must be securely integrated into the Primary Structure using gussets and/or tube triangulation.", + "parentRuleCode": "1T3.9", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.10", + "ruleContent": "Main Hoop", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.10.1", + "ruleContent": "The Main Hoop must be constructed of a single piece of uncut, continuous, closed section steel tubing per Rule T3.3.1", + "parentRuleCode": "1T3.10", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.10.2", + "ruleContent": "The use of aluminum alloys, titanium alloys or composite materials for the Main Hoop is prohibited.", + "parentRuleCode": "1T3.10", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.10.3", + "ruleContent": "The Main Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down the lowest Frame Member on the other side of the Frame.", + "parentRuleCode": "1T3.10", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.10.4", + "ruleContent": "In the side view of the vehicle, the portion of the Main Roll Hoop that lies above its attachment point to the Major Structure of the Frame must be within ten degrees (10°) of the vertical.", + "parentRuleCode": "1T3.10", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.10.5", + "ruleContent": "In the side view of the vehicle, any bends in the Main Roll Hoop above its attachment point to the Major Structure of the Frame must be braced to a node of the Main Hoop Bracing Support structure with tubing meeting the requirements of Roll Hoop Bracing as per Rule T3.3.1", + "parentRuleCode": "1T3.10", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.10.6", + "ruleContent": "In the front view of the vehicle, the vertical members of the Main Hoop must be at least 380 mm apart (inside dimension) at the location where the Main Hoop is attached to the Major Structure of the Frame.", + "parentRuleCode": "1T3.10", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.11", + "ruleContent": "Front Hoop", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.11.1", + "ruleContent": "The Front Hoop must be constructed of closed section metal tubing per Rule T3.3.1.", + "parentRuleCode": "1T3.11", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.11.2", + "ruleContent": "The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down to the lowest Frame Member on the other side of the Frame.", + "parentRuleCode": "1T3.11", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.11.3", + "ruleContent": "With proper gusseting and/or triangulation, it is permissible to fabricate the Front Hoop from more than one piece of tubing.", + "parentRuleCode": "1T3.11", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.11.4", + "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position.", + "parentRuleCode": "1T3.11", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.11.5", + "ruleContent": "The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance must be measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight- ahead position. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.11", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.11.6", + "ruleContent": "In side view, no part of the Front Hoop can be inclined at more than twenty degrees (20°) from the vertical.", + "parentRuleCode": "1T3.11", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.12", + "ruleContent": "Main Hoop Bracing", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.12.1", + "ruleContent": "Main Hoop braces must be constructed of closed section steel tubing per Rule T3.3.1.", + "parentRuleCode": "1T3.12", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.12.2", + "ruleContent": "The Main Hoop must be supported by two braces extending in the forward or rearward direction on both the left and right sides of the Main Hoop.", + "parentRuleCode": "1T3.12", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.12.3", + "ruleContent": "In the side view of the Frame, the Main Hoop and the Main Hoop braces must not lie on the same side of the vertical line through the top of the Main Hoop, i.e. if the Main Hoop leans forward, the braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, the braces must be rearward of the Main Hoop.", + "parentRuleCode": "1T3.12", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.12.4", + "ruleContent": "The Main Hoop braces must be attached as near as possible to the top of the Main Hoop but not more than 160 mm below the top-most surface of the Main Hoop. The included angle formed by the Main Hoop and the Main Hoop braces must be at least thirty degrees (30°). See: Figure 7 Figure 7 - Main and Front Hoop Bracing", + "parentRuleCode": "1T3.12", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.12.5", + "ruleContent": "The Main Hoop braces must be straight, i.e. without any bends.", + "parentRuleCode": "1T3.12", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.12.6", + "ruleContent": "The attachment of the Main Hoop braces must be capable of transmitting all loads from the Main Hoop into the Major Structure of the Frame without failing. From the lower end of the braces there must be a properly triangulated structure back to the lowest part of the Main Hoop and the node at which the upper side impact tube meets the Main Hoop. This structure must meet the minimum requirements for Main Hoop Bracing Supports (see Rule T3.3) or an SES approved alternative. Bracing loads must not be fed solely into the engine, transmission or differential, or through suspension components.", + "parentRuleCode": "1T3.12", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.12.7", + "ruleContent": "If any item which is outside the envelope of the Primary Structure is attached to the Main Hoop braces, then additional bracing must be added to prevent bending loads in the braces in any rollover attitude. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.12", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.13", + "ruleContent": "Front Hoop Bracing", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.13.1", + "ruleContent": "Front Hoop braces must be constructed of material per Rule T3.3.1.", + "parentRuleCode": "1T3.13", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.13.2", + "ruleContent": "The Front Hoop must be supported by two braces extending in the forward direction, one on the left side and one on the right side of the Front Hoop.", + "parentRuleCode": "1T3.13", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.13.3", + "ruleContent": "The Front Hoop braces must be constructed such that they protect the driver’s legs and should extend to the structure in front of the driver’s feet.", + "parentRuleCode": "1T3.13", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.13.4", + "ruleContent": "The Front Hoop braces must be attached as near as possible to the top of the Front Hoop but not more than 50.8 mm below the top-most surface of the Front Hoop. See: Figure 7", + "parentRuleCode": "1T3.13", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.13.5", + "ruleContent": "If the Front Hoop leans rearwards by more than ten degrees (10°) from the vertical, it must be supported by additional bracing to the rear. This bracing must be constructed of material per Rule T3.3.1.", + "parentRuleCode": "1T3.13", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.14", + "ruleContent": "Other Bracing Requirements Where the braces are not welded to steel Frame Members, the braces must be securely attached to the Frame using 8 mm Metric Grade 8.8 (5/16 in SAE Grade 5), or stronger, bolts. Mounting plates welded to the Roll Hoop braces must be at least 2.0 mm thick steel.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.15", + "ruleContent": "Other Side Tube Requirements If there is a Roll Hoop brace or other frame tube alongside the driver, at the height of the neck of any of the team’s drivers, a metal tube or piece of sheet metal must be firmly attached to the Frame to prevent the drivers’ shoulders from passing under the roll hoop brace or frame tube, and his/her neck contacting this brace or tube.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16", + "ruleContent": "Mechanically Attached Roll Hoop Bracing", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16.1", + "ruleContent": "Roll Hoop bracing may be mechanically attached.", + "parentRuleCode": "1T3.16", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16.2", + "ruleContent": "Any non-permanent joint at either end must be either a double-lug joint as shown in Figure 8 and Figure 9 or a sleeved butt joint as shown in Figure 10. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 8 – Double-Lug Joint Figure 9 – Double Lug Joint Figure 10 – Sleeved Butt Joint", + "parentRuleCode": "1T3.16", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16.3", + "ruleContent": "The threaded fasteners used to secure non-permanent joints are considered critical fasteners and must comply with ARTICLE T11.", + "parentRuleCode": "1T3.16", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16.4", + "ruleContent": "No spherical rod ends are allowed.", + "parentRuleCode": "1T3.16", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16.5", + "ruleContent": "For double-lug joints, each lug must be at least 4.5 mm thick steel, measure 25 mm minimum perpendicular to the axis of the bracing and be as short as practical along the axis of the bracing.", + "parentRuleCode": "1T3.16", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16.6", + "ruleContent": "All double-lug joints, whether fitted at the top or bottom of the tube, must include a capping arrangement. (See Figure 8 and Figure 9)", + "parentRuleCode": "1T3.16", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16.7", + "ruleContent": "In a double-lug joint the pin or bolt must be 10 mm Grade 9.8 or 3/8 inch SAE Grade 8 minimum. The attachment holes in the lugs and in the attached bracing must be a close fit with the pin or bolt.", + "parentRuleCode": "1T3.16", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.16.8", + "ruleContent": "For sleeved butt joints (Figure 10), the sleeve must have a minimum length of 76 mm (38 mm on either side of the joint) and be a close-fit around the base tubes. The wall thickness of the sleeve must be at least that of the base tubes. The bolts must be 6 mm Grade 9.8 or 1/4 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 inch SAE Grade 8 minimum. The holes in the sleeves and tubes must be a close-fit with the bolts.", + "parentRuleCode": "1T3.16", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.17", + "ruleContent": "Frontal Impact Structure", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.17.1", + "ruleContent": "The driver’s feet and legs must be completely contained within the Major Structure of the Frame. While the driver’s feet are touching the pedals, in side and front views no part of the driver’s feet or legs can extend above or outside of the Major Structure of the Frame.", + "parentRuleCode": "1T3.17", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.17.2", + "ruleContent": "Forward of the Front Bulkhead must be an energy-absorbing Impact Attenuator.", + "parentRuleCode": "1T3.17", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.18", + "ruleContent": "Bulkhead", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.18.1", + "ruleContent": "The Front Bulkhead must be constructed of closed section tubing per Rule T3.3.1.", + "parentRuleCode": "1T3.18", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.18.2", + "ruleContent": "Except as allowed byT3.22.2, The Front Bulkhead must be located forward of all non- crushable objects, e.g. batteries, master cylinders, hydraulic reservoirs.", + "parentRuleCode": "1T3.18", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.18.3", + "ruleContent": "The Front Bulkhead must be located such that the soles of the driver’s feet, when touching but not applying the pedals, are rearward of the bulkhead plane. (This plane is defined by the forward-most surface of the tubing.) Adjustable pedals must be in the forward most position.", + "parentRuleCode": "1T3.18", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.19", + "ruleContent": "Front Bulkhead Support", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.19.1", + "ruleContent": "The Front Bulkhead must be securely integrated into the Frame.", + "parentRuleCode": "1T3.19", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.19.2", + "ruleContent": "The Front Bulkhead must be supported back to the Front Roll Hoop by a minimum of three (3) Frame Members on each side of the vehicle with one at the top (within 50.8 mm of its top-most surface), one (1) at the bottom, and one (1) as a diagonal brace to provide triangulation.", + "parentRuleCode": "1T3.19", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.19.3", + "ruleContent": "The triangulation must be node-to-node, with triangles being formed by the Front Bulkhead, the diagonal and one of the other two required Front Bulkhead Support Frame Members.", + "parentRuleCode": "1T3.19", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.19.4", + "ruleContent": "All the Frame Members of the Front Bulkhead Support system listed above must be constructed of closed section tubing per Section T3.3.1.", + "parentRuleCode": "1T3.19", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20", + "ruleContent": "Impact Attenuator (IA)", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.1", + "ruleContent": "On all cars there must be an Impact Attenuator and an Anti-Intrusion Plate forward of the Front Bulkhead, with the Anti-Intrusion Plate between the Impact Attenuator and the Front Bulkhead. All methods of attachment of the IA to the Ant-Intrusion Plate and of the Anti-Intrusion Plate to the Front Bulkhead must provide adequate load paths for transverse and vertical loads in the event of off-axis impacts.", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.2", + "ruleContent": "The Anti-Intrusion Plate must: (a) Be a 1.5 mm (0.060 in) thick solid steel or 4.0 mm (0.157 in) thick solid aluminum plate. Monocoques may use an approved alternative as per T3.38. (b) Be attached securely and directly to the Front Bulkhead. (c) Have an outer profile that meets the requirements of T3.20.3.", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.3", + "ruleContent": "Alternative designs of the Anti-Intrusion Plate required by T3.20.2 that do not comply with the minimum specifications given above require an approved “Structural Equivalency Spreadsheet”, per T3.8. Equivalency must also be proven for perimeter shear strength of the proposed design. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.4", + "ruleContent": "The requirements for the outside profile of the Anti-Intrusion Plate are dependent on the method of attachment to the Front Bulkhead: ● For welded joints the profile must extend at least to the centerline of the Front Bulkhead tubes on all sides. ● For bolted joints the profile must match the outside dimensions of the Front Bulkhead around the entire periphery.", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.5", + "ruleContent": "For tube frame cars, the accepted methods of attaching the Anti-Intrusion Plate to the Front Bulkhead are: (a) Welding, where the welds are either continuous or interrupted. If interrupted, the weld/space ratio must be at least 1:1. All weld lengths must be greater than 25 mm (1”). (b) Bolted joints, using a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2”). NOTE: Holes in mandated tubes will require appropriate measures to ensure compliance with T3.3.1 Note 3, and T3.3.2", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.6", + "ruleContent": "For monocoque cars, the attachment of the Anti-Intrusion Plate to the monocoque structure must be documented in the team’s SES submission. This must prove the attachment method is equivalent to the bolted joints described in T3.20.5 and that the attachment method utilized will fail before any other part of the monocoque.", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.7", + "ruleContent": "The Impact Attenuator must be: (a) At least 200 mm (7.8 in) long, with its length oriented along the fore/aft axis of the Frame. (b) At least 100 mm (3.9 in) high and 200 mm (7.8 in) wide for a minimum distance of 200 mm (7.8 in) forward of the Front Bulkhead. (c) Attached securely to the Anti-Intrusion Plate. Segmented foam attenuators must have all segments bonded together to prevent sliding or parallelogramming.", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.8", + "ruleContent": "The accepted methods of attaching the Impact Attenuator to the Anti-Intrusion Plate are: (a) Bolted joints, using a minimum of four (4) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2”). (b) By the use of a structural adhesive. The adhesive must be appropriate for use with both substrate types. Appropriate adhesive choice, substrate preparation, and equivalency of this bonded joint to the bolted joint in T3.20.8(a) must be documented in the team’s IAD Report. Note: Foam IA’s cannot be attached solely by the bolted method.", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.20.9", + "ruleContent": "If a team uses the “standard” FSAE Impact Attenuator 3 , and the outside profile of the Anti- Intrusion Plate extends beyond the “standard” Impact Attenuator by more than 25 mm (1”) on 3 The officially approved “standard” Formula SAE Impact Attenuator may be found here on the Formula SAE website 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 any side, a diagonal or X-brace made from 1.00” x 0.049” steel tube, or an approved equivalent per T3.5, must be included in the Front Bulkhead.", + "parentRuleCode": "1T3.20", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21", + "ruleContent": "Impact Attenuator Test Data Report Requirement", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.1", + "ruleContent": "Impact Attenuator Test Data Report Requirement All teams, whether they are using their own design of Impact Attenuator (IA) or the “standard” FSAE Impact Attenuator, must submit an Impact Attenuator Data Report using the Impact Attenuator Data (IAD) Template found on the Formula Hybrid + Electric Document page at: https://www.formula-hybrid.org/documents", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.2", + "ruleContent": "All teams must submit calculations and/or test data to show that their Impact Attenuator, when mounted on the front of their vehicle and run into a solid, non-yielding impact barrier with a velocity of impact of 7.0 meters/second, would give an average deceleration of the vehicle not to exceed 20 g, with a peak deceleration less than or equal to 40 g's. NOTE 1: Quasi-static testing is allowed. NOTE 2: The calculations of how the reported absorbed energy, average deceleration and peak deceleration figures have been derived from the test data MUST be included in the report and appended to the report template.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.3", + "ruleContent": "Calculations must be based on the actual vehicle mass with a 175 lb. driver, full fluids, and rounded up to the nearest 100 lb. Note: Teams may only use the “Standard” FSAE impact attenuator design and data submission process if their vehicle mass with driver is 300 kgs (661 lbs) or less. To be eligible to utilize the “Standard” FSAE impact attenuator, teams must either have previously brought a Formula Hybrid + Electric vehicle that weighs under 300 kgs (661 lbs) with driver to a Formula Hybrid + Electric competition, or submit a detailed mass measurement spreadsheet covering all the vehicle’s components as part of the Impact Attenuator Data Report, showing that the new vehicle meets the above requirements.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.4", + "ruleContent": "Teams using a front wing must prove that the combination of the Impact Attenuator and front wing, when used together, do not exceed the peak deceleration of rule T3.21.2. Teams can use the following methods to show the design does not exceed the limits given in T3.21.2. (a) Physical testing of the Impact Attenuator with wing mounts, links, vertical plates, and a structural representation of the airfoil section to determine the peak force. See http://formula-hybrid.org/students/tech-support/ FAQs for an example of the structure to be included in the test. Or (b) Combine the peak force from physical testing of the Impact Attenuator Assembly with the wing mount failure load calculated from fastener shear and/or link buckling. Or (c) If they are using the Standard FSAE Impact Attenuator (see T3.21.3 above), combine the peak load of 95 kN exerted by the Standard FSAE Impact Attenuator with the wing mount failure load calculated from fastener shear and/or buckling.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.5", + "ruleContent": "When using acceleration data, the average deceleration must be calculated based on the raw data. The peak deceleration can be assessed based on the raw data, and if peaks above the 40g limit are apparent in the data, it can then be filtered with a Channel Filter Class (CFC) 60 (100 Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Tests”, or a 100 Hz, 3rd order, lowpass Butterworth (-3dB at 100 Hz) filter. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.6", + "ruleContent": "A schematic of the test method must be supplied along with photos of the attenuator before and after testing.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.7", + "ruleContent": "The test piece must be presented at technical inspection for comparison to the photographs and the attenuator fitted to the vehicle.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.8", + "ruleContent": "The report must be submitted electronically in Adobe Acrobat ® format (*.pdf file) to the address and by the date provided in the Action Deadlines provided on the Formula Hybrid + Electric website. This material must be a single file (text, drawings, data or whatever you are including).", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.9", + "ruleContent": "The Impact Attenuator Data Report must be named as follows: carnumber_schoolname_competitioncode_IAD.pdf using the assigned car number, the complete school name and competition code e.g. 087_University of SAE_FHE_IAD.pdf", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.10", + "ruleContent": "Teams that submit their Impact Attenuator Data Report after the due date will be penalized as listed in section A9.2.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.11", + "ruleContent": "Impact Attenuator Reports will be evaluated by the organizers and the evaluations will be passed to the Design Event Captain for consideration in that event.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.12", + "ruleContent": "During the test, the attenuator must be attached to the Anti-Intrusion Plate using the intended vehicle attachment method. The Anti-Intrusion Plate must be spaced at least 50 mm from any rigid surface. No part of the Anti-Intrusion Plate may permanently deflect more than 25.4 mm beyond the position of the Anti-Intrusion Plate before the test. Note: The 25.4 mm spacing represents the front bulkhead support and insures that the plate does not intrude excessively into the cockpit.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.21.13", + "ruleContent": "Dynamic testing (sled, pendulum, drop tower, etc.) of the impact attenuator may only be done at a dedicated test facility. The test facility may be part of the University but must be supervised by professional staff or University faculty. Teams are not allowed to construct their own dynamic test apparatus. Quasi-static testing may be performed by teams using their universities facilities/equipment, but teams are advised to exercise due care when performing all tests.", + "parentRuleCode": "1T3.21", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.22", + "ruleContent": "Non-Crushable Objects", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.22.1", + "ruleContent": "Except as allowed by T3.22.2, all non-crushable objects (e.g. batteries, master cylinders, hydraulic reservoirs) inside the primary structure must have 25 mm (1”) clearance to the rear face of the Impact Attenuator Anti-Intrusion Plate.", + "parentRuleCode": "1T3.22", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.22.2", + "ruleContent": "The front wing and wing supports may be forward of the Front Bulkhead, but may NOT be located in or pass through the Impact Attenuator. If the wing supports are in front of the Front Bulkhead, the supports must be included in the test of the Impact Attenuator. See T3.21.", + "parentRuleCode": "1T3.22", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.23", + "ruleContent": "Front Bodywork", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.23.1", + "ruleContent": "Sharp edges on the forward facing bodywork or other protruding components are prohibited.", + "parentRuleCode": "1T3.23", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.23.2", + "ruleContent": "All forward facing edges on the bodywork that could impact people, e.g. the nose, must have forward facing radii of at least 38 mm. This minimum radius must extend to at least forty-five degrees (45°) relative to the forward direction, along the top, sides and bottom of all affected edges. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.23", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.24", + "ruleContent": "Side Impact Structure for Tube Frame Cars The Side Impact Structure must meet the requirements listed below.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.24.1", + "ruleContent": "The Side Impact Structure for tube frame cars must be comprised of at least three (3) tubular members located on each side of the driver while seated in the normal driving position, as shown in Figure 11 Figure 11 – Side Impact Structure", + "parentRuleCode": "1T3.24", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.24.2", + "ruleContent": "The three (3) required tubular members must be constructed of material per Section T3.3.", + "parentRuleCode": "1T3.24", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.24.3", + "ruleContent": "The locations for the three (3) required tubular members are as follows: (a) The upper Side Impact Structural member must connect the Main Hoop and the Front Hoop. With a 77 kg driver seated in the normal driving position all of the member must be at a height between 300 mm and 350 mm above the ground. The upper frame rail may be used as this member if it meets the height, diameter and thickness requirements. (b) The lower Side Impact Structural member must connect the bottom of the Main Hoop and the bottom of the Front Hoop. The lower frame rail/frame member may be this member if it meets the diameter and wall thickness requirements. (c) The diagonal Side Impact Structural member must connect the upper and lower Side Impact Structural members forward of the Main Hoop and rearward of the Front Hoop.", + "parentRuleCode": "1T3.24", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.24.4", + "ruleContent": "With proper gusseting and/or triangulation, it is permissible to fabricate the Side Impact Structural members from more than one piece of tubing.", + "parentRuleCode": "1T3.24", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.24.5", + "ruleContent": "Alternative geometry that does not comply with the minimum requirements given above requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.24", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.25", + "ruleContent": "Inspection Holes", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.25.1", + "ruleContent": "To allow the verification of tubing wall thicknesses, 4.5 mm inspection holes must be drilled in a non-critical location of both the Main Hoop and the Front Hoop.", + "parentRuleCode": "1T3.25", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.25.2", + "ruleContent": "In addition, the Technical Inspectors may check the compliance of other tubes that have minimum dimensions specified in T3.3.1. This may be done by the use of ultra-sonic testing or by the drilling of additional inspection holes at the inspector’s request.", + "parentRuleCode": "1T3.25", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.25.3", + "ruleContent": "Inspection holes must be located so that the outside diameter can be measured across the inspection hole with a caliper, i.e. there must be access for the caliper to the inspection hole and to the outside of the tube one hundred eighty degrees (180°) from the inspection hole.", + "parentRuleCode": "1T3.25", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.26", + "ruleContent": "Composite Tubular Space Frames", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.26.1", + "ruleContent": "Composite tubular space frames are not permitted in the Primary Structure of the vehicle (See T3.2(g))", + "parentRuleCode": "1T3.26", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.26.2", + "ruleContent": "Composite tubular structures may be used for other tubes regulated under T3.3 provided the team receives prior approval from the Formula Hybrid + Electric chief technical examiner. This will require submission of the following data: (a) Test data on the joints used in the structure. (b) Static strength testing on all proposed configurations within the frame. (c) An assessment of the ability of all joints to handle cyclic loading. (d) The equivalency of the composite tubes to withstand maximum forces and moments (when compared to baseline materials). This information must also be included in the structural equivalency submission.", + "parentRuleCode": "1T3.26", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.27", + "ruleContent": "Monocoque General Requirements", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.27.1", + "ruleContent": "All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010.", + "parentRuleCode": "1T3.27", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.27.2", + "ruleContent": "All sections of the rules apply to monocoque structures except for the following sections which supplement or supersede other rule sections.", + "parentRuleCode": "1T3.27", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.27.3", + "ruleContent": "Monocoque construction requires an approved Structural Equivalency Spreadsheet, per Section T3.8. The form must demonstrate that the design is equivalent to a welded frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension. Information must include: material type(s), cloth weights, resin type, fiber orientation, number of layers, core material, and lay-up technique. The 3 point bend test and shear test data and pictures must also be included as per T3.30 Monocoque Laminate Testing. The Structural Equivalency must address each of the items below. Data from the laminate testing results must be used as the basis for any strength or stiffness calculations.", + "parentRuleCode": "1T3.27", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.27.4", + "ruleContent": "Composite and metallic monocoques have the same requirements.", + "parentRuleCode": "1T3.27", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.27.5", + "ruleContent": "Composite monocoques must meet the materials requirements in Rule T3.7 Composite Materials.", + "parentRuleCode": "1T3.27", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.28", + "ruleContent": "Monocoque Inspections", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.28.1", + "ruleContent": "Due to the monocoque rules and methods of manufacture it is not always possible to inspect all aspects of a monocoque during technical inspection. For items which cannot be verified by an inspector it is the responsibility of the team to provide documentation, both visual 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 and/or written, that the requirements have been met. Generally the following items should be possible to be confirmed by the technical inspector: (a) Verification of the Main Hoop outer diameter and wall thickness where it protrudes above the monocoque (b) Visual verification that the Main Hoop goes to the lowest part of the tub, locally (c) Verify mechanical attachment of Main Hoop to tub exists and matches the SES, at all points shown on the SES. (d) Verify the outside diameter and wall thickness of the Front Hoop by providing access as required by Rule T3.25.3. (e) Verify visually or by feel that the Front Hoop is installed. (f) Verify that the Front Hoop goes to the lowest part of the tub, locally. (g) Verify mechanical attachment of the Front Hoop (if included) against the SES.", + "parentRuleCode": "1T3.28", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.29", + "ruleContent": "Monocoque Buckling Modulus – Equivalent Flat Panel Calculation When specified in the rules, the EI of the monocoque must be calculated as the EI of a flat panel with the same composition as the monocoque about the neutral axis of the laminate. The curvature of the panel and geometric cross section of the monocoque must be ignored for these calculations. Note: Calculations of EI that do not reference T3.29 may take into account the actual geometry of the monocoque.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.30", + "ruleContent": "Monocoque Laminate Testing", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.30.1", + "ruleContent": "Teams must build a representative flat panel section of the monocoque side impact zone (“zone” is defined in T3.32.2 and T3.2(k)) and perform a 3 point bending test on this panel. They must prove by physical test that a section 200 mm x 500 mm has at least the same properties as a baseline steel side impact tube (See T3.3.1 “Baseline Steel Materials”) for bending stiffness and two side impact tubes for yield and ultimate strength. The data from these tests and pictures of the test samples must be included in the SES, the test results will be used to derive strength and stiffness properties used in the SES formulae for all laminate panels. The test specimen must be presented at technical inspection. If the test specimen does not meet these requirements then the monocoque side impact zone must be strengthened appropriately. Note: Teams are advised to make an equivalent test with the base line steel tubes such that any compliance in the test rig can be accounted for.", + "parentRuleCode": "1T3.30", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.30.2", + "ruleContent": "If laminates with a lay-up different to that of the side-impact structure are used then additional physical tests must be completed for any part of the monocoque that forms part of the primary structure. The material properties derived from these tests must then be used in the SES for the appropriate equivalency calculations. Note: A laminate with more or less plies, of the same lay-up as the side-impact structure, does not constitute a “different lay-up” and the material properties may be scaled accordingly.", + "parentRuleCode": "1T3.30", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.30.3", + "ruleContent": "Perimeter shear tests must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 The sample, measuring at least 100 mm x 100 mm must have core and skin thicknesses identical to those used in the actual monocoque and be manufactured using the same materials and processes. The fixture must support the entire sample, except for a 32 mm hole aligned co-axially with the punch. The sample must not be clamped to the fixture. The force-displacement data and photos of the test setup must be included in the SES. The first peak in the load-deflection curve must be used to determine the skin shear strength. This may be less than the minimum force required by T3.32.3/T3.33.3. The maximum force recorded must meet the requirements of T3.32.3/T3.33.3. Note: The edge of the punch and hole in the fixture may include an optional fillet up-to a maximum radius of 1 mm.", + "parentRuleCode": "1T3.30", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.31", + "ruleContent": "Monocoque Front Bulkhead See Rule T3.27 for general requirements that apply to all aspects of the monocoque. In addition, when modeled as an “L” shaped section the EI of the front bulkhead about both vertical and lateral axis must be equivalent to that of the tubes specified for the front bulkhead under T3.18. The length of the section perpendicular to the bulkhead may be a maximum of 25.4 mm measured from the rearmost face of the bulkhead. Furthermore, any front bulkhead which supports the IA plate must have a perimeter shear strength equivalent to a 1.5 mm thick steel plate.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.32", + "ruleContent": "Monocoque Front Bulkhead Support", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.32.1", + "ruleContent": "In addition to proving that the strength of the monocoque is adequate, the monocoque must have equivalent EI to the sum of the EI of the six (6) baseline steel tubes that it replaces.", + "parentRuleCode": "1T3.32", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.32.2", + "ruleContent": "The EI of the vertical side of the front bulkhead support structure must be equivalent to at least the EI of one baseline steel tube that it replaces when calculated as per rule T3.29 Monocoque Buckling Modulus.", + "parentRuleCode": "1T3.32", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.32.3", + "ruleContent": "The perimeter shear strength of the monocoque laminate in the front bulkhead support structure should be at least 4 kN for a section with a diameter of 25 mm. This must be proven by a physical test completed as per T3.30.3 and the results include in the SES", + "parentRuleCode": "1T3.32", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.33", + "ruleContent": "Monocoque Side Impact", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.33.1", + "ruleContent": "In addition to proving that the strength of the monocoque is adequate, the side of the monocoque must have equivalent EI to the sum of the EI of the three (3) baseline steel tubes that it replaces.", + "parentRuleCode": "1T3.33", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.33.2", + "ruleContent": "The side of the monocoque between the upper surface of the floor and 350 mm above the ground (Side Impact Zone) must have an EI of at least 50% of the sum of the EI of the three (3) baseline steel tubes that it replaces when calculated as per Rule T3.29 Monocoque Buckling Modulus.", + "parentRuleCode": "1T3.33", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.33.3", + "ruleContent": "The perimeter shear strength of the monocoque laminate should be at least 7.5 kN for a section with a diameter of 25 mm. This must be proven by physical test completed as per T3.30.3 and the results included in the SES. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 12 – Side Impact Zone Definition for a Monocoque", + "parentRuleCode": "1T3.33", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.34", + "ruleContent": "Monocoque Main Hoop", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.34.1", + "ruleContent": "The Main Hoop must be constructed of a single piece of uncut, continuous, closed section steel tubing per T3.3.1 and extend down to the bottom of the monocoque.", + "parentRuleCode": "1T3.34", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.34.2", + "ruleContent": "The Main Hoop must be mechanically attached at the top and bottom of the monocoque and at intermediate locations as needed to show equivalency.", + "parentRuleCode": "1T3.34", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.34.3", + "ruleContent": "Mounting plates welded to the Roll Hoop must be at least 2.0 mm thick steel.", + "parentRuleCode": "1T3.34", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.34.4", + "ruleContent": "Attachment of the Main Hoop to the monocoque must comply with T3.39.", + "parentRuleCode": "1T3.34", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.35", + "ruleContent": "Monocoque Front Hoop", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.35.1", + "ruleContent": "Composite materials are not allowed for the front hoop. See Rule T3.27 for general requirements that apply to all aspects of the monocoque.", + "parentRuleCode": "1T3.35", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.35.2", + "ruleContent": "Attachment of the Front Hoop to the monocoque must comply with Rule T3.39.", + "parentRuleCode": "1T3.35", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.36", + "ruleContent": "Monocoque Front and Main Hoop Bracing", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.36.1", + "ruleContent": "See Rule T3.27 for general requirements that apply to all aspects of the monocoque.", + "parentRuleCode": "1T3.36", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.36.2", + "ruleContent": "Attachment of tubular Front or Main Hoop Bracing to the monocoque must comply with Rule T3.39.", + "parentRuleCode": "1T3.36", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.37", + "ruleContent": "Monocoque Impact Attenuator and Anti-Intrusion Plate Attachment The attachment of the Impact Attenuator and Anti-Intrusion Plate to a monocoque structure requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8 that shows the equivalency to a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16 inch SAE Grade 5) bolts for the Anti-Intrusion Plate attachment and a minimum of four (4) bolts to the same minimum specification for the Impact Attenuator attachment.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.38", + "ruleContent": "Monocoque Impact Attenuator Anti-Intrusion Plate", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.38.1", + "ruleContent": "See Rule T3.27 for general requirements that apply to all aspects of the monocoque and Rule T3.20.3 for alternate Anti-Intrusion Plate designs. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.38", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.39", + "ruleContent": "Monocoque Attachments", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.39.1", + "ruleContent": "In any direction, each attachment point between the monocoque and the other primary structure must be able to carry a load of 30 kN.", + "parentRuleCode": "1T3.39", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.39.2", + "ruleContent": "The laminate, mounting plates, backing plates and inserts must have sufficient shear area, weld area and strength to carry the specified 30 kN load in any direction. Data obtained from the laminate perimeter shear strength test (T3.33.3) should be used to prove adequate shear area is provided", + "parentRuleCode": "1T3.39", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.39.3", + "ruleContent": "Each attachment point requires a minimum of two (2) 8 mm Metric Grade 8.8 or 5/16 inch SAE Grade 5 bolts", + "parentRuleCode": "1T3.39", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.39.4", + "ruleContent": "Each attachment point requires steel backing plates with a minimum thickness of 2.0 mm. Alternate materials may be used for backing plates if equivalency is approved.", + "parentRuleCode": "1T3.39", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.39.5", + "ruleContent": "The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports only may use one (1) 10 mm Metric Grade 8.8 or 3/8 inch SAE Grade 5 bolt as an alternative to T3.39.3 if the bolt is on the centerline of tube similar to the figure below. Figure 13 – Alternate Single Bolt Attachment", + "parentRuleCode": "1T3.39", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.39.6", + "ruleContent": "No crushing of the core is permitted", + "parentRuleCode": "1T3.39", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.39.7", + "ruleContent": "Main Hoop bracing attached to a monocoque (i.e. not welded to a rear space frame) is always considered “mechanically attached” and must comply with Rule T3.16.", + "parentRuleCode": "1T3.39", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.40", + "ruleContent": "Monocoque Driver’s Harness Attachment Points", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.40.1", + "ruleContent": "The monocoque attachment points for the shoulder and lap belts must support a load of 13 kN before failure.", + "parentRuleCode": "1T3.40", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.40.2", + "ruleContent": "The monocoque attachment points for the ant-submarine belts must support a load of 6.5 kN before failure.", + "parentRuleCode": "1T3.40", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.40.3", + "ruleContent": "If the lap belts and anti-submarine belts are attached to the same attachment point, then this point must support a load of 19.5 kN before failure.", + "parentRuleCode": "1T3.40", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.40.4", + "ruleContent": "The strength of lap belt attachment and shoulder belt attachment must be proven by physical test where the required load is applied to a representative attachment point where the proposed layup and attachment bracket is used. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.40", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T4", + "ruleContent": "COCKPIT", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.1", + "ruleContent": "Cockpit Opening Important Note: Teams are advised that cockpit template and Percy (Figure 5) compliance will be strictly enforced during mechanical technical inspection. Check the Formula Hybrid + Electric website for an instructional video on template and Percy inspection procedures.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.1.1", + "ruleContent": "In order to ensure that the opening giving access to the cockpit is of adequate size, a template shown in Figure 14 will be inserted downwards into the cockpit opening. It will be held horizontally and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it has passed below the top bar of the Side Impact Structure (or until it is 350 mm (13.8 inches) above the ground for monocoque cars). Fore and aft translation of the template (while maintaining its position parallel to the ground) will be permitted during insertion. Figure 14 – Cockpit Opening Template", + "parentRuleCode": "1T4.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.1.2", + "ruleContent": "During this test, the steering wheel, steering column, seat and all padding may be removed. The shifter or shift mechanism may not be removed unless it is integral with the steering wheel and is removed with the steering wheel. The firewall may not be moved or removed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: As a practical matter, for the checks, the steering column will not be removed. The technical inspectors will maneuver the template around the steering column shaft, but not the steering column supports.", + "parentRuleCode": "1T4.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.2", + "ruleContent": "Cockpit Internal Cross Section:", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.2.1", + "ruleContent": "A free vertical cross section, which allows the template shown in Figure 15 to be passed horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost pedal when in the inoperative position, must be maintained over its entire length. If the pedals are adjustable, they will be put in their most forward position. Figure 15 – Cockpit Internal Cross Section Template", + "parentRuleCode": "1T4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.2.2", + "ruleContent": "The template, with maximum thickness of 7 mm, will be held vertically and inserted into the cockpit opening rearward of the rear-most portion of the steering column. Note: At the discretion of the technical inspectors, the internal cross-section template may be moved vertically by small increments during fore and aft travel to clear height deviations in the floor of the vehicle (e.g. those caused by the steering rack, etc.). The template must still fit through the cross-section at the location of vertical deviation. A video demonstrating the template procedure can be found on YouTube: https://youtu.be/azz5kbmiQbw", + "parentRuleCode": "1T4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.2.3", + "ruleContent": "The only items that may be removed for this test are the steering wheel, and any padding required by Rule T5.8 “Driver’s Leg Protection” that can be easily removed without the use 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 of tools with the driver in the seat. The seat and any seat insert that may be used by any team member must remain in the cockpit.", + "parentRuleCode": "1T4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.2.4", + "ruleContent": "Teams whose cars do not comply with T4.1 or T4.2 will not be given a Technical Inspection Sticker and will not be allowed to compete in the dynamic events. Note: Cables, wires, hoses, tubes, etc. must not impede the passage of the templates required by T4.1 and T4.2.", + "parentRuleCode": "1T4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.3", + "ruleContent": "Driver’s Seat", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.3.1", + "ruleContent": "In side view the lowest point of the driver’s seat must be no lower than the top surface of the lower frame rails or by having a longitudinal tube (or tubes) that meets the requirements for Side Impact tubing, passing underneath the lowest point of the seat.", + "parentRuleCode": "1T4.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.3.2", + "ruleContent": "When seated in the normal driving position, adequate heat insulation must be provided to ensure that the driver will not contact any metal or other materials which may become heated to a surface temperature above sixty degrees C (60°C). The insulation may be external to the cockpit or incorporated with the driver’s seat or firewall. The design must show evidence of addressing all three (3) types of heat transfer, namely conduction, convection and radiation, with the following between the heat source, e.g. an exhaust pipe or coolant hose/tube and the panel that the driver could contact, e.g. the seat or floor: (a) Conduction Isolation by: (i) No direct contact between the heat source and the panel, or (ii) a heat resistant, conduction isolation material with a minimum thickness of 8 mm between the heat source and the panel. (b) Convection Isolation by a minimum air gap of 25 mm between the heat source and the panel. (c) Radiation Isolation by: (i) A solid metal heat shield with a minimum thickness of 0.4 mm or (ii) reflective foil or tape when combined with T4.3.2(a)(ii) above.", + "parentRuleCode": "1T4.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.4", + "ruleContent": "Floor Close-out All vehicles must have a floor closeout made of one or more panels, which separate the driver from the pavement. If multiple panels are used, gaps between panels are not to exceed 3 mm. The closeout must extend from the foot area to the firewall and prevent track debris from entering the car. The panels must be made of a solid, non-brittle material.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5", + "ruleContent": "Firewall", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.1", + "ruleContent": "Firewall(s) must separate the driver compartment from the following components: (a) Fuel Tanks. (b) Accumulators. (c) All components of the fuel supply. (d) External engine oil systems including hoses, oil coolers, tanks, etc. (e) Liquid cooling systems including those for I.C. engine and electrical components. (f) Lithium-based GLV batteries. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (g) All tractive systems (TS) components (h) All conductors carrying tractive system voltages (TSV) (Whether contained within conduit or not.)", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.2", + "ruleContent": "The firewall(s) must be a rigid, non-permeable surface made from 1.5 mm or thicker aluminum or proven equivalent. See Appendix H – Firewall Equivalency Test.", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.3", + "ruleContent": "The firewall(s) must seal completely against the passage of fluids and hot gasses, including at the sides and the floor of the cockpit, e.g. there can be no holes in a firewall through which seat belts pass.", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.4", + "ruleContent": "Pass-throughs for GLV wiring, cables, etc. are allowable if grommets are used to seal the pass- throughs. Multiple panels may be used to form the firewall but must be mechanically fastened in place and sealed at the joints.", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.5", + "ruleContent": "For those components listed in T4.5.1 that are mounted behind the driver, the firewall(s) must extend sufficiently far upwards and/or rearwards such that a straight line from any part of any listed component to any part of the tallest driver that is more than 150 mm below the top of his/her helmet, must pass through the firewall.", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.6", + "ruleContent": "For those components listed in section T4.5.1 positioned under the driver, the firewall must extend: (a) Continuously rearwards the full width of the cockpit from the Front Bulkhead, under and up behind the driver to a point where the helmet of the 95th percentile male template (T3.9.4) touches the head restraint, and (b) Alongside the driver, from the top of the Side Impact Structure down to the lower portion of the firewall required by T4.5.6(a) and from the rearmost front suspension mounting point to connect (without holes or gaps) behind the driver with the firewall required by T4.5.6(a). See Figure 16(a).", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.7", + "ruleContent": "For those components listed in section T4.5.1 that are mounted outboard of the Side Impact System (e.g. in side pods), the firewall(s) must extend from 100 mm forward to 100 mm rearward of the of the listed components and (a) alongside the driver at the full height of the listed component, and (b) cover the top of the listed components and (c) run either (i) under the cockpit between the firewall(s) required by T4.5.7(a), or (ii) extend 100 mm out under the listed components from the firewall(s) that are required by T4.5.8 See Figure 16(b&c).", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.8", + "ruleContent": "For the components listed in section T4.5.1 that are mounted in ways that do not fall clearly under any of sections T4.5.5, T4.5.6 or T4.5.7, the firewall must be configured to provide equivalent protection to the driver, and the firewall configuration must be approved by the Rules Committee.", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5.9", + "ruleContent": "Containers that meet the firewall requirements of T4.5.2, including accumulator containers, may be accepted as part of the firewall system; redundant barriers are not required. Tractive 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 System wiring and conduit must not be exposed to the driver while seated in or during egress from the vehicle. Note: To ensure adequate time for consideration and possible re-designs, applications should be submitted at least 1 month in advance of the event. Figure 16 – Examples 4 of firewall configurations", + "parentRuleCode": "1T4.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.6", + "ruleContent": "Accessibility of Controls All vehicle controls, including the shifter, must be operated from inside the cockpit without any part of the driver, e.g. hands, arms or elbows, being outside the planes of the Side Impact Structure defined in Rule T3.24 and T3.33.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.7", + "ruleContent": "Driver Visibility", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.7.1", + "ruleContent": "The driver must have adequate visibility to the front and sides of the car. With the driver seated in a normal driving position he/she must have a minimum field of vision of two hundred degrees (200°) (a minimum one hundred degrees (100°) to either side of the driver). The required visibility may be obtained by the driver turning his/her head and/or the use of mirrors. 4 The firewalls shown in red in Figure 16 are examples only and are not meant to imply that a firewall must lie outside the frame rails. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T4.7", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.7.2", + "ruleContent": "If mirrors are required to meet Rule T4.7.1, they must remain in place and adjusted to enable the required visibility throughout all dynamic events.", + "parentRuleCode": "1T4.7", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.8", + "ruleContent": "Driver Egress All drivers must be able to exit to the side of the vehicle in no more than 5 seconds. Egress time begins with the driver in the fully seated position, hands in driving position on the connected steering wheel and wearing the required driver equipment. Egress time will stop when the driver has both feet on the pavement.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.9", + "ruleContent": "Emergency Shut Down Test", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.9.1", + "ruleContent": "With their vision obscured, all drivers must be able to operate the cockpit Big Red Button (BRB) in less than one second. Time begins with the driver in the fully seated position, hands in driving position on the connected steering wheel, and wearing the required driver equipment.", + "parentRuleCode": "1T4.9", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T5", + "ruleContent": "DRIVER’S EQUIPMENT (BELTS AND COCKPIT PADDING)", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1", + "ruleContent": "Belts - General", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1.1", + "ruleContent": "Definitions (Note: Belt dimensions listed are nominal widths.) (a) 5-point system – consists of a lap belt, two (2) shoulder straps and a single anti-submarine strap. (b) 6-point system – consists of a lap belt, two (2) shoulder straps and two (2) leg or anti- submarine straps. (c) 7-point system – system is the same as the 6-point except it has three (3) anti-submarine straps, two (2) from the 6-point system and one (1) from the 5-point system. (d) Upright driving position - is defined as one with a seat back angled at thirty degrees (30°) or less from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in Table 6 and positioned per T3.9.4. (e) Reclined driving position - is defined as one with a seat back angled at more than thirty degrees (30°) from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in Table 6 and positioned per T3.9.4. (f) Chest-groin line - is the straight line that in side view follows the line of the shoulder belts from the chest to the release buckle.", + "parentRuleCode": "1T5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1.2", + "ruleContent": "Harness Requirements All drivers must use a 5, 6 or 7 point restraint harness meeting the following specifications: (a) SFI Specification 16.1, SFI Specification 16.5, SFI Specification 16.6, or FIA specification 8853/98 or FIA specification 8853-2016. Note: FIA harnesses with 44 mm (“2 inch”) shoulder straps meeting T5.1.2 and T5.1.3 are approved for use at FH+E (b) To accommodate drivers of differing builds, all lap belts must incorporate a tilt lock adjuster (“quick adjuster”). 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Lap belts with “pull-up” adjusters are recommended over “pull-down” adjusters and a tilt lock adjuster in each portion of the lap belt is highly recommended. (c) Cars with a “reclined driving position” (see T5.1.1(e) above) must have either a 6 point or 7-point harness, AND have either anti-submarine belts with tilt lock adjusters (“quick adjusters”) or have two (2) sets of anti-submarine belts installed. (d) The shoulder harness must be the over-the-shoulder type. Only separate shoulder straps are permitted (i.e. “Y”-type shoulder straps are not allowed). The “H”-type configuration is allowed. (e) The belts must bear the appropriate dated labels. (f) The material of all straps must be in perfect condition.", + "parentRuleCode": "1T5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1.3", + "ruleContent": "Harness Replacement - Harnesses must be replaced following December 31 st of the year of the expiration date shown on the label. (Note: SFI belts are normally certified for two (2) years from the date of manufacture while FIA belts are normally certified for five (5) years from the date of manufacture.)", + "parentRuleCode": "1T5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1.4", + "ruleContent": "The restraint system must be worn tightly at all times.", + "parentRuleCode": "1T5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.2", + "ruleContent": "Belt, Strap and Harness Installation - General", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.2.1", + "ruleContent": "The lap belt, shoulder harness and anti-submarine strap(s) must be securely mounted to the Primary Structure. Such structure and any guide or support for the belts must meet the minimum requirements of T3.3.1. Note: Rule T3.4.5 applies to these tubes as well so a non-straight shoulder harness bar would require support per T3.4.5", + "parentRuleCode": "1T5.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.2.2", + "ruleContent": "The tab or bracket to which any harness is attached must fulfill the following requirements: (a) Have a minimum cross sectional area of 60 sq. mm (0.093 sq. in) of steel to be sheared or failed in tension at any point of the tab, and (b) Have a minimum thickness of 1.6 mm (0.063 inch). (c) Where lap belts and anti-submarine belts use the same attachment point, there must be a minimum cross sectional area of 90 sq. mm (0.140 sq. in) of steel to be sheared or failed in tension at any point of the tab. (d) Where brackets are fastened to the chassis, two 6mm Metric Grade 8.8 (1/4 inch SAE Grade 5) fasteners or stronger must be used to attach the bracket to the chassis. (e) Where a single shear tab is welded to the chassis, the tab to tube welding must be on both sides of the base of the tab. (f) The bracket or tab should be aligned such that it is not put in bending when that portion of the harness is put under load. NOTE: Double shear attachments are preferred. Where possible, the tabs and brackets for double shear mounts should also be welded on both sides.", + "parentRuleCode": "1T5.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.2.3", + "ruleContent": "Harnesses, belts and straps must not pass through a firewall, i.e. all harness attachment points must be on the driver’s side of any firewall.", + "parentRuleCode": "1T5.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.2.4", + "ruleContent": "The attachment of the Driver’s Restraint System to a monocoque structure requires an approved Structural Equivalency Spreadsheet per Rule T3.8. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T5.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.2.5", + "ruleContent": "All adjusters must be threaded in accordance with manufacturer’s instructions. Examples are given in Figure 17. Figure 17 - Seat Belt Threading Examples", + "parentRuleCode": "1T5.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.2.6", + "ruleContent": "The restraint system installation is subject to approval of the Chief Technical Inspector.", + "parentRuleCode": "1T5.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3", + "ruleContent": "Lap Belt Mounting", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3.1", + "ruleContent": "The lap belt must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip bones).", + "parentRuleCode": "1T5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3.2", + "ruleContent": "The lap belts must not be routed over the sides of the seat. The lap belts must come through the seat at the bottom of the sides of the seat to maximize the wrap of the pelvic surface and continue in a straight line to the anchorage point.", + "parentRuleCode": "1T5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3.3", + "ruleContent": "Where the belts or harness pass through a hole in the seat, the seat must be rolled or grommeted to prevent chafing of the belts.", + "parentRuleCode": "1T5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3.4", + "ruleContent": "To fit drivers of differing statures correctly, in side view, the lap belt must be capable of pivoting freely by using either a shouldered bolt or an eye bolt attachment, i.e. mounting lap belts by wrapping them around frame tubes is no longer acceptable.", + "parentRuleCode": "1T5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3.5", + "ruleContent": "With an “upright driving position”, in side view the lap belt must be at an angle of between forty-five degrees (45°) and sixty-five degrees (65°) to the horizontal. This means that the centerline of the lap belt at the seat bottom should be between 0 – 76 mm forward of the seat back to seat bottom junction. (See Figure 18) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 18 – Lap Belt Angles with Upright Driver", + "parentRuleCode": "1T5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3.6", + "ruleContent": "With a “reclined driving position”, in side view the lap belt must be between an angle of sixty degrees (60°) and eighty degrees (80°) to the horizontal.", + "parentRuleCode": "1T5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3.7", + "ruleContent": "Any bolt used to attach a lap belt, either directly to the chassis or to an intermediate bracket, must be a minimum of either: (a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR (b) The bolt diameter specified by the harness manufacturer.", + "parentRuleCode": "1T5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.4", + "ruleContent": "Shoulder Harness", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.4.1", + "ruleContent": "The shoulder harness must be mounted behind the driver to structure that meets the requirements of T3.3.1. However, it cannot be mounted to the Main Roll Hoop Bracing or attendant structure without additional bracing to prevent loads being transferred into the Main Hoop Bracing.", + "parentRuleCode": "1T5.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.4.2", + "ruleContent": "If the harness is mounted to a tube that is not straight, the joints between this tube and the structure to which it is mounted must be reinforced in side view by gussets or triangulation tubes to prevent torsional rotation of the harness mounting tube.", + "parentRuleCode": "1T5.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.4.3", + "ruleContent": "The shoulder harness mounting points must be between 178 mm and 229 mm apart. (See Figure 19) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 19 – Shoulder Harness Mounting – Top View", + "parentRuleCode": "1T5.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.4.4", + "ruleContent": "From the driver’s shoulders rearwards to the mounting point or structural guide, the shoulder harness must be between ten degrees (10°) above the horizontal and twenty degrees (20°) below the horizontal. (See Figure 20). Figure 20 - Shoulder Harness Mounting – Side View", + "parentRuleCode": "1T5.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.4.5", + "ruleContent": "Any bolt used to attach a shoulder harness belt, either directly to the chassis or to an intermediate bracket, must be must be a minimum of either: (a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR (b) The bolt diameter specified by the harness manufacturer.", + "parentRuleCode": "1T5.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.5", + "ruleContent": "Anti-Submarine Belt Mounting", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.5.1", + "ruleContent": "The anti-submarine belt of a 5-point harness must be mounted so that the mounting point is in line with, or angled slightly forward (up to twenty degrees (20°)) of, the driver’s chest-groin line. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T5.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.5.2", + "ruleContent": "The anti-submarine belts of a 6 point harness must be mounted either: (a) With the belts going vertically down from the groin, or angled up to twenty degrees (20°) rearwards. The anchorage points should be approximately 100 mm apart. Or (b) With the anchorage points on the Primary Structure at or near the lap belt anchorages, the driver sitting on the anti-submarine belts, and the belts coming up around the groin to the release buckle.", + "parentRuleCode": "1T5.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.5.3", + "ruleContent": "All anti-submarine belts must be installed so that they go in a straight line from the anchorage point(s) to: ● Either the harness release buckle for the 5-point mounting per T5.5.1, 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 ● Or the first point where the belts touch the driver’s body for the 6-point mounting per T5.5.2(a) or T5.5.2(b). without touching any hole in the seat or any other intermediate structure.", + "parentRuleCode": "1T5.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.5.4", + "ruleContent": "Any bolt used to attach an anti-submarine belt, either directly to the chassis or to an intermediate bracket, must be a must be a minimum of either: (a) 8mm Metric Grade 8.8 (5/16 inch SAE Grade 5) OR (b) The bolt diameter specified by the belt manufacturer.", + "parentRuleCode": "1T5.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.6", + "ruleContent": "Head Restraint", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.6.1", + "ruleContent": "A head restraint must be provided on the car to limit the rearward motion of the driver’s head.", + "parentRuleCode": "1T5.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.6.2", + "ruleContent": "The restraint must: (a) Be vertical or near vertical in side view. (b) Be padded with a minimum thickness of 38 mm (1.5 inches) of an energy absorbing material that meets either SFI Standard 45.2, or is listed on the FIA Technical List No. 17 as a “Type A or a Type B Material for single seater cars”, i.e. CONFOR™ foam CF- 42AC (pink) or CF-42M (pink) or CF45 (blue) or CF45M (blue) . (c) Have a minimum width of 15 cm (6 inches). (d) Have a minimum area of 235 sq. cms (36 sq. inches) AND have a minimum height adjustment of 17.5 cm (7 inches), OR have a minimum height of 28 cm (11 inches). (e) Be covered in a thin, flexible cover with a hole with a minimum dimeter of 20 mm in a surface other than the front surface, through which the energy absorbing material can be seen. (f) Be located so that for each driver: (i) The restraint is no more than 25 mm (1 inch) away from the back of the driver’s helmet, with the driver in their normal driving position. (ii) The contact point of the back of the driver’s helmet on the head restraint is no less than 50 mm (2 inches) from any edge of the head restraint. Note 1: Head restraints may be changed to accommodate different drivers (See T1.2.2(d)). Note 2: The above requirements must be met for all drivers. Note 3: Approximately 100 mm (4 inches) longitudinal adjustment is required to accommodate 5th to 95th Percentile drivers. This is not a specific rules requirement, but teams must have sufficient longitudinal adjustment and/or alternative thickness head restraints available, such that the above requirements are met by all their drivers.", + "parentRuleCode": "1T5.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.6.3", + "ruleContent": "The restraint, its attachment and mounting must be strong enough to withstand a force of 890 Newtons applied in a rearward direction. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T5.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.7", + "ruleContent": "Roll Bar Padding Any portion of the roll bar, roll bar bracing or frame which might be contacted by the driver’s helmet must be covered with a minimum thickness of 12 mm (0.5 inches) of padding which meets SFI spec 45.1 or FIA 8857-2001.", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.8", + "ruleContent": "Driver’s Leg Protection", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.8.1", + "ruleContent": "To keep the driver’s legs away from moving or sharp components, all moving suspension and steering components, and other sharp edges inside the cockpit between the front roll hoop and a vertical plane 100 mm rearward of the pedals, must be shielded with a shield made of a solid material. Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti-roll/sway bars, steering racks and steering column CV joints.", + "parentRuleCode": "1T5.8", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.8.2", + "ruleContent": "Covers over suspension and steering components must be removable to allow inspection of the mounting points.", + "parentRuleCode": "1T5.8", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T6", + "ruleContent": "GENERAL CHASSIS RULES", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.1", + "ruleContent": "Suspension", + "parentRuleCode": "1T6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.1.1", + "ruleContent": "The car must be equipped with a fully operational suspension system with shock absorbers, front and rear, with usable wheel travel of at least 50.8 mm, 25.4 mm jounce and 25.4 mm rebound, with driver seated. The judges reserve the right to disqualify cars which do not represent a serious attempt at an operational suspension system or which demonstrate handling inappropriate for an autocross circuit.", + "parentRuleCode": "1T6.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.1.2", + "ruleContent": "All suspension mounting points must be visible at Technical Inspection, either by direct view or by removing any covers.", + "parentRuleCode": "1T6.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.2", + "ruleContent": "Ground Clearance The ground clearance must be sufficient to prevent any portion of the car (other than tires) from touching the ground during track events, and with the driver aboard there must be a minimum of 25.4 mm of static ground clearance under the complete car at all times.", + "parentRuleCode": "1T6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.3", + "ruleContent": "Wheels", + "parentRuleCode": "1T6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.3.1", + "ruleContent": "The wheels of the car must be 8 inches (203.2 mm) or more in diameter.", + "parentRuleCode": "1T6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.3.2", + "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel in the event that the nut loosens. A second nut (“jam nut”) does not meet these requirements.", + "parentRuleCode": "1T6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.3.3", + "ruleContent": "Standard wheel lug bolts are considered engineering fasteners and any modification will be subject to extra scrutiny during technical inspection. Teams using modified lug bolts or custom designs will be required to provide proof that good engineering practices have been followed in their design.", + "parentRuleCode": "1T6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.3.4", + "ruleContent": "Aluminum wheel nuts may be used, but they must be hard anodized and in pristine condition.", + "parentRuleCode": "1T6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.4", + "ruleContent": "Tires", + "parentRuleCode": "1T6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.4.1", + "ruleContent": "Vehicles may have two types of tires as follows: (a) Dry Tires – The tires on the vehicle when it is presented for technical inspection are defined as its “Dry Tires”. The dry tires may be any size or type. They may be slicks or treaded. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (b) Rain Tires – Rain tires may be any size or type of treaded or grooved tire provided: (i) The tread pattern or grooves were molded in by the tire manufacturer, or were cut by the tire manufacturer or his appointed agent. Any grooves that have been cut must have documentary proof that it was done in accordance with these rules. (ii) There is a minimum tread depth of 2.4 mm. Note: Hand cutting, grooving or modification of the tires by the teams is specifically prohibited.", + "parentRuleCode": "1T6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.4.2", + "ruleContent": "Within each tire set, the tire compound or size, or wheel type or size may not be changed after static judging has begun. Tire warmers are not allowed. No traction enhancers may be applied to the tires after the static judging has begun.", + "parentRuleCode": "1T6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5", + "ruleContent": "Steering", + "parentRuleCode": "1T6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.1", + "ruleContent": "The steering wheel must be mechanically connected to the wheels, i.e. “steer-by-wire” or electrically actuated steering is prohibited.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.2", + "ruleContent": "The steering system must have positive steering stops that prevent the steering linkages from locking up (the inversion of a four-bar linkage at one of the pivots). The stops may be placed on the uprights or on the rack and must prevent the tires from contacting suspension, body, or frame members during the track events.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.3", + "ruleContent": "Allowable steering system free play is limited to seven degrees (7°) total measured at the steering wheel.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.4", + "ruleContent": "The steering wheel must be attached to the column with a quick disconnect. The driver must be able to operate the quick disconnect while in the normal driving position with gloves on.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.5", + "ruleContent": "Rear wheel steering, which can be electrically actuated, is permitted but only if mechanical stops limit the range of angular movement of the rear wheels to a maximum of six degrees (6°). This must be demonstrated with a driver in the car and the team must provide the facility for the steering angle range to be verified at Technical Inspection.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.6", + "ruleContent": "The steering wheel must have a continuous perimeter that is near circular or near oval, i.e. the outer perimeter profile can have some straight sections, but no concave sections. “H”, “Figure 8”, or cutout wheels are not allowed.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.7", + "ruleContent": "In any angular position, the top of the steering wheel must be no higher than the top-most surface of the Front Hoop. See Figure 7.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.8", + "ruleContent": "Steering systems using cables for actuation are not prohibited by T6.5.1 but additional documentation must be submitted. The team must submit a failure modes and effects analysis report with design details of the proposed system as part of the structural equivalency spreadsheet (SES). The report must outline the analysis that was done to show the steering system will function properly, potential failure modes and the effects of each failure mode and finally failure mitigation strategies used by the team. The organizing committee will review the submission and advise the team if the design is approved. If not approved, a non-cable based steering system must be used instead.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.9", + "ruleContent": "The steering rack must be mechanically attached to the frame. If fasteners are used they must be compliant with ARTICLE T11. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.5.10", + "ruleContent": "Joints between all components attaching the steering wheel to the steering rack must be mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup are not permitted.", + "parentRuleCode": "1T6.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.6", + "ruleContent": "Jacking Point", + "parentRuleCode": "1T6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.6.1", + "ruleContent": "A jacking point, which is capable of supporting the car’s weight and of engaging the organizers’ “quick jacks”, must be provided at the rear of the car.", + "parentRuleCode": "1T6.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.6.2", + "ruleContent": "The jacking point is required to be: (a) Visible to a person standing 1 meter behind the car. (b) Painted orange. (c) Oriented horizontally and perpendicular to the centerline of the car (d) Made from round, 25–29 mm O.D. aluminum or steel tube (e) A minimum of 300 mm long (f) Exposed around the lower 180 degrees (180°) of its circumference over a minimum length of 280 mm (g) The height of the tube is required to be such that: (i) There is a minimum of 75 mm clearance from the bottom of the tube to the ground measured at tech inspection. (ii) With the bottom of the tube 200 mm above ground, the wheels do not touch the ground when they are in full rebound. Comment on Disabled Cars – The organizers and the Rules Committee remind teams that cars disabled on course must be removed as quickly as possible. A variety of tools may be used to move disabled cars including quick jacks, dollies of different types, tow ropes and occasionally even boards. We expect cars to be strong enough to be easily moved without damage. Speed is important in clearing the course and although the course crew exercises due care, parts of a vehicle can be damaged during removal. The organizers are not responsible for damage that occurs when moving disabled vehicles. Removal/recovery workers will jack, lift, carry or tow the car at whatever points they find easiest to access. Accordingly, we advise teams to consider the strength and location of all obvious jacking, lifting and towing points during the design process.", + "parentRuleCode": "1T6.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.7", + "ruleContent": "Rollover Stability", + "parentRuleCode": "1T6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.7.1", + "ruleContent": "The track and center of gravity of the car must combine to provide adequate rollover stability.", + "parentRuleCode": "1T6.7", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.7.2", + "ruleContent": "Rollover stability will be evaluated on a tilt table using a pass/fail test. The vehicle must not roll when tilted at an angle of sixty degrees (60°) to the horizontal in either direction, corresponding to 1.7 G’s. The tilt test will be conducted with the tallest driver in the normal driving position.", + "parentRuleCode": "1T6.7", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T7", + "ruleContent": "BRAKE SYSTEM", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1", + "ruleContent": "Brake System - General", + "parentRuleCode": "1T7", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.1", + "ruleContent": "The car must be equipped with a braking system that acts on all four wheels and is operated by a single control. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.2", + "ruleContent": "It must have two (2) independent hydraulic circuits such that in the case of a leak or failure at any point in the system, effective braking power is maintained on at least two (2) wheels. Each hydraulic circuit must have its own fluid reserve, either by the use of separate reservoirs or by the use of a dammed, OEM-style reservoir.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.3", + "ruleContent": "A single brake acting on a limited-slip differential is acceptable.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.4", + "ruleContent": "The brake system must be capable of locking all four (4) wheels during the test specified in section T7.2.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.5", + "ruleContent": "“Brake-by-wire” systems are prohibited.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.6", + "ruleContent": "Unarmored plastic brake lines are prohibited.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.7", + "ruleContent": "The braking systems must be protected with scatter shields from failure of the drive train (see T8.4) or from minor collisions.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.8", + "ruleContent": "In side view no portion of the brake system that is mounted on the sprung part of the car can project below the lower surface of the frame or the monocoque, whichever is applicable.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.9", + "ruleContent": "The brake pedal must be designed to withstand a force of 2000 N without any failure of the brake system or pedal box. This may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.10", + "ruleContent": "The brake pedal must be fabricated from steel or aluminum or machined from steel, aluminum or titanium.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.1.11", + "ruleContent": "The first 50% of the brake pedal travel may be used to control regeneration without necessarily actuating the hydraulic brake system. The remaining brake pedal travel must directly actuate the hydraulic brake system, but brake energy regeneration may remain active. Note: Any strategy to regenerate energy while coasting or braking must be covered by the ESF.", + "parentRuleCode": "1T7.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.2", + "ruleContent": "Brake Test", + "parentRuleCode": "1T7", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.2.1", + "ruleContent": "The brake system will be dynamically tested and must demonstrate the capability of locking all four (4) wheels and stopping the vehicle in a straight line at the end of an acceleration run specified by the brake inspectors 5 .", + "parentRuleCode": "1T7.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.2.2", + "ruleContent": "After accelerating, the tractive system must be switched off by the driver and the driver has to lock all four wheels of the vehicle by braking. The brake test is passed if all four wheels simultaneously lock while the tractive system is shut down. Note: It is acceptable if the Tractive System Active Light switches off shortly after the vehicle has come to a complete stop as the reduction of the system voltage may take up to 5 seconds.", + "parentRuleCode": "1T7.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.3", + "ruleContent": "Brake Over-Travel Switch", + "parentRuleCode": "1T7", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.3.1", + "ruleContent": "A brake pedal over-travel switch must be installed on the car as part of the shutdown system and wired in series with the shutdown buttons (EV7.1). This switch must be installed so that in the event of brake system failure such that the brake pedal over travels it will result in the shutdown system being activated. 5 It is a persistent source of mystery to the organizers, how a small percentage of teams, after passing all the required inspections, appear to have never checked to see if they can lock all four wheels. Check this early! 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.3.2", + "ruleContent": "Repeated actuation of the switch must not restore power to these components, and it must be designed so that the driver cannot reset it.", + "parentRuleCode": "1T7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.3.3", + "ruleContent": "The brake over-travel switch must not be used as a mechanical stop for the brake pedal and must be installed in such a way that it and its mounting will remain intact and operational when actuated.", + "parentRuleCode": "1T7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.3.4", + "ruleContent": "The switch must be implemented directly. i.e. It may not operate through programmable logic controllers, engine control units, or digital controllers", + "parentRuleCode": "1T7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.3.5", + "ruleContent": "The Brake Over-Travel switch must be a mechanical single pole, single throw (commonly known as a two-position) switch (push-pull or flip type) as shown below. Figure 21 – Over-travel Switches", + "parentRuleCode": "1T7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.4", + "ruleContent": "Brake Light", + "parentRuleCode": "1T7", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.4.1", + "ruleContent": "The car must be equipped with a red brake light.", + "parentRuleCode": "1T7.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.4.2", + "ruleContent": "The brake light itself must have a black background and a rectangular, triangular or near round shape with a minimum shining surface of at least 15 cm 2 .", + "parentRuleCode": "1T7.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.4.3", + "ruleContent": "The brake light must be clearly visible from the rear in bright sunlight.", + "parentRuleCode": "1T7.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.4.4", + "ruleContent": "When LED lights are used without an optical diffuser, they may not be more than 20 mm apart. If a single line of LEDs is used, the minimum length is 150 mm.", + "parentRuleCode": "1T7.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T7.4.5", + "ruleContent": "The light must be mounted between the wheel centerline and driver’s shoulder level vertically and approximately on vehicle centerline laterally.", + "parentRuleCode": "1T7.4", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T8", + "ruleContent": "POWERTRAIN", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.1", + "ruleContent": "Coolant Fluid Limitations", + "parentRuleCode": "1T8", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.1.1", + "ruleContent": "Water-cooled engines must use only plain water. Glycol-based antifreeze, “water wetter”, water pump lubricants of any kind, or any other additives are strictly prohibited.", + "parentRuleCode": "1T8.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.1.2", + "ruleContent": "Electric motors, accumulators or electronics must use plain water or approved 6 fluids as the coolant. 6 “Opticool” (http://dsiventures.com/electronics-cooling/opticool-a-fluid/) is permitted. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T8.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.2", + "ruleContent": "System Sealing", + "parentRuleCode": "1T8", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.2.1", + "ruleContent": "Any cooling or lubrication system must be sealed to prevent leakage.", + "parentRuleCode": "1T8.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.2.2", + "ruleContent": "Any vent on a cooling or lubrication system must employ a catch-can to retain any fluid that is expelled. A separate catch-can is required for each vent.", + "parentRuleCode": "1T8.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.2.3", + "ruleContent": "Each catch-can on a cooling or lubrication system must have a minimum volume of ten (10) percent of the fluid being contained, or 0.9 liter whichever is greater.", + "parentRuleCode": "1T8.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.2.4", + "ruleContent": "Any vent on other systems containing liquid lubricant, e.g. a differential or gearbox, etc., must have a catch-can with a minimum volume of ten (10) percent of the fluid being contained or 0.5 liter, whichever is greater.", + "parentRuleCode": "1T8.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.2.5", + "ruleContent": "Catch-cans must be capable of containing liquids at temperatures in excess of 100 deg. C without deformation, be shielded by a firewall, be below the driver’s shoulder level, and be positively retained, i.e. no tie-wraps or tape as the primary method of retention.", + "parentRuleCode": "1T8.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.2.6", + "ruleContent": "Any catch-can for a cooling system must vent through a hose with a minimum internal diameter of 3 mm down to the bottom levels of the Frame.", + "parentRuleCode": "1T8.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.3", + "ruleContent": "Transmission and Drive Any transmission may be used.", + "parentRuleCode": "1T8", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.4", + "ruleContent": "Drive Train Shields and Guards", + "parentRuleCode": "1T8", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.4.1", + "ruleContent": "Exposed high-speed final drivetrain equipment such as Continuously Variable Transmissions (CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives and clutch drives, must be fitted with scatter shields in case of failure. The final drivetrain shield must cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley. The final drivetrain shield must start and end parallel to the lowest point of the chain wheel/belt/pulley. (See Figure 22) Body panels or other existing covers are not acceptable unless constructed from approved materials per T8.4.3 or T8.4.4. Note: If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 22 - Final Drive Scatter Shield Example Comment: Scatter shields are intended to contain drivetrain parts which might separate from the car.", + "parentRuleCode": "1T8.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.4.2", + "ruleContent": "Perforated material may not be used for the construction of scatter shields.", + "parentRuleCode": "1T8.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.4.3", + "ruleContent": "Chain Drive - Scatter shields for chains must be made of at least 2.6 mm steel or stainless steel (no alternatives are allowed), and have a minimum width equal to three (3) times the width of the chain. The guard must be centered on the center line of the chain and remain aligned with the chain under all conditions.", + "parentRuleCode": "1T8.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.4.4", + "ruleContent": "Non-metallic Belt Drive - Scatter shields for belts must be made from at least 3.0 mm Aluminum Alloy 6061-T6, and have a minimum width that is equal to 1.7 times the width of the belt.", + "parentRuleCode": "1T8.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.4.5", + "ruleContent": "The guard must be centered on the center line of the belt and remain aligned with the belt under all conditions.", + "parentRuleCode": "1T8.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.4.6", + "ruleContent": "Attachment Fasteners - All fasteners attaching scatter shields and guards must be a minimum 6mm Metric Grade 8.8 or 1/4 inch SAE Grade 5 or stronger.", + "parentRuleCode": "1T8.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.4.7", + "ruleContent": "Finger Guards – Finger guards are required to cover any drivetrain parts that spin while the car is stationary with the engine running. Finger guards may be made of lighter material, sufficient to resist finger forces. Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard. Comment: Finger guards are intended to prevent finger intrusion into rotating equipment while the vehicle is at rest.", + "parentRuleCode": "1T8.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.5", + "ruleContent": "Integrity of systems carrying fluids – Tilt Test", + "parentRuleCode": "1T8", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.5.1", + "ruleContent": "During technical inspection, the car must be capable of being tilted to a forty-five degree (45°) angle without leaking fluid of any type. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T8.5", + "pageNumber": "1" + }, + { + "ruleCode": "1T8.5.2", + "ruleContent": "The tilt test will be conducted on hybrid cars with the fuel tank filled with either 3.7 litres of fuel or to 50 mm below the top of the filler neck (whichever is less), and on all cars with all other vehicle systems that contain fluids filled to their normal maximum capacity.", + "parentRuleCode": "1T8.5", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T9", + "ruleContent": "AERODYNAMIC DEVICES", + "pageNumber": "1" + }, + { + "ruleCode": "1T9.1", + "ruleContent": "Aero Dynamics and Ground Effects - General All aerodynamic devices must satisfy the following requirements:", + "parentRuleCode": "1T9", + "pageNumber": "1" + }, + { + "ruleCode": "1T9.2", + "ruleContent": "Location In plan view, no part of any aerodynamic device, wing, under tray or splitter can be: (a) Further forward than 460 mm forward of the fronts of the front tires (b) No further rearward than the rear of the rear tires. (c) No wider than the outside of the front tires or rear tires measured at the height of the hubs, whichever is wider.", + "parentRuleCode": "1T9", + "pageNumber": "1" + }, + { + "ruleCode": "1T9.3", + "ruleContent": "Wing Edges - Minimum Radii All wing leading edges must have a minimum radius 12.7 mm. Wing leading edges must be as blunt or blunter than the required radii for an arc of plus or minus 45 degrees (± 45°) centered on a plane parallel to the ground or similar reference plane for all incidence angles which lie within the range of adjustment of the wing or wing element. If leading edge slats or slots are used, both the fronts of the slats or slots and of the main body of the wings must meet the minimum radius rules.", + "parentRuleCode": "1T9", + "pageNumber": "1" + }, + { + "ruleCode": "1T9.4", + "ruleContent": "Other Edge Radii Limitations All wing edges, end plates, Gurney flaps, wicker bills, splitters undertrays and any other wing accessories must have minimum edge radii of at least 3 mm i.e., this means at least a 6 mm thick edge.", + "parentRuleCode": "1T9", + "pageNumber": "1" + }, + { + "ruleCode": "1T9.5", + "ruleContent": "Ground Effect Devices No power device may be used to move or remove air from under the vehicle except fans designed exclusively for cooling. Power ground effects are prohibited.", + "parentRuleCode": "1T9", + "pageNumber": "1" + }, + { + "ruleCode": "1T9.6", + "ruleContent": "Driver Egress Requirements", + "parentRuleCode": "1T9", + "pageNumber": "1" + }, + { + "ruleCode": "1T9.6.1", + "ruleContent": "Egress from the vehicle within the time set in Rule T4.8 “Driver Egress,” must not require any movement of the wing or wings or their mountings.", + "parentRuleCode": "1T9.6", + "pageNumber": "1" + }, + { + "ruleCode": "1T9.6.2", + "ruleContent": "The wing or wings must be mounted in such positions, and sturdily enough, that any accident is unlikely to deform the wings or their mountings in such a way to block the driver’s egress.", + "parentRuleCode": "1T9.6", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T10", + "ruleContent": "COMPRESSED GAS SYSTEMS AND HIGH PRESSURE HYDRAULICS", + "pageNumber": "1" + }, + { + "ruleCode": "1T10.1", + "ruleContent": "Compressed Gas Cylinders and Lines Any system on the vehicle that uses a compressed gas as an actuating medium must comply with the following requirements: (a) Working Gas -The working gas must be nonflammable, e.g. air, nitrogen, carbon dioxide. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (b) Cylinder Certification - The gas cylinder/tank must be of proprietary manufacture, designed and built for the pressure being used, certified by an accredited testing laboratory in the country of its origin, and labeled or stamped appropriately. (c) Pressure Regulation -The pressure regulator must be mounted directly onto the gas cylinder/tank. (d) Protection – The gas cylinder/tank and lines must be protected from rollover, collision from any direction, or damage resulting from the failure of rotating equipment. (e) Cylinder Location - The gas cylinder/tank and the pressure regulator must be located either rearward of the Main Roll Hoop and within the envelope defined by the Main Roll Hoop and the Frame (See T3.2), or in a structural side-pod. In either case it must be protected by structure that meets the requirements of T3.24 or T3.33. It must not be located in the cockpit. (f) Cylinder Mounting - The gas cylinder/tank must be securely mounted to the Frame, engine or transmission. (g) Cylinder Axis - The axis of the gas cylinder/tank must not point at the driver. (h) Insulation - The gas cylinder/tank must be insulated from any heat sources, e.g. the exhaust system. (i) Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible operating pressure of the system.", + "parentRuleCode": "1T10", + "pageNumber": "1" + }, + { + "ruleCode": "1T10.2", + "ruleContent": "High Pressure Hydraulic Pumps and Lines The driver and anyone standing outside the car must be shielded from any hydraulic pumps and lines with line pressures of 300 psi (2100 kPa) or higher. The shields must be steel or aluminum with a minimum thickness of 1 mm. Note: Brake and hydraulic clutch lines are not classified as “hydraulic pump lines” and as such, are excluded from T10.2.", + "parentRuleCode": "1T10", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T11", + "ruleContent": "FASTENERS", + "pageNumber": "1" + }, + { + "ruleCode": "1T11.1", + "ruleContent": "Fastener Grade Requirements", + "parentRuleCode": "1T11", + "pageNumber": "1" + }, + { + "ruleCode": "1T11.1.1", + "ruleContent": "All threaded fasteners utilized in the driver’s cell structure, plus the steering, braking, driver’s harness and suspension systems must meet or exceed, SAE Grade 5, Metric Grade 8.8 and/or AN/MS specifications.", + "parentRuleCode": "1T11.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T11.1.2", + "ruleContent": "The use of button head cap, pan head, flat head, round head or countersunk screws or bolts in ANY location in the following systems is prohibited: (a) Driver’s cell structure, (b) Impact attenuator attachment (c) Driver’s harness attachment (d) Steering system (e) Brake system (f) Suspension system. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Hexagonal recessed drive screws or bolts (sometimes called Socket head cap screws or Allen screws/bolts) are permitted.", + "parentRuleCode": "1T11.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T11.2", + "ruleContent": "Securing Fasteners", + "parentRuleCode": "1T11", + "pageNumber": "1" + }, + { + "ruleCode": "1T11.2.1", + "ruleContent": "All critical bolt, nuts, and other fasteners on the steering, braking, driver’s harness, and suspension must be secured from unintentional loosening by the use of positive locking mechanisms. Positive locking mechanisms are defined as those that: (a) The Technical Inspectors (and the team members) are able to see that the device/system is in place, i.e. it is visible, AND (b) The “positive locking mechanism” does not rely on the clamping force to apply the “locking” or anti-vibration feature. In other words, if it loosens a bit, it still prevents the nut or bolt from coming completely loose. See Figure 23 Positive locking mechanisms include: (a) Correctly installed safety wiring (b) Cotter pins (c) Nylon lock nuts (where the temperature does not exceed 80 O C) (d) Prevailing torque lock nuts Note: Lock washers, bolts with nylon patches, and thread locking compounds, e.g. Loctite®, DO NOT meet the positive locking requirement. Figure 23 - Examples of positive locking nuts", + "parentRuleCode": "1T11.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.1.2", + "ruleContent": "There must be a minimum of two (2) full threads projecting from any lock nut.", + "parentRuleCode": "1T1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.1.3", + "ruleContent": "All spherical rod ends and spherical bearings on the steering or suspension must be in double shear or captured by having a screw/bolt head or washer with an O.D. that is larger than spherical bearing housing I.D.", + "parentRuleCode": "1T1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T1.1.4", + "ruleContent": "Adjustable tie-rod ends must be constrained with a jam nut to prevent loosening. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T1.1", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T2", + "ruleContent": "TRANSPONDERS", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.1", + "ruleContent": "Transponders", + "parentRuleCode": "1T2", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.1.1", + "ruleContent": "Transponders will be used as part of the timing system for the Formula Hybrid + Electric competition.", + "parentRuleCode": "1T2.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.1.2", + "ruleContent": "Each team is responsible for having a functional, properly mounted transponder of the specified type on their vehicle. Vehicles without a specified transponder will not be allowed to compete in any event for which a transponder is used for timing and scoring.", + "parentRuleCode": "1T2.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.1.3", + "ruleContent": "All vehicles must be equipped with at least one MYLAPS Car/Bike Rechargeable Power Transponder or MYLAPS Car/Bike Direct Power Transponder 7 . Note 1: Except for their name, AMB TranX260 transponders are identical to MYLAPS Car/Bike Transponders and comply with this rule. If you own a functional AMB TranX260 it does not need to be replaced. Note 2: It is the responsibility of the team to ensure that electrical interference from their vehicle does not stop the transponder from functioning correctly", + "parentRuleCode": "1T2.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T2.2", + "ruleContent": "Transponder Mounting – All Events The transponder mounting requirements are: (a) Orientation – The transponder must be mounted vertically and orientated so the number can be read “right-side up”. (b) Location – The transponder must be mounted on the driver’s right side of the car forward of the front roll hoop. The transponder must be no more than 60 cm above the track. (c) Obstructions – There must be an open, unobstructed line between the antenna on the bottom of the transponder and the ground. Metal and carbon fiber may interrupt the transponder signal. The signal will normally transmit through fiberglass and plastic. If the signal will be obstructed by metal or carbon fiber, a 10.2 cm diameter opening can be cut, the transponder mounted flush with the opening, and the opening covered with a material transparent to the signal. (d) Protection – Mount the transponder where it will be protected from obstacles. 7 Transponders are usually available for loan at the competition. Please ask the organizers well in advance to confirm availability. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T2", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T3", + "ruleContent": "VEHICLE IDENTIFICATION", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.1", + "ruleContent": "Car Number", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.1.1", + "ruleContent": "Each car will be assigned a number at the time of its entry into a competition.", + "parentRuleCode": "1T3.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.1.2", + "ruleContent": "Car numbers must appear on the vehicle as follows: (a) Locations: In three (3) locations: the front and both sides; (b) Height: At least 15.24 cm high; (c) Font: Block numbers (i.e. sans-serif characters). Italic, outline, serif, shadow, or cursive numbers are prohibited. (d) Stroke Width and Spacing between Numbers: At least 2.0 cm. (e) Color: Either white numbers on a black background or black numbers on a white background. No other color combinations will be approved. (f) Background shape: The number background must be one of the following: round, oval, square or rectangular. There must be at least 2.5 cm between the edge of the numbers and the edge of the background. (g) Clear: The numbers must not be obscured by parts of the car, e.g. wheels, side pods, exhaust system, etc.", + "parentRuleCode": "1T3.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.1.3", + "ruleContent": "While car numbers for teams registered for Formula Hybrid + Electric can be found on the “Registered Teams” section of the SAE Collegiate Design Series website, please be sure to check with Formula Hybrid +Electric officials to ensure these numbers are correct. Comment: Car numbers must be quickly read by course marshals when your car is moving at speed. Make your numbers easy to see and easy to read. Figure 24 - Example Car Number", + "parentRuleCode": "1T3.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.2", + "ruleContent": "School Name", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.2.1", + "ruleContent": "Each car must clearly display the school name (or initials – if unique and generally recognized) in roman characters at least 5 cm high on both sides of the vehicle. The characters must be placed on a high contrast background in an easily visible location.", + "parentRuleCode": "1T3.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.2.2", + "ruleContent": "The school name may also appear in non-roman characters, but the roman character version must be uppermost on the sides. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T3.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.3", + "ruleContent": "SAE & IEEE Logos", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.3.1", + "ruleContent": "SAE and IEEE logos must be prominently displayed on the front and/or both sides of the vehicle. Each logo must be at least 7 cm x 20 cm. The organizers will provide the following decals at the competition: (a) SAE, 7.6 cm x 20.3 cm in either White or Black. (b) IEEE, 11.4 cm x 30.5 cm (Blue only). Actual-size JPEGs may be downloaded from the Formula Hybrid + Electric website.", + "parentRuleCode": "1T3.3", + "pageNumber": "1" + }, + { + "ruleCode": "1T3.4", + "ruleContent": "Technical Inspection Sticker Space Technical inspection stickers will be placed on the upper nose of the vehicle. Cars must have a clear and unobstructed area at least 25.4 cm wide x 20.3cm high on the upper front surface of the nose along the vehicle centerline.", + "parentRuleCode": "1T3", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T4", + "ruleContent": "EQUIPMENT REQUIREMENTS", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.1", + "ruleContent": "Driver’s Equipment The equipment specified below must be worn by the driver anytime he or she is in the cockpit with the engine running or with the tractive system energized.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.2", + "ruleContent": "Helmet", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.2.1", + "ruleContent": "A well-fitting, closed face helmet that meets one of the following certifications and is labeled as such: (a) Snell K2010, K2015, K2020, M2010, M2015, M2020, SA2010, SAH2010, SA2015, SA2020, EA2016 (b) SFI 31.1/2020, SFI 41.1/2020 (c) FIA 8859-2015, FIA 8860-2004, FIA 8860-2010, FIA 8860-2016, FIA 8860-2018. Open faced helmets and off-road/motocross helmets (helmets without integrated face shields) are not approved.", + "parentRuleCode": "1T4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.2.2", + "ruleContent": "All helmets to be used in the competition must be presented during Technical Inspection where approved helmets will be stickered. The organizer reserves the right to impound all non- approved helmets until the end of the competition.", + "parentRuleCode": "1T4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.3", + "ruleContent": "Balaclava A balaclava which covers the driver’s head, hair and neck, made from acceptable fire resistant material as defined in T14.12, or a full helmet skirt of acceptable fire resistant material. The balaclava requirement applies to drivers of either gender, with any hair length.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.4", + "ruleContent": "Eye Protection An impact resistant face shield, made from approved impact resistant materials. The face shields supplied with approved helmets (See T14.2 above) meet this requirement. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.5", + "ruleContent": "Suit A fire-resistant suit that covers the body from the neck down to the ankles and the wrists. One (1) piece suits are required. The suit must be in good condition, i.e. it must have no tears or open seams, or oil stains that could compromise its fire-resistant capability. The suit must be certified to one of the following standards and be labeled as such: Table 7 – SFI / FIA Standards Logos Note: An SFI 3-2A/1 or 3.4/1 (single layer) suit is ONLY allowed WITH fire resistant underwear. -FIA 8856-2018 -SFI 3.4/5 -FIA Standard 8856-1986 -SFI 3-2A/1 but only when used with fire resistant, e.g. Nomex, underwear that covers the body from wrist to ankles. -SFI 3-2A/5 (or higher) - FIA Standard 8856-2000 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.6", + "ruleContent": "Underclothing All drivers should wear fire resistant underwear (long pants and long sleeve top) under their approved driving suit. This fire resistant underwear must be made from acceptable fire resistant material and cover the driver’s body completely from the neck down to the ankles and wrists. Note: If drivers do not wear fire resistant long underwear, they should wear cotton underwear under the approved driving suit. Tee-shirts, or other undergarments made from Nylon or any other synthetic materials may melt when exposed to high heat.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.7", + "ruleContent": "Socks Socks made from an accepted fire resistant material, e.g. Nomex, which cover the bare skin between the driver’s suit and the boots or shoes. Socks made from wool or cotton are acceptable. Socks of nylon or polyester are not acceptable.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.8", + "ruleContent": "Shoes Shoes of durable fire resistant material and which are in good condition (no holes worn in the soles or uppers).", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.9", + "ruleContent": "Gloves Fire resistant gloves made from made from acceptable fire resistant material as defined in T14.12.Gloves of all leather construction or fire resistant gloves constructed using leather palms with no insulating fire resisting material underneath are not acceptable.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.10", + "ruleContent": "Arm Restraints Arm restraints certified and labeled to SF1 standard 3.3, or a commercially manufactured equivalent, must be worn such that the driver can release them and exit the vehicle unassisted regardless of the vehicle’s position.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.11", + "ruleContent": "Driver’s Equipment Condition All driving apparel covered by ARTICLE T14 must be in good condition. Specifically, driving apparel must not have any tears, rips, open seams, areas of significant wear or abrasion or stains which might compromise fire resistant performance.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.12", + "ruleContent": "Fire Resistant Material For the purpose of this section some, but not all, of the approved fire resistant materials are: Carbon X, Indura, Nomex, Polybenzimidazole (commonly known as PBI) and Proban.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "1T4.13", + "ruleContent": "Synthetic Material – Prohibited T-shirts, socks or other undergarments (not to be confused with FR underwear) made from nylon or any other synthetic material which will melt when exposed to high heat are prohibited.", + "parentRuleCode": "1T4", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T5", + "ruleContent": "OTHER REQUIRED EQUIPMENT", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1", + "ruleContent": "Fire Extinguishers", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1.1", + "ruleContent": "Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers.", + "parentRuleCode": "1T5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1.2", + "ruleContent": "Extinguishers of larger capacity (higher numerical ratings) are acceptable. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1T5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.1.3", + "ruleContent": "All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows “FULL”.", + "parentRuleCode": "1T5.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.2", + "ruleContent": "Special Requirements Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb or equivalent) of the required type must be procured and accompany the car at all times. As recommendations vary, teams are advised to consult the rules committee before purchasing expensive extinguishers that may not be necessary.", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.3", + "ruleContent": "Chemical Spill Absorbent Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must be presented at technical inspection.", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.4", + "ruleContent": "Insulated Gloves Insulated gloves are required, rated for at least the voltage in the TSV system, with protective over-gloves.", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.4.1", + "ruleContent": "Electrical gloves require testing by a qualified company and must have a test date printed on them that is within 14 months of the competition.", + "parentRuleCode": "1T5.4", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.5", + "ruleContent": "Safety Glasses Safety glasses must be worn as specified in section D10.7", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.6", + "ruleContent": "MSDS Sheets Materials Safety Data Sheets (MSDS) for the accumulator devices are required and must be included in the ESF.", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "1T5.7", + "ruleContent": "Additional Any special safety equipment called for in the MSDS, for example correct gloves recommended for handling any electrolyte material in the accumulator.", + "parentRuleCode": "1T5", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE T6", + "ruleContent": "ON-BOARD CAMERAS", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.1", + "ruleContent": "Mounts The mounts for video/photographic cameras must be of a safe and secure design.", + "parentRuleCode": "1T6", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.1.1", + "ruleContent": "All camera installations must be approved at Technical Inspection.", + "parentRuleCode": "1T6.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.1.2", + "ruleContent": "Helmet mounted cameras are prohibited.", + "parentRuleCode": "1T6.1", + "pageNumber": "1" + }, + { + "ruleCode": "1T6.1.3", + "ruleContent": "The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a minimum of 2 points on different sides of the camera body. Plastic or elastic attachments are not permitted. If a tether is used to restrain the camera, the tether length must be limited so that the camera cannot contact the driver. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 1PART IC - INTERNAL COMBUSTION ENGINE", + "parentRuleCode": "1T6.1", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE IC1", + "ruleContent": "INTERNAL COMBUSTION ENGINE IC1.1 Engine Limitation Engines must be Internal Combustion, four-stroke piston engines, with a maximum displacement of 250cc for spark ignition engines and 310cc for diesel engines and be either: (a) Modified or custom fabricated. (See section IC1.2) OR (b) Stock – defined as: (i) Any single cylinder engine, OR (ii) Any twin cylinder engine from a motorcycle approved for licensed use on public roads, OR (iii) Any commercially available “industrial” IC engine meeting the above displacement limits. Note: If you are not sure whether or not your engine qualifies as “stock”, contact the organizers. IC1.2 Permitted modifications to a stock engine are: (a) Modification or removal of the clutch, primary drive and/or transmission. (b) Changes to fuel mixture, ignition or cam timings. (c) Replacement of camshaft. (Any lobe profile may be used.) (d) Replacement or modification of any exhaust system component. (e) Replacement or modification of any intake system component; i.e., components upstream of (but NOT including) the cylinder head. The addition of forced induction will move the engine into the modified category. (f) Modifications to the engine casings. (This does not include the cylinders or cylinder head). (g) Replacement or modification of crankshafts for the purpose of simplifying mechanical connections. (Stroke must remain stock.) IC1.3 Engine Inspection The organizers reserve the right to tear down any number of engines to confirm conformance to the rules. The initial measurement will be made externally with a measurement accuracy of one (1) percent. When installed to and coaxially with spark plug hole, the measurement tool has dimensions of 381 mm long and 30 mm diameter. Teams may choose to design in access space for this tool above each spark plug hole to reduce time should their vehicle be inspected. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IC1.4 Starter Each car must be equipped with an on-board starter or equivalent, and must be able to move without any outside assistance at any time during the competition. Specifically, push starts are not permitted. IC1.4.1 A hybrid may use the forward motion of the vehicle derived from the electric drive to start the I.C. engine, except that this starting technique may not be used until after the car receives the “green flag” in any event. IC1.4.2 A manual starting system operable by the driver while belted in is permissible. IC1.5 Air Intake System IC1.5.1 Air Intake System Location All parts of the engine air and fuel control systems (including the throttle or carburetor, and the complete air intake system, including the air cleaner and any air boxes) must lie within the surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25) Figure 25- Surface Envelope IC1.5.2 Any portion of the air intake system that is less than 350 mm above the ground must be shielded from side or rear impact collisions by structure built to Rule T3.24 or T3.33 as applicable. IC1.5.3 Intake Manifold If an intake manifold is used, it must be securely attached to the engine crankcase, cylinder, or cylinder head with brackets and mechanical fasteners. This precludes the use of hose clamps, plastic ties, or safety wires. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Original equipment rubber parts that bolt or clamp to the cylinder head and to the throttle body or carburetor are acceptable. Note: These rubber parts are referred to by various names by the engine manufacturers; e.g., “insulators” by Honda, “joints” by Yamaha, and “holders” by Kawasaki. Other than such original equipment parts the use of rubber hose is not considered a structural attachment. Intake systems with significant mass or cantilever from the cylinder head must be supported to prevent stress to the intake system. Supports to the engine must be rigid. Supports to the frame or chassis must incorporate some isolation to allow for engine movement and chassis flex. IC1.5.4 Air boxes and filters Large air boxes must be securely mounted to the frame or engine and connections between the air box and throttle must be flexible. Small air cleaners designed for mounting to the carburetor or throttle body may be cantilevered from the throttle body. IC1.6 Accelerator and Accelerator Actuation IC1.6.1 Carburetor/Throttle Body All spark ignition engines must be equipped with a carburetor or throttle body. The carburetor or throttle body may be of any size or design. IC1.6.2 Accelerator Actuation - General All systems that transmit the driver’s control of the speed of the vehicle, commonly called “Accelerator systems”, must be designed and constructed as “fail safe” systems, so that the failure of any one component, be it mechanical, electrical or electronic, will not result in an uncontrolled acceleration of the vehicle. This applies to both IC engines and to electric motors that power the vehicle. The Accelerator control may be actuated mechanically, electrically or electronically, i.e. electrical Accelerator control (ETC) or “drive-by-wire” is acceptable. Drive-by-wire controls of the electric motor controller must comply with TS isolation requirements. See EV5.1.1 Any Accelerator pedal must have a positive pedal stop incorporated on the Accelerator pedal to prevent over stressing the Accelerator cable or any part of the actuation system. IC1.6.3 Mechanical Accelerator Actuation If mechanical Accelerator actuation is used, the Accelerator cable or rod must have smooth operation, and must not have the possibility of binding or sticking. The Accelerator actuation system must use at least two (2) return springs located at the throttle body, so that the failure of any component of the Accelerator system will not prevent the Accelerator returning to the closed position. Note: Springs in Throttle Position Sensors (TPS) are NOT acceptable as return springs. Accelerator cables must be at least 50 mm from any exhaust system component and out of the exhaust stream. Any Accelerator pedal cable must be protected from being bent or kinked by the driver’s foot when it is operated by the driver or when the driver enters or exits the vehicle. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 If the Accelerator system contains any mechanism that could become jammed, for example a gear mechanism, then this must be covered to prevent ingress of any debris. The use of a push-pull type Accelerator cable with an Accelerator pedal that is capable of forcing the Accelerator closed (e.g. toe strap) is recommended. Electrical actuation of a mechanical throttle is permissible, provided releasing the Accelerator pedal will override the electrical system and cause the throttle to close. IC1.6.4 Electrical Accelerator Actuation When electrical or electronic throttle actuation is used, the throttle actuation system must be of a fail-safe design to assure that any single failure in the mechanical or electrical components of the Accelerator actuation system will result in the engine returning to idle (IC engine) or having zero torque output (electric motor). Teams should use commercially available electrical Accelerator actuation systems. The methodology used to ensure fail-safe operation must be included as a required appendix to the Design Report. IC1.7 Intake System Restrictor IC1.7.1 Non-stock engines (See IC1.1) must be fitted with an air inlet restrictor as listed below. All the air entering the engine must pass through the restrictor which must be located downstream of any engine throttling device. IC1.7.2 The restrictor must be circular with a maximum diameter of: (a) Gasoline fueled cars – 12.90 mm IC1.7.3 The restrictor must be located to facilitate measurement during the inspection process. IC1.7.4 The circular restricting cross section may NOT be movable or flexible in any way, e.g. the restrictor may not be part of the movable portion of a barrel throttle body. IC1.7.5 Any device that has the ability to throttle the engine downstream of the restrictor is prohibited. IC1.7.6 If more than one engine is used, the intake air for all engines must pass through the one restrictor. Note: Section IC1.7 applies only to those engines that are not on the approved stock engine list, or that have been modified beyond the limits specified in IC1.2. IC1.8 Turbochargers & Superchargers Turbochargers or superchargers are permitted. The compressor must be located downstream of the inlet restrictor. The addition of a Turbo or Supercharger will move the engine into the Modified category. IC1.9 Fuel Lines IC1.9.1 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. IC1.9.2 If rubber fuel line or hose is used, the components over which the hose is clamped must have annular bulb or barbed fittings to retain the hose. Also, clamps specifically designed for fuel lines must be used. These clamps have three (3) important features; (See Figure 26) (a) A full 360 degree (360°) wrap, (b) a nut and bolt system for tightening, and (c) rolled edges to prevent the clamp cutting into the hose. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Worm-gear type hose clamps are not approved for use on any fuel line. Figure 26 – Hose Clamps IC1.9.3 Fuel lines must be securely attached to the vehicle and/or engine. IC1.9.4 All fuel lines must be shielded from possible rotating equipment failure or collision damage. IC1.10 Fuel Injection System Requirements IC1.10.1 Fuel Lines – Flexible fuel lines must be either (a) Metal braided hose with either crimped-on or reusable, threaded fittings, OR (b) Reinforced rubber hose with some form of abrasion resistant protection with fuel line clamps per IC1.9.2. Note: Hose clamps over metal braided hose will not be accepted. IC1.10.2 Fuel Rail – If used, a fuel rail must be securely attached to the engine cylinder block, cylinder head, or intake manifold with brackets and mechanical fasteners. This precludes the use of hose clamps, plastic ties, or safety wire. IC1.11 Crankcase / Engine lubrication venting IC1.11.1 Any crankcase or engine lubrication vent lines routed to the intake system must be connected upstream of the intake system restrictor, if fitted. IC1.11.2 Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum devices that connect directly to the exhaust system, are prohibited.", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE IC2", + "ruleContent": "FUEL AND FUEL SYSTEM IC2.1 Fuel IC2.1.1 All fuel at the Formula Hybrid + Electric Competition will be provided by the organizer. IC2.1.2 During all performance events the cars must be operated with the fuels provided by the organizer. IC2.1.3 The fuels provided at the Formula Hybrid + Electric Competition are: (a) Gasoline (Sunoco Optima) Note: More information including the fuel energy equivalencies, and a link for the Sunoco fuel specifications are given in Appendix A 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IC2.2 Fuel Additives - Prohibited IC2.2.1 Nothing may be added to the provided fuels. This prohibition includes nitrous oxide or any other oxidizing agent. IC2.2.2 No agents other than fuel and air may be induced into the combustion chamber. Non-adherence to this rule will be reason for disqualification. IC2.2.3 Officials have the right to inspect the oil. IC2.3 Fuel Temperature Changes - Prohibited The temperature of fuel introduced into the fuel system may not be changed with the intent to improve calculated fuel efficiency. IC2.4 Fuel Tanks IC2.4.1 The fuel tank is defined as that part of the fuel containment device that is in contact with the fuel. It may be made of a rigid material or a flexible material. IC2.4.2 Fuel tanks made of a rigid material cannot be used to carry structural loads, e.g. from roll hoops, suspension, engine or gearbox mounts, and must be securely attached to the vehicle structure with mountings that allow some flexibility such that chassis flex cannot unintentionally load the fuel tank. IC2.4.3 Any fuel tank that is made from a flexible material, for example a bladder fuel cell or a bag tank, must be enclosed within a rigid fuel tank container which is securely attached to the vehicle structure. Fuel tank containers (containing a bladder fuel cell or bag tank) may be load carrying. IC2.4.4 Any size fuel tank may be used. IC2.4.5 The fuel system must have a drain fitting for emptying the fuel tank. The drain must be at the lowest point of the tank and be easily accessible. It must not protrude below the lowest plane of the vehicle frame, and must have provision for safety wiring. IC2.5 Fuel System Location Requirements IC2.5.1 All parts of the fuel storage and supply system must lie within the surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25). IC2.5.2 All fuel tanks must be shielded from side or rear impact collisions. Any fuel tank which is located outside the Side Impact Structure required by T3.24 or T3.33 must be shielded by structure built to T3.24 or T3.33. IC2.5.3 A firewall must separate the fuel tank from the driver, per T4.5. IC2.6 Fuel Tank Filler Neck IC2.6.1 All fuel tanks must have a filler neck 8 : (a) With a minimum inside diameter of 38 mm (b) That is vertical (with a horizontal filler cap) or angled at no more than forty-five degrees (45º) from the vertical. IC2.6.2 If a sight tube is fitted, it may not run below the top surface of the fuel tank. 8 Some flush fillers may be approved by contacting the Formula Hybrid + Electric rules committee. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 27 - Filler Neck IC2.7 Tank Filling Requirement IC2.7.1 The tank must be capable of being filled to capacity without manipulating the tank or vehicle in any way (shaking vehicle, etc.). IC2.7.2 The fuel system must be designed such that the spillage during refueling cannot contact the driver position, exhaust system, hot engine parts, or the ignition system. IC2.7.3 Belly pans must be vented to prevent accumulation of fuel. IC2.8 Venting Systems IC2.8.1 The fuel tank and carburetor venting systems must be designed such that fuel cannot spill during hard cornering or acceleration. This is a concern since motorcycle carburetors normally are not designed for lateral accelerations. IC2.8.2 All fuel vent lines must be equipped with a check valve to prevent fuel leakage when the tank is inverted. All fuel vent lines must exit outside the bodywork.", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE IC3", + "ruleContent": "EXHAUST SYSTEM AND NOISE CONTROL IC3.1 Exhaust System General IC3.1.1 Exhaust Outlet The exhaust must be routed so that the driver is not subjected to fumes at any speed considering the draft of the car. IC3.1.2 The exhaust outlet(s) must not extend more than 45 cm behind the centerline of the rear wheels, and must be no more than 60 cm above the ground. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IC3.1.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in front of the main roll hoop must be shielded to prevent contact by persons approaching the car or a driver exiting the car. IC3.1.4 The application of fibrous material, e.g. “header wrap”, to the outside of an exhaust manifold or exhaust system is prohibited. IC3.2 Noise Measuring Procedure IC3.2.1 The sound level will be measured during a static test. Measurements will be made with a free- field microphone placed free from obstructions at the exhaust outlet level, 0.5 m from the end of the exhaust outlet, at an angle of forty-five degrees (45°) with the outlet in the horizontal plane. The test will be run with the gearbox in neutral at the engine speed defined below. Where more than one exhaust outlet is present, the test will be repeated for each exhaust and the highest reading will be used. Vehicles that do not have manual throttle control must provide some means for running the engine at the test RPM. IC3.2.2 The car must be compliant at all engine speeds up to the test speed defined below. IC3.2.3 If the exhaust has any form of movable tuning or throttling device or system, it must be compliant with the device or system in all positions. The position of the device must be visible to the officials for the noise test and must be manually operable by the officials during the noise test. IC3.2.4 Test Speeds The test speed for a given engine will be the engine speed that corresponds to an average piston speed of 914.4 m/min for automotive or motorcycle engines, and 731.5 m/min for Diesels and “Industrial” engines. The calculated speed will be rounded to the nearest 500 rpm. The test speeds for typical engines will be published by the organizers. IC3.2.5 An “industrial engine” is defined as an engine which, according to the manufacturers’ specifications and without the required restrictor, is not capable of producing more than 5 hp per 100cc. To have an engine classified as “an industrial engine”, approval must be obtained from organizers prior to the Competition. IC3.2.6 Vehicles not equipped with engine tachometers must provide some external means for measuring RPM, such as a hand-held meter or lap top computer. Note: Teams that do not provide the means to measure engine speed will not pass the noise test, will not receive the sticker and hence will not be eligible to compete in any dynamic event. IC3.2.7 Engines with mechanical, closed loop speed control will be tested at their maximum (governed) speed. IC3.3 Maximum Sound Level The maximum permitted sound level is 110 dB A, fast weighting. IC3.4 Noise Level Re-testing At the option of the officials, noise can be measured at any time during the competition. If a car fails the noise test, it will be withheld from the competition until it has been modified and re- passes the noise test. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "PART EV", + "ruleContent": "ELECTRICAL POWERTRAINS AND SYSTEMS", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV1", + "ruleContent": "ELECTRICAL SYSTEMS OVERVIEW EV1.1 Definitions ● Accumulator - Batteries and/or capacitors that store the electrical energy to be used by the tractive system. This term includes both electrochemical batteries and ultracapacitor devices. ● Accumulator Container - A housing that encloses the accumulator devices, isolating them both physically and electrically from the rest of the vehicle. ● Accumulator Segment - A subgroup of accumulator devices that must adhere to the voltage and energy limits listed in Table 8. ● AMS – Accumulator Monitoring System. EV9.6 ● Barrier – A material, usually rigid, that resists a flow of charge. Most often used to provide a structural barrier and/or increase the creepage distance between two conductors. See Figure 36. ● BRB – Big Red Button. EV7.5 and EV7.6 ● Creepage Distance - The shortest distance measured along the surface of the insulating material between two conductors. See Figure 36. ● Enclosure – An insulated housing containing electrical circuitry. ● GLV Grounded Low Voltage system - Every conductive part that is not part of the tractive system. (This includes the GLV electrical system, frame, conductive housings, carbon-fiber components etc.) ● GLVMS – Grounded Low Voltage Master Switch. EV7.3 ● IMD – Insulation Monitoring Device. EV9.4 ● Insulation – A material that physically resists a flow of charge. May be rigid or flexible. ● Isolation - Electrical, or “Galvanic” isolation between two or more electrical conductors such that if a voltage potential exists between them, no current will flow. ● Region – A design/construction methodology wherein enclosures are divided by insulating barriers and/or spacing into TS and GLV sections, simplifying the electrical isolation of the two systems. ● Separation – A physical distance (“spacing”) maintained between conductors. ● SMD – Segment Maintenance Disconnect. EV2.7 ● ESOK – Electrical Systems OK. EV9.3 ● Tractive System (TS) - The drive motors, the accumulators and every part that is electrically connected to either of those components. ● Tractive System Enclosure - A housing that contains TS components other than accumulator devices. ● TSAL – Tractive System Active Lamp. EV9.1 ● TS/GLV – The relationship between two electrical conductors; one being part of the TS system and the other GLV. ● TS/TS – The relationship between two TS conductors. This designation implies that they are at different potentials and/or polarities. ● TSMP – Tractive System Measuring Points. EV10.3 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 ● TSMS – Tractive System Master Switch. EV7.4 EV1.2 Maximum System Voltages EV1.1.1 The maximum permitted operating voltage and energy limits are listed in Table 8 below. Formula Hybrid + Electric voltage and energy limits Maximum operating voltage for Hybrid 9 (TSV) 300 V Maximum operating voltage for EV 600V Maximum GLV 60 VDC or 50 VAC Maximum accumulator segment voltage 120 V Maximum accumulator segment energy 10 6 MJ Table 8 - Voltage and Energy Limits EV1.1.2 Maximum operating voltage for hybrid vehicles above those shown in Table 8 may be permitted via a request for a special allowance to the FH+E rules committee. Teams requesting such an allowance must demonstrate an appropriate level of electrical engineering knowledge and experience. EV1.1.3 Vehicles with a maximum operating voltage over 300V will be required to complete a form demonstrating electrical safety competency including: ● Written vehicle electrical safety procedures ● A list of electrical safety team members ● Review of team experience and competency in high-voltage electrical systems ● Acceptance of this document is a requirement for participation in the event. 9 The maximum operating voltage is defined as the maximum measured accumulator voltage during normal charging conditions. (A maximum capacity accumulator will require at least three segments.) 10 Segment energy is calculated as Energy (MJ) = (V • Ah • 3600) / 1e 6 . (Note that this is different from the fuel allocation energy in Appendix A). 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV2", + "ruleContent": "ENERGY STORAGE (ACCUMULATORS) EV2.1 Permitted Devices EV1.1.4 The following accumulator devices are acceptable: batteries (e.g. lithium-ion, NiMH, lead acid and similar battery chemistries) and capacitors, such as super caps or ultracaps. The following accumulator devices are not permitted: molten salt batteries, thermal batteries, fuel cells, mechanical storage such as flywheels or hydraulic accumulators. EV1.1.5 Accumulator systems using pouch-type lithium-ion cells must be commercially constructed and specifically approved by the Formula Hybrid + Electric rules committee or must comply with the requirements detailed in ARTICLE EV11. EV1.1.6 Manufacturers data sheets showing the rated specification of the accumulator cell(s) which are used must be provided in the ESF along with their number and configurations. EV2.2 Accumulator Segments EV1.1.7 The accumulator segments must be separated so that the segment limits in Table 8 are met by an electrically insulating barrier meeting the TS/GLV requirements in EV5.4. For all lithium based cell chemistries, these barriers must also be fire resistant (according to UL94-V0, FAR25 or equivalent). EV1.1.8 The barrier must be non-conducting, fire retardant (UL94V0) and provide a complete barrier to the spread of arc or fire. It must have a fire resistance equal to 1/8\" FR4 fiberglass, such as Garolite G-9 11 . EV2.3 Accumulator Containers EV1.1.9 All devices which store the tractive system energy must be enclosed in (an) accumulator container(s). EV1.1.10 Each accumulator container must be labeled with the words “ACCUMULATOR – ALWAYS ENERGIZED”. (This is in addition to the TSV label requirements in EV3.1.5). Labels must be 3 inches by 9 inches with bold red lettering on a white background and be clearly visible on all sides of the accumulator container that could be exposed during operation and/or maintenance of the car and at least one such label must be visible with the bodywork in place 12 . Figure 28 - Accumulator Sticker 11 https://www.mcmaster.com/grade-g-9-garolite/ 12 Self-adhesive stickers are available from the organizers on request. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV1.1.11 If the accumulator container(s) is not easily accessible during Electrical Tech Inspection, detailed pictures of the internals taken during assembly must be provided. If the pictures do not adequately depict the accumulator, it may be necessary to disassemble the accumulator to pass Electrical Tech Inspection. EV1.1.12 The accumulator container may not contain circuitry or components other than the accumulator itself and necessary supporting circuitry such as the AIRs, AMS, IMD and pre- charge circuitry. For example, the accumulator container may not contain the motor controller, TSV or any GLV circuits other than those required for necessary accumulator functions. Note 1: The purpose of this requirement is to allow work on other parts of the tractive system without opening the accumulator container and exposing (always-live) high voltage. Note 2: It is possible to meet this requirement by dividing a large box into an accumulator section and a non-accumulator section, with an insulating barrier between them. In this case, it must be possible to open the non-accumulator section while keeping the accumulator section closed, meeting the requirements of the “finger probe” test. See: EV3.1.3. EV1.1.13 If spare accumulators are to be used then they all must be of the same size, weight and type as those that are replaced. Spare accumulator packs must be presented at Electrical Tech Inspection. EV2.4 Accumulator Container –Construction EV1.1.14 The accumulator container(s) must be built of mechanically robust material. EV1.1.15 The container material must be fire resistant according to UL94-V0, FAR25 or equivalent. EV1.1.16 If any part of the accumulator container is made of electrically conductive material, an insulating barrier meeting the TS/GLV requirements in EV5.4 must be affixed to the inside wall of the accumulator container such that the barrier provides 100% coverage of all electrically conductive container components. EV1.1.17 All conductive penetrations (mounting hardware, hinges, latches etc.) must be covered on the inside of the accumulator container by an insulating material meeting EV5.4. EV1.1.18 All conductive surfaces on the outside of the container must have a low-resistance connection to the GLV system ground. (See EV8.1.1) EV1.1.19 The cells and/or segments must be appropriately secured against loosening inside the container. Internal structural elements must be either non-thermoplastic or have a melting temperature of greater than 150 degrees C. EV1.1.20 All accumulator devices must be attached to the accumulator container(s) with mechanical fasteners. EV1.1.21 Holes in the container are only allowed for the wiring-harness, ventilation, cooling or fasteners. All wiring harness holes must be sealed according to EV3.3.1. Openings for ventilation must be designed to prevent water entry from rain or road spray, and to minimize spread of fire. Completely open side pods are not allowed. EV1.1.22 Any accumulator that may vent an explosive gas must have a ventilation system or pressure relief valve to prevent the vented gas from reaching an explosive concentration. EV1.1.23 Every accumulator container which is completely sealed must have a pressure relief valve to prevent high-pressure in the container. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV1.1.24 An Accumulator Container that is built to an approved 2023 or 2024 FSAE Structural Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with Formula Hybrid + Electric Rules EV2.4.1-EV2.4.7. EV2.5 Accumulator Container – Mounting EV1.1.25 All accumulator containers must lie within the surface envelope as defined by IC1.5.1 EV1.1.26 All accumulator containers must be rigidly mounted to the chassis to prevent the containers from loosening during the dynamic events or possible accidents. EV1.1.27 The mounting system for the accumulator container must be designed to withstand forces from a 40g deceleration in the horizontal plane and 20 g deceleration in the vertical plane. The calculations/tests proving this must be part of the SES. EV1.1.28 For tube frame cars, each accumulator container must be attached to the Frame by a minimum of four (4) 8 mm Metric Grade 8.8 or 5/16 inch Grade 5 bolts. EV1.1.29 For monocoques: 1. Each accumulator container must be attached to the Frame at a minimum of four (4) points, each capable of carrying a load in any direction of 400 Newtons x the mass of the accumulator in kgs, i.e. if the accumulator has a mass of 50 kgs, each attachment point must be able to carry a load of 20kN in any direction. 2. The laminate, mounting plates, backing plates and inserts must have sufficient shear area, weld area and strength to carry the specified load in any direction. Data obtained from the laminate perimeter shear strength test (T3.30) should be used to prove adequate shear area is provided*** 3. Each attachment point requires a minimum of one (1) 8 mm Metric Grade 8.8 or 5/16 inch SAE Grade 5 bolt. 4. Each attachment point requires steel backing plates with a minimum thickness of 2 mm. Alternate materials may be used for backing plates if equivalency is approved. 5. The calculations/tests must be included in the SES. EV2.5.6 An Accumulator Mounting system that is built to an approved 2023 or 2024 FSAE Structural Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with Formula Hybrid + Electric Rules EV2.5, and the FSAE SES may be submitted in place of the Formula Hybrid + Electric specific SES required by EV2.5.3. EV2.6 Accumulator Fusing EV1.1.30 Every accumulator container must contain at least one fuse in the high-current TS path, located on the same side of the AIRs as the battery or capacitor. These fuses must comply with EV5.5.4. EV1.1.31 All details and documentation for fuse, fusible link and/or internal over current protection must be included in the ESF. EV1.1.32 Parallel then Series (nPmS) connections. If more than one battery cell or capacitor is used to form a set of cells in parallel and those parallel groups are then combined in series (Figure 29) then either: 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 a) Each cell must be protected with a fuse or fusible link with a current rating less than or equal to 50% of the calculated short-circuit current (Isc) of the cell or capacitor, where Isc = Vnom / IR(Ω). (The nominal cell voltage divided by its dc internal resistance).. The fuse or fusible link must be rated for the full tractive system voltage, unless the special conditions in EV2.6.5 (Fuse Voltage Ratings) are met. OR b) Manufacturer’s documentation must be provided that certifies that it is acceptable to use this number of single cells in parallel without fusing. This certification must be included in the ESF. (Commercially assembled packs or modules installed per manufacturer's instructions may be exempt from this requirement upon application to the rules committee.) Note: if option (a) is used, fuse j in Figure 27 may be omitted if all conductors carrying the entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, each with current rating i, the conductors must be sized for a total current i total = n·i) Figure 29 - Example nP3S Configuration EV1.1.33 Series then Parallel (nSmP) connections. If strings of batteries or capacitors in series are then combined in parallel (Figure 30) then each string must be individually fused per EV5.5.4. Fuse j in Figure 30 may be omitted if all conductors carrying the entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, each with current rating i, the conductors must be sized for a total current 푖 푡표푡푎푙 = 푛· 푖 without fuse j, or may be sized for a lower current j if fuse j is included.) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 All fuses used in nSmP configurations must be rated for the full tractive system voltage. Figure 30 – Example 5S4P Configuration EV1.1.34 Fuse Voltage Ratings. Although fuses in the tractive system must normally be rated for the full tractive system voltage, under certain conditions an exception can be made for fuses or fusible links for individual cells or capacitors. These conditions, defined in EV2.6.1, apply to fuses or fusible links used to meet EV2.6.3and to any fusible links that are included in the accumulator construction. These requirements are intended to ensure coordination between cell fuses and pack master fuses. The following conditions must be met to allow reduced voltage ratings: The series fuse used to satisfy EV2.6.1 is rated at a current less than or equal to one half of the sum of the parallel low-voltage fuses or fusible links, AND 1. fuse or fusible link current rating is specified in manufacturer’s data OR 2. suitable team generated test data is provided, demonstrating the ability to: (i) Carry full rated current for at least 10 minutes with less than 50° C temperature rise. (ii) Trip at 300% of rated current. (iii) Interrupt current equal to the maximum short circuit current expected without producing heat, sparks, or flames that might damage nearby cells. For example, in Figure 29, this requirement is met if 푗 ≤ 푛· 푖 3 , where i is the cell fuse or link rating, n is the number of cells in parallel and j is the master series fuse rating. EV2.7 Accumulator - Segment Maintenance Disconnect EV1.1.35 A Segment Maintenance Disconnect (SMD) must be installed between each accumulator segment See EV2.2). The SMD must be used whenever the accumulator containers are opened for maintenance and whenever accumulator segments are removed from the container. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: If the high-voltage disconnect (HVD, section EV2.9) is located between segments, it satisfies the requirement for an SMD between those segments. EV1.1.36 The SMD may be implemented with a switch or a removable maintenance plug. Devices capable of remote operation such as relays or contactors may not be used. There must be a positive means of securing the SMD in the disconnected state; for example, a lockable switch can be secured with a zip-tie or a clip. EV1.1.37 SMD methods requiring tools to isolate the segments are not permitted. EV1.1.38 If the SMD is operated with the accumulator container open, any removable part used with the SMD (e.g., a removable plug or clip) must be non-conductive on its external surfaces. i.e. it will not cause a short if dropped into the accumulator. This requirement may be waived on application to the rules committee if connection to battery terminals is prevented by barriers or location. EV1.1.39 Devices used for SMDs must be rated for the expected battery current and voltages EV2.8 Accumulator - Isolation Relays EV1.1.40 At least two isolation relays (AIRs) must be installed in every accumulator container, or in the accumulator section of a segmented container (See EV2.3.4 Note 2) such that no TS voltage will be present outside the accumulator or accumulator section when the TS is shut down. Note: AIRs must be before TSMPs, such that TSMPs de-energize when AIRs are open. EV1.1.41 The accumulator isolation relays must be of a normally open (N.O.) type which are held in the closed position by the current flowing through the shutdown loop (EV7.1). When this flow of current is interrupted, the AIRs must disconnect both poles of the accumulator such that no TS voltage is present outside of the accumulator container(s). EV1.1.42 When the AIRs are opened, the voltage in the tractive system must drop to under 60 VDC (or 42 VAC RMS) in less than five seconds. EV1.1.43 The AIR contacts must be protected by Pre-Charge and Discharge circuitry, See EV2.10. EV1.1.44 If the AIR coils are not equipped with transient suppression by the manufacturer then Transient suppressors 13 must be added in parallel with the AIR coils. EV1.1.45 AIRs containing mercury are not permitted. 13 Transient suppressors protect the circuitry in the shutdown loop from di/dt voltage spikes. One acceptable device is Littelfuse 5KP43CA. (Mouser Part number 576-5KP43CA.) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 31 - Example Accumulator Segmenting EV2.9 Accumulator - High Voltage Disconnect EV1.1.46 Each vehicle must be fitted with a High Voltage Disconnect (HVD) making it possible to quickly and positively break the current path of the tractive system accumulator. This can be accomplished by turning off a disconnect switch, disconnecting the main connector or removing an accessible element such as a fuse. A contactor or AIR device may not be used as an HVD. EV1.1.47 The HVD must be operable without the use of tools. EV1.1.48 It must be possible to disconnect the HVD within 10 seconds in ready-to-race condition. Note: Ready-to-race means that the car is fully assembled, including having all body panels in position, with a driver seated in the vehicle and without the car jacked up. EV1.1.49 The team must demonstrate this during Electrical Tech Inspection. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV1.1.50 The disconnect must be clearly marked with \"HVD\". Multiple disconnects must be marked “HVD n of m”, such as “HVD 1 of 3”, HVD 2 of 3”, etc. EV1.1.51 There must be a positive means of securing the HVD in the disconnected state; for example, a lockable switch can be secured with a zip-tie or a clip. Note: A removable plug will meet this requirement if the plug is secured or fully removed such that it cannot accidentally reconnect. EV1.1.52 The HVD must be opened as part of the Lockout/Tagout procedure. See EV12.1.1. EV1.1.53 The recommended electrical location for the HVD is near the middle of the accumulator string. In this case, it can serve as one of the SMDs. (See Figure 31). Note: The HVD must be prior to TSMPs such that TSMPs are de-energized when the HVD is open. EV2.10 Accumulator - Pre-Charge and Discharge Circuits One particularly dangerous failure mode in an electric vehicle is AIR contacts that have welded shut. When the current through the AIR coils is interrupted, the AIRs should open, isolating the potentially lethal voltages within the accumulator container. If the AIRs are welded shut, these voltages will be present outside the accumulator even though the system is presumably shut down. Welding is caused by high instantaneous currents across the contacts. This can be avoided by a correctly functioning pre-charge circuit. EV1.1.54 Precharge The AIR contacts must be protected by a circuit that will pre-charge the intermediate circuit to at least 90% of the rated accumulator voltage before completing the intermediate circuit by closing the second AIR. The pre-charge circuit must be disabled if the shutdown circuit is deactivated; see EV7.1. i.e. the pre-charge circuit must not be able to pre-charge the system if the shutdown circuit is open. EV1.1.55 It is allowed to pre-charge the intermediate circuit for a conservatively calculated time before closing the second AIR. Monitoring the intermediate circuit voltage is not required. EV1.1.56 The pre-charge circuit must operate regardless of the sequence of operations used to energize the vehicle, including, for example, restarting after being automatically shut down by a safety circuit. EV1.1.57 Discharge If a discharge circuit is needed to meet the requirements of EV2.8.3, it must be designed to handle the maximum expected discharge current for at least 15 seconds. The calculations determining the component values must be part of the ESF. EV1.1.58 The discharge circuit must be fail-safe. i.e. wired in a way that it is always active whenever the shutdown circuit is open or de-energized. EV1.1.59 For always-on discharge circuits and other circuits that dissipate significant power for extended time periods, calculations of the maximum operating temperature of the power dissipating components (e.g., resistors) must be included in the ESF. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Resistors operating at their rated power level often operate at 200° C or more. Insulating materials in proximity to resistors require care to ensure that they are not overheated. Resistors that dissipate more than 50% of their power rating and resistors that dissipate significant power without much open space around them will require additional care to ensure they are safe. It is recommended that teams use resistors rated for at least double the maximum predicted power dissipation, document these design details in the ESF, and mount them that such that heat dissipation is not impeded. Note also that some resistors require external heat sinks in order to dissipate their rated power. Using these resistors for significant power dissipation will require additional documentation of the heat sink design or testing. EV1.1.60 Fuses in the accumulator pre-charge or discharge current paths are not permitted. EV2.11 Accumulator – Accumulator Management System (AMS) EV1.1.61 Each accumulator must be monitored by an accumulator management system (AMS) whenever the tractive system is active or the accumulator is connected to a charger. Note: Some parts of EV2.11 may be waived for commercially manufactured accumulator assemblies. Requests must be submitted to the Formula Hybrid + Electric rules committee at least one month before the competition. EV1.1.62 The AMS must monitor all critical voltages and temperatures in the accumulator as well the integrity of all its voltage and temperature inputs. If an out-of-range or a malfunction is detected, it must shut down the electrical systems, open the AIRs and shut down the I.C. drive system within 60 seconds. 14 (Some GLV systems may remain energized – See Figure 37) EV1.1.63 The tractive system must remain disabled until manually reset by a person other than the driver. It must not be possible for the driver to re-activate the tractive system from within the car in case of an AMS fault. AMS faults must be latched using a mechanical relay circuit (see Appendix G). Digital logic or microcontrollers may not be used for this function. EV1.1.64 The AMS must continuously measure cell voltages in order to keep those voltages inside the allowed minimum and maximums stated in the cell data-sheet. (See Table 9) Notes: 1. If individual cells are directly connected in parallel, only one voltage measurement is required for that group. (Measured at the parallel connections, outside of the cell fuses. (See Figure 29) 2. Exemptions may be granted for commercial accumulator assemblies that do not meet these requirements. 14 Teams may wish to also use the AMS to detect a low voltage or high temperature before these cross the critical threshold, and to alert the driver and/or decrease the power drawn from the accumulator, so as to mitigate the problem before the vehicle must be shut down. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Chemistry Maximum number of cells per voltage measurement PbAcid 6 NiMh 6 Lithium based 1 Table 9 - AMS Voltage Monitoring EV1.1.65 The AMS must monitor the temperature of the minimum number of cells in the accumulator as specified in Table 10 below. The monitored cells must be equally distributed over the accumulator container(s). Chemistry Cells monitored PbAcid 5% UltraCap 10% NiMh 10% Li-Ion 30% Table 10 – AMS Temperature Monitoring NOTE: It is acceptable to monitor multiple cells with one sensor if this sensor has direct contact to all monitored cells. It is also acceptable to use maximum-temperature detection schemes such as diode-paralleled thermisters or zener diodes to monitor multiple cells on a single circuit. NOTE: Teams should monitor the temperature of all cells. NOTE: AMS temperature monitoring at levels less than the requirements in Table 10 may be permitted, on application to the tech committee, for commercial accumulator modules contain integrated temperature sensors. EV1.1.66 All voltage sense wires to the AMS must be protected by fuses or resistors (located as close as possible to the energy source) so that they cannot exceed their current carrying capacity in the event of a short circuit. Note: If the AMS monitoring board is directly connected to the cell, it is acceptable to have a fuse or resistor integrated into the monitoring board. EV1.1.67 Input channels of the AMS used for different segments of the accumulator must be isolated from one another with isolation rated for at least the maximum tractive system voltage. This isolation is also required between channels or sections of the AMS that are connected to different sides of a SMD, HVD, fuse, or AIR. EV1.1.68 Any GLV connection to the AMS must be galvanically isolated from the TSV. This isolation must be documented in the ESF. Note: Per EV2.8.2, AMS connections that are not isolated, such as cell sense wires, cannot exit the accumulator container, unless they are isolated by additional relays when the AIRs are 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 off. This requirement should be considered in the selection of an AMS system for a vehicle that uses more than one accumulator container. The need for additional isolation relays may also be avoided by utilizing a virtual accumulator. See EV2.12 EV1.1.69 Team-Designed Accumulator Management Systems. Teams may design and build their own Accumulator Management Systems. However, microprocessor-based accumulator management systems are subject to the following restrictions: 1. The processor must be dedicated to the AMS function only. However, it may communicate with other systems through shared peripherals or other physical links. 2. The AMS circuit board must include a watchdog timer. It is strongly recommended that teams include the ability to test the watchdog function in their designs. EV1.1.70 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must show the latched fault rather than instantaneous status of the AMS. Other indication methods may be used upon application for a variance with the rules committee EV2.12 Virtual Accumulators. In many cases, difficulties can be encountered when multiple accumulator containers are monitored by a single AMS. Therefore, a vehicle may use a single AMS with more than one accumulator container by defining a ‘Virtual Accumulator’ as provided below. See: Figure 32. EV1.1.71 Each housing of the virtual accumulator container must be permanently installed in the vehicle. i.e. not designed to be removed for charging or exchange. EV1.1.72 The conduit(s) connecting accumulator housings must be flexible metallic liquid-tight steel electrical conduit (NEC type LFMC) securely fastened at each end with fittings rated for metallic LFMC. EV1.1.73 Connectors between the interconnecting conduit and the housings containing the accumulators, and along the length of the interconnecting conduit must be rated for LFMC conduit. EV1.1.74 The conduit must be red, or painted red 15 . EV1.1.75 Any unsupported length of the interconnect conduit may be no greater than 150 mm. i.e. it must be physically supported at least every 150 mm to ensure that it cannot droop or be snagged by something on the track. The interconnect conduit must be contained entirely within the chassis structure. EV1.1.76 Separate conduits must be provided between housings for: 1. Individual tractive System conductors. (Only one high-current TS conductor may pass through any one conduit.) 2. AMS wiring such as cell voltage sense wires that are at TS potential. Note: GLV wiring may be run in its own conduit or outside of conduit. 15 LFMC conduit is available with a red jacket - see for example: http://www.afcweb.com/liquid-tuff-conduit/ul- liquidtight-flexible-steel-conduit-type-lfmc/ 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV1.1.77 All rules relating to accumulator housings (including, but not limited to firewalls, location etc.) also apply to the interconnect conduit. EV1.1.78 If the interconnect conduit is the lowest point in the virtual housing it must have a 3-5 mm drain hole in its lowest point to allow accumulated fluids to drain. EV1.1.79 Segmentation requirements must be met considering the housings individually, and as an interconnected system. For example, AMS wires must be grouped according to segment and must maintain that grouping through to the AMS. EV1.1.80 Each individual housing must comply with TS fusing requirements. (See EV2.6) i.e., there must be at least one TS fuse in each container (See Figure 32). EV1.1.81 A High Voltage Disconnect (HVD) can be installed in the conductors connecting accumulator housings if mounted in a suitable enclosure. In this case, the accumulator boundary extends to include conduit and the HVD enclosure. Figure 32 - Virtual Accumulator example 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV2", + "ruleContent": "TRACTIVE SYSTEM WIRING AND CONSTRUCTION EV2.13 Positioning of tractive system parts EV2.1.1 Housings and/or covers must prevent inadvertent human contact with any part of the tractive system circuitry. This includes people working on or inside the vehicle. Covers must be secure and adequately rigid. Body panels that must be removed to access other components, etc. are not a substitute for enclosing tractive system conductors. EV2.1.2 Tractive system components and wiring must be physically protected from damage by rotating and/or moving parts and must be isolated from fuel system components. EV2.1.3 Finger Probe Test: Inspectors must not be able to touch any tractive system electrical connection using a 10 cm long, 0.6 cm diameter non-conductive test probe. Figure 33 - Finger Probe EV2.1.4 Housings constructed of electrically conductive material must have a minimum-resistance connection to GLV system ground. (See: ARTICLE EV8). EV2.1.5 Every housing or enclosure containing parts of the tractive system must be labeled with the words “Danger”, “High Voltage” and a black lightning bolt on a yellow background. The label must be at least 4 x 6 cm. (See Figure 34 below.) Figure 34 - High Voltage Label 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV2.1.6 All parts belonging to the tractive system including conduit, cables and wiring must be contained within the Surface Envelope of the vehicle (See Figure 25) such that they are protected against being damaged in case of a crash or roll-over situation or being caught (snagged) by road hazards. EV2.1.7 If tractive system parts are mounted in a position where damage could occur from a rear or side impact (below 350 mm from the ground), such as side mounted accumulators or rear mounted motors, they must be protected by a fully triangulated structure meeting the requirements of T3.3, or approved equivalent per T3.3.2 or T3.7. EV2.1.8 Drive motors that are not located fully within the frame, must be protected by an interlock. This interlock must be configured such that the Shutdown Circuit, EV7.1, will be opened if any part of the driven wheel assembly is dislocated from the frame. Drive motors located outside the frame must still comply with EV7.1.3 EV2.1.9 No part of the tractive-system may project below the lower surface of the frame or the monocoque in either side or front view. EV2.1.10 Tractive systems and containers must be protected from moisture in the form of rain or puddles. EV2.1.11 Electric motors, accumulators or electronics that use fluid coolants must comply with T8.1 and T8.2. EV2.14 TS wiring and conduit EV2.1.12 All tractive system wiring must be done to professional standards with adequate strain relief and protection from loosening due to vibration etc. EV2.1.13 Soldering in the high current path is prohibited. Exception: surface-mount fuses and similar components that are designed for soldering and the rated current. 1. Fuses must be mechanically supported by a PCB or equivalent, following manufacturer's instructions (e.g. recommended footprint). Free-hanging fuses connected by wires are not allowed. 2. Team must submit a design document showing that PCB traces on these boards are properly designed for the current carried on all circuits. The battery design must still comply with EV2.6, Accumulator Fusing. EV2.1.14 All wires, terminals and other conductors used in the tractive system must be sized appropriately for the continuous rating of the fuse which protects them. Wire size must comply with the table in Appendix E or alternately, with cable manufacturer's published current rating, if greater. Wires must be marked with wire gauge, temperature rating and insulation voltage rating 16 . EV2.1.15 The minimum acceptable temperature rating for TS wiring is 90°C. This requirement applies to wire and cable; it does not apply to conduit. EV2.1.16 All tractive system wiring that runs outside of electrical enclosures must be either: 1. Orange shielded, dual-insulated cable rated for automotive application, at least 5 mm overall cable diameter 16 Alternatively a manufacturer’s part number printed on the wire will be sufficient if this number can be referenced to a manufacturer’s data sheet. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 OR 2. Enclosed in ORANGE non-conductive conduit (except for Virtual Accumulator systems which must use RED conduit. (See EV2.12) Note: UL Listed Conduit of other colors may be painted or wrapped with colored tape. EV2.1.17 Conduit must be non-metallic and UL Listed 17 as: 1. Conduit under UL1660, UL651 or UL651A OR 2. Non-Metallic Protective Tubing (NMPT) under UL1696. EV2.1.18 Conduit runs must be one piece. Conduit splices and/or transitions between conduit and shielded, dual-insulated cable may only occur within an enclosure and must comply with section EV3.3. EV2.1.19 Wiring to outboard wheel motors may be in conduit or may use shielded dual insulated cables. All other tractive system wiring that runs outside the vehicle frame (but within the roll envelope) must be within conduit. EV2.1.20 When shielded dual-insulated cable is used, the shield must be grounded at both ends of the cable. EV2.1.21 Wiring from motor controller to motor does not require fusing but must be sized for the controller maximum continuous output current, or per manufacturers instructions. EV2.15 TS Cable Strain Relief EV2.1.22 Cable or conduit exiting or entering a tractive system enclosure or the drive motor must use a liquid-tight fitting proving strain relief to the cable or conduit such that it will withstand a force of 200N without straining the cable 18 . The fitting must be one of the following: 1. For conduit: A conduit fitting rated for use with the conduit used. 2. For shielded, dual insulated cable: (i) A cable gland rated for use with the cable used OR (ii) A connector rated for use with the cable used. The connector must provide termination of the shield to ground and latch in place securely enough to meet the strain-relief requirements listed above. Both portions of the connector must meet or exceed IEC standards IP53 (mated) and IP20 (unmated). EV2.1.23 Connections to drive motors that do not have provision for conduit connection are allowed to separate the strain-relief and insulation requirements. Specifically: 1. Cable strain relief must be capable of withstanding a 200N force, and must be within 15 cm of the motor terminals. 17 \"UL Recognized\" is not the same as \"UL Listed\". 18 This will be tested during the electrical tech inspection by pulling on the conduit using a spring scale. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Conventional cable strain relief fittings, mechanical clamps or saddles may be used, however the integrity of the cable insulation must be protected. AND 2. the TS wiring must pass EV3.1.3 (finger probe test) For example, a motor with stud terminals for power input could use a 3D printed plastic cover on the terminals and suitable cable clamps within 15 cm to provide strain relief. EV2.16 TS Electrical Connections EV2.1.24 Tractive system connections must be designed so that they use intentional current paths through conductors such as copper or aluminum 19 . Steel is not permitted. EV2.1.25 Tractive system connections must not include compressible material such as plastic or phenolic in the stack-up. (i.e. components identified as #1 in Figure 35) Figure 35 - Connection Stack-up Note: The bolt shown in Figure 35 can be steel since it is not the primary conductor. However the washer (#2), if used, must not be steel, since it is in the primary conduction path. If possible, no washer should be used in this location, so that the two primary conductors are directly clamped together. EV2.1.26 Conductors and terminals must not be modified from their original size/shape and must be appropriate for the connection being made. EV2.1.27 Bolts with nylon inserts (Nylocks, etc.) and thread-locking compounds (Loctite, etc.) are not permitted. EV2.1.28 All bolted or threaded connections must be torqued properly. The use of a contrasting indicator paste 20 is strongly recommended to indicate completion of proper torqueing procedures. 19 Aluminum conductors may be used, but require specific approval from the Formula Hybrid + Electric rules committee. 20 Such as DYKEM® Cross-Check Torque Seal®. See: https://www.youtube.com/watch?v=W80C4XfyCQE 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Recommended TS Connection Fasteners Fasteners specified and/or supplied by the component manufacturer. Bolts with Belleville (conical) metal locking washers. All-metal positive locking nuts. (See Figure 23) Table 11 - Recommended TS Connection Fasteners EV2.17 Motor Controllers Note: Commercially available motor controllers containing boost converters that have internal voltages greater than 300 VDC may be used provided the unit is approved in writing by the rules committee. EV2.1.29 The tractive system motor(s) must be connected to the accumulator through a motor controller. Bypassing the control system and connecting the tractive system accumulator directly to the motor(s) is prohibited. EV2.1.30 The accelerator control must be a right-foot-operated foot pedal. Refer to IC1.6 for specific requirements of the accelerator control EV2.1.31 The foot pedal must return to its original, rearward position when released. The foot pedal must have positive stops at both ends of its travel, preventing its sensors from being damaged or overstressed. EV2.1.32 All acceleration control signals (between the accelerator pedal and the motor controller) must have error checking. For analog acceleration control signals, this error checking must detect open circuit, short to ground and short to sensor power For digital acceleration control signals, this error checking must detect a loss of communication. EV2.1.33 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, must be galvanically isolated and referenced to GLV ground. Note: If these capabilities are built into the motor controller, then no additional error-checking circuitry is required. EV2.1.34 The accelerator signal limit shutoff may be tested during electrical tech inspection by replicating any of the fault conditions listed in EV3.5.4 EV2.1.35 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, must be galvanically isolated and referenced to GLV ground.. 21 . EV2.1.36 Motor controller inputs that are galvanically isolated from the TSV may be run throughout the vehicle, but must be positively bonded to GLV ground. 21 For commercial controllers that do not provide isolated throttle inputs, a remote throttle actuator can be fabricated with a (grounded) Bowden cable and non-conductive linkages. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV2.1.37 TS drive motors must spin freely when the TS system is in deactivated state, and when transitioned to a deactivated state. EV2.18 Energy Meter EV2.1.38 Vehicles with accumulator energy capacities in excess of the limits in Table 1 must be fitted with an Energy Meter provided by the organizer to compete in the endurance event. EV2.1.39 All power flowing between the accumulator and the Tractive System must pass through the Energy Meter. EV2.1.40 FH+E does not impose POWER limits and so the only function of the energy meter is to determine valid laps for the endurance event. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV3", + "ruleContent": "GROUNDED LOW VOLTAGE SYSTEM EV2.19 Grounded Low Voltage System (GLV) EV3.1.1 The GLV system may not have a voltage greater than that listed in Table 8. EV3.1.2 All GLV batteries must be attached securely to the frame. EV3.1.3 The hot (ungrounded) terminal of the battery must be insulated. EV3.1.4 One terminal of the GLV battery or other GLV power source must be connected to the chassis by a stranded ground wire or flexible strap, with a minimum size of 12 AWG or equivalent cross-section. For vehicles without metal chassis members, the GLV system must be connected to conductive parts to meet the grounding requirements in EV8.1.2. EV3.1.5 The ground wire must run directly from the battery to the nearest frame ground and must be properly secured at both ends. Note: Through-bolting a ring terminal to a gusset plate or dedicated tab welded to the frame is highly recommended. EV3.1.6 Any wet-cell battery located in the driver compartment must be enclosed in a nonconductive marine-type container or equivalent and include a layer of 1.5 mm aluminum or equivalent between the container and driver. EV3.1.7 GLV Battery Pack 1. Team-constructed GLV batteries are allowed. (i) GLV batteries up to 16.8V (4s LiIon) may be used without a battery management system. (ii) GLV batteries 16.8V< MaxV<60V must measure the voltage of all series cells and the temperature of 30% of cells. 2. The GLV battery shall have appropriate over-current circuit protection. 3. Cells wired in parallel must have branch-level overcurrent protection. 4. Team-constructed GLV batteries shall be housed in a container meeting min. firewall rules (1.6mm aluminum baseline) with a vent/pressure relief path directed away from the driver. 5. GLV / TSV isolation rules still apply. EV3.1.8 Orange wire and/or conduit may not be used in GLV wiring. Exception: multi-conductor telecom-type cables containing orange color-coded wires may be used. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV4", + "ruleContent": "TRACTIVE SYSTEM VOLTAGE ISOLATION Most Formula Hybrid + Electric vehicles contain voltages that could cause injury or death if they came in contact with a human body. In addition, all Formula Hybrid + Electric accumulator systems are capable of storing enough energy to cause injury, blindness or death if that energy is released unintentionally. To minimize these risks, all tractive system components and wiring must at a minimum comply with the following rules. EV2.20 Isolation Requirements EV4.1.1 All TS wiring and components must be galvanically (electrically) isolated from GLV by separation and/or insulation. EV4.1.2 All interaction between TS and GLV must be by means of galvanically isolated devices such as opto-couplers, transformers, digital isolators or isolated dc-dc converters. EV4.1.3 All connections from external devices such as laptops to a tractive system component must be galvanically isolated, and include a connection between the external device ground and the vehicle frame ground. EV4.1.4 All isolation devices must be rated for an isolation voltage of at least twice the maximum TS voltage. EV2.21 General EV4.1.5 Tractive system and GLV conductors must not run through the same conduit. EV4.1.6 Tractive system and GLV wiring must not both be present in one connector. Connectors with an integral interlock such as the Amphenol SurLok Plus are exempted from this requirement. EV4.1.7 TS wiring must be separated from the driver's compartment by a firewall. EV4.1.8 TS wiring must not be present behind the instrument panel. TS wiring must not be present in the cockpit unless enclosed in conduit and separated from the driver by a firewall. TS potential must not be present on accelerator pedal or other controls in the cockpit. EV2.22 Insulation, Spacing and Segregation EV4.1.9 Tractive system main current path wiring and any TS circuits that are not protected by over- current devices must be constructed using spacing, insulation, or both, in order to prevent short circuits between TS conductors. Minimum spacings are listed in Table 12. Insulation used to meet this requirement must adhere to EV5.4. EV4.1.10 Where GLV and TS circuits are present in the same enclosure, they must be segregated (in addition to any insulating covering on the wire) by: 1. at least the distance specified in Table 12 OR 2. a barrier material meeting the TS/GLV requirements of EV5.4 EV4.1.11 All required spacings must be clearly defined. Components and cables must be securely restrained to prevent movement and maintain spacing. Note: Grouping TS and GLV wiring into separate regions of an enclosure makes it easier to implement spacing or barriers to meet EV5.3.2 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Maximum Vehicle TS Voltage TS/TS Within Accumulator Container 22 TS/GLV Over Surface (Creepage) Through Air V < 100 VDC 5.3 mm 2.1 mm 10.0 mm 100 VDC < V < 200 VDC 7.5 mm 4.3 mm 20.0 mm V > 200 VDC 9.6 mm 6.4 mm 30.0 mm Table 12 – Minimum Spacings 23 EV2.23 Insulation. EV4.1.12 All electrical insulating material must be appropriate and adequately robust for the application in which it is used. EV4.1.13 Insulating materials used for TS insulation or TS/GLV segregation must: 1. Be UL recognized (i.e., have an Underwriters Laboratories 24 or equivalent rating and certification). 2. Must be rated for the maximum expected operating temperatures at the location of use, or the temperatures listed in Table 13 (whichever is greater). 3. Must meet the minimum thickness requirements listed in Table 13 4. The TS/GLV requirement also applies to TS to chassis ground insulation. Minimum Temperature Minimum Thickness TS / GLV (see Note below) 150º C 0.25 mm TS / TS TS/Chassis Ground 90º C As required to be rated for the full TS voltage Table 13 - Insulating Material - Minimum Temperatures and Thicknesses Note: For TS/GLV isolation, insulating material must be used in addition to any insulating covering provided by the wire manufacturer. EV4.1.14 Insulating materials must extend far enough at the edges to meet spacing and creepage requirements between conductors. 22 Outside of the accumulator container TS/TS spacing should comply with standard industry practice. 23 Teams that have pre-existing systems built to comply with Table 10 in the 2016 rules will be permitted 24 http://www.ul.com 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.1.15 Thermoplastic materials such as vinyl insulation tape may not be used. Thermoset materials such as heat-shrink and self-fusing tapes (typically silicone) are acceptable. Figure 36 – Creepage Distance Example EV2.24 Printed circuit board (PCB) isolation Printed circuit boards designed and/or fabricated by teams must comply with the following: EV4.1.16 If tractive system circuits and GLV circuits are on the same circuit board they must be on separate, clearly defined areas of the board. Furthermore, the tractive system and GLV areas must be clearly marked on the PCB. EV4.1.17 Prototyping boards having plated holes and/or generic conductor patterns may not be used for applications where both GLV and TS circuits are present on the same board. Bare perforated board may be used if the spacing and marking requirements in EV5.5.3 and EV5.5.1 are met, and if the board is removable for inspection. EV4.1.18 Required spacings between TS and GLV conductors are shown in Table 14. If a cut or hole in the PC board is used to allow the “through air” spacing, the cut must not be plated with metal, and the distance around the cut must satisfy the “over surface” spacing requirement. Spacings between TS and GLV conductors on inner layers of PCBs may be reduced to the “through air” spacings. Maximum Vehicle TS Voltage Spacing Over surface Through air Under Conformal Coating 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 0-50 V 1.6 mm 1.6 mm 1 mm 50-150 V 6.4 mm 3.2 mm 2 mm 150-300 V 8.5 mm 6.4 mm 3mm 301-600V 12.7 mm 9.5 mm 4 mm Table 14 – PCB TS/GLV Spacings Note: Teams must be prepared to demonstrate spacings on team-built equipment. Information on this must be included in the ESF (EV13.1). If integrated circuits are used such as opto- couplers which are rated for the respective maximum tractive system voltage, but do not fulfill the required spacing, then they may still be used and the given spacing do not apply. This applies to the pin-to-pin through air and the pin-to-pin spacing over the package surface, but does not exempt the need to slot the board where pads would otherwise be too close. 1. Teams must supply high resolution (min. 300 dpi at 1:1) digital photographs of team- designed boards showing: (i) All layers of unpopulated boards (inner layers or top/bottom layers that don’t photograph well can be provided as copies of artwork files.) (ii) Both top and bottom of fully populated and soldered boards. EV4.1.19 If dimensional information is not obvious (i.e. 0.1 in x 0.1 in spacing) then a dimensional reference must be included in the photo. Spare boards should be made available for inspection. Teams should also be prepared to remove boards for direct inspection if asked to do so during the technical inspection. EV4.1.20 Printed circuit boards located inside the accumulator container and having tractive system connections on them must be fused to limited the power on the board to 600 watt or less, with the exception of precharge and discharge circuits. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV3", + "ruleContent": "FUSING - GENERAL EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging system) must be appropriately fused. EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating of any electrical component that it protects. This includes wires, bus bars, battery cells or other conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current rating may be used for TS wiring if greater than the Appendix E value. Note: Many fuses have a peak current capability significantly higher than their continuous current capability. Using such a fuse allows using a relatively small wire for a high peak current, because the rules only require the wire to be sized for the continuous current rating of the fuse. EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating equal to or greater than the maximum voltage of the system in which they are used 25 . EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit current of the system that it protects. EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an uncontrolled energy source (e.g., a battery). Note: For this rule, a battery is considered an energy source even for wiring intended for charging the battery, because current could flow in the opposite direction in a fault scenario. EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at the branching point, if the branch wire is too small to be protected by the main fuse for the circuit. Note: For further guidance on fusing, see the Fusing Tutorial found here: https://drive.google.com/drive/u/0/search?q=fusing%20tutorial 25 Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating must be specifically called out in order for the fuse to be accepted as DC rated. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV4", + "ruleContent": "SHUTDOWN CIRCUIT AND SYSTEMS EV4.1 Shutdown Circuit The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the flow of current through this loop is interrupted, the AIRs will open, disconnecting the vehicle’s high voltage systems from the source of that voltage within the accumulator container. Shutdown may be initiated by several devices having different priorities as shown in the following table. Figure 37 - Priority of shutdown sources EV4.1.28 The shutdown circuit must consist of at least: 1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 2. Tractive System Master Switch (TSMS) See: EV7.4 3. Two side mounted shutdown buttons (BRBs) See: EV7.5 4. Cockpit-mounted shutdown button. See: EV7.6 5. Brake over-travel switch. See: T7.3 6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: EV7.9 and Figure 38. 7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). See: EV2.11 and Figure 38. 8. All required interlocks. 9. Both IMD and AMS must use mechanical latching means as described in Appendix G. Latch reset must be by manual push button. Logic-controlled reset is not allowed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 10. If CAN communication are used for safety functions, a relay controlled by an independent CAN watchdog device that opens if relevant CAN messages are not received. This relay is not required to be latching. EV4.1.29 Any failure causing the GLV system to shut down must immediately deactivate the tractive system as well. EV4.1.30 The safety shutdown loop must be implemented as a series connection (logical AND) of all devices included in EV7.1.1. Digital logic or microcontrollers may not be used for this function. Normally open auxiliary relays may be used to power high-current devices such as fans, pumps etc. The AIRs must be powered directly by the current flowing through the loop. EV4.1.31 All components in the shutdown circuit must be rated for the maximum continuous current in the circuit (i.e. AIR and relay current). Note: A normally-open relay may be used to control AIR coils upon application to the rules committee. EV4.1.32 In the event of an AMS, IMD or Brake over-travel fault, it must not be possible for the driver to re-activate the tractive system from within the cockpit. This includes “cycling power” through the use of the cockpit shutdown button. Note: Resetting or re-activating the tractive system by operating controls which cannot be reached by the driver 26 is considered to be working on the car. EV4.1.33 Electronic systems that contain internal energy storage must be prevented from feeding power back into the vehicle GLV circuits in the event of GLV shutdown. 26 This would include the use of a wireless link remote from the vehicle. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 *GLV fuse to comply with EV6.1.7 Figure 38 - Example Master Switch and Shutdown Circuit Configuration EV4.2 Master Switches EV4.1.34 Each vehicle must have two Master Switches: 1. Grounded Low Voltage Master Switch (GLVMS) 2. Tractive System Master Switch (TSMS). EV4.1.35 Both master switches must be located on the right side of the vehicle, in proximity to the Main Hoop, at the driver’s shoulder height and be easily actuated from outside the car. EV4.1.36 Both master switches must be of the rotary type, with a red, removable key, similar to the one shown in Figure 39. EV4.1.37 Both master switches must be direct acting. i.e. they may not operate through a relay. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.1.38 Removable master switches are not allowed, e.g. mounted onto removable body work. EV4.1.39 The function of each switch must be clearly marked with “GLV” and “TSV”. EV4.1.40 The “ON” position of both switches must be parallel to the fore-aft axis of the vehicle EV4.3 Grounded Low Voltage Master Switch (GLVMS) EV4.1.41 The GLVMS is the highest priority shutdown and must disable power to all GLV electrical circuits. This includes the alternator, lights, fuel pump(s), I.C. engine ignition and electrical controls. EV4.1.42 All GLV current must flow through the GLVMS. EV4.1.43 Vehicles with GLV charging systems such as alternators or DC/DC converters must use a multi-pole switch to isolate the charging source from the GLV as illustrated in Figure 38 27 . EV4.1.44 The GLVMS must be identified with a label with a red lightning bolt in a blue triangle. (See Figure 40) EV4.4 Tractive System Master Switch (TSMS) EV4.1.45 The TSMS must open the Tractive System shutdown circuit. EV4.1.46 The TSMS must be the last switch in the loop carrying the holding current to the AIRs. (See Figure 38) Figure 39 - Typical Master Switch 27 https://www.pegasusautoracing.com/productdetails.asp?RecID=1464 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 40 - International Kill Switch Symbol EV4.5 Side-mounted Shutdown Buttons (BRB) The side-mounted shutdown buttons (Big Red Buttons – or BRBs) are the first line of defense for a vehicle that is malfunctioning or in trouble. Corner and safety workers are instructed to push the BRB first when responding to an emergency. EV4.1.47 One button must be located on each side of the vehicle behind the driver’s compartment at approximately the level of the driver’s head. They must be installed facing outward and be easily visible from the sides of the car. EV4.1.48 The side-mounted BRBs must be red and a minimum of 38 mm. in diameter. EV4.1.49 The side-mounted shut-down buttons must be a push-pull or push-rotate emergency switch where pushing the button opens the shutdown circuit. EV4.1.50 The side-mounted shutdown buttons must shut down all electrical systems with the exception of the high-current connection to the engine starter motor. EV4.1.51 The shut-down buttons may not act through logic such as a micro-controller or relays. EV4.1.52 The shutdown buttons may not be easily removable, e.g. they may not be mounted onto removable body work. EV4.1.53 The Side-mounted BRBs must be identified with a label with a red lightning bolt in a blue triangle. (See Figure 40) EV4.6 Cockpit Shutdown Button (BRB) EV4.1.54 One shutdown button must be mounted in the cockpit and be easily accessible by the driver while fully belted in and with the steering wheel in any position. EV4.1.55 The cockpit shut-down button must be a push-pull or push-rotate emergency switch where pushing the button opens the shutdown circuit. The cockpit shutdown button must be red and at least 24 mm in diameter. EV4.1.56 Pushing the cockpit mounted button must open the AIRs and shut down the I.C. engine. (See: Figure 37) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.1.57 The cockpit shutdown button must be driver resettable. i.e. if the driver disables the system by pressing the cockpit-mounted shutdown button, the driver must then be able to restore system operation by pulling the button back out. Note: There must still be one additional action by the driver after pulling the button back out to reactivate the motor controller per EV7.7.2. EV4.1.58 The cockpit shut-down buttons may not act through logic such as a micro-controller or relays. EV4.7 Vehicle Start button EV4.1.59 The GLV system must be powered up before it is possible to activate the tractive system shutdown loop. EV4.1.60 After enabling the shutdown circuit, at least one action, such as pressing a “start” button must be performed by the driver before the vehicle is “ready to drive”. i.e. it will respond to any accelerator input. EV4.1.61 The “start” action must be configured such that it cannot inadvertently be left in the “on” position after system shutdown. EV4.8 Shutdown system sequencing EV4.1.62 A recommended sequence of operation for the shutdown circuit and related systems is shown in the form of a state diagram in Figure 41. EV4.1.63 Teams must: 1. Demonstrate that their vehicle operates according to this state diagram, OR 2. Obtain approval for an alternative state diagram by submitting an electrical rules query on or before the ESF submission deadline, and demonstrate that the vehicle operates according to the approved alternative state diagram. IMPORTANT NOTE: If during technical inspection, it is found that the shutdown circuit operates differently from the standard or approved alternative state diagram, the car will be considered to have failed inspection. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 41 - Example Shutdown State Diagram EV4.9 Insulation Monitoring Device (IMD) EV4.1.64 Every car must have an insulation monitoring device installed in the tractive system. EV4.1.65 The IMD must be designed for Electric Vehicle use and meet the following criteria: robustness to vibration, operating temperature range, availability of a direct output, a self-test function, and must not be powered by the system that is monitored. The IMD must be a stand-alone unit. IMD functionality integrated in an AMS is not acceptable (Bender A-ISOMETER ® iso-F1 IR155-3203, IR155-3204, and Iso175C-32-SS are recommended examples). EV4.1.66 The response value of the IMD needs to be set to no less than 500 ohm/volt, related to the maximum tractive system operation voltage. EV4.1.67 In case of an insulation failure or an IMD failure, the IMD must shut down all the electrical systems, open the AIRs and shut down the I.C. drive system. (Some GLV systems such as accumulator cooling pumps and fans, may remain energized – See Figure 37) EV4.1.68 The tractive system must remain disabled until manually reset by a person other than the driver. It must not be possible for the driver to re-activate the tractive system from within the car in case of an IMD-related fault. EV4.1.69 Latching circuitry added by teams to comply with EV7.9.5 must be implemented using electro-mechanical relays. (See Appendix G – Example Relay Latch Circuits.) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.1.70 The status of the IMD must be displayed to the driver by a red indicator light in the cockpit. (See EV9.4). The indicator must show the latched fault and not the instantaneous status of the IMD. Note: The electrical inspectors will test the IMD by applying a test resistor between tractive system (positive or negative) and GLV system ground. This must deactivate the system. Disconnecting the test resistor may not re-activate the system. i.e. the tractive system must remain inactive until it is manually reset. EV4.1.71 The IMD high voltage sense connections may be unfused if wiring is less than 30 cm in length, is less than or equal to #16 wire gauge, has an insulation voltage rating of at least 600V, and is “double insulated” (e.g. has additional sleeving on both conductors). If any of these conditions is not met, the IMD HV sense connections must be fused in accordance with EV3.2.3 and ARTICLE EV6. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV5", + "ruleContent": "GROUNDING EV4.10 General EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a resistance below 300 mΩ to GLV system ground. Accessible parts are defined as those that are exposed in the normal driving configuration or when the vehicle is partially disassembled for maintenance or charging. EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon fiber parts, etc.) that could potentially become energized (including post collision or accident), no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system ground. NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or similar modifications to keep the ground resistance below 100 ohms. EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV system ground. EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 AWG and be stranded. Note: For GLV system grounding conductor size see EV4.1.4. EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the vehicle which is likely to be conductive, for example the driver's harness attachment bolts. Where no convenient conductive point is available then an area of coating may be removed. Note: If the resistance measurement displayed by a conventional two-wire meter is slightly higher than the requirement, a four-terminal measurement technique may be used. If the four- terminal measurement (which is more accurate) meets the requirement, then the vehicle passes the test. See: https://en.wikipedia.org/wiki/Four-terminal_sensing EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS communication) will be required to document and demonstrate shutdown equivalent to BRB operation if CAN communication is interrupted. A solution to this requirement may be a separate device with relay output that monitors CAN traffic. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV6", + "ruleContent": "SYSTEM STATUS INDICATORS EV4.11 Tractive System Active Lamp (TSAL) EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop which must be lit and clearly visible any time the AIR coils are energized. EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green for TS not present are also acceptable. EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles which are covered by the main roll hoop) even in very bright sunlight. EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The person's minimum eye height is 1.6", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV6.m", + "ruleContent": "NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily visible during track operations the team may not be allowed to compete in any dynamic event before the problem is solved. EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator containers is above a threshold calculated as the higher value of 60V or 50% of the nominal accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at voltages below 20V. The TSAL system must be powered entirely by the tractive system and must be directly controlled by voltage being present at the output of the accumulator (no software control is permitted). EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. Note: This requirement may be met by locating an isolated dc-dc converter inside a TS enclosure, and connecting the output of the dc-dc converter to the lamp. (Because the voltage driving the lamp is considered GLV, one side of the voltage driving the lamps must be ground-referenced by connecting it to the frame in order to comply with EV4.1.4.) EV4.12 Ready-to-Drive Sound EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 seconds, when it is ready to drive. (See EV7.7) Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque encoder / accelerator pedal. EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter 28 . EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one in the front, and one from each side of the vehicle. 28 Some compliant devices can be found here: https://www.mspindy.com/ 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV6.1.13 The vehicle must not make any other sounds similar to the Ready-to-Drive sound. EV4.13 Electrical Systems OK Lamps (ESOK) ESOK indicator lamps are required for hybrid and hybrid-in-progress vehicles. They are not required for electric-only vehicles. The purpose of the ESOK indicators is to ensure that a hybrid vehicle is operating with the electric traction system engaged, and to prevent IC-only operation in dynamic events. This requirement is in addition to TSAL indicators which are required for all vehicle classes. EV6.1.14 Hybrid vehicles must have two ESOK lamps. One mounted on each side of the roll bar in the vicinity of the side-mounted shutdown buttons (EV7.5) that can easily be seen from the sides of the vehicle.The indicators must be Amber, complying with DOT FMVSS 108 for trailer clearance lamps 29 . See Figure 42. They must be clearly labeled “ESOK”. EV6.1.15 The ESOK indicators must be powered from the circuit feeding the AIR (contactor) coils. If there is an electrical system fault, or a “BRB” is pressed, or the TS master switch is opened, the ESOK indicators must extinguish. See Figure 38 for an example of ESOK lamp wiring. See Figure 38 for an example of ESOK lamp wiring. Figure 42 – Typical ESOK Lamp EV4.14 Insulation Monitoring Device (IMD) EV6.1.16 The status of the IMD must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must light up if the IMD detects an insulation failure or if the IMD detects a failure in its own operation e.g. when it loses reference ground. EV6.1.17 The IMD indicator light must be clearly marked with the lettering “IMD” or “GFD” (Ground Fault Detector). EV4.15 Accumulator Voltage Indicator EV6.1.18 Any removable accumulator container must have a prominent indicator, such as an LED, that is visible through a closed container that will illuminate whenever a voltage greater than 60 VDC is present at the vehicle side of the AIRs. EV6.1.19 The accumulator voltage indicator must be directly controlled by voltage present at the container connectors using analog electronics. No software control is permitted. 29 https://www.ecfr.gov/cgi-bin/text-idx?node=se49.6.571_1108 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.16 Accumulator Monitoring System (AMS) EV6.1.20 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must light up if the AMS detects an accumulator failure or if the AMS detects a failure in its own operation. EV6.1.21 The AMS indicator light must be clearly marked with the lettering “AMS”. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "ARTICLE EV6", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV5", + "ruleContent": "ELECTRICAL SYSTEM TESTS Note: During electrical tech inspection, these tests will normally be done in the following order: IMD test, insulation measurement, AMS function then Rain test. EV5.1 Insulation Monitoring Device (IMD) Test EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive vehicle parts while the tractive system is active, as shown in the example below. EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault resistance of 250 ohm/volt (50% below the response value). Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take part in any dynamic event if any of the seals are broken until the IMD test is successfully passed again. Figure 43 – Insulation Monitoring Device Test EV5.2 Insulation Measurement Test EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive system and control system ground. The available measurement voltages are 250 V, 500 V and 750 V DC. All cars will be measured with the next available voltage level. For example, a 175 V system will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V system will be measured with 750 V etc. EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least 500 ohm/volt related to the maximum nominal tractive system operation voltage. EV5.3 Tractive System Measuring Points (TSMP) The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, EV2.8.3. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 They may also be used to ensure the isolation of the tractive system of the vehicle during possible rescue operations after an accident or when work on the vehicle is to be done. EV6.1.27 Two tractive system voltage measuring points must be installed in an easily accessible 30 well marked location. Access must not require the removal of body panels. The TSMP jacks must be marked \"Gnd\", \"TS+\" and \"TS-\". EV6.1.28 The TSMPs must be protected by a non-conductive housing that can be opened without tools. EV6.1.29 Shrouded 4 mm banana jacks that accept shrouded (sheathed) banana plugs with non- retractable shrouds must be used for the TSMPs and the system ground measuring point (EV10.3.6). See Figure 44 for examples of the correct jacks and of jacks that are not permitted because they do not accept the required plugs (also shown). EV6.1.30 The TSMPs must be connected, via current limiting resistors, to the positive and negative motor controller/inverter supply lines. (See Figure 38) The TSMP must measure motor controller input voltage even if segmenting or TSMS switches are opened. EV6.1.31 The wiring to each TSMP must be protected with a current limiting resistor sized per Table 15. (Fuses or other forms of overcurrent protection are not permitted). The resistor must be located as close to the voltage source as practical and must have a power rating of: Maximum TS Voltage Resistor Value <= 200 V** 5 kΩ 201 – 400 V 10 kΩ 401 – 600 V 15 kΩ Table 15-TSMP Resistor Values 31 The resistor must be located as close to the voltage source as practical and must have a power rating of: 2( 푇푆푉 푚푎푥 2 푅 ) but not less than 5 W. EV6.1.32 A GLV system ground measuring point must be installed next to the TSMPs. This measuring point must be connected to the GLV system ground, must be a 4 mm shrouded banana jack and marked \"GND\". 30 It should be possible to insert a connector with one hand while standing next to the car. 31 Teams with vehicles with Maximum TS Voltage of 200 V or less may use existing 10 kΩ resistor values upon application to the rules committee 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 44 EV5.4 Accumulator Monitoring System (AMS) Test EV6.1.33 The AMS will be tested in one of two ways: 1. By varying AMS software setpoints so that actual cell voltage is above or below the trip limit. 2.The AMS may be tested by varying simulated cell voltage to the AMS test connector, following open accumulator safety procedures, to make the actual cell voltage above or below the trip limit. EV6.1.34 The requirement for an AMS test port for commercial accumulator assemblies may be waived, or alternate tests may be substituted, upon application to the rules committee. EV5.5 Rain test EV6.1.35 Vehicles that pass the rain test will receive a “Rain Certified” sticker and may be operated in damp or wet conditions. See: ARTICLE D3 If a vehicle does not pass the rain test, or if the team chooses to forego the rain test, then the vehicle is not rain certified and will not be allowed to operate in damp or wet conditions. EV6.1.36 During the rain test: 1. The tractive system must be active. 2. It is not allowed to have anyone seated in the car. 3. The vehicle must be on stands such that none of the driven wheels touch the ground. EV6.1.37 Water will be sprayed at the car from any possible direction for 120 seconds. The water spray will be rain-like. There will be no high-pressure water jet directed at the car. EV6.1.38 The test is passed if the IMD does not trip while water is sprayed at the car and for 120 seconds after the water spray has stopped. Therefore, the total time of the rain test is 240 seconds, 120 seconds with water-spray and 120 seconds without. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV6.1.39 Teams must ensure that water cannot accumulate anywhere in the chassis. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV1", + "ruleContent": "POUCH TYPE LITHIUM-ION CELLS Important Note: Designing an accumulator system utilizing pouch cells is a substantial engineering undertaking, which may be avoided by using prismatic or cylindrical cells. EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion and compression requirements, mechanical constraint, and tab connections. EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, for review, in their ESF1 and ESF2 submissions. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV6", + "ruleContent": "HIGH VOLTAGE PROCEDURES & TOOLS The following rules relate to procedures that must be followed during the Formula Hybrid + Electric competition. It is strongly recommended that these or similar rules be instituted at the team's home institutions. It is also important that all team members view the Formula Hybrid + Electric electrical safety lecture, which can be found here: https://www.youtube.com/watch?v=f_zLdzp1egI&feature=youtu.be EV6.1 Working on Tractive Systems or accumulators EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and that all team members know and follow. EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated by using the maintenance plugs. (See EV2.7). EV6.1.42 If the organizers have provided a “Designated Charging Area”, then opening of or working on accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical Tech Inspection. EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. EV6.1.44 Whenever the accumulator is open or being worked on, a “Danger High Voltage” sign (or other warning device provided by the organizers) must be displayed. Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. EV6.2 Charging EV6.1.45 If the organizers have provided a “Designated Charging Area”, then charging tractive system accumulators is only allowed inside this area. EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a (minimum) 16 AWG green wire during charging. Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the competition site. EV6.1.47 If the organizers have provided “High Voltage” signs and/or beacons, these must be displayed prominently while charging. EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable accumulator container. EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the accumulators are charged externally or internally) must have a prominent sign with the following data: 1. Team name 2. RSO Name with cell phone number(s). EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV6.1.51 All connections of the charger(s) must be isolated and covered, with intact strain relief and no fraying of wires. EV6.1.52 No work is allowed on any of the car’s systems during charging if the accumulators are charging inside of or connected to the car. EV6.1.53 No grinding, drilling, or any other activity that could produce either sparks or conductive debris is allowed in the charging area. EV6.1.54 At least one team member who has knowledge of the charging process must stay with the accumulator(s) / car during charging. EV6.1.55 Moving accumulator cells and/or stack(s) around at the event site is only allowed inside a completely closed accumulator container. EV6.1.56 High Voltage wiring in an offboard charger does not require conduit; however, it must be a UL listed flexible cable that complies with NEC Article 400; jacketed. EV6.1.57 The vehicle charging connection must be appropriately fused for the rating of its connector and cabling in accordance with EV6.1.1. EV6.1.58 The vehicle charging port must only be energized when the tractive system is energized and the TSAL is flashing. i.e. there must be no voltage present on the charging port when the tractive system is de- energized. EV6.1.59 If charging on the vehicle, AMS and IMD systems must be active during charging. The external charging system must shut down if there is an AMS or IMD fault, or if one of the shutdown buttons (See EV7.5) is pressed. If charging off the vehicle, equivalent AMS and IMD protection must be provided. If charging off the vehicle, the charging cart and any exposed metal must be connected to ac-power ground. EV6.3 Accumulator Container Hand Cart EV6.1.60 In case removable accumulator containers are used in order to accommodate charging, a hand cart to transport the accumulators must be presented at Electrical Tech Inspection. EV6.1.61 The hand cart must have a brake such that it can only be released using a dead man's switch, i.e. the brake is always on except when someone releases it by pushing a handle for example. EV6.1.62 The brake must be capable to stop the fully loaded accumulator container hand cart. EV6.1.63 The hand cart must be able to carry the load of the accumulator container(s). EV6.1.64 The hand cart(s) must be used whenever the accumulator container(s) are transported on the event site. EV6.4 Required Equipment Each team must have the following equipment accessible at all times during the event. The equipment must be in good condition, and must be presented during technical inspection. (See also Appendix F) 1. Multimeter rated for CAT III use with UL approval. (Must accept shrouded banana leads.) 2. Multimeter leads rated for CAT III use with shrouded banana leads at one end and probes at the other end. The probes must have finger guards and no more than 3 mm of 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 exposed metal. (Heat shrink tubing may be used to cover additional exposed metal on probes.) 3. Multimeter leads rated for CAT III use with shrouded banana plugs at both ends. 4. Insulated tools. (i.e. screwdrivers, wrenches etc. compatible with all fasteners used inside the accumulator housing.) 5. Face shield which meets ANSI Z87.1-2003 6. HV insulating gloves (tested within the last14 Months) plus protective outer gloves. 7. HV insulating blanket(s) of sufficient size and quantity to cover the vehicle’s accumulator(s). 8. Safety glasses with side shields (ANSI Z87.1-2003 compliant) for all team members. Note: All electrical safety items must be rated for at least the maximum tractive system voltage. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV7", + "ruleContent": "REQUIRED ELECTRICAL DOCUMENTATION EV7.1 Electrical System Form – Part 1 Part 1 of the ESF requests preliminary design information. This is so that the technical reviewers can identify areas of concern early and provide feedback to the teams. EV7.2 Electrical System Form – Part 2 Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. This information must be reentered in Part 2. However it is not expected that the fields will contain identical information, since many aspects of a design will change as a project evolves. EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the voltage level, the topology, the wiring in the car and the construction and build of the accumulator(s). EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and show that none of these ratings are exceeded (including wiring components). This includes stress caused by the environment e.g. high temperatures, vibration, etc. EV6.1.67 A template containing the required structure for the ESF will be made available online. EV6.1.68 The ESF must be submitted as a Microsoft Word format file. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE EV7", + "ruleContent": "- ACRONYMS AC Alternating Current AIR Accumulator Isolation Relay AMS Accumulator Management System BRB Big Red Buttons (Emergency shutdown switches) ESF Electrical System Form ESOK Electrical Systems OK Lamp GLV Grounded Low Voltage GLVMS Grounded Low Voltage Master Switch HVD High Voltage Disconnect IMD Insulation Monitoring Device PCB Printed Circuit Board SMD Segment Maintenance Disconnect TS Tractive System TSMP Tractive System Measuring Point TSMS Tractive System Master Switch TSV Tractive System Voltage TSAL Tractive System Active Lamp 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "PART S1", + "ruleContent": "STATIC EVENTS Presentation 150 points Design 200 points Total 350 points Table 15 – Static Event Maximum Scores 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE S1", + "ruleContent": "TECHNICAL INSPECTION", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.1", + "ruleContent": "Objective", + "parentRuleCode": "1S1", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.1.1", + "ruleContent": "The objective of technical inspection is to determine if the vehicle meets the FH+E rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules.", + "parentRuleCode": "1S1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.1.2", + "ruleContent": "For purposes of interpretation and inspection the violation of the intent of a rule is considered a violation of the rule itself.", + "parentRuleCode": "1S1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.1.3", + "ruleContent": "Technical inspection is a non-scored activity.", + "parentRuleCode": "1S1.1", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2", + "ruleContent": "Inspection & Testing Requirement", + "parentRuleCode": "1S1", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2.1", + "ruleContent": "Each vehicle must pass all parts of technical inspection and testing, and bear the inspection stickers, before it is permitted to participate in any dynamic event or to run on the practice track. The exact procedures and instruments employed for inspection and testing are entirely at the discretion of the Chief Technical Inspector.", + "parentRuleCode": "1S1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2.2", + "ruleContent": "Technical inspection will examine all items included on the Inspection Form found on the Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) plus any other items the inspectors may wish to examine to ensure conformance with the Rules.", + "parentRuleCode": "1S1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2.3", + "ruleContent": "All items on the Inspection Form must be clearly visible to the technical inspectors.", + "parentRuleCode": "1S1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2.4", + "ruleContent": "Visible access can be provided by removing body panels or by providing removable access panels.", + "parentRuleCode": "1S1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2.5", + "ruleContent": "Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification and Repairs, it must remain in the “As-approved” condition throughout the competition and must not be modified.", + "parentRuleCode": "1S1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2.6", + "ruleContent": "Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final and are not permitted to be appealed.", + "parentRuleCode": "1S1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2.7", + "ruleContent": "Technical inspection is conducted only to determine if the vehicle complies with the requirements and restrictions of the Formula Hybrid + Electric rules.", + "parentRuleCode": "1S1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.2.8", + "ruleContent": "Technical approval is valid only for the duration of the specific Formula Hybrid + Electric competition during which the inspection is conducted.", + "parentRuleCode": "1S1.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.3", + "ruleContent": "Inspection Condition Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, complete and ready-to-run. Technical inspectors will not inspect any vehicle presented for inspection in an unfinished state. This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished.", + "parentRuleCode": "1S1", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.4", + "ruleContent": "Inspection Process Vehicle inspection will consist of five separate parts as follows: (a) Part 1: Preliminary Electrical Inspection Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the Preliminary Electrical Inspection. (b) Part 2: Scrutineering - Mechanical 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Each vehicle will be inspected to determine if it complies with the mechanical and structural requirements of the rules. This inspection will include examination of the driver’s equipment (ARTICLE T5) a test of the emergency shutdown response time (Rule T4.9) and a test of the driver egress time (Rule T4.8). The vehicle will be weighed, and the weight placed on a sticker affixed to the vehicle for reference during the Design event. (c) Part 3: Scrutineering – Electrical Each vehicle will be inspected for compliance with the electrical portions of the rules. Note: This is an extensive and detailed inspection. Teams that arrive well-prepared can reduce the time spent in electrical inspection considerably. The electrical inspection will include all the tests listed in EV9.5.1. Note: In addition to the electrical rules contained in this document, the electrical inspectors will use SAE Standard J1673 “High Voltage Automotive Wiring Assembly Design” as the definitive reference for sound wiring practices. Note: Parts 1, 2 and 3 must be passed before a vehicle may apply for Part 4 or Part 5 inspection. (d) Part 4: Tilt Table Tests Each vehicle will be tested to insure it satisfies both the 45 degree (45°) fuel and fluid tilt requirement (Rule T8.5.1) and the 60 degree (60°) stability requirement (Rule T6.7). (e) Part 5: Noise, Master Switch, and Brake Tests. Noise will be tested by the specified method (Rule IC3.2). If the vehicle passes the noise test then its master switches (EV7.2) will be tested. Once the vehicle has passed the noise and master switch tests, its brakes will be tested by the specified method (see Rule T7.2).", + "parentRuleCode": "1S1", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.5", + "ruleContent": "Correction and Re-inspection", + "parentRuleCode": "1S1", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.5.1", + "ruleContent": "If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, then the team must correct the problem and have the car re-inspected.", + "parentRuleCode": "1S1.5", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.5.2", + "ruleContent": "The judges and inspectors have the right to re-inspect any vehicle at any time during the competition and require correction of non-compliance.", + "parentRuleCode": "1S1.5", + "pageNumber": "1" + }, + { + "ruleCode": "1S1.6", + "ruleContent": "Inspection Stickers Inspection stickers issued following the completion of any part of technical inspection must be placed on the upper nose of the vehicle as specified in T13.4 “Technical Inspection Sticker Space”. Inspection stickers are issued contingent on the vehicle remaining in the required condition throughout the competition. Inspection stickers may be removed from vehicles that are not in compliance with the rules or which are required to be re-inspected. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1S1", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE S2", + "ruleContent": "PROJECT MANAGEMENT", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.1", + "ruleContent": "Project Management Objective The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team’s ability to structure and execute a project management plan that helps the team define and meet its goals. A well written project management plan will not only aid each team in producing a functional, rules compliant race car on-time, it will make it much easier to create the Change Management Report and Final Presentation components of the Project Management Event. Several resources are available to guide work in these areas. They can be found in Appendix C. No team should begin developing its project management plan without FIRST: (a) Reviewing “Application of the Project Management Method to Formula Hybrid + Electric”, by Dr. Edward March, former Formula Hybrid + Electric Chief Project Management Judge. (b) Viewing in its entirety Dr. March’s 12-part video series”Formula Hybrid + Electric Project Management”. (c) Reading “Formula Hybrid + Electric Project Management Event Scoring Criteria”, found in Appendix C of the Formula Hybrid + Electric Rules. (d) Watching an example of a “perfect score” presentation, from a previous competiton.", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.2", + "ruleContent": "Project Management Segments The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of a written project plan (2) a written change management report, and, (3) an oral final presentation assessing the overall project management experience to be delivered before a review board at the competition. Segment Points Project Plan Report 55 Change Management Report 40 Presentation 55 Total 150 Table 16 - Project Management Scoring", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.3", + "ruleContent": "Submission 1 -- Project Plan Report", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.3.1", + "ruleContent": "Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that reflects its goals and objectives for the upcoming competition, the management structure, the tasks that will be required to accomplish these objectives, and the time schedule over which these tasks will be performed. The topics covered in the Project Plan Report should include: (a) Scope: What will be accomplished, “SMART” goals and objectives (see Appendix C for more information), major deliverables and milestones. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (b) Operations: Organization of the project team, Work Breakdown Structure, project timeline, and a budget and funding strategy. (c) Risk Management: tasks expected to be particularly difficult for the team, but whose completion is essential for achieving team goals and having a functional car ready before shipment to the track; contingency plans to mitigate these risks if problems arise during project execution. (d) Expected Results: Team goals and objectives quantified into “measure of success”. These attributes are useful for assigning task priorities and allocating resources during project execution. They are also used to determine the extent to which the goals have been achieved. (e) Change Management Process: The system designed by the team for administering project change and maintaining communication across all team members.", + "parentRuleCode": "1S2.3", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.3.2", + "ruleContent": "This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of text. Appendices with supporting information may be attached to the back of the Project Plan. Note 1: Title pages, appendices and table-of-contents do not count as “pages”. Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date. Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project Management judges a one half hour online review session may be made available to each team.", + "parentRuleCode": "1S2.3", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.4", + "ruleContent": "Submission 2 – Change Management Report", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.4.1", + "ruleContent": "Following completion and acceptance of the formal project plan by student team members, the project team begins the execution phase. During this phase, members of the student team and other stakeholders must be updated on progress being made and on issues identified that put the project schedule at risk. The ability of the team to change direction or “pivot” in the face of risks is often a key factor in a team’s successful completion of the project. Changes to the plan are adopted and formally communicated through a change management report. Each team must submit one change management report. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date.", + "parentRuleCode": "1S2.4", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.4.2", + "ruleContent": "These reports are not lengthy but are intended to clearly and concisely communicate the documented changes to the project scope and plan to the team that have been approved using the Change Management Process. See Appendix C for details on scoring criteria for this report. The topics covered in the progress report should include: A) Change Management Process: Detail the Change Management processes and platforms used by the team. At a minimum, the report is expected to cover:", + "parentRuleCode": "1S2.4", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.4.2.a", + "ruleContent": "what triggers the process", + "parentRuleCode": "1S2.4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.4.2.b", + "ruleContent": "how does information flow through the process", + "parentRuleCode": "1S2.4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.4.2.c", + "ruleContent": "how are final decisions transmitted to all team members", + "parentRuleCode": "1S2.4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.4.2.d", + "ruleContent": "team-created process flow diagram 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 B) Implementation of the Change Management Process: Teams are expected to review in detail how the Change Management Process has been used to modify at least one of their project’s main components (Scope or Goals, Operational Plan, Risk Management, and Expected Results). The report is expected to cover an example from start to finish in the process and should also detail the final impact to the project. C) Effectiveness of and Improvements to the Change Management Process: At the end of the project lifecycle, the team is expected to perform an assessment on the effectiveness of their Change Management Process. Through this assessment, the team should identify at least two areas of opportunity to improve the process and include the plans/details to implement those changes.", + "parentRuleCode": "1S2.4.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.4.3", + "ruleContent": "The Change Management Report must not exceed two (2) pages. Appendices may be included with the Report Note 1: Appendix content does not count as “pages”. Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- hybrid.org/deadlines for the due date of the Change Management Report.", + "parentRuleCode": "1S2.4", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.5", + "ruleContent": "Submission Formats", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.5.1", + "ruleContent": "The Project Plan and Change Management Report must be submitted electronically in separate Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, drawings, and optional content).", + "parentRuleCode": "1S2.5", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.5.2", + "ruleContent": "These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g.: 999_University of SAE_Project Plan.doc(x) 999_University of SAE_ChangeManagement.doc(x)", + "parentRuleCode": "1S2.5", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.6", + "ruleContent": "Submission Deadlines The Project Plan and Change Management Report must be submitted by the date and time shown in the Action Deadlines. Submission instructions are in section A9.2. See section A9.3 for late submission penalties.", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.7", + "ruleContent": "Presentation", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.7.1", + "ruleContent": "Objective: Teams must convince a review board that the team’s project has been carefully planned and effectively and dynamically executed.", + "parentRuleCode": "1S2.7", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.7.2", + "ruleContent": "The Project Management presentation will be made on the static events day. Presentation times will be scheduled by the organizers and either posted in advance on the competition website or released during on-site registration (or both). Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable.", + "parentRuleCode": "1S2.7", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.7.3", + "ruleContent": "Teams that fail to make their presentation during their assigned time period will receive zero (0) points for that section of the event. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Teams are encouraged to arrive fifteen (15) minutes prior to their scheduled presentation time to deal with unexpected technical difficulties. The scoring of the event is based on the average of the presentation judging forms.", + "parentRuleCode": "1S2.7", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.8", + "ruleContent": "Presentation Format The presentation judges should be regarded as a project management or executive review board.", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.8.1", + "ruleContent": "Evaluation Criteria - Project Management presentations will be evaluated based on team’s accomplishments in project planning, execution, change management, and succession planning. Presentation organization and quality of visual aids as well as the presenters’ delivery, timing and the team’s response to questions will also be factors in the evaluation.", + "parentRuleCode": "1S2.8", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.8.2", + "ruleContent": "One or more team members will give the presentation to the judges. It is strongly suggested, although not required, that the project manager accompany the presentation team. All team members who will give any part of the presentation, or who will respond to the judge’s questions, must be in the podium area when the presentation starts and must be introduced to the judges. Team members who are part of this “presentation group” may answer the judge’s questions even if they did not speak during the presentation itself.", + "parentRuleCode": "1S2.8", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.8.3", + "ruleContent": "Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, posters, etc. to convey information relevant to their project management case that cannot be contained within a 12-minute presentation.", + "parentRuleCode": "1S2.8", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.8.4", + "ruleContent": "The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt the presentation itself.", + "parentRuleCode": "1S2.8", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.8.5", + "ruleContent": "Feedback on presentations will take place immediately following the eight (8) minute question and answer session. Judges and any team members present may ask questions. The maximum feedback time for each team is eight (8) minutes.", + "parentRuleCode": "1S2.8", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.8.6", + "ruleContent": "Formula Hybrid + Electric may record a team’s presentation for publication or educational purposes. Students have the right to opt out of being recorded - however they must notify the chief presentation judge in writing prior to the beginning of their presentation.", + "parentRuleCode": "1S2.8", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.9", + "ruleContent": "Data Projection Equipment Projection equipment is provided by the organizers. However, teams are advised to bring their own computer equipment in the event the organizer’s equipment malfunctions or is not compatible with their presentation software.", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "1S2.10", + "ruleContent": "Scoring Formula The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is then normalized as follows: 퐹퐼푁퐴퐿 푃푅푂퐽퐸퐶푇 푀퐴푁퐴퐺퐸푀퐸푁푇 푆퐶푂푅퐸 = 150 * (푃 푦표푢푟 /푃 푚푎푥 ) Where: P max is the highest point score awarded to any team P your is the point score awarded to your team. Notes: 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 1. It is intended that the scores will range from near zero (0) to one hundred and fifty (150) points, providing a good separation range. 2. The Project Management Presentation Captain may at her/his discretion normalize the scores of different presentation judging teams for consistency in scoring. 3. Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are applied after the scores are normalized up to a maximum of the team’s normalized Project Management Score.", + "parentRuleCode": "1S2", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE S3", + "ruleContent": "DESIGN EVENT", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.1", + "ruleContent": "Design Event Objective The concept of the design event is to evaluate the engineering effort that went into the design of the car (or the substantial modifications to a prior year car), and how the engineering meets the intent of the market. The car that illustrates the best use of engineering to meet the design goals and the best understanding of the design by the team members will win the design event. Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and that in the Design event, teams are evaluated on their design. Components and systems that are incorporated into the design as finished items are not evaluated as a student designed unit, but are only assessed on the team’s selection and application of that unit. For example, teams that design and fabricate their own shocks are evaluated on the shock design itself as well as the shock’s application within the suspension system. Teams using commercially available shocks are evaluated only on selection and application within the suspension system.", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.2", + "ruleContent": "Submission Requirements", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.2.1", + "ruleContent": "Design Report - Judging will start with a Design Review before the event. The principal document submitted for the Design Review is a Design Report. This report must not exceed ten (10) pages, consisting drawings (see S3.4, “Vehicle Drawings”) and content to be defined by the team (photos, graphs, etc...). This document should contain a brief description of the vehicle and each category listed in Appendix D with the majority of the report specifically addressing the engineering, design features, and vehicle concepts new for this year's event. Include a list of different analysis and testing techniques (FEA, dynamometer testing, etc.). Evidence of this analysis and back-up data should be brought to the competition and be available, on request, for review by the judges. These documents will be used by the judges to sort teams into the appropriate design groups based on the quality of their review. Comment: Consider your Design Report to be the “resume of your car”.", + "parentRuleCode": "1S3.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.2.2", + "ruleContent": "Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the FH+E website. (Do not alter or re-format the template prior to submission.) Note: The design judges realize that final design refinements and vehicle development may cause the submitted figures to diverge slightly from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 The Design Report and the Design Spec Sheet, while related documents, must stand alone and be considered two (2) separate submissions. Two separate file submissions are required.", + "parentRuleCode": "1S3.2", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.3", + "ruleContent": "Sustainability Requirement", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.3.1", + "ruleContent": "Instead of a Sustainability Report please add a Sustainability section to the Design Report answering both of the following prompts: (a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How have you improved these quantities compared to previous year vehicles? How might you improve this in your next vehicle? What components or design decisions are the biggest contributors to the emissions or efficiency, positively or negatively? (b) How does the vehicle's design and construction contribute to the recyclability and re-use of your vehicle, especially when it comes to accumulator storage?", + "parentRuleCode": "1S3.3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.4", + "ruleContent": "Vehicle Drawings", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.4.1", + "ruleContent": "The Design report must include all of the following drawings: (a) One set of 3 view drawings showing the vehicle from the front, top, and side. (b) A schematic of the high voltage wiring showing the wiring between the major components. (See section EV13.1) (c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all major high voltage components and the routing of high voltage wiring. The components shown must (at a minimum) include all those listed in the major sections of the ESF (See section EV13.1)", + "parentRuleCode": "1S3.4", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.5", + "ruleContent": "Submission Formats", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.5.1", + "ruleContent": "The Design Report must be submitted electronically in Adobe Acrobat™ Format files (*.pdf file). These documents must each be a single file (text, drawings, and optional content). These Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E assigned car number and the complete school name, e.g.: 999_University of SAE_Design.pdf", + "parentRuleCode": "1S3.5", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.5.2", + "ruleContent": "Design Spec Sheets must be submitted electronically in Microsoft Excel™ Format. The format of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g. 999_University of SAE_Specs.xls (or) 999_University of SAE_Specs.xlsx WARNING – Failure to exactly follow the above submission requirements may result in exclusion from the Design Event. If your files are not submitted in the required format or are not properly named then they cannot be included in the documents provided to the design judges and your team will be excluded from the event. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1S3.5", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.6", + "ruleContent": "Excess Size Design Reports If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read and evaluated by the judges. Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text information on them will be scored.", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.7", + "ruleContent": "Submission Deadlines The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the event website once report is reviewed for accuracy. Teams should have a printed copy of this reply available at the competition as proof of submission in the event of discrepancy.", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.8", + "ruleContent": "Penalty for Late Submission or Non-Submission See section A9.3 for late submission penalties.", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.9", + "ruleContent": "Penalty for Unsatisfactory Submissions", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.9.1", + "ruleContent": "Teams that submit a Design Report or a Design Spec Sheet which is deemed to be unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. They may be allowed to compete, but receive a penalty of up to seventy five (75) points. Failure to fully document the changes made for the current year’s event to a vehicle used in prior FH+E events, or reuse of any part of a prior year design report, are just two examples of Unsatisfactory Submissions", + "parentRuleCode": "1S3.9", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.10", + "ruleContent": "Vehicle Condition", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.10.1", + "ruleContent": "With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, complete and ready-to-run. The judges will not evaluate any car that is presented at the design event in what they consider to be an unfinished state. Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. Note: Cars can be presented for design judging without having passed technical inspection, or if final tuning and setup is still in progress.", + "parentRuleCode": "1S3.10", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.11", + "ruleContent": "Judging Criteria The design judges will evaluate the engineering effort based upon the team’s Design Report, Spec Sheet, responses to questions and an inspection of the car. The design judges will inspect the car to determine if the design concepts are adequate and appropriate for the application (relative to the objectives set forth in the rules). It is the responsibility of the judges to deduct points on the design judging form, as given in Appendix D if the team cannot adequately explain the engineering and construction of the car.", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.12", + "ruleContent": "Judging Sequence The actual format of the design event may change from year to year as determined by the organizing body. In general, the design event includes a brief overview presentation in front of the physical vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve two parts: (a) Initial judging of all vehicles 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (b) Final judging ranking the top 2 to 4 vehicles.", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.13", + "ruleContent": "Scoring Formula The scoring of the event is based on either the average of the scores from the Design Judging Forms (see Appendix C) or the consensus of the judging team. 퐷퐸푆퐼퐺푁 푆퐶푂푅퐸 = 200 푃 푦표푢푟 푃 푚푎푥 Where: P max is the highest point score awarded to any team in your vehicle category P your is the point score awarded to your team Notes: It is intended that the scores will range from near zero (0) to two hundred (200) to provide good separation. ● The Lead Design Judge may, at his/her discretion, normalize the scores of different judging teams. ● Penalties applied during the Design Event (see Appendix D “Design Judging Form - Miscellaneous”) are applied before the scores are normalized. ● Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are applied after the scores are normalized up to a maximum of the teams normalized Design Score.", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "1S3.14", + "ruleContent": "Support Materials Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1S3", + "pageNumber": "1" + }, + { + "ruleCode": "PART 1D", + "ruleContent": "DYNAMIC EVENTS", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D1", + "ruleContent": "DYNAMIC EVENTS GENERAL", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.1", + "ruleContent": "Maximum Scores Event Acceleration 100 Points Autocross 200 Points Endurance 350 Points Total 650 Points Table 17 - Dynamic Event Maximum Scores", + "parentRuleCode": "1D1", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.2", + "ruleContent": "Driving Behavior During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to an official, worker, spectator or other driver, will result in a penalty. Depending on the potential consequences of the behavior, the penalty will range from an admonishment, to disqualification of that driver from all events, to disqualification of the team from that event, to exclusion of the team from the Competition.", + "parentRuleCode": "1D1", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.3", + "ruleContent": "Safety Procedures", + "parentRuleCode": "1D1", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.3.1", + "ruleContent": "Drivers must properly use all required safety equipment at all times while staged for an event, while running the event, and while stopped on track during an event. Required safety equipment includes all drivers gear and all restraint harnesses.", + "parentRuleCode": "1D1.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.3.2", + "ruleContent": "In the event it is necessary to stop on track during an event the driver must attempt to position the vehicle in a safe position off of the racing line.", + "parentRuleCode": "1D1.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.3.3", + "ruleContent": "Drivers must not exit a vehicle stopped on track during an event until directed to do so by an event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or electrical problems.", + "parentRuleCode": "1D1.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.4", + "ruleContent": "Vehicle Integrity and Disqualification", + "parentRuleCode": "1D1", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.4.1", + "ruleContent": "During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged suspension, brakes or steering components, electrical tractive system fault, or any condition that could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid reason for exclusion by the officials.", + "parentRuleCode": "1D1.4", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.4.2", + "ruleContent": "The safety systems monitoring the electrical tractive system must be functional as indicated by an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event.", + "parentRuleCode": "1D1.4", + "pageNumber": "1" + }, + { + "ruleCode": "1D1.4.3", + "ruleContent": "If vehicle integrity is compromised during the Endurance Event, scoring for that segment will be terminated as of the last completed lap. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D1.4", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D2", + "ruleContent": "WEATHER CONDITIONS The organizer reserves the right to alter the conduct and scoring of the competition based on weather conditions.", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D3", + "ruleContent": "RUNNING IN RAIN A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See EV10.5)", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.1", + "ruleContent": "Operating Conditions The following operating conditions will be recognized at Formula Hybrid + Electric: (a) Dry – Overall the track surface is dry. (b) Damp – Significant sections of the track surface are damp. (c) Wet – The entire track surface is wet and there may be puddles of water. (d) Weather Delay/Cancellation – Any situation in which all, or part, of an event is delayed, rescheduled or canceled in response to weather conditions.", + "parentRuleCode": "1D3", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.2", + "ruleContent": "Decision on Operating Conditions The operating condition in effect at any time during the competition will be decided by the competition officials.", + "parentRuleCode": "1D3", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.3", + "ruleContent": "Notification If the competition officials declare the track(s) to be \"Damp\" or \"Wet\", (a) This decision will be announced over the public address system, and (b) A sign with either \"Damp\" or \"Wet\" will be prominently displayed at both the starting line(s) and the start-finish line of the event(s), and the entry gate to the \"hot\" area.", + "parentRuleCode": "1D3", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.4", + "ruleContent": "Tire Requirements The operating conditions will determine the type of tires a car may run as follows: (a) Dry – Cars must run their Dry Tires, except as covered in D3.8. (b) Damp – Cars may run either their Dry Tires or Rain Tires, at each team’s option. (c) Wet – Cars must run their Rain Tires.", + "parentRuleCode": "1D3", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.5", + "ruleContent": "Event Rules All event rules remain in effect.", + "parentRuleCode": "1D3", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.6", + "ruleContent": "Penalties All penalties remain in effect.", + "parentRuleCode": "1D3", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.7", + "ruleContent": "Scoring No adjustments will be made to teams' times for running in \"Damp\" or \"Wet\" conditions. The minimum performance levels to score points may be adjusted if deemed appropriate by the officials.", + "parentRuleCode": "1D3", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.8", + "ruleContent": "Tire Changing", + "parentRuleCode": "1D3", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.8.1", + "ruleContent": "During the Acceleration or Autocross Events: 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Within the provisions of D3.4 above, teams may change from Dry Tires to Rain Tires or vice versa at any time during those events at their own discretion.", + "parentRuleCode": "1D3.8", + "pageNumber": "1" + }, + { + "ruleCode": "1D3.8.2", + "ruleContent": "During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any time while their car is in the staging area inside the \"hot\" area. All tire changes after a car has received the \"green flag\" to start the Endurance Event must take place in the Driver Change Area. (a) If the track was \"Dry\" and is declared \"Damp\": (i) Teams may start on either Dry or Rain Tires at their option. (ii) Teams that are on the track when it is declared \"Damp\", may elect, at their option, to pit in the Driver Change Area and change to Rain Tires under the terms spelled out below in \"Tire Changes in the Driver Change Area\". (b) If the track is declared \"Wet\": (i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver Change Area. (ii) Those cars that are already fitted with \"Rain\" tires will be allowed restart without delay subject to the discretion of the Event Captain/Clerk of the Course. (iii)Those cars without \"Rain\" tires will be required to fit them under the terms spelled out below in \"Tire Changes in the Driver Change Area\". They will then be allowed to re- start at the discretion of the Event Captain/Clerk of the Course. (c) If the track is declared \"Dry\" after being \"Damp\" or \"Wet\": The teams will NOT be required to change back to “Dry” tires. (d) Tire Changes at Team's Option: (i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to change tires at their option. (ii) If a team elects to change from “Dry” to “Rain” tires, the time to make the change will NOT be included in the team’s total time. (iii) If a team elects to change from “Rain” tires back to “Dry” tires, the time taken to make the change WILL be included in the team’s total time for the event, i.e. it will not be subtracted from the total elapsed time. However, a change from “Rain” tires back to “Dry” tires will not be permitted during the driver change. (iv) To make such a change, the following procedure must be followed: 1. Team makes the decision 2. Team has tires and equipment ready near Driver Change Area 3. The team informs the Event Captain/Clerk of the Course they wish their car to be brought in for a tire change 4. Officials inform the driver by means of a sign or flag at the checker flag station 5. Driver exits the track and enters the Driver Change Area in the normal manner. (e) Tire Changes in the Driver Change Area: 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (i) Per Rule D7.13.2 no more than three people for each team may be present in the Driver Change Area during any tire change, e.g. a driver and two crew or two drivers and one crew member. (ii) No other work may be performed on the cars during a tire change. (iii) Teams changing from \"Dry\" to \"Rain\" tires will be allowed a maximum of ten (10) minutes to make the change. (iv) If a team elects to change from \"Dry\" to \"Rain\" tires during their scheduled driver change, they may do so, and the total allowed time in the Driver Change Area will be increased without penalty by ten (10) minutes. (v) The time spent in the driver change area of less than 10 minutes without driver change will not be counted in the team's total time for the event. Any time in excess of these times will be counted in the team's total time for the event.", + "parentRuleCode": "1D3.8", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D4", + "ruleContent": "DRIVER LIMITATIONS", + "pageNumber": "1" + }, + { + "ruleCode": "1D4.1", + "ruleContent": "Two Event Limit", + "parentRuleCode": "1D4", + "pageNumber": "1" + }, + { + "ruleCode": "1D4.1.1", + "ruleContent": "An individual team member may not drive in more than two (2) events. Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum of four (4) drivers is required to participate in all possible runs in all of the dynamic events.", + "parentRuleCode": "1D4.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D4.1.2", + "ruleContent": "It is the team’s option to participate in any event. The team may forfeit any runs in any performance event.", + "parentRuleCode": "1D4.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D4.1.3", + "ruleContent": "In order to drive in the endurance event, a driver must have attended the mandatory drivers meeting and walked the endurance track with an official.", + "parentRuleCode": "1D4.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D4.1.4", + "ruleContent": "The time and location of the meeting and walk-around will be announced at the event.", + "parentRuleCode": "1D4.1", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D5", + "ruleContent": "ACCELERATION EVENT", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.1", + "ruleContent": "Acceleration Objective The acceleration event evaluates the car’s acceleration in a straight line on flat pavement.", + "parentRuleCode": "1D5", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.2", + "ruleContent": "Acceleration Procedure The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be used to indicate the approval to begin, however, time starts only after the vehicle crosses the start line. There will be no particular order of the cars in the event. A driver has the option to take a second run immediately after the first.", + "parentRuleCode": "1D5", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.3", + "ruleContent": "Acceleration Event", + "parentRuleCode": "1D5", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.3.1", + "ruleContent": "All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the acceleration runs.", + "parentRuleCode": "1D5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.3.2", + "ruleContent": "Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during any of their acceleration runs. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D5.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.4", + "ruleContent": "Tire Traction – Limitations Special agents that increase traction may not be added to the tires or track surface and “burnouts” are not allowed.", + "parentRuleCode": "1D5", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.5", + "ruleContent": "Acceleration Scoring The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the time the car crosses the starting line until it crosses the finish line.", + "parentRuleCode": "1D5", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.6", + "ruleContent": "Acceleration Penalties", + "parentRuleCode": "1D5", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.6.1", + "ruleContent": "Cones Down Or Out (DOO) A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred on that particular run to give the corrected elapsed time.", + "parentRuleCode": "1D5.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.6.2", + "ruleContent": "Off Course An Off Course (OC) will result in a DNF for that run.", + "parentRuleCode": "1D5.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.7", + "ruleContent": "Did Not Attempt The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Finish (DNF).", + "parentRuleCode": "1D5", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.8", + "ruleContent": "Acceleration Scoring Formula The equation below is used to determine the scores for the Acceleration Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”.", + "parentRuleCode": "1D5", + "pageNumber": "1" + }, + { + "ruleCode": "1D5.8.1", + "ruleContent": "A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded “Performance Points” based on its corrected elapsed time relative to the time of the best team in its class. 퐴퐶퐶퐸퐿퐸푅퐴푇퐼푂푁 푆퐶푂푅퐸=10 +15+ (75 × 푇 푚푖푛 푇 푦표푢푟 ) Where: T your is the lowest corrected elapsed time (including penalties) recorded by your team. T min is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category. Note: A Did Not Start (DNS) will score (0) points for the event", + "parentRuleCode": "1D5.8", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D6", + "ruleContent": "AUTOCROSS EVENT", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.1", + "ruleContent": "Autocross Objective The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a tight course without the hindrance of competing cars. The autocross course will combine the performance features of acceleration, braking, and cornering into one event. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D6", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.2", + "ruleContent": "Autocross Procedure", + "parentRuleCode": "1D6", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.2.1", + "ruleContent": "There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) timed laps will be run (weather and time permitting) by each driver and the best lap time will stand as the time for that heat.", + "parentRuleCode": "1D6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.2.2", + "ruleContent": "The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. The timer starts only after the car crosses the start line.", + "parentRuleCode": "1D6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.2.3", + "ruleContent": "There will be no particular order of the cars to run each heat, but a driver has the option to take a second run immediately after the first.", + "parentRuleCode": "1D6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.2.4", + "ruleContent": "The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Start (DNS).", + "parentRuleCode": "1D6.2", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.3", + "ruleContent": "Autocross Course Specifications & Speeds", + "parentRuleCode": "1D6", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.3.1", + "ruleContent": "The following specifications will suggest the maximum speeds that will be encountered on the course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). (a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 m (150 feet) with wide turns on the ends. (b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. (c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). (d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. (e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track width will be 3.5 m (11.5 feet).", + "parentRuleCode": "1D6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.3.2", + "ruleContent": "The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete a specified number of runs.", + "parentRuleCode": "1D6.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.4", + "ruleContent": "Autocross Penalties The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed time:", + "parentRuleCode": "1D6", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.4.1", + "ruleContent": "Cone Down or Out (DOO) Two (2) seconds per cone, including any after the finish line.", + "parentRuleCode": "1D6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.4.2", + "ruleContent": "Off Course Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. Penalties will not be assessed for accident avoidance or other reasons deemed sufficient by the track officials. If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off the paved surface will count as an \"off course\". Two (2) wheels off will not incur an immediate penalty; however, consistent driving of this type may be penalized at the discretion of the event officials.", + "parentRuleCode": "1D6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.4.3", + "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one \"off-course\" per occurrence. Each occurrence will incur a twenty (20) second penalty.", + "parentRuleCode": "1D6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.4.4", + "ruleContent": "Stalled & Disabled Vehicles 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 If a car stalls and cannot restart without external assistance, the car will be deemed disabled. Cars deemed disabled will be cleared from the track by the track workers. At the direction of the track officials team members may be instructed to retrieve the vehicle. Vehicle recovery may only be done under the control of the track officials.", + "parentRuleCode": "1D6.4", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.5", + "ruleContent": "Corrected Elapsed Time The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time.", + "parentRuleCode": "1D6", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.6", + "ruleContent": "Best Run Scored The time required to complete each run will be recorded and the team’s best corrected elapsed time will be used to determine the score.", + "parentRuleCode": "1D6", + "pageNumber": "1" + }, + { + "ruleCode": "1D6.7", + "ruleContent": "Autocross Scoring Formula The equation below is used to determine the scores for the Autocross Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”. A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded “Performance Points” based on its corrected elapsed time relative to the time of the best team in its vehicle category. 퐴푈푇푂퐶푅푂푆푆 푆퐶푂푅퐸=20+30+ (150× 푇 푚푖푛 푇 푦표푢푟 ) Where: T min is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category over their four heats. T your is the lowest corrected elapsed time (including penalties) recorded by your team over the four heats. Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event.", + "parentRuleCode": "1D6", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D7", + "ruleContent": "ENDURANCE EVENT", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.1", + "ruleContent": "Right to Change Procedure The following are general guidelines for conducting the endurance event. The organizers reserve the right to establish procedures specific to the conduct of the event at the site. All such procedures will be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or on the official bulletin board at the event.", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.2", + "ruleContent": "Endurance Objective The endurance event is designed to evaluate the vehicle’s overall performance, reliability and efficiency. Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated distance on a fixed amount of energy in the least amount of time. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.3", + "ruleContent": "Endurance General Procedure", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.3.1", + "ruleContent": "In general, the team completing the most laps in the shortest time will earn the maximum points available for this event. Formula Hybrid + Electric uses an endurance scoring formula that rewards both speed and distance traveled. (See D7.18)", + "parentRuleCode": "1D7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.3.2", + "ruleContent": "The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 mile) segments.", + "parentRuleCode": "1D7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.3.3", + "ruleContent": "Driver changes will be made between each segment.", + "parentRuleCode": "1D7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.3.4", + "ruleContent": "Wheel to wheel racing is prohibited.", + "parentRuleCode": "1D7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.3.5", + "ruleContent": "Passing another vehicle may only be done in an established passing zone or under the control of a course marshal.", + "parentRuleCode": "1D7.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.4", + "ruleContent": "Endurance Course Specifications & Speeds Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr (29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). Endurance courses will be configured, where possible, in a manner which maximizes the advantage of regenerative braking. (a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than 61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several locations. (b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. (c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). (d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. (e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). (f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius turns, elevation changes, etc.", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.5", + "ruleContent": "Energy", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.5.1", + "ruleContent": "All vehicles competing in the endurance event must complete the event using only the energy stored on board the vehicle at the start of the event plus any energy reclaimed through regenerative braking during the event. Alternatively, vehicles may compete in the endurance event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted towards the endurance score. If energy meter data is missing or appears inaccurate, the vehicle may receive start and performance points as appropriate, but “performance points” may be forfeited at organizers discretion.", + "parentRuleCode": "1D7.5", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.5.2", + "ruleContent": "Prior to the beginning of the endurance event, all competitors may charge their electric accumulators from any approved power source they wish.", + "parentRuleCode": "1D7.5", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.5.3", + "ruleContent": "Once a vehicle has begun the endurance event, recharging accumulators from an off-board source is not permitted.", + "parentRuleCode": "1D7.5", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.6", + "ruleContent": "Hybrid Vehicles", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.6.1", + "ruleContent": "All Hybrid vehicles will begin the endurance event with the defined amount of energy on board. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D7.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.6.2", + "ruleContent": "The amount of energy allotted to each team is determined by the Formula Hybrid + Electric Rules Committee and is listed in Table 1 – 2024 Energy and Accumulator Limits", + "parentRuleCode": "1D7.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.6.3", + "ruleContent": "The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by an amount equal to the stated energy capacity of the vehicle’s accumulator(s).", + "parentRuleCode": "1D7.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.6.4", + "ruleContent": "There will be no extra points given for fuel remaining at the end of the endurance event.", + "parentRuleCode": "1D7.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.7", + "ruleContent": "Fueling - Hybrid Vehicles", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.7.1", + "ruleContent": "Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will then be added to the tank by the organizers and the filler will be sealed.", + "parentRuleCode": "1D7.7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.7.2", + "ruleContent": "Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and supporting the vehicle to facilitate draining the fuel tank.", + "parentRuleCode": "1D7.7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.7.3", + "ruleContent": "Once fueled, the vehicle must proceed directly to the endurance staging area.", + "parentRuleCode": "1D7.7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.8", + "ruleContent": "Charging - Electric Vehicles Each Electric vehicle will begin the endurance event with whatever energy can be stored in its accumulator(s).", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.9", + "ruleContent": "Endurance Run Order Endurance run order will be determined by the team’s corrected elapsed time in the autocross. Teams with the best autocross corrected elapsed time will run first. If a team did not score in the autocross event, the run order will then continue based on acceleration event times, followed by any vehicles that may not have completed either previous dynamic event. Endurance run order will be published at least one hour before the endurance event is run.", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.10", + "ruleContent": "Entering the Track At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter based on traffic conditions.", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.11", + "ruleContent": "Endurance Vehicle Restarting", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.11.1", + "ruleContent": "The vehicle must be capable of restarting without external assistance at all times once the vehicle has begun the event.", + "parentRuleCode": "1D7.11", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.11.2", + "ruleContent": "If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following it (approximately one (1) minute) to restart.", + "parentRuleCode": "1D7.11", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.11.3", + "ruleContent": "At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8).", + "parentRuleCode": "1D7.11", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.11.4", + "ruleContent": "If restarts are not accomplished within the above times, the vehicle will be deemed disabled and scored as a DNF for the event.", + "parentRuleCode": "1D7.11", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.12", + "ruleContent": "Breakdowns & Stalls", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.12.1", + "ruleContent": "If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter the course.", + "parentRuleCode": "1D7.12", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.12.2", + "ruleContent": "If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course where it went off, but no work may be performed on the vehicle", + "parentRuleCode": "1D7.12", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.12.3", + "ruleContent": "If a vehicle stops on track and cannot be restarted without external assistance, the track workers will push the vehicle clear of the track. At the discretion of event officials, two (2) team members may retrieve the vehicle under direction of the track workers. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D7.12", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13", + "ruleContent": "Endurance Driver Change Procedure", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.1", + "ruleContent": "There must be a minimum of two (2) drivers for the endurance event, with a maximum of four (4) drivers. One driver may not drive in two consecutive segments.", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.2", + "ruleContent": "Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the driver change area. If a driver elects to come into driver change before the end of their 11km segment, they will not be allowed to make up the laps remaining in that segment.", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.3", + "ruleContent": "Only three (3) team members, including the driver or drivers, will be allowed in the driver change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers and/or change tires will be carried into this area (no tool chests, electronic test equipment, computers, etc.). Extra people entering the driver change area will result in a twenty (20) point penalty to the final endurance score for each extra person entering the area. Note: Teams are permitted to “tag-team” in and out of the driver change area as long as there are no more than three (3) team members present at any one time.", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.4", + "ruleContent": "The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. These systems must remain shut down until the new driver is in place. (See D7.13.8)", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.5", + "ruleContent": "The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be secured in the vehicle.", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.6", + "ruleContent": "Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle comes to a halt in the driver change area and stops when the correct adjustment of the driver restraints and safety equipment has been verified by the driver change area official. Any time taken over the allowed time will incur a penalty. (See D7.17.2(k))", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.7", + "ruleContent": "During the driver change, teams are not permitted to do any work on, or make any adjustments to the vehicle with the following exceptions: (a) Changes required to accommodate each driver (b) Tire changing as covered by D3.8 “Tire Changing”, (c) Actuation of the following buttons/switches to assist the driver with re-energizing the electrical tractive system (i) Ground Low Voltage Master Switch (ii) Tractive System Master Switch (iii) Side Mounted BRBs (iv) IMD Reset (Button/Switch must be clearly marked “IMD RESET”) (v) AMS Reset (Button/Switch must be clearly marked “AMS RESET”)", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.8", + "ruleContent": "Once the new driver is in place and an official has verified the correct adjustment of the driver restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive system (IC engine, electrical tractive system, or both) and begin moving out of the driver change area. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 The ESOK indicator must be illuminated and verified by the driver change area official prior to the vehicle being released out of the driver change area.", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.9", + "ruleContent": "The process given in Error! Reference source not found. through D7.13.8 will be repeated for each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km (27.34 miles) distance or until the endurance event track closing time, at which point the vehicle will be signaled off the course.", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.10", + "ruleContent": "The driver change area will be placed such that the timing system will see the driver change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this extra-long lap will not count into a team’s final time. If a driver change takes longer than three minutes, the extra time will be added to the team’s final time.", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.13.11", + "ruleContent": "Once the vehicle has begun the event, electronic adjustment to the vehicle may only be made by the driver using driver-accessible controls.", + "parentRuleCode": "1D7.13", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.14", + "ruleContent": "Endurance Lap Timing", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.14.1", + "ruleContent": "Each lap of the endurance event will be individually timed either by electronic means, or by hand.", + "parentRuleCode": "1D7.14", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.14.2", + "ruleContent": "Each team is required to time their vehicle during the endurance event as a backup in case of a timing equipment malfunction. An area will be provided where a maximum of two team members can perform this function. All laps, including the extra-long laps must be recorded legibly and turned in to the organizers at the end of the endurance event. Standardized lap timing forms will be provided by the organizers.", + "parentRuleCode": "1D7.14", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.15", + "ruleContent": "Exiting the Course", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.15.1", + "ruleContent": "Timing will stop when the vehicle crosses the start/finish line.", + "parentRuleCode": "1D7.15", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.15.2", + "ruleContent": "Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter the driver change area before coming to a stop. There will be no “cool down” laps.", + "parentRuleCode": "1D7.15", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.15.3", + "ruleContent": "The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be penalized.", + "parentRuleCode": "1D7.15", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.16", + "ruleContent": "Endurance Minimum Speed Requirement", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.16.1", + "ruleContent": "A car's allotted number of laps, including driver’s changes, must be completed in a maximum of 120 minutes elapsed time from the start of that car's first lap. Cars that are unable to comply will be flagged off the course and their actual completed laps tallied.", + "parentRuleCode": "1D7.16", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.16.2", + "ruleContent": "If a vehicle’s lap time becomes greater than Max Average Lap Time (See: D7.18) it may be declared “out of energy”, and flagged off the course. The vehicle will be deemed disabled and scored as a DNF for the event. Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring formulas. Attempting to complete additional laps at too low a speed can cost a team points.", + "parentRuleCode": "1D7.16", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.17", + "ruleContent": "Endurance Penalties", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.17.1", + "ruleContent": "Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the track official.", + "parentRuleCode": "1D7.17", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.17.2", + "ruleContent": "The penalties in effect during the endurance event are listed below. (a) Cone down or out (DOO) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Two (2) seconds per cone. This includes cones before the start line and after the finish line. (b) Off Course (OC) For an OC, the driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. If a paved surface edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off the paved surface will count as an \"off course\". Two (2) wheels off will not incur an immediate penalty. However, consistent driving of this type may be penalized at the discretion of the event officials. (c) Missed Slalom Missing one or more gates of a given slalom will incur a twenty (20) second penalty. (d) Failure to obey a flag Penalty: 1 minute (e) Over Driving (After a closed black flag) Penalty: 1 Minute (f) Vehicle to Vehicle Contact Penalty: DISQUALIFIED (g) Running Out of Order Penalty: 2 Minutes (h) Mechanical Black Flag See D7.23.3(b). No time penalty. The time taken for mechanical or electrical inspection under a “mechanical black flag” is considered officials’ time and is not included in the team’s total time. However, if the inspection reveals a mechanical or electrical integrity problem the vehicle may be deemed disabled and scored as a DNF for the event. (i) Reckless or Aggressive Driving Any reckless or aggressive driving behavior (such as forcing another vehicle off the track, refusal to allow passing, or close driving that would cause the likelihood of vehicle contact) will result in a black flag for that driver. When a driver receives a black flag signal, he/she must proceed to the penalty box to listen to a reprimand for his/her driving behavior. The amount of time spent in the penalty box will vary from one (1) to four (4) minutes depending upon the severity of the offense. If it is impossible to impose a penalty by a stop under a black flag, e.g. not enough laps left, the event officials may add an appropriate time penalty to the team’s elapsed time. (j) Inexperienced Driver The Event Captain or Clerk of the Course may disqualify a driver if the driver is too slow, too aggressive, or driving in a manner that, in the sole opinion of the event officials, demonstrates an inability to properly control their vehicle. This will result in a DNF for the event. (k) Driver Change 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Driver changes taking longer than three (3) minutes will be penalized.", + "parentRuleCode": "1D7.17", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.18", + "ruleContent": "Endurance Scoring Formula The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, etc.), plus any penalty time and penalty points assessed against all drivers and team members. Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the DNF.", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.18.1", + "ruleContent": "The equation below is used to determine the scores for the Endurance Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”. A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) lap. A team is awarded “Performance Points” based on the number of laps it completes relative to the best team in its vehicle category (distance factor) and its corrected average lap time relative to the event standard time and the time of the best team in its vehicle category (speed factor). 퐸푁퐷푈푅퐴푁퐶퐸 푆퐶푂푅퐸 = 35+52.5+ 262.5 ( 퐿푎푝푆푢푚 ( 푛 ) 푦표푢푟 퐿푎푝푆푢푚 ( 푛 ) 푚푎푥 ) ( 푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 푇 푦표푢푟 )−1 ( 푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 푇 푚푖푛 ) −1 Where: Max Average Lap Time is the event standard time in minutes and is calculated as 푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 = 105 푡ℎ푒 푛푢푚푏푒푟 표푓 푙푎푝푠 푟푒푞푢푖푟푒푑 푡표 푐표푚푝푙푒푡푒 44 푘푚 T min = the lowest corrected average lap time (including penalties) recorded by the fastest team in your vehicle category over their completed laps. T your = the corrected average lap time (including penalties) recorded by your team over your completed laps. LapSum(n) max = The value of LapSum corresponding to number of complete laps credited to the team in your vehicle category that covered the greatest distance. LapSum(n) your = The value of LapSum corresponding to the number of complete laps credited to your team Notes: (a) If your team completes all of the required laps, then LapSum(n) your will equal the maximum possible value of LapSum(n). (990 for a 44 lap event). (b) If your team does not complete the required number of laps, then LapSum(n) your will be based on the number of laps completed. See Appendix B for LapSum(n) calculation methodology. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (c) Negative “performance points” will not be given. (d) A Did Not Start (DNS) will score (0) points for the event", + "parentRuleCode": "1D7.18", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.18.2", + "ruleContent": "Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their results truncated at the last lap completed within the 120 minute limit.", + "parentRuleCode": "1D7.18", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.19", + "ruleContent": "Post Event Engine and Energy Check The organizer reserves the right to impound any vehicle immediately after the event to check accumulator capacity, engine displacement (method to be determined by the organizer) and restrictor size (if fitted).", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.20", + "ruleContent": "Endurance Event – Driving", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.20.1", + "ruleContent": "During the endurance event when multiple vehicles are running on the course it is paramount that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion in the penalty box with course officials. The amount of time spent in the penalty box is at the discretion of the officials and is included in the run time. Penalty box time serves as a reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware that contact between open wheel racers is especially dangerous because tires touching can throw one vehicle into the air.", + "parentRuleCode": "1D7.20", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.20.2", + "ruleContent": "Endurance is a timed event in which drivers compete only against the clock not against other vehicles. Aggressive driving is unnecessary.", + "parentRuleCode": "1D7.20", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.21", + "ruleContent": "Endurance Event – Passing", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.21.1", + "ruleContent": "Passing during the endurance event may only be done in the designated passing zones and under the control of the track officials. Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the slow lane and decelerate. The following faster vehicle will continue in the fast lane and make the pass. The vehicle that had been passed may reenter traffic only under the control of the passing zone exit marshal. The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on the design of the specific course.", + "parentRuleCode": "1D7.21", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.21.2", + "ruleContent": "These passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", + "parentRuleCode": "1D7.21", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.21.3", + "ruleContent": "Under normal driving conditions when not being passed all vehicles use the fast lane.", + "parentRuleCode": "1D7.21", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.22", + "ruleContent": "Endurance Event – Driver’s Course Walk The endurance course will be available for walk by drivers prior to the event. All endurance drivers should walk the course before the event starts.", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.23", + "ruleContent": "Flags", + "parentRuleCode": "1D7", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.23.1", + "ruleContent": "The flag signals convey the commands described below, and must be obeyed immediately and without question.", + "parentRuleCode": "1D7.23", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.23.2", + "ruleContent": "There are two kinds of flags for the competition: Command Flags and Informational Flags. Command Flags are just that, flags that send a message to the competitor that the competitor 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 must obey without question. Informational Flags, on the other hand, require no action from the driver, but should be used as added information to help him or her maximize performance. What follows is a brief description of the flags used at the competitions in North America and what each flag means. Note: Not all of these flags are used at all competitions and some alternate designs are occasionally displayed. Any variations from this list will be explained at the drivers meetings. Table 18 - Flags", + "parentRuleCode": "1D7.23", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.23.3", + "ruleContent": "Command Flags (a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations or other official concerning an incident. A time penalty may be assessed for such incident. (b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) (“Meatball”) - Pull into the penalty box for a mechanical inspection of your vehicle, something has been observed that needs closer inspection. (c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor or competitors. Obey the course marshal’s hand or flag signals at the end of the passing zone to merge into competition. (d) CHECKER FLAG - Your segment has been completed. Exit the course at the first opportunity after crossing the finish line. (e) GREEN FLAG - Your segment has started, enter the course under direction of the starter. NOTE: If you are unable to enter the course when directed, await another green flag as the opening in traffic may have closed. (f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow course marshal’s directions. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (g) YELLOW FLAG (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the course marshals. (h) YELLOW FLAG (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless directed by the course marshals.", + "parentRuleCode": "1D7.23", + "pageNumber": "1" + }, + { + "ruleCode": "1D7.23.4", + "ruleContent": "Informational Flags (a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course marshals may be able to point out what and where it is located, but do not expect it.) (b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than you are. Be prepared to approach it at a cautious rate.", + "parentRuleCode": "1D7.23", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D8", + "ruleContent": "RULES OF CONDUCT", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.1", + "ruleContent": "Competition Objective – A Reminder The Formula Hybrid + Electric event is a design engineering competition that requires performance demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. It is also recognized that this event is an “engineering educational experience” but that it often times becomes confused with a high stakes race. In the heat of competition, emotions peak and disputes arise. Our officials are trained volunteers and maximum human effort will be made to settle problems in an equitable, professional manner.", + "parentRuleCode": "1D8", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.2", + "ruleContent": "Unsportsmanlike Conduct In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second violation will result in expulsion of the team from the competition.", + "parentRuleCode": "1D8", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.3", + "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a twenty five (25) point penalty. Note: This penalty can be individually applied to all members of a team.", + "parentRuleCode": "1D8", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.4", + "ruleContent": "Arguments with Officials Argument with, or disobedience to, any official may result in the team being eliminated from the competition. All members of the team may be immediately escorted from the grounds.", + "parentRuleCode": "1D8", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.5", + "ruleContent": "Alcohol and Illegal Material Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the competition. This rule will be in effect during the entire competition. Any violation of this rule by a team member will cause the expulsion of the entire team. This applies to both team members and faculty advisors. Any use of drugs, or the use of alcohol by an underage individual, will be reported to the local authorities for prosecution.", + "parentRuleCode": "1D8", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.6", + "ruleContent": "Parties Disruptive parties either on or off-site must be prevented by the Faculty Advisor. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D8", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.7", + "ruleContent": "Trash Clean-up", + "parentRuleCode": "1D8", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.7.1", + "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. The team’s work area should be kept uncluttered. At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock.", + "parentRuleCode": "1D8.7", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.7.2", + "ruleContent": "Teams are required to remove all of their material and trash when leaving the site at the end of the competition. Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs.", + "parentRuleCode": "1D8.7", + "pageNumber": "1" + }, + { + "ruleCode": "1D8.7.3", + "ruleContent": "All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, capped containers and left at the hazardous waste collection building. The track must be notified as soon as the material is deposited by calling the phone number posted on the building. See the map in the registration packet for the building location.", + "parentRuleCode": "1D8.7", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D9", + "ruleContent": "GENERAL RULES", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.1", + "ruleContent": "Dynamometer Usage", + "parentRuleCode": "1D9", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.1.1", + "ruleContent": "If a dynamometer is available, it may be used by any competing team. Vehicles to be dynamometer tested must have passed all parts of technical inspection.", + "parentRuleCode": "1D9.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.1.2", + "ruleContent": "Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer.", + "parentRuleCode": "1D9.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.2", + "ruleContent": "Problem Resolution Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric management team and the decision will be final.", + "parentRuleCode": "1D9", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.3", + "ruleContent": "Forfeit for Non-Appearance It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups for missed appearances.", + "parentRuleCode": "1D9", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.4", + "ruleContent": "Safety Class – Attendance Required An electrical safety class is required for all team members. The time and location will be provided in the team’s registration packet.", + "parentRuleCode": "1D9", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.5", + "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", + "parentRuleCode": "1D9", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.6", + "ruleContent": "Personal Vehicles", + "parentRuleCode": "1D9", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.6.1", + "ruleContent": "Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E competition vehicles will be allowed in the track areas. All vehicles and trailers must be parked behind the white “Fire Lane” lines.", + "parentRuleCode": "1D9.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.6.2", + "ruleContent": "Some self-powered transport such as bicycles and skate boards are permitted, subject to restrictions posted in the event guide", + "parentRuleCode": "1D9.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.6.3", + "ruleContent": "The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D9.6", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.7", + "ruleContent": "Exam Proctoring", + "parentRuleCode": "1D9", + "pageNumber": "1" + }, + { + "ruleCode": "1D9.7.1", + "ruleContent": "Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for students attending the competition. The team Advisor, or designated representative (A6.3.1) attending the competition will be responsible for communicating with college and university officials, administering exams, and ensuring all exam materials are returned to the college and university. Students who need to take exams during the competition may use designated spaces provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to the Officials.", + "parentRuleCode": "1D9.7", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D10", + "ruleContent": "PIT/PADDOCK/GARAGE RULES", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.1", + "ruleContent": "Vehicle Movement", + "parentRuleCode": "1D10", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.1.1", + "ruleContent": "Vehicles may not move under their own power anywhere outside of an officially designated dynamic area.", + "parentRuleCode": "1D10.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.1.2", + "ruleContent": "When being moved outside the dynamic area: (a) The vehicle TSV must be deactivated. (b) The vehicle must be pushed at a normal walking pace by means of a “Push Bar” (D10.2). (c) The vehicle’s steering and braking must be functional. (d) A team member must be sitting in the cockpit and must be able to operate the steering and braking in a normal manner. (e) A team member must be walking beside the car. (f) The team has the option to move the car either with (i) all four (4) wheels on the ground OR (ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that the external wheels supporting the rear of the car are non-pivoting such that the vehicle will travel only where the front wheels are steered.", + "parentRuleCode": "1D10.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.1.3", + "ruleContent": "Cars with wings are required to have two team members walking on either side of the vehicle whenever the vehicle is being pushed. NOTE: During performance events when the excitement is high, it is particularly important that the car be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of twenty-five (25) points will be assessed for each violation.", + "parentRuleCode": "1D10.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.2", + "ruleContent": "Push Bar Each car must have a removable device that attaches to the rear of the car that allows two (2) people, standing erect behind the vehicle, to push the car around the event site. This device must also be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by pulling it rearwards. It must be presented with the car at Technical Inspection.", + "parentRuleCode": "1D10", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.3", + "ruleContent": "Smoking – Prohibited Smoking is prohibited in all competition areas.", + "parentRuleCode": "1D10", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.4", + "ruleContent": "Fueling and Refueling Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and no other activities (including any mechanical or electrical work) are allowed while refueling. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D10", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.5", + "ruleContent": "Energized Vehicles in the Paddock or Garage Area Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the drive wheels must be removed or properly supported clear of the ground.", + "parentRuleCode": "1D10", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.6", + "ruleContent": "Engine Running in the Paddock Engines may be run in the paddock provided: (a) The car has passed all technical inspections. AND (b) The drive wheels are removed or properly supported clear of the ground.", + "parentRuleCode": "1D10", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.7", + "ruleContent": "Safety Glasses Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 meters) of a vehicle that is being worked on.", + "parentRuleCode": "1D10", + "pageNumber": "1" + }, + { + "ruleCode": "1D10.8", + "ruleContent": "Curfews A curfew period may be imposed on working in the garages. Be sure to check the event guide for further information", + "parentRuleCode": "1D10", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D11", + "ruleContent": "DRIVING RULES", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.1", + "ruleContent": "Driving Under Power", + "parentRuleCode": "1D11", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.1.1", + "ruleContent": "Cars may only be driven under power: (a) When running in an event. (b) When on the practice track. (c) During the brake test. (d) During any powered vehicle movement specified and authorized by the organizers.", + "parentRuleCode": "1D11.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.1.2", + "ruleContent": "For all other movements cars must be pushed at a normal walking pace using a push bar.", + "parentRuleCode": "1D11.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.1.3", + "ruleContent": "Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred (200) point penalty for the first violation and expulsion of the team for a second violation.", + "parentRuleCode": "1D11.1", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.2", + "ruleContent": "Driving Off-Site - Prohibited Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location during the period of the competition will be disqualified from the competition.", + "parentRuleCode": "1D11", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.3", + "ruleContent": "Practice Track", + "parentRuleCode": "1D11", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.3.1", + "ruleContent": "A practice track for testing and tuning cars may be available at the discretion of the organizers. The practice area will be controlled and may only be used during the scheduled practice times.", + "parentRuleCode": "1D11.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.3.2", + "ruleContent": "Practice or testing at any location other than the practice track is absolutely forbidden.", + "parentRuleCode": "1D11.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.3.3", + "ruleContent": "Cars using the practice track must have passed all parts of the technical inspection.", + "parentRuleCode": "1D11.3", + "pageNumber": "1" + }, + { + "ruleCode": "1D11.4", + "ruleContent": "Situational Awareness Drivers must maintain a high state of situational awareness at all times and be ready to respond to the track conditions and incidents. Flag signals and hand signals from course marshals and officials must be immediately obeyed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "parentRuleCode": "1D11", + "pageNumber": "1" + }, + { + "ruleCode": "ARTICLE D12", + "ruleContent": "DEFINITIONS DOO - A cone is “Down or Out”—if the cone has been knocked over or the entire base of the cone lies outside the box marked around the cone in its undisturbed position. DNF- Did Not Finish Gate - The path between two cones through which the car must pass. Two cones, one on each side of the course define a gate: Two sequential cones in a slalom define a gate. Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course. Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course. Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about to start. OC - A car is Off Course if it does not pass through a gate in the required direction. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix A Accumulator Rating & Fuel Equivalency Each accumulator device will be assigned an energy rating and fuel equivalency based on the following: Battery capacities are based on nominal (data sheet values). Ultracap capacities are based on the maximum operating voltage (Vpeak) and the effective capacitance in Farads (Nparallel x C / Nseries). Batteries: Energy (Wh) = Vnom x Inom x Total Number of Cells x 80% Capacitors: where V min is assumed to be 10% of V peak. Table 19 - Accumulator Device Energy Calculations Liquid Fuels Wh / Liter 32 Gasoline (Sunoco 33 Optima) 2,343 Table 20 - Fuel Energy Equivalencies Examples: A battery with an energy rating of 3110 Wh has a fuel equivalency of 1.327 liters. If using 89 Maxell MC 2600 ultracaps in series (2600 F/89 = 29.2 F, 2.7 x 89 = 240 V), the fuel equivalency is 231.9 Wh resulting in a 99cc reduction of gasoline. 32 Formula Hybrid + Electric assumes a mechanical efficiency of 27% 33 Full specifications for Sunoco racing fuels may be found at: https://www.sunocoracefuels.com/ 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix B Determination of LapSum(n) Values The parameter LapSum(n) is used in the calculation of the scores for the endurance event. It is a function of the number of laps (n) completed by a team during the endurance event. It is calculated by summing the lap numbers from 1 to (n), the number of laps completed. This gives increasing weight to each additional lap completed during the endurance event. For example: If your team is credited with completing five (5) laps of the endurance event, the value of LapSum(n)your used in compute your endurance score would be the following: LapSum(5) your = 1 + 2 + 3 + 4 + 5 = 15 Number of Laps Completed (n) LapSum(n) Number of Laps Completed (n) LapSum(n) 0 0 23 276 1 1 24 300 2 3 25 325 3 6 26 351 4 10 27 378 5 15 28 406 6 21 29 435 7 28 30 465 8 36 31 496 9 45 32 528 10 55 33 561 11 66 34 595 12 78 35 630 13 91 36 666 14 105 37 703 15 120 38 741 16 136 39 780 17 153 40 820 18 171 41 861 19 190 42 903 20 210 43 946 21 231 44 990 22 253 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Table 21 - Example of LapSum(n) calculation for a 44-lap Endurance event Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event 0 100 200 300 400 500 600 700 800 900 1000 051015202530354045 LapSum(n) Laps Completed LapSum(n) vs. Number of Laps Completed 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix C Formula Hybrid + Electric Project Management Event Scoring Criteria INTRODUCTION The Formula Hybrid + Electric Project Management Event is comprised of three components: Project Plan Report Change Management Report Final Presentation. These components cover the entire life cycle of the Formula Hybrid + Electric Project from design of the vehicle through fabrication and performance verification, culminating in Formula Hybrid + Electric competition at the track. The Project Management Event includes both written reports and an oral presentation, providing project team members the opportunity to develop further their communications skills in the context of a challenging automotive engineering team experience. Design, construction, and performance testing of a hybrid or electric race car are complex activities that require a structured effort to increase the probability of success. The Project Management Event is included in the Formula Hybrid + Electric competition to encourage each team to create this structure specific to their set of circumstances and goals. Comments each team receives from judges relative to their project plan and change management report, offer guidance directed at project execution. Verbal comments made by judges following the presentation component offer suggestions to improve performance in future competitions. In scoring the Project Management Event judges assess (1) if a well-thought-out project plan has been developed, (2) that the plan was executed effectively while addressing challenges encountered and managing change and (3) the significance of lessons learned by team members from this experience and quality of recommendations proposed to improve future team performance. Basic Areas Evaluated Five categories of effort are evaluated across the three components of Formula Hybrid + Electric Project Management, but the scoring criteria differ for each, reflecting the phase of the project life-cycle that is being assessed. The criteria includes: (1) Scope (2) Operations (3) Risk Management (4) Expected Results (5) Change Management. Each is briefly defined below. 1. Scope: A brief introduction of the project documenting what will be accomplished: team goals and objectives beyond simply winning the competition, known as “secondary goals”, major deliverables such as critical sub-systems, innovative designs, or new technologies, and milestones for achieving the goals. Overall, this information is called the Statement of Work. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 2. Operations: How the project team is structured, usually shown with an organizational chart; Work Breakdown Structure, a cascading representation of tasks that will be completed; a project schedule for completing these tasks, usually this is depicted in a Gantt chart that shows the timeline and interdependencies among different activities; also included are the approved budget for the project and plan for obtaining these funds. 3. Risk Management: Arriving at the track with a completed, rules compliant race car increases the probability of full participation in all events during the competition. Even though numerous tasks are involved in the design, build, and test of a hybrid race car, there is a smaller subset of tasks that present a high risk to completing the car on schedule. These are high risk tasks because the team may lack knowledge, experience, or sufficient resources necessary for completing them successfully. However, to achieve the team goals, these tasks must be done. Identify the high risk tasks along with contingency plans for advancing the project forward if they become barriers to progress. 4. Expected Results: In general, project teams are expected to deliver what is defined in the scope statement, on time according to project schedule, and within the budget constraint. Goals and objectives are more specifically defined by “measures of success”, quantified attributes that give numerical targets for each goal. These “measures” are of value throughout project execution for setting priorities and making resource decisions. At project completion, they are used to determine the extent to which the team’s goals and objectives have been accomplished. 5. Change Management: The need for change is a normal occurrence during project execution. Change is good because it refocuses the team when new information is obtained or unexpected challenges are encountered. But if it is not managed correctly change can become a destructive element to the project. Change Management is a process designed by the team for administering project change and managing uncertainty. The process includes built-in controls to ensure that change is managed in a disciplined way, adequately documented and clearly communicated to all team members. SCORING GUIDELINES The guidelines used by judges for scoring the three components of the Project Management Event are given in the following sections: (1) Project Plan Report, (2) Change Management Report, and (3) Project Management Presentation at the competition. 1. Project Plan Report Each Formula Hybrid + Electric team is required to submit a formal Project Plan that reflects team goals and objectives for the upcoming competition, the management structure and tasks that will be completed to accomplish these objectives, and the time schedule over which these tasks will be performed. In addition, the formal process for managing change must be defined. A maximum of fifty-five (55) points is awarded for the Project Plan. Quality of the Written Document: The plan should look and read like a professional document. The flow of information is expected to be logical; the content should be clear and concise. The reader should be able to understand the plan that will be executed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 The Project Plan must consist of at least one (1) page and not exceed three (3) pages of text. Appendices may be attached to the Project Plan and do not count as “pages”, but they must be relevant and referenced in the body of the report. “SMART” Goals Projects are initiated to achieve predetermined goals, which are identified in the Scope statement. The project plan is a “roadmap” for effectively deploying team resources to accomplish these goals. Overall, the requirements of the Project Plan incorporate the basic principles of “SMART” goals. These goals have the following characteristics: ● Specific: Sufficient detail is provided to clearly identify the targeted objectives; goals are specifically stated so that all individual project team members understand what the team must accomplish. ● Measurable: The objectives are quantified so that progress toward the goals can be measured; “measures of success” are defined for this purpose. ● Assignable: The person or group responsible for achieving the goals is identified; each task, milestone, and deliverable has an owner, someone responsible for seeing that each is completed. ● Realistic: The goals can actually be achieved given the resources and time available. Along with realistic goals, a team might define “stretch goals” which are more aggressive objectives that challenge the team. If the “stretch goals” become barriers to progress during project execution, the change management process is used to pull back “stretch goals”, re-focusing the team on more realistic objectives. ● Time-Related: Deadlines are set for achieving each goal, milestone, or deliverable. These deadlines are consistent with the overall project schedule and can be extracted from the project timeline. Characteristics of an Excellent Project Plan Report Submission ● Scope: A brief overview is included covering the team’s past performance and recommendations received from previous teams for improvement. Achievable primary and secondary goals for this year’s team are clearly stated. These goals are more than simply winning the competition. Milestones, with due dates, and major deliverables that support accomplishing the goals are listed. ● Operations: An organizational chart showing the structure of the team and Work Breakdown Structure showing the cascading linkage of tasks comprising the project are included. The timeframe and interdependencies of each task are shown in a Gantt chart timeline. The project budget is specified and a brief overview of how these funds will be obtained is given. ● Risk Management: Careful thought is demonstrated to understand the weakest areas of the project plan. Several “High Risk” tasks are identified that might have a significant impact on a functional car being produced on time. A contingency plan is described to mitigate these risks if they become barriers during project execution. ● Expected Results: All teams are expected to complete the project on schedule, within budget, and to deliver a functional, rules complaint race car to the track. But each team has a set of primary and secondary goals specific to its project plan. Additional depth is given to these goals by quantifying them, defining measurable targets helpful for directing team efforts. At least two “measures of success” are defined that are related to the team’s specific performance goals. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 ● Change Management: A process for administering changes has been carefully thought-out; it is briefly described and shown schematically in terms of: (1) what triggers the process, (2) how information flows through the process, (3) how decision making is handled, and (4) how changes are communicated to the team. A process flow diagram may be included in the Appendix to save space, however is referenced in the body of the report. At a minimum, the diagram shows the “trigger”, information flow, decision making tasks and responsibilities, and communication tasks. The diagram is specific to and created by the team. There are sufficient controls in place to prevent un-managed changes. The team has an effective communication plan in place to keep all team members informed throughout project duration. Applying the Project Plan Report Scoring Guidelines The guidelines for awarding points in each Project Plan Report category are given in Figure 46. Four performance designations are also specified: Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation to give reviewers flexibility in evaluating the quality and completeness of the submitted plans. While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 46 - Scoring Guidelines: Project Plan Component 34 34 This score sheet is available on the Formula Hybrid+Electric website in the Project Management Resources folder. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 2. Change Management Report The purpose of the Change Management Report is to give each judge a sense of the team’s ability to deal with issues that will put the project schedule at risk. Frequently, as the project progresses or as problems arise, changes may be required to vehicle specifications or the plan for completing the project. This is an area that many teams find difficult to manage. Of particular interest to judges are barriers encountered and creative actions taken by the team to overcome these challenges and advance the project forward. The Change Management Report is a maximum two (2) page summary, clearly communicating the documented changes to the project scope and plan that have been approved using the change management process. Appendices may be included with supporting information; they do not have a page limit but the content is expected to be supportive of the information covered in the main body of the report. A maximum of forty (40) points is awarded for the Change Management Report. The content of the report is evaluated in three broad areas: (1) Explanation of the Change Management Process (2) Example of the Implementation of the Change Management Process, and (3) Evaluation of the Effectiveness and Areas of Improvement for the Change Management Process. Additionally, a final area evaluated is the quality of the overall report document. Characteristics of an Excellent Change Management Report Submission ● Change Management Process: In the body of the report, the team provides a thorough and clear explanation of their Change Management Process, including the following characteristics: • What triggers/initiates the process? • How does information flow through the process? • How are decisions made, and who makes those decisions? • How are final decisions communicated to the team? • Process flow diagram (see below) ● A process flow diagram may be included in the Appendix to save space; however, it is referenced in the body of the report. At a minimum, the diagram shows the “trigger”, information flow, decision making tasks and responsibilities, and communication tasks. The diagram is specific to and created by the team. ● Implementation of the Change Management Process: In the body of the report, the team provides a single thorough and clear example of the implementation of the Change Management Process. The example provided addresses all stages of the process from start to finish, including the overall impact to the project. ● Effectiveness of and Improvements to the Change Management Process: In the body of the report, the team provides their own assessment of the effectiveness of their Change Management Process, primarily based upon the example provided. This includes the effectiveness of each stage of the process (trigger, information flow, decision making, and communication) as well as an overall assessment. Based on their assessment, the team provides two areas of opportunity to improve the Change Management Process, including what stage of the process is impacted and why this change is being made. The team addresses plans for what the team must do to make the proposed changes, timing of changes, and a definition of how to measure the effectiveness of the changes for the following year. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 ● Proper Use of Appendix: While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. Applying the Change Management Scoring Guidelines The guidelines for awarding points in each Change Management Report evaluation category are given in Figure 47. Similar to the Project Plan guidelines, four performance designations are specified: Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation to give reviewers flexibility in weighing quality and completeness of information for each category. Figure 47: Change Management Report Scoring Guidelines 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. 3. Project Management Presentation at the Competition The Presentation component gives teams the opportunity to briefly explain their project plans, assess how well their project management process worked, and identify recommendations for improving their team’s project management process in the future. In addition, the Presentation component enables team leaders to enhance their communication skills in presenting a complex topic clearly and concisely. The Presentation component is the culmination of the project management experience, which included submission by each team of a project plan and change management report. Scoring of each presentation is based on how well project management practices were used by the team in the planning, execution, and change management aspects of the project. Of particular interest are innovative approaches used by each team in dealing with challenges and how lessons learned from the current competition will be used to foster continuous improvement in the design, development, and testing of their cars for future competitions. Project Management presentations are made on the Static Events Day during the competition. Each presentation is limited to a maximum of twelve (12) minutes. An eight (8) minute question and answer period will follow along with a feedback discussion with judges lasting no longer than five (5) minutes. This format will give each team an opportunity to critique their project management performance, clarify major points, and have a discussion with judges on areas that can be improved or strengths that can be built upon for next year’s competition. Only the team members present who are introduced at the start of the presentation will be allowed to speak and/or respond to questions and comments. Scoring the Project Management Presentation In awarding points, each judge must determine if the team demonstrated an understanding of project management, if the described accomplishments are credible, and if the approaches used to manage the project were effective. These judgements are formed after listening to each presentation and probing the teams for clarity and additional details during the questioning period afterward. Presentation quality and communications skills of team members are extremely important for establishing a positive impression. A chart summarizing the evaluation criteria for the Presentation component is given in Figure 48 – Evaluation Criteria. This provides more detailed guidelines used by the judging review team for evaluating each project management presentation. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 48 – Evaluation Criteria Characteristics on an Excellent Project Management Presentation ● Scope: The primary and secondary goals defined in the project plan are addressed; the degree to which each has been accomplished is explained. Where applicable, the “Measures of Success” are used to support the stated level of accomplishment. If the original goals have been changed, the reasons for modification are explained. ● Operations: Was this project a success? This conclusion is supported by Team performance against the budget, project schedule, and deliverables produced. The effectiveness of the team’s structure is explained. If the operation was disorderly or inefficient during project execution, an overview of corrective actions taken to fix the problem is given. ● Risk Management: The team’s success to correctly anticipate risk in the original project plan and effectiveness of the risk mitigation plan are described. An overview of unanticipated risks that were encountered during project execution and approaches to overcome these barriers are explained. ● Change Management: A need for change occurs naturally in almost every project; it is anticipated that every Formula Hybrid + Electric team will have experienced some type of change during project execution. Change management strives to align the efforts of all team members working in the dynamic project environment. The effectiveness of the overall change management process in dealing with needed modifications is described. This is supported with 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 statistics on the number of changes approved and rejected. The effectiveness of the team’s communication methods, both written and verbal, is explained. Areas of opportunity for improvement to the change management process are briefly described as well as their status of implementation for next year. ● Lessons Learned: When a project is completed, the team should conduct an assessment of overall performance to determine what worked well and what failed. The strengths and weaknesses of the team are described. This evaluation is used to propose recommendations for improving the performance of next year’s team. Also, a plan for conveying this information to the new leadership team is described. A leadership succession plan is briefly described. ● “SMART” Goals: Team’s demonstrated understanding and application of “SMART” goals. ● Communications Skills: The team establishes credibility by demonstrating that it has taken the time necessary to carefully plan and create the presentation. The presentation is well organized, content is relevant to the purpose of the presentation. Charts have a professional appearance and are informative. Without the speaker rushing through the material, a large amount of information is conveyed within the allowed time limit. Tables, diagrams, and graphs are used effectively. Team members demonstrate mutual accountability with shared responses to questions. Answers are conveyed in a manner that instills confidence in the team’s ability to plan and execute a complex project like Formula Hybrid + Electric. Figure 49 - Project Management Scoring Sheet 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix D Design Judging Form 35 35 This form is for informational use only – the actual form used may differ. Check the Formula Hybrid + Electric website prior to the competition for the latest Design judging form. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix E Wire Current Capacity (DC) Wire Gauge Copper AWG Conductor Area mm 2 Max. Continuous Fuse Rating (A) Standard Metric Wire Size mm 2 Max. Continuous Fuse Rating (A) 24 0.20 5 0.50 10 22 0.33 7 0.75 12.5 20 0.52 10 1.0 15 18 0.82 14 1.5 20 16 1.31 20 2.5 30 14 2.08 28 4.0 40 12 3.31 40 6.0 60 10 5.26 55 10 90 8 8.37 80 16 130 6 13.3 105 25 150 4 21.2 140 35 200 3 26.7 165 50 250 2 33.6 190 70 300 1 42.4 220 95 375 0 53.5 260 120 425 2/0 67.4 300 150 500 3/0 85.0 350 185 550 4/0 107 405 240 650 250 MCM 127 455 300 800 300 MCM 152 505 350 MCM 177 570 400 MCM 203 615 500 MCM 253 700 Table 22 – Wire Current Capacity (single conductor in air) Reference: US National Electrical Code Table 400.5(A)(2), 90C Column D1 (Copper wire only) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix F Required Equipment □ Fire Extinguishers Minimum Requirements Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers Extinguishers of larger capacity (higher numerical ratings) are acceptable. All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows “FULL”. Special Requirements Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb. or equivalent) of the required type must be procured and accompany the car at all times. As recommendations vary, teams are advised to consult the rules committee before purchasing expensive extinguishers that may not be necessary. □ Chemical Spill Absorbent Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must be presented at technical inspection. □ Insulated Gloves Insulated gloves, rated for at least the voltage in the TS system, with protective over-gloves. Electrical gloves require testing by a qualified company. The testing is valid for 14 months after the date of the test. All gloves must have the test date printed on them. □ Safety Glasses Safety glasses must be worn as specified in section D10.7 □ Additional Any special safety equipment required for dealing with accumulator mishaps, for example correct gloves recommended for handling any electrolyte material in the accumulator. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix G Example Relay Latch Circuits The diagrams below are examples of relay-based latch circuits that can be used to latch the momentary output of the Bender IMD (either high-true or low-true) such that it will comply with Formula Hybrid + Electric rule EV7.1. Circuits such as these can also be used to latch AMS faults in accordance with EV2.1.3. It is highly recommended that IMD and AMS latching circuits be separate and independent to aid fault identification during the event. Note: It is important to confirm by checking the data sheets, that the output pin of the IMD can power the relay directly. If not, an amplification device will be required 36 . Figure 50 - Latching for Active-High output Figure 51 - Latching for Active-Low output 36 An example relay is the Omron LY3-DC12: http://www.ia.omron.com/product/item/6403/ 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix H Firewall Equivalency Test To demonstrate equivalence to the aluminum sheet specified in rule T4.5.2, teams should submit a video, showing a torch test of their proposed firewall material. Camera angle, etc. should be similar to the video found here: https://www.youtube.com/watch?v=Qw6kzG97ZtY A propane plumber’s torch should be held at a distance from the test piece such that the hottest part of the flame (the tip of the inner cone) is just touching the test piece. The video must show two sequential tests and be contiguous and unedited (except for trimming the irrelevant leading and trailing portions). The first part of the video should show the torch applied to a piece of Aluminum of the thickness called for in T4.5.2, and held long enough to burn through the aluminum. The torch should then be moved directly to a similarly sized test piece of the proposed material without changing any settings, and held for at least as long as the burn-through time for the Aluminum. There must be no penetration of the test piece. The equivalent firewall construction must have similar mechanical strength to the aluminum barrier called for in T4.5.2. This can be demonstrated by equivalent resistance to deformation or puncturing. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix I Virtual Racing Challenge The Virtual Racing Challenge will be held in 2025. END", + "pageNumber": "1" + } + ], + "totalRules": 918, + "generatedAt": "2025-10-15T02:43:48.719Z" +} \ No newline at end of file diff --git a/scripts/document-parser/txtVersions/FHE.txt b/scripts/document-parser/txtVersions/FHE.txt index 7d5c622a1a..6f8e2872f7 100644 --- a/scripts/document-parser/txtVersions/FHE.txt +++ b/scripts/document-parser/txtVersions/FHE.txt @@ -1,3959 +1,7425 @@ - - - - - - - - - - - -2025 -Formula Hybrid + Electric Rules Version 3 -January 19, 2025 - - - - - - - - - -(c) 2019 SAE International and the Trustees of Dartmouth College - -Formula Hybrid + Electric Rules Committee - - -Formula Hybrid + Electric gratefully acknowledges the contributions of the following people, who have donated countless hours and immeasurable effort into making the Formula Hybrid + Electric competition a stellar, multidisciplinary learning experience, while keeping the competition as safe as possible. - - -Michael Chapman, Director, Formula Hybrid + Electric ** -Douglas Fraser, P.E., Director Emeritus, Formula Hybrid + Electric* Gary Grise, IEEE** -Kathy Grise, IEEE** -Missy Chmielowiec, General Motors (Chief Project Management Judge)** Paul Messier, BAE Systems* -Tremont Miao, Analog Devices, Inc., Retired (Electrical Tech Examiner)* Michael Royce, Albion Associates (Chief Technical Examiner) -Prof. Charles R. Sullivan, Thayer School of Engineering, Dartmouth College* Jalyn Kelley, IEEE -Prof. Douglas W. Van Citters, Thayer School of Engineering (Chief Mechanical Tech Inspector) Rob Wills, P.E., Intergrid, LLC* (Chief Electrical Tech Inspector and Electrical Rules Chair) Kendra Bogren-Brock, BAE Systems (Chief Design Judge) -Kaley Zundel, SAE -Andrew Benagh, New England Region SCCA Wiley Cox, New England Region SCCA Jalyn Kelly, IEEE -Jennifer Smith, Keurig Dr. Pepper ** - -*Members of the Electrical Rules subcommittee. -** Members of the Project Management subcommittee - -RULES CHANGES FOR 2025 - - -The following is a list of noteworthy changes from the 2024 Formula Hybrid + Electric rules. It is not complete and is not binding. If there are any differences between this summary and the official rules, the rules will prevail. Therefore, it is the responsibility of the competitors to read the published Rules thoroughly. - - -Rule Number Section Change - -T3.8.8 SES Approval dates Dates updated -T15.1.3 Fire extinguishers Gauge must show "FULL" -S3.2.1 Design Report Increased the page limit from 9 to 10 -S3.3 Sustainability Requirement Change to make requirements more constrained -S3.6 Excess Size Design Reports Typo -S3.6 Excess Size Design Reports Increased the page limit from 9 to 10 -S3.11 Judging Criteria Typo -S3.13 Scoring Formula Reference to the "Lead Design Judge" -D7.5.2 Accumulator Charge Clarification (added "approved") -D7.5.3 Accumulator Charge Clarification (changed "outside" to "off-board") -Appendix C Project Management Presentation Added text about who can speak -Appendix C Figure 46 Scoring updated -Appendix C Figure 48 - Evaluation criteria Replaced with version that matches scorecard -Appendix C Characteristics on an excellent PM Added "SMART' goals text -Appendix C Figure 49 New scoresheet -Appendix D Design Judging Form Updated scoring rubric and redesigned the form -Appendix F Fire extinguishers Gauge must show "FULL" -Appendix I Virtual Racing Challenge Removed for 2025 - Electrical Rules Updates A1.2.4 Segment Energy Reference to Table 8 added -EV2.3.4 Accumulator Container Typo (changed "TSVP" to "TSV") -EV2.8.3 Accumulator - Isolation Relays Changed to "60 VDC (or 42 VAC RMS)" -EV2.10.4 Discharge Current Clarification (added "expected") -EV4.1.4 GLV & Carbon Frame New Requirement -EV4.1.7 GLV Battery Pack Allowing team-constructed battery pack -EV7.9.2 Insulation Monitoring Device Change in IMD requirements EV7.9.2 Insulation Monitoring Device (IMD) Added Bender "Iso175C-32-SS" EV7.9.8 IMD high voltage sense connections Fixed broken link -EV9.3.2 Electrical Systems OK Lamps(ESOK) Typo ("SSOK" changed to "ESOK") EV9.5.1 Accumulator Voltage Indicator Changed "30 VDC" to "60 VDC" PART EV - EV10.4.1 AMS Test Typo (changed ("three" to "two") PART EV - EV10.4.1 AMS Test - point 2 Clarification -EV12.2.6 Charger Inspection Chargers must be reviewed -EV12.2.15 Charging External Charger Safety -PART EV - ARTICLE EV14 Acronyms SSOK changed to ESOK - -Table 8 Voltage and Energy Limits Changes to maximum GLV -Figure 37CAN watchdog Added CAN watchdog failure Figure 37Acronym SSOK changed to ESOK (see EV14) Figure 37Shutdown Sources Fixed typo ("coclpit" to "cockpit") Figure 37Shutdown Sources Far right row corrected to all "yes" EV9.3.3. Shutdown Sources Section Removed - - -Advice from Our Rules Committee -Formula Hybrid + Electric's Rules Committee welcomes you to the most challenging of the SAE Collegiate Design Series competitions. Many of us are former Formula Hybrid + Electric competitors who are now professionals in the engineering industry. We have two goals: to have a safe competition and to see every team on the track. - - -Top 10 Tips for Building a Formula Hybrid + Electric Racecar and Passing Tech Inspection - -Start work early. Everything takes longer than you expect. -Consider starting from an existing FSAE chassis and concentrating on the powertrain. Read all rules carefully. If you don't understand something, ask us for clarification. -Use the Project Management techniques and tools. They will make life easier-and will help you as engineers. Most importantly, they will help you arrive at the competition with a finished car. -Take advantage of our Mentor Program. These experts will help you solve issues-and will be valuable career contacts. -Your car should be running on its own power at least a month prior to competition. Make brake testing an early priority. -Take advantage of the extra day of electrical tech inspection on Sunday. That will give you extra time if -you need to make modifications. This is also a good time to have your documentation reviewed. -Watch out for the rules tagged with the "attention" symbol. These rules have a history of tripping up teams. - -Index -RULES CHANGES FOR 2025 III -PART A - ADMINISTRATIVE REGULATIONS 1 -ARTICLE A1 1 -A1.1 1 A1.2 1 A1.3 2 A1.4 2 A1.5 2 ARTICLE A2 3 A2.1 3 A2.2 3 A2.3 3 A2.4 4 A2.5 4 ARTICLE A3 4 A3.1 4 A3.2 4 A3.3 4 ARTICLE A4 5 A4.1 5 A4.2 5 A4.3 5 A4.4 5 A4.5 5 A4.6 5 A4.7 5 A4.8 6 ARTICLE A5 6 A5.2 6 A5.3 6 INDIVIDUAL PARTICIPATION REQUIREMENTS 7 -A5.4 7 A5.5 7 A5.6 7 A5.7 7 A5.8 7 A5.9 8 A5.10 8 A5.11 8 ARTICLE A6 8 A6.1 8 -A6.2 8 A6.3 9 A6.4 9 ARTICLE A7 10 A7.1 10 A7.2 10 A7.3 10 A7.4 10 A7.5 10 A7.6 11 ARTICLE A8 -A8.1 -11 11 A8.2 11 A8.3 11 ARTICLE A9 -A9.1 -11 11 A9.2 12 A9.3 12 A9.4 13 ARTICLE A10 15 -ARTICLE A11 15 -A11.1 15 -A11.2 15 -A11.3 15 -A11.4 15 -A11.5 16 -A11.6 16 -ARTICLE A12 16 -A12.1 16 -A12.2 16 -A12.3 16 -A12.4 16 -A12.5 17 -A12.6 17 -PART T - GENERAL TECHNICAL REQUIREMENTS 18 -ARTICLE T1 18 -T1.1 18 T1.2 18 ARTICLE T2 19 T2.1 19 T2.2 19 T2.3 20 T2.4 20 -T2.5 -ARTICLE T3 20 -20 T3.1 20 T3.2 20 T3.3 21 T3.4 23 T3.5 23 T3.6 24 T3.7 24 T3.8 24 T3.9 25 T3.10 28 T3.11 28 T3.12 29 T3.13 30 T3.14 30 T3.15 30 T3.16 30 T3.17 32 T3.18 32 T3.19 32 T3.20 32 T3.21 34 T3.22 35 T3.23 35 T3.24 36 T3.25 37 T3.26 37 T3.27 37 T3.28 37 T3.29 38 T3.30 38 T3.31 39 T3.32 39 T3.33 39 T3.34 40 T3.35 40 T3.36 40 T3.37 40 T3.38 40 T3.39 41 T3.40 41 ARTICLE T4 42 T4.1 42 T4.2 43 T4.3 44 -T4.4 44 T4.5 44 T4.6 46 T4.7 46 T4.8 47 T4.9 47 ARTICLE T5 47 T5.1 47 T5.2 48 T5.3 49 T5.4 50 T5.5 51 T5.6 53 T5.7 54 T5.8 54 ARTICLE T6 54 T6.1 54 T6.2 54 T6.3 54 T6.4 54 T6.5 55 T6.6 56 T6.7 56 ARTICLE T7 -T7.1 -56 56 T7.2 57 T7.3 57 T7.4 58 ARTICLE T8 -T8.1 -58 58 T8.2 59 T8.3 59 T8.4 59 T8.5 60 ARTICLE T9 61 T9.1 61 T9.2 61 T9.3 61 T9.4 61 T9.5 61 T9.6 61 ARTICLE T10 -T10.1 61 61 T10.2 62 -ARTICLE T11 62 -T11.1 62 -T11.2 63 - -ARTICLE T12 64 T12.1 64 T12.2 64 ARTICLE T13 65 T13.1 65 T13.2 65 T13.3 66 T13.4 66 ARTICLE T14 66 T14.1 66 T14.2 66 T14.3 66 T14.4 66 T14.5 67 T14.6 68 T14.7 68 T14.8 68 T14.9 68 T14.10 68 T14.11 68 T14.12 68 T14.13 68 ARTICLE T15 68 T15.1 68 T15.2 69 T15.3 69 T15.4 69 T15.5 69 T15.6 69 T15.7 69 ARTICLE T16 69 T16.1 69 -PART IC - INTERNAL COMBUSTION ENGINE 69 -ARTICLE IC1 70 -IC1.1 70 -IC1.2 70 -IC1.3 70 -IC1.4 71 -IC1.5 71 -IC1.6 72 - -IC1.7 73 -IC1.8 73 -IC1.9 73 -IC1.10 74 -IC1.11 74 -ARTICLE IC2 74 -IC2.1 74 -IC2.2 75 -IC2.3 75 -IC2.4 75 -IC2.5 75 -IC2.6 75 -IC2.7 76 -IC2.8 76 -ARTICLE IC3 76 -IC3.1 76 -IC3.2 77 -IC3.3 77 -IC3.4 77 -PART EV - ELECTRICAL POWERTRAINS AND SYSTEMS 78 -ARTICLE EV1 78 -EV1.1 78 -EV1.2 79 -ARTICLE EV2 80 -EV2.1 80 EV2.2 80 EV2.3 80 EV2.4 81 EV2.5 82 EV2.6 82 EV2.7 84 EV2.8 85 EV2.9 86 EV2.10 87 EV2.11 88 EV2.12 90 ARTICLE EV3 92 EV3.1 92 EV3.2 93 EV3.3 94 EV3.4 95 EV3.5 96 EV3.6 97 -ARTICLE EV4 98 EV4.1 98 ARTICLE EV5 99 EV5.1 99 EV5.2 99 EV5.3 99 -EV5.4 100 EV5.5 101 ARTICLE EV6 103 ARTICLE EV7 104 EV7.1 104 -EV7.2 106 EV7.3 107 EV7.4 107 EV7.5 108 -EV7.6 108 EV7.7 109 EV7.8 109 EV7.9 110 ARTICLE EV8 -EV8.1 112 112 ARTICLE EV9 113 EV9.1 113 EV9.2 113 -EV9.3 114 EV9.4 114 EV9.5 114 EV9.6 115 ARTICLE EV10 -EV10.1 116 116 EV10.2 116 EV10.3 116 EV10.4 118 -EV10.5 118 ARTICLE EV11 120 EV11.1 120 EV11.2 120 ARTICLE EV12 -EV12.1 121 121 EV12.2 121 EV12.3 122 EV12.4 122 ARTICLE EV13 124 EV13.1 124 -EV13.2 124 -ARTICLE EV14 -125 PART S - STATIC EVENTS 126 ARTICLE S1 -S1.1 127 127 S1.2 127 S1.3 127 S1.4 127 S1.5 128 -S1.6 128 ARTICLE S2 129 S2.1 129 S2.2 129 -S2.3 129 S2.4 130 S2.5 131 S2.6 131 S2.7 131 -S2.8 132 S2.9 132 S2.10 132 ARTICLE S3 -S3.1 133 133 S3.2 133 S3.3 134 S3.4 134 S3.5 134 -S3.6 135 S3.7 135 S3.8 135 S3.9 135 -S3.10 135 S3.11 135 S3.12 135 S3.13 136 S3.14 136 -PART D - DYNAMIC EVENTS 137 -ARTICLE D1 137 -D1.1 137 D1.2 137 D1.3 137 D1.4 137 -ARTICLE D2 138 -ARTICLE D3 138 -D3.1 138 D3.2 138 D3.3 138 D3.4 138 D3.5 138 D3.6 138 D3.7 138 D3.8 138 ARTICLE -D4.1 D4 -140 140 ARTICLE D5 140 D5.1 140 D5.2 140 D5.4 140 D5.5 141 D5.6 141 D5.7 141 D5.8 141 D5.9 141 ARTICLE D6 141 D6.1 141 D6.2 142 D6.3 142 D6.4 142 D6.5 143 D6.6 143 D6.7 143 ARTICLE D7 143 D7.1 143 D7.2 143 D7.3 144 D7.4 144 D7.5 144 D7.6 144 D7.7 145 D7.8 145 D7.9 145 D7.10 145 D7.11 145 D7.12 145 D7.13 146 D7.14 147 D7.15 147 -D7.16 147 -D7.17 147 -D7.18 149 -D7.19 150 -D7.20 150 -D7.21 150 -D7.22 150 -D7.23 150 - -ARTICLE D8 152 D8.1 152 D8.2 152 D8.3 152 D8.4 152 D8.5 152 D8.6 152 D8.7 153 ARTICLE D9 153 D9.1 153 D9.2 153 D9.3 153 D9.4 153 D9.5 153 D9.6 153 D9.7 154 ARTICLE D10 154 D10.1 154 D10.2 154 D10.3 154 D10.4 154 -D10.5 155 D10.6 155 D10.7 155 D10.8 155 ARTICLE D11 155 D11.1 155 D11.2 155 D11.3 155 D11.4 155 ARTICLE D12 156 APPENDIX A 157 APPENDIX B 158 APPENDIX C 160 APPENDIX D 170 -APPENDIX E 171 -APPENDIX F 172 -APPENDIX G 173 -APPENDIX H 174 -APPENDIX I 175 - -Index of Figures -FIGURE 1 - FORMULA HYBRID + ELECTRIC SUPPORT PAGE 16 -FIGURE 2 - OPEN WHEEL DEFINITION 19 -FIGURE 3 - TRIANGULATION 21 -FIGURES FROM TOP: 4A, 4B, AND 4C- ROLL HOOPS AND HELMET CLEARANCE 26 -FIGURE 5 - PERCY -- 95TH PERCENTILE MALE WITH HELMET 26 -FIGURE 6 - 95TH PERCENTILE TEMPLATE POSITIONING 27 -FIGURE 7 - MAIN AND FRONT HOOP BRACING 29 -FIGURE 8 - DOUBLE-LUG JOINT 30 -FIGURE 9 - DOUBLE LUG JOINT 30 -FIGURE 10 - SLEEVED BUTT JOINT 30 -FIGURE 11 - SIDE IMPACT STRUCTURE 35 -FIGURE 12 - SIDE IMPACT ZONE DEFINITION FOR A MONOCOQUE 39 -FIGURE 13 - ALTERNATE SINGLE BOLT ATTACHMENT 40 -FIGURE 14 - COCKPIT OPENING TEMPLATE 41 -FIGURE 15 - COCKPIT INTERNAL CROSS SECTION TEMPLATE 42 -FIGURE 16 - EXAMPLES OF FIREWALL CONFIGURATIONS 45 -FIGURE 17 - SEAT BELT THREADING EXAMPLES 48 -FIGURE 18 - LAP BELT ANGLES WITH UPRIGHT DRIVER 49 -FIGURE 19 - SHOULDER HARNESS MOUNTING - TOP VIEW 50 -FIGURE 20 - SHOULDER HARNESS MOUNTING - SIDE VIEW 50 -FIGURE 21 - OVER-TRAVEL SWITCHES 57 -FIGURE 22 - FINAL DRIVE SCATTER SHIELD EXAMPLE 59 -FIGURE 23 - EXAMPLES OF POSITIVE LOCKING NUTS 62 -FIGURE 24 - EXAMPLE CAR NUMBER 64 -FIGURE 25- SURFACE ENVELOPE 70 -FIGURE 26 - HOSE CLAMPS 73 -FIGURE 27 - FILLER NECK 75 -FIGURE 28 - ACCUMULATOR STICKER 80 -FIGURE 29 - EXAMPLE NP3S CONFIGURATION 83 -FIGURE 30 - EXAMPLE 5S4P CONFIGURATION 84 -FIGURE 31 - EXAMPLE ACCUMULATOR SEGMENTING 86 -FIGURE 32 - VIRTUAL ACCUMULATOR EXAMPLE 91 -FIGURE 33 - FINGER PROBE 92 -FIGURE 34 - HIGH VOLTAGE LABEL 92 -FIGURE 35 - CONNECTION STACK-UP 95 -FIGURE 36 - CREEPAGE DISTANCE EXAMPLE 101 -FIGURE 37 - PRIORITY OF SHUTDOWN SOURCES 104 -FIGURE 38 - EXAMPLE MASTER SWITCH AND SHUTDOWN CIRCUIT CONFIGURATION 106 -FIGURE 39 - TYPICAL MASTER SWITCH 107 -FIGURE 40 - INTERNATIONAL KILL SWITCH SYMBOL 108 -FIGURE 41 - EXAMPLE SHUTDOWN STATE DIAGRAM 110 -FIGURE 42 - TYPICAL ESOK LAMP 114 - -FIGURE 43 - INSULATION MONITORING DEVICE TEST -FIGURE 44 118 116 FIGURE 45 - PLOT OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 159 FIGURE 46 - SCORING GUIDELINES: PROJECT PLAN COMPONENT 164 FIGURE 47: CHANGE MANAGEMENT REPORT SCORING GUIDELINES 166 FIGURE 48 - EVALUATION CRITERIA 168 FIGURE 49 - PROJECT MANAGEMENT SCORING SHEET 169 FIGURE 50 - LATCHING FOR ACTIVE-HIGH OUTPUT FIGURE 51 - LATCHING FOR ACTIVE-LOW OUTPUT 173 Index of Tables TABLE 1 - 2024 ENERGY AND ACCUMULATOR LIMITS 1 TABLE 2 - EVENT POINTS 2 TABLE 3 - REQUIRED DOCUMENTS 12 TABLE 4 - BASELINE STEEL 22 TABLE 5 - STEEL TUBING MINIMUM WALL THICKNESSES 23 TABLE 6 - 95TH PERCENTILE MALE TEMPLATE DIMENSIONS 25 TABLE 7 - SFI / FIA STANDARDS LOGOS 66 TABLE 8 - VOLTAGE AND ENERGY LIMITS 79 TABLE 9 - AMS VOLTAGE MONITORING 89 TABLE 10 - AMS TEMPERATURE MONITORING 89 TABLE 11 - RECOMMENDED TS CONNECTION FASTENERS 96 TABLE 12 - MINIMUM SPACINGS 100 TABLE 13 - INSULATING MATERIAL - MINIMUM TEMPERATURES AND THICKNESSES 100 TABLE 14 - PCB TS/GLV SPACINGS 102 TABLE 15 - STATIC EVENT MAXIMUM SCORES 126 TABLE 16 - PROJECT MANAGEMENT SCORING 129 TABLE 17 - DYNAMIC EVENT MAXIMUM SCORES 137 TABLE 18 - FLAGS 151 TABLE 19 - ACCUMULATOR DEVICE ENERGY CALCULATIONS 157 TABLE 20 - FUEL ENERGY EQUIVALENCIES 157 TABLE 21 - EXAMPLE OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 158 TABLE 22 - WIRE CURRENT CAPACITY (SINGLE CONDUCTOR IN AIR) 171 -PART A1 - ADMINISTRATIVE REGULATIONS - -ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW AND COMPETITION - -1A1.1 Formula Hybrid + Electric Competition Objective -1A1.1.1 The Formula Hybrid + Electric competition challenges teams of university undergraduate and graduate students to conceive, design, fabricate, develop and compete with small, formula- style, hybrid-powered and electric cars. -1A1.1.2 The Formula Hybrid + Electric competition is intended as an educational program requiring students to work across disciplinary boundaries, such as those of electrical and mechanical engineering. -1A1.1.3 To give teams the maximum design flexibility and the freedom to express their creativity and imagination there are very few restrictions on the overall vehicle design apart from the requirement for a mechanical/electrical hybrid or electric-only drivetrain. -1A1.1.4 Teams typically spend eight to twelve months designing, building, testing and preparing their vehicles before a competition. The competitions themselves give teams the chance to demonstrate and prove both their creativity and their engineering skills in comparison to teams from other universities around the world. -1A1.2 Energy Limits -1A1.2.1 Competitiveness and high efficiency designs are encouraged through limits on accumulator capacities and the amount of energy that a team has available to complete the endurance event. -1A1.2.2 The accumulator capacities and endurance energy allocation will be reviewed by the Formula Hybrid + Electric rules committee each year, and posted as early in the season as possible. - - -Hybrid (and Hybrid In Progress) Endurance Energy Allocation 31.25 MJ Maximum Accumulator Capacity 4,449 Wh Electric Maximum Accumulator Capacity 5,400 Wh -Table 1 - 2024 Energy and Accumulator Limits - - -1A1.2.3 Vehicles may run with accumulator capacities greater than the Table 1 value if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted. See also D7.5.1- Energy for Endurance Event. -1A1.2.4 Accumulator capacities are calculated as: -Energy (Wh) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 80% -Segment Energy (Table 8) is calculated as -Energy (MJ) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 0.0036. -See Appendix A for energy calculations for capacitors. - -1A1.3 Vehicle Design Objectives -For the purpose of this competition, the students are to assume that a manufacturing firm has engaged them to design, fabricate and demonstrate a prototype hybrid-electric or all electric vehicle for evaluation as a production item. The intended market is the nonprofessional weekend autocross competitor. Therefore, the car must balance exceptional performance with fuel efficiency. -Performance will be evaluated in terms of its acceleration, braking, and handling qualities. Fuel efficiency will be evaluated during the 44 km endurance event. The car must be easy to maintain and reliable. It should accommodate drivers whose stature varies from a 5th percentile female to a 95th percentile male. In addition, the car's marketability is enhanced by other factors such as aesthetics, comfort and use of common parts. The manufacturing firm is planning to produce four (4) cars per day for a limited production run. The challenge to the design team is to develop a prototype car that best meets these goals and intents. Each design will be compared and judged with other competing designs to determine the best overall car. -1A1.4 Good Engineering Practices -1A1.4.1 Vehicles entered into Formula Hybrid + Electric competitions are expected to be designed and fabricated in accordance with good engineering practices. -Note in particular, that the high-voltage electrical systems in a Formula Hybrid + Electric car present health and safety risks unique to a hybrid/electric vehicle, and that carelessness or poor engineering can result in serious injury or death. -1A1.4.2 The organizers have produced several advisory publications that are available on the Formula Hybrid + Electric website. It is expected that all team members will familiarize themselves with these publications, and will apply the information in them appropriately. -1A1.5 Judging Categories -The cars are judged in a series of static and dynamic events including: technical inspections, project management skills, engineering design, solo performance trials, and high-performance track endurance. These events are scored to determine how well the car performs. - - -Static Events Project Management 150 Engineering Design 200 Virtual Racing Challenge1 0 Dynamic Events Acceleration 100 Autocross 200 Endurance 350 Total Points 1000 -Table 2 - Event Points - - - - - -1 Virtual Racing Challenge will be awarded trophies without points going towards the Event Points - -1A1.5.1 A team's final score will equal the sum of their event scores plus or minus penalty and/or bonus points. -Note: If a team's penalty points exceed the sum of their event scores, their final score will be Zero (0). -i.e. negative final scores will not be given. - -ARTICLE A2 FORMULA HYBRID + ELECTRIC VEHICLE CATEGORIES - -1A2.1 Hybrid -1A2.1.1 A Hybrid vehicle is defined as a vehicle using a propulsion system which comprises both a 4- stroke Internal Combustion Engine (ICE) and electrical storage (accumulator) with electric motor drive. -1A2.1.2 A hybrid drive system may deploy the ICE and electric motor(s) in any configuration, including series and/or parallel. Coupling through the road surface is permitted. -1A2.1.3 To qualify as a hybrid, vehicles must have a drive system utilizing one or more electric motors with a minimum continuous power rating of 2.5 kW (sum total of all motors) and one or more -I.C engines with a minimum (sum total) power rating of 2.5 kW. -1A2.2 Electric -An Electric vehicle is defined as a vehicle wherein the accumulator is charged from an external electrical source (and/or through regenerative braking) and propelled by electric drive only. -There is no minimum power requirement for electric-only drive motors. -1A2.3 Hybrid in Progress (HIP) -A Hybrid-in-Progress is a not-yet-completed hybrid vehicle, which includes both an internal combustion engine and electric motor. -Note: The purpose of the HIP category is to give teams that are on a 2-year development/build cycle an opportunity to enter and compete their vehicle alongside the regular entries. The HIP is regarded, for all scoring purposes, as a hybrid, but will run the dynamic events on electric power only. -1A2.3.1 To qualify as an HIP, a vehicle must have been designed, and intended for completion as a hybrid vehicle. -1A2.3.2 Teams planning to enter a vehicle in the HIP category will initially register as a Hybrid. To change to the HIP category, the team must submit a request to the organizers in writing before the start of the design event. -Note: The advantages of entering as an HIP are: -(a) Receive a full technical inspection of the vehicle and electrical drive systems. -(b) Participate in all the competition events. (Provided tech inspection is passed). -(c) Receive feedback from the design judges. -Note: Teams can maximize the benefits of an HIP entry by including the full-hybrid designs in their document submissions and design event presentations, as well as including the full multi- year program in their Project Management materials. -(d) When the vehicle is completed and entered as a hybrid, in a subsequent competition, it is considered an all-new vehicle, and not a second-year entry. - -1A2.4 Static Events Only (SEO) -1A2.4.1 SEO is a category that may only be declared after arrival at the competition. All teams must initially register as either Hybrid/HIP or Electric. -1A2.4.2 A team may declare themselves as SEO and participate in the design2 and other static events even if the vehicle is in an unfinished state. -(a) An SEO vehicle may not participate in any of the dynamic events. -(b) An SEO vehicle may continue the technical inspection process, but will be given a lower priority than the non-SEO teams. -1A2.4.3 An SEO declaration must be submitted in writing to the organizers before the scheduled start of the design events. -1A2.4.4 A vehicle that declares SEO in one year, will not be penalized by the design judges as a multi- year vehicle the following year per A7.5. -1A2.5 Electric vs. Hybrid Vehicles -1A2.5.1 The Electric and Hybrid categories are separate. Although they compete in the same events, and may be on the endurance course at the same time, they are scored separately and receive separate awards. -1A2.5.2 The event scoring formulas will maintain separate baselines (Tmax, Tmin) for Hybrid and Electric categories. -Note: Electric vehicles, because they are not carrying the extra weight of engines and generating systems, may demonstrate higher performances in some of the dynamic events. Design scores should not be compared, as the engineering challenge between the two classes is different and scored accordingly. - -ARTICLE A3 THE FORMULA HYBRID + ELECTRIC COMPETITION - -1A3.1 Open Registration -The Formula Hybrid + Electric Competition has an open registration policy and will accept registrations by student teams representing universities in any country. -1A3.2 Official Announcements and Competition Information -1A3.2.1 Teams should read any newsletters published by SAE or Formula Hybrid + Electric and to be familiar with all official announcements concerning the competition and rules interpretations released by the Formula Hybrid + Electric Rules Committee. -1A3.2.2 Formula Hybrid + Electric posts announcements to the "Announcements" page of the Formula Hybrid + Electric website at https://www.formula-hybrid.org/announcements -1A3.3 Official Language -The official language of the Formula Hybrid + Electric competition is English. - - - - - - -2 Provided the team has met the document submission requirements of A9.3(c) - -ARTICLE A4 FORMULA HYBRID + ELECTRIC RULES AND ORGANIZER AUTHORITY - -1A4.1 Rules Authority -1A4.1.1 The Formula Hybrid + Electric Rules are the responsibility of the Formula Hybrid + Electric Rules Committee and are issued under the authority of the SAE Collegiate Design Series Committee. Official announcements from the Formula Hybrid + Electric Rules Committee are to be considered part of, and have the same validity as, these rules. -1A4.1.2 Ambiguities or questions concerning the meaning or intent of these rules will be resolved by the Formula Hybrid + Electric Rules Committee, SAE or by the individual competition organizers as appropriate. (See ARTICLE A12) -1A4.2 Rules Validity -The Formula Hybrid + Electric Rules posted on the Formula Hybrid + Electric website and dated for the calendar year of the competition are the rules in effect for the competition. Rule sets dated for other years are invalid. -1A4.3 Rules Compliance -1A4.3.1 By entering a Formula Hybrid + Electric competition the team, members of the team as individuals, faculty advisors and other personnel of the entering university agree to comply with, and be bound by, these rules and all rule interpretations or procedures issued or announced by SAE, the Formula Hybrid + Electric Rules Committee or the organizers. -1A4.3.2 Any rules or regulations pertaining to the use of the competition site by teams or individuals and which are posted, announced and/or otherwise publicly available are incorporated into these rules by reference. As examples, all event site waiver requirements, speed limits, parking and facility use rules apply to Formula Hybrid + Electric participants. -1A4.3.3 All team members, faculty advisors and other university representatives are required to cooperate with, and follow all instructions from, competition organizers, officials and judges. -1A4.4 Understanding the Rules -Teams, team members as individuals and faculty advisors, are responsible for reading and understanding the rules in effect for the competition in which they are participating. -1A4.5 Participating in the Competition -Teams, team members as individuals, faculty advisors and other representatives of a registered university who are present on-site at a competition are considered to be "participating in the competition" from the time they arrive at the event site until they depart the site at the conclusion of the competition or earlier by withdrawing. -1A4.6 Violations of Intent -1A4.6.1 The violation of intent of a rule will be considered a violation of the rule itself. -1A4.6.2 Questions about the intent or meaning of a rule may be addressed to the Formula Hybrid + Electric Rules Committee or by the individual competition organizers as appropriate. -1A4.7 Right to Impound -SAE and other competition organizing bodies reserve the right to impound any onsite registered vehicles at any time during a competition for inspection and examination by the organizers, officials and technical inspectors. The organizers may also impound any equipment deemed hazardous by the technical inspectors. - -1A4.8 Restriction on Vehicle Use -Teams are cautioned that the vehicles designed in compliance with these Formula Hybrid + Electric Rules are intended for competition operation only at the official Formula Hybrid + Electric competitions. - - -ARTICLE A5 RULES FORMAT AND USE - - -1A5.1.1 Definition of Terms -Must - designates a requirement -Must NOT - designates a prohibition or restriction Should - gives an expectation -May - gives permission, not a requirement and not a recommendation -1A5.1.2 Capitalized Terms -Items or areas which have specific definitions or are covered by specific rules are capitalized. -For example, "Rules Questions" or "Primary Structure". -1A5.1.3 Headings - The article, section and paragraph headings in these rules are provided only to facilitate reading: they do not affect the paragraph contents. -1A5.1.4 Applicability -Unless otherwise designated, all rules apply to all vehicles at all times. -1A5.1.5 Figures and Illustrations - Figures and illustrations give clarification or guidance, but are rules only when referred to in the text of a rule. -1A5.1.6 Change Identification - Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes. -1A5.2 General Authority -SAE and the competition organizing bodies reserve the right to revise the schedule of any competition and/or interpret or modify the competition rules at any time and in any manner that is, in their sole judgment, required for the efficient operation of the event or the Formula Hybrid + Electric series as a whole. -1A5.3 SAE Technical Standards Access -1A5.3.1 A cooperative program of SAE International University Programs and Technical Standards Board is making some of SAE's Technical Standards available to teams registered for any SAE International hosted competition at no cost. A list of accessible standards can be found -online www.fsaeonline.com and accessed under the team's registration online www.sae.org. - -INDIVIDUAL PARTICIPATION REQUIREMENTS - -1A5.4 Eligibility Limits -Eligibility is limited to undergraduate and graduate students to ensure that this is an engineering design competition. -1A5.5 Student Status -1A5.5.1 Team members must be enrolled as degree seeking undergraduate or graduate students in the college or university of the team with which they are participating. Team members who have graduated during the twelve (12) month period prior to the competition remain eligible to participate. -1A5.5.2 Teams which are formed with members from two or more Universities are treated as a single team. A student at any University making up the team may compete at any event where the team participates. The multiple Universities are in effect treated as one University with two campuses and all eligibility requirements are enforced. -1A5.6 Society Membership -1A5.6.1 Team members must be members of at least one of the following societies: -(a) SAE -(b) IEEE -(c) SAE Australasia -(d) SAE Brazil -(e) ATA -(f) IMechE -(g) VDI -1A5.6.2 Proof of membership, such as membership card, is required at the competition. Students who are members of one of the societies listed above are not required to join any of the other societies in order to participate in the Formula Hybrid + Electric competition. -1A5.6.3 Students can join -SAE at: http://www.sae.org/students -IEEE at https://www.ieee.org/membership/join/index.html -Note: SAE membership is required to complete the on-line vehicle registration process, so at least one team member must be a member of SAE. -1A5.7 Age -Team members must be at least eighteen (18) years of age. -1A5.8 Driver's License -Team members who will drive a competition vehicle at any time during a competition must hold a valid, government issued driver's license. All drivers will be required to submit copies of their driver's licenses prior to the competition. Additional instructions will be sent to teams 6 weeks before the competition. - -1A5.9 Driver Restrictions -Drivers who have driven for a professional racing team in a national or international series at any time may not drive in any competition event. A "professional racing team" is defined as a team that provides racing cars and enables drivers to compete in national or international racing series and employs full time staff in order to achieve this. -1A5.10 Liability Waiver -All on-site participants, including students, faculty, volunteers and guests, are required to sign a liability waiver upon registering on-site. -1A5.11 Medical Insurance -Individual medical insurance coverage is required and is the sole responsibility of the participant. - -ARTICLE A6 INDIVIDUAL REGISTRATION REQUIREMENTS - -1A6.1 SAE Student Members -1A6.1.1 If your qualifying professional society membership is with the SAE, you should link yourself to your respective school, and complete the following information on the SAE website: -(a) Medical insurance (provider, policy/ID number, telephone number) -(b) Driver's license (state/country, ID number) -(c) Emergency contact data (point of contact (parent/guardian, spouse), relationship, and phone number) -1A6.1.2 To do this you will need to go to "Registration" page under the specific event the team is registered and then click on the "Register Your Team / Update Team Information" link. At this point, if you are properly affiliated to the school/college/university, a link will appear with your team name to select. Once you have selected the link, the registration page will appear. -Selecting the "Add New Member" button will allow individuals to include themselves with the rest of the team. This can also be completed by team captain and faculty advisor for all team members. -1A6.1.3 All students, both domestic and international, must affiliate themselves online or submit the International Student Registration form by March 1, 2025. For additional assistance, please contact collegiatecompetitions@sae.org -1A6.2 Onsite Registration Requirement -1A6.2.1 Onsite registration is required of all team members and faculty advisors -1A6.2.2 Registration must be completed and the credentials and/or other identification issued by the organizers properly worn before the car can be unloaded, uncrated or worked upon in any manner. -1A6.2.3 The following is required at registration: -(a) Government issued driver's license or passport and -(b) Medical insurance card or documentation -(c) Proof of professional society membership (such as card or member number) - -1A6.2.4 All international student participants (or unaffiliated faculty advisors) who are not SAE members are required to complete the International Student Registration form for the entire team found under "Competition Resources" on the event specific webpage. Upon completion, email the form to collegiatecompetitions@sae.org -1A6.2.5 All students, both domestic and international, must affiliate themselves online or submit the International Student Registration form prior to the date shown in the Action Deadlines on the Formula Hybrid + Electric website. For additional assistance, please contact collegiatecompetitions@sae.org -NOTE: When your team is registering for a competition, only the student or faculty advisor completing the registration needs to be linked to the school. All other students and faculty can affiliate themselves after registration has been completed. -1A6.3 Team Advisor -1A6.3.1 Each team must have a Professional Advisor appointed by the university. The Advisor, or an official university representative, must accompany the team to the competition and will be considered by competition officials to be the official university representative. If the appointed advisor cannot attend the competition, the team must have an alternate college or university - -approved adult attend. -1A6.3.2 Advisors are expected to review their team's Structural Equivalency, Impact Attenuator data and both ESFs prior to submission. Advisors are not required to certify the accuracy of these documents, but should perform a "sanity check" and look for omissions. -1A6.3.3 Advisors may advise their teams on general engineering and engineering project management theory, but must not design any part of the vehicle nor directly participate in the development of any documentation or presentation. Additionally, Advisors may neither fabricate nor assemble any components nor assist in the preparation, maintenance, testing or operation of the vehicle. -In Brief -Advisors must not design, build or repair any part of the car. -1A6.4 Rules and Safety Officer (RSO) -1A6.4.1 Each team must appoint a person to be the "Rules and Safety Officer (RSO)". 1A6.4.2 The RSO must: -(a) Be present at the entire Formula Hybrid + Electric event. -(b) Be responsible for understanding the Formula Hybrid + Electric rules prior to the competition and ensuring that competing vehicles comply with all those rules requirements. -(c) System Documentation - Have vehicle designs, plans, schematics and supporting documents available for review by the officials as needed. -(d) Component Documentation - Have manufacturer's documentation and information available on all components of the electrical system. -(e) Be responsible for team safety while at the event. This includes issues such as: -(i) Use of safety glasses and other safety equipment -(ii) Control of shock hazards such as charging equipment and accessible high voltage sources - -(iii) Control of fire hazards such as fuel, sources of ignition (grinding, welding etc.) -(iv) Safe working practices (lock-out/tag-out, clean work area, use of jack stands etc.) -(f) Be the point of contact between the team and Formula Hybrid + Electric organizers should rules or safety issues arise. -1A6.4.3 If the RSO is also a driver in a dynamic event, a backup RSO must be appointed who will take responsibility for sections A6.4.2(e) and A6.4.2(f) (above) while the primary RSO is in the vehicle. -1A6.4.4 Preferably, the RSO should be the team's faculty advisor or a member of the university's professional staff, but the position may be held by a student member of the team. -1A6.4.5 Contact information for the primary and backup RSOs (Name, Cell Phone number, etc.) must be provided to the organizers during registration. - -ARTICLE A7 VEHICLE ELIGIBILITY - -1A7.1 Student Developed Vehicle -Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained by the student team members without direct involvement from professional engineers, automotive engineers, racers, machinists or related professionals. -1A7.2 Information Sources -The student team may use any literature or knowledge related to car design and information from professionals or from academics as long as the information is given as a discussion of alternatives with their pros and cons. -1A7.3 Professional Assistance -Professionals may not make design decisions or drawings and the Faculty Advisor may be required to sign a statement of compliance with this restriction. -1A7.4 Student Fabrication -It is the intent of the SAE Collegiate Design Series competitions to provide direct hands-on experience to the students. Therefore, students should perform all fabrication tasks whenever possible. -1A7.5 Vehicles Entered for Multiple Years -Formula Hybrid + Electric does not require that teams design and build a new vehicle from scratch each year. -1A7.5.1 Teams may enter the same vehicle used in previous competitions, provided it complies with all the Formula Hybrid + Electric rules in effect at the competition in which it is entered. -1A7.5.2 Rules waivers issued to vehicles are valid for only one year. It is assumed that teams will address the issues requiring a waiver before entering the vehicle in a subsequent year. -NOTE 1: Design judges will look more favorably on vehicles that have clearly documented upgrades and improvements since last entered in a Formula Hybrid + Electric competition. -NOTE 2: Because the Formula Hybrid + Electric competition emphasizes high-efficiency drive systems, engineered improvements to the drive train and control systems will be weighted more heavily by the design judges than updates to the chassis, suspension etc. - -1A7.6 Entries per University -Universities may enter up to two vehicles per competition. Note that there will be a registration wait period imposed for a second vehicle. - -ARTICLE A8 REGISTRATION - -Registration for the Formula Hybrid + Electric competition must be completed on-line. Online registration must be done by either (a) an SAE member or (b) the official faculty advisor connected with the registering university and recorded as such in the SAE record system. -Note: It typically takes at least 1 working day between the time you complete an online SAE membership application and our system recognizes you as eligible to register your team. -1A8.1 Registration Cap -The Formula Hybrid + Electric competition is capped at 35 entries. Registrations received after the entry cap is reached will be placed on a waiting list. If no slots become available prior to the competition, the entry fee will be refunded. -Registration Fees - -1A8.1.1 Registration fees must be paid to the organizer by the deadline specified on the Formula Hybrid -+Electric website. -1A8.1.2 Registration fees are not refundable. -1A8.2 Withdrawals -Registered teams that find that they will not be able to attend the Formula Hybrid + Electric competition are requested to officially withdraw by notifying the organizers at the following address not later than one (1) week before the event: formulahybridcomp@gmail.com -1A8.3 United States Visas -1A8.3.1 Teams requiring visas to enter to the United States are advised to apply at least sixty (60) days prior to the competition. Although many visa applications go through without an unreasonable delay, occasionally teams have had difficulties and in several instances visas were not issued before the competition. -Don't wait - apply early for your visa. -Note: After your team has registered for the Formula Hybrid + Electric competition, the organizers can provide an acknowledgement your registration. We do not issue letters of invitation or participation certificates. -1A8.3.2 Neither SAE staff nor any competition organizers are permitted to give advice on visas, customs regulations or vehicle shipping regulations concerning the United States or any other country. - -ARTICLE A9 VEHICLE DOCUMENTS, DEADLINES AND PENALTIES - -1A9.1 Required Documents -The following documents supporting each vehicle must be submitted by the action deadlines posted on the Formula Hybrid + Electric website or otherwise published by the organizers. - -Document Section Project Management Plan S2.3 Electrical System Form (ESF-1) EV13.1 Change Management Report S2.4 Structural Equivalency Spreadsheet (SES) T3.8 Impact Attenuator Data (IA) T3.21 Program Submission ARTICLE A10(f) Site Pre-Registration ARTICLE A10(l) Design Report S3.2.1 Design Specification Sheet S3.2.2 Electrical System Form (ESF-2) EV13.2 -Table 3 - Required Documents - - -1A9.2 Document Submission Policies -Note: Volunteer examiners and judges evaluate all the required submissions and it is essential that they have enough time to complete their work. There are no exceptions to the document submission deadlines and late submissions will incur penalties. -1A9.2.1 Document submission penalties or bonus points are factored into a team's final score. They do not alter the individual event scores. -1A9.2.2 All documents must be submitted using the following document title, unless otherwise noted in individual document requirements: Car Number_University_Document_Competition Year -i.e. 000_Oxford University_SES_2025 -Teams are responsible for submitting properly labeled documents and will accrue applicable penalty points if documents with corrected formatting are late. -1A9.2.3 Teams must submit the required documents online at -https://formulahybridupload.supportsystem.com/ -1A9.2.4 Document submission deadlines are listed in GMT (Greenwich Mean Time) unless otherwise explicitly stated. This means that deadlines are typically 7:00 PM Eastern Standard Time. -Please use this website for time conversions or https://time.is/GMT . -1A9.2.5 The time and date that the document is uploaded is recorded in GMT (Greenwich Mean Time) and constitutes the official record for deadline compliance. -1A9.2.6 The official time and date of document receipt will be posted on the Formula Hybrid + Electric website. -Teams are responsible for ensuring the accuracy of these postings and must notify the organizers within three days of their submission to report a discrepancy. After three days the submission time and date will become final. -1A9.3 Late submissions -Documents received after their deadlines will be penalized as follows: -(a) Structural Equivalency Spreadsheet (SES) - The penalty for late SES submission is 10 points per day and is capped at negative fifty (-50) points. However, teams are advised - -that the SES's are evaluated in the order in which they are received and that late submissions will be reviewed last. Late SES approval could delay the completion of your vehicle. We strongly recommend you submit your SES as early as possible. -(b) Impact Attenuator Report (IA) - The penalty for late IA submissions is 10 points per day and is capped at negative fifty (-50) points. -(c) Design Reports - The Design Report and Design Spec Sheet collectively constitute the "Design Documents". -(i) Design Report 10 points/day up to 100 points -(ii) Design Spec Sheet 5 points/day up to 50 points - -(d) Program Submissions - There are no penalties for late program submissions. However, late submissions will not be included in the race program, which can be an important tool for future team fund raising. -(e) Project Management Project Plan - Late submission or failure to submit the Project Plan will be penalized at five (5) points per day and is capped at negative fifty-five (-55) points. -(f) Change Management Report - Late submission or failure to submit the interim report will be penalized at five (5) points per day and is capped at negative forty (-40) points. -(g) ESF - The penalty for late ESF submissions is 10 points per day and is capped at negative twenty-five points (-25) per ESF or fifty (-50) points total. -(h) Site Pre-Registration - The penalty for late submission of Site Pre-Registration will be five (5) points. Teams may submit additional team member information up to one week prior to the competition, and all drivers must submit a photo of their driver's license prior to April 26th on the "Document Upload Page". -1A9.4 Early submissions -In some cases, documents submitted before their deadline can earn a team bonus points as follows: -(a) Structural Equivalency Spreadsheet (SES) -(i) Approved documents that were submitted 30 days or more before the SES deadline will receive 20 bonus points. -(ii) Approved documents that were submitted between 29 and 15 days before the SES deadline will receive 10 bonus points. -(b) Electrical System Forms (ESF-1 and ESF-2) -(i) Approved documents that were submitted 30 days or more before each ESF deadline will receive 10 bonus points. -(ii) Approved documents that were submitted between 29 and 15 days before each ESF deadline will receive 5 bonus points. -Note 1: The qualifying dates for bonus points will be listed on the Formula Hybrid + Electric website. - -Note 2: The number of bonus points will be based on the submission date of the document, not on the approval date. Documents submitted early that are not approved will not qualify for bonus points. -Note 3: Some bonus point deadlines may occur before the closing date of registration. If a team has not previously registered for a Formula Hybrid + Electric competition, they may not be listed on the documents submission page. (A9.2.3) In that case, a team should submit the document via email to formulahybridcomp@gmail.com - -ARTICLE A10 FORMS AND DOCUMENTS - -The following forms and documents are available on the Formula Hybrid + Electric website: -(a) 2025 Formula Hybrid + Electric Rules (This Document) -(b) Structural Equivalency Spreadsheet (SES) -(c) Impact Attenuator (IA) Data Sheet -(d) Electrical Systems Form (ESF-1) template -(e) Electrical Systems Form (ESF-2) template -(f) Program Information Sheet (Team information for the Event Program) -(g) Mechanical Inspection Sheet (For reference) -(h) Electrical Inspection Sheet (For reference) -(i) Design Specification Sheet -(j) Design Event Judging Form (For reference) -(k) Project Management Judging Form (For reference) -(l) Site pre-registration form -Note: Formula Hybrid + Electric strives to provide student engineering teams with timely and useful information to assist in the design and construction of their vehicles. Check the Formula Hybrid -+ Electric website often for new or updated advisory publications. - -ARTICLE A11 PROTESTS - -1A11.1 Protests - General -It is recognized that thousands of hours of work have gone into fielding a vehicle and that teams are entitled to all the points they can earn. We also recognize that there can be differences in the interpretation of rules, the application of penalties and the understanding of procedures. The officials and SAE staff will make every effort to fully review all questions and resolve problems and discrepancies quickly and equitably -1A11.2 Preliminary Review - Required -If a team has a question about scoring, judging, policies, or any official action it must be brought to the organizer's or SAE staff's attention for an informal preliminary review before a protest can be filed. -1A11.3 Cause for Protest -A team may protest any rule interpretation, score, or official action (unless specifically excluded from protest) which they feel has caused some actual, non-trivial, harm to their team, or has had substantive effect on their score. Teams may not protest rule interpretations or actions that have not caused them any substantive damage. -1A11.4 Protest Format and Forfeit -All protests must be filed in writing and presented to the organizer or SAE staff by the team captain. In order to have a protest considered, a team must post a twenty-five (25) point protest bond which will be forfeited if their protest is rejected. - -1A11.5 Protest Period -Protests concerning any aspect of the competition must be filed within one-half hour (30 minutes) of the posting of the scores of the event to which the protest relates. -1A11.6 Decision -The decision of the competition protest committee regarding any protest is final. - -ARTICLE A12 QUESTIONS ABOUT THE FORMULA HYBRID + ELECTRIC RULES - -1A12.1 Question Publication -By submitting, a question to the Formula Hybrid + Electric Rules Committee or the competition's organizing body you and your team agree that both your question and the official answer can be reproduced and distributed by SAE or Formula Hybrid + Electric, in both complete and edited versions, in any medium or format anywhere in the world. -1A12.2 Question Types -1A12.2.1 The Committee will answer questions that are not already answered in the rules or FAQs or that require new or novel rule interpretations. The Committee will not respond to questions that are already answered in the rules. For example, if a rule specifies a minimum dimension for a part the Committee will not answer questions asking if a smaller dimension can be used. -1A12.3 Frequently Asked Questions -1A12.3.1 Before submitting a question, check the Frequently Asked Questions section of the Formula Hybrid + Electric website. -1A12.4 Question Submission -Questions must be submitted on the Formula Hybrid + Electric Support page: https://formulahybridelectric.supportsystem.com/ - - - -Figure 1 - Formula Hybrid + Electric Support Page - -1A12.5 Question Format -The following information is required: -(a) Submitter's Name -(b) Submitter's Email -(c) Topic (Select from the pull-down menu) - (d) University Name (Registered teams will find their University name in a pull-down list) You may type your question into the "Message" box, or upload a document. -You will receive a confirmation email with a link to enable you to check on your question's status. -1A12.6 Response Time -Please allow a minimum of 3 days for a response. The Rules Committee will respond as quickly as possible, however, responses to questions presenting new issues, or of unusual complexity, may take more than one week. -Please do not resend questions. - -PART T1 - GENERAL TECHNICAL REQUIREMENTS - -ARTICLE T1 VEHICLE REQUIREMENTS AND RESTRICTIONS *** - -1T1.1 Technical Inspection -1T1.1.1 The following requirements and restrictions will be enforced through technical inspection. Noncompliance must be corrected and the car re-inspected before the car is allowed to operate under power. -1T1.2 Modifications and Repairs -1T1.2.1 Once the vehicle has been presented for judging in the Design Events, or submitted for Technical Inspection, and until the vehicle is approved to compete in the dynamic events, i.e. all the inspection stickers are awarded, the only modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the Inspection Form. -1T1.2.2 Once the vehicle is approved to compete in the dynamic events, the ONLY modifications permitted to the vehicle are: -(a) Adjustment of belts, chains and clutches -(b) Adjustment of brake bias -(c) Adjustment of the driver restraint system, head restraint, seat and pedal assembly -(d) Substitution of the head restraint or seat inserts for different drivers -(e) Adjustment to engine operating parameters, e.g. fuel mixture and ignition timing and any software calibration changes -(f) Adjustment of mirrors -(g) Adjustment of the suspension where no part substitution is required, (except that springs, sway bars and shims may be changed) -(h) Adjustment of tire pressure -(i) Adjustment of wing angle (but not the location) -(j) Replenishment of fluids -(k) Replacement of worn tires or brake pads The replacement tires and/or brake pads must be identical in material, composition and size to those presented and approved at Technical Inspection. -(l) The changing of wheels and tires for "wet" or "damp" conditions as allowed in D3.1 of the Formula Hybrid + Electric Rules. -(m) Recharging of Grounded Low Voltage (GLV) supplies. -(n) Recharging of Accumulators. (See EV12.2) -(o) Adjustment of motor controller operating parameters. -1T1.2.3 The vehicle must maintain all required specifications, e.g. ride height, suspension travel, braking capacity, sound level and wing location throughout the competition. -1T1.2.4 Once the vehicle is approved for competition, any damage to the vehicle that requires repair, -e.g. crash damage, electrical or mechanical damage will void the Inspection Approval. Upon - -the completion of the repair and before re-entering into any dynamic competition, the vehicle MUST be re-submitted to Technical Inspection for re-approval. - -ARTICLE T2 GENERAL DESIGN REQUIREMENTS - -1T2.1 Vehicle Configuration -1T2.1.1 The vehicle must be open-wheeled and open-cockpit (a formula style body) with four (4) wheels that are not in a straight line. -1T2.1.2 Definition of "Open Wheel" - Open Wheel vehicles must satisfy all of the following criteria: -(a) The top 180 degrees of the wheels/tires must be unobstructed when viewed from vertically above the wheel. -(b) The wheels/tires must be unobstructed when viewed from the side. -(c) No part of the vehicle may enter a keep-out-zone defined by two lines extending vertically from positions 75 mm in front of and 75 mm behind the outer diameter of the front and rear tires in side view elevation of the vehicle with the tires steered straight ahead. This keep-out zone will extend laterally from the outside plane of the wheel/tire to the inboard plane of the wheel/tire. See Figure 2 below. -Note: The dry tires will be used for all inspections. - - - - -Figure 2 - Open Wheel Definition - - -1T2.2 Bodywork -There must be no openings through the bodywork into the driver compartment from the front of the vehicle back to the roll bar main hoop or firewall other than that required for the cockpit opening. Minimal openings around the front suspension components are allowed. - -1T2.3 Wheelbase -The car must have a wheelbase of at least 1524 mm. The wheelbase is measured from the center of ground contact of the front and rear tires with the wheels pointed straight ahead. -1T2.4 Vehicle Track -The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. -1T2.5 Visible Access -All items on the Inspection Form must be clearly visible to the technical inspectors without using instruments such as endoscopes or mirrors. Visible access can be provided by removing body panels or by providing removable access panels. - -ARTICLE T3 DRIVER'S CELL - -1T3.1 General Requirements -1T3.1.1 Among other requirements, the vehicle's structure must include two roll hoops that are braced, a front bulkhead with support system and Impact Attenuator, and side impact structures. -Note: Many teams will be retrofitting Formula SAE cars for Formula Hybrid + Electric. In most cases these vehicles will be considerably heavier than what the original frame and suspension was designed to carry. It is important to analyze the structure of the car and to strengthen it as required to insure that it will handle the additional stresses. -The technical inspectors will also be paying close attention to the mounting of accumulator systems. These can be very heavy and must be adequately fastened to the main structure of the vehicle. -1T3.2 Definitions -The following definitions apply throughout the Rules document: -(a) Main Hoop - A roll bar located alongside or just behind the driver's torso. -(b) Front Hoop - A roll bar located above the driver's legs, in proximity to the steering wheel. -(c) Roll Hoops - Both the Front Hoop and the Main Hoop are classified as "Roll Hoops" -(d) Roll Hoop Bracing Supports - The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). -(e) Frame Member - A minimum representative single piece of uncut, continuous tubing. -(f) Frame - The "Frame" is the fabricated structural assembly that supports all functional vehicle systems. This assembly may be a single welded structure, multiple welded structures or a combination of composite and welded structures. -(g) Primary Structure - The Primary Structure is comprised of the following Frame components: -(i) Main Hoop -(ii) Front Hoop -(iii) Roll Hoop Braces and Supports -(iv) Side Impact Structure - -(v) Front Bulkhead -(vi) Front Bulkhead Support System -(vii) All Frame Members, guides and supports that transfer load from the Driver's Restraint System into items (i) through (vi). -(h) Major Structure of the Frame - The portion of the Frame that lies within the envelope defined by the Primary Structure. The upper portion of the Main Hoop and the Main Hoop Bracing are not included in defining this envelope. -(i) Front Bulkhead - A planar structure that defines the forward plane of the Major Structure of the Frame and functions to provide protection for the driver's feet. -(j) Impact Attenuator - A deformable, energy absorbing device located forward of the Front Bulkhead. -(k) Side Impact Zone - The area of the side of the car extending from the top of the floor to 350 mm above the ground and from the Front Hoop back to the Main Hoop. -(l) Node-to-node triangulation - An arrangement of frame members projected onto a plane, where a co-planar load applied in any direction, at any node, results in only tensile or compressive forces in the frame members. This is also what is meant by "properly triangulated". - - - -Figure 3 - Triangulation - - -1T3.3 Minimum Material Requirements -1T3.3.1 Baseline Steel Material -The Primary Structure of the car must be constructed of: -Either: Round, mild or alloy, steel tubing (minimum 0.1% carbon) of the minimum dimensions specified in Table 4 . -Or: Approved alternatives per Rules T3.3, T3.3.2, T3.5 and T3.6. - - -ITEM or APPLICATION OUTSIDE DIMENSION x WALL THICKNESS Inch Metric Main & Front Hoops, Round: 1.0" x 0.095" Round: 25.0 mm x 2.50 mm Shoulder Harness Mounting Bar Side Impact Structure Round: 1.0" x 0.065" Round: 25.0 mm x 1.75 mm Roll Hoop Bracing Square: 1.0" x 1.0" x 0.049" Square: 25.0 mm x 25.0 mm x 1.25 mm Front Bulkhead Square: 26.0 mm x 26.0 mm x 1.2 mm Driver's Restraint Harness Attachment -(except for Shoulder Harness Mounting Bar) Main Hoop Bracing Supports Round: 1.0" x 0.049" Round: 25.0 mm x 1.5 mm Front Bulkhead Supports Round: 26.0 mm x 1.2 mm Protection of Tractive System Components - -Table 4 - Baseline Steel - - -Note 1: The use of alloy steel does not allow the wall thickness to be thinner than that used for mild steel. -Note 2: For a specific application using tubing of the specified outside diameter but with greater wall thickness, or of the specified wall thickness and a greater outside diameter, or replacing round tubing with square tubing of the same or larger size to those listed above, are NOT rules deviations requiring approval. -Note 3: Except for inspection holes, any holes drilled in any regulated tubing require the submission of an SES. -Note 4: Baseline steel properties used for calculations to be submitted in an SES may not be lower than the following: -Bending and buckling strength calculations: -Young's Modulus (E) = 200 GPa (29,000 ksi) Yield Strength (Sy) = 305 MPa (44.2 ksi) Ultimate Strength (Su) = 365 MPa (52.9 ksi) - -Welded monocoque attachment points or welded tube joint calculations: Yield Strength (Sy) = 180 MPa (26 ksi) -Ultimate Strength (Su) = 300 MPa (43.5 ksi) - -1T3.3.2 When a cutout, or a hole greater in diameter than 3/16 inch (4 mm), is made in a regulated tube, -e.g. to mount the safety harness or suspension and steering components, in order to regain the baseline, cold rolled strength of the original tubing, the tubing must be reinforced by the use of a welded insert or other reinforcement. The welded strength figures given above must be used for the additional material. And the details, including dimensioned drawings, must be included in the SES. - -1T3.4 Alternative Tubing and Material - General -1T3.4.1 Alternative tubing geometry and/or materials may be used except that the Main Roll Hoop and Main Roll Hoop Bracing must be made from steel, i.e. the use of aluminum or titanium tubing or composites for these components is prohibited. -1T3.4.2 Titanium or magnesium on which welding has been utilized may not be used for any part of the Primary Structure. This includes the attachment of brackets to the tubing or the attachment of the tubing to other components. -1T3.4.3 If a team chooses to use alternative tubing and/or materials they must still submit a "Structural Equivalency Spreadsheet" per Rule T3.8. The teams must submit calculations for the material they have chosen, demonstrating equivalence to the minimum requirements found in Section T3.3.1 for yield and ultimate strengths in bending, buckling and tension, for buckling modulus and for energy dissipation. -Note: The Buckling Modulus is defined as EI, where, E = modulus of Elasticity, and I = area moment of inertia about the weakest axis. -1T3.4.4 To be considered as a structural tube in the SES Submission (T3.8) tubing cannot have an outside dimension less than 25 mm or a wall thickness less than that listed in T3.5 or T3.6. -1T3.4.5 If a bent tube is used anywhere in the primary structure, other than the front and main roll hoops, an additional tube must be attached to support it. The attachment point must be the position along the tube where it deviates farthest from a straight line connecting both ends. The support tube must have the same diameter and thickness as the bent tube. The support tube must terminate at a node of the chassis. -1T3.4.6 Any chassis design that is a hybrid of the baseline and monocoque rules, must meet all relevant rules requirements, e.g. a sandwich panel side impact structure in a tube frame chassis must meet the requirements of rules T3.27, T3.28, T3.29, T3.30 and T3.33. -Note: It is allowable for the properties of tubes and laminates to be combined to prove equivalence. E.g. in a side-impact structure consisting of one tube as per T3.3 and a laminate panel, the panel only needs to be equivalent to two side-impact tubes. -1T3.5 Alternative Steel Tubing -Minimum Wall Thickness Allowed: - -MATERIAL & APPLICATION MINIMUM WALL THICKNESS Front and Main Roll Hoops Shoulder Harness Mounting Bar -2.0 mm Roll Hoop Bracing -Roll Hoop Bracing Supports Side Impact Structure -Front Bulkhead -Front Bulkhead Support -Driver's Harness Attachment (Except for Shoulder Harness Mounting Bar - above) -Protection of accumulators -Protection of TSV components - - - -1.2 mm -Table 5 - Steel Tubing Minimum Wall Thicknesses - -Note 1: All steel is treated equally - there is no allowance for alloy steel tubing, e.g. SAE 4130, to have a thinner wall thickness than that used with mild steel. -Note 2: To maintain EI with a thinner wall thickness than specified in T3.3.1, the outside diameter MUST be increased. -Note 3: To maintain the equivalent yield and ultimate tensile strength the same cross-sectional area of steel as the baseline tubing specified in T3.3.1 must be maintained. -1T3.6 Aluminum Tubing Requirements -1T3.6.1 Minimum Wall Thickness of Aluminum Tubing is 3.0 mm -1T3.6.2 The equivalent yield strength must be considered in the "as-welded" condition, (Reference: WELDING ALUMINUM (latest Edition) by the Aluminum Association, or THE WELDING HANDBOOK, Volume 4, 9th Ed., by The American Welding Society), unless the team demonstrates and shows proof that the frame has been properly solution heat treated and artificially aged. -1T3.6.3 Should aluminum tubing be solution heat-treated and age hardened to increase its strength after welding; the team must supply sufficient documentation as to how the process was performed. This includes, but is not limited to, the heat-treating facility used, the process applied, and the fixturing used. -1T3.7 Composite Materials -1T3.7.1 If any composite or other material is used, the team must present documentation of material type, e.g. purchase receipt, shipping document or letter of donation, and of the material properties. Details of the composite lay-up technique as well as the structural material used (cloth type, weight, and resin type, number of layers, core material, and skin material if metal) must also be submitted. The team must submit calculations demonstrating equivalence of their composite structure to one of similar geometry made to the minimum requirements found in Section T3.3.1. Equivalency calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, buckling, and tension. Submit the completed "Structural Equivalency Spreadsheet" per Section T3.8 -Note: Some composite materials present unique electrical shock hazards, and may require additional engineering and fabrication effort to minimize those hazards. See: ARTICLE EV8. -1T3.7.2 Composite materials are not allowed for the Main Hoop or the Front Hoop. -1T3.8 Structural Documentation - SES Submission -All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010. -1T3.8.1 All teams must submit a Structural Equivalency Spreadsheet (SES) even if they are not planning to use alternative materials or tubing sizes to those specified in T3.3.1 Baseline Steel Materials. -1T3.8.2 The use of alternative materials or tubing sizes to those specified in T3.3.1 "Baseline Steel Material," is allowed, provided they have been judged by a technical review to have equal or superior properties to those specified in T3.3.1. -1T3.8.3 Approval of alternative material or tubing sizes will be based upon the engineering judgment and experience of the chief technical inspector or their appointee. -1T3.8.4 The technical review is initiated by completing the "Structural Equivalency Spreadsheet" (SES) which can be downloaded from the Formula Hybrid + Electric website. -1T3.8.5 Structural Equivalency Spreadsheet - Submission - -SESs must be submitted via the Formula Hybrid + Electric Document Upload page. See Section A9.2. -Do Not Resubmit SES's unless instructed to do so. - -1T3.8.6 Vehicles completed under an approved SES must be fabricated in accordance with the materials and processes described in the SES. -1T3.8.7 Teams must bring a copy of the approved SES with them to Technical Inspection. -Comment - The resubmission of an SES that was written and submitted for a competition in a previous year is strongly discouraged. Each team is expected to perform their own tests and to submit SESs based on their original work. Understanding the engineering that justifies the equivalency is essential to discussing your work with the officials. - -1T3.8.8 An approved SES for a Formula SAE 2024 or 2025 competition may be submitted in place of the Formula Hybrid + Electric specific SES required by T3.8.4. - -1T3.9 Main and Front Roll Hoops - General Requirements -1T3.9.1 The driver's head and hands must not contact the ground in any rollover attitude. -1T3.9.2 The Frame must include both a Main Hoop and a Front Hoop as shown in Figures from Top: 4. -1T3.9.3 When seated normally and restrained by the Driver's Restraint System, the helmet of a 95th percentile male (anthropometrical data; See Table 6 and Figure 5) and all of the team's drivers must: -(a) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the top of the front hoop. (Figures from Top: 4a) -(b) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the lower end of the main hoop bracing if the bracing extends rearwards. (Figures from Top: 4b) -(c) Be no further rearwards than the rear surface of the main hoop if the main hoop bracing extends forwards. (Figures from Top: 4c) - - -A two dimensional template used to represent the 95th percentile male is made to the following dimensions: ? A circle of diameter 200 mm will represent the hips and buttocks. -? A circle of diameter 200 mm will represent the shoulder/cervical region. -? A circle of diameter 300 mm will represent the head (with helmet). -? A straight line measuring 490 mm will connect the centers of the two 200 mm circles. -? A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle. -Table 6 - 95th Percentile Male Template Dimensions - - - - - -Figures from Top: 4a, 4b, and 4c- Roll Hoops and Helmet Clearance - - - -Figure 5 - Percy -- 95th Percentile Male with Helmet - - - -Figure 6 - 95th Percentile Template Positioning - - -1T3.9.4 The 95th percentile male template (Percy) will be positioned as follows: (See Figure 6) -(a) The seat will be adjusted to the rearmost position, -(b) The pedals will be placed in the most forward position. -(c) The bottom 200 mm circle will be placed on the seat bottom such that the distance between the center of this circle and the rearmost face of the pedals is no less than 915 mm. -(d) The middle 200 mm circle, representing the shoulders, will be positioned on the seat back. -(e) The upper 300 mm circle will be positioned no more than 25.4 mm away from the head restraint (i.e. where the driver's helmet would normally be located while driving). - - - - - - - -1T3.9.5 Drivers who do not meet the helmet clearance requirements of T3.9.3 will not be allowed to drive in the competition. -1T3.9.6 The minimum radius of any bend, measured at the tube centerline, must be at least three times the tube outside diameter. Bends must be smooth and continuous with no evidence of crimping or wall failure. -1T3.9.7 The Main Hoop and Front Hoop must be securely integrated into the Primary Structure using gussets and/or tube triangulation. -1T3.10 Main Hoop -1T3.10.1 The Main Hoop must be constructed of a single piece of uncut, continuous, closed section steel tubing per Rule T3.3.1 -1T3.10.2 The use of aluminum alloys, titanium alloys or composite materials for the Main Hoop is prohibited. -1T3.10.3 The Main Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down the lowest Frame Member on the other side of the Frame. -1T3.10.4 In the side view of the vehicle, the portion of the Main Roll Hoop that lies above its attachment point to the Major Structure of the Frame must be within ten degrees (10) of the vertical. -1T3.10.5 In the side view of the vehicle, any bends in the Main Roll Hoop above its attachment point to the Major Structure of the Frame must be braced to a node of the Main Hoop Bracing Support structure with tubing meeting the requirements of Roll Hoop Bracing as per Rule T3.3.1 -1T3.10.6 In the front view of the vehicle, the vertical members of the Main Hoop must be at least 380 mm apart (inside dimension) at the location where the Main Hoop is attached to the Major Structure of the Frame. -1T3.11 Front Hoop -1T3.11.1 The Front Hoop must be constructed of closed section metal tubing per Rule T3.3.1. 1T3.11.2 The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, -over and down to the lowest Frame Member on the other side of the Frame. -1T3.11.3 With proper gusseting and/or triangulation, it is permissible to fabricate the Front Hoop from more than one piece of tubing. -1T3.11.4 The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position. -1T3.11.5 The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance must be measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight- ahead position. - -1T3.11.6 In side view, no part of the Front Hoop can be inclined at more than twenty degrees (20) from the vertical. -1T3.12 Main Hoop Bracing -1T3.12.1 Main Hoop braces must be constructed of closed section steel tubing per Rule T3.3.1. 1T3.12.2 The Main Hoop must be supported by two braces extending in the forward or rearward -direction on both the left and right sides of the Main Hoop. -1T3.12.3 In the side view of the Frame, the Main Hoop and the Main Hoop braces must not lie on the same side of the vertical line through the top of the Main Hoop, i.e. if the Main Hoop leans forward, the braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, the braces must be rearward of the Main Hoop. -1T3.12.4 The Main Hoop braces must be attached as near as possible to the top of the Main Hoop but not more than 160 mm below the top-most surface of the Main Hoop. The included angle formed by the Main Hoop and the Main Hoop braces must be at least thirty degrees (30). See: Figure 7 - - - - - -Figure 7 - Main and Front Hoop Bracing - - -1T3.12.5 The Main Hoop braces must be straight, i.e. without any bends. -1T3.12.6 The attachment of the Main Hoop braces must be capable of transmitting all loads from the Main Hoop into the Major Structure of the Frame without failing. From the lower end of the braces there must be a properly triangulated structure back to the lowest part of the Main Hoop and the node at which the upper side impact tube meets the Main Hoop. This structure must meet the minimum requirements for Main Hoop Bracing Supports (see Rule T3.3) or an SES approved alternative. Bracing loads must not be fed solely into the engine, transmission or differential, or through suspension components. -1T3.12.7 If any item which is outside the envelope of the Primary Structure is attached to the Main Hoop braces, then additional bracing must be added to prevent bending loads in the braces in any rollover attitude. - -1T3.13 Front Hoop Bracing -1T3.13.1 Front Hoop braces must be constructed of material per Rule T3.3.1. -1T3.13.2 The Front Hoop must be supported by two braces extending in the forward direction, one on the left side and one on the right side of the Front Hoop. -1T3.13.3 The Front Hoop braces must be constructed such that they protect the driver's legs and should extend to the structure in front of the driver's feet. -1T3.13.4 The Front Hoop braces must be attached as near as possible to the top of the Front Hoop but not more than 50.8 mm below the top-most surface of the Front Hoop. See: Figure 7 -1T3.13.5 If the Front Hoop leans rearwards by more than ten degrees (10) from the vertical, it must be supported by additional bracing to the rear. This bracing must be constructed of material per Rule T3.3.1. -1T3.14 Other Bracing Requirements -Where the braces are not welded to steel Frame Members, the braces must be securely attached to the Frame using 8 mm Metric Grade 8.8 (5/16 in SAE Grade 5), or stronger, bolts. Mounting plates welded to the Roll Hoop braces must be at least 2.0 mm thick steel. -1T3.15 Other Side Tube Requirements -If there is a Roll Hoop brace or other frame tube alongside the driver, at the height of the neck of any of the team's drivers, a metal tube or piece of sheet metal must be firmly attached to the Frame to prevent the drivers' shoulders from passing under the roll hoop brace or frame tube, and his/her neck contacting this brace or tube. -1T3.16 Mechanically Attached Roll Hoop Bracing -1T3.16.1 Roll Hoop bracing may be mechanically attached. -1T3.16.2 Any non-permanent joint at either end must be either a double-lug joint as shown in Figure 8 -and Figure 9 or a sleeved butt joint as shown in Figure 10. - - - - -Figure 8 - Double-Lug Joint Figure 9 - Double Lug Joint - - - - - -Figure 10 - Sleeved Butt Joint - - - -1T3.16.3 The threaded fasteners used to secure non-permanent joints are considered critical fasteners and must comply with ARTICLE T11. -1T3.16.4 No spherical rod ends are allowed. -1T3.16.5 For double-lug joints, each lug must be at least 4.5 mm thick steel, measure 25 mm minimum perpendicular to the axis of the bracing and be as short as practical along the axis of the bracing. -1T3.16.6 All double-lug joints, whether fitted at the top or bottom of the tube, must include a capping arrangement. (See Figure 8 and Figure 9) -1T3.16.7 In a double-lug joint the pin or bolt must be 10 mm Grade 9.8 or 3/8 inch SAE Grade 8 minimum. The attachment holes in the lugs and in the attached bracing must be a close fit with the pin or bolt. -1T3.16.8 For sleeved butt joints (Figure 10), the sleeve must have a minimum length of 76 mm (38 mm on either side of the joint) and be a close-fit around the base tubes. The wall thickness of the sleeve must be at least that of the base tubes. The bolts must be 6 mm Grade 9.8 or 1/4 - -inch SAE Grade 8 minimum. The holes in the sleeves and tubes must be a close-fit with the bolts. -1T3.17 Frontal Impact Structure -1T3.17.1 The driver's feet and legs must be completely contained within the Major Structure of the Frame. While the driver's feet are touching the pedals, in side and front views no part of the driver's feet or legs can extend above or outside of the Major Structure of the Frame. -1T3.17.2 Forward of the Front Bulkhead must be an energy-absorbing Impact Attenuator. -1T3.18 Bulkhead -1T3.18.1 The Front Bulkhead must be constructed of closed section tubing per Rule T3.3.1. 1T3.18.2 Except as allowed byT3.22.2, The Front Bulkhead must be located forward of all non- -crushable objects, e.g. batteries, master cylinders, hydraulic reservoirs. -1T3.18.3 The Front Bulkhead must be located such that the soles of the driver's feet, when touching but not applying the pedals, are rearward of the bulkhead plane. (This plane is defined by the forward-most surface of the tubing.) Adjustable pedals must be in the forward most position. -1T3.19 Front Bulkhead Support -1T3.19.1 The Front Bulkhead must be securely integrated into the Frame. -1T3.19.2 The Front Bulkhead must be supported back to the Front Roll Hoop by a minimum of three -(3) Frame Members on each side of the vehicle with one at the top (within 50.8 mm of its top-most surface), one (1) at the bottom, and one (1) as a diagonal brace to provide triangulation. -1T3.19.3 The triangulation must be node-to-node, with triangles being formed by the Front Bulkhead, the diagonal and one of the other two required Front Bulkhead Support Frame Members. -1T3.19.4 All the Frame Members of the Front Bulkhead Support system listed above must be constructed of closed section tubing per Section T3.3.1. -1T3.20 Impact Attenuator (IA) -1T3.20.1 On all cars there must be an Impact Attenuator and an Anti-Intrusion Plate forward of the Front Bulkhead, with the Anti-Intrusion Plate between the Impact Attenuator and the Front Bulkhead. -All methods of attachment of the IA to the Ant-Intrusion Plate and of the Anti-Intrusion Plate to the Front Bulkhead must provide adequate load paths for transverse and vertical loads in the event of off-axis impacts. -1T3.20.2 The Anti-Intrusion Plate must: -(a) Be a 1.5 mm (0.060 in) thick solid steel or 4.0 mm (0.157 in) thick solid aluminum plate. Monocoques may use an approved alternative as per T3.38. -(b) Be attached securely and directly to the Front Bulkhead. -(c) Have an outer profile that meets the requirements of T3.20.3. -1T3.20.3 Alternative designs of the Anti-Intrusion Plate required by T3.20.2 that do not comply with the minimum specifications given above require an approved "Structural Equivalency Spreadsheet", per T3.8. Equivalency must also be proven for perimeter shear strength of the proposed design. - -1T3.20.4 The requirements for the outside profile of the Anti-Intrusion Plate are dependent on the method of attachment to the Front Bulkhead: -? For welded joints the profile must extend at least to the centerline of the Front Bulkhead tubes on all sides. -? For bolted joints the profile must match the outside dimensions of the Front Bulkhead around the entire periphery. -1T3.20.5 For tube frame cars, the accepted methods of attaching the Anti-Intrusion Plate to the Front Bulkhead are: -(a) Welding, where the welds are either continuous or interrupted. If interrupted, the weld/space ratio must be at least 1:1. All weld lengths must be greater than 25 mm (1"). -(b) Bolted joints, using a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16" SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2"). -NOTE: Holes in mandated tubes will require appropriate measures to ensure compliance with -T3.3.1 Note 3, and T3.3.2 -1T3.20.6 For monocoque cars, the attachment of the Anti-Intrusion Plate to the monocoque structure must be documented in the team's SES submission. This must prove the attachment method is equivalent to the bolted joints described in T3.20.5 and that the attachment method utilized will fail before any other part of the monocoque. -1T3.20.7 The Impact Attenuator must be: -(a) At least 200 mm (7.8 in) long, with its length oriented along the fore/aft axis of the Frame. -(b) At least 100 mm (3.9 in) high and 200 mm (7.8 in) wide for a minimum distance of 200 mm (7.8 in) forward of the Front Bulkhead. -(c) Attached securely to the Anti-Intrusion Plate. -Segmented foam attenuators must have all segments bonded together to prevent sliding or parallelogramming. -1T3.20.8 The accepted methods of attaching the Impact Attenuator to the Anti-Intrusion Plate are: -(a) Bolted joints, using a minimum of four (4) 8 mm Metric Grade 8.8 (5/16" SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2"). -(b) By the use of a structural adhesive. The adhesive must be appropriate for use with both substrate types. Appropriate adhesive choice, substrate preparation, and equivalency of this bonded joint to the bolted joint in T3.20.8(a) must be documented in the team's IAD Report. -Note: Foam IA's cannot be attached solely by the bolted method. -1T3.20.9 If a team uses the "standard" FSAE Impact Attenuator3, and the outside profile of the Anti- Intrusion Plate extends beyond the "standard" Impact Attenuator by more than 25 mm (1") on - - - -3 The officially approved "standard" Formula SAE Impact Attenuator may be found here on the Formula SAE website - -any side, a diagonal or X-brace made from 1.00" x 0.049" steel tube, or an approved equivalent per T3.5, must be included in the Front Bulkhead. -1T3.21 Impact Attenuator Test Data Report Requirement -1T3.21.1 Impact Attenuator Test Data Report Requirement -All teams, whether they are using their own design of Impact Attenuator (IA) or the "standard" FSAE Impact Attenuator, must submit an Impact Attenuator Data Report using the Impact Attenuator Data (IAD) Template found on the Formula Hybrid + Electric Document page at: https://www.formula-hybrid.org/documents -1T3.21.2 All teams must submit calculations and/or test data to show that their Impact Attenuator, when mounted on the front of their vehicle and run into a solid, non-yielding impact barrier with a velocity of impact of 7.0 meters/second, would give an average deceleration of the vehicle not to exceed 20 g, with a peak deceleration less than or equal to 40 g's. -NOTE 1: Quasi-static testing is allowed. -NOTE 2: The calculations of how the reported absorbed energy, average deceleration and peak deceleration figures have been derived from the test data MUST be included in the report and appended to the report template. -1T3.21.3 Calculations must be based on the actual vehicle mass with a 175 lb. driver, full fluids, and rounded up to the nearest 100 lb. -Note: Teams may only use the "Standard" FSAE impact attenuator design and data submission process if their vehicle mass with driver is 300 kgs (661 lbs) or less. -To be eligible to utilize the "Standard" FSAE impact attenuator, teams must either have previously brought a Formula Hybrid + Electric vehicle that weighs under 300 kgs (661 lbs) with driver to a Formula Hybrid + Electric competition, or submit a detailed mass measurement spreadsheet covering all the vehicle's components as part of the Impact Attenuator Data Report, showing that the new vehicle meets the above requirements. -1T3.21.4 Teams using a front wing must prove that the combination of the Impact Attenuator and front wing, when used together, do not exceed the peak deceleration of rule T3.21.2. Teams can use the following methods to show the design does not exceed the limits given in T3.21.2. -(a) Physical testing of the Impact Attenuator with wing mounts, links, vertical plates, and a structural representation of the airfoil section to determine the peak force. See http://formula-hybrid.org/students/tech-support/ FAQs for an example of the structure to be included in the test. Or -(b) Combine the peak force from physical testing of the Impact Attenuator Assembly with the wing mount failure load calculated from fastener shear and/or link buckling. Or -(c) If they are using the Standard FSAE Impact Attenuator (see T3.21.3 above), combine the peak load of 95 kN exerted by the Standard FSAE Impact Attenuator with the wing mount failure load calculated from fastener shear and/or buckling. -1T3.21.5 When using acceleration data, the average deceleration must be calculated based on the raw data. The peak deceleration can be assessed based on the raw data, and if peaks above the 40g limit are apparent in the data, it can then be filtered with a Channel Filter Class (CFC) 60 (100 Hz) filter per SAE Recommended Practice J211 "Instrumentation for Impact Tests", or a 100 Hz, 3rd order, lowpass Butterworth (-3dB at 100 Hz) filter. - -1T3.21.6 A schematic of the test method must be supplied along with photos of the attenuator before and after testing. -1T3.21.7 The test piece must be presented at technical inspection for comparison to the photographs and the attenuator fitted to the vehicle. -1T3.21.8 The report must be submitted electronically in Adobe Acrobat (r) format (*.pdf file) to the address and by the date provided in the Action Deadlines provided on the Formula Hybrid + Electric website. This material must be a single file (text, drawings, data or whatever you are including). -1T3.21.9 The Impact Attenuator Data Report must be named as follows: carnumber_schoolname_competitioncode_IAD.pdf using the assigned car number, the complete school name and competition code e.g. -087_University of SAE_FHE_IAD.pdf -1T3.21.10 Teams that submit their Impact Attenuator Data Report after the due date will be penalized as listed in section A9.2. -1T3.21.11 Impact Attenuator Reports will be evaluated by the organizers and the evaluations will be passed to the Design Event Captain for consideration in that event. -1T3.21.12 During the test, the attenuator must be attached to the Anti-Intrusion Plate using the intended vehicle attachment method. The Anti-Intrusion Plate must be spaced at least 50 mm from any rigid surface. No part of the Anti-Intrusion Plate may permanently deflect more than 25.4 mm beyond the position of the Anti-Intrusion Plate before the test. -Note: The 25.4 mm spacing represents the front bulkhead support and insures that the plate does not intrude excessively into the cockpit. -1T3.21.13 Dynamic testing (sled, pendulum, drop tower, etc.) of the impact attenuator may only be done at a dedicated test facility. The test facility may be part of the University but must be supervised by professional staff or University faculty. Teams are not allowed to construct their own dynamic test apparatus. Quasi-static testing may be performed by teams using their universities facilities/equipment, but teams are advised to exercise due care when performing all tests. -1T3.22 Non-Crushable Objects -1T3.22.1 Except as allowed by T3.22.2, all non-crushable objects (e.g. batteries, master cylinders, hydraulic reservoirs) inside the primary structure must have 25 mm (1") clearance to the rear face of the Impact Attenuator Anti-Intrusion Plate. -1T3.22.2 The front wing and wing supports may be forward of the Front Bulkhead, but may NOT be located in or pass through the Impact Attenuator. If the wing supports are in front of the Front Bulkhead, the supports must be included in the test of the Impact Attenuator. See T3.21. -1T3.23 Front Bodywork -1T3.23.1 Sharp edges on the forward facing bodywork or other protruding components are prohibited. 1T3.23.2 All forward facing edges on the bodywork that could impact people, e.g. the nose, must have -forward facing radii of at least 38 mm. This minimum radius must extend to at least forty-five degrees (45) relative to the forward direction, along the top, sides and bottom of all affected edges. - -1T3.24 Side Impact Structure for Tube Frame Cars -The Side Impact Structure must meet the requirements listed below. - -1T3.24.1 The Side Impact Structure for tube frame cars must be comprised of at least three (3) tubular members located on each side of the driver while seated in the normal driving position, as shown in Figure 11 - - - - -Figure 11 - Side Impact Structure - - -1T3.24.2 The three (3) required tubular members must be constructed of material per Section T3.3. 1T3.24.3 The locations for the three (3) required tubular members are as follows: -(a) The upper Side Impact Structural member must connect the Main Hoop and the Front Hoop. With a 77 kg driver seated in the normal driving position all of the member must be at a height between 300 mm and 350 mm above the ground. The upper frame rail may be used as this member if it meets the height, diameter and thickness requirements. -(b) The lower Side Impact Structural member must connect the bottom of the Main Hoop and the bottom of the Front Hoop. The lower frame rail/frame member may be this member if it meets the diameter and wall thickness requirements. -(c) The diagonal Side Impact Structural member must connect the upper and lower Side Impact Structural members forward of the Main Hoop and rearward of the Front Hoop. - -1T3.24.4 With proper gusseting and/or triangulation, it is permissible to fabricate the Side Impact Structural members from more than one piece of tubing. -1T3.24.5 Alternative geometry that does not comply with the minimum requirements given above requires an approved "Structural Equivalency Spreadsheet" per Rule T3.8. - -1T3.25 Inspection Holes -1T3.25.1 To allow the verification of tubing wall thicknesses, 4.5 mm inspection holes must be drilled in a non-critical location of both the Main Hoop and the Front Hoop. -1T3.25.2 In addition, the Technical Inspectors may check the compliance of other tubes that have minimum dimensions specified in T3.3.1. This may be done by the use of ultra-sonic testing or by the drilling of additional inspection holes at the inspector's request. -1T3.25.3 Inspection holes must be located so that the outside diameter can be measured across the inspection hole with a caliper, i.e. there must be access for the caliper to the inspection hole and to the outside of the tube one hundred eighty degrees (180) from the inspection hole. -1T3.26 Composite Tubular Space Frames -1T3.26.1 Composite tubular space frames are not permitted in the Primary Structure of the vehicle (See -T3.2(g)) -1T3.26.2 Composite tubular structures may be used for other tubes regulated under T3.3 provided the team receives prior approval from the Formula Hybrid + Electric chief technical examiner. This will require submission of the following data: -(a) Test data on the joints used in the structure. -(b) Static strength testing on all proposed configurations within the frame. -(c) An assessment of the ability of all joints to handle cyclic loading. -(d) The equivalency of the composite tubes to withstand maximum forces and moments (when compared to baseline materials). -This information must also be included in the structural equivalency submission. -1T3.27 Monocoque General Requirements -1T3.27.1 All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010. 1T3.27.2 All sections of the rules apply to monocoque structures except for the following sections -which supplement or supersede other rule sections. -1T3.27.3 Monocoque construction requires an approved Structural Equivalency Spreadsheet, per Section T3.8. The form must demonstrate that the design is equivalent to a welded frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension. Information must include: material type(s), cloth weights, resin type, fiber orientation, number of layers, core material, and lay-up technique. The 3 point bend test and shear test data and pictures must also be included as per T3.30 Monocoque Laminate Testing. The Structural Equivalency must address each of the items below. Data from the laminate testing results must be used as the basis for any strength or stiffness calculations. -1T3.27.4 Composite and metallic monocoques have the same requirements. -1T3.27.5 Composite monocoques must meet the materials requirements in Rule T3.7 Composite Materials. -1T3.28 Monocoque Inspections -1T3.28.1 Due to the monocoque rules and methods of manufacture it is not always possible to inspect all aspects of a monocoque during technical inspection. For items which cannot be verified by an inspector it is the responsibility of the team to provide documentation, both visual - -and/or written, that the requirements have been met. Generally the following items should be possible to be confirmed by the technical inspector: -(a) Verification of the Main Hoop outer diameter and wall thickness where it protrudes above the monocoque -(b) Visual verification that the Main Hoop goes to the lowest part of the tub, locally -(c) Verify mechanical attachment of Main Hoop to tub exists and matches the SES, at all points shown on the SES. -(d) Verify the outside diameter and wall thickness of the Front Hoop by providing access as required by Rule T3.25.3. -(e) Verify visually or by feel that the Front Hoop is installed. -(f) Verify that the Front Hoop goes to the lowest part of the tub, locally. -(g) Verify mechanical attachment of the Front Hoop (if included) against the SES. -1T3.29 Monocoque Buckling Modulus - Equivalent Flat Panel Calculation -When specified in the rules, the EI of the monocoque must be calculated as the EI of a flat panel with the same composition as the monocoque about the neutral axis of the laminate. The curvature of the panel and geometric cross section of the monocoque must be ignored for these calculations. -Note: Calculations of EI that do not reference T3.29 may take into account the actual geometry of the monocoque. -1T3.30 Monocoque Laminate Testing -1T3.30.1 Teams must build a representative flat panel section of the monocoque side impact zone ("zone" is defined in T3.32.2 and T3.2(k)) and perform a 3 point bending test on this panel. They must prove by physical test that a section 200 mm x 500 mm has at least the same properties as a baseline steel side impact tube (See T3.3.1 "Baseline Steel Materials") for bending stiffness and two side impact tubes for yield and ultimate strength. -The data from these tests and pictures of the test samples must be included in the SES, the test results will be used to derive strength and stiffness properties used in the SES formulae for all laminate panels. The test specimen must be presented at technical inspection. If the test specimen does not meet these requirements then the monocoque side impact zone must be strengthened appropriately. -Note: Teams are advised to make an equivalent test with the base line steel tubes such that any compliance in the test rig can be accounted for. -1T3.30.2 If laminates with a lay-up different to that of the side-impact structure are used then additional physical tests must be completed for any part of the monocoque that forms part of the primary structure. The material properties derived from these tests must then be used in the SES for the appropriate equivalency calculations. -Note: A laminate with more or less plies, of the same lay-up as the side-impact structure, does not constitute a "different lay-up" and the material properties may be scaled accordingly. -1T3.30.3 Perimeter shear tests must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample. - -The sample, measuring at least 100 mm x 100 mm must have core and skin thicknesses identical to those used in the actual monocoque and be manufactured using the same materials and processes. -The fixture must support the entire sample, except for a 32 mm hole aligned co-axially with the punch. The sample must not be clamped to the fixture. -The force-displacement data and photos of the test setup must be included in the SES. -The first peak in the load-deflection curve must be used to determine the skin shear strength. This may be less than the minimum force required by T3.32.3/T3.33.3. -The maximum force recorded must meet the requirements of T3.32.3/T3.33.3. -Note: The edge of the punch and hole in the fixture may include an optional fillet up-to a maximum radius of 1 mm. -1T3.31 Monocoque Front Bulkhead -See Rule T3.27 for general requirements that apply to all aspects of the monocoque. In addition, when modeled as an "L" shaped section the EI of the front bulkhead about both vertical and lateral axis must be equivalent to that of the tubes specified for the front bulkhead under T3.18. The length of the section perpendicular to the bulkhead may be a maximum of -25.4 mm measured from the rearmost face of the bulkhead. -Furthermore, any front bulkhead which supports the IA plate must have a perimeter shear strength equivalent to a 1.5 mm thick steel plate. -1T3.32 Monocoque Front Bulkhead Support -1T3.32.1 In addition to proving that the strength of the monocoque is adequate, the monocoque must have equivalent EI to the sum of the EI of the six (6) baseline steel tubes that it replaces. -1T3.32.2 The EI of the vertical side of the front bulkhead support structure must be equivalent to at least the EI of one baseline steel tube that it replaces when calculated as per rule T3.29 Monocoque Buckling Modulus. -1T3.32.3 The perimeter shear strength of the monocoque laminate in the front bulkhead support structure should be at least 4 kN for a section with a diameter of 25 mm. This must be proven by a physical test completed as per T3.30.3 and the results include in the SES -1T3.33 Monocoque Side Impact -1T3.33.1 In addition to proving that the strength of the monocoque is adequate, the side of the monocoque must have equivalent EI to the sum of the EI of the three (3) baseline steel tubes that it replaces. -1T3.33.2 The side of the monocoque between the upper surface of the floor and 350 mm above the ground (Side Impact Zone) must have an EI of at least 50% of the sum of the EI of the three -(3) baseline steel tubes that it replaces when calculated as per Rule T3.29 Monocoque Buckling Modulus. -1T3.33.3 The perimeter shear strength of the monocoque laminate should be at least 7.5 kN for a section with a diameter of 25 mm. This must be proven by physical test completed as per T3.30.3 and the results included in the SES. - - - -Figure 12 - Side Impact Zone Definition for a Monocoque - - -1T3.34 Monocoque Main Hoop -1T3.34.1 The Main Hoop must be constructed of a single piece of uncut, continuous, closed section steel tubing per T3.3.1 and extend down to the bottom of the monocoque. -1T3.34.2 The Main Hoop must be mechanically attached at the top and bottom of the monocoque and at intermediate locations as needed to show equivalency. -1T3.34.3 Mounting plates welded to the Roll Hoop must be at least 2.0 mm thick steel. 1T3.34.4 Attachment of the Main Hoop to the monocoque must comply with T3.39. -1T3.35 Monocoque Front Hoop -1T3.35.1 Composite materials are not allowed for the front hoop. See Rule T3.27 for general requirements that apply to all aspects of the monocoque. - 1T3.35.2 Attachment of the Front Hoop to the monocoque must comply with Rule T3.39. 1T3.36 Monocoque Front and Main Hoop Bracing -1T3.36.1 See Rule T3.27 for general requirements that apply to all aspects of the monocoque. -1T3.36.2 Attachment of tubular Front or Main Hoop Bracing to the monocoque must comply with Rule -T3.39. -1T3.37 Monocoque Impact Attenuator and Anti-Intrusion Plate Attachment -The attachment of the Impact Attenuator and Anti-Intrusion Plate to a monocoque structure requires an approved "Structural Equivalency Spreadsheet" per Rule T3.8 that shows the equivalency to a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16 inch SAE Grade 5) bolts for the Anti-Intrusion Plate attachment and a minimum of four (4) bolts to the same minimum specification for the Impact Attenuator attachment. -1T3.38 Monocoque Impact Attenuator Anti-Intrusion Plate -1T3.38.1 See Rule T3.27 for general requirements that apply to all aspects of the monocoque and Rule -T3.20.3 for alternate Anti-Intrusion Plate designs. - -1T3.39 Monocoque Attachments -1T3.39.1 In any direction, each attachment point between the monocoque and the other primary structure must be able to carry a load of 30 kN. -1T3.39.2 The laminate, mounting plates, backing plates and inserts must have sufficient shear area, weld area and strength to carry the specified 30 kN load in any direction. Data obtained from the laminate perimeter shear strength test (T3.33.3) should be used to prove adequate shear area is provided -1T3.39.3 Each attachment point requires a minimum of two (2) 8 mm Metric Grade 8.8 or 5/16 inch SAE Grade 5 bolts -1T3.39.4 Each attachment point requires steel backing plates with a minimum thickness of 2.0 mm. -Alternate materials may be used for backing plates if equivalency is approved. -1T3.39.5 The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports only may use one (1) 10 mm Metric Grade 8.8 or 3/8 inch SAE Grade 5 bolt as an alternative to T3.39.3 if the bolt is on the centerline of tube similar to the figure below. - - -Figure 13 - Alternate Single Bolt Attachment - - - -1T3.39.6 No crushing of the core is permitted -1T3.39.7 Main Hoop bracing attached to a monocoque (i.e. not welded to a rear space frame) is always considered "mechanically attached" and must comply with Rule T3.16. -1T3.40 Monocoque Driver's Harness Attachment Points -1T3.40.1 The monocoque attachment points for the shoulder and lap belts must support a load of 13 kN before failure. -1T3.40.2 The monocoque attachment points for the ant-submarine belts must support a load of 6.5 kN before failure. -1T3.40.3 If the lap belts and anti-submarine belts are attached to the same attachment point, then this point must support a load of 19.5 kN before failure. -1T3.40.4 The strength of lap belt attachment and shoulder belt attachment must be proven by physical test where the required load is applied to a representative attachment point where the proposed layup and attachment bracket is used. - -ARTICLE T4 COCKPIT - -1T4.1 Cockpit Opening - -1T4.1.1 In order to ensure that the opening giving access to the cockpit is of adequate size, a template shown in Figure 14 will be inserted downwards into the cockpit opening. It will be held horizontally and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it has passed below the top bar of the Side Impact Structure (or until it is 350 mm (13.8 inches) above the ground for monocoque cars). Fore and aft translation of the template (while maintaining its position parallel to the ground) will be permitted during insertion. - - - - - -Figure 14 - Cockpit Opening Template - - -1T4.1.2 During this test, the steering wheel, steering column, seat and all padding may be removed. The shifter or shift mechanism may not be removed unless it is integral with the steering wheel and is removed with the steering wheel. The firewall may not be moved or removed. - -Note: As a practical matter, for the checks, the steering column will not be removed. The technical inspectors will maneuver the template around the steering column shaft, but not the steering column supports. -1T4.2 Cockpit Internal Cross Section: -1T4.2.1 A free vertical cross section, which allows the template shown in Figure 15 to be passed horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost pedal when in the inoperative position, must be maintained over its entire length. If the pedals are adjustable, they will be put in their most forward position. - - - - - -Figure 15 - Cockpit Internal Cross Section Template - - -1T4.2.2 The template, with maximum thickness of 7 mm, will be held vertically and inserted into the cockpit opening rearward of the rear-most portion of the steering column. -Note: At the discretion of the technical inspectors, the internal cross-section template may be moved vertically by small increments during fore and aft travel to clear height deviations in the floor of the vehicle (e.g. those caused by the steering rack, etc.). The template must still fit through the cross-section at the location of vertical deviation. -A video demonstrating the template procedure can be found on YouTube: -https://youtu.be/azz5kbmiQbw - -1T4.2.3 The only items that may be removed for this test are the steering wheel, and any padding required by Rule T5.8 "Driver's Leg Protection" that can be easily removed without the use - -of tools with the driver in the seat. The seat and any seat insert that may be used by any team member must remain in the cockpit. -1T4.2.4 Teams whose cars do not comply with T4.1 or T4.2 will not be given a Technical Inspection Sticker and will not be allowed to compete in the dynamic events. -Note: Cables, wires, hoses, tubes, etc. must not impede the passage of the templates required by -T4.1 and T4.2. -1T4.3 Driver's Seat -1T4.3.1 In side view the lowest point of the driver's seat must be no lower than the top surface of the lower frame rails or by having a longitudinal tube (or tubes) that meets the requirements for Side Impact tubing, passing underneath the lowest point of the seat. -1T4.3.2 When seated in the normal driving position, adequate heat insulation must be provided to ensure that the driver will not contact any metal or other materials which may become heated to a surface temperature above sixty degrees C (60C). The insulation may be external to the cockpit or incorporated with the driver's seat or firewall. The design must show evidence of addressing all three (3) types of heat transfer, namely conduction, convection and radiation, with the following between the heat source, e.g. an exhaust pipe or coolant hose/tube and the panel that the driver could contact, e.g. the seat or floor: -(a) Conduction Isolation by: -(i) No direct contact between the heat source and the panel, or -(ii) a heat resistant, conduction isolation material with a minimum thickness of 8 mm between the heat source and the panel. -(b) Convection Isolation by a minimum air gap of 25 mm between the heat source and the panel. -(c) Radiation Isolation by: -(i) A solid metal heat shield with a minimum thickness of 0.4 mm or -(ii) reflective foil or tape when combined with T4.3.2(a)(ii) above. -1T4.4 Floor Close-out -All vehicles must have a floor closeout made of one or more panels, which separate the driver from the pavement. If multiple panels are used, gaps between panels are not to exceed 3 mm. The closeout must extend from the foot area to the firewall and prevent track debris from entering the car. The panels must be made of a solid, non-brittle material. -1T4.5 Firewall -1T4.5.1 Firewall(s) must separate the driver compartment from the following components: -(a) Fuel Tanks. -(b) Accumulators. -(c) All components of the fuel supply. -(d) External engine oil systems including hoses, oil coolers, tanks, etc. -(e) Liquid cooling systems including those for I.C. engine and electrical components. -(f) Lithium-based GLV batteries. - -(g) All tractive systems (TS) components -(h) All conductors carrying tractive system voltages (TSV) (Whether contained within conduit or not.) -1T4.5.2 The firewall(s) must be a rigid, non-permeable surface made from 1.5 mm or thicker aluminum or proven equivalent. See Appendix H - Firewall Equivalency Test. -1T4.5.3 The firewall(s) must seal completely against the passage of fluids and hot gasses, including at the sides and the floor of the cockpit, e.g. there can be no holes in a firewall through which seat belts pass. -1T4.5.4 Pass-throughs for GLV wiring, cables, etc. are allowable if grommets are used to seal the pass- throughs. -Multiple panels may be used to form the firewall but must be mechanically fastened in place and sealed at the joints. -1T4.5.5 For those components listed in T4.5.1 that are mounted behind the driver, the firewall(s) must extend sufficiently far upwards and/or rearwards such that a straight line from any part of any listed component to any part of the tallest driver that is more than 150 mm below the top of his/her helmet, must pass through the firewall. -1T4.5.6 For those components listed in section T4.5.1 positioned under the driver, the firewall must extend: -(a) Continuously rearwards the full width of the cockpit from the Front Bulkhead, under and up behind the driver to a point where the helmet of the 95th percentile male template (T3.9.4) touches the head restraint, and -(b) Alongside the driver, from the top of the Side Impact Structure down to the lower portion of the firewall required by T4.5.6(a) and from the rearmost front suspension mounting point to connect (without holes or gaps) behind the driver with the firewall required by T4.5.6(a). -See Figure 16(a). -1T4.5.7 For those components listed in section T4.5.1 that are mounted outboard of the Side Impact System (e.g. in side pods), the firewall(s) must extend from 100 mm forward to 100 mm rearward of the of the listed components and -(a) alongside the driver at the full height of the listed component, and -(b) cover the top of the listed components and -(c) run either -(i) under the cockpit between the firewall(s) required by T4.5.7(a), or -(ii) extend 100 mm out under the listed components from the firewall(s) that are required by T4.5.8 -See Figure 16(b&c). -1T4.5.8 For the components listed in section T4.5.1 that are mounted in ways that do not fall clearly under any of sections T4.5.5, T4.5.6 or T4.5.7, the firewall must be configured to provide equivalent protection to the driver, and the firewall configuration must be approved by the Rules Committee. -1T4.5.9 Containers that meet the firewall requirements of T4.5.2, including accumulator containers, may be accepted as part of the firewall system; redundant barriers are not required. Tractive - -System wiring and conduit must not be exposed to the driver while seated in or during egress from the vehicle. -Note: To ensure adequate time for consideration and possible re-designs, applications should be submitted at least 1 month in advance of the event. - - -Figure 16 - Examples4 of firewall configurations - - -1T4.6 Accessibility of Controls -All vehicle controls, including the shifter, must be operated from inside the cockpit without any part of the driver, e.g. hands, arms or elbows, being outside the planes of the Side Impact Structure defined in Rule T3.24 and T3.33. -1T4.7 Driver Visibility -1T4.7.1 The driver must have adequate visibility to the front and sides of the car. With the driver seated in a normal driving position he/she must have a minimum field of vision of two hundred degrees (200) (a minimum one hundred degrees (100) to either side of the driver). The required visibility may be obtained by the driver turning his/her head and/or the use of mirrors. - - -4 The firewalls shown in red in Figure 16 are examples only and are not meant to imply that a firewall must lie outside the frame rails. - -1T4.7.2 If mirrors are required to meet Rule T4.7.1, they must remain in place and adjusted to enable the required visibility throughout all dynamic events. -1T4.8 Driver Egress -All drivers must be able to exit to the side of the vehicle in no more than 5 seconds. Egress time begins with the driver in the fully seated position, hands in driving position on the connected steering wheel and wearing the required driver equipment. Egress time will stop when the driver has both feet on the pavement. -1T4.9 Emergency Shut Down Test -1T4.9.1 With their vision obscured, all drivers must be able to operate the cockpit Big Red Button (BRB) in less than one second. -Time begins with the driver in the fully seated position, hands in driving position on the connected steering wheel, and wearing the required driver equipment. - -ARTICLE T5 DRIVER'S EQUIPMENT (BELTS AND COCKPIT PADDING) - -1T5.1 Belts - General -1T5.1.1 Definitions (Note: Belt dimensions listed are nominal widths.) -(a) 5-point system - consists of a lap belt, two (2) shoulder straps and a single anti-submarine strap. -(b) 6-point system - consists of a lap belt, two (2) shoulder straps and two (2) leg or anti- submarine straps. -(c) 7-point system - system is the same as the 6-point except it has three (3) anti-submarine straps, two (2) from the 6-point system and one (1) from the 5-point system. -(d) Upright driving position - is defined as one with a seat back angled at thirty degrees (30) or less from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in Table 6 and positioned per T3.9.4. -(e) Reclined driving position - is defined as one with a seat back angled at more than thirty degrees (30) from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in Table 6 and positioned per T3.9.4. -(f) Chest-groin line - is the straight line that in side view follows the line of the shoulder belts from the chest to the release buckle. -1T5.1.2 Harness Requirements -All drivers must use a 5, 6 or 7 point restraint harness meeting the following specifications: -(a) SFI Specification 16.1, SFI Specification 16.5, SFI Specification 16.6, or FIA specification 8853/98 or FIA specification 8853-2016. -Note: FIA harnesses with 44 mm ("2 inch") shoulder straps meeting T5.1.2 and T5.1.3 are approved for use at FH+E -(b) To accommodate drivers of differing builds, all lap belts must incorporate a tilt lock adjuster ("quick adjuster"). - -Note: Lap belts with "pull-up" adjusters are recommended over "pull-down" adjusters and a tilt lock adjuster in each portion of the lap belt is highly recommended. -(c) Cars with a "reclined driving position" (see T5.1.1(e) above) must have either a 6 point or 7-point harness, AND have either anti-submarine belts with tilt lock adjusters ("quick adjusters") or have two (2) sets of anti-submarine belts installed. -(d) The shoulder harness must be the over-the-shoulder type. Only separate shoulder straps are permitted (i.e. "Y"-type shoulder straps are not allowed). The "H"-type configuration is allowed. -(e) The belts must bear the appropriate dated labels. -(f) The material of all straps must be in perfect condition. -1T5.1.3 Harness Replacement - Harnesses must be replaced following December 31st of the year of the expiration date shown on the label. (Note: SFI belts are normally certified for two (2) years from the date of manufacture while FIA belts are normally certified for five (5) years from the date of manufacture.) -1T5.1.4 The restraint system must be worn tightly at all times. -1T5.2 Belt, Strap and Harness Installation - General -1T5.2.1 The lap belt, shoulder harness and anti-submarine strap(s) must be securely mounted to the Primary Structure. Such structure and any guide or support for the belts must meet the minimum requirements of T3.3.1. -Note: Rule T3.4.5 applies to these tubes as well so a non-straight shoulder harness bar would require support per T3.4.5 -1T5.2.2 The tab or bracket to which any harness is attached must fulfill the following requirements: -(a) Have a minimum cross sectional area of 60 sq. mm (0.093 sq. in) of steel to be sheared or failed in tension at any point of the tab, and -(b) Have a minimum thickness of 1.6 mm (0.063 inch). -(c) Where lap belts and anti-submarine belts use the same attachment point, there must be a minimum cross sectional area of 90 sq. mm (0.140 sq. in) of steel to be sheared or failed in tension at any point of the tab. -(d) Where brackets are fastened to the chassis, two 6mm Metric Grade 8.8 (1/4 inch SAE Grade 5) fasteners or stronger must be used to attach the bracket to the chassis. -(e) Where a single shear tab is welded to the chassis, the tab to tube welding must be on both sides of the base of the tab. -(f) The bracket or tab should be aligned such that it is not put in bending when that portion of the harness is put under load. -NOTE: Double shear attachments are preferred. Where possible, the tabs and brackets for double shear mounts should also be welded on both sides. -1T5.2.3 Harnesses, belts and straps must not pass through a firewall, i.e. all harness attachment points must be on the driver's side of any firewall. -1T5.2.4 The attachment of the Driver's Restraint System to a monocoque structure requires an approved Structural Equivalency Spreadsheet per Rule T3.8. - -1T5.2.5 All adjusters must be threaded in accordance with manufacturer's instructions. Examples are given in Figure 17. - - - - -Figure 17 - Seat Belt Threading Examples - - -1T5.2.6 The restraint system installation is subject to approval of the Chief Technical Inspector. -1T5.3 Lap Belt Mounting -1T5.3.1 The lap belt must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip bones). -1T5.3.2 The lap belts must not be routed over the sides of the seat. The lap belts must come through the seat at the bottom of the sides of the seat to maximize the wrap of the pelvic surface and continue in a straight line to the anchorage point. -1T5.3.3 Where the belts or harness pass through a hole in the seat, the seat must be rolled or grommeted to prevent chafing of the belts. -1T5.3.4 To fit drivers of differing statures correctly, in side view, the lap belt must be capable of pivoting freely by using either a shouldered bolt or an eye bolt attachment, i.e. mounting lap belts by wrapping them around frame tubes is no longer acceptable. -1T5.3.5 With an "upright driving position", in side view the lap belt must be at an angle of between forty-five degrees (45) and sixty-five degrees (65) to the horizontal. This means that the centerline of the lap belt at the seat bottom should be between 0 - 76 mm forward of the seat back to seat bottom junction. (See Figure 18) - - - - -Figure 18 - Lap Belt Angles with Upright Driver - - -1T5.3.6 With a "reclined driving position", in side view the lap belt must be between an angle of sixty degrees (60) and eighty degrees (80) to the horizontal. -1T5.3.7 Any bolt used to attach a lap belt, either directly to the chassis or to an intermediate bracket, must be a minimum of either: -(a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR -(b) The bolt diameter specified by the harness manufacturer. -1T5.4 Shoulder Harness -1T5.4.1 The shoulder harness must be mounted behind the driver to structure that meets the requirements of T3.3.1. However, it cannot be mounted to the Main Roll Hoop Bracing or attendant structure without additional bracing to prevent loads being transferred into the Main Hoop Bracing. -1T5.4.2 If the harness is mounted to a tube that is not straight, the joints between this tube and the structure to which it is mounted must be reinforced in side view by gussets or triangulation tubes to prevent torsional rotation of the harness mounting tube. -1T5.4.3 The shoulder harness mounting points must be between 178 mm and 229 mm apart. (See -Figure 19) - - - - -Figure 19 - Shoulder Harness Mounting - Top View - - -1T5.4.4 From the driver's shoulders rearwards to the mounting point or structural guide, the shoulder harness must be between ten degrees (10) above the horizontal and twenty degrees (20) below the horizontal. (See Figure 20). - - - - - -Figure 20 - Shoulder Harness Mounting - Side View - - -1T5.4.5 Any bolt used to attach a shoulder harness belt, either directly to the chassis or to an intermediate bracket, must be must be a minimum of either: -(a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR -(b) The bolt diameter specified by the harness manufacturer. -1T5.5 Anti-Submarine Belt Mounting -1T5.5.1 The anti-submarine belt of a 5-point harness must be mounted so that the mounting point is in line with, or angled slightly forward (up to twenty degrees (20)) of, the driver's chest-groin line. - - - - -1T5.5.2 The anti-submarine belts of a 6 point harness must be mounted either: -(a) With the belts going vertically down from the groin, or angled up to twenty degrees (20) rearwards. The anchorage points should be approximately 100 mm apart. Or - - - - -(b) With the anchorage points on the Primary Structure at or near the lap belt anchorages, the driver sitting on the anti-submarine belts, and the belts coming up around the groin to the release buckle. - - - -1T5.5.3 All anti-submarine belts must be installed so that they go in a straight line from the anchorage point(s) to: -? Either the harness release buckle for the 5-point mounting per T5.5.1, - -? Or the first point where the belts touch the driver's body for the 6-point mounting per -T5.5.2(a) or T5.5.2(b). -without touching any hole in the seat or any other intermediate structure. -1T5.5.4 Any bolt used to attach an anti-submarine belt, either directly to the chassis or to an intermediate bracket, must be a must be a minimum of either: -(a) 8mm Metric Grade 8.8 (5/16 inch SAE Grade 5) OR -(b) The bolt diameter specified by the belt manufacturer. -1T5.6 Head Restraint -1T5.6.1 A head restraint must be provided on the car to limit the rearward motion of the driver's head. 1T5.6.2 The restraint must: -(a) Be vertical or near vertical in side view. -(b) Be padded with a minimum thickness of 38 mm (1.5 inches) of an energy absorbing material that meets either SFI Standard 45.2, or is listed on the FIA Technical List No. 17 as a "Type A or a Type B Material for single seater cars", i.e. CONFOR(tm) foam CF- 42AC (pink) or CF-42M (pink) or CF45 (blue) or CF45M (blue) . -(c) Have a minimum width of 15 cm (6 inches). -(d) Have a minimum area of 235 sq. cms (36 sq. inches) AND have a minimum height adjustment of 17.5 cm (7 inches), OR have a minimum height of 28 cm (11 inches). -(e) Be covered in a thin, flexible cover with a hole with a minimum dimeter of 20 mm in a surface other than the front surface, through which the energy absorbing material can be seen. -(f) Be located so that for each driver: -(i) The restraint is no more than 25 mm (1 inch) away from the back of the driver's helmet, with the driver in their normal driving position. -(ii) The contact point of the back of the driver's helmet on the head restraint is no less than 50 mm (2 inches) from any edge of the head restraint. -Note 1: Head restraints may be changed to accommodate different drivers (See T1.2.2(d)). Note 2: The above requirements must be met for all drivers. -Note 3: Approximately 100 mm (4 inches) longitudinal adjustment is required to accommodate -5th to 95th Percentile drivers. This is not a specific rules requirement, but teams must have sufficient longitudinal adjustment and/or alternative thickness head restraints available, such that the above requirements are met by all their drivers. -1T5.6.3 The restraint, its attachment and mounting must be strong enough to withstand a force of 890 Newtons applied in a rearward direction. - -1T5.7 Roll Bar Padding -Any portion of the roll bar, roll bar bracing or frame which might be contacted by the driver's helmet must be covered with a minimum thickness of 12 mm (0.5 inches) of padding which meets SFI spec 45.1 or FIA 8857-2001. -1T5.8 Driver's Leg Protection -1T5.8.1 To keep the driver's legs away from moving or sharp components, all moving suspension and steering components, and other sharp edges inside the cockpit between the front roll hoop and a vertical plane 100 mm rearward of the pedals, must be shielded with a shield made of a solid material. Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti-roll/sway bars, steering racks and steering column CV joints. -1T5.8.2 Covers over suspension and steering components must be removable to allow inspection of the mounting points. - -ARTICLE T6 GENERAL CHASSIS RULES - -1T6.1 Suspension -1T6.1.1 The car must be equipped with a fully operational suspension system with shock absorbers, front and rear, with usable wheel travel of at least 50.8 mm, 25.4 mm jounce and 25.4 mm rebound, with driver seated. The judges reserve the right to disqualify cars which do not represent a serious attempt at an operational suspension system or which demonstrate handling inappropriate for an autocross circuit. -1T6.1.2 All suspension mounting points must be visible at Technical Inspection, either by direct view or by removing any covers. -1T6.2 Ground Clearance -The ground clearance must be sufficient to prevent any portion of the car (other than tires) from touching the ground during track events, and with the driver aboard there must be a minimum of 25.4 mm of static ground clearance under the complete car at all times. -1T6.3 Wheels -1T6.3.1 The wheels of the car must be 8 inches (203.2 mm) or more in diameter. -1T6.3.2 Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel in the event that the nut loosens. A second nut ("jam nut") does not meet these requirements. -1T6.3.3 Standard wheel lug bolts are considered engineering fasteners and any modification will be subject to extra scrutiny during technical inspection. Teams using modified lug bolts or custom designs will be required to provide proof that good engineering practices have been followed in their design. -1T6.3.4 Aluminum wheel nuts may be used, but they must be hard anodized and in pristine condition. -1T6.4 Tires -1T6.4.1 Vehicles may have two types of tires as follows: -(a) Dry Tires - The tires on the vehicle when it is presented for technical inspection are defined as its "Dry Tires". The dry tires may be any size or type. They may be slicks or treaded. - -(b) Rain Tires - Rain tires may be any size or type of treaded or grooved tire provided: -(i) The tread pattern or grooves were molded in by the tire manufacturer, or were cut by the tire manufacturer or his appointed agent. Any grooves that have been cut must have documentary proof that it was done in accordance with these rules. -(ii) There is a minimum tread depth of 2.4 mm. -Note: Hand cutting, grooving or modification of the tires by the teams is specifically prohibited. -1T6.4.2 Within each tire set, the tire compound or size, or wheel type or size may not be changed after static judging has begun. Tire warmers are not allowed. No traction enhancers may be applied to the tires after the static judging has begun. -1T6.5 Steering -1T6.5.1 The steering wheel must be mechanically connected to the wheels, i.e. "steer-by-wire" or electrically actuated steering is prohibited. -1T6.5.2 The steering system must have positive steering stops that prevent the steering linkages from locking up (the inversion of a four-bar linkage at one of the pivots). The stops may be placed on the uprights or on the rack and must prevent the tires from contacting suspension, body, or frame members during the track events. -1T6.5.3 Allowable steering system free play is limited to seven degrees (7) total measured at the steering wheel. -1T6.5.4 The steering wheel must be attached to the column with a quick disconnect. The driver must be able to operate the quick disconnect while in the normal driving position with gloves on. -1T6.5.5 Rear wheel steering, which can be electrically actuated, is permitted but only if mechanical stops limit the range of angular movement of the rear wheels to a maximum of six degrees (6). This must be demonstrated with a driver in the car and the team must provide the facility for the steering angle range to be verified at Technical Inspection. -1T6.5.6 The steering wheel must have a continuous perimeter that is near circular or near oval, i.e. the outer perimeter profile can have some straight sections, but no concave sections. "H", "Figure 8", or cutout wheels are not allowed. -1T6.5.7 In any angular position, the top of the steering wheel must be no higher than the top-most surface of the Front Hoop. See Figure 7. -1T6.5.8 Steering systems using cables for actuation are not prohibited by T6.5.1 but additional documentation must be submitted. The team must submit a failure modes and effects analysis report with design details of the proposed system as part of the structural equivalency spreadsheet (SES). -The report must outline the analysis that was done to show the steering system will function properly, potential failure modes and the effects of each failure mode and finally failure mitigation strategies used by the team. The organizing committee will review the submission and advise the team if the design is approved. If not approved, a non-cable based steering system must be used instead. -1T6.5.9 The steering rack must be mechanically attached to the frame. If fasteners are used they must be compliant with ARTICLE T11. - -1T6.5.10 Joints between all components attaching the steering wheel to the steering rack must be mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup are not permitted. -1T6.6 Jacking Point -1T6.6.1 A jacking point, which is capable of supporting the car's weight and of engaging the organizers' "quick jacks", must be provided at the rear of the car. -1T6.6.2 The jacking point is required to be: -(a) Visible to a person standing 1 meter behind the car. -(b) Painted orange. -(c) Oriented horizontally and perpendicular to the centerline of the car -(d) Made from round, 25-29 mm O.D. aluminum or steel tube -(e) A minimum of 300 mm long -(f) Exposed around the lower 180 degrees (180) of its circumference over a minimum length of 280 mm -(g) The height of the tube is required to be such that: -(i) There is a minimum of 75 mm clearance from the bottom of the tube to the ground measured at tech inspection. -(ii) With the bottom of the tube 200 mm above ground, the wheels do not touch the ground when they are in full rebound. -Comment on Disabled Cars - The organizers and the Rules Committee remind teams that cars disabled on course must be removed as quickly as possible. A variety of tools may be used to move disabled cars including quick jacks, dollies of different types, tow ropes and occasionally even boards. We expect cars to be strong enough to be easily moved without damage. Speed is important in clearing the course and although the course crew exercises due care, parts of a vehicle can be damaged during removal. The organizers are not responsible for damage that occurs when moving disabled vehicles. Removal/recovery workers will jack, lift, carry or tow the car at whatever points they find easiest to access. Accordingly, we advise teams to consider the strength and location of all obvious jacking, lifting and towing points during the design process. -1T6.7 Rollover Stability -1T6.7.1 The track and center of gravity of the car must combine to provide adequate rollover stability. 1T6.7.2 Rollover stability will be evaluated on a tilt table using a pass/fail test. The vehicle must not roll -when tilted at an angle of sixty degrees (60) to the horizontal in either direction, corresponding to 1.7 G's. The tilt test will be conducted with the tallest driver in the normal driving position. - -ARTICLE T7 BRAKE SYSTEM - -1T7.1 Brake System - General -1T7.1.1 The car must be equipped with a braking system that acts on all four wheels and is operated by a single control. - -1T7.1.2 It must have two (2) independent hydraulic circuits such that in the case of a leak or failure at any point in the system, effective braking power is maintained on at least two (2) wheels. Each hydraulic circuit must have its own fluid reserve, either by the use of separate reservoirs or by the use of a dammed, OEM-style reservoir. -1T7.1.3 A single brake acting on a limited-slip differential is acceptable. -1T7.1.4 The brake system must be capable of locking all four (4) wheels during the test specified in section T7.2. -1T7.1.5 "Brake-by-wire" systems are prohibited. 1T7.1.6 Unarmored plastic brake lines are prohibited. -1T7.1.7 The braking systems must be protected with scatter shields from failure of the drive train (see -T8.4) or from minor collisions. -1T7.1.8 In side view no portion of the brake system that is mounted on the sprung part of the car can project below the lower surface of the frame or the monocoque, whichever is applicable. -1T7.1.9 The brake pedal must be designed to withstand a force of 2000 N without any failure of the brake system or pedal box. This may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally. -1T7.1.10 The brake pedal must be fabricated from steel or aluminum or machined from steel, aluminum or titanium. -1T7.1.11 The first 50% of the brake pedal travel may be used to control regeneration without necessarily actuating the hydraulic brake system. -The remaining brake pedal travel must directly actuate the hydraulic brake system, but brake energy regeneration may remain active. - -Note: Any strategy to regenerate energy while coasting or braking must be covered by the ESF. -1T7.2 Brake Test -1T7.2.1 The brake system will be dynamically tested and must demonstrate the capability of locking all four (4) wheels and stopping the vehicle in a straight line at the end of an acceleration run specified by the brake inspectors5. -1T7.2.2 After accelerating, the tractive system must be switched off by the driver and the driver has to lock all four wheels of the vehicle by braking. The brake test is passed if all four wheels simultaneously lock while the tractive system is shut down. -Note: It is acceptable if the Tractive System Active Light switches off shortly after the vehicle has come to a complete stop as the reduction of the system voltage may take up to 5 seconds. -1T7.3 Brake Over-Travel Switch -1T7.3.1 A brake pedal over-travel switch must be installed on the car as part of the shutdown system and wired in series with the shutdown buttons (EV7.1). This switch must be installed so that in the event of brake system failure such that the brake pedal over travels it will result in the shutdown system being activated. - - - -5 It is a persistent source of mystery to the organizers, how a small percentage of teams, after passing all the required inspections, appear to have never checked to see if they can lock all four wheels. Check this early! - -1T7.3.2 Repeated actuation of the switch must not restore power to these components, and it must be designed so that the driver cannot reset it. -1T7.3.3 The brake over-travel switch must not be used as a mechanical stop for the brake pedal and must be installed in such a way that it and its mounting will remain intact and operational when actuated. -1T7.3.4 The switch must be implemented directly. i.e. It may not operate through programmable logic controllers, engine control units, or digital controllers -1T7.3.5 The Brake Over-Travel switch must be a mechanical single pole, single throw (commonly known as a two-position) switch (push-pull or flip type) as shown below. - - - - -Figure 21 - Over-travel Switches - - -1T7.4 Brake Light -1T7.4.1 The car must be equipped with a red brake light. -1T7.4.2 The brake light itself must have a black background and a rectangular, triangular or near round shape with a minimum shining surface of at least 15 cm2. -1T7.4.3 The brake light must be clearly visible from the rear in bright sunlight. -1T7.4.4 When LED lights are used without an optical diffuser, they may not be more than 20 mm apart. -If a single line of LEDs is used, the minimum length is 150 mm. -1T7.4.5 The light must be mounted between the wheel centerline and driver's shoulder level vertically and approximately on vehicle centerline laterally. - -ARTICLE T8 POWERTRAIN - -1T8.1 Coolant Fluid Limitations -1T8.1.1 Water-cooled engines must use only plain water. Glycol-based antifreeze, "water wetter", water pump lubricants of any kind, or any other additives are strictly prohibited. -1T8.1.2 Electric motors, accumulators or electronics must use plain water or approved6 fluids as the coolant. - - -6 "Opticool" (http://dsiventures.com/electronics-cooling/opticool-a-fluid/) is permitted. - -1T8.2 System Sealing -1T8.2.1 Any cooling or lubrication system must be sealed to prevent leakage. -1T8.2.2 Any vent on a cooling or lubrication system must employ a catch-can to retain any fluid that is expelled. A separate catch-can is required for each vent. -1T8.2.3 Each catch-can on a cooling or lubrication system must have a minimum volume of ten (10) percent of the fluid being contained, or 0.9 liter whichever is greater. -1T8.2.4 Any vent on other systems containing liquid lubricant, e.g. a differential or gearbox, etc., must have a catch-can with a minimum volume of ten (10) percent of the fluid being contained or -0.5 liter, whichever is greater. -1T8.2.5 Catch-cans must be capable of containing liquids at temperatures in excess of 100 deg. C without deformation, be shielded by a firewall, be below the driver's shoulder level, and be positively retained, i.e. no tie-wraps or tape as the primary method of retention. -1T8.2.6 Any catch-can for a cooling system must vent through a hose with a minimum internal diameter of 3 mm down to the bottom levels of the Frame. -1T8.3 Transmission and Drive -Any transmission may be used. -1T8.4 Drive Train Shields and Guards -1T8.4.1 Exposed high-speed final drivetrain equipment such as Continuously Variable Transmissions (CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives and clutch drives, must be fitted with scatter shields in case of failure. The final drivetrain shield must cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley. The final drivetrain shield must start and end parallel to the lowest point of the chain wheel/belt/pulley. (See Figure 22) Body panels or other existing covers are not acceptable unless constructed from approved materials per T8.4.3 or T8.4.4. - -Note: If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. - - - - - - -Figure 22 - Final Drive Scatter Shield Example - - -Comment: Scatter shields are intended to contain drivetrain parts which might separate from the car. - -1T8.4.2 Perforated material may not be used for the construction of scatter shields. -1T8.4.3 Chain Drive - Scatter shields for chains must be made of at least 2.6 mm steel or stainless steel (no alternatives are allowed), and have a minimum width equal to three (3) times the width of the chain. The guard must be centered on the center line of the chain and remain aligned with the chain under all conditions. -1T8.4.4 Non-metallic Belt Drive - Scatter shields for belts must be made from at least 3.0 mm Aluminum Alloy 6061-T6, and have a minimum width that is equal to 1.7 times the width of the belt. -1T8.4.5 The guard must be centered on the center line of the belt and remain aligned with the belt under all conditions. -1T8.4.6 Attachment Fasteners - All fasteners attaching scatter shields and guards must be a minimum 6mm Metric Grade 8.8 or 1/4 inch SAE Grade 5 or stronger. -1T8.4.7 Finger Guards - Finger guards are required to cover any drivetrain parts that spin while the car is stationary with the engine running. Finger guards may be made of lighter material, sufficient to resist finger forces. Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard. -Comment: Finger guards are intended to prevent finger intrusion into rotating equipment while the vehicle is at rest. -1T8.5 Integrity of systems carrying fluids - Tilt Test -1T8.5.1 During technical inspection, the car must be capable of being tilted to a forty-five degree (45) angle without leaking fluid of any type. - -1T8.5.2 The tilt test will be conducted on hybrid cars with the fuel tank filled with either 3.7 litres of fuel or to 50 mm below the top of the filler neck (whichever is less), and on all cars with all other vehicle systems that contain fluids filled to their normal maximum capacity. - -ARTICLE T9 AERODYNAMIC DEVICES - -1T9.1 Aero Dynamics and Ground Effects - General -All aerodynamic devices must satisfy the following requirements: -1T9.2 Location -In plan view, no part of any aerodynamic device, wing, under tray or splitter can be: -(a) Further forward than 460 mm forward of the fronts of the front tires -(b) No further rearward than the rear of the rear tires. -(c) No wider than the outside of the front tires or rear tires measured at the height of the hubs, whichever is wider. -1T9.3 Wing Edges - Minimum Radii -All wing leading edges must have a minimum radius 12.7 mm. Wing leading edges must be as blunt or blunter than the required radii for an arc of plus or minus 45 degrees ( 45) centered on a plane parallel to the ground or similar reference plane for all incidence angles which lie within the range of adjustment of the wing or wing element. If leading edge slats or slots are used, both the fronts of the slats or slots and of the main body of the wings must meet the minimum radius rules. -1T9.4 Other Edge Radii Limitations -All wing edges, end plates, Gurney flaps, wicker bills, splitters undertrays and any other wing accessories must have minimum edge radii of at least 3 mm i.e., this means at least a 6 mm thick edge. -1T9.5 Ground Effect Devices -No power device may be used to move or remove air from under the vehicle except fans designed exclusively for cooling. Power ground effects are prohibited. -1T9.6 Driver Egress Requirements -1T9.6.1 Egress from the vehicle within the time set in Rule T4.8 "Driver Egress," must not require any movement of the wing or wings or their mountings. -1T9.6.2 The wing or wings must be mounted in such positions, and sturdily enough, that any accident is unlikely to deform the wings or their mountings in such a way to block the driver's egress. - -ARTICLE T10 COMPRESSED GAS SYSTEMS AND HIGH PRESSURE HYDRAULICS - -1T10.1 Compressed Gas Cylinders and Lines -Any system on the vehicle that uses a compressed gas as an actuating medium must comply with the following requirements: -(a) Working Gas -The working gas must be nonflammable, e.g. air, nitrogen, carbon dioxide. - -(b) Cylinder Certification - The gas cylinder/tank must be of proprietary manufacture, designed and built for the pressure being used, certified by an accredited testing laboratory in the country of its origin, and labeled or stamped appropriately. -(c) Pressure Regulation -The pressure regulator must be mounted directly onto the gas cylinder/tank. -(d) Protection - The gas cylinder/tank and lines must be protected from rollover, collision from any direction, or damage resulting from the failure of rotating equipment. -(e) Cylinder Location - The gas cylinder/tank and the pressure regulator must be located either rearward of the Main Roll Hoop and within the envelope defined by the Main Roll Hoop and the Frame (See T3.2), or in a structural side-pod. In either case it must be protected by structure that meets the requirements of T3.24 or T3.33. It must not be located in the cockpit. -(f) Cylinder Mounting - The gas cylinder/tank must be securely mounted to the Frame, engine or transmission. -(g) Cylinder Axis - The axis of the gas cylinder/tank must not point at the driver. -(h) Insulation - The gas cylinder/tank must be insulated from any heat sources, e.g. the exhaust system. -(i) Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible operating pressure of the system. -1T10.2 High Pressure Hydraulic Pumps and Lines -The driver and anyone standing outside the car must be shielded from any hydraulic pumps and lines with line pressures of 300 psi (2100 kPa) or higher. The shields must be steel or aluminum with a minimum thickness of 1 mm. -Note: Brake and hydraulic clutch lines are not classified as "hydraulic pump lines" and as such, are excluded from T10.2. - -ARTICLE T11 FASTENERS - -1T11.1 Fastener Grade Requirements -1T11.1.1 All threaded fasteners utilized in the driver's cell structure, plus the steering, braking, driver's harness and suspension systems must meet or exceed, SAE Grade 5, Metric Grade 8.8 and/or AN/MS specifications. -1T11.1.2 The use of button head cap, pan head, flat head, round head or countersunk screws or bolts in ANY location in the following systems is prohibited: -(a) Driver's cell structure, -(b) Impact attenuator attachment -(c) Driver's harness attachment -(d) Steering system -(e) Brake system -(f) Suspension system. - -Note: Hexagonal recessed drive screws or bolts (sometimes called Socket head cap screws or Allen screws/bolts) are permitted. -1T11.2 Securing Fasteners -1T11.2.1 All critical bolt, nuts, and other fasteners on the steering, braking, driver's harness, and suspension must be secured from unintentional loosening by the use of positive locking mechanisms. -Positive locking mechanisms are defined as those that: -(a) The Technical Inspectors (and the team members) are able to see that the device/system is in place, i.e. it is visible, AND -(b) The "positive locking mechanism" does not rely on the clamping force to apply the "locking" or anti-vibration feature. In other words, if it loosens a bit, it still prevents the nut or bolt from coming completely loose. -See Figure 23 -Positive locking mechanisms include: -(a) Correctly installed safety wiring -(b) Cotter pins -(c) Nylon lock nuts (where the temperature does not exceed 80OC) -(d) Prevailing torque lock nuts -Note: Lock washers, bolts with nylon patches, and thread locking compounds, e.g. Loctite(r), DO NOT meet the positive locking requirement. - - -Figure 23 - Examples of positive locking nuts - - -1T1.1.2 There must be a minimum of two (2) full threads projecting from any lock nut. -1T1.1.3 All spherical rod ends and spherical bearings on the steering or suspension must be in double shear or captured by having a screw/bolt head or washer with an O.D. that is larger than spherical bearing housing I.D. -1T1.1.4 Adjustable tie-rod ends must be constrained with a jam nut to prevent loosening. - -ARTICLE T2 TRANSPONDERS - -1T2.1 Transponders -1T2.1.1 Transponders will be used as part of the timing system for the Formula Hybrid + Electric competition. -1T2.1.2 Each team is responsible for having a functional, properly mounted transponder of the specified type on their vehicle. Vehicles without a specified transponder will not be allowed to compete in any event for which a transponder is used for timing and scoring. -1T2.1.3 All vehicles must be equipped with at least one MYLAPS Car/Bike Rechargeable Power Transponder or MYLAPS Car/Bike Direct Power Transponder7. -Note 1: Except for their name, AMB TranX260 transponders are identical to MYLAPS Car/Bike Transponders and comply with this rule. If you own a functional AMB TranX260 it does not need to be replaced. - -Note 2: It is the responsibility of the team to ensure that electrical interference from their vehicle does not stop the transponder from functioning correctly - - -1T2.2 Transponder Mounting - All Events -The transponder mounting requirements are: - -(a) Orientation - The transponder must be mounted vertically and orientated so the number can be read "right-side up". -(b) Location - The transponder must be mounted on the driver's right side of the car forward of the front roll hoop. The transponder must be no more than 60 cm above the track. -(c) Obstructions - There must be an open, unobstructed line between the antenna on the bottom of the transponder and the ground. Metal and carbon fiber may interrupt the transponder signal. The signal will normally transmit through fiberglass and plastic. If the signal will be obstructed by metal or carbon fiber, a 10.2 cm diameter opening can be cut, the transponder mounted flush with the opening, and the opening covered with a material transparent to the signal. -(d) Protection - Mount the transponder where it will be protected from obstacles. - - -7 Transponders are usually available for loan at the competition. Please ask the organizers well in advance to confirm availability. - -ARTICLE T3 VEHICLE IDENTIFICATION - -1T3.1 Car Number -1T3.1.1 Each car will be assigned a number at the time of its entry into a competition. 1T3.1.2 Car numbers must appear on the vehicle as follows: -(a) Locations: In three (3) locations: the front and both sides; -(b) Height: At least 15.24 cm high; -(c) Font: Block numbers (i.e. sans-serif characters). Italic, outline, serif, shadow, or cursive numbers are prohibited. -(d) Stroke Width and Spacing between Numbers: At least 2.0 cm. -(e) Color: Either white numbers on a black background or black numbers on a white background. No other color combinations will be approved. -(f) Background shape: The number background must be one of the following: round, oval, square or rectangular. There must be at least 2.5 cm between the edge of the numbers and the edge of the background. -(g) Clear: The numbers must not be obscured by parts of the car, e.g. wheels, side pods, exhaust system, etc. -1T3.1.3 While car numbers for teams registered for Formula Hybrid + Electric can be found on the "Registered Teams" section of the SAE Collegiate Design Series website, please be sure to check with Formula Hybrid +Electric officials to ensure these numbers are correct. -Comment: Car numbers must be quickly read by course marshals when your car is moving at speed. Make your numbers easy to see and easy to read. - - - -Figure 24 - Example Car Number - - -1T3.2 School Name -1T3.2.1 Each car must clearly display the school name (or initials - if unique and generally recognized) in roman characters at least 5 cm high on both sides of the vehicle. The characters must be placed on a high contrast background in an easily visible location. -1T3.2.2 The school name may also appear in non-roman characters, but the roman character version must be uppermost on the sides. - -1T3.3 SAE & IEEE Logos -1T3.3.1 SAE and IEEE logos must be prominently displayed on the front and/or both sides of the vehicle. Each logo must be at least 7 cm x 20 cm. The organizers will provide the following decals at the competition: -(a) SAE, 7.6 cm x 20.3 cm in either White or Black. -(b) IEEE, 11.4 cm x 30.5 cm (Blue only). -Actual-size JPEGs may be downloaded from the Formula Hybrid + Electric website. -1T3.4 Technical Inspection Sticker Space -Technical inspection stickers will be placed on the upper nose of the vehicle. Cars must have a clear and unobstructed area at least 25.4 cm wide x 20.3cm high on the upper front surface of the nose along the vehicle centerline. - -ARTICLE T4 EQUIPMENT REQUIREMENTS - -1T4.1 Driver's Equipment -The equipment specified below must be worn by the driver anytime he or she is in the cockpit with the engine running or with the tractive system energized. -1T4.2 Helmet -1T4.2.1 A well-fitting, closed face helmet that meets one of the following certifications and is labeled as such: -(a) Snell K2010, K2015, K2020, M2010, M2015, M2020, SA2010, SAH2010, SA2015, -SA2020, EA2016 -(b) SFI 31.1/2020, SFI 41.1/2020 -(c) FIA 8859-2015, FIA 8860-2004, FIA 8860-2010, FIA 8860-2016, FIA 8860-2018. Open -faced helmets and off-road/motocross helmets (helmets without integrated face shields) are not approved. -1T4.2.2 All helmets to be used in the competition must be presented during Technical Inspection where approved helmets will be stickered. The organizer reserves the right to impound all non- approved helmets until the end of the competition. -1T4.3 Balaclava -A balaclava which covers the driver's head, hair and neck, made from acceptable fire resistant material as defined in T14.12, or a full helmet skirt of acceptable fire resistant material. The balaclava requirement applies to drivers of either gender, with any hair length. -1T4.4 Eye Protection -An impact resistant face shield, made from approved impact resistant materials. The face shields supplied with approved helmets (See T14.2 above) meet this requirement. - -1T4.5 Suit -A fire-resistant suit that covers the body from the neck down to the ankles and the wrists. One -(1) piece suits are required. The suit must be in good condition, i.e. it must have no tears or open seams, or oil stains that could compromise its fire-resistant capability. -The suit must be certified to one of the following standards and be labeled as such: - - - - - --FIA 8856-2018 - - --SFI 3.4/5 - --FIA Standard 8856-1986 - --SFI 3-2A/1 but only when used with fire resistant, e.g. Nomex, underwear -that covers the body from wrist to ankles. --SFI 3-2A/5 (or higher) - - -- FIA Standard 8856-2000 - - -Table 7 - SFI / FIA Standards Logos - - -Note: An SFI 3-2A/1 or 3.4/1 (single layer) suit is ONLY allowed WITH fire resistant underwear. - - -1T4.6 Underclothing -All drivers should wear fire resistant underwear (long pants and long sleeve top) under their approved driving suit. This fire resistant underwear must be made from acceptable fire resistant material and cover the driver's body completely from the neck down to the ankles and wrists. -Note: If drivers do not wear fire resistant long underwear, they should wear cotton underwear under the approved driving suit. Tee-shirts, or other undergarments made from Nylon or any other synthetic materials may melt when exposed to high heat. -1T4.7 Socks -Socks made from an accepted fire resistant material, e.g. Nomex, which cover the bare skin between the driver's suit and the boots or shoes. Socks made from wool or cotton are acceptable. Socks of nylon or polyester are not acceptable. -1T4.8 Shoes -Shoes of durable fire resistant material and which are in good condition (no holes worn in the soles or uppers). -1T4.9 Gloves -Fire resistant gloves made from made from acceptable fire resistant material as defined in T14.12.Gloves of all leather construction or fire resistant gloves constructed using leather palms with no insulating fire resisting material underneath are not acceptable. -1T4.10 Arm Restraints -Arm restraints certified and labeled to SF1 standard 3.3, or a commercially manufactured equivalent, must be worn such that the driver can release them and exit the vehicle unassisted regardless of the vehicle's position. -1T4.11 Driver's Equipment Condition -All driving apparel covered by ARTICLE T14 must be in good condition. Specifically, driving apparel must not have any tears, rips, open seams, areas of significant wear or abrasion or stains which might compromise fire resistant performance. -1T4.12 Fire Resistant Material -For the purpose of this section some, but not all, of the approved fire resistant materials are: Carbon X, Indura, Nomex, Polybenzimidazole (commonly known as PBI) and Proban. -1T4.13 Synthetic Material - Prohibited -T-shirts, socks or other undergarments (not to be confused with FR underwear) made from nylon or any other synthetic material which will melt when exposed to high heat are prohibited. - -ARTICLE T5 OTHER REQUIRED EQUIPMENT - -1T5.1 Fire Extinguishers -1T5.1.1 Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers. -1T5.1.2 Extinguishers of larger capacity (higher numerical ratings) are acceptable. - -1T5.1.3 All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows "FULL". -1T5.2 Special Requirements -Teams must identify any fire hazards specific to their vehicle's components and if fire extinguisher/fire extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb or equivalent) of the required type must be procured and accompany the car at all times. -As recommendations vary, teams are advised to consult the rules committee before purchasing expensive extinguishers that may not be necessary. -1T5.3 Chemical Spill Absorbent -Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must be presented at technical inspection. -1T5.4 Insulated Gloves -Insulated gloves are required, rated for at least the voltage in the TSV system, with protective over-gloves. -1T5.4.1 Electrical gloves require testing by a qualified company and must have a test date printed on them that is within 14 months of the competition. -1T5.5 Safety Glasses - Safety glasses must be worn as specified in section D10.7 1T5.6 MSDS Sheets -Materials Safety Data Sheets (MSDS) for the accumulator devices are required and must be -included in the ESF. -1T5.7 Additional -Any special safety equipment called for in the MSDS, for example correct gloves recommended for handling any electrolyte material in the accumulator. - -ARTICLE T6 ON-BOARD CAMERAS - -1T6.1 Mounts -The mounts for video/photographic cameras must be of a safe and secure design. -1T6.1.1 All camera installations must be approved at Technical Inspection. 1T6.1.2 Helmet mounted cameras are prohibited. -1T6.1.3 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a -minimum of 2 points on different sides of the camera body. Plastic or elastic attachments are not permitted. If a tether is used to restrain the camera, the tether length must be limited so that the camera cannot contact the driver. - -1PART IC - INTERNAL COMBUSTION ENGINE - -ARTICLE IC1 INTERNAL COMBUSTION ENGINE - -IC1.1 Engine Limitation -Engines must be Internal Combustion, four-stroke piston engines, with a maximum displacement of 250cc for spark ignition engines and 310cc for diesel engines and be either: -(a) Modified or custom fabricated. (See section IC1.2) OR -(b) Stock - defined as: -(i) Any single cylinder engine, -OR -(ii) Any twin cylinder engine from a motorcycle approved for licensed use on public roads, -OR -(iii) Any commercially available "industrial" IC engine meeting the above displacement limits. -Note: If you are not sure whether or not your engine qualifies as "stock", contact the organizers. -IC1.2 Permitted modifications to a stock engine are: -(a) Modification or removal of the clutch, primary drive and/or transmission. -(b) Changes to fuel mixture, ignition or cam timings. -(c) Replacement of camshaft. (Any lobe profile may be used.) -(d) Replacement or modification of any exhaust system component. -(e) Replacement or modification of any intake system component; i.e., components upstream of (but NOT including) the cylinder head. The addition of forced induction will move the engine into the modified category. -(f) Modifications to the engine casings. (This does not include the cylinders or cylinder head). -(g) Replacement or modification of crankshafts for the purpose of simplifying mechanical connections. (Stroke must remain stock.) -IC1.3 Engine Inspection -The organizers reserve the right to tear down any number of engines to confirm conformance to the rules. The initial measurement will be made externally with a measurement accuracy of one -(1) percent. When installed to and coaxially with spark plug hole, the measurement tool has dimensions of 381 mm long and 30 mm diameter. Teams may choose to design in access space for this tool above each spark plug hole to reduce time should their vehicle be inspected. - -IC1.4 Starter -Each car must be equipped with an on-board starter or equivalent, and must be able to move without any outside assistance at any time during the competition. Specifically, push starts are not permitted. -IC1.4.1 A hybrid may use the forward motion of the vehicle derived from the electric drive to start the -I.C. engine, except that this starting technique may not be used until after the car receives the "green flag" in any event. -IC1.4.2 A manual starting system operable by the driver while belted in is permissible. -IC1.5 Air Intake System -IC1.5.1 Air Intake System Location -All parts of the engine air and fuel control systems (including the throttle or carburetor, and the complete air intake system, including the air cleaner and any air boxes) must lie within the surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25) - - - - - -Figure 25- Surface Envelope - - -IC1.5.2 Any portion of the air intake system that is less than 350 mm above the ground must be shielded from side or rear impact collisions by structure built to Rule T3.24 or T3.33 as applicable. -IC1.5.3 Intake Manifold -If an intake manifold is used, it must be securely attached to the engine crankcase, cylinder, or cylinder head with brackets and mechanical fasteners. This precludes the use of hose clamps, plastic ties, or safety wires. - -Original equipment rubber parts that bolt or clamp to the cylinder head and to the throttle body or carburetor are acceptable. -Note: These rubber parts are referred to by various names by the engine manufacturers; e.g., "insulators" by Honda, "joints" by Yamaha, and "holders" by Kawasaki. -Other than such original equipment parts the use of rubber hose is not considered a structural attachment. Intake systems with significant mass or cantilever from the cylinder head must be supported to prevent stress to the intake system. -Supports to the engine must be rigid. -Supports to the frame or chassis must incorporate some isolation to allow for engine movement and chassis flex. -IC1.5.4 Air boxes and filters -Large air boxes must be securely mounted to the frame or engine and connections between the air box and throttle must be flexible. Small air cleaners designed for mounting to the carburetor or throttle body may be cantilevered from the throttle body. -IC1.6 Accelerator and Accelerator Actuation -IC1.6.1 Carburetor/Throttle Body -All spark ignition engines must be equipped with a carburetor or throttle body. The carburetor or throttle body may be of any size or design. -IC1.6.2 Accelerator Actuation - General -All systems that transmit the driver's control of the speed of the vehicle, commonly called "Accelerator systems", must be designed and constructed as "fail safe" systems, so that the failure of any one component, be it mechanical, electrical or electronic, will not result in an uncontrolled acceleration of the vehicle. This applies to both IC engines and to electric motors that power the vehicle. -The Accelerator control may be actuated mechanically, electrically or electronically, i.e. electrical Accelerator control (ETC) or "drive-by-wire" is acceptable. -Drive-by-wire controls of the electric motor controller must comply with TS isolation requirements. See EV5.1.1 -Any Accelerator pedal must have a positive pedal stop incorporated on the Accelerator pedal to prevent over stressing the Accelerator cable or any part of the actuation system. -IC1.6.3 Mechanical Accelerator Actuation -If mechanical Accelerator actuation is used, the Accelerator cable or rod must have smooth operation, and must not have the possibility of binding or sticking. -The Accelerator actuation system must use at least two (2) return springs located at the throttle body, so that the failure of any component of the Accelerator system will not prevent the Accelerator returning to the closed position. -Note: Springs in Throttle Position Sensors (TPS) are NOT acceptable as return springs. -Accelerator cables must be at least 50 mm from any exhaust system component and out of the exhaust stream. -Any Accelerator pedal cable must be protected from being bent or kinked by the driver's foot when it is operated by the driver or when the driver enters or exits the vehicle. - -If the Accelerator system contains any mechanism that could become jammed, for example a gear mechanism, then this must be covered to prevent ingress of any debris. -The use of a push-pull type Accelerator cable with an Accelerator pedal that is capable of forcing the Accelerator closed (e.g. toe strap) is recommended. -Electrical actuation of a mechanical throttle is permissible, provided releasing the Accelerator pedal will override the electrical system and cause the throttle to close. -IC1.6.4 Electrical Accelerator Actuation -When electrical or electronic throttle actuation is used, the throttle actuation system must be of a fail-safe design to assure that any single failure in the mechanical or electrical components of the Accelerator actuation system will result in the engine returning to idle (IC engine) or having zero torque output (electric motor). -Teams should use commercially available electrical Accelerator actuation systems. -The methodology used to ensure fail-safe operation must be included as a required appendix to the Design Report. -IC1.7 Intake System Restrictor -IC1.7.1 Non-stock engines (See IC1.1) must be fitted with an air inlet restrictor as listed below. All the air entering the engine must pass through the restrictor which must be located downstream of any engine throttling device. -IC1.7.2 The restrictor must be circular with a maximum diameter of: -(a) Gasoline fueled cars - 12.90 mm -IC1.7.3 The restrictor must be located to facilitate measurement during the inspection process. -IC1.7.4 The circular restricting cross section may NOT be movable or flexible in any way, e.g. the restrictor may not be part of the movable portion of a barrel throttle body. -IC1.7.5 Any device that has the ability to throttle the engine downstream of the restrictor is prohibited. -IC1.7.6 If more than one engine is used, the intake air for all engines must pass through the one restrictor. -Note: Section IC1.7 applies only to those engines that are not on the approved stock engine list, or that have been modified beyond the limits specified in IC1.2. -IC1.8 Turbochargers & Superchargers -Turbochargers or superchargers are permitted. The compressor must be located downstream of the inlet restrictor. The addition of a Turbo or Supercharger will move the engine into the Modified category. -IC1.9 Fuel Lines -IC1.9.1 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. -IC1.9.2 If rubber fuel line or hose is used, the components over which the hose is clamped must have annular bulb or barbed fittings to retain the hose. Also, clamps specifically designed for fuel lines must be used. These clamps have three (3) important features; (See Figure 26) -(a) A full 360 degree (360) wrap, -(b) a nut and bolt system for tightening, and -(c) rolled edges to prevent the clamp cutting into the hose. - -Worm-gear type hose clamps are not approved for use on any fuel line. - - -Figure 26 - Hose Clamps - - -IC1.9.3 Fuel lines must be securely attached to the vehicle and/or engine. -IC1.9.4 All fuel lines must be shielded from possible rotating equipment failure or collision damage. -IC1.10 Fuel Injection System Requirements -IC1.10.1 Fuel Lines - Flexible fuel lines must be either -(a) Metal braided hose with either crimped-on or reusable, threaded fittings, OR -(b) Reinforced rubber hose with some form of abrasion resistant protection with fuel line clamps per IC1.9.2. -Note: Hose clamps over metal braided hose will not be accepted. -IC1.10.2 Fuel Rail - If used, a fuel rail must be securely attached to the engine cylinder block, cylinder head, or intake manifold with brackets and mechanical fasteners. This precludes the use of hose clamps, plastic ties, or safety wire. -IC1.11 Crankcase / Engine lubrication venting -IC1.11.1 Any crankcase or engine lubrication vent lines routed to the intake system must be connected upstream of the intake system restrictor, if fitted. -IC1.11.2 Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum devices that connect directly to the exhaust system, are prohibited. - -ARTICLE IC2 FUEL AND FUEL SYSTEM - -IC2.1 Fuel -IC2.1.1 All fuel at the Formula Hybrid + Electric Competition will be provided by the organizer. -IC2.1.2 During all performance events the cars must be operated with the fuels provided by the organizer. -IC2.1.3 The fuels provided at the Formula Hybrid + Electric Competition are: -(a) Gasoline (Sunoco Optima) -Note: More information including the fuel energy equivalencies, and a link for the Sunoco fuel specifications are given in Appendix A - -IC2.2 Fuel Additives - Prohibited -IC2.2.1 Nothing may be added to the provided fuels. This prohibition includes nitrous oxide or any other oxidizing agent. -IC2.2.2 No agents other than fuel and air may be induced into the combustion chamber. Non-adherence to this rule will be reason for disqualification. -IC2.2.3 Officials have the right to inspect the oil. -IC2.3 Fuel Temperature Changes - Prohibited -The temperature of fuel introduced into the fuel system may not be changed with the intent to improve calculated fuel efficiency. -IC2.4 Fuel Tanks -IC2.4.1 The fuel tank is defined as that part of the fuel containment device that is in contact with the fuel. It may be made of a rigid material or a flexible material. -IC2.4.2 Fuel tanks made of a rigid material cannot be used to carry structural loads, e.g. from roll hoops, suspension, engine or gearbox mounts, and must be securely attached to the vehicle structure with mountings that allow some flexibility such that chassis flex cannot unintentionally load the fuel tank. -IC2.4.3 Any fuel tank that is made from a flexible material, for example a bladder fuel cell or a bag tank, must be enclosed within a rigid fuel tank container which is securely attached to the vehicle structure. Fuel tank containers (containing a bladder fuel cell or bag tank) may be load carrying. -IC2.4.4 Any size fuel tank may be used. -IC2.4.5 The fuel system must have a drain fitting for emptying the fuel tank. The drain must be at the lowest point of the tank and be easily accessible. It must not protrude below the lowest plane of the vehicle frame, and must have provision for safety wiring. -IC2.5 Fuel System Location Requirements -IC2.5.1 All parts of the fuel storage and supply system must lie within the surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25). -IC2.5.2 All fuel tanks must be shielded from side or rear impact collisions. Any fuel tank which is located outside the Side Impact Structure required by T3.24 or T3.33 must be shielded by structure built to T3.24 or T3.33. -IC2.5.3 A firewall must separate the fuel tank from the driver, per T4.5. IC2.6 Fuel Tank Filler Neck -IC2.6.1 All fuel tanks must have a filler neck8: -(a) With a minimum inside diameter of 38 mm -(b) That is vertical (with a horizontal filler cap) or angled at no more than forty-five degrees (45) from the vertical. -IC2.6.2 If a sight tube is fitted, it may not run below the top surface of the fuel tank. - - - -8 Some flush fillers may be approved by contacting the Formula Hybrid + Electric rules committee. - - - - - -Figure 27 - Filler Neck - - -IC2.7 Tank Filling Requirement -IC2.7.1 The tank must be capable of being filled to capacity without manipulating the tank or vehicle in any way (shaking vehicle, etc.). -IC2.7.2 The fuel system must be designed such that the spillage during refueling cannot contact the driver position, exhaust system, hot engine parts, or the ignition system. -IC2.7.3 Belly pans must be vented to prevent accumulation of fuel. -IC2.8 Venting Systems -IC2.8.1 The fuel tank and carburetor venting systems must be designed such that fuel cannot spill during hard cornering or acceleration. This is a concern since motorcycle carburetors normally are not designed for lateral accelerations. -IC2.8.2 All fuel vent lines must be equipped with a check valve to prevent fuel leakage when the tank is inverted. All fuel vent lines must exit outside the bodywork. - -ARTICLE IC3 EXHAUST SYSTEM AND NOISE CONTROL - -IC3.1 Exhaust System General -IC3.1.1 Exhaust Outlet -The exhaust must be routed so that the driver is not subjected to fumes at any speed considering the draft of the car. -IC3.1.2 The exhaust outlet(s) must not extend more than 45 cm behind the centerline of the rear wheels, and must be no more than 60 cm above the ground. - -IC3.1.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in front of the main roll hoop must be shielded to prevent contact by persons approaching the car or a driver exiting the car. -IC3.1.4 The application of fibrous material, e.g. "header wrap", to the outside of an exhaust manifold or exhaust system is prohibited. -IC3.2 Noise Measuring Procedure -IC3.2.1 The sound level will be measured during a static test. Measurements will be made with a free- field microphone placed free from obstructions at the exhaust outlet level, 0.5 m from the end of the exhaust outlet, at an angle of forty-five degrees (45) with the outlet in the horizontal plane. The test will be run with the gearbox in neutral at the engine speed defined below. -Where more than one exhaust outlet is present, the test will be repeated for each exhaust and the highest reading will be used. -Vehicles that do not have manual throttle control must provide some means for running the engine at the test RPM. -IC3.2.2 The car must be compliant at all engine speeds up to the test speed defined below. -IC3.2.3 If the exhaust has any form of movable tuning or throttling device or system, it must be compliant with the device or system in all positions. The position of the device must be visible to the officials for the noise test and must be manually operable by the officials during the noise test. -IC3.2.4 Test Speeds -The test speed for a given engine will be the engine speed that corresponds to an average piston speed of 914.4 m/min for automotive or motorcycle engines, and 731.5 m/min for Diesels and "Industrial" engines. The calculated speed will be rounded to the nearest 500 rpm. The test speeds for typical engines will be published by the organizers. -IC3.2.5 An "industrial engine" is defined as an engine which, according to the manufacturers' specifications and without the required restrictor, is not capable of producing more than 5 hp per 100cc. To have an engine classified as "an industrial engine", approval must be obtained from organizers prior to the Competition. -IC3.2.6 Vehicles not equipped with engine tachometers must provide some external means for measuring RPM, such as a hand-held meter or lap top computer. -Note: Teams that do not provide the means to measure engine speed will not pass the noise test, will not receive the sticker and hence will not be eligible to compete in any dynamic event. -IC3.2.7 Engines with mechanical, closed loop speed control will be tested at their maximum (governed) speed. -IC3.3 Maximum Sound Level -The maximum permitted sound level is 110 dB A, fast weighting. -IC3.4 Noise Level Re-testing -At the option of the officials, noise can be measured at any time during the competition. If a car fails the noise test, it will be withheld from the competition until it has been modified and re- passes the noise test. - -PART EV - ELECTRICAL POWERTRAINS AND SYSTEMS - - -ARTICLE EV1 ELECTRICAL SYSTEMS OVERVIEW - -EV1.1 Definitions -? Accumulator - Batteries and/or capacitors that store the electrical energy to be used by the tractive system. This term includes both electrochemical batteries and ultracapacitor devices. -? Accumulator Container - A housing that encloses the accumulator devices, isolating them both physically and electrically from the rest of the vehicle. -? Accumulator Segment - A subgroup of accumulator devices that must adhere to the voltage and energy limits listed in Table 8. -? AMS - Accumulator Monitoring System. EV9.6 -? Barrier - A material, usually rigid, that resists a flow of charge. Most often used to provide a structural barrier and/or increase the creepage distance between two conductors. See Figure 36. -? BRB - Big Red Button. EV7.5 and EV7.6 -? Creepage Distance - The shortest distance measured along the surface of the insulating material between two conductors. See Figure 36. -? Enclosure - An insulated housing containing electrical circuitry. -? GLV Grounded Low Voltage system - Every conductive part that is not part of the tractive system. (This includes the GLV electrical system, frame, conductive housings, carbon-fiber components etc.) -? GLVMS - Grounded Low Voltage Master Switch. EV7.3 -? IMD - Insulation Monitoring Device. EV9.4 -? Insulation - A material that physically resists a flow of charge. May be rigid or flexible. -? Isolation - Electrical, or "Galvanic" isolation between two or more electrical conductors such that if a voltage potential exists between them, no current will flow. -? Region - A design/construction methodology wherein enclosures are divided by insulating barriers and/or spacing into TS and GLV sections, simplifying the electrical isolation of the two systems. -? Separation - A physical distance ("spacing") maintained between conductors. -? SMD - Segment Maintenance Disconnect. EV2.7 -? ESOK - Electrical Systems OK. EV9.3 -? Tractive System (TS) - The drive motors, the accumulators and every part that is electrically connected to either of those components. -? Tractive System Enclosure - A housing that contains TS components other than accumulator devices. -? TSAL - Tractive System Active Lamp. EV9.1 -? TS/GLV - The relationship between two electrical conductors; one being part of the TS system and the other GLV. -? TS/TS - The relationship between two TS conductors. This designation implies that they are at different potentials and/or polarities. -? TSMP - Tractive System Measuring Points. EV10.3 - -? TSMS - Tractive System Master Switch. EV7.4 - -EV1.2 Maximum System Voltages -EV1.1.1 The maximum permitted operating voltage and energy limits are listed in Table 8 below. - - -Formula Hybrid + Electric voltage and energy limits Maximum operating voltage for Hybrid9 (TSV) 300 V Maximum operating voltage for EV 600V Maximum GLV 60 VDC or 50 VAC Maximum accumulator segment voltage 120 V Maximum accumulator segment energy10 6 MJ -Table 8 - Voltage and Energy Limits - - -EV1.1.2 Maximum operating voltage for hybrid vehicles above those shown in Table 8 may be permitted via a request for a special allowance to the FH+E rules committee. Teams requesting such an allowance must demonstrate an appropriate level of electrical engineering knowledge and experience. -EV1.1.3 Vehicles with a maximum operating voltage over 300V will be required to complete a form demonstrating electrical safety competency including: -? Written vehicle electrical safety procedures -? A list of electrical safety team members -? Review of team experience and competency in high-voltage electrical systems -? Acceptance of this document is a requirement for participation in the event. - - - - - - - - - - - - - - -9 The maximum operating voltage is defined as the maximum measured accumulator voltage during normal charging conditions. (A maximum capacity accumulator will require at least three segments.) -10 Segment energy is calculated as Energy (MJ) = (V Ah 3600) / 1e6. (Note that this is different from the fuel allocation energy in Appendix A). - -ARTICLE EV2 ENERGY STORAGE (ACCUMULATORS) - -EV2.1 Permitted Devices -EV1.1.4 The following accumulator devices are acceptable: batteries (e.g. lithium-ion, NiMH, lead acid and similar battery chemistries) and capacitors, such as super caps or ultracaps. -The following accumulator devices are not permitted: molten salt batteries, thermal batteries, fuel cells, mechanical storage such as flywheels or hydraulic accumulators. -EV1.1.5 Accumulator systems using pouch-type lithium-ion cells must be commercially constructed and specifically approved by the Formula Hybrid + Electric rules committee or must comply with the requirements detailed in ARTICLE EV11. -EV1.1.6 Manufacturers data sheets showing the rated specification of the accumulator cell(s) which are used must be provided in the ESF along with their number and configurations. - -EV2.2 Accumulator Segments -EV1.1.7 The accumulator segments must be separated so that the segment limits in Table 8 are met by an electrically insulating barrier meeting the TS/GLV requirements in EV5.4. For all lithium based cell chemistries, these barriers must also be fire resistant (according to UL94-V0, FAR25 or equivalent). -EV1.1.8 The barrier must be non-conducting, fire retardant (UL94V0) and provide a complete barrier to the spread of arc or fire. It must have a fire resistance equal to 1/8" FR4 fiberglass, such as Garolite G-911. - -EV2.3 Accumulator Containers -EV1.1.9 All devices which store the tractive system energy must be enclosed in (an) accumulator container(s). -EV1.1.10 Each accumulator container must be labeled with the words "ACCUMULATOR - ALWAYS ENERGIZED". (This is in addition to the TSV label requirements in EV3.1.5). - -Labels must be 3 inches by 9 inches with bold red lettering on a white background and be clearly visible on all sides of the accumulator container that could be exposed during operation and/or maintenance of the car and at least one such label must be visible with the bodywork in place12. - -Figure 28 - Accumulator Sticker - - - - -11 https://www.mcmaster.com/grade-g-9-garolite/ -12 Self-adhesive stickers are available from the organizers on request. - -EV1.1.11 If the accumulator container(s) is not easily accessible during Electrical Tech Inspection, detailed pictures of the internals taken during assembly must be provided. If the pictures do not adequately depict the accumulator, it may be necessary to disassemble the accumulator to pass Electrical Tech Inspection. -EV1.1.12 The accumulator container may not contain circuitry or components other than the accumulator itself and necessary supporting circuitry such as the AIRs, AMS, IMD and pre- charge circuitry. -For example, the accumulator container may not contain the motor controller, TSV or any GLV circuits other than those required for necessary accumulator functions. -Note 1: The purpose of this requirement is to allow work on other parts of the tractive system without opening the accumulator container and exposing (always-live) high voltage. -Note 2: It is possible to meet this requirement by dividing a large box into an accumulator section and a non-accumulator section, with an insulating barrier between them. In this case, it must be possible to open the non-accumulator section while keeping the accumulator section closed, meeting the requirements of the "finger probe" test. See: EV3.1.3. -EV1.1.13 If spare accumulators are to be used then they all must be of the same size, weight and type as those that are replaced. Spare accumulator packs must be presented at Electrical Tech Inspection. - -EV2.4 Accumulator Container -Construction -EV1.1.14 The accumulator container(s) must be built of mechanically robust material. -EV1.1.15 The container material must be fire resistant according to UL94-V0, FAR25 or equivalent. -EV1.1.16 If any part of the accumulator container is made of electrically conductive material, an insulating barrier meeting the TS/GLV requirements in EV5.4 must be affixed to the inside wall of the accumulator container such that the barrier provides 100% coverage of all electrically conductive container components. -EV1.1.17 All conductive penetrations (mounting hardware, hinges, latches etc.) must be covered on the inside of the accumulator container by an insulating material meeting EV5.4. -EV1.1.18 All conductive surfaces on the outside of the container must have a low-resistance connection to the GLV system ground. (See EV8.1.1) -EV1.1.19 The cells and/or segments must be appropriately secured against loosening inside the container. Internal structural elements must be either non-thermoplastic or have a melting temperature of greater than 150 degrees C. -EV1.1.20 All accumulator devices must be attached to the accumulator container(s) with mechanical fasteners. -EV1.1.21 Holes in the container are only allowed for the wiring-harness, ventilation, cooling or fasteners. All wiring harness holes must be sealed according to EV3.3.1. Openings for ventilation must be designed to prevent water entry from rain or road spray, and to minimize spread of fire. Completely open side pods are not allowed. -EV1.1.22 Any accumulator that may vent an explosive gas must have a ventilation system or pressure relief valve to prevent the vented gas from reaching an explosive concentration. -EV1.1.23 Every accumulator container which is completely sealed must have a pressure relief valve to prevent high-pressure in the container. - -EV1.1.24 An Accumulator Container that is built to an approved 2023 or 2024 FSAE Structural Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with Formula Hybrid + Electric Rules EV2.4.1-EV2.4.7. - -EV2.5 Accumulator Container - Mounting -EV1.1.25 All accumulator containers must lie within the surface envelope as defined by IC1.5.1 -EV1.1.26 All accumulator containers must be rigidly mounted to the chassis to prevent the containers from loosening during the dynamic events or possible accidents. -EV1.1.27 The mounting system for the accumulator container must be designed to withstand forces from a 40g deceleration in the horizontal plane and 20 g deceleration in the vertical plane. The calculations/tests proving this must be part of the SES. -EV1.1.28 For tube frame cars, each accumulator container must be attached to the Frame by a minimum of four (4) 8 mm Metric Grade 8.8 or 5/16 inch Grade 5 bolts. -EV1.1.29 For monocoques: -1. Each accumulator container must be attached to the Frame at a minimum of four (4) points, each capable of carrying a load in any direction of 400 Newtons x the mass of the accumulator in kgs, i.e. if the accumulator has a mass of 50 kgs, each attachment point must be able to carry a load of 20kN in any direction. -2. The laminate, mounting plates, backing plates and inserts must have sufficient shear area, weld area and strength to carry the specified load in any direction. Data obtained from the laminate perimeter shear strength test (T3.30) should be used to prove adequate shear area is provided*** -3. Each attachment point requires a minimum of one (1) 8 mm Metric Grade 8.8 or 5/16 inch SAE Grade 5 bolt. -4. Each attachment point requires steel backing plates with a minimum thickness of 2 mm. Alternate materials may be used for backing plates if equivalency is approved. -5. The calculations/tests must be included in the SES. -EV2.5.6 An Accumulator Mounting system that is built to an approved 2023 or 2024 FSAE Structural Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with Formula Hybrid + Electric Rules EV2.5, and the FSAE SES may be submitted in place of the Formula Hybrid + Electric specific SES required by EV2.5.3. - -EV2.6 Accumulator Fusing -EV1.1.30 Every accumulator container must contain at least one fuse in the high-current TS path, located on the same side of the AIRs as the battery or capacitor. These fuses must comply with EV5.5.4. -EV1.1.31 All details and documentation for fuse, fusible link and/or internal over current protection must be included in the ESF. - -EV1.1.32 Parallel then Series (nPmS) connections. -If more than one battery cell or capacitor is used to form a set of cells in parallel and those parallel groups are then combined in series (Figure 29) then either: - -a) Each cell must be protected with a fuse or fusible link with a current rating less than or equal to 50% of the calculated short-circuit current (Isc) of the cell or capacitor, where Isc = Vnom / IR(O). (The nominal cell voltage divided by its dc internal resistance).. The fuse or fusible link must be rated for the full tractive system voltage, unless the special conditions in EV2.6.5 (Fuse Voltage Ratings) are met. -OR -b) Manufacturer's documentation must be provided that certifies that it is acceptable to use this number of single cells in parallel without fusing. This certification must be included in the ESF. (Commercially assembled packs or modules installed per manufacturer's instructions may be exempt from this requirement upon application to the rules committee.) - -Note: if option (a) is used, fuse j in Figure 27 may be omitted if all conductors carrying the entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, each with current rating i, the conductors must be sized for a total current itotal = ni) - - - -Figure 29 - Example nP3S Configuration - - -EV1.1.33 Series then Parallel (nSmP) connections. -If strings of batteries or capacitors in series are then combined in parallel (Figure 30) then each string must be individually fused per EV5.5.4. -Fuse j in Figure 30 may be omitted if all conductors carrying the entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, each with current rating i, the conductors must be sized for a total current ???????????? = ?? -?? without fuse j, or may be sized for a lower current j if fuse j is included.) - -All fuses used in nSmP configurations must be rated for the full tractive system voltage. - - - -Figure 30 - Example 5S4P Configuration - - -EV1.1.34 Fuse Voltage Ratings. -Although fuses in the tractive system must normally be rated for the full tractive system voltage, under certain conditions an exception can be made for fuses or fusible links for individual cells or capacitors. These conditions, defined in EV2.6.1, apply to fuses or fusible links used to meet EV2.6.3and to any fusible links that are included in the accumulator construction. These requirements are intended to ensure coordination between cell fuses and pack master fuses. -The following conditions must be met to allow reduced voltage ratings: -The series fuse used to satisfy EV2.6.1 is rated at a current less than or equal to one half of the sum of the parallel low-voltage fuses or fusible links, AND -1. fuse or fusible link current rating is specified in manufacturer's data -OR -2. suitable team generated test data is provided, demonstrating the ability to: -(i) Carry full rated current for at least 10 minutes with less than 50 C temperature rise. -(ii) Trip at 300% of rated current. -(iii) Interrupt current equal to the maximum short circuit current expected without producing heat, sparks, or flames that might damage nearby cells. -For example, in Figure 29, this requirement is met if ?? = ?? ?? , where i is the cell fuse or link -3 -rating, n is the number of cells in parallel and j is the master series fuse rating. - -EV2.7 Accumulator - Segment Maintenance Disconnect -EV1.1.35 A Segment Maintenance Disconnect (SMD) must be installed between each accumulator segment See EV2.2). The SMD must be used whenever the accumulator containers are opened for maintenance and whenever accumulator segments are removed from the container. - -Note: If the high-voltage disconnect (HVD, section EV2.9) is located between segments, it satisfies the requirement for an SMD between those segments. -EV1.1.36 The SMD may be implemented with a switch or a removable maintenance plug. Devices capable of remote operation such as relays or contactors may not be used. There must be a positive means of securing the SMD in the disconnected state; for example, a lockable switch can be secured with a zip-tie or a clip. -EV1.1.37 SMD methods requiring tools to isolate the segments are not permitted. -EV1.1.38 If the SMD is operated with the accumulator container open, any removable part used with the SMD (e.g., a removable plug or clip) must be non-conductive on its external surfaces. i.e. it will not cause a short if dropped into the accumulator. This requirement may be waived on application to the rules committee if connection to battery terminals is prevented by barriers or location. -EV1.1.39 Devices used for SMDs must be rated for the expected battery current and voltages - -EV2.8 Accumulator - Isolation Relays -EV1.1.40 At least two isolation relays (AIRs) must be installed in every accumulator container, or in the accumulator section of a segmented container (See EV2.3.4 Note 2) such that no TS voltage will be present outside the accumulator or accumulator section when the TS is shut down. -Note: AIRs must be before TSMPs, such that TSMPs de-energize when AIRs are open. -EV1.1.41 The accumulator isolation relays must be of a normally open (N.O.) type which are held in the closed position by the current flowing through the shutdown loop (EV7.1). When this flow of current is interrupted, the AIRs must disconnect both poles of the accumulator such that no TS voltage is present outside of the accumulator container(s). -EV1.1.42 When the AIRs are opened, the voltage in the tractive system must drop to under 60 VDC (or 42 VAC RMS) in less than five seconds. -EV1.1.43 The AIR contacts must be protected by Pre-Charge and Discharge circuitry, See EV2.10. -EV1.1.44 If the AIR coils are not equipped with transient suppression by the manufacturer then Transient suppressors13 must be added in parallel with the AIR coils. -EV1.1.45 AIRs containing mercury are not permitted. - - - - - - - - - - - - - - - - -13 Transient suppressors protect the circuitry in the shutdown loop from di/dt voltage spikes. One acceptable device is Littelfuse 5KP43CA. (Mouser Part number 576-5KP43CA.) - - - -Figure 31 - Example Accumulator Segmenting - - -EV2.9 Accumulator - High Voltage Disconnect -EV1.1.46 Each vehicle must be fitted with a High Voltage Disconnect (HVD) making it possible to quickly and positively break the current path of the tractive system accumulator. This can be accomplished by turning off a disconnect switch, disconnecting the main connector or removing an accessible element such as a fuse. A contactor or AIR device may not be used as an HVD. -EV1.1.47 The HVD must be operable without the use of tools. -EV1.1.48 It must be possible to disconnect the HVD within 10 seconds in ready-to-race condition. -Note: Ready-to-race means that the car is fully assembled, including having all body panels in position, with a driver seated in the vehicle and without the car jacked up. -EV1.1.49 The team must demonstrate this during Electrical Tech Inspection. - -EV1.1.50 The disconnect must be clearly marked with "HVD". Multiple disconnects must be marked "HVD n of m", such as "HVD 1 of 3", HVD 2 of 3", etc. -EV1.1.51 There must be a positive means of securing the HVD in the disconnected state; for example, a lockable switch can be secured with a zip-tie or a clip. -Note: A removable plug will meet this requirement if the plug is secured or fully removed such that it cannot accidentally reconnect. -EV1.1.52 The HVD must be opened as part of the Lockout/Tagout procedure. See EV12.1.1. -EV1.1.53 The recommended electrical location for the HVD is near the middle of the accumulator string. -In this case, it can serve as one of the SMDs. (See Figure 31). -Note: The HVD must be prior to TSMPs such that TSMPs are de-energized when the HVD is open. - -EV2.10 Accumulator - Pre-Charge and Discharge Circuits -One particularly dangerous failure mode in an electric vehicle is AIR contacts that have welded shut. When the current through the AIR coils is interrupted, the AIRs should open, isolating the potentially lethal voltages within the accumulator container. -If the AIRs are welded shut, these voltages will be present outside the accumulator even though the system is presumably shut down. -Welding is caused by high instantaneous currents across the contacts. This can be avoided by a correctly functioning pre-charge circuit. -EV1.1.54 Precharge -The AIR contacts must be protected by a circuit that will pre-charge the intermediate circuit to at least 90% of the rated accumulator voltage before completing the intermediate circuit by closing the second AIR. -The pre-charge circuit must be disabled if the shutdown circuit is deactivated; see EV7.1. i.e. the pre-charge circuit must not be able to pre-charge the system if the shutdown circuit is open. -EV1.1.55 It is allowed to pre-charge the intermediate circuit for a conservatively calculated time before closing the second AIR. Monitoring the intermediate circuit voltage is not required. -EV1.1.56 The pre-charge circuit must operate regardless of the sequence of operations used to energize the vehicle, including, for example, restarting after being automatically shut down by a safety circuit. -EV1.1.57 Discharge -If a discharge circuit is needed to meet the requirements of EV2.8.3, it must be designed to handle the maximum expected discharge current for at least 15 seconds. The calculations determining the component values must be part of the ESF. -EV1.1.58 The discharge circuit must be fail-safe. i.e. wired in a way that it is always active whenever the shutdown circuit is open or de-energized. -EV1.1.59 For always-on discharge circuits and other circuits that dissipate significant power for extended time periods, calculations of the maximum operating temperature of the power dissipating components (e.g., resistors) must be included in the ESF. - -Note: Resistors operating at their rated power level often operate at 200 C or more. Insulating materials in proximity to resistors require care to ensure that they are not overheated. -Resistors that dissipate more than 50% of their power rating and resistors that dissipate significant power without much open space around them will require additional care to ensure they are safe. -It is recommended that teams use resistors rated for at least double the maximum predicted power dissipation, document these design details in the ESF, and mount them that such that heat dissipation is not impeded. -Note also that some resistors require external heat sinks in order to dissipate their rated power. Using these resistors for significant power dissipation will require additional documentation of the heat sink design or testing. -EV1.1.60 Fuses in the accumulator pre-charge or discharge current paths are not permitted. - -EV2.11 Accumulator - Accumulator Management System (AMS) -EV1.1.61 Each accumulator must be monitored by an accumulator management system (AMS) whenever the tractive system is active or the accumulator is connected to a charger. -Note: Some parts of EV2.11 may be waived for commercially manufactured accumulator assemblies. Requests must be submitted to the Formula Hybrid + Electric rules committee at least one month before the competition. -EV1.1.62 The AMS must monitor all critical voltages and temperatures in the accumulator as well the integrity of all its voltage and temperature inputs. If an out-of-range or a malfunction is detected, it must shut down the electrical systems, open the AIRs and shut down the I.C. drive system within 60 seconds.14 (Some GLV systems may remain energized - See Figure 37) -EV1.1.63 The tractive system must remain disabled until manually reset by a person other than the driver. It must not be possible for the driver to re-activate the tractive system from within the car in case of an AMS fault. AMS faults must be latched using a mechanical relay circuit (see Appendix G). Digital logic or microcontrollers may not be used for this function. -EV1.1.64 The AMS must continuously measure cell voltages in order to keep those voltages inside the allowed minimum and maximums stated in the cell data-sheet. (See Table 9) -Notes: -1. If individual cells are directly connected in parallel, only one voltage measurement is required for that group. (Measured at the parallel connections, outside of the cell fuses. (See Figure 29) -2. Exemptions may be granted for commercial accumulator assemblies that do not meet these requirements. - - - - - - - - -14 Teams may wish to also use the AMS to detect a low voltage or high temperature before these cross the critical threshold, and to alert the driver and/or decrease the power drawn from the accumulator, so as to mitigate the problem before the vehicle must be shut down. - -Chemistry Maximum number of cells per -voltage measurement PbAcid 6 NiMh 6 Lithium based 1 -Table 9 - AMS Voltage Monitoring - - -EV1.1.65 The AMS must monitor the temperature of the minimum number of cells in the accumulator as specified in Table 10 below. The monitored cells must be equally distributed over the accumulator container(s). - - -Chemistry Cells monitored PbAcid 5% UltraCap 10% NiMh 10% Li-Ion 30% -Table 10 - AMS Temperature Monitoring - - -NOTE: It is acceptable to monitor multiple cells with one sensor if this sensor has direct contact to all monitored cells. It is also acceptable to use maximum-temperature detection schemes such as diode-paralleled thermisters or zener diodes to monitor multiple cells on a single circuit. -NOTE: Teams should monitor the temperature of all cells. -NOTE: AMS temperature monitoring at levels less than the requirements in Table 10 may be permitted, on application to the tech committee, for commercial accumulator modules contain integrated temperature sensors. -EV1.1.66 All voltage sense wires to the AMS must be protected by fuses or resistors (located as close as possible to the energy source) so that they cannot exceed their current carrying capacity in the event of a short circuit. -Note: If the AMS monitoring board is directly connected to the cell, it is acceptable to have a fuse or resistor integrated into the monitoring board. -EV1.1.67 Input channels of the AMS used for different segments of the accumulator must be isolated from one another with isolation rated for at least the maximum tractive system voltage. This isolation is also required between channels or sections of the AMS that are connected to different sides of a SMD, HVD, fuse, or AIR. -EV1.1.68 Any GLV connection to the AMS must be galvanically isolated from the TSV. This isolation must be documented in the ESF. -Note: Per EV2.8.2, AMS connections that are not isolated, such as cell sense wires, cannot exit the accumulator container, unless they are isolated by additional relays when the AIRs are - -off. This requirement should be considered in the selection of an AMS system for a vehicle that uses more than one accumulator container. The need for additional isolation relays may also be avoided by utilizing a virtual accumulator. See EV2.12 - -EV1.1.69 Team-Designed Accumulator Management Systems. -Teams may design and build their own Accumulator Management Systems. However, microprocessor-based accumulator management systems are subject to the following restrictions: -1. The processor must be dedicated to the AMS function only. However, it may communicate with other systems through shared peripherals or other physical links. -2. The AMS circuit board must include a watchdog timer. It is strongly recommended that teams include the ability to test the watchdog function in their designs. -EV1.1.70 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must show the latched fault rather than instantaneous status of the AMS. Other indication methods may be used upon application for a variance with the rules committee - -EV2.12 Virtual Accumulators. -In many cases, difficulties can be encountered when multiple accumulator containers are monitored by a single AMS. Therefore, a vehicle may use a single AMS with more than one accumulator container by defining a 'Virtual Accumulator' as provided below. See: Figure 32. -EV1.1.71 Each housing of the virtual accumulator container must be permanently installed in the vehicle. i.e. not designed to be removed for charging or exchange. -EV1.1.72 The conduit(s) connecting accumulator housings must be flexible metallic liquid-tight steel electrical conduit (NEC type LFMC) securely fastened at each end with fittings rated for metallic LFMC. -EV1.1.73 Connectors between the interconnecting conduit and the housings containing the accumulators, and along the length of the interconnecting conduit must be rated for LFMC conduit. -EV1.1.74 The conduit must be red, or painted red15. -EV1.1.75 Any unsupported length of the interconnect conduit may be no greater than 150 mm. i.e. it must be physically supported at least every 150 mm to ensure that it cannot droop or be snagged by something on the track. The interconnect conduit must be contained entirely within the chassis structure. -EV1.1.76 Separate conduits must be provided between housings for: -1. Individual tractive System conductors. (Only one high-current TS conductor may pass through any one conduit.) -2. AMS wiring such as cell voltage sense wires that are at TS potential. -Note: GLV wiring may be run in its own conduit or outside of conduit. - -15 LFMC conduit is available with a red jacket - see for example: http://www.afcweb.com/liquid-tuff-conduit/ul- liquidtight-flexible-steel-conduit-type-lfmc/ - -EV1.1.77 All rules relating to accumulator housings (including, but not limited to firewalls, location etc.) also apply to the interconnect conduit. -EV1.1.78 If the interconnect conduit is the lowest point in the virtual housing it must have a 3-5 mm drain hole in its lowest point to allow accumulated fluids to drain. -EV1.1.79 Segmentation requirements must be met considering the housings individually, and as an interconnected system. For example, AMS wires must be grouped according to segment and must maintain that grouping through to the AMS. -EV1.1.80 Each individual housing must comply with TS fusing requirements. (See EV2.6) i.e., there must be at least one TS fuse in each container (See Figure 32). -EV1.1.81 A High Voltage Disconnect (HVD) can be installed in the conductors connecting accumulator housings if mounted in a suitable enclosure. In this case, the accumulator boundary extends to include conduit and the HVD enclosure. - - - - - - -Figure 32 - Virtual Accumulator example - -ARTICLE EV2 TRACTIVE SYSTEM WIRING AND CONSTRUCTION - -EV2.13 Positioning of tractive system parts -EV2.1.1 Housings and/or covers must prevent inadvertent human contact with any part of the tractive system circuitry. This includes people working on or inside the vehicle. Covers must be secure and adequately rigid. -Body panels that must be removed to access other components, etc. are not a substitute for enclosing tractive system conductors. -EV2.1.2 Tractive system components and wiring must be physically protected from damage by rotating and/or moving parts and must be isolated from fuel system components. -EV2.1.3 Finger Probe Test: Inspectors must not be able to touch any tractive system electrical connection using a 10 cm long, 0.6 cm diameter non-conductive test probe. - - - -Figure 33 - Finger Probe - - -EV2.1.4 Housings constructed of electrically conductive material must have a minimum-resistance connection to GLV system ground. (See: ARTICLE EV8). -EV2.1.5 Every housing or enclosure containing parts of the tractive system must be labeled with the words "Danger", "High Voltage" and a black lightning bolt on a yellow background. The label must be at least 4 x 6 cm. (See Figure 34 below.) - - - -Figure 34 - High Voltage Label - -EV2.1.6 All parts belonging to the tractive system including conduit, cables and wiring must be contained within the Surface Envelope of the vehicle (See Figure 25) such that they are protected against being damaged in case of a crash or roll-over situation or being caught (snagged) by road hazards. -EV2.1.7 If tractive system parts are mounted in a position where damage could occur from a rear or side impact (below 350 mm from the ground), such as side mounted accumulators -or rear mounted motors, they must be protected by a fully triangulated structure meeting the requirements of T3.3, or approved equivalent per T3.3.2 or T3.7. -EV2.1.8 Drive motors that are not located fully within the frame, must be protected by an interlock. This interlock must be configured such that the Shutdown Circuit, EV7.1, will be opened if any part of the driven wheel assembly is dislocated from the frame. Drive motors located outside the frame must still comply with EV7.1.3 -EV2.1.9 No part of the tractive-system may project below the lower surface of the frame or the monocoque in either side or front view. -EV2.1.10 Tractive systems and containers must be protected from moisture in the form of rain or puddles. -EV2.1.11 Electric motors, accumulators or electronics that use fluid coolants must comply with T8.1 and -T8.2. - -EV2.14 TS wiring and conduit -EV2.1.12 All tractive system wiring must be done to professional standards with adequate strain relief and protection from loosening due to vibration etc. -EV2.1.13 Soldering in the high current path is prohibited. Exception: surface-mount fuses and similar components that are designed for soldering and the rated current. -1. Fuses must be mechanically supported by a PCB or equivalent, following manufacturer's instructions (e.g. recommended footprint). Free-hanging fuses connected by wires are not allowed. -2. Team must submit a design document showing that PCB traces on these boards are properly designed for the current carried on all circuits. The battery design must still comply with EV2.6, Accumulator Fusing. -EV2.1.14 All wires, terminals and other conductors used in the tractive system must be sized appropriately for the continuous rating of the fuse which protects them. Wire size must comply with the table in Appendix E or alternately, with cable manufacturer's published current rating, if greater. Wires must be marked with wire gauge, temperature rating and insulation voltage rating16. -EV2.1.15 The minimum acceptable temperature rating for TS wiring is 90C. This requirement applies to wire and cable; it does not apply to conduit. -EV2.1.16 All tractive system wiring that runs outside of electrical enclosures must be either: -1. Orange shielded, dual-insulated cable rated for automotive application, at least 5 mm overall cable diameter - - -16 Alternatively a manufacturer's part number printed on the wire will be sufficient if this number can be referenced to a manufacturer's data sheet. - -OR -2. Enclosed in ORANGE non-conductive conduit (except for Virtual Accumulator systems which must use RED conduit. (See EV2.12) -Note: UL Listed Conduit of other colors may be painted or wrapped with colored tape. -EV2.1.17 Conduit must be non-metallic and UL Listed17 as: -1. Conduit under UL1660, UL651 or UL651A -OR -2. Non-Metallic Protective Tubing (NMPT) under UL1696. -EV2.1.18 Conduit runs must be one piece. Conduit splices and/or transitions between conduit and shielded, dual-insulated cable may only occur within an enclosure and must comply with section EV3.3. -EV2.1.19 Wiring to outboard wheel motors may be in conduit or may use shielded dual insulated cables. -All other tractive system wiring that runs outside the vehicle frame (but within the roll envelope) must be within conduit. -EV2.1.20 When shielded dual-insulated cable is used, the shield must be grounded at both ends of the cable. -EV2.1.21 Wiring from motor controller to motor does not require fusing but must be sized for the controller maximum continuous output current, or per manufacturers instructions. - -EV2.15 TS Cable Strain Relief -EV2.1.22 Cable or conduit exiting or entering a tractive system enclosure or the drive motor must use a liquid-tight fitting proving strain relief to the cable or conduit such that it will withstand a force of 200N without straining the cable18. -The fitting must be one of the following: -1. For conduit: A conduit fitting rated for use with the conduit used. -2. For shielded, dual insulated cable: -(i) A cable gland rated for use with the cable used -OR -(ii) A connector rated for use with the cable used. The connector must provide termination of the shield to ground and latch in place securely enough to meet the strain-relief requirements listed above. Both portions of the connector must meet or exceed IEC standards IP53 (mated) and IP20 (unmated). -EV2.1.23 Connections to drive motors that do not have provision for conduit connection are allowed to separate the strain-relief and insulation requirements. Specifically: -1. Cable strain relief must be capable of withstanding a 200N force, and must be within 15 cm of the motor terminals. - - - - -17 "UL Recognized" is not the same as "UL Listed". -18 This will be tested during the electrical tech inspection by pulling on the conduit using a spring scale. - -Note: Conventional cable strain relief fittings, mechanical clamps or saddles may be used, however the integrity of the cable insulation must be protected. -AND -2. the TS wiring must pass EV3.1.3 (finger probe test) -For example, a motor with stud terminals for power input could use a 3D printed plastic cover on the terminals and suitable cable clamps within 15 cm to provide strain relief. - -EV2.16 TS Electrical Connections -EV2.1.24 Tractive system connections must be designed so that they use intentional current paths through conductors such as copper or aluminum19. Steel is not permitted. -EV2.1.25 Tractive system connections must not include compressible material such as plastic or phenolic in the stack-up. (i.e. components identified as #1 in Figure 35) - - -Figure 35 - Connection Stack-up - - -Note: The bolt shown in Figure 35 can be steel since it is not the primary conductor. However the washer (#2), if used, must not be steel, since it is in the primary conduction path. If possible, no washer should be used in this location, so that the two primary conductors are directly clamped together. -EV2.1.26 Conductors and terminals must not be modified from their original size/shape and must be appropriate for the connection being made. -EV2.1.27 Bolts with nylon inserts (Nylocks, etc.) and thread-locking compounds (Loctite, etc.) are not permitted. -EV2.1.28 All bolted or threaded connections must be torqued properly. The use of a contrasting indicator paste20 is strongly recommended to indicate completion of proper torqueing procedures. - - - - -19 Aluminum conductors may be used, but require specific approval from the Formula Hybrid + Electric rules committee. -20 Such as DYKEM(r) Cross-Check Torque Seal(r). See: https://www.youtube.com/watch?v=W80C4XfyCQE - -Recommended TS Connection Fasteners Fasteners specified and/or supplied by the component manufacturer. Bolts with Belleville (conical) metal locking washers. All-metal positive locking nuts. (See Figure 23) -Table 11 - Recommended TS Connection Fasteners - - -EV2.17 Motor Controllers -Note: Commercially available motor controllers containing boost converters that have internal voltages greater than 300 VDC may be used provided the unit is approved in writing by the rules committee. -EV2.1.29 The tractive system motor(s) must be connected to the accumulator through a motor controller. -Bypassing the control system and connecting the tractive system accumulator directly to the motor(s) is prohibited. -EV2.1.30 The accelerator control must be a right-foot-operated foot pedal. Refer to IC1.6 for specific requirements of the accelerator control -EV2.1.31 The foot pedal must return to its original, rearward position when released. The foot pedal must have positive stops at both ends of its travel, preventing its sensors from being damaged or overstressed. -EV2.1.32 All acceleration control signals (between the accelerator pedal and the motor controller) must have error checking. -For analog acceleration control signals, this error checking must detect open circuit, short to ground and short to sensor power -For digital acceleration control signals, this error checking must detect a loss of communication. -EV2.1.33 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, must be galvanically isolated and referenced to GLV ground. -Note: If these capabilities are built into the motor controller, then no additional error-checking circuitry is required. -EV2.1.34 The accelerator signal limit shutoff may be tested during electrical tech inspection by replicating any of the fault conditions listed in EV3.5.4 -EV2.1.35 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, must be galvanically isolated and referenced to GLV ground..21. -EV2.1.36 Motor controller inputs that are galvanically isolated from the TSV may be run throughout the vehicle, but must be positively bonded to GLV ground. - - - - -21 For commercial controllers that do not provide isolated throttle inputs, a remote throttle actuator can be fabricated with a (grounded) Bowden cable and non-conductive linkages. - -EV2.1.37 TS drive motors must spin freely when the TS system is in deactivated state, and when transitioned to a deactivated state. - -EV2.18 Energy Meter -EV2.1.38 Vehicles with accumulator energy capacities in excess of the limits in Table 1 must be fitted with an Energy Meter provided by the organizer to compete in the endurance event. -EV2.1.39 All power flowing between the accumulator and the Tractive System must pass through the Energy Meter. -EV2.1.40 FH+E does not impose POWER limits and so the only function of the energy meter is to determine valid laps for the endurance event. - -ARTICLE EV3 GROUNDED LOW VOLTAGE SYSTEM - -EV2.19 Grounded Low Voltage System (GLV) -EV3.1.1 The GLV system may not have a voltage greater than that listed in Table 8. -EV3.1.2 All GLV batteries must be attached securely to the frame. -EV3.1.3 The hot (ungrounded) terminal of the battery must be insulated. -EV3.1.4 One terminal of the GLV battery or other GLV power source must be connected to the chassis by a stranded ground wire or flexible strap, with a minimum size of 12 AWG or equivalent cross-section. For vehicles without metal chassis members, the GLV system must be connected to conductive parts to meet the grounding requirements in EV8.1.2. -EV3.1.5 The ground wire must run directly from the battery to the nearest frame ground and must be properly secured at both ends. -Note: Through-bolting a ring terminal to a gusset plate or dedicated tab welded to the frame is highly recommended. -EV3.1.6 Any wet-cell battery located in the driver compartment must be enclosed in a nonconductive marine-type container or equivalent and include a layer of 1.5 mm aluminum or equivalent between the container and driver. -EV3.1.7 GLV Battery Pack -1. Team-constructed GLV batteries are allowed. -(i) GLV batteries up to 16.8V (4s LiIon) may be used without a battery management system. -(ii) GLV batteries 16.8V< MaxV<60V must measure the voltage of all series cells and the temperature of 30% of cells. -2. The GLV battery shall have appropriate over-current circuit protection. -3. Cells wired in parallel must have branch-level overcurrent protection. -4. Team-constructed GLV batteries shall be housed in a container meeting min. firewall rules (1.6mm aluminum baseline) with a vent/pressure relief path directed away from the driver. -5. GLV / TSV isolation rules still apply. -EV3.1.8 Orange wire and/or conduit may not be used in GLV wiring. Exception: multi-conductor telecom-type cables containing orange color-coded wires may be used. - -ARTICLE EV4 TRACTIVE SYSTEM VOLTAGE ISOLATION - -Most Formula Hybrid + Electric vehicles contain voltages that could cause injury or death if they came in contact with a human body. In addition, all Formula Hybrid + Electric accumulator systems are capable of storing enough energy to cause injury, blindness or death if that energy is released unintentionally. -To minimize these risks, all tractive system components and wiring must at a minimum comply with the following rules. - -EV2.20 Isolation Requirements -EV4.1.1 All TS wiring and components must be galvanically (electrically) isolated from GLV by separation and/or insulation. -EV4.1.2 All interaction between TS and GLV must be by means of galvanically isolated devices such as opto-couplers, transformers, digital isolators or isolated dc-dc converters. -EV4.1.3 All connections from external devices such as laptops to a tractive system component must be galvanically isolated, and include a connection between the external device ground and the vehicle frame ground. -EV4.1.4 All isolation devices must be rated for an isolation voltage of at least twice the maximum TS voltage. - -EV2.21 General -EV4.1.5 Tractive system and GLV conductors must not run through the same conduit. -EV4.1.6 Tractive system and GLV wiring must not both be present in one connector. Connectors with an integral interlock such as the Amphenol SurLok Plus are exempted from this requirement. -EV4.1.7 TS wiring must be separated from the driver's compartment by a firewall. -EV4.1.8 TS wiring must not be present behind the instrument panel. TS wiring must not be present in the cockpit unless enclosed in conduit and separated from the driver by a firewall. TS potential must not be present on accelerator pedal or other controls in the cockpit. - -EV2.22 Insulation, Spacing and Segregation -EV4.1.9 Tractive system main current path wiring and any TS circuits that are not protected by over- current devices must be constructed using spacing, insulation, or both, in order to prevent short circuits between TS conductors. Minimum spacings are listed in Table 12. Insulation used to meet this requirement must adhere to EV5.4. -EV4.1.10 Where GLV and TS circuits are present in the same enclosure, they must be segregated (in addition to any insulating covering on the wire) by: -1. at least the distance specified in Table 12 OR -2. a barrier material meeting the TS/GLV requirements of EV5.4 -EV4.1.11 All required spacings must be clearly defined. Components and cables must be securely restrained to prevent movement and maintain spacing. -Note: Grouping TS and GLV wiring into separate regions of an enclosure makes it easier to implement spacing or barriers to meet EV5.3.2 - - -Maximum Vehicle TS Voltage TS/TS -Within Accumulator Container22 -TS/GLV Over Surface (Creepage) -Through Air V < 100 VDC 5.3 mm 2.1 mm 10.0 mm 100 VDC < V < 200 VDC 7.5 mm 4.3 mm 20.0 mm V > 200 VDC 9.6 mm 6.4 mm 30.0 mm -Table 12 - Minimum Spacings23 - - -EV2.23 Insulation. -EV4.1.12 All electrical insulating material must be appropriate and adequately robust for the application in which it is used. -EV4.1.13 Insulating materials used for TS insulation or TS/GLV segregation must: -1. Be UL recognized (i.e., have an Underwriters Laboratories24 or equivalent rating and certification). -2. Must be rated for the maximum expected operating temperatures at the location of use, or the temperatures listed in Table 13 (whichever is greater). -3. Must meet the minimum thickness requirements listed in Table 13 -4. The TS/GLV requirement also applies to TS to chassis ground insulation. - - - Minimum Temperature Minimum Thickness TS / GLV -(see Note below) 150 C 0.25 mm TS / TS -TS/Chassis Ground -90 C As required to be rated for the full TS voltage -Table 13 - Insulating Material - Minimum Temperatures and Thicknesses - - -Note: For TS/GLV isolation, insulating material must be used in addition to any insulating covering provided by the wire manufacturer. -EV4.1.14 Insulating materials must extend far enough at the edges to meet spacing and creepage requirements between conductors. - - - -22 Outside of the accumulator container TS/TS spacing should comply with standard industry practice. -23 Teams that have pre-existing systems built to comply with Table 10 in the 2016 rules will be permitted -24 http://www.ul.com - -EV4.1.15 Thermoplastic materials such as vinyl insulation tape may not be used. Thermoset materials such as heat-shrink and self-fusing tapes (typically silicone) are acceptable. - - -Figure 36 - Creepage Distance Example - - -EV2.24 Printed circuit board (PCB) isolation -Printed circuit boards designed and/or fabricated by teams must comply with the following: -EV4.1.16 If tractive system circuits and GLV circuits are on the same circuit board they must be on separate, clearly defined areas of the board. Furthermore, the tractive system and GLV areas must be clearly marked on the PCB. -EV4.1.17 Prototyping boards having plated holes and/or generic conductor patterns may not be used for applications where both GLV and TS circuits are present on the same board. Bare perforated board may be used if the spacing and marking requirements in EV5.5.3 and EV5.5.1 are met, and if the board is removable for inspection. -EV4.1.18 Required spacings between TS and GLV conductors are shown in Table 14. If a cut or hole in the PC board is used to allow the "through air" spacing, the cut must not be plated with metal, and the distance around the cut must satisfy the "over surface" spacing requirement. Spacings between TS and GLV conductors on inner layers of PCBs may be reduced to the "through air" spacings. - - - -Maximum Vehicle TS Voltage Spacing Over surface Through air Under Conformal Coating -0-50 V 1.6 mm 1.6 mm 1 mm 50-150 V 6.4 mm 3.2 mm 2 mm 150-300 V 8.5 mm 6.4 mm 3mm 301-600V 12.7 mm 9.5 mm 4 mm -Table 14 - PCB TS/GLV Spacings - - -Note: Teams must be prepared to demonstrate spacings on team-built equipment. Information on this must be included in the ESF (EV13.1). If integrated circuits are used such as opto- couplers which are rated for the respective maximum tractive system voltage, but do not fulfill the required spacing, then they may still be used and the given spacing do not apply. This applies to the pin-to-pin through air and the pin-to-pin spacing over the package surface, but does not exempt the need to slot the board where pads would otherwise be too close. - -1. Teams must supply high resolution (min. 300 dpi at 1:1) digital photographs of team- designed boards showing: -(i) All layers of unpopulated boards (inner layers or top/bottom layers that don't photograph well can be provided as copies of artwork files.) -(ii) Both top and bottom of fully populated and soldered boards. -EV4.1.19 If dimensional information is not obvious (i.e. 0.1 in x 0.1 in spacing) then a dimensional reference must be included in the photo. Spare boards should be made available for inspection. Teams should also be prepared to remove boards for direct inspection if asked to do so during the technical inspection. -EV4.1.20 Printed circuit boards located inside the accumulator container and having tractive system connections on them must be fused to limited the power on the board to 600 watt or less, with the exception of precharge and discharge circuits. - -ARTICLE EV3 FUSING - GENERAL - -EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging system) must be appropriately fused. -EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating of any electrical component that it protects. This includes wires, bus bars, battery cells or other conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current rating may be used for TS wiring if greater than the Appendix E value. -Note: Many fuses have a peak current capability significantly higher than their continuous current capability. Using such a fuse allows using a relatively small wire for a high peak current, because the rules only require the wire to be sized for the continuous current rating of the fuse. -EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. -EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating equal to or greater than the maximum voltage of the system in which they are used25. -EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit current of the system that it protects. -EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an uncontrolled energy source (e.g., a battery). -Note: For this rule, a battery is considered an energy source even for wiring intended for charging the battery, because current could flow in the opposite direction in a fault scenario. -EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at the branching point, if the branch wire is too small to be protected by the main fuse for the circuit. -Note: For further guidance on fusing, see the Fusing Tutorial found here: https://drive.google.com/drive/u/0/search?q=fusing%20tutorial - - - - - - - - - - - - - - - - - - - -25 Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating must be specifically called out in order for the fuse to be accepted as DC rated. - -ARTICLE EV4 SHUTDOWN CIRCUIT AND SYSTEMS - -EV4.1 Shutdown Circuit -The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the flow of current through this loop is interrupted, the AIRs will open, disconnecting the vehicle's high voltage systems from the source of that voltage within the accumulator container. -Shutdown may be initiated by several devices having different priorities as shown in the following table. - - -Figure 37 - Priority of shutdown sources - - -EV4.1.28 The shutdown circuit must consist of at least: -1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 -2. Tractive System Master Switch (TSMS) See: EV7.4 -3. Two side mounted shutdown buttons (BRBs) See: EV7.5 -4. Cockpit-mounted shutdown button. See: EV7.6 -5. Brake over-travel switch. See: T7.3 -6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: -EV7.9 and Figure 38. -7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). See: EV2.11 and Figure 38. -8. All required interlocks. -9. Both IMD and AMS must use mechanical latching means as described in Appendix G. Latch reset must be by manual push button. Logic-controlled reset is not allowed. - -10. If CAN communication are used for safety functions, a relay controlled by an independent CAN watchdog device that opens if relevant CAN messages are not received. This relay is not required to be latching. -EV4.1.29 Any failure causing the GLV system to shut down must immediately deactivate the tractive system as well. -EV4.1.30 The safety shutdown loop must be implemented as a series connection (logical AND) of all devices included in EV7.1.1. Digital logic or microcontrollers may not be used for this function. Normally open auxiliary relays may be used to power high-current devices such as fans, pumps etc. The AIRs must be powered directly by the current flowing through the loop. -EV4.1.31 All components in the shutdown circuit must be rated for the maximum continuous current in the circuit (i.e. AIR and relay current). -Note: A normally-open relay may be used to control AIR coils upon application to the rules committee. -EV4.1.32 In the event of an AMS, IMD or Brake over-travel fault, it must not be possible for the driver to re-activate the tractive system from within the cockpit. This includes "cycling power" through the use of the cockpit shutdown button. -Note: Resetting or re-activating the tractive system by operating controls which cannot be reached by the driver26 is considered to be working on the car. -EV4.1.33 Electronic systems that contain internal energy storage must be prevented from feeding power back into the vehicle GLV circuits in the event of GLV shutdown. - - - - - - - - - - - - - - - - - - - - - - - - - - - - -26 This would include the use of a wireless link remote from the vehicle. - - -*GLV fuse to comply with EV6.1.7 - -Figure 38 - Example Master Switch and Shutdown Circuit Configuration - - -EV4.2 Master Switches -EV4.1.34 Each vehicle must have two Master Switches: -1. Grounded Low Voltage Master Switch (GLVMS) -2. Tractive System Master Switch (TSMS). -EV4.1.35 Both master switches must be located on the right side of the vehicle, in proximity to the Main Hoop, at the driver's shoulder height and be easily actuated from outside the car. -EV4.1.36 Both master switches must be of the rotary type, with a red, removable key, similar to the one shown in Figure 39. -EV4.1.37 Both master switches must be direct acting. i.e. they may not operate through a relay. - -EV4.1.38 Removable master switches are not allowed, e.g. mounted onto removable body work. -EV4.1.39 The function of each switch must be clearly marked with "GLV" and "TSV". -EV4.1.40 The "ON" position of both switches must be parallel to the fore-aft axis of the vehicle - -EV4.3 Grounded Low Voltage Master Switch (GLVMS) -EV4.1.41 The GLVMS is the highest priority shutdown and must disable power to all GLV electrical circuits. This includes the alternator, lights, fuel pump(s), I.C. engine ignition and electrical controls. -EV4.1.42 All GLV current must flow through the GLVMS. -EV4.1.43 Vehicles with GLV charging systems such as alternators or DC/DC converters must use a multi-pole switch to isolate the charging source from the GLV as illustrated in Figure 3827. -EV4.1.44 The GLVMS must be identified with a label with a red lightning bolt in a blue triangle. (See -Figure 40) - -EV4.4 Tractive System Master Switch (TSMS) -EV4.1.45 The TSMS must open the Tractive System shutdown circuit. -EV4.1.46 The TSMS must be the last switch in the loop carrying the holding current to the AIRs. (See -Figure 38) - - - - - - -Figure 39 - Typical Master Switch - - - - - - -27 https://www.pegasusautoracing.com/productdetails.asp?RecID=1464 - - - -Figure 40 - International Kill Switch Symbol - - -EV4.5 Side-mounted Shutdown Buttons (BRB) -The side-mounted shutdown buttons (Big Red Buttons - or BRBs) are the first line of defense for a vehicle that is malfunctioning or in trouble. Corner and safety workers are instructed to push the BRB first when responding to an emergency. -EV4.1.47 One button must be located on each side of the vehicle behind the driver's compartment at approximately the level of the driver's head. They must be installed facing outward and be easily visible from the sides of the car. -EV4.1.48 The side-mounted BRBs must be red and a minimum of 38 mm. in diameter. -EV4.1.49 The side-mounted shut-down buttons must be a push-pull or push-rotate emergency switch where pushing the button opens the shutdown circuit. -EV4.1.50 The side-mounted shutdown buttons must shut down all electrical systems with the exception of the high-current connection to the engine starter motor. -EV4.1.51 The shut-down buttons may not act through logic such as a micro-controller or relays. -EV4.1.52 The shutdown buttons may not be easily removable, e.g. they may not be mounted onto removable body work. -EV4.1.53 The Side-mounted BRBs must be identified with a label with a red lightning bolt in a blue triangle. (See Figure 40) - -EV4.6 Cockpit Shutdown Button (BRB) -EV4.1.54 One shutdown button must be mounted in the cockpit and be easily accessible by the driver while fully belted in and with the steering wheel in any position. -EV4.1.55 The cockpit shut-down button must be a push-pull or push-rotate emergency switch where pushing the button opens the shutdown circuit. The cockpit shutdown button must be red and at least 24 mm in diameter. -EV4.1.56 Pushing the cockpit mounted button must open the AIRs and shut down the I.C. engine. (See: -Figure 37) - -EV4.1.57 The cockpit shutdown button must be driver resettable. i.e. if the driver disables the system by pressing the cockpit-mounted shutdown button, the driver must then be able to restore system operation by pulling the button back out. -Note: There must still be one additional action by the driver after pulling the button back out to reactivate the motor controller per EV7.7.2. -EV4.1.58 The cockpit shut-down buttons may not act through logic such as a micro-controller or relays. - -EV4.7 Vehicle Start button -EV4.1.59 The GLV system must be powered up before it is possible to activate the tractive system shutdown loop. -EV4.1.60 After enabling the shutdown circuit, at least one action, such as pressing a "start" button must be performed by the driver before the vehicle is "ready to drive". i.e. it will respond to any accelerator input. -EV4.1.61 The "start" action must be configured such that it cannot inadvertently be left in the "on" position after system shutdown. - -EV4.8 Shutdown system sequencing -EV4.1.62 A recommended sequence of operation for the shutdown circuit and related systems is shown in the form of a state diagram in Figure 41. -EV4.1.63 Teams must: -1. Demonstrate that their vehicle operates according to this state diagram, -OR -2. Obtain approval for an alternative state diagram by submitting an electrical rules query on or before the ESF submission deadline, and demonstrate that the vehicle operates according to the approved alternative state diagram. - - - - -Figure 41 - Example Shutdown State Diagram - - -EV4.9 Insulation Monitoring Device (IMD) -EV4.1.64 Every car must have an insulation monitoring device installed in the tractive system. -EV4.1.65 The IMD must be designed for Electric Vehicle use and meet the following criteria: robustness to vibration, operating temperature range, availability of a direct output, a self-test function, and must not be powered by the system that is monitored. The IMD must be a stand-alone unit. -IMD functionality integrated in an AMS is not acceptable (Bender A-ISOMETER (r) iso-F1 IR155-3203, IR155-3204, and Iso175C-32-SS are recommended examples). -EV4.1.66 The response value of the IMD needs to be set to no less than 500 ohm/volt, related to the maximum tractive system operation voltage. -EV4.1.67 In case of an insulation failure or an IMD failure, the IMD must shut down all the electrical systems, open the AIRs and shut down the I.C. drive system. (Some GLV systems such as accumulator cooling pumps and fans, may remain energized - See Figure 37) -EV4.1.68 The tractive system must remain disabled until manually reset by a person other than the driver. It must not be possible for the driver to re-activate the tractive system from within the car in case of an IMD-related fault. -EV4.1.69 Latching circuitry added by teams to comply with EV7.9.5 must be implemented using electro-mechanical relays. (See Appendix G - Example Relay Latch Circuits.) - -EV4.1.70 The status of the IMD must be displayed to the driver by a red indicator light in the cockpit. (See EV9.4). The indicator must show the latched fault and not the instantaneous status of the IMD. -Note: The electrical inspectors will test the IMD by applying a test resistor between tractive system (positive or negative) and GLV system ground. This must deactivate the system. -Disconnecting the test resistor may not re-activate the system. i.e. the tractive system must remain inactive until it is manually reset. -EV4.1.71 The IMD high voltage sense connections may be unfused if wiring is less than 30 cm in length, is less than or equal to #16 wire gauge, has an insulation voltage rating of at least 600V, and is "double insulated" (e.g. has additional sleeving on both conductors). If any of these conditions is not met, the IMD HV sense connections must be fused in accordance with EV3.2.3 and ARTICLE EV6. - -ARTICLE EV5 GROUNDING - -EV4.10 General -EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a resistance below 300 mO to GLV system ground. -Accessible parts are defined as those that are exposed in the normal driving configuration or when the vehicle is partially disassembled for maintenance or charging. -EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon fiber parts, etc.) that could potentially become energized (including post collision or accident), no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system ground. -NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or similar modifications to keep the ground resistance below 100 ohms. -EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV system ground. -EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 AWG and be stranded. -Note: For GLV system grounding conductor size see EV4.1.4. -EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the vehicle which is likely to be conductive, for example the driver's harness attachment bolts. -Where no convenient conductive point is available then an area of coating may be removed. -Note: If the resistance measurement displayed by a conventional two-wire meter is slightly higher than the requirement, a four-terminal measurement technique may be used. If the four- terminal measurement (which is more accurate) meets the requirement, then the vehicle passes the test. -See: https://en.wikipedia.org/wiki/Four-terminal_sensing -EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS communication) will be required to document and demonstrate shutdown equivalent to BRB operation if CAN communication is interrupted. A solution to this requirement may be a separate device with relay output that monitors CAN traffic. - -ARTICLE EV6 SYSTEM STATUS INDICATORS - -EV4.11 Tractive System Active Lamp (TSAL) -EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop which must be lit and clearly visible any time the AIR coils are energized. -EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green for TS not present are also acceptable. -EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. -EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. -EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles which are covered by the main roll hoop) even in very bright sunlight. -EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The person's minimum eye height is 1.6 m. -NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily visible during track operations the team may not be allowed to compete in any dynamic event before the problem is solved. -EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. -EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator containers is above a threshold calculated as the higher value of 60V or 50% of the nominal accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at voltages below 20V. The TSAL system must be powered entirely by the tractive system and must be directly controlled by voltage being present at the output of the accumulator (no software control is permitted). -EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. -Note: This requirement may be met by locating an isolated dc-dc converter inside a TS enclosure, and connecting the output of the dc-dc converter to the lamp. -(Because the voltage driving the lamp is considered GLV, one side of the voltage driving the lamps must be ground-referenced by connecting it to the frame in order to comply with EV4.1.4.) - -EV4.12 Ready-to-Drive Sound -EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 seconds, when it is ready to drive. (See EV7.7) -Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque encoder / accelerator pedal. -EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter28. -EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one in the front, and one from each side of the vehicle. - - - -28 Some compliant devices can be found here: https://www.mspindy.com/ - -EV6.1.13 The vehicle must not make any other sounds similar to the Ready-to-Drive sound. - -EV4.13 Electrical Systems OK Lamps (ESOK) -ESOK indicator lamps are required for hybrid and hybrid-in-progress vehicles. They are not required for electric-only vehicles. -The purpose of the ESOK indicators is to ensure that a hybrid vehicle is operating with the electric traction system engaged, and to prevent IC-only operation in dynamic events. - This requirement is in addition to TSAL indicators which are required for all vehicle classes. -EV6.1.14 Hybrid vehicles must have two ESOK lamps. One mounted on each side of the roll bar in the vicinity of the side-mounted shutdown buttons (EV7.5) that can easily be seen from the sides of the vehicle.The indicators must be Amber, complying with DOT FMVSS 108 for trailer clearance lamps29. See Figure 42. They must be clearly labeled "ESOK". -EV6.1.15 The ESOK indicators must be powered from the circuit feeding the AIR (contactor) coils. If there is an electrical system fault, or a "BRB" is pressed, or the TS master switch is opened, the ESOK indicators must extinguish. See Figure 38 for an example of ESOK lamp wiring. -See Figure 38 for an example of ESOK lamp wiring. - - - -Figure 42 - Typical ESOK Lamp - - -EV4.14 Insulation Monitoring Device (IMD) -EV6.1.16 The status of the IMD must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must light up if the IMD detects an insulation failure or if the IMD detects a failure in its own operation e.g. when it loses reference ground. -EV6.1.17 The IMD indicator light must be clearly marked with the lettering "IMD" or "GFD" (Ground Fault Detector). - -EV4.15 Accumulator Voltage Indicator -EV6.1.18 Any removable accumulator container must have a prominent indicator, such as an LED, that is visible through a closed container that will illuminate whenever a voltage greater than 60 VDC is present at the vehicle side of the AIRs. -EV6.1.19 The accumulator voltage indicator must be directly controlled by voltage present at the container connectors using analog electronics. No software control is permitted. - - - -29 https://www.ecfr.gov/cgi-bin/text-idx?node=se49.6.571_1108 - -EV4.16 Accumulator Monitoring System (AMS) -EV6.1.20 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must light up if the AMS detects an accumulator failure or if the AMS detects a failure in its own operation. -EV6.1.21 The AMS indicator light must be clearly marked with the lettering "AMS". - -ARTICLE EV5 ELECTRICAL SYSTEM TESTS - -Note: During electrical tech inspection, these tests will normally be done in the following order: IMD test, insulation measurement, AMS function then Rain test. - -EV5.1 Insulation Monitoring Device (IMD) Test -EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive vehicle parts while the tractive system is active, as shown in the example below. -EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault resistance of 250 ohm/volt (50% below the response value). -Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. -EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take part in any dynamic event if any of the seals are broken until the IMD test is successfully passed again. - - - -Figure 43 - Insulation Monitoring Device Test - - -EV5.2 Insulation Measurement Test -EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive system and control system ground. The available measurement voltages are 250 V, 500 V and 750 V DC. -All cars will be measured with the next available voltage level. For example, a 175 V system will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V system will be measured with 750 V etc. -EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least 500 ohm/volt related to the maximum nominal tractive system operation voltage. - -EV5.3 Tractive System Measuring Points (TSMP) -The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, -EV2.8.3. - -They may also be used to ensure the isolation of the tractive system of the vehicle during possible rescue operations after an accident or when work on the vehicle is to be done. -EV6.1.27 Two tractive system voltage measuring points must be installed in an easily accessible30 well marked location. Access must not require the removal of body panels. The TSMP jacks must be marked "Gnd", "TS+" and "TS-". -EV6.1.28 The TSMPs must be protected by a non-conductive housing that can be opened without tools. -EV6.1.29 Shrouded 4 mm banana jacks that accept shrouded (sheathed) banana plugs with non- retractable shrouds must be used for the TSMPs and the system ground measuring point (EV10.3.6). -See Figure 44 for examples of the correct jacks and of jacks that are not permitted because they do not accept the required plugs (also shown). -EV6.1.30 The TSMPs must be connected, via current limiting resistors, to the positive and negative motor controller/inverter supply lines. (See Figure 38) The TSMP must measure motor controller input voltage even if segmenting or TSMS switches are opened. -EV6.1.31 The wiring to each TSMP must be protected with a current limiting resistor sized per Table 15. (Fuses or other forms of overcurrent protection are not permitted). The resistor must be located as close to the voltage source as practical and must have a power rating of: - -Maximum TS Voltage Resistor Value <= 200 V** 5 kO 201 - 400 V 10 kO 401 - 600 V 15 kO -Table 15-TSMP Resistor Values31 - - - The resistor must be located as close to the voltage source as practical and must have a power rating of: -2 (????????????2) -?? - - -but not less than 5 W. -EV6.1.32 A GLV system ground measuring point must be installed next to the TSMPs. This measuring point must be connected to the GLV system ground, must be a 4 mm shrouded banana jack and marked "GND". - - - - - - -30 It should be possible to insert a connector with one hand while standing next to the car. -31 Teams with vehicles with Maximum TS Voltage of 200 V or less may use existing 10 kO resistor values upon application to the rules committee - - - - -Figure 44 - - - - -EV5.4 Accumulator Monitoring System (AMS) Test -EV6.1.33 The AMS will be tested in one of two ways: -1. By varying AMS software setpoints so that actual cell voltage is above or below the trip limit. -2. The AMS may be tested by varying simulated cell voltage to the AMS test connector, following open accumulator safety procedures, to make the actual cell voltage above or below the trip limit. -EV6.1.34 The requirement for an AMS test port for commercial accumulator assemblies may be waived, or alternate tests may be substituted, upon application to the rules committee. - - -EV5.5 Rain test -EV6.1.35 Vehicles that pass the rain test will receive a "Rain Certified" sticker and may be operated in damp or wet conditions. See: ARTICLE D3 -If a vehicle does not pass the rain test, or if the team chooses to forego the rain test, then the vehicle is not rain certified and will not be allowed to operate in damp or wet conditions. -EV6.1.36 During the rain test: -1. The tractive system must be active. -2. It is not allowed to have anyone seated in the car. -3. The vehicle must be on stands such that none of the driven wheels touch the ground. -EV6.1.37 Water will be sprayed at the car from any possible direction for 120 seconds. The water spray will be rain-like. There will be no high-pressure water jet directed at the car. -EV6.1.38 The test is passed if the IMD does not trip while water is sprayed at the car and for 120 seconds after the water spray has stopped. Therefore, the total time of the rain test is 240 seconds, 120 seconds with water-spray and 120 seconds without. - -EV6.1.39 Teams must ensure that water cannot accumulate anywhere in the chassis. - -ARTICLE EV1 POUCH TYPE LITHIUM-ION CELLS - - - -EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion and compression requirements, mechanical constraint, and tab connections. -EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, for review, in their ESF1 and ESF2 submissions. - -ARTICLE EV6 HIGH VOLTAGE PROCEDURES & TOOLS - - -EV6.1 Working on Tractive Systems or accumulators -EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and that all team members know and follow. -EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated by using the maintenance plugs. (See EV2.7). -EV6.1.42 If the organizers have provided a "Designated Charging Area", then opening of or working on accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical Tech Inspection. -EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. -EV6.1.44 Whenever the accumulator is open or being worked on, a "Danger High Voltage" sign (or other warning device provided by the organizers) must be displayed. -Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. - -EV6.2 Charging -EV6.1.45 If the organizers have provided a "Designated Charging Area", then charging tractive system accumulators is only allowed inside this area. -EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a (minimum) 16 AWG green wire during charging. -Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the competition site. -EV6.1.47 If the organizers have provided "High Voltage" signs and/or beacons, these must be displayed prominently while charging. -EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable accumulator container. -EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the accumulators are charged externally or internally) must have a prominent sign with the following data: -1. Team name -2. RSO Name with cell phone number(s). -EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed. - -EV6.1.51 All connections of the charger(s) must be isolated and covered, with intact strain relief and no fraying of wires. -EV6.1.52 No work is allowed on any of the car's systems during charging if the accumulators are charging inside of or connected to the car. -EV6.1.53 No grinding, drilling, or any other activity that could produce either sparks or conductive debris is allowed in the charging area. -EV6.1.54 At least one team member who has knowledge of the charging process must stay with the accumulator(s) / car during charging. -EV6.1.55 Moving accumulator cells and/or stack(s) around at the event site is only allowed inside a completely closed accumulator container. -EV6.1.56 High Voltage wiring in an offboard charger does not require conduit; however, it must be a UL listed flexible cable that complies with NEC Article 400; jacketed. -EV6.1.57 The vehicle charging connection must be appropriately fused for the rating of its connector and cabling in accordance with EV6.1.1. -EV6.1.58 The vehicle charging port must only be energized when the tractive system is energized and the TSAL is flashing. -i.e. there must be no voltage present on the charging port when the tractive system is de- energized. -EV6.1.59 If charging on the vehicle, AMS and IMD systems must be active during charging. The external charging system must shut down if there is an AMS or IMD fault, or if one of the shutdown buttons (See EV7.5) is pressed. If charging off the vehicle, equivalent AMS and IMD protection must be provided. If charging off the vehicle, the charging cart and any exposed metal must be connected to ac-power ground. - -EV6.3 Accumulator Container Hand Cart -EV6.1.60 In case removable accumulator containers are used in order to accommodate charging, a hand cart to transport the accumulators must be presented at Electrical Tech Inspection. -EV6.1.61 The hand cart must have a brake such that it can only be released using a dead man's switch, - i.e. the brake is always on except when someone releases it by pushing a handle for example. EV6.1.62 The brake must be capable to stop the fully loaded accumulator container hand cart. EV6.1.63 The hand cart must be able to carry the load of the accumulator container(s). -EV6.1.64 The hand cart(s) must be used whenever the accumulator container(s) are transported on the event site. - -EV6.4 Required Equipment -Each team must have the following equipment accessible at all times during the event. The equipment must be in good condition, and must be presented during technical inspection. (See also Appendix F) -1. Multimeter rated for CAT III use with UL approval. (Must accept shrouded banana leads.) -2. Multimeter leads rated for CAT III use with shrouded banana leads at one end and probes at the other end. The probes must have finger guards and no more than 3 mm of - -exposed metal. (Heat shrink tubing may be used to cover additional exposed metal on probes.) -3. Multimeter leads rated for CAT III use with shrouded banana plugs at both ends. -4. Insulated tools. (i.e. screwdrivers, wrenches etc. compatible with all fasteners used inside the accumulator housing.) -5. Face shield which meets ANSI Z87.1-2003 -6. HV insulating gloves (tested within the last14 Months) plus protective outer gloves. -7. HV insulating blanket(s) of sufficient size and quantity to cover the vehicle's accumulator(s). -8. Safety glasses with side shields (ANSI Z87.1-2003 compliant) for all team members. - -Note: All electrical safety items must be rated for at least the maximum tractive system voltage. - -ARTICLE EV7 REQUIRED ELECTRICAL DOCUMENTATION - -EV7.1 Electrical System Form - Part 1 -Part 1 of the ESF requests preliminary design information. This is so that the technical reviewers can identify areas of concern early and provide feedback to the teams. - -EV7.2 Electrical System Form - Part 2 -Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. This information must be reentered in Part 2. However it is not expected that the fields will contain identical information, since many aspects of a design will change as a project evolves. -EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the voltage level, the topology, the wiring in the car and the construction and build of the accumulator(s). -EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and show that none of these ratings are exceeded (including wiring components). This includes stress caused by the environment e.g. high temperatures, vibration, etc. -EV6.1.67 A template containing the required structure for the ESF will be made available online. -EV6.1.68 The ESF must be submitted as a Microsoft Word format file. - -ARTICLE EV7 - ACRONYMS - -AC Alternating Current -AIR Accumulator Isolation Relay -AMS Accumulator Management System -BRB Big Red Buttons (Emergency shutdown switches) -ESF Electrical System Form ESOK Electrical Systems OK Lamp GLV Grounded Low Voltage -GLVMS Grounded Low Voltage Master Switch -HVD High Voltage Disconnect -IMD Insulation Monitoring Device -PCB Printed Circuit Board -SMD Segment Maintenance Disconnect -TS Tractive System -TSMP Tractive System Measuring Point TSMS Tractive System Master Switch TSV Tractive System Voltage -TSAL Tractive System Active Lamp - -PART S1 - STATIC EVENTS - -Presentation 150 points Design 200 points Total 350 points Table 15 - Static Event Maximum Scores - -ARTICLE S1 TECHNICAL INSPECTION - -1S1.1 Objective -1S1.1.1 The objective of technical inspection is to determine if the vehicle meets the FH+E rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules. -1S1.1.2 For purposes of interpretation and inspection the violation of the intent of a rule is considered a violation of the rule itself. -1S1.1.3 Technical inspection is a non-scored activity. -1S1.2 Inspection & Testing Requirement -1S1.2.1 Each vehicle must pass all parts of technical inspection and testing, and bear the inspection stickers, before it is permitted to participate in any dynamic event or to run on the practice track. The exact procedures and instruments employed for inspection and testing are entirely at the discretion of the Chief Technical Inspector. -1S1.2.2 Technical inspection will examine all items included on the Inspection Form found on the Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) plus any other items the inspectors may wish to examine to ensure conformance with the Rules. -1S1.2.3 All items on the Inspection Form must be clearly visible to the technical inspectors. 1S1.2.4 Visible access can be provided by removing body panels or by providing removable access -panels. -1S1.2.5 Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification and Repairs, it must remain in the "As-approved" condition throughout the competition and must not be modified. -1S1.2.6 Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final and are not permitted to be appealed. -1S1.2.7 Technical inspection is conducted only to determine if the vehicle complies with the requirements and restrictions of the Formula Hybrid + Electric rules. -1S1.2.8 Technical approval is valid only for the duration of the specific Formula Hybrid + Electric competition during which the inspection is conducted. -1S1.3 Inspection Condition -Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, complete and ready-to-run. Technical inspectors will not inspect any vehicle presented for inspection in an unfinished state. -This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). -Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished. -1S1.4 Inspection Process -Vehicle inspection will consist of five separate parts as follows: -(a) Part 1: Preliminary Electrical Inspection -Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the Preliminary Electrical Inspection. -(b) Part 2: Scrutineering - Mechanical - -Each vehicle will be inspected to determine if it complies with the mechanical and structural requirements of the rules. This inspection will include examination of the driver's equipment (ARTICLE T5) a test of the emergency shutdown response time (Rule T4.9) and a test of the driver egress time (Rule T4.8). -The vehicle will be weighed, and the weight placed on a sticker affixed to the vehicle for reference during the Design event. -(c) Part 3: Scrutineering - Electrical -Each vehicle will be inspected for compliance with the electrical portions of the rules. -Note: This is an extensive and detailed inspection. Teams that arrive well-prepared can reduce the time spent in electrical inspection considerably. -The electrical inspection will include all the tests listed in EV9.5.1. -Note: In addition to the electrical rules contained in this document, the electrical inspectors will use SAE Standard J1673 "High Voltage Automotive Wiring Assembly Design" as the definitive reference for sound wiring practices. -Note: Parts 1, 2 and 3 must be passed before a vehicle may apply for Part 4 or Part 5 inspection. -(d) Part 4: Tilt Table Tests -Each vehicle will be tested to insure it satisfies both the 45 degree (45) fuel and fluid tilt requirement (Rule T8.5.1) and the 60 degree (60) stability requirement (Rule T6.7). -(e) Part 5: Noise, Master Switch, and Brake Tests. -Noise will be tested by the specified method (Rule IC3.2). If the vehicle passes the noise test then its master switches (EV7.2) will be tested. -Once the vehicle has passed the noise and master switch tests, its brakes will be tested by the specified method (see Rule T7.2). -1S1.5 Correction and Re-inspection -1S1.5.1 If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, then the team must correct the problem and have the car re-inspected. -1S1.5.2 The judges and inspectors have the right to re-inspect any vehicle at any time during the competition and require correction of non-compliance. -1S1.6 Inspection Stickers -Inspection stickers issued following the completion of any part of technical inspection must be placed on the upper nose of the vehicle as specified in T13.4 "Technical Inspection Sticker Space". -Inspection stickers are issued contingent on the vehicle remaining in the required condition throughout the competition. Inspection stickers may be removed from vehicles that are not in compliance with the rules or which are required to be re-inspected. - -ARTICLE S2 PROJECT MANAGEMENT - -1S2.1 Project Management Objective -The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team's ability to structure and execute a project management plan that helps the team define and meet its goals. -A well written project management plan will not only aid each team in producing a functional, rules compliant race car on-time, it will make it much easier to create the Change Management Report and Final Presentation components of the Project Management Event. -Several resources are available to guide work in these areas. They can be found in Appendix C. -No team should begin developing its project management plan without FIRST: -(a) Reviewing "Application of the Project Management Method to Formula Hybrid + Electric", by Dr. Edward March, former Formula Hybrid + Electric Chief Project Management Judge. -(b) Viewing in its entirety Dr. March's 12-part video series"Formula Hybrid + Electric Project Management". -(c) Reading "Formula Hybrid + Electric Project Management Event Scoring Criteria", found in Appendix C of the Formula Hybrid + Electric Rules. -(d) Watching an example of a "perfect score" presentation, from a previous competiton. -1S2.2 Project Management Segments -The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of a written project plan (2) a written change management report, and, (3) an oral final presentation assessing the overall project management experience to be delivered before a review board at the competition. - - -Segment Points Project Plan Report 55 Change Management Report 40 Presentation 55 Total 150 -Table 16 - Project Management Scoring - - -1S2.3 Submission 1 -- Project Plan Report -1S2.3.1 Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that reflects its goals and objectives for the upcoming competition, the management structure, the tasks that will be required to accomplish these objectives, and the time schedule over which these tasks will be performed. The topics covered in the Project Plan Report should include: -(a) Scope: What will be accomplished, "SMART" goals and objectives (see Appendix C for more information), major deliverables and milestones. - -(b) Operations: Organization of the project team, Work Breakdown Structure, project timeline, and a budget and funding strategy. -(c) Risk Management: tasks expected to be particularly difficult for the team, but whose completion is essential for achieving team goals and having a functional car ready before shipment to the track; contingency plans to mitigate these risks if problems arise during project execution. -(d) Expected Results: Team goals and objectives quantified into "measure of success". These attributes are useful for assigning task priorities and allocating resources during project execution. They are also used to determine the extent to which the goals have been achieved. -(e) Change Management Process: The system designed by the team for administering project change and maintaining communication across all team members. -1S2.3.2 This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of text. Appendices with supporting information may be attached to the back of the Project Plan. -Note 1: Title pages, appendices and table-of-contents do not count as "pages". -Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date. -Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project Management judges a one half hour online review session may be made available to each team. - -1S2.4 Submission 2 - Change Management Report - -1S2.4.1 Following completion and acceptance of the formal project plan by student team members, the project team begins the execution phase. During this phase, members of the student team and other stakeholders must be updated on progress being made and on issues identified that put the project schedule at risk. The ability of the team to change direction or "pivot" in the face of risks is often a key factor in a team's successful completion of the project. Changes to the plan are adopted and formally communicated through a change management report. Each team must submit one change management report. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date. -1S2.4.2 These reports are not lengthy but are intended to clearly and concisely communicate the documented changes to the project scope and plan to the team that have been approved using the Change Management Process. See Appendix C for details on scoring criteria for this report. The topics covered in the progress report should include: -A) Change Management Process: Detail the Change Management processes and platforms used by the team. At a minimum, the report is expected to cover: -a. what triggers the process -b. how does information flow through the process -c. how are final decisions transmitted to all team members -d. team-created process flow diagram - -B) Implementation of the Change Management Process: Teams are expected to review in detail how the Change Management Process has been used to modify at least one of their project's main components (Scope or Goals, Operational Plan, Risk Management, and Expected Results). The report is expected to cover an example from start to finish in the process and should also detail the final impact to the project. -C) Effectiveness of and Improvements to the Change Management Process: At the end of the project lifecycle, the team is expected to perform an assessment on the effectiveness of their Change Management Process. Through this assessment, the team should identify at least two areas of opportunity to improve the process and include the plans/details to implement those changes. - - -1S2.4.3 The Change Management Report must not exceed two (2) pages. Appendices may be included with the Report -Note 1: Appendix content does not count as "pages". -Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- hybrid.org/deadlines for the due date of the Change Management Report. -1S2.5 Submission Formats -1S2.5.1 The Project Plan and Change Management Report must be submitted electronically in separate Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, drawings, and optional content). -1S2.5.2 These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g.: - - 999_University of SAE_Project Plan.doc(x) 999_University of SAE_ChangeManagement.doc(x) - -1S2.6 Submission Deadlines -The Project Plan and Change Management Report must be submitted by the date and time shown in the Action Deadlines. Submission instructions are in section A9.2. -See section A9.3 for late submission penalties. -1S2.7 Presentation -1S2.7.1 Objective: Teams must convince a review board that the team's project has been carefully planned and effectively and dynamically executed. -1S2.7.2 The Project Management presentation will be made on the static events day. Presentation times will be scheduled by the organizers and either posted in advance on the competition website or released during on-site registration (or both). -Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable. 1S2.7.3 Teams that fail to make their presentation during their assigned time period will receive zero -(0) points for that section of the event. - -Note: Teams are encouraged to arrive fifteen (15) minutes prior to their scheduled presentation time to deal with unexpected technical difficulties. -The scoring of the event is based on the average of the presentation judging forms. -1S2.8 Presentation Format -The presentation judges should be regarded as a project management or executive review board. 1S2.8.1 Evaluation Criteria - Project Management presentations will be evaluated based on team's -accomplishments in project planning, execution, change management, and succession planning. Presentation organization and quality of visual aids as well as the presenters' delivery, timing and the team's response to questions will also be factors in the evaluation. -1S2.8.2 One or more team members will give the presentation to the judges. It is strongly suggested, although not required, that the project manager accompany the presentation team. All team members who will give any part of the presentation, or who will respond to the judge's questions, must be in the podium area when the presentation starts and must be introduced to the judges. Team members who are part of this "presentation group" may answer the judge's questions even if they did not speak during the presentation itself. -1S2.8.3 Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, posters, etc. to convey information relevant to their project management case that cannot be contained within a 12-minute presentation. -1S2.8.4 The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt the presentation itself. -1S2.8.5 Feedback on presentations will take place immediately following the eight (8) minute question and answer session. Judges and any team members present may ask questions. The maximum feedback time for each team is eight (8) minutes. -1S2.8.6 Formula Hybrid + Electric may record a team's presentation for publication or educational purposes. Students have the right to opt out of being recorded - however they must notify the chief presentation judge in writing prior to the beginning of their presentation. -1S2.9 Data Projection Equipment -Projection equipment is provided by the organizers. However, teams are advised to bring their own computer equipment in the event the organizer's equipment malfunctions or is not compatible with their presentation software. -1S2.10 Scoring Formula -The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is then normalized as follows: - -?????????? ?????????????? ???????????????????? ?????????? = 150 * (??????????/????????) - - -Where: - - -Pmax is the highest point score awarded to any team -Pyour is the point score awarded to your team. - - - -Notes: - -1. It is intended that the scores will range from near zero (0) to one hundred and fifty (150) points, providing a good separation range. -2. The Project Management Presentation Captain may at her/his discretion normalize the scores of different presentation judging teams for consistency in scoring. -3. Penalties associated with late submittals (see A9.3 "Late Submission Penalties") are applied after the scores are normalized up to a maximum of the team's normalized Project Management Score. - - -ARTICLE S3 DESIGN EVENT - -1S3.1 Design Event Objective -The concept of the design event is to evaluate the engineering effort that went into the design of the car (or the substantial modifications to a prior year car), and how the engineering meets the intent of the market. The car that illustrates the best use of engineering to meet the design goals and the best understanding of the design by the team members will win the design event. -Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and that in the Design event, teams are evaluated on their design. Components and systems that are incorporated into the design as finished items are not evaluated as a student designed unit, but are only assessed on the team's selection and application of that unit. For example, teams that design and fabricate their own shocks are evaluated on the shock design itself as well as the shock's application within the suspension system. Teams using commercially available shocks are evaluated only on selection and application within the suspension system. -1S3.2 Submission Requirements -1S3.2.1 Design Report - Judging will start with a Design Review before the event. -The principal document submitted for the Design Review is a Design Report. This report must not exceed ten (10) pages, consisting drawings (see S3.4, "Vehicle Drawings") and content to be defined by the team (photos, graphs, etc...). -This document should contain a brief description of the vehicle and each category listed in Appendix D with the majority of the report specifically addressing the engineering, design features, and vehicle concepts new for this year's event. Include a list of different analysis and testing techniques (FEA, dynamometer testing, etc.). -Evidence of this analysis and back-up data should be brought to the competition and be available, on request, for review by the judges. These documents will be used by the judges to sort teams into the appropriate design groups based on the quality of their review. -Comment: Consider your Design Report to be the "resume of your car". -1S3.2.2 Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the FH+E website. (Do not alter or re-format the template prior to submission.) -Note: The design judges realize that final design refinements and vehicle development may cause the submitted figures to diverge slightly from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate. - -The Design Report and the Design Spec Sheet, while related documents, must stand alone and be considered two (2) separate submissions. Two separate file submissions are required. -1S3.3 Sustainability Requirement -1S3.3.1 Instead of a Sustainability Report please add a Sustainability section to the Design Report answering both of the following prompts: -(a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How have you improved these quantities compared to previous year vehicles? How might you improve this in your next vehicle? What components or design decisions are the biggest contributors to the emissions or efficiency, positively or negatively? -(b) How does the vehicle's design and construction contribute to the recyclability and re-use of your vehicle, especially when it comes to accumulator storage? -1S3.4 Vehicle Drawings -1S3.4.1 The Design report must include all of the following drawings: -(a) One set of 3 view drawings showing the vehicle from the front, top, and side. -(b) A schematic of the high voltage wiring showing the wiring between the major components. (See section EV13.1) -(c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all major high voltage components and the routing of high voltage wiring. The components shown must (at a minimum) include all those listed in the major sections of the ESF (See section EV13.1) -1S3.5 Submission Formats -1S3.5.1 The Design Report must be submitted electronically in Adobe Acrobat(tm) Format files (*.pdf file). These documents must each be a single file (text, drawings, and optional content). These Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E assigned car number and the complete school name, e.g.: -999_University of SAE_Design.pdf - - -1S3.5.2 Design Spec Sheets must be submitted electronically in Microsoft Excel(tm) Format. The format of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g. -999_University of SAE_Specs.xls (or) - -999_University of SAE_Specs.xlsx - -WARNING - Failure to exactly follow the above submission requirements may result in exclusion from the Design Event. If your files are not submitted in the required format or are not properly named then they cannot be included in the documents provided to the design judges and your team will be excluded from the event. - -1S3.6 Excess Size Design Reports -If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read and evaluated by the judges. -Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text information on them will be scored. -1S3.7 Submission Deadlines -The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the event website once report is reviewed for accuracy. Teams should have a printed copy of this reply available at the competition as proof of submission in the event of discrepancy. -1S3.8 Penalty for Late Submission or Non-Submission -See section A9.3 for late submission penalties. -1S3.9 Penalty for Unsatisfactory Submissions -1S3.9.1 Teams that submit a Design Report or a Design Spec Sheet which is deemed to be unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. They may be allowed to compete, but receive a penalty of up to seventy five (75) points. -Failure to fully document the changes made for the current year's event to a vehicle used in prior FH+E events, or reuse of any part of a prior year design report, are just two examples of Unsatisfactory Submissions -1S3.10 Vehicle Condition -1S3.10.1 With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, complete and ready-to-run. The judges will not evaluate any car that is presented at the design event in what they consider to be an unfinished state. -Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. -Note: Cars can be presented for design judging without having passed technical inspection, or if final tuning and setup is still in progress. -1S3.11 Judging Criteria -The design judges will evaluate the engineering effort based upon the team's Design Report, Spec Sheet, responses to questions and an inspection of the car. The design judges will inspect the car to determine if the design concepts are adequate and appropriate for the application (relative to the objectives set forth in the rules). It is the responsibility of the judges to deduct points on the design judging form, as given in Appendix D if the team cannot adequately explain the engineering and construction of the car. -1S3.12 Judging Sequence -The actual format of the design event may change from year to year as determined by the organizing body. In general, the design event includes a brief overview presentation in front of the physical vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve two parts: -(a) Initial judging of all vehicles - -(b) Final judging ranking the top 2 to 4 vehicles. -1S3.13 Scoring Formula -The scoring of the event is based on either the average of the scores from the Design Judging Forms (see Appendix C) or the consensus of the judging team. - -???????????? ?????????? = 200 ?????????? -???????? - -Where: Pmax is the highest point score awarded to any team in your vehicle category Pyour is the point score awarded to your team - - -Notes: - - -It is intended that the scores will range from near zero (0) to two hundred (200) to provide good separation. -? The Lead Design Judge may, at his/her discretion, normalize the scores of different judging teams. -? Penalties applied during the Design Event (see Appendix D "Design Judging Form - Miscellaneous") are applied before the scores are normalized. -? Penalties associated with late submittals (see A9.3 "Late Submission Penalties") are applied after the scores are normalized up to a maximum of the teams normalized Design Score. - - - -1S3.14 Support Materials -Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process. - -PART 1D - DYNAMIC EVENTS - -ARTICLE D1 DYNAMIC EVENTS GENERAL - -1D1.1 Maximum Scores - -Event Acceleration 100 Points Autocross 200 Points Endurance 350 Points Total 650 Points -Table 17 - Dynamic Event Maximum Scores - - -1D1.2 Driving Behavior -During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to an official, worker, spectator or other driver, will result in a penalty. -Depending on the potential consequences of the behavior, the penalty will range from an admonishment, to disqualification of that driver from all events, to disqualification of the team from that event, to exclusion of the team from the Competition. -1D1.3 Safety Procedures -1D1.3.1 Drivers must properly use all required safety equipment at all times while staged for an event, while running the event, and while stopped on track during an event. Required safety equipment includes all drivers gear and all restraint harnesses. -1D1.3.2 In the event it is necessary to stop on track during an event the driver must attempt to position the vehicle in a safe position off of the racing line. -1D1.3.3 Drivers must not exit a vehicle stopped on track during an event until directed to do so by an event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or electrical problems. -1D1.4 Vehicle Integrity and Disqualification -1D1.4.1 During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged suspension, brakes or steering components, electrical tractive system fault, or any condition that could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid reason for exclusion by the officials. -1D1.4.2 The safety systems monitoring the electrical tractive system must be functional as indicated by an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event. -1D1.4.3 If vehicle integrity is compromised during the Endurance Event, scoring for that segment will be terminated as of the last completed lap. - -ARTICLE D2 WEATHER CONDITIONS - -The organizer reserves the right to alter the conduct and scoring of the competition based on weather conditions. - -ARTICLE D3 RUNNING IN RAIN - -A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See -EV10.5) -1D3.1 Operating Conditions -The following operating conditions will be recognized at Formula Hybrid + Electric: -(a) Dry - Overall the track surface is dry. -(b) Damp - Significant sections of the track surface are damp. -(c) Wet - The entire track surface is wet and there may be puddles of water. -(d) Weather Delay/Cancellation - Any situation in which all, or part, of an event is delayed, rescheduled or canceled in response to weather conditions. -1D3.2 Decision on Operating Conditions -The operating condition in effect at any time during the competition will be decided by the competition officials. -1D3.3 Notification -If the competition officials declare the track(s) to be "Damp" or "Wet", -(a) This decision will be announced over the public address system, and -(b) A sign with either "Damp" or "Wet" will be prominently displayed at both the starting line(s) and the start-finish line of the event(s), and the entry gate to the "hot" area. -1D3.4 Tire Requirements -The operating conditions will determine the type of tires a car may run as follows: -(a) Dry - Cars must run their Dry Tires, except as covered in D3.8. -(b) Damp - Cars may run either their Dry Tires or Rain Tires, at each team's option. -(c) Wet - Cars must run their Rain Tires. -1D3.5 Event Rules -All event rules remain in effect. -1D3.6 Penalties -All penalties remain in effect. -1D3.7 Scoring -No adjustments will be made to teams' times for running in "Damp" or "Wet" conditions. The minimum performance levels to score points may be adjusted if deemed appropriate by the officials. -1D3.8 Tire Changing -1D3.8.1 During the Acceleration or Autocross Events: - -Within the provisions of D3.4 above, teams may change from Dry Tires to Rain Tires or vice versa at any time during those events at their own discretion. -1D3.8.2 During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any time while their car is in the staging area inside the "hot" area. -All tire changes after a car has received the "green flag" to start the Endurance Event must take place in the Driver Change Area. -(a) If the track was "Dry" and is declared "Damp": -(i) Teams may start on either Dry or Rain Tires at their option. -(ii) Teams that are on the track when it is declared "Damp", may elect, at their option, to pit in the Driver Change Area and change to Rain Tires under the terms spelled out below in "Tire Changes in the Driver Change Area". -(b) If the track is declared "Wet": -(i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver Change Area. -(ii) Those cars that are already fitted with "Rain" tires will be allowed restart without delay subject to the discretion of the Event Captain/Clerk of the Course. -(iii) Those cars without "Rain" tires will be required to fit them under the terms spelled out below in "Tire Changes in the Driver Change Area". They will then be allowed to re- start at the discretion of the Event Captain/Clerk of the Course. - (c) If the track is declared "Dry" after being "Damp" or "Wet": The teams will NOT be required to change back to "Dry" tires. -(d) Tire Changes at Team's Option: -(i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to change tires at their option. -(ii) If a team elects to change from "Dry" to "Rain" tires, the time to make the change will NOT be included in the team's total time. -(iii) If a team elects to change from "Rain" tires back to "Dry" tires, the time taken to make the change WILL be included in the team's total time for the event, i.e. it will not be subtracted from the total elapsed time. However, a change from "Rain" tires back to "Dry" tires will not be permitted during the driver change. -(iv) To make such a change, the following procedure must be followed: -1. Team makes the decision -2. Team has tires and equipment ready near Driver Change Area -3. The team informs the Event Captain/Clerk of the Course they wish their car to be brought in for a tire change -4. Officials inform the driver by means of a sign or flag at the checker flag station -5. Driver exits the track and enters the Driver Change Area in the normal manner. -(e) Tire Changes in the Driver Change Area: - -(i) Per Rule D7.13.2 no more than three people for each team may be present in the Driver Change Area during any tire change, e.g. a driver and two crew or two drivers and one crew member. -(ii) No other work may be performed on the cars during a tire change. -(iii) Teams changing from "Dry" to "Rain" tires will be allowed a maximum of ten (10) minutes to make the change. -(iv) If a team elects to change from "Dry" to "Rain" tires during their scheduled driver change, they may do so, and the total allowed time in the Driver Change Area will be increased without penalty by ten (10) minutes. -(v) The time spent in the driver change area of less than 10 minutes without driver change will not be counted in the team's total time for the event. Any time in excess of these times will be counted in the team's total time for the event. - -ARTICLE D4 DRIVER LIMITATIONS - -1D4.1 Two Event Limit -1D4.1.1 An individual team member may not drive in more than two (2) events. -Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum of four (4) drivers is required to participate in all possible runs in all of the dynamic events. -1D4.1.2 It is the team's option to participate in any event. The team may forfeit any runs in any performance event. -1D4.1.3 In order to drive in the endurance event, a driver must have attended the mandatory drivers meeting and walked the endurance track with an official. -1D4.1.4 The time and location of the meeting and walk-around will be announced at the event. - -ARTICLE D5 ACCELERATION EVENT - -1D5.1 Acceleration Objective -The acceleration event evaluates the car's acceleration in a straight line on flat pavement. -1D5.2 Acceleration Procedure -The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be used to indicate the approval to begin, however, time starts only after the vehicle crosses the start line. There will be no particular order of the cars in the event. A driver has the option to take a second run immediately after the first. -1D5.3 Acceleration Event -1D5.3.1 All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the acceleration runs. -1D5.3.2 Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during any of their acceleration runs. - -1D5.4 Tire Traction - Limitations -Special agents that increase traction may not be added to the tires or track surface and "burnouts" are not allowed. -1D5.5 Acceleration Scoring -The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the time the car crosses the starting line until it crosses the finish line. -1D5.6 Acceleration Penalties -1D5.6.1 Cones Down Or Out (DOO) -A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred on that particular run to give the corrected elapsed time. -1D5.6.2 Off Course -An Off Course (OC) will result in a DNF for that run. -1D5.7 Did Not Attempt -The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Finish (DNF). -1D5.8 Acceleration Scoring Formula -The equation below is used to determine the scores for the Acceleration Event. The first term represents the "Start Points", the second term the "Participation Points" and the last term the "Performance Points". -1D5.8.1 A team is awarded "Start Points" for crossing the start line under its own power. A team is awarded "Participation Points" if it completes a minimum of one (1) run. A team is awarded "Performance Points" based on its corrected elapsed time relative to the time of the best team in its class. - -???????????????????????? ?????????? = 10 + 15 + (75 ???????? ) -?????????? - -Where: -Tyour is the lowest corrected elapsed time (including penalties) recorded by your team. -Tmin is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category. -Note: A Did Not Start (DNS) will score (0) points for the event - -ARTICLE D6 AUTOCROSS EVENT - -1D6.1 Autocross Objective -The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a tight course without the hindrance of competing cars. The autocross course will combine the performance features of acceleration, braking, and cornering into one event. - -1D6.2 Autocross Procedure -1D6.2.1 There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) timed laps will be run (weather and time permitting) by each driver and the best lap time will stand as the time for that heat. -1D6.2.2 The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. -The timer starts only after the car crosses the start line. -1D6.2.3 There will be no particular order of the cars to run each heat, but a driver has the option to take a second run immediately after the first. -1D6.2.4 The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Start (DNS). -1D6.3 Autocross Course Specifications & Speeds -1D6.3.1 The following specifications will suggest the maximum speeds that will be encountered on the course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). -(a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 m (150 feet) with wide turns on the ends. -(b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. -(c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). -(d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. -(e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track width will be 3.5 m (11.5 feet). -1D6.3.2 The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete a specified number of runs. -1D6.4 Autocross Penalties -The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed time: -1D6.4.1 Cone Down or Out (DOO) -Two (2) seconds per cone, including any after the finish line. -1D6.4.2 Off Course -Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. Penalties will not be assessed for accident avoidance or other reasons deemed sufficient by the track officials. -If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off the paved surface will count as an "off course". Two (2) wheels off will not incur an immediate penalty; however, consistent driving of this type may be penalized at the discretion of the event officials. -1D6.4.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one "off-course" per occurrence. Each occurrence will incur a twenty (20) second penalty. -1D6.4.4 Stalled & Disabled Vehicles - -If a car stalls and cannot restart without external assistance, the car will be deemed disabled. Cars deemed disabled will be cleared from the track by the track workers. At the direction of the track officials team members may be instructed to retrieve the vehicle. Vehicle recovery may only be done under the control of the track officials. -1D6.5 Corrected Elapsed Time -The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time. -1D6.6 Best Run Scored -The time required to complete each run will be recorded and the team's best corrected elapsed time will be used to determine the score. -1D6.7 Autocross Scoring Formula -The equation below is used to determine the scores for the Autocross Event. The first term represents the "Start Points", the second term the "Participation Points" and the last term the "Performance Points". A team is awarded "Start Points" for crossing the start line under its own power. A team is awarded "Participation Points" if it completes a minimum of one (1) run. A team is awarded "Performance Points" based on its corrected elapsed time relative to the time of the best team in its vehicle category. -?????????????????? ?????????? = 20 + 30 + (150 ???????? ) -?????????? - -Where: -Tmin is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category over their four heats. -Tyour is the lowest corrected elapsed time (including penalties) recorded by your team over the four heats. - -Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event. - -ARTICLE D7 ENDURANCE EVENT - -1D7.1 Right to Change Procedure -The following are general guidelines for conducting the endurance event. The organizers reserve the right to establish procedures specific to the conduct of the event at the site. All such procedures will be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or on the official bulletin board at the event. -1D7.2 Endurance Objective -The endurance event is designed to evaluate the vehicle's overall performance, reliability and efficiency. Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated distance on a fixed amount of energy in the least amount of time. - -1D7.3 Endurance General Procedure -1D7.3.1 In general, the team completing the most laps in the shortest time will earn the maximum points available for this event. Formula Hybrid + Electric uses an endurance scoring formula that rewards both speed and distance traveled. (See D7.18) -1D7.3.2 The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 mile) segments. -1D7.3.3 Driver changes will be made between each segment. 1D7.3.4 Wheel to wheel racing is prohibited. -1D7.3.5 Passing another vehicle may only be done in an established passing zone or under the control of a course marshal. -1D7.4 Endurance Course Specifications & Speeds -Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr (29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). -Endurance courses will be configured, where possible, in a manner which maximizes the advantage of regenerative braking. -(a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than -61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several locations. -(b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. -(c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). -(d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. -(e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). -(f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius turns, elevation changes, etc. -1D7.5 Energy -1D7.5.1 All vehicles competing in the endurance event must complete the event using only the energy stored on board the vehicle at the start of the event plus any energy reclaimed through regenerative braking during the event. Alternatively, vehicles may compete in the endurance event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted towards the endurance score. If energy meter data is missing or appears inaccurate, the vehicle may receive start and performance points as appropriate, but "performance points" may be forfeited at organizers discretion. -1D7.5.2 Prior to the beginning of the endurance event, all competitors may charge their electric accumulators from any approved power source they wish. -1D7.5.3 Once a vehicle has begun the endurance event, recharging accumulators from an off-board source is not permitted. -1D7.6 Hybrid Vehicles -1D7.6.1 All Hybrid vehicles will begin the endurance event with the defined amount of energy on board. - -1D7.6.2 The amount of energy allotted to each team is determined by the Formula Hybrid + Electric Rules Committee and is listed in Table 1 - 2024 Energy and Accumulator Limits -1D7.6.3 The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by an amount equal to the stated energy capacity of the vehicle's accumulator(s). -1D7.6.4 There will be no extra points given for fuel remaining at the end of the endurance event. -1D7.7 Fueling - Hybrid Vehicles -1D7.7.1 Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will then be added to the tank by the organizers and the filler will be sealed. -1D7.7.2 Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and supporting the vehicle to facilitate draining the fuel tank. -1D7.7.3 Once fueled, the vehicle must proceed directly to the endurance staging area. -1D7.8 Charging - Electric Vehicles -Each Electric vehicle will begin the endurance event with whatever energy can be stored in its accumulator(s). -1D7.9 Endurance Run Order -Endurance run order will be determined by the team's corrected elapsed time in the autocross. Teams with the best autocross corrected elapsed time will run first. If a team did not score in the autocross event, the run order will then continue based on acceleration event times, followed by any vehicles that may not have completed either previous dynamic event. Endurance run order will be published at least one hour before the endurance event is run. -1D7.10 Entering the Track -At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter based on traffic conditions. -1D7.11 Endurance Vehicle Restarting -1D7.11.1 The vehicle must be capable of restarting without external assistance at all times once the vehicle has begun the event. -1D7.11.2 If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following it (approximately one (1) minute) to restart. -1D7.11.3 At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8). -1D7.11.4 If restarts are not accomplished within the above times, the vehicle will be deemed disabled and scored as a DNF for the event. -1D7.12 Breakdowns & Stalls -1D7.12.1 If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter the course. -1D7.12.2 If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course where it went off, but no work may be performed on the vehicle -1D7.12.3 If a vehicle stops on track and cannot be restarted without external assistance, the track workers will push the vehicle clear of the track. At the discretion of event officials, two (2) team members may retrieve the vehicle under direction of the track workers. - -1D7.13 Endurance Driver Change Procedure -1D7.13.1 There must be a minimum of two (2) drivers for the endurance event, with a maximum of four -(4) drivers. One driver may not drive in two consecutive segments. -1D7.13.2 Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the driver change area. If a driver elects to come into driver change before the end of their 11km segment, they will not be allowed to make up the laps remaining in that segment. -1D7.13.3 Only three (3) team members, including the driver or drivers, will be allowed in the driver change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers and/or change tires will be carried into this area (no tool chests, electronic test equipment, computers, etc.). -Extra people entering the driver change area will result in a twenty (20) point penalty to the final endurance score for each extra person entering the area. -Note: Teams are permitted to "tag-team" in and out of the driver change area as long as there are no more than three (3) team members present at any one time. -1D7.13.4 The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. -These systems must remain shut down until the new driver is in place. (See D7.13.8) -1D7.13.5 The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be secured in the vehicle. -1D7.13.6 Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle comes to a halt in the driver change area and stops when the correct adjustment of the driver restraints and safety equipment has been verified by the driver change area official. Any time taken over the allowed time will incur a penalty. (See D7.17.2(k)) -1D7.13.7 During the driver change, teams are not permitted to do any work on, or make any adjustments to the vehicle with the following exceptions: -(a) Changes required to accommodate each driver -(b) Tire changing as covered by D3.8 "Tire Changing", -(c) Actuation of the following buttons/switches to assist the driver with re-energizing the electrical tractive system -(i) Ground Low Voltage Master Switch -(ii) Tractive System Master Switch -(iii) Side Mounted BRBs -(iv) IMD Reset (Button/Switch must be clearly marked "IMD RESET") -(v) AMS Reset (Button/Switch must be clearly marked "AMS RESET") - -1D7.13.8 Once the new driver is in place and an official has verified the correct adjustment of the driver restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive system (IC engine, electrical tractive system, or both) and begin moving out of the driver change area. - -The ESOK indicator must be illuminated and verified by the driver change area official prior to the vehicle being released out of the driver change area. - -1D7.13.9 The process given in Error! Reference source not found. through D7.13.8 will be repeated for each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km (27.34 miles) distance or until the endurance event track closing time, at which point the vehicle will be signaled off the course. -1D7.13.10 The driver change area will be placed such that the timing system will see the driver change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this extra-long lap will not count into a team's final time. If a driver change takes longer than three minutes, the extra time will be added to the team's final time. -1D7.13.11 Once the vehicle has begun the event, electronic adjustment to the vehicle may only be made by the driver using driver-accessible controls. -1D7.14 Endurance Lap Timing -1D7.14.1 Each lap of the endurance event will be individually timed either by electronic means, or by hand. -1D7.14.2 Each team is required to time their vehicle during the endurance event as a backup in case of a timing equipment malfunction. An area will be provided where a maximum of two team members can perform this function. All laps, including the extra-long laps must be recorded legibly and turned in to the organizers at the end of the endurance event. Standardized lap timing forms will be provided by the organizers. -1D7.15 Exiting the Course -1D7.15.1 Timing will stop when the vehicle crosses the start/finish line. -1D7.15.2 Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter the driver change area before coming to a stop. There will be no "cool down" laps. -1D7.15.3 The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be penalized. -1D7.16 Endurance Minimum Speed Requirement -1D7.16.1 A car's allotted number of laps, including driver's changes, must be completed in a maximum of 120 minutes elapsed time from the start of that car's first lap. -Cars that are unable to comply will be flagged off the course and their actual completed laps tallied. 1D7.16.2 If a vehicle's lap time becomes greater than Max Average Lap Time (See: D7.18) it may be -declared "out of energy", and flagged off the course. The vehicle will be deemed disabled and -scored as a DNF for the event. -Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring formulas. Attempting to complete additional laps at too low a speed can cost a team points. -1D7.17 Endurance Penalties -1D7.17.1 Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the track official. -1D7.17.2 The penalties in effect during the endurance event are listed below. -(a) Cone down or out (DOO) - -Two (2) seconds per cone. This includes cones before the start line and after the finish line. -(b) Off Course (OC) -For an OC, the driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. -If a paved surface edged by grass or dirt is being used as the track, e.g. a go kart track, four -(4) wheels off the paved surface will count as an "off course". Two (2) wheels off will not incur an immediate penalty. However, consistent driving of this type may be penalized at the discretion of the event officials. -(c) Missed Slalom -Missing one or more gates of a given slalom will incur a twenty (20) second penalty. -(d) Failure to obey a flag -Penalty: 1 minute -(e) Over Driving (After a closed black flag) -Penalty: 1 Minute -(f) Vehicle to Vehicle Contact -Penalty: DISQUALIFIED -(g) Running Out of Order -Penalty: 2 Minutes -(h) Mechanical Black Flag -See D7.23.3(b). No time penalty. The time taken for mechanical or electrical inspection under a "mechanical black flag" is considered officials' time and is not included in the team's total time. However, if the inspection reveals a mechanical or electrical integrity problem the vehicle may be deemed disabled and scored as a DNF for the event. -(i) Reckless or Aggressive Driving -Any reckless or aggressive driving behavior (such as forcing another vehicle off the track, refusal to allow passing, or close driving that would cause the likelihood of vehicle contact) will result in a black flag for that driver. -When a driver receives a black flag signal, he/she must proceed to the penalty box to listen to a reprimand for his/her driving behavior. -The amount of time spent in the penalty box will vary from one (1) to four (4) minutes depending upon the severity of the offense. -If it is impossible to impose a penalty by a stop under a black flag, e.g. not enough laps left, the event officials may add an appropriate time penalty to the team's elapsed time. -(j) Inexperienced Driver -The Event Captain or Clerk of the Course may disqualify a driver if the driver is too slow, too aggressive, or driving in a manner that, in the sole opinion of the event officials, demonstrates an inability to properly control their vehicle. This will result in a DNF for the event. -(k) Driver Change - -Driver changes taking longer than three (3) minutes will be penalized. -1D7.18 Endurance Scoring Formula -The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, etc.), plus any penalty time and penalty points assessed against all drivers and team members. -Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the DNF. -1D7.18.1 The equation below is used to determine the scores for the Endurance Event. The first term represents the "Start Points", the second term the "Participation Points" and the last term the "Performance Points". -A team is awarded "Start Points" for crossing the start line under its own power. A team is awarded "Participation Points" if it completes a minimum of one (1) lap. A team is awarded "Performance Points" based on the number of laps it completes relative to the best team in its vehicle category (distance factor) and its corrected average lap time relative to the event standard time and the time of the best team in its vehicle category (speed factor). - - - -????????????(??)???????? -?????????????????? ?????????? = 35 + 52.5 + 262.5 ( ????????????(??) ) - -(?????? ?????????????? ?????? ????????) - 1 -?????????? - - -?????? ?????????????? ?????? ???????? - -?????? ( - -???????? - -) - 1 - - - -Where: - - -Max Average Lap Time is the event standard time in minutes and is calculated as - -?????? ?????????????? ?????? ???????? = 105 -??h?? ???????????? ???? ???????? ???????????????? ???? ???????????????? 44 ???? - - -Tmin = the lowest corrected average lap time (including penalties) recorded by the fastest team in your vehicle category over their completed laps. -Tyour = the corrected average lap time (including penalties) recorded by your team over your completed laps. -LapSum(n)max = The value of LapSum corresponding to number of complete laps credited to the team in your vehicle category that covered the greatest distance. -LapSum(n)your = The value of LapSum corresponding to the number of complete laps credited to your team - - - -Notes: - - - -(a) If your team completes all of the required laps, then LapSum(n)your will equal the maximum possible value of LapSum(n). (990 for a 44 lap event). -(b) If your team does not complete the required number of laps, then LapSum(n)your will be based on the number of laps completed. See Appendix B for LapSum(n) calculation methodology. - -(c) Negative "performance points" will not be given. -(d) A Did Not Start (DNS) will score (0) points for the event - -1D7.18.2 Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their results truncated at the last lap completed within the 120 minute limit. -1D7.19 Post Event Engine and Energy Check -The organizer reserves the right to impound any vehicle immediately after the event to check accumulator capacity, engine displacement (method to be determined by the organizer) and restrictor size (if fitted). -1D7.20 Endurance Event - Driving -1D7.20.1 During the endurance event when multiple vehicles are running on the course it is paramount that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion in the penalty box with course officials. The amount of time spent in the penalty box is at the discretion of the officials and is included in the run time. Penalty box time serves as a reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware that contact between open wheel racers is especially dangerous because tires touching can throw one vehicle into the air. -1D7.20.2 Endurance is a timed event in which drivers compete only against the clock not against other vehicles. Aggressive driving is unnecessary. -1D7.21 Endurance Event - Passing -1D7.21.1 Passing during the endurance event may only be done in the designated passing zones and under the control of the track officials. Passing zones have two parallel lanes - a slow lane for the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the slow lane and decelerate. The following faster vehicle will continue in the fast lane and make the pass. The vehicle that had been passed may reenter traffic only under the control of the passing zone exit marshal. -The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on the design of the specific course. -1D7.21.2 These passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in the area. -1D7.21.3 Under normal driving conditions when not being passed all vehicles use the fast lane. -1D7.22 Endurance Event - Driver's Course Walk -The endurance course will be available for walk by drivers prior to the event. All endurance drivers should walk the course before the event starts. -1D7.23 Flags -1D7.23.1 The flag signals convey the commands described below, and must be obeyed immediately and without question. -1D7.23.2 There are two kinds of flags for the competition: Command Flags and Informational Flags. Command Flags are just that, flags that send a message to the competitor that the competitor - -must obey without question. Informational Flags, on the other hand, require no action from the driver, but should be used as added information to help him or her maximize performance. -What follows is a brief description of the flags used at the competitions in North America and what each flag means. -Note: Not all of these flags are used at all competitions and some alternate designs are occasionally displayed. Any variations from this list will be explained at the drivers meetings. - - - - -Table 18 - Flags - - -1D7.23.3 Command Flags -(a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations or other official concerning an incident. A time penalty may be assessed for such incident. -(b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) ("Meatball") - Pull into the penalty box for a mechanical inspection of your vehicle, something has been observed that needs closer inspection. -(c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor or competitors. Obey the course marshal's hand or flag signals at the end of the passing zone to merge into competition. -(d) CHECKER FLAG - Your segment has been completed. Exit the course at the first opportunity after crossing the finish line. -(e) GREEN FLAG - Your segment has started, enter the course under direction of the starter. NOTE: If you are unable to enter the course when directed, await another green flag as the opening in traffic may have closed. -(f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow course marshal's directions. - -(g) YELLOW FLAG (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the course marshals. -(h) YELLOW FLAG (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless directed by the course marshals. -1D7.23.4 Informational Flags -(a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course marshals may be able to point out what and where it is located, but do not expect it.) -(b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than you are. Be prepared to approach it at a cautious rate. - -ARTICLE D8 RULES OF CONDUCT - -1D8.1 Competition Objective - A Reminder -The Formula Hybrid + Electric event is a design engineering competition that requires performance demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. It is also recognized that this event is an "engineering educational experience" but that it often times becomes confused with a high stakes race. In the heat of competition, emotions peak and disputes arise. Our officials are trained volunteers and maximum human effort will be made to settle problems in an equitable, professional manner. -1D8.2 Unsportsmanlike Conduct -In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second violation will result in expulsion of the team from the competition. -1D8.3 Official Instructions -Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a twenty five (25) point penalty. -Note: This penalty can be individually applied to all members of a team. -1D8.4 Arguments with Officials -Argument with, or disobedience to, any official may result in the team being eliminated from the competition. All members of the team may be immediately escorted from the grounds. -1D8.5 Alcohol and Illegal Material -Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the competition. This rule will be in effect during the entire competition. Any violation of this rule by a team member will cause the expulsion of the entire team. This applies to both team members and faculty advisors. Any use of drugs, or the use of alcohol by an underage individual, will be reported to the local authorities for prosecution. -1D8.6 Parties -Disruptive parties either on or off-site must be prevented by the Faculty Advisor. - -1D8.7 Trash Clean-up -1D8.7.1 Cleanup of trash and debris is the responsibility of the teams. The team's work area should be kept uncluttered. At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock. -1D8.7.2 Teams are required to remove all of their material and trash when leaving the site at the end of the competition. Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs. -1D8.7.3 All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, capped containers and left at the hazardous waste collection building. The track must be notified as soon as the material is deposited by calling the phone number posted on the building. See the map in the registration packet for the building location. - -ARTICLE D9 GENERAL RULES - -1D9.1 Dynamometer Usage -1D9.1.1 If a dynamometer is available, it may be used by any competing team. Vehicles to be dynamometer tested must have passed all parts of technical inspection. -1D9.1.2 Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer. -1D9.2 Problem Resolution -Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric management team and the decision will be final. -1D9.3 Forfeit for Non-Appearance -It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups for missed appearances. -1D9.4 Safety Class - Attendance Required -An electrical safety class is required for all team members. The time and location will be provided in the team's registration packet. -1D9.5 Drivers Meetings - Attendance Required -All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event. -1D9.6 Personal Vehicles -1D9.6.1 Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E competition vehicles will be allowed in the track areas. -All vehicles and trailers must be parked behind the white "Fire Lane" lines. -1D9.6.2 Some self-powered transport such as bicycles and skate boards are permitted, subject to restrictions posted in the event guide -1D9.6.3 The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited. - -1D9.7 Exam Proctoring -1D9.7.1 Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for students attending the competition. The team Advisor, or designated representative (A6.3.1) attending the competition will be responsible for communicating with college and university officials, administering exams, and ensuring all exam materials are returned to the college and university. Students who need to take exams during the competition may use designated spaces provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to the Officials. - -ARTICLE D10 PIT/PADDOCK/GARAGE RULES - -1D10.1 Vehicle Movement -1D10.1.1 Vehicles may not move under their own power anywhere outside of an officially designated dynamic area. -1D10.1.2 When being moved outside the dynamic area: -(a) The vehicle TSV must be deactivated. -(b) The vehicle must be pushed at a normal walking pace by means of a "Push Bar" (D10.2). -(c) The vehicle's steering and braking must be functional. -(d) A team member must be sitting in the cockpit and must be able to operate the steering and braking in a normal manner. -(e) A team member must be walking beside the car. -(f) The team has the option to move the car either with -(i) all four (4) wheels on the ground OR -(ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that the external wheels supporting the rear of the car are non-pivoting such that the vehicle will travel only where the front wheels are steered. -1D10.1.3 Cars with wings are required to have two team members walking on either side of the vehicle whenever the vehicle is being pushed. -NOTE: During performance events when the excitement is high, it is particularly important that the car be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of twenty-five (25) points will be assessed for each violation. -1D10.2 Push Bar -Each car must have a removable device that attaches to the rear of the car that allows two (2) people, standing erect behind the vehicle, to push the car around the event site. This device must also be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by pulling it rearwards. It must be presented with the car at Technical Inspection. -1D10.3 Smoking - Prohibited -Smoking is prohibited in all competition areas. -1D10.4 Fueling and Refueling -Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and no other activities (including any mechanical or electrical work) are allowed while refueling. - -1D10.5 Energized Vehicles in the Paddock or Garage Area -Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the drive wheels must be removed or properly supported clear of the ground. -1D10.6 Engine Running in the Paddock -Engines may be run in the paddock provided: -(a) The car has passed all technical inspections. -AND -(b) The drive wheels are removed or properly supported clear of the ground. -1D10.7 Safety Glasses -Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 meters) of a vehicle that is being worked on. -1D10.8 Curfews -A curfew period may be imposed on working in the garages. Be sure to check the event guide for further information - -ARTICLE D11 DRIVING RULES - -1D11.1 Driving Under Power -1D11.1.1 Cars may only be driven under power: -(a) When running in an event. -(b) When on the practice track. -(c) During the brake test. -(d) During any powered vehicle movement specified and authorized by the organizers. -1D11.1.2 For all other movements cars must be pushed at a normal walking pace using a push bar. 1D11.1.3 Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred -(200) point penalty for the first violation and expulsion of the team for a second violation. -1D11.2 Driving Off-Site - Prohibited -Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location during the period of the competition will be disqualified from the competition. -1D11.3 Practice Track -1D11.3.1 A practice track for testing and tuning cars may be available at the discretion of the organizers. The practice area will be controlled and may only be used during the scheduled practice times. -1D11.3.2 Practice or testing at any location other than the practice track is absolutely forbidden. 1D11.3.3 Cars using the practice track must have passed all parts of the technical inspection. -1D11.4 Situational Awareness -Drivers must maintain a high state of situational awareness at all times and be ready to respond to the track conditions and incidents. Flag signals and hand signals from course marshals and officials must be immediately obeyed. - -ARTICLE D12 DEFINITIONS - -DOO - A cone is "Down or Out"-if the cone has been knocked over or the entire base of the cone lies outside the box marked around the cone in its undisturbed position. -DNF- Did Not Finish -Gate - The path between two cones through which the car must pass. Two cones, one on each side of the course define a gate: Two sequential cones in a slalom define a gate. -Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course. -Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course. -Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about to start. -OC - A car is Off Course if it does not pass through a gate in the required direction. - - Appendix A Accumulator Rating & Fuel -Equivalency - -Each accumulator device will be assigned an energy rating and fuel equivalency based on the following: - -Battery capacities are based on nominal (data sheet values). Ultracap capacities are based on the maximum operating voltage (Vpeak) and the effective capacitance in Farads (Nparallel x C / Nseries). -Batteries: Energy (Wh) = Vnom x Inom x Total Number of Cells x 80% - -Capacitors: - -where Vmin is assumed to be 10% of Vpeak. -Table 19 - Accumulator Device Energy Calculations - - -Liquid Fuels Wh / Liter32 Gasoline (Sunoco33 Optima) 2,343 -Table 20 - Fuel Energy Equivalencies - - -Examples: - -A battery with an energy rating of 3110 Wh has a fuel equivalency of 1.327 liters. - -If using 89 Maxell MC 2600 ultracaps in series (2600 F/89 = 29.2 F, 2.7 x 89 = 240 V), the fuel equivalency is 231.9 Wh resulting in a 99cc reduction of gasoline. - - - - - - - - - - - - - -32 Formula Hybrid + Electric assumes a mechanical efficiency of 27% -33 Full specifications for Sunoco racing fuels may be found at: https://www.sunocoracefuels.com/ - -Appendix B - -Determination of LapSum(n) -Values - -The parameter LapSum(n) is used in the calculation of the scores for the endurance event. It is a function of the number of laps (n) completed by a team during the endurance event. It is calculated by summing the lap numbers from 1 to (n), the number of laps completed. This gives increasing weight to each additional lap completed during the endurance event. - -For example: -If your team is credited with completing five (5) laps of the endurance event, the value of LapSum(n)your used in compute your endurance score would be the following: - -LapSum(5)your = 1 + 2 + 3 + 4 + 5 = 15 - - -Number of Laps Completed (n) LapSum(n) Number of Laps Completed (n) LapSum(n) 0 0 23 276 1 1 24 300 2 3 25 325 3 6 26 351 4 10 27 378 5 15 28 406 6 21 29 435 7 28 30 465 8 36 31 496 9 45 32 528 10 55 33 561 11 66 34 595 12 78 35 630 13 91 36 666 14 105 37 703 15 120 38 741 16 136 39 780 17 153 40 820 18 171 41 861 19 190 42 903 20 210 43 946 21 231 44 990 22 253 -Table 21 - Example of LapSum(n) calculation for a 44-lap Endurance event - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event - - Appendix C Formula Hybrid + Electric - Project Management Event Scoring Criteria - - - - - -INTRODUCTION -The Formula Hybrid + Electric Project Management Event is comprised of three components: Project Plan Report -Change Management Report Final Presentation. -These components cover the entire life cycle of the Formula Hybrid + Electric Project from design of the vehicle through fabrication and performance verification, culminating in Formula Hybrid + Electric competition at the track. The Project Management Event includes both written reports and an oral presentation, providing project team members the opportunity to develop further their communications skills in the context of a challenging automotive engineering team experience. -Design, construction, and performance testing of a hybrid or electric race car are complex activities that require a structured effort to increase the probability of success. The Project Management Event is included in the Formula Hybrid + Electric competition to encourage each team to create this structure specific to their set of circumstances and goals. Comments each team receives from judges relative to their project plan and change management report, offer guidance directed at project execution. Verbal comments made by judges following the presentation component offer suggestions to improve performance in future competitions. -In scoring the Project Management Event judges assess (1) if a well-thought-out project plan has been developed, (2) that the plan was executed effectively while addressing challenges encountered and managing change and (3) the significance of lessons learned by team members from this experience and quality of recommendations proposed to improve future team performance. - -Basic Areas Evaluated -Five categories of effort are evaluated across the three components of Formula Hybrid + Electric Project Management, but the scoring criteria differ for each, reflecting the phase of the project life-cycle that is being assessed. The criteria includes: (1) Scope (2) Operations (3) Risk Management (4) Expected Results (5) Change Management. Each is briefly defined below. - -1. Scope: A brief introduction of the project documenting what will be accomplished: team goals and objectives beyond simply winning the competition, known as "secondary goals", major deliverables such as critical sub-systems, innovative designs, or new technologies, and milestones for achieving the goals. Overall, this information is called the Statement of Work. - -2. Operations: How the project team is structured, usually shown with an organizational chart; Work Breakdown Structure, a cascading representation of tasks that will be completed; a project schedule for completing these tasks, usually this is depicted in a Gantt chart that shows the timeline and interdependencies among different activities; also included are the approved budget for the project and plan for obtaining these funds. - -3. Risk Management: Arriving at the track with a completed, rules compliant race car increases the probability of full participation in all events during the competition. Even though numerous tasks are involved in the design, build, and test of a hybrid race car, there is a smaller subset of tasks that present a high risk to completing the car on schedule. These are high risk tasks because the team may lack knowledge, experience, or sufficient resources necessary for completing them successfully. However, to achieve the team goals, these tasks must be done. Identify the high risk tasks along with contingency plans for advancing the project forward if they become barriers to progress. - -4. Expected Results: In general, project teams are expected to deliver what is defined in the scope statement, on time according to project schedule, and within the budget constraint. Goals and objectives are more specifically defined by "measures of success", quantified attributes that give numerical targets for each goal. These "measures" are of value throughout project execution for setting priorities and making resource decisions. At project completion, they are used to determine the extent to which the team's goals and objectives have been accomplished. - -5. Change Management: The need for change is a normal occurrence during project execution. Change is good because it refocuses the team when new information is obtained or unexpected challenges are encountered. But if it is not managed correctly change can become a destructive element to the project. - -Change Management is a process designed by the team for administering project change and managing uncertainty. The process includes built-in controls to ensure that change is managed in a disciplined way, adequately documented and clearly communicated to all team members. - -SCORING GUIDELINES -The guidelines used by judges for scoring the three components of the Project Management Event are given in the following sections: (1) Project Plan Report, (2) Change Management Report, and -(3) Project Management Presentation at the competition. - -1. Project Plan Report -Each Formula Hybrid + Electric team is required to submit a formal Project Plan that reflects team goals and objectives for the upcoming competition, the management structure and tasks that will be completed to accomplish these objectives, and the time schedule over which these tasks will be performed. In addition, the formal process for managing change must be defined. A maximum of fifty-five (55) points is awarded for the Project Plan. -Quality of the Written Document: The plan should look and read like a professional document. The flow of information is expected to be logical; the content should be clear and concise. The reader should be able to understand the plan that will be executed. - -The Project Plan must consist of at least one (1) page and not exceed three (3) pages of text. Appendices may be attached to the Project Plan and do not count as "pages", but they must be relevant and referenced in the body of the report. - -"SMART" Goals -Projects are initiated to achieve predetermined goals, which are identified in the Scope statement. The project plan is a "roadmap" for effectively deploying team resources to accomplish these goals. Overall, the requirements of the Project Plan incorporate the basic principles of "SMART" goals. These goals have the following characteristics: -? Specific: Sufficient detail is provided to clearly identify the targeted objectives; goals are specifically stated so that all individual project team members understand what the team must accomplish. -? Measurable: The objectives are quantified so that progress toward the goals can be measured; "measures of success" are defined for this purpose. -? Assignable: The person or group responsible for achieving the goals is identified; each task, milestone, and deliverable has an owner, someone responsible for seeing that each is completed. -? Realistic: The goals can actually be achieved given the resources and time available. Along with realistic goals, a team might define "stretch goals" which are more aggressive objectives that challenge the team. If the "stretch goals" become barriers to progress during project execution, the change management process is used to pull back "stretch goals", re-focusing the team on more realistic objectives. -? Time-Related: Deadlines are set for achieving each goal, milestone, or deliverable. These deadlines are consistent with the overall project schedule and can be extracted from the project timeline. - - Characteristics of an Excellent Project Plan Report Submission -? Scope: A brief overview is included covering the team's past performance and recommendations received from previous teams for improvement. Achievable primary and secondary goals for this year's team are clearly stated. These goals are more than simply winning the competition. Milestones, with due dates, and major deliverables that support accomplishing the goals are listed. -? Operations: An organizational chart showing the structure of the team and Work Breakdown Structure showing the cascading linkage of tasks comprising the project are included. The timeframe and interdependencies of each task are shown in a Gantt chart timeline. The project budget is specified and a brief overview of how these funds will be obtained is given. -? Risk Management: Careful thought is demonstrated to understand the weakest areas of the project plan. Several "High Risk" tasks are identified that might have a significant impact on a functional car being produced on time. A contingency plan is described to mitigate these risks if they become barriers during project execution. -? Expected Results: All teams are expected to complete the project on schedule, within budget, and to deliver a functional, rules complaint race car to the track. But each team has a set of primary and secondary goals specific to its project plan. Additional depth is given to these goals by quantifying them, defining measurable targets helpful for directing team efforts. At least two "measures of success" are defined that are related to the team's specific performance goals. - -? Change Management: A process for administering changes has been carefully thought-out; it is briefly described and shown schematically in terms of: (1) what triggers the process, (2) how information flows through the process, (3) how decision making is handled, and (4) how changes are communicated to the team. A process flow diagram may be included in the Appendix to save space, however is referenced in the body of the report. At a minimum, the diagram shows the "trigger", information flow, decision making tasks and responsibilities, and communication tasks. The diagram is specific to and created by the team. There are sufficient controls in place to prevent un-managed changes. The team has an effective communication plan in place to keep all team members informed throughout project duration. - -Applying the Project Plan Report Scoring Guidelines -The guidelines for awarding points in each Project Plan Report category are given in Figure 46. Four performance designations are also specified: Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation to give reviewers flexibility in evaluating the quality and completeness of the submitted plans. -While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. - - - -Figure 46 - Scoring Guidelines: Project Plan Component34 - - - - - - - - -34 This score sheet is available on the Formula Hybrid+Electric website in the Project Management Resources folder. - -2. Change Management Report -The purpose of the Change Management Report is to give each judge a sense of the team's ability to deal with issues that will put the project schedule at risk. -Frequently, as the project progresses or as problems arise, changes may be required to vehicle specifications or the plan for completing the project. This is an area that many teams find difficult to manage. Of particular interest to judges are barriers encountered and creative actions taken by the team to overcome these challenges and advance the project forward. -The Change Management Report is a maximum two (2) page summary, clearly communicating the documented changes to the project scope and plan that have been approved using the change management process. Appendices may be included with supporting information; they do not have a page limit but the content is expected to be supportive of the information covered in the main body of the report. -A maximum of forty (40) points is awarded for the Change Management Report. The content of the report is evaluated in three broad areas: (1) Explanation of the Change Management Process (2) Example of the Implementation of the Change Management Process, and (3) Evaluation of the Effectiveness and Areas of Improvement for the Change Management Process. Additionally, a final area evaluated is the quality of the overall report document. - -Characteristics of an Excellent Change Management Report Submission -? Change Management Process: In the body of the report, the team provides a thorough and clear explanation of their Change Management Process, including the following characteristics: - What triggers/initiates the process? - How does information flow through the process? - How are decisions made, and who makes those decisions? - How are final decisions communicated to the team? - Process flow diagram (see below) -? A process flow diagram may be included in the Appendix to save space; however, it is referenced in the body of the report. At a minimum, the diagram shows the "trigger", information flow, decision making tasks and responsibilities, and communication tasks. The diagram is specific to and created by the team. -? Implementation of the Change Management Process: In the body of the report, the team provides a single thorough and clear example of the implementation of the Change Management Process. The example provided addresses all stages of the process from start to finish, including the overall impact to the project. -? Effectiveness of and Improvements to the Change Management Process: In the body of the report, the team provides their own assessment of the effectiveness of their Change Management Process, primarily based upon the example provided. This includes the effectiveness of each stage of the process (trigger, information flow, decision making, and communication) as well as an overall assessment. Based on their assessment, the team provides two areas of opportunity to improve the Change Management Process, including what stage of the process is impacted and why this change is being made. The team addresses plans for what the team must do to make the proposed changes, timing of changes, and a definition of how to measure the effectiveness of the changes for the following year. - -? Proper Use of Appendix: While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. - -Applying the Change Management Scoring Guidelines -The guidelines for awarding points in each Change Management Report evaluation category are given in Figure 47. Similar to the Project Plan guidelines, four performance designations are specified: Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation to give reviewers flexibility in weighing quality and completeness of information for each category. - - - -Figure 47: Change Management Report Scoring Guidelines - - -While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. - -3. Project Management Presentation at the Competition -The Presentation component gives teams the opportunity to briefly explain their project plans, assess how well their project management process worked, and identify recommendations for improving their team's project management process in the future. In addition, the Presentation component enables team leaders to enhance their communication skills in presenting a complex topic clearly and concisely. -The Presentation component is the culmination of the project management experience, which included submission by each team of a project plan and change management report. Scoring of each presentation is based on how well project management practices were used by the team in the planning, execution, and change management aspects of the project. Of particular interest are innovative approaches used by each team in dealing with challenges and how lessons learned from the current competition will be used to foster continuous improvement in the design, development, and testing of their cars for future competitions. -Project Management presentations are made on the Static Events Day during the competition. Each presentation is limited to a maximum of twelve (12) minutes. An eight (8) minute question and answer period will follow along with a feedback discussion with judges lasting no longer than five (5) minutes. -This format will give each team an opportunity to critique their project management performance, clarify major points, and have a discussion with judges on areas that can be improved or strengths that can be built upon for next year's competition. Only the team members present who are introduced at the start of the presentation will be allowed to speak and/or respond to questions and comments. - -Scoring the Project Management Presentation -In awarding points, each judge must determine if the team demonstrated an understanding of project management, if the described accomplishments are credible, and if the approaches used to manage the project were effective. These judgements are formed after listening to each presentation and probing the teams for clarity and additional details during the questioning period afterward. Presentation quality and communications skills of team members are extremely important for establishing a positive impression. -A chart summarizing the evaluation criteria for the Presentation component is given in Figure 48 - Evaluation Criteria. This provides more detailed guidelines used by the judging review team for evaluating each project management presentation. - - - -Figure 48 - Evaluation Criteria - - -Characteristics on an Excellent Project Management Presentation -? Scope: The primary and secondary goals defined in the project plan are addressed; the degree to which each has been accomplished is explained. Where applicable, the "Measures of Success" are used to support the stated level of accomplishment. If the original goals have been changed, the reasons for modification are explained. -? Operations: Was this project a success? This conclusion is supported by Team performance against the budget, project schedule, and deliverables produced. The effectiveness of the team's structure is explained. If the operation was disorderly or inefficient during project execution, an overview of corrective actions taken to fix the problem is given. -? Risk Management: The team's success to correctly anticipate risk in the original project plan and effectiveness of the risk mitigation plan are described. An overview of unanticipated risks that were encountered during project execution and approaches to overcome these barriers are explained. -? Change Management: A need for change occurs naturally in almost every project; it is anticipated that every Formula Hybrid + Electric team will have experienced some type of change during project execution. Change management strives to align the efforts of all team members working in the dynamic project environment. The effectiveness of the overall change management process in dealing with needed modifications is described. This is supported with - -statistics on the number of changes approved and rejected. The effectiveness of the team's communication methods, both written and verbal, is explained. Areas of opportunity for improvement to the change management process are briefly described as well as their status of implementation for next year. -? Lessons Learned: When a project is completed, the team should conduct an assessment of overall performance to determine what worked well and what failed. The strengths and weaknesses of the team are described. This evaluation is used to propose recommendations for improving the performance of next year's team. Also, a plan for conveying this information to the new leadership team is described. A leadership succession plan is briefly described. -? "SMART" Goals: Team's demonstrated understanding and application of "SMART" goals. -? Communications Skills: The team establishes credibility by demonstrating that it has taken the time necessary to carefully plan and create the presentation. The presentation is well organized, content is relevant to the purpose of the presentation. Charts have a professional appearance and are informative. Without the speaker rushing through the material, a large amount of information is conveyed within the allowed time limit. Tables, diagrams, and graphs are used effectively. -Team members demonstrate mutual accountability with shared responses to questions. Answers are conveyed in a manner that instills confidence in the team's ability to plan and execute a complex project like Formula Hybrid + Electric. - - - -Figure 49 - Project Management Scoring Sheet - - Appendix D Design Judging Form35 - - - - - - -35 This form is for informational use only - the actual form used may differ. Check the Formula Hybrid + Electric website prior to the competition for the latest Design judging form. - -Appendix E -Wire Current Capacity (DC) - - - - -Wire Gauge Copper AWG - -Conductor Area mm2 Max. -Continuous Fuse Rating (A) -Standard Metric Wire Size mm2 Max. -Continuous Fuse Rating (A) 24 0.20 5 0.50 10 22 0.33 7 0.75 12.5 20 0.52 10 1.0 15 18 0.82 14 1.5 20 16 1.31 20 2.5 30 14 2.08 28 4.0 40 12 3.31 40 6.0 60 10 5.26 55 10 90 8 8.37 80 16 130 6 13.3 105 25 150 4 21.2 140 35 200 3 26.7 165 50 250 2 33.6 190 70 300 1 42.4 220 95 375 0 53.5 260 120 425 2/0 67.4 300 150 500 3/0 85.0 350 185 550 4/0 107 405 240 650 250 MCM 127 455 300 800 300 MCM 152 505 350 MCM 177 570 400 MCM 203 615 500 MCM 253 700 -Table 22 - Wire Current Capacity (single conductor in air) - - -Reference: US National Electrical Code Table 400.5(A)(2), 90C Column D1 (Copper wire only) - - - - - -? Fire Extinguishers -Minimum Requirements - -Appendix F Required Equipment - -Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers - -Extinguishers of larger capacity (higher numerical ratings) are acceptable. -All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows "FULL". - -Special Requirements -Teams must identify any fire hazards specific to their vehicle's components and if fire extinguisher/fire extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb. or equivalent) of the required type must be procured and accompany the car at all times. As recommendations vary, teams are advised to consult the rules committee before purchasing expensive extinguishers that may not be necessary. -? Chemical Spill Absorbent -Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must be presented at technical inspection. -? Insulated Gloves -Insulated gloves, rated for at least the voltage in the TS system, with protective over-gloves. Electrical gloves require testing by a qualified company. The testing is valid for 14 months after the date of the test. All gloves must have the test date printed on them. -? Safety Glasses -Safety glasses must be worn as specified in section D10.7 -? Additional -Any special safety equipment required for dealing with accumulator mishaps, for example correct gloves recommended for handling any electrolyte material in the accumulator. - -Appendix G -Example Relay Latch Circuits - -The diagrams below are examples of relay-based latch circuits that can be used to latch the momentary output of the Bender IMD (either high-true or low-true) such that it will comply with Formula Hybrid + Electric rule EV7.1. Circuits such as these can also be used to latch AMS faults in accordance with EV2.1.3. It is highly recommended that IMD and AMS latching circuits be separate and independent to aid fault identification during the event. - -Note: It is important to confirm by checking the data sheets, that the output pin of the IMD can power the relay directly. If not, an amplification device will be required36 - - - - . -Figure 50 - Latching for Active-High output Figure 51 - Latching for Active-Low output - - - - - - - - - - - - - - -36 An example relay is the Omron LY3-DC12: http://www.ia.omron.com/product/item/6403/ - - Appendix H Firewall Equivalency Test - -To demonstrate equivalence to the aluminum sheet specified in rule T4.5.2, teams should submit a video, showing a torch test of their proposed firewall material. - -Camera angle, etc. should be similar to the video found here: - - -https://www.youtube.com/watch?v=Qw6kzG97ZtY - -A propane plumber's torch should be held at a distance from the test piece such that the hottest part of the flame (the tip of the inner cone) is just touching the test piece. - -The video must show two sequential tests and be contiguous and unedited (except for trimming the irrelevant leading and trailing portions). - -The first part of the video should show the torch applied to a piece of Aluminum of the thickness called for in T4.5.2, and held long enough to burn through the aluminum. The torch should then be moved directly to a similarly sized test piece of the proposed material without changing any settings, and held for at least as long as the burn-through time for the Aluminum. - -There must be no penetration of the test piece. The equivalent firewall construction must have similar mechanical strength to the aluminum barrier called for in T4.5.2. This can be demonstrated by equivalent resistance to deformation or puncturing. - -Appendix I Virtual Racing -Challenge - -The Virtual Racing Challenge will be held in 2025. - - - - - - - - - - - - - - - - - - - -END - - - - + + + +© 2019 SAE International and the Trustees of Dartmouth College + + + + + + + + +2025 +Formula Hybrid + +Electric Rules +Version 3 + + + +January 19, 2025 + + + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Formula Hybrid + Electric Rules Committee + + + +Formula Hybrid + Electric gratefully acknowledges the contributions of the following people, +who have donated countless hours and immeasurable effort into making the Formula Hybrid + +Electric competition a stellar, multidisciplinary learning experience, while keeping the +competition as safe as possible. + + +Michael Chapman, Director, Formula Hybrid + Electric ** +Douglas Fraser, P.E., Director Emeritus, Formula Hybrid + Electric* +Gary Grise, IEEE** +Kathy Grise, IEEE** +Missy Chmielowiec, General Motors (Chief Project Management Judge)** +Paul Messier, BAE Systems* +Tremont Miao, Analog Devices, Inc., Retired (Electrical Tech Examiner)* +Michael Royce, Albion Associates (Chief Technical Examiner) +Prof. Charles R. Sullivan, Thayer School of Engineering, Dartmouth College* +Jalyn Kelley, IEEE +Prof. Douglas W. Van Citters, Thayer School of Engineering (Chief Mechanical Tech Inspector) +Rob Wills, P.E., Intergrid, LLC* (Chief Electrical Tech Inspector and Electrical Rules Chair) +Kendra Bogren-Brock, BAE Systems (Chief Design Judge) +Kaley Zundel, SAE +Andrew Benagh, New England Region SCCA +Wiley Cox, New England Region SCCA +Jalyn Kelly, IEEE +Jennifer Smith, Keurig Dr. Pepper ** + +*Members of the Electrical Rules subcommittee. +** Members of the Project Management subcommittee + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + RULES CHANGES FOR 2025 + +The following is a list of noteworthy changes from the 2024 Formula Hybrid + Electric rules. It is not +complete and is not binding. If there are any differences between this summary and the official rules, +the rules will prevail. Therefore, it is the responsibility of the competitors to read the published Rules +thoroughly. + +Rule Number Section Change + +T3.8.8 SES Approval dates Dates updated +T15.1.3 Fire extinguishers Gauge must show “FULL” +S3.2.1 Design Report Increased the page limit from 9 to 10 +S3.3 Sustainability Requirement Change to make requirements more constrained +S3.6 Excess Size Design Reports Typo +S3.6 Excess Size Design Reports Increased the page limit from 9 to 10 +S3.11 Judging Criteria Typo +S3.13 Scoring Formula Reference to the “Lead Design Judge” +D7.5.2 Accumulator Charge Clarification (added “approved”) +D7.5.3 Accumulator Charge Clarification (changed “outside” to “off-board”) +Appendix C Project Management Presentation Added text about who can speak +Appendix C Figure 46 Scoring updated +Appendix C Figure 48 – Evaluation criteria Replaced with version that +matches scorecard +Appendix C Characteristics on an excellent PM Added “SMART’ goals text +Appendix C Figure 49 New scoresheet +Appendix D Design Judging Form Updated scoring rubric and redesigned +the form +Appendix F Fire extinguishers Gauge must show “FULL” +Appendix I Virtual Racing Challenge Removed for 2025 + +Electrical Rules Updates + +A1.2.4 Segment Energy Reference to Table 8 added +EV2.3.4 Accumulator Container Typo (changed “TSVP” to “TSV”) +EV2.8.3 Accumulator – Isolation Relays Changed to “60 VDC (or 42 VAC RMS)” +EV2.10.4 Discharge Current Clarification (added “expected”) +EV4.1.4 GLV & Carbon Frame New Requirement +EV4.1.7 GLV Battery Pack Allowing team-constructed battery pack +EV7.9.2 Insulation Monitoring Device Change in IMD requirements +EV7.9.2 Insulation Monitoring Device (IMD) Added Bender “Iso175C-32-SS” +EV7.9.8 IMD high voltage sense connections Fixed broken link +EV9.3.2 Electrical Systems OK Lamps(ESOK) Typo (“SSOK” changed to “ESOK”) +EV9.5.1 Accumulator Voltage Indicator Changed “30 VDC” to “60 VDC” +PART EV - EV10.4.1 AMS Test Typo (changed (“three” to “two”) +PART EV - EV10.4.1 AMS Test – point 2 Clarification +EV12.2.6 Charger Inspection Chargers must be reviewed +EV12.2.15 Charging External Charger Safety +PART EV - ARTICLE EV14 Acronyms SSOK changed to ESOK + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Table 8 Voltage and Energy Limits Changes to maximum GLV +Figure 37CAN watchdog Added CAN watchdog failure +Figure 37Acronym SSOK changed to ESOK (see EV14) +Figure 37Shutdown Sources Fixed typo (“coclpit” to “cockpit”) +Figure 37Shutdown Sources Far right row corrected to all “yes” +EV9.3.3. Shutdown Sources Section Removed + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + + +Advice from Our Rules Committee + +Formula Hybrid + Electric’s Rules Committee welcomes you to the most challenging of the SAE Collegiate +Design Series competitions. Many of us are former Formula Hybrid + Electric competitors who are now +professionals in the engineering industry. We have two goals: to have a safe competition and to see +every team on the track. + + +Top 10 Tips for Building a Formula Hybrid + Electric Racecar and Passing Tech +Inspection + +Start work early. Everything takes longer than you expect. +Consider starting from an existing FSAE chassis and concentrating on the powertrain. +Read all rules carefully. If you don’t understand something, ask us for clarification. +Use the Project Management techniques and tools. They will make life easier—and will help you as +engineers. Most importantly, they will help you arrive at the competition with a finished car. +Take advantage of our Mentor Program. These experts will help you solve issues—and will be valuable +career contacts. +Your car should be running on its own power at least a month prior to competition. +Make brake testing an early priority. +Take advantage of the extra day of electrical tech inspection on Sunday. That will give you extra time if +you need to make modifications. This is also a good time to have your documentation reviewed. +Watch out for the rules tagged with the "attention" symbol. These rules have a history of tripping up +teams. + + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Index +RULES CHANGES FOR 2025 III +PART A - ADMINISTRATIVE REGULATIONS 1 +ARTICLE A1 1 +A1.1 1 +A1.2 1 +A1.3 2 +A1.4 2 +A1.5 2 +ARTICLE A2 3 +A2.1 3 +A2.2 3 +A2.3 3 +A2.4 4 +A2.5 4 +ARTICLE A3 4 +A3.1 4 +A3.2 4 +A3.3 4 +ARTICLE A4 5 +A4.1 5 +A4.2 5 +A4.3 5 +A4.4 5 +A4.5 5 +A4.6 5 +A4.7 5 +A4.8 6 +ARTICLE A5 6 +A5.2 6 +A5.3 6 +INDIVIDUAL PARTICIPATION REQUIREMENTS 7 +A5.4 7 +A5.5 7 +A5.6 7 +A5.7 7 +A5.8 7 +A5.9 8 +A5.10 8 +A5.11 8 +ARTICLE A6 8 +A6.1 8 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +A6.2 8 +A6.3 9 +A6.4 9 +ARTICLE A7 10 +A7.1 10 +A7.2 10 +A7.3 10 +A7.4 10 +A7.5 10 +A7.6 11 +ARTICLE A8 11 +A8.1 11 +A8.2 11 +A8.3 11 +ARTICLE A9 11 +A9.1 11 +A9.2 12 +A9.3 12 +A9.4 13 +ARTICLE A10 15 +ARTICLE A11 15 +A11.1 15 +A11.2 15 +A11.3 15 +A11.4 15 +A11.5 16 +A11.6 16 +ARTICLE A12 16 +A12.1 16 +A12.2 16 +A12.3 16 +A12.4 16 +A12.5 17 +A12.6 17 +PART T - GENERAL TECHNICAL REQUIREMENTS 18 +ARTICLE T1 18 +T1.1 18 +T1.2 18 +ARTICLE T2 19 +T2.1 19 +T2.2 19 +T2.3 20 +T2.4 20 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +T2.5 20 +ARTICLE T3 20 +T3.1 20 +T3.2 20 +T3.3 21 +T3.4 23 +T3.5 23 +T3.6 24 +T3.7 24 +T3.8 24 +T3.9 25 +T3.10 28 +T3.11 28 +T3.12 29 +T3.13 30 +T3.14 30 +T3.15 30 +T3.16 30 +T3.17 32 +T3.18 32 +T3.19 32 +T3.20 32 +T3.21 34 +T3.22 35 +T3.23 35 +T3.24 36 +T3.25 37 +T3.26 37 +T3.27 37 +T3.28 37 +T3.29 38 +T3.30 38 +T3.31 39 +T3.32 39 +T3.33 39 +T3.34 40 +T3.35 40 +T3.36 40 +T3.37 40 +T3.38 40 +T3.39 41 +T3.40 41 +ARTICLE T4 42 +T4.1 42 +T4.2 43 +T4.3 44 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +T4.4 44 +T4.5 44 +T4.6 46 +T4.7 46 +T4.8 47 +T4.9 47 +ARTICLE T5 47 +T5.1 47 +T5.2 48 +T5.3 49 +T5.4 50 +T5.5 51 +T5.6 53 +T5.7 54 +T5.8 54 +ARTICLE T6 54 +T6.1 54 +T6.2 54 +T6.3 54 +T6.4 54 +T6.5 55 +T6.6 56 +T6.7 56 +ARTICLE T7 56 +T7.1 56 +T7.2 57 +T7.3 57 +T7.4 58 +ARTICLE T8 58 +T8.1 58 +T8.2 59 +T8.3 59 +T8.4 59 +T8.5 60 +ARTICLE T9 61 +T9.1 61 +T9.2 61 +T9.3 61 +T9.4 61 +T9.5 61 +T9.6 61 +ARTICLE T10 61 +T10.1 61 +T10.2 62 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE T11 62 +T11.1 62 +T11.2 63 +ARTICLE T12 64 +T12.1 64 +T12.2 64 +ARTICLE T13 65 +T13.1 65 +T13.2 65 +T13.3 66 +T13.4 66 +ARTICLE T14 66 +T14.1 66 +T14.2 66 +T14.3 66 +T14.4 66 +T14.5 67 +T14.6 68 +T14.7 68 +T14.8 68 +T14.9 68 +T14.10 68 +T14.11 68 +T14.12 68 +T14.13 68 +ARTICLE T15 68 +T15.1 68 +T15.2 69 +T15.3 69 +T15.4 69 +T15.5 69 +T15.6 69 +T15.7 69 +ARTICLE T16 69 +T16.1 69 +PART IC - INTERNAL COMBUSTION ENGINE 69 +ARTICLE IC1 70 +IC1.1 70 +IC1.2 70 +IC1.3 70 +IC1.4 71 +IC1.5 71 +IC1.6 72 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +IC1.7 73 +IC1.8 73 +IC1.9 73 +IC1.10 74 +IC1.11 74 +ARTICLE IC2 74 +IC2.1 74 +IC2.2 75 +IC2.3 75 +IC2.4 75 +IC2.5 75 +IC2.6 75 +IC2.7 76 +IC2.8 76 +ARTICLE IC3 76 +IC3.1 76 +IC3.2 77 +IC3.3 77 +IC3.4 77 +PART EV - ELECTRICAL POWERTRAINS AND SYSTEMS 78 +ARTICLE EV1 78 +EV1.1 78 +EV1.2 79 +ARTICLE EV2 80 +EV2.1 80 +EV2.2 80 +EV2.3 80 +EV2.4 81 +EV2.5 82 +EV2.6 82 +EV2.7 84 +EV2.8 85 +EV2.9 86 +EV2.10 87 +EV2.11 88 +EV2.12 90 +ARTICLE EV3 92 +EV3.1 92 +EV3.2 93 +EV3.3 94 +EV3.4 95 +EV3.5 96 +EV3.6 97 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV4 98 +EV4.1 98 +ARTICLE EV5 99 +EV5.1 99 +EV5.2 99 +EV5.3 99 +EV5.4 100 +EV5.5 101 +ARTICLE EV6 103 +ARTICLE EV7 104 +EV7.1 104 +EV7.2 106 +EV7.3 107 +EV7.4 107 +EV7.5 108 +EV7.6 108 +EV7.7 109 +EV7.8 109 +EV7.9 110 +ARTICLE EV8 112 +EV8.1 112 +ARTICLE EV9 113 +EV9.1 113 +EV9.2 113 +EV9.3 114 +EV9.4 114 +EV9.5 114 +EV9.6 115 +ARTICLE EV10 116 +EV10.1 116 +EV10.2 116 +EV10.3 116 +EV10.4 118 +EV10.5 118 +ARTICLE EV11 120 +EV11.1 120 +EV11.2 120 +ARTICLE EV12 121 +EV12.1 121 +EV12.2 121 +EV12.3 122 +EV12.4 122 +ARTICLE EV13 124 +EV13.1 124 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV13.2 124 +ARTICLE EV14 125 +PART S - STATIC EVENTS 126 +ARTICLE S1 127 +S1.1 127 +S1.2 127 +S1.3 127 +S1.4 127 +S1.5 128 +S1.6 128 +ARTICLE S2 129 +S2.1 129 +S2.2 129 +S2.3 129 +S2.4 130 +S2.5 131 +S2.6 131 +S2.7 131 +S2.8 132 +S2.9 132 +S2.10 132 +ARTICLE S3 133 +S3.1 133 +S3.2 133 +S3.3 134 +S3.4 134 +S3.5 134 +S3.6 135 +S3.7 135 +S3.8 135 +S3.9 135 +S3.10 135 +S3.11 135 +S3.12 135 +S3.13 136 +S3.14 136 +PART D - DYNAMIC EVENTS 137 +ARTICLE D1 137 +D1.1 137 +D1.2 137 +D1.3 137 +D1.4 137 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE D2 138 +ARTICLE D3 138 +D3.1 138 +D3.2 138 +D3.3 138 +D3.4 138 +D3.5 138 +D3.6 138 +D3.7 138 +D3.8 138 +ARTICLE D4 140 +D4.1 140 +ARTICLE D5 140 +D5.1 140 +D5.2 140 +D5.4 140 +D5.5 141 +D5.6 141 +D5.7 141 +D5.8 141 +D5.9 141 +ARTICLE D6 141 +D6.1 141 +D6.2 142 +D6.3 142 +D6.4 142 +D6.5 143 +D6.6 143 +D6.7 143 +ARTICLE D7 143 +D7.1 143 +D7.2 143 +D7.3 144 +D7.4 144 +D7.5 144 +D7.6 144 +D7.7 145 +D7.8 145 +D7.9 145 +D7.10 145 +D7.11 145 +D7.12 145 +D7.13 146 +D7.14 147 +D7.15 147 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +D7.16 147 +D7.17 147 +D7.18 149 +D7.19 150 +D7.20 150 +D7.21 150 +D7.22 150 +D7.23 150 +ARTICLE D8 152 +D8.1 152 +D8.2 152 +D8.3 152 +D8.4 152 +D8.5 152 +D8.6 152 +D8.7 153 +ARTICLE D9 153 +D9.1 153 +D9.2 153 +D9.3 153 +D9.4 153 +D9.5 153 +D9.6 153 +D9.7 154 +ARTICLE D10 154 +D10.1 154 +D10.2 154 +D10.3 154 +D10.4 154 +D10.5 155 +D10.6 155 +D10.7 155 +D10.8 155 +ARTICLE D11 155 +D11.1 155 +D11.2 155 +D11.3 155 +D11.4 155 +ARTICLE D12 156 +APPENDIX A 157 +APPENDIX B 158 +APPENDIX C 160 +APPENDIX D 170 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +APPENDIX E 171 +APPENDIX F 172 +APPENDIX G 173 +APPENDIX H 174 +APPENDIX I 175 + +Index of Figures + +FIGURE 1 - FORMULA HYBRID + ELECTRIC SUPPORT PAGE 16 +FIGURE 2 - OPEN WHEEL DEFINITION 19 +FIGURE 3 - TRIANGULATION 21 +FIGURES FROM TOP: 4A, 4B, AND 4C- ROLL HOOPS AND HELMET CLEARANCE 26 +FIGURE 5 - PERCY -- 95TH PERCENTILE MALE WITH HELMET 26 +FIGURE 6 – 95TH PERCENTILE TEMPLATE POSITIONING 27 +FIGURE 7 - MAIN AND FRONT HOOP BRACING 29 +FIGURE 8 – DOUBLE-LUG JOINT 30 +FIGURE 9 – DOUBLE LUG JOINT 30 +FIGURE 10 – SLEEVED BUTT JOINT 30 +FIGURE 11 – SIDE IMPACT STRUCTURE 35 +FIGURE 12 – SIDE IMPACT ZONE DEFINITION FOR A MONOCOQUE 39 +FIGURE 13 – ALTERNATE SINGLE BOLT ATTACHMENT 40 +FIGURE 14 – COCKPIT OPENING TEMPLATE 41 +FIGURE 15 – COCKPIT INTERNAL CROSS SECTION TEMPLATE 42 +FIGURE 16 – EXAMPLES OF FIREWALL CONFIGURATIONS 45 +FIGURE 17 - SEAT BELT THREADING EXAMPLES 48 +FIGURE 18 – LAP BELT ANGLES WITH UPRIGHT DRIVER 49 +FIGURE 19 – SHOULDER HARNESS MOUNTING – TOP VIEW 50 +FIGURE 20 - SHOULDER HARNESS MOUNTING – SIDE VIEW 50 +FIGURE 21 – OVER-TRAVEL SWITCHES 57 +FIGURE 22 - FINAL DRIVE SCATTER SHIELD EXAMPLE 59 +FIGURE 23 - EXAMPLES OF POSITIVE LOCKING NUTS 62 +FIGURE 24 - EXAMPLE CAR NUMBER 64 +FIGURE 25- SURFACE ENVELOPE 70 +FIGURE 26 – HOSE CLAMPS 73 +FIGURE 27 - FILLER NECK 75 +FIGURE 28 - ACCUMULATOR STICKER 80 +FIGURE 29 - EXAMPLE NP3S CONFIGURATION 83 +FIGURE 30 – EXAMPLE 5S4P CONFIGURATION 84 +FIGURE 31 - EXAMPLE ACCUMULATOR SEGMENTING 86 +FIGURE 32 - VIRTUAL ACCUMULATOR EXAMPLE 91 +FIGURE 33 - FINGER PROBE 92 +FIGURE 34 - HIGH VOLTAGE LABEL 92 +FIGURE 35 - CONNECTION STACK-UP 95 +FIGURE 36 – CREEPAGE DISTANCE EXAMPLE 101 +FIGURE 37 - PRIORITY OF SHUTDOWN SOURCES 104 +FIGURE 38 - EXAMPLE MASTER SWITCH AND SHUTDOWN CIRCUIT CONFIGURATION 106 +FIGURE 39 - TYPICAL MASTER SWITCH 107 +FIGURE 40 - INTERNATIONAL KILL SWITCH SYMBOL 108 +FIGURE 41 - EXAMPLE SHUTDOWN STATE DIAGRAM 110 +FIGURE 42 – TYPICAL ESOK LAMP 114 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +FIGURE 43 – INSULATION MONITORING DEVICE TEST 116 +FIGURE 44 118 +FIGURE 45 - PLOT OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 159 +FIGURE 46 - SCORING GUIDELINES: PROJECT PLAN COMPONENT 164 +FIGURE 47: CHANGE MANAGEMENT REPORT SCORING GUIDELINES 166 +FIGURE 48 – EVALUATION CRITERIA 168 +FIGURE 49 - PROJECT MANAGEMENT SCORING SHEET 169 +FIGURE 50 - LATCHING FOR ACTIVE-HIGH OUTPUT FIGURE 51 - LATCHING FOR ACTIVE-LOW OUTPUT 173 + +Index of Tables + +TABLE 1 – 2024 ENERGY AND ACCUMULATOR LIMITS 1 +TABLE 2 - EVENT POINTS 2 +TABLE 3 - REQUIRED DOCUMENTS 12 +TABLE 4 - BASELINE STEEL 22 +TABLE 5 - STEEL TUBING MINIMUM WALL THICKNESSES 23 +TABLE 6 - 95TH PERCENTILE MALE TEMPLATE DIMENSIONS 25 +TABLE 7 – SFI / FIA STANDARDS LOGOS 66 +TABLE 8 - VOLTAGE AND ENERGY LIMITS 79 +TABLE 9 - AMS VOLTAGE MONITORING 89 +TABLE 10 – AMS TEMPERATURE MONITORING 89 +TABLE 11 - RECOMMENDED TS CONNECTION FASTENERS 96 +TABLE 12 – MINIMUM SPACINGS 100 +TABLE 13 - INSULATING MATERIAL - MINIMUM TEMPERATURES AND THICKNESSES 100 +TABLE 14 – PCB TS/GLV SPACINGS 102 +TABLE 15 – STATIC EVENT MAXIMUM SCORES 126 +TABLE 16 - PROJECT MANAGEMENT SCORING 129 +TABLE 17 - DYNAMIC EVENT MAXIMUM SCORES 137 +TABLE 18 - FLAGS 151 +TABLE 19 - ACCUMULATOR DEVICE ENERGY CALCULATIONS 157 +TABLE 20 - FUEL ENERGY EQUIVALENCIES 157 +TABLE 21 - EXAMPLE OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 158 +TABLE 22 – WIRE CURRENT CAPACITY (SINGLE CONDUCTOR IN AIR) 171 + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART A1 - ADMINISTRATIVE REGULATIONS +ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW AND COMPETITION +1A1.1 Formula Hybrid + Electric Competition Objective +1A1.1.1 The Formula Hybrid + Electric competition challenges teams of university undergraduate and +graduate students to conceive, design, fabricate, develop and compete with small, formula- +style, hybrid-powered and electric cars. +1A1.1.2 The Formula Hybrid + Electric competition is intended as an educational program requiring +students to work across disciplinary boundaries, such as those of electrical and mechanical +engineering. +1A1.1.3 To give teams the maximum design flexibility and the freedom to express their creativity and +imagination there are very few restrictions on the overall vehicle design apart from the +requirement for a mechanical/electrical hybrid or electric-only drivetrain. +1A1.1.4 Teams typically spend eight to twelve months designing, building, testing and preparing their +vehicles before a competition. The competitions themselves give teams the chance to +demonstrate and prove both their creativity and their engineering skills in comparison to teams +from other universities around the world. +1A1.2 Energy Limits +1A1.2.1 Competitiveness and high efficiency designs are encouraged through limits on accumulator +capacities and the amount of energy that a team has available to complete the endurance event. +1A1.2.2 The accumulator capacities and endurance energy allocation will be reviewed by the Formula +Hybrid + Electric rules committee each year, and posted as early in the season as possible. + +Hybrid (and Hybrid In Progress) +Endurance Energy Allocation 31.25 MJ +Maximum Accumulator Capacity 4,449 Wh +Electric +Maximum Accumulator Capacity 5,400 Wh + Table 1 – 2024 Energy and Accumulator Limits +1A1.2.3 Vehicles may run with accumulator capacities greater than the Table 1 value if equipped with +an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 +maximum energy value will not be counted. See also D7.5.1- Energy for Endurance Event. +1A1.2.4 Accumulator capacities are calculated as: + Energy (Wh) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 80% + Segment Energy (Table 8) is calculated as + Energy (MJ) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 0.0036. + See Appendix A for energy calculations for capacitors. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A1.3 Vehicle Design Objectives +For the purpose of this competition, the students are to assume that a manufacturing firm has engaged +them to design, fabricate and demonstrate a prototype hybrid-electric or all electric vehicle for +evaluation as a production item. The intended market is the nonprofessional weekend autocross +competitor. Therefore, the car must balance exceptional performance with fuel efficiency. +Performance will be evaluated in terms of its acceleration, braking, and handling qualities. Fuel +efficiency will be evaluated during the 44 km endurance event. The car must be easy to +maintain and reliable. It should accommodate drivers whose stature varies from a 5th percentile +female to a 95th percentile male. In addition, the car’s marketability is enhanced by other +factors such as aesthetics, comfort and use of common parts. The manufacturing firm is +planning to produce four (4) cars per day for a limited production run. The challenge to the +design team is to develop a prototype car that best meets these goals and intents. Each design +will be compared and judged with other competing designs to determine the best overall car. +1A1.4 Good Engineering Practices +1A1.4.1 Vehicles entered into Formula Hybrid + Electric competitions are expected to be designed and +fabricated in accordance with good engineering practices. +Note in particular, that the high-voltage electrical systems in a Formula Hybrid + Electric car present +health and safety risks unique to a hybrid/electric vehicle, and that carelessness or poor +engineering can result in serious injury or death. +1A1.4.2 The organizers have produced several advisory publications that are available on the Formula +Hybrid + Electric website. It is expected that all team members will familiarize themselves +with these publications, and will apply the information in them appropriately. +1A1.5 Judging Categories +The cars are judged in a series of static and dynamic events including: technical inspections, project +management skills, engineering design, solo performance trials, and high-performance track +endurance. These events are scored to determine how well the car performs. + +Static Events + Project Management 150 + Engineering Design 200 + Virtual Racing Challenge +1 + 0 +Dynamic Events + Acceleration 100 + Autocross 200 + Endurance 350 +Total Points 1000 +Table 2 - Event Points + +1 + Virtual Racing Challenge will be awarded trophies without points going towards the Event Points + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A1.5.1 A team’s final score will equal the sum of their event scores plus or minus penalty and/or bonus +points. +Note: If a team’s penalty points exceed the sum of their event scores, their final score will be Zero (0). +i.e. negative final scores will not be given. +ARTICLE A2 FORMULA HYBRID + ELECTRIC VEHICLE CATEGORIES +1A2.1 Hybrid +1A2.1.1 A Hybrid vehicle is defined as a vehicle using a propulsion system which comprises both a 4- +stroke Internal Combustion Engine (ICE) and electrical storage (accumulator) with electric +motor drive. +1A2.1.2 A hybrid drive system may deploy the ICE and electric motor(s) in any configuration, including +series and/or parallel. Coupling through the road surface is permitted. +1A2.1.3 To qualify as a hybrid, vehicles must have a drive system utilizing one or more electric motors +with a minimum continuous power rating of 2.5 kW (sum total of all motors) and one or more +I.C engines with a minimum (sum total) power rating of 2.5 kW. +1A2.2 Electric +An Electric vehicle is defined as a vehicle wherein the accumulator is charged from an external electrical +source (and/or through regenerative braking) and propelled by electric drive only. +There is no minimum power requirement for electric-only drive motors. +1A2.3 Hybrid in Progress (HIP) +A Hybrid-in-Progress is a not-yet-completed hybrid vehicle, which includes both an internal combustion +engine and electric motor. +Note: The purpose of the HIP category is to give teams that are on a 2-year development/build cycle an +opportunity to enter and compete their vehicle alongside the regular entries. The HIP is +regarded, for all scoring purposes, as a hybrid, but will run the dynamic events on electric +power only. +1A2.3.1 To qualify as an HIP, a vehicle must have been designed, and intended for completion as a +hybrid vehicle. +1A2.3.2 Teams planning to enter a vehicle in the HIP category will initially register as a Hybrid. To +change to the HIP category, the team must submit a request to the organizers in writing before +the start of the design event. +Note: The advantages of entering as an HIP are: +(a) Receive a full technical inspection of the vehicle and electrical drive systems. +(b) Participate in all the competition events. (Provided tech inspection is passed). +(c) Receive feedback from the design judges. +Note: Teams can maximize the benefits of an HIP entry by including the full-hybrid designs in their +document submissions and design event presentations, as well as including the full multi- +year program in their Project Management materials. +(d) When the vehicle is completed and entered as a hybrid, in a subsequent competition, it is +considered an all-new vehicle, and not a second-year entry. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A2.4 Static Events Only (SEO) +1A2.4.1 SEO is a category that may only be declared after arrival at the competition. All teams must +initially register as either Hybrid/HIP or Electric. +1A2.4.2 A team may declare themselves as SEO and participate in the design +2 + and other static events +even if the vehicle is in an unfinished state. +(a) An SEO vehicle may not participate in any of the dynamic events. +(b) An SEO vehicle may continue the technical inspection process, but will be given a lower +priority than the non-SEO teams. +1A2.4.3 An SEO declaration must be submitted in writing to the organizers before the scheduled start of +the design events. +1A2.4.4 A vehicle that declares SEO in one year, will not be penalized by the design judges as a multi- +year vehicle the following year per A7.5. +1A2.5 Electric vs. Hybrid Vehicles +1A2.5.1 The Electric and Hybrid categories are separate. Although they compete in the same events, and +may be on the endurance course at the same time, they are scored separately and receive +separate awards. +1A2.5.2 The event scoring formulas will maintain separate baselines (T +max +, T +min +) for Hybrid and +Electric categories. +Note: Electric vehicles, because they are not carrying the extra weight of engines and generating systems, +may demonstrate higher performances in some of the dynamic events. Design scores should not +be compared, as the engineering challenge between the two classes is different and scored +accordingly. +ARTICLE A3 THE FORMULA HYBRID + ELECTRIC COMPETITION +1A3.1 Open Registration +The Formula Hybrid + Electric Competition has an open registration policy and will accept registrations +by student teams representing universities in any country. +1A3.2 Official Announcements and Competition Information +1A3.2.1 Teams should read any newsletters published by SAE or Formula Hybrid + Electric and to be +familiar with all official announcements concerning the competition and rules interpretations +released by the Formula Hybrid + Electric Rules Committee. +1A3.2.2 Formula Hybrid + Electric posts announcements to the “Announcements” page of the Formula +Hybrid + Electric website at https://www.formula-hybrid.org/announcements +1A3.3 Official Language +The official language of the Formula Hybrid + Electric competition is English. + +2 + Provided the team has met the document submission requirements of A9.3(c) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE A4 FORMULA HYBRID + ELECTRIC RULES AND ORGANIZER AUTHORITY +1A4.1 Rules Authority +1A4.1.1 The Formula Hybrid + Electric Rules are the responsibility of the Formula Hybrid + Electric +Rules Committee and are issued under the authority of the SAE Collegiate Design Series +Committee. Official announcements from the Formula Hybrid + Electric Rules Committee are +to be considered part of, and have the same validity as, these rules. +1A4.1.2 Ambiguities or questions concerning the meaning or intent of these rules will be resolved by +the Formula Hybrid + Electric Rules Committee, SAE or by the individual competition +organizers as appropriate. (See ARTICLE A12) +1A4.2 Rules Validity +The Formula Hybrid + Electric Rules posted on the Formula Hybrid + Electric website and dated for the +calendar year of the competition are the rules in effect for the competition. Rule sets dated for +other years are invalid. +1A4.3 Rules Compliance +1A4.3.1 By entering a Formula Hybrid + Electric competition the team, members of the team as +individuals, faculty advisors and other personnel of the entering university agree to comply +with, and be bound by, these rules and all rule interpretations or procedures issued or +announced by SAE, the Formula Hybrid + Electric Rules Committee or the organizers. +1A4.3.2 Any rules or regulations pertaining to the use of the competition site by teams or individuals +and which are posted, announced and/or otherwise publicly available are incorporated into +these rules by reference. As examples, all event site waiver requirements, speed limits, parking +and facility use rules apply to Formula Hybrid + Electric participants. +1A4.3.3 All team members, faculty advisors and other university representatives are required to +cooperate with, and follow all instructions from, competition organizers, officials and judges. +1A4.4 Understanding the Rules +Teams, team members as individuals and faculty advisors, are responsible for reading and understanding +the rules in effect for the competition in which they are participating. +1A4.5 Participating in the Competition +Teams, team members as individuals, faculty advisors and other representatives of a registered university +who are present on-site at a competition are considered to be “participating in the competition” +from the time they arrive at the event site until they depart the site at the conclusion of the +competition or earlier by withdrawing. +1A4.6 Violations of Intent +1A4.6.1 The violation of intent of a rule will be considered a violation of the rule itself. +1A4.6.2 Questions about the intent or meaning of a rule may be addressed to the Formula Hybrid + +Electric Rules Committee or by the individual competition organizers as appropriate. +1A4.7 Right to Impound +SAE and other competition organizing bodies reserve the right to impound any onsite registered vehicles +at any time during a competition for inspection and examination by the organizers, officials and +technical inspectors. The organizers may also impound any equipment deemed hazardous by +the technical inspectors. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A4.8 Restriction on Vehicle Use +Teams are cautioned that the vehicles designed in compliance with these Formula Hybrid + Electric Rules +are intended for competition operation only at the official Formula Hybrid + Electric +competitions. + +ARTICLE A5 RULES FORMAT AND USE + +1A5.1.1 Definition of Terms +Must - designates a requirement +Must NOT - designates a prohibition or restriction +Should - gives an expectation +May - gives permission, not a requirement and not a recommendation +1A5.1.2 Capitalized Terms + Items or areas which have specific definitions or are covered by specific rules are capitalized. +For example, “Rules Questions” or “Primary Structure”. +1A5.1.3 Headings + The article, section and paragraph headings in these rules are provided only to facilitate +reading: they do not affect the paragraph contents. +1A5.1.4 Applicability +Unless otherwise designated, all rules apply to all vehicles at all times. +1A5.1.5 Figures and Illustrations + Figures and illustrations give clarification or guidance, but are rules only when referred to in +the text of a rule. +1A5.1.6 Change Identification + Any summary of changed rules and/or changed portions marked in the rules themselves are +provided for courtesy, and may or may not include all changes. +1A5.2 General Authority +SAE and the competition organizing bodies reserve the right to revise the schedule of any competition +and/or interpret or modify the competition rules at any time and in any manner that is, in their +sole judgment, required for the efficient operation of the event or the Formula Hybrid + Electric +series as a whole. +1A5.3 SAE Technical Standards Access +1A5.3.1 A cooperative program of SAE International University Programs and Technical Standards +Board is making some of SAE’s Technical Standards available to teams registered for any SAE +International hosted competition at no cost. A list of accessible standards can be found +online www.fsaeonline.com and accessed under the team’s registration online www.sae.org. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +INDIVIDUAL PARTICIPATION REQUIREMENTS +1A5.4 Eligibility Limits +Eligibility is limited to undergraduate and graduate students to ensure that this is an engineering design +competition. +1A5.5 Student Status +1A5.5.1 Team members must be enrolled as degree seeking undergraduate or graduate students in the +college or university of the team with which they are participating. Team members who have +graduated during the twelve (12) month period prior to the competition remain eligible to +participate. +1A5.5.2 Teams which are formed with members from two or more Universities are treated as a single +team. A student at any University making up the team may compete at any event where the +team participates. The multiple Universities are in effect treated as one University with two +campuses and all eligibility requirements are enforced. +1A5.6 Society Membership +1A5.6.1 Team members must be members of at least one of the following societies: +(a) SAE +(b) IEEE +(c) SAE Australasia +(d) SAE Brazil +(e) ATA +(f) IMechE +(g) VDI +1A5.6.2 Proof of membership, such as membership card, is required at the competition. Students who +are members of one of the societies listed above are not required to join any of the other +societies in order to participate in the Formula Hybrid + Electric competition. +1A5.6.3 Students can join +SAE at: http://www.sae.org/students +IEEE at https://www.ieee.org/membership/join/index.html +Note: SAE membership is required to complete the on-line vehicle registration process, so at least one +team member must be a member of SAE. +1A5.7 Age +Team members must be at least eighteen (18) years of age. +1A5.8 Driver’s License +Team members who will drive a competition vehicle at any time during a competition must hold a valid, +government issued driver’s license. All drivers will be required to submit copies of their +driver’s licenses prior to the competition. Additional instructions will be sent to teams 6 weeks +before the competition. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A5.9 Driver Restrictions +Drivers who have driven for a professional racing team in a national or international series at any time +may not drive in any competition event. A “professional racing team” is defined as a team that +provides racing cars and enables drivers to compete in national or international racing series +and employs full time staff in order to achieve this. +1A5.10 Liability Waiver +All on-site participants, including students, faculty, volunteers and guests, are required to sign a liability +waiver upon registering on-site. +1A5.11 Medical Insurance +Individual medical insurance coverage is required and is the sole responsibility of the participant. +ARTICLE A6 INDIVIDUAL REGISTRATION REQUIREMENTS +1A6.1 SAE Student Members +1A6.1.1 If your qualifying professional society membership is with the SAE, you should link yourself to +your respective school, and complete the following information on the SAE website: +(a) Medical insurance (provider, policy/ID number, +telephone number) +(b) Driver’s license (state/country, ID number) +(c) Emergency contact data (point of contact +(parent/guardian, spouse), relationship, and phone +number) +1A6.1.2 To do this you will need to go to “Registration” page under the specific event the team is +registered and then click on the “Register Your Team / Update Team Information” link. At this +point, if you are properly affiliated to the school/college/university, a link will appear with your +team name to select. Once you have selected the link, the registration page will appear. +Selecting the “Add New Member” button will allow individuals to include themselves with the +rest of the team. This can also be completed by team captain and faculty advisor for all team +members. +1A6.1.3 All students, both domestic and international, must affiliate themselves online or submit the +International Student Registration form by March 1, 2025. For additional assistance, please +contact collegiatecompetitions@sae.org +1A6.2 Onsite Registration Requirement +1A6.2.1 Onsite registration is required of all team members and faculty advisors +1A6.2.2 Registration must be completed and the credentials and/or other identification issued by the +organizers properly worn before the car can be unloaded, uncrated or worked upon in any +manner. +1A6.2.3 The following is required at registration: +(a) Government issued driver’s license or passport and +(b) Medical insurance card or documentation +(c) Proof of professional society membership (such as card or member number) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A6.2.4 All international student participants (or unaffiliated faculty advisors) who are not SAE +members are required to complete the International Student Registration form for the entire +team found under “Competition Resources” on the event specific webpage. Upon completion, +email the form to collegiatecompetitions@sae.org +1A6.2.5 All students, both domestic and international, must affiliate themselves online or submit the +International Student Registration form prior to the date shown in the Action Deadlines on the +Formula Hybrid + Electric website. For additional assistance, please contact +collegiatecompetitions@sae.org +NOTE: When your team is registering for a competition, only the student or faculty advisor completing +the registration needs to be linked to the school. All other students and faculty can affiliate +themselves after registration has been completed. +1A6.3 Team Advisor +1A6.3.1 Each team must have a Professional Advisor appointed by the university. The Advisor, or an +official university representative, must accompany the team to the competition and will be +considered by competition officials to be the official university representative. If the appointed +advisor cannot attend the competition, the team must have an alternate college or university +approved adult attend. +1A6.3.2 Advisors are expected to review their team’s Structural Equivalency, Impact Attenuator data +and both ESFs prior to submission. Advisors are not required to certify the accuracy of these +documents, but should perform a “sanity check” and look for omissions. +1A6.3.3 Advisors may advise their teams on general engineering and engineering project management +theory, but must not design any part of the vehicle nor directly participate in the development +of any documentation or presentation. Additionally, Advisors may neither fabricate nor +assemble any components nor assist in the preparation, maintenance, testing or operation of the +vehicle. +In Brief –Advisors must not design, build or repair any part of the car. +1A6.4 Rules and Safety Officer (RSO) +1A6.4.1 Each team must appoint a person to be the “Rules and Safety Officer (RSO)”. +1A6.4.2 The RSO must: +(a) Be present at the entire Formula Hybrid + Electric event. +(b) Be responsible for understanding the Formula Hybrid + Electric rules prior to the +competition and ensuring that competing vehicles comply with all those rules +requirements. +(c) System Documentation – Have vehicle designs, plans, schematics and supporting +documents available for review by the officials as needed. +(d) Component Documentation – Have manufacturer’s documentation and information +available on all components of the electrical system. +(e) Be responsible for team safety while at the event. This includes issues such as: +(i) Use of safety glasses and other safety equipment +(ii) Control of shock hazards such as charging equipment and accessible high +voltage sources + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(iii) Control of fire hazards such as fuel, sources of ignition (grinding, welding +etc.) +(iv) Safe working practices (lock-out/tag-out, clean work area, use of jack stands +etc.) +(f) Be the point of contact between the team and Formula Hybrid + Electric organizers +should rules or safety issues arise. +1A6.4.3 If the RSO is also a driver in a dynamic event, a backup RSO must be appointed who will take +responsibility for sections A6.4.2(e) and A6.4.2(f) (above) while the primary RSO is in the +vehicle. +1A6.4.4 Preferably, the RSO should be the team's faculty advisor or a member of the university's +professional staff, but the position may be held by a student member of the team. +1A6.4.5 Contact information for the primary and backup RSOs (Name, Cell Phone number, etc.) must +be provided to the organizers during registration. +ARTICLE A7 VEHICLE ELIGIBILITY +1A7.1 Student Developed Vehicle +Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained +by the student team members without direct involvement from professional engineers, +automotive engineers, racers, machinists or related professionals. +1A7.2 Information Sources +The student team may use any literature or knowledge related to car design and information from +professionals or from academics as long as the information is given as a discussion of +alternatives with their pros and cons. +1A7.3 Professional Assistance +Professionals may not make design decisions or drawings and the Faculty Advisor may be required to +sign a statement of compliance with this restriction. +1A7.4 Student Fabrication +It is the intent of the SAE Collegiate Design Series competitions to provide direct hands-on experience to +the students. Therefore, students should perform all fabrication tasks whenever possible. +1A7.5 Vehicles Entered for Multiple Years +Formula Hybrid + Electric does not require that teams design and build a new vehicle from scratch each +year. +1A7.5.1 Teams may enter the same vehicle used in previous competitions, provided it complies with all +the Formula Hybrid + Electric rules in effect at the competition in which it is entered. +1A7.5.2 Rules waivers issued to vehicles are valid for only one year. It is assumed that teams will +address the issues requiring a waiver before entering the vehicle in a subsequent year. +NOTE 1: Design judges will look more favorably on vehicles that have clearly documented upgrades and +improvements since last entered in a Formula Hybrid + Electric competition. +NOTE 2: Because the Formula Hybrid + Electric competition emphasizes high-efficiency drive systems, +engineered improvements to the drive train and control systems will be weighted more heavily +by the design judges than updates to the chassis, suspension etc. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A7.6 Entries per University +Universities may enter up to two vehicles per competition. Note that there will be a registration wait +period imposed for a second vehicle. +ARTICLE A8 REGISTRATION +Registration for the Formula Hybrid + Electric competition must be completed on-line. Online +registration must be done by either (a) an SAE member or (b) the official faculty advisor +connected with the registering university and recorded as such in the SAE record system. +Note: It typically takes at least 1 working day between the time you complete an online SAE membership +application and our system recognizes you as eligible to register your team. +1A8.1 Registration Cap +The Formula Hybrid + Electric competition is capped at 35 entries. Registrations received after the entry +cap is reached will be placed on a waiting list. If no slots become available prior to the +competition, the entry fee will be refunded. +Registration Fees + +1A8.1.1 Registration fees must be paid to the organizer by the deadline specified on the Formula Hybrid ++Electric website. +1A8.1.2 Registration fees are not refundable. +1A8.2 Withdrawals +Registered teams that find that they will not be able to attend the Formula Hybrid + Electric competition +are requested to officially withdraw by notifying the organizers at the following address not +later than one (1) week before the event: formulahybridcomp@gmail.com +1A8.3 United States Visas +1A8.3.1 Teams requiring visas to enter to the United States are advised to apply at least sixty (60) days +prior to the competition. Although many visa applications go through without an unreasonable +delay, occasionally teams have had difficulties and in several instances visas were not issued +before the competition. +Don’t wait – apply early for your visa. +Note: After your team has registered for the Formula Hybrid + Electric competition, the organizers can +provide an acknowledgement your registration. We do not issue letters of invitation or +participation certificates. +1A8.3.2 Neither SAE staff nor any competition organizers are permitted to give advice on visas, +customs regulations or vehicle shipping regulations concerning the United States or any other +country. +ARTICLE A9 VEHICLE DOCUMENTS, DEADLINES AND PENALTIES +1A9.1 Required Documents +The following documents supporting each vehicle must be submitted by the action deadlines posted on +the Formula Hybrid + Electric website or otherwise published by the organizers. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Document Section +Project Management Plan S2.3 +Electrical System Form (ESF-1) EV13.1 +Change Management Report S2.4 +Structural Equivalency Spreadsheet (SES) T3.8 +Impact Attenuator Data (IA) T3.21 +Program Submission ARTICLE A10(f) +Site Pre-Registration ARTICLE A10(l) +Design Report S3.2.1 +Design Specification Sheet S3.2.2 +Electrical System Form (ESF-2) EV13.2 +Table 3 - Required Documents +1A9.2 Document Submission Policies +Note: Volunteer examiners and judges evaluate all the required submissions and it is essential that they +have enough time to complete their work. There are no exceptions to the document submission +deadlines and late submissions will incur penalties. +1A9.2.1 Document submission penalties or bonus points are factored into a team’s final score. They do +not alter the individual event scores. +1A9.2.2 All documents must be submitted using the following document title, unless otherwise noted in +individual document requirements: Car Number_University_Document_Competition Year +i.e. 000_Oxford University_SES_2025 +Teams are responsible for submitting properly labeled documents and will accrue applicable +penalty points if documents with corrected formatting are late. +1A9.2.3 Teams must submit the required documents online at +https://formulahybridupload.supportsystem.com/ +1A9.2.4 Document submission deadlines are listed in GMT (Greenwich Mean Time) unless otherwise +explicitly stated. This means that deadlines are typically 7:00 PM Eastern Standard Time. +Please use this website for time conversions or https://time.is/GMT . +1A9.2.5 The time and date that the document is uploaded is recorded in GMT (Greenwich Mean Time) +and constitutes the official record for deadline compliance. +1A9.2.6 The official time and date of document receipt will be posted on the Formula Hybrid + Electric +website. +Teams are responsible for ensuring the accuracy of these postings and must notify the organizers within +three days of their submission to report a discrepancy. After three days the submission time and +date will become final. +1A9.3 Late submissions +Documents received after their deadlines will be penalized as follows: +(a) Structural Equivalency Spreadsheet (SES) – The penalty for late SES submission is 10 +points per day and is capped at negative fifty (-50) points. However, teams are advised + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +that the SES’s are evaluated in the order in which they are received and that late +submissions will be reviewed last. Late SES approval could delay the completion of your +vehicle. We strongly recommend you submit your SES as early as possible. +(b) Impact Attenuator Report (IA) - The penalty for late IA submissions is 10 points per +day and is capped at negative fifty (-50) points. +(c) Design Reports – The Design Report and Design Spec Sheet collectively constitute the +“Design Documents”. +(i) Design Report 10 points/day up to 100 points +(ii) Design Spec Sheet 5 points/day up to 50 points +NOTE: The total penalty for late arrival of any design documents will not exceed 100 points. + +(d) Program Submissions – There are no penalties for late program submissions. However, +late submissions will not be included in the race program, which can be an important tool +for future team fund raising. +(e) Project Management Project Plan - Late submission or failure to submit the Project +Plan will be penalized at five (5) points per day and is capped at negative fifty-five (-55) +points. +(f) Change Management Report - Late submission or failure to submit the interim report +will be penalized at five (5) points per day and is capped at negative forty (-40) points. +(g) ESF - The penalty for late ESF submissions is 10 points per day and is capped at +negative twenty-five points (-25) per ESF or fifty (-50) points total. +(h) Site Pre-Registration – The penalty for late submission of Site Pre-Registration will be +five (5) points. Teams may submit additional team member information up to one week +prior to the competition, and all drivers must submit a photo of their driver’s license prior +to April 26 +th + on the “Document Upload Page”. +1A9.4 Early submissions +In some cases, documents submitted before their deadline can earn a team bonus points as follows: +(a) Structural Equivalency Spreadsheet (SES) +(i) Approved documents that were submitted 30 days or more before the SES deadline +will receive 20 bonus points. +(ii) Approved documents that were submitted between 29 and 15 days before the SES +deadline will receive 10 bonus points. +(b) Electrical System Forms (ESF-1 and ESF-2) +(i) Approved documents that were submitted 30 days or more before each ESF deadline +will receive 10 bonus points. +(ii) Approved documents that were submitted between 29 and 15 days before each ESF +deadline will receive 5 bonus points. +Note 1: The qualifying dates for bonus points will be listed on the Formula Hybrid + Electric website. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note 2: The number of bonus points will be based on the submission date of the document, not on the +approval date. Documents submitted early that are not approved will not qualify for bonus +points. +Note 3: Some bonus point deadlines may occur before the closing date of registration. If a team has not +previously registered for a Formula Hybrid + Electric competition, they may not be listed on +the documents submission page. (A9.2.3) In that case, a team should submit the document via +email to formulahybridcomp@gmail.com + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE A10 FORMS AND DOCUMENTS + The following forms and documents are available on the Formula Hybrid + Electric website: +(a) 2025 Formula Hybrid + Electric Rules (This Document) +(b) Structural Equivalency Spreadsheet (SES) +(c) Impact Attenuator (IA) Data Sheet +(d) Electrical Systems Form (ESF-1) template +(e) Electrical Systems Form (ESF-2) template +(f) Program Information Sheet (Team information for the Event Program) +(g) Mechanical Inspection Sheet (For reference) +(h) Electrical Inspection Sheet (For reference) +(i) Design Specification Sheet +(j) Design Event Judging Form (For reference) +(k) Project Management Judging Form (For reference) +(l) Site pre-registration form +Note: Formula Hybrid + Electric strives to provide student engineering teams with timely and useful +information to assist in the design and construction of their vehicles. Check the Formula Hybrid ++ Electric website often for new or updated advisory publications. +ARTICLE A11 PROTESTS +1A11.1 Protests - General +It is recognized that thousands of hours of work have gone into fielding a vehicle and that teams are +entitled to all the points they can earn. We also recognize that there can be differences in the +interpretation of rules, the application of penalties and the understanding of procedures. The +officials and SAE staff will make every effort to fully review all questions and resolve +problems and discrepancies quickly and equitably +1A11.2 Preliminary Review – Required +If a team has a question about scoring, judging, policies, or any official action it must be brought to the +organizer’s or SAE staff’s attention for an informal preliminary review before a protest can be +filed. +1A11.3 Cause for Protest +A team may protest any rule interpretation, score, or official action (unless specifically excluded from +protest) which they feel has caused some actual, non-trivial, harm to their team, or has had +substantive effect on their score. Teams may not protest rule interpretations or actions that have +not caused them any substantive damage. +1A11.4 Protest Format and Forfeit +All protests must be filed in writing and presented to the organizer or SAE staff by the team captain. In +order to have a protest considered, a team must post a twenty-five (25) point protest bond +which will be forfeited if their protest is rejected. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A11.5 Protest Period +Protests concerning any aspect of the competition must be filed within one-half hour (30 minutes) of the +posting of the scores of the event to which the protest relates. +1A11.6 Decision +The decision of the competition protest committee regarding any protest is final. +ARTICLE A12 QUESTIONS ABOUT THE FORMULA HYBRID + ELECTRIC RULES +1A12.1 Question Publication +By submitting, a question to the Formula Hybrid + Electric Rules Committee or the competition’s +organizing body you and your team agree that both your question and the official answer can be +reproduced and distributed by SAE or Formula Hybrid + Electric, in both complete and edited +versions, in any medium or format anywhere in the world. +1A12.2 Question Types +1A12.2.1 The Committee will answer questions that are not already answered in the rules or FAQs or that +require new or novel rule interpretations. The Committee will not respond to questions that are +already answered in the rules. For example, if a rule specifies a minimum dimension for a part +the Committee will not answer questions asking if a smaller dimension can be used. +1A12.3 Frequently Asked Questions +1A12.3.1 Before submitting a question, check the Frequently Asked Questions section of the Formula +Hybrid + Electric website. +1A12.4 Question Submission +Questions must be submitted on the Formula Hybrid + Electric Support page: +https://formulahybridelectric.supportsystem.com/ + + +Figure 1 - Formula Hybrid + Electric Support Page + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A12.5 Question Format +The following information is required: +(a) Submitter’s Name +(b) Submitter’s Email +(c) Topic (Select from the pull-down menu) +(d) University Name (Registered teams will find their University name in a pull-down list) +You may type your question into the “Message” box, or upload a document. +You will receive a confirmation email with a link to enable you to check on your question’s status. +1A12.6 Response Time +Please allow a minimum of 3 days for a response. The Rules Committee will respond as quickly as +possible, however, responses to questions presenting new issues, or of unusual complexity, may +take more than one week. +Please do not resend questions. + + + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART T1 - GENERAL TECHNICAL REQUIREMENTS +ARTICLE T1 VEHICLE REQUIREMENTS AND RESTRICTIONS *** +1T1.1 Technical Inspection +1T1.1.1 The following requirements and restrictions will be enforced through technical inspection. +Noncompliance must be corrected and the car re-inspected before the car is allowed to +operate under power. +1T1.2 Modifications and Repairs +1T1.2.1 Once the vehicle has been presented for judging in the Design Events, or submitted for +Technical Inspection, and until the vehicle is approved to compete in the dynamic events, i.e. +all the inspection stickers are awarded, the only modifications permitted to the vehicle are +those directed by the Inspector(s) and noted on the Inspection Form. +1T1.2.2 Once the vehicle is approved to compete in the dynamic events, the ONLY modifications +permitted to the vehicle are: +(a) Adjustment of belts, chains and clutches +(b) Adjustment of brake bias +(c) Adjustment of the driver restraint system, head restraint, seat and pedal assembly +(d) Substitution of the head restraint or seat inserts for different drivers +(e) Adjustment to engine operating parameters, e.g. fuel mixture and ignition timing and any +software calibration changes +(f) Adjustment of mirrors +(g) Adjustment of the suspension where no part substitution is required, (except that springs, +sway bars and shims may be changed) +(h) Adjustment of tire pressure +(i) Adjustment of wing angle (but not the location) +(j) Replenishment of fluids +(k) Replacement of worn tires or brake pads The replacement tires and/or brake pads must be +identical in material, composition and size to those presented and approved at Technical +Inspection. +(l) The changing of wheels and tires for “wet” or “damp” conditions as allowed in D3.1 of the +Formula Hybrid + Electric Rules. +(m) Recharging of Grounded Low Voltage (GLV) supplies. +(n) Recharging of Accumulators. (See EV12.2) +(o) Adjustment of motor controller operating parameters. +1T1.2.3 The vehicle must maintain all required specifications, e.g. ride height, suspension travel, +braking capacity, sound level and wing location throughout the competition. +1T1.2.4 Once the vehicle is approved for competition, any damage to the vehicle that requires repair, +e.g. crash damage, electrical or mechanical damage will void the Inspection Approval. Upon + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +the completion of the repair and before re-entering into any dynamic competition, the vehicle +MUST be re-submitted to Technical Inspection for re-approval. +ARTICLE T2 GENERAL DESIGN REQUIREMENTS +1T2.1 Vehicle Configuration +1T2.1.1 The vehicle must be open-wheeled and open-cockpit (a formula style body) with four (4) +wheels that are not in a straight line. +1T2.1.2 Definition of "Open Wheel" – Open Wheel vehicles must satisfy all of the following criteria: +(a) The top 180 degrees of the wheels/tires must be unobstructed when viewed from +vertically above the wheel. +(b) The wheels/tires must be unobstructed when viewed from the side. +(c) No part of the vehicle may enter a keep-out-zone defined by two lines extending +vertically from positions 75 mm in front of and 75 mm behind the outer diameter of the +front and rear tires in side view elevation of the vehicle with the tires steered straight +ahead. This keep-out zone will extend laterally from the outside plane of the wheel/tire to +the inboard plane of the wheel/tire. See Figure 2 below. +Note: The dry tires will be used for all inspections. + + +Figure 2 - Open Wheel Definition +1T2.2 Bodywork +There must be no openings through the bodywork into the driver compartment from the front of +the vehicle back to the roll bar main hoop or firewall other than that required for the cockpit +opening. Minimal openings around the front suspension components are allowed. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T2.3 Wheelbase +The car must have a wheelbase of at least 1524 mm. The wheelbase is measured from the +center of ground contact of the front and rear tires with the wheels pointed straight ahead. +1T2.4 Vehicle Track +The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. +1T2.5 Visible Access +All items on the Inspection Form must be clearly visible to the technical inspectors without +using instruments such as endoscopes or mirrors. Visible access can be provided by removing +body panels or by providing removable access panels. +ARTICLE T3 DRIVER’S CELL +1T3.1 General Requirements +1T3.1.1 Among other requirements, the vehicle’s structure must include two roll hoops that are braced, +a front bulkhead with support system and Impact Attenuator, and side impact structures. +Note: Many teams will be retrofitting Formula SAE cars for Formula Hybrid + Electric. In +most cases these vehicles will be considerably heavier than what the original frame and +suspension was designed to carry. It is important to analyze the structure of the car and to +strengthen it as required to insure that it will handle the additional stresses. +The technical inspectors will also be paying close attention to the mounting of accumulator +systems. These can be very heavy and must be adequately fastened to the main structure of the +vehicle. +1T3.2 Definitions + The following definitions apply throughout the Rules document: +(a) Main Hoop - A roll bar located alongside or just behind the driver’s torso. +(b) Front Hoop - A roll bar located above the driver’s legs, in proximity to the steering wheel. +(c) Roll Hoops – Both the Front Hoop and the Main Hoop are classified as “Roll Hoops” +(d) Roll Hoop Bracing Supports – The structure from the lower end of the Roll Hoop Bracing +back to the Roll Hoop(s). +(e) Frame Member - A minimum representative single piece of uncut, continuous tubing. +(f) Frame - The “Frame” is the fabricated structural assembly that supports all functional +vehicle systems. This assembly may be a single welded structure, multiple welded +structures or a combination of composite and welded structures. +(g) Primary Structure – The Primary Structure is comprised of the following Frame +components: +(i) Main Hoop +(ii) Front Hoop +(iii) Roll Hoop Braces and Supports +(iv) Side Impact Structure + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(v) Front Bulkhead +(vi) Front Bulkhead Support System +(vii) All Frame Members, guides and supports that transfer load from the Driver’s +Restraint System into items (i) through (vi). +(h) Major Structure of the Frame – The portion of the Frame that lies within the envelope +defined by the Primary Structure. The upper portion of the Main Hoop and the Main Hoop +Bracing are not included in defining this envelope. +(i) Front Bulkhead – A planar structure that defines the forward plane of the Major Structure +of the Frame and functions to provide protection for the driver’s feet. +(j) Impact Attenuator – A deformable, energy absorbing device located forward of the Front +Bulkhead. +(k) Side Impact Zone – The area of the side of the car extending from the top of the floor to +350 mm above the ground and from the Front Hoop back to the Main Hoop. +(l) Node-to-node triangulation – An arrangement of frame members projected onto a plane, +where a co-planar load applied in any direction, at any node, results in only tensile or +compressive forces in the frame members. This is also what is meant by “properly +triangulated”. + + +Figure 3 - Triangulation +1T3.3 Minimum Material Requirements +1T3.3.1 Baseline Steel Material + The Primary Structure of the car must be constructed of: + Either: Round, mild or alloy, steel tubing (minimum 0.1% carbon) of the minimum dimensions +specified in Table 4 . + Or: Approved alternatives per Rules T3.3, T3.3.2, T3.5 and T3.6. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Inch +Metric +Main & Front Hoops, +Round: 1.0" x 0.095" +Round: 25.0 mm x 2.50 mm +Shoulder Harness Mounting Bar + +Side Impact Structure +Round: 1.0" x 0.065" +Round: 25.0 mm x 1.75 mm +Roll Hoop Bracing +Square: 1.0" x 1.0" x 0.049" +Square: 25.0 mm x 25.0 mm x 1.25 mm +Front Bulkhead +Square: 26.0 mm x 26.0 mm x 1.2 mm +Main Hoop Bracing Supports +Round: 1.0" x 0.049" +Round: 25.0 mm x 1.5 mm +Front Bulkhead Supports +Round: 26.0 mm x 1.2 mm +Protection of Tractive System Components +OUTSIDE DIMENSION x WALL THICKNESS +ITEM or APPLICATION +Driver’s Restraint Harness Attachment +(except for Shoulder Harness Mounting Bar) + +Table 4 - Baseline Steel +Note 1: The use of alloy steel does not allow the wall thickness to be thinner than that used for +mild steel. +Note 2: For a specific application using tubing of the specified outside diameter but with +greater wall thickness, or of the specified wall thickness and a greater outside diameter, or +replacing round tubing with square tubing of the same or larger size to those listed above, are +NOT rules deviations requiring approval. +Note 3: Except for inspection holes, any holes drilled in any regulated tubing require the +submission of an SES. +Note 4: Baseline steel properties used for calculations to be submitted in an SES may not be +lower than the following: +Bending and buckling strength calculations: + Young’s Modulus (E) = 200 GPa (29,000 ksi) + Yield Strength (S +y +) = 305 MPa (44.2 ksi) + Ultimate Strength (S +u +) = 365 MPa (52.9 ksi) + +Welded monocoque attachment points or welded tube joint calculations: + Yield Strength (S +y +) = 180 MPa (26 ksi) + Ultimate Strength (S +u +) = 300 MPa (43.5 ksi) + +1T3.3.2 When a cutout, or a hole greater in diameter than 3/16 inch (4 mm), is made in a regulated tube, +e.g. to mount the safety harness or suspension and steering components, in order to regain the +baseline, cold rolled strength of the original tubing, the tubing must be reinforced by the use +of a welded insert or other reinforcement. The welded strength figures given above must be +used for the additional material. And the details, including dimensioned drawings, must be +included in the SES. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.4 Alternative Tubing and Material - General +1T3.4.1 Alternative tubing geometry and/or materials may be used except that the Main Roll Hoop and +Main Roll Hoop Bracing must be made from steel, i.e. the use of aluminum or titanium +tubing or composites for these components is prohibited. +1T3.4.2 Titanium or magnesium on which welding has been utilized may not be used for any part of the +Primary Structure. This includes the attachment of brackets to the tubing or the attachment of +the tubing to other components. +1T3.4.3 If a team chooses to use alternative tubing and/or materials they must still submit a “Structural +Equivalency Spreadsheet” per Rule T3.8. The teams must submit calculations for the material +they have chosen, demonstrating equivalence to the minimum requirements found in Section +T3.3.1 for yield and ultimate strengths in bending, buckling and tension, for buckling +modulus and for energy dissipation. +Note: The Buckling Modulus is defined as EI, where, E = modulus of Elasticity, and I = area +moment of inertia about the weakest axis. +1T3.4.4 To be considered as a structural tube in the SES Submission (T3.8) tubing cannot have an +outside dimension less than 25 mm or a wall thickness less than that listed in T3.5 or T3.6. +1T3.4.5 If a bent tube is used anywhere in the primary structure, other than the front and main roll +hoops, an additional tube must be attached to support it. The attachment point must be the +position along the tube where it deviates farthest from a straight line connecting both ends. +The support tube must have the same diameter and thickness as the bent tube. The support +tube must terminate at a node of the chassis. +1T3.4.6 Any chassis design that is a hybrid of the baseline and monocoque rules, must meet all relevant +rules requirements, e.g. a sandwich panel side impact structure in a tube frame chassis must +meet the requirements of rules T3.27, T3.28, T3.29, T3.30 and T3.33. +Note: It is allowable for the properties of tubes and laminates to be combined to prove +equivalence. E.g. in a side-impact structure consisting of one tube as per T3.3 and a laminate +panel, the panel only needs to be equivalent to two side-impact tubes. +1T3.5 Alternative Steel Tubing + Minimum Wall Thickness Allowed: + +MATERIAL & APPLICATION MINIMUM WALL THICKNESS +Front and Main Roll Hoops +Shoulder Harness Mounting Bar +2.0 mm +Roll Hoop Bracing +Roll Hoop Bracing Supports +Side Impact Structure +Front Bulkhead +Front Bulkhead Support +Driver’s Harness Attachment (Except for + Shoulder Harness Mounting Bar - above) +Protection of accumulators +Protection of TSV components +1.2 mm +Table 5 - Steel Tubing Minimum Wall Thicknesses + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + Note 1: All steel is treated equally - there is no allowance for alloy steel tubing, e.g. SAE 4130, +to have a thinner wall thickness than that used with mild steel. + Note 2: To maintain EI with a thinner wall thickness than specified in T3.3.1, the outside +diameter MUST be increased. + Note 3: To maintain the equivalent yield and ultimate tensile strength the same cross-sectional +area of steel as the baseline tubing specified in T3.3.1 must be maintained. +1T3.6 Aluminum Tubing Requirements +1T3.6.1 Minimum Wall Thickness of Aluminum Tubing is 3.0 mm +1T3.6.2 The equivalent yield strength must be considered in the “as-welded” condition, (Reference: +WELDING ALUMINUM (latest Edition) by the Aluminum Association, or THE WELDING +HANDBOOK, Volume 4, 9th Ed., by The American Welding Society), unless the team +demonstrates and shows proof that the frame has been properly solution heat treated and +artificially aged. +1T3.6.3 Should aluminum tubing be solution heat-treated and age hardened to increase its strength after +welding; the team must supply sufficient documentation as to how the process was +performed. This includes, but is not limited to, the heat-treating facility used, the process +applied, and the fixturing used. +1T3.7 Composite Materials +1T3.7.1 If any composite or other material is used, the team must present documentation of material +type, e.g. purchase receipt, shipping document or letter of donation, and of the material +properties. Details of the composite lay-up technique as well as the structural material used +(cloth type, weight, and resin type, number of layers, core material, and skin material if +metal) must also be submitted. The team must submit calculations demonstrating equivalence +of their composite structure to one of similar geometry made to the minimum requirements +found in Section T3.3.1. Equivalency calculations must be submitted for energy dissipation, +yield and ultimate strengths in bending, buckling, and tension. Submit the completed +“Structural Equivalency Spreadsheet” per Section T3.8 +Note: Some composite materials present unique electrical shock hazards, and may require +additional engineering and fabrication effort to minimize those hazards. See: ARTICLE EV8. +1T3.7.2 Composite materials are not allowed for the Main Hoop or the Front Hoop. +1T3.8 Structural Documentation – SES Submission +All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010. +1T3.8.1 All teams must submit a Structural Equivalency Spreadsheet (SES) even if they are not +planning to use alternative materials or tubing sizes to those specified in T3.3.1 Baseline +Steel Materials. +1T3.8.2 The use of alternative materials or tubing sizes to those specified in T3.3.1 “Baseline Steel +Material,” is allowed, provided they have been judged by a technical review to have equal or +superior properties to those specified in T3.3.1. +1T3.8.3 Approval of alternative material or tubing sizes will be based upon the engineering judgment +and experience of the chief technical inspector or their appointee. +1T3.8.4 The technical review is initiated by completing the “Structural Equivalency Spreadsheet” (SES) +which can be downloaded from the Formula Hybrid + Electric website. +1T3.8.5 Structural Equivalency Spreadsheet – Submission + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +SESs must be submitted via the Formula Hybrid + Electric Document Upload page. See +Section A9.2. +Do Not Resubmit SES’s unless instructed to do so. + +1T3.8.6 Vehicles completed under an approved SES must be fabricated in accordance with the materials +and processes described in the SES. +1T3.8.7 Teams must bring a copy of the approved SES with them to Technical Inspection. +Comment - The resubmission of an SES that was written and submitted for a competition in a +previous year is strongly discouraged. Each team is expected to perform their own tests and to +submit SESs based on their original work. Understanding the engineering that justifies the +equivalency is essential to discussing your work with the officials. + +1T3.8.8 An approved SES for a Formula SAE 2024 or 2025 competition may be submitted in place of +the Formula Hybrid + Electric specific SES required by T3.8.4. + +1T3.9 Main and Front Roll Hoops – General Requirements +1T3.9.1 The driver’s head and hands must not contact the ground in any rollover attitude. +1T3.9.2 The Frame must include both a Main Hoop and a Front Hoop as shown in Figures from Top: +4. +1T3.9.3 When seated normally and restrained by the Driver’s Restraint System, the helmet of a 95th +percentile male (anthropometrical data; See Table 6 and Figure 5) and all of the team’s +drivers must: +(a) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to +the top of the front hoop. (Figures from Top: 4a) +(b) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to +the lower end of the main hoop bracing if the bracing extends rearwards. (Figures from +Top: 4b) +(c) Be no further rearwards than the rear surface of the main hoop if the main hoop bracing +extends forwards. (Figures from Top: 4c) + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +A two dimensional template used to represent the 95th percentile male is made to the +following dimensions: +● A circle of diameter 200 mm will represent the hips and buttocks. +● A circle of diameter 200 mm will represent the shoulder/cervical region. +● A circle of diameter 300 mm will represent the head (with helmet). +● A straight line measuring 490 mm will connect the centers of the two 200 mm +circles. +● A straight line measuring 280 mm will connect the centers of the upper 200 +mm circle and the 300 mm head circle. +Table 6 - 95th Percentile Male Template Dimensions + +Figures from Top: 4a, 4b, and 4c- Roll Hoops and Helmet Clearance + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 5 - Percy -- 95th Percentile Male with Helmet + +Figure 6 – 95th Percentile Template Positioning +1T3.9.4 The 95th percentile male template (Percy) will be positioned as follows: (See Figure 6) +(a) The seat will be adjusted to the rearmost position, +(b) The pedals will be placed in the most forward position. +(c) The bottom 200 mm circle will be placed on the seat bottom such that the distance +between the center of this circle and the rearmost face of the pedals is no less than 915 +mm. +(d) The middle 200 mm circle, representing the shoulders, will be positioned on the seat back. +(e) The upper 300 mm circle will be positioned no more than 25.4 mm away from the head +restraint (i.e. where the driver’s helmet would normally be located while driving). + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +IMPORTANT: If the requirements of T3.9.3 are not met with the 95 +th + percentile male +template, the car will not receive a Technical Inspection Sticker and will not be allowed to +compete in the dynamic events. + +1T3.9.5 Drivers who do not meet the helmet clearance requirements of T3.9.3 will not be allowed to +drive in the competition. +1T3.9.6 The minimum radius of any bend, measured at the tube centerline, must be at least three times +the tube outside diameter. Bends must be smooth and continuous with no evidence of +crimping or wall failure. +1T3.9.7 The Main Hoop and Front Hoop must be securely integrated into the Primary Structure using +gussets and/or tube triangulation. +1T3.10 Main Hoop +1T3.10.1 The Main Hoop must be constructed of a single piece of uncut, continuous, closed section +steel tubing per Rule T3.3.1 +1T3.10.2 The use of aluminum alloys, titanium alloys or composite materials for the Main Hoop is +prohibited. +1T3.10.3 The Main Hoop must extend from the lowest Frame Member on one side of the Frame, up, +over and down the lowest Frame Member on the other side of the Frame. +1T3.10.4 In the side view of the vehicle, the portion of the Main Roll Hoop that lies above its +attachment point to the Major Structure of the Frame must be within ten degrees (10°) of the +vertical. +1T3.10.5 In the side view of the vehicle, any bends in the Main Roll Hoop above its attachment point +to the Major Structure of the Frame must be braced to a node of the Main Hoop Bracing +Support structure with tubing meeting the requirements of Roll Hoop Bracing as per Rule +T3.3.1 +1T3.10.6 In the front view of the vehicle, the vertical members of the Main Hoop must be at least 380 +mm apart (inside dimension) at the location where the Main Hoop is attached to the Major +Structure of the Frame. +1T3.11 Front Hoop +1T3.11.1 The Front Hoop must be constructed of closed section metal tubing per Rule T3.3.1. +1T3.11.2 The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, +over and down to the lowest Frame Member on the other side of the Frame. +1T3.11.3 With proper gusseting and/or triangulation, it is permissible to fabricate the Front Hoop from +more than one piece of tubing. +1T3.11.4 The top-most surface of the Front Hoop must be no lower than the top of the steering wheel +in any angular position. +1T3.11.5 The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance +must be measured horizontally, on the vehicle centerline, from the rear surface of the Front +Hoop to the forward most surface of the steering wheel rim with the steering in the straight- +ahead position. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.11.6 In side view, no part of the Front Hoop can be inclined at more than twenty degrees (20°) +from the vertical. +1T3.12 Main Hoop Bracing +1T3.12.1 Main Hoop braces must be constructed of closed section steel tubing per Rule T3.3.1. +1T3.12.2 The Main Hoop must be supported by two braces extending in the forward or rearward +direction on both the left and right sides of the Main Hoop. +1T3.12.3 In the side view of the Frame, the Main Hoop and the Main Hoop braces must not lie on the +same side of the vertical line through the top of the Main Hoop, i.e. if the Main Hoop leans +forward, the braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, +the braces must be rearward of the Main Hoop. +1T3.12.4 The Main Hoop braces must be attached as near as possible to the top of the Main Hoop but +not more than 160 mm below the top-most surface of the Main Hoop. The included angle +formed by the Main Hoop and the Main Hoop braces must be at least thirty degrees (30°). +See: Figure 7 + + +Figure 7 - Main and Front Hoop Bracing +1T3.12.5 The Main Hoop braces must be straight, i.e. without any bends. +1T3.12.6 The attachment of the Main Hoop braces must be capable of transmitting all loads from the +Main Hoop into the Major Structure of the Frame without failing. From the lower end of the +braces there must be a properly triangulated structure back to the lowest part of the Main +Hoop and the node at which the upper side impact tube meets the Main Hoop. This structure +must meet the minimum requirements for Main Hoop Bracing Supports (see Rule T3.3) or an +SES approved alternative. Bracing loads must not be fed solely into the engine, transmission +or differential, or through suspension components. +1T3.12.7 If any item which is outside the envelope of the Primary Structure is attached to the Main +Hoop braces, then additional bracing must be added to prevent bending loads in the braces in +any rollover attitude. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.13 Front Hoop Bracing +1T3.13.1 Front Hoop braces must be constructed of material per Rule T3.3.1. +1T3.13.2 The Front Hoop must be supported by two braces extending in the forward direction, one on +the left side and one on the right side of the Front Hoop. +1T3.13.3 The Front Hoop braces must be constructed such that they protect the driver’s legs and +should extend to the structure in front of the driver’s feet. +1T3.13.4 The Front Hoop braces must be attached as near as possible to the top of the Front Hoop but +not more than 50.8 mm below the top-most surface of the Front Hoop. See: Figure 7 +1T3.13.5 If the Front Hoop leans rearwards by more than ten degrees (10°) from the vertical, it must be +supported by additional bracing to the rear. This bracing must be constructed of material per +Rule T3.3.1. +1T3.14 Other Bracing Requirements + Where the braces are not welded to steel Frame Members, the braces must be securely attached +to the Frame using 8 mm Metric Grade 8.8 (5/16 in SAE Grade 5), or stronger, bolts. Mounting +plates welded to the Roll Hoop braces must be at least 2.0 mm thick steel. +1T3.15 Other Side Tube Requirements + If there is a Roll Hoop brace or other frame tube alongside the driver, at the height of the neck +of any of the team’s drivers, a metal tube or piece of sheet metal must be firmly attached to the +Frame to prevent the drivers’ shoulders from passing under the roll hoop brace or frame tube, +and his/her neck contacting this brace or tube. +1T3.16 Mechanically Attached Roll Hoop Bracing +1T3.16.1 Roll Hoop bracing may be mechanically attached. +1T3.16.2 Any non-permanent joint at either end must be either a double-lug joint as shown in Figure 8 +and Figure 9 or a sleeved butt joint as shown in Figure 10. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 8 – Double-Lug Joint + +Figure 9 – Double Lug Joint + +Figure 10 – Sleeved Butt Joint + +1T3.16.3 The threaded fasteners used to secure non-permanent joints are considered critical fasteners +and must comply with ARTICLE T11. +1T3.16.4 No spherical rod ends are allowed. +1T3.16.5 For double-lug joints, each lug must be at least 4.5 mm thick steel, measure 25 mm minimum +perpendicular to the axis of the bracing and be as short as practical along the axis of the +bracing. +1T3.16.6 All double-lug joints, whether fitted at the top or bottom of the tube, must include a capping +arrangement. (See Figure 8 and Figure 9) +1T3.16.7 In a double-lug joint the pin or bolt must be 10 mm Grade 9.8 or 3/8 inch SAE Grade 8 +minimum. The attachment holes in the lugs and in the attached bracing must be a close fit +with the pin or bolt. +1T3.16.8 For sleeved butt joints (Figure 10), the sleeve must have a minimum length of 76 mm (38 +mm on either side of the joint) and be a close-fit around the base tubes. The wall thickness of +the sleeve must be at least that of the base tubes. The bolts must be 6 mm Grade 9.8 or 1/4 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +inch SAE Grade 8 minimum. The holes in the sleeves and tubes must be a close-fit with the +bolts. +1T3.17 Frontal Impact Structure +1T3.17.1 The driver’s feet and legs must be completely contained within the Major Structure of the +Frame. While the driver’s feet are touching the pedals, in side and front views no part of the +driver’s feet or legs can extend above or outside of the Major Structure of the Frame. +1T3.17.2 Forward of the Front Bulkhead must be an energy-absorbing Impact Attenuator. +1T3.18 Bulkhead +1T3.18.1 The Front Bulkhead must be constructed of closed section tubing per Rule T3.3.1. +1T3.18.2 Except as allowed byT3.22.2, The Front Bulkhead must be located forward of all non- +crushable objects, e.g. batteries, master cylinders, hydraulic reservoirs. +1T3.18.3 The Front Bulkhead must be located such that the soles of the driver’s feet, when touching +but not applying the pedals, are rearward of the bulkhead plane. (This plane is defined by the +forward-most surface of the tubing.) Adjustable pedals must be in the forward most position. +1T3.19 Front Bulkhead Support +1T3.19.1 The Front Bulkhead must be securely integrated into the Frame. +1T3.19.2 The Front Bulkhead must be supported back to the Front Roll Hoop by a minimum of three +(3) Frame Members on each side of the vehicle with one at the top (within 50.8 mm of its +top-most surface), one (1) at the bottom, and one (1) as a diagonal brace to provide +triangulation. +1T3.19.3 The triangulation must be node-to-node, with triangles being formed by the Front Bulkhead, +the diagonal and one of the other two required Front Bulkhead Support Frame Members. +1T3.19.4 All the Frame Members of the Front Bulkhead Support system listed above must be +constructed of closed section tubing per Section T3.3.1. +1T3.20 Impact Attenuator (IA) +1T3.20.1 On all cars there must be an Impact Attenuator and an Anti-Intrusion Plate forward of the +Front Bulkhead, with the Anti-Intrusion Plate between the Impact Attenuator and the Front +Bulkhead. +All methods of attachment of the IA to the Ant-Intrusion Plate and of the Anti-Intrusion Plate to +the Front Bulkhead must provide adequate load paths for transverse and vertical loads in the +event of off-axis impacts. +1T3.20.2 The Anti-Intrusion Plate must: +(a) Be a 1.5 mm (0.060 in) thick solid steel or 4.0 mm (0.157 in) thick solid aluminum plate. +Monocoques may use an approved alternative as per T3.38. +(b) Be attached securely and directly to the Front Bulkhead. +(c) Have an outer profile that meets the requirements of T3.20.3. +1T3.20.3 Alternative designs of the Anti-Intrusion Plate required by T3.20.2 that do not comply with +the minimum specifications given above require an approved “Structural Equivalency +Spreadsheet”, per T3.8. Equivalency must also be proven for perimeter shear strength of the +proposed design. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.20.4 The requirements for the outside profile of the Anti-Intrusion Plate are dependent on the +method of attachment to the Front Bulkhead: +● For welded joints the profile must extend at least to the centerline of the Front Bulkhead +tubes on all sides. +● For bolted joints the profile must match the outside dimensions of the Front Bulkhead +around the entire periphery. +1T3.20.5 For tube frame cars, the accepted methods of attaching the Anti-Intrusion Plate to the Front +Bulkhead are: +(a) Welding, where the welds are either continuous or interrupted. If interrupted, the +weld/space ratio must be at least 1:1. All weld lengths must be greater than 25 mm (1”). +(b) Bolted joints, using a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) +bolts with positive locking. The distance between any two bolt centers must be at least 50 +mm (2”). +NOTE: Holes in mandated tubes will require appropriate measures to ensure compliance with +T3.3.1 Note 3, and T3.3.2 +1T3.20.6 For monocoque cars, the attachment of the Anti-Intrusion Plate to the monocoque structure +must be documented in the team’s SES submission. This must prove the attachment method +is equivalent to the bolted joints described in T3.20.5 and that the attachment method utilized +will fail before any other part of the monocoque. +1T3.20.7 The Impact Attenuator must be: +(a) At least 200 mm (7.8 in) long, with its length oriented along the fore/aft axis of the Frame. +(b) At least 100 mm (3.9 in) high and 200 mm (7.8 in) wide for a minimum distance of 200 +mm (7.8 in) forward of the Front Bulkhead. +(c) Attached securely to the Anti-Intrusion Plate. +Segmented foam attenuators must have all segments bonded together to prevent sliding or +parallelogramming. +1T3.20.8 The accepted methods of attaching the Impact Attenuator to the Anti-Intrusion Plate are: +(a) Bolted joints, using a minimum of four (4) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) +bolts with positive locking. The distance between any two bolt centers must be at least 50 +mm (2”). +(b) By the use of a structural adhesive. The adhesive must be appropriate for use with both +substrate types. Appropriate adhesive choice, substrate preparation, and equivalency of this +bonded joint to the bolted joint in T3.20.8(a) must be documented in the team’s IAD +Report. +Note: Foam IA’s cannot be attached solely by the bolted method. +1T3.20.9 If a team uses the “standard” FSAE Impact Attenuator +3 +, and the outside profile of the Anti- +Intrusion Plate extends beyond the “standard” Impact Attenuator by more than 25 mm (1”) on + +3 + The officially approved “standard” Formula SAE Impact Attenuator may be found here on the Formula SAE +website + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +any side, a diagonal or X-brace made from 1.00” x 0.049” steel tube, or an approved +equivalent per T3.5, must be included in the Front Bulkhead. +1T3.21 Impact Attenuator Test Data Report Requirement +1T3.21.1 Impact Attenuator Test Data Report Requirement +All teams, whether they are using their own design of Impact Attenuator (IA) or the “standard” +FSAE Impact Attenuator, must submit an Impact Attenuator Data Report using the Impact +Attenuator Data (IAD) Template found on the Formula Hybrid + Electric Document page at: +https://www.formula-hybrid.org/documents +1T3.21.2 All teams must submit calculations and/or test data to show that their Impact Attenuator, +when mounted on the front of their vehicle and run into a solid, non-yielding impact barrier +with a velocity of impact of 7.0 meters/second, would give an average deceleration of the +vehicle not to exceed 20 g, with a peak deceleration less than or equal to 40 g's. +NOTE 1: Quasi-static testing is allowed. +NOTE 2: The calculations of how the reported absorbed energy, average deceleration and peak +deceleration figures have been derived from the test data MUST be included in the report and +appended to the report template. +1T3.21.3 Calculations must be based on the actual vehicle mass with a 175 lb. driver, full fluids, and +rounded up to the nearest 100 lb. +Note: Teams may only use the “Standard” FSAE impact attenuator design and data submission +process if their vehicle mass with driver is 300 kgs (661 lbs) or less. +To be eligible to utilize the “Standard” FSAE impact attenuator, teams must either have +previously brought a Formula Hybrid + Electric vehicle that weighs under 300 kgs (661 lbs) +with driver to a Formula Hybrid + Electric competition, or submit a detailed mass measurement +spreadsheet covering all the vehicle’s components as part of the Impact Attenuator Data Report, +showing that the new vehicle meets the above requirements. +1T3.21.4 Teams using a front wing must prove that the combination of the Impact Attenuator and front +wing, when used together, do not exceed the peak deceleration of rule T3.21.2. Teams can +use the following methods to show the design does not exceed the limits given in T3.21.2. +(a) Physical testing of the Impact Attenuator with wing mounts, links, vertical plates, and a +structural representation of the airfoil section to determine the peak force. See +http://formula-hybrid.org/students/tech-support/ FAQs for an example of the structure to +be included in the test. Or +(b) Combine the peak force from physical testing of the Impact Attenuator Assembly with +the wing mount failure load calculated from fastener shear and/or link buckling. Or +(c) If they are using the Standard FSAE Impact Attenuator (see T3.21.3 above), combine the +peak load of 95 kN exerted by the Standard FSAE Impact Attenuator with the wing +mount failure load calculated from fastener shear and/or buckling. +1T3.21.5 When using acceleration data, the average deceleration must be calculated based on the raw +data. The peak deceleration can be assessed based on the raw data, and if peaks above the 40g +limit are apparent in the data, it can then be filtered with a Channel Filter Class (CFC) 60 +(100 Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Tests”, or a +100 Hz, 3rd order, lowpass Butterworth (-3dB at 100 Hz) filter. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.21.6 A schematic of the test method must be supplied along with photos of the attenuator before +and after testing. +1T3.21.7 The test piece must be presented at technical inspection for comparison to the photographs +and the attenuator fitted to the vehicle. +1T3.21.8 The report must be submitted electronically in Adobe Acrobat ® format (*.pdf file) to the +address and by the date provided in the Action Deadlines provided on the Formula Hybrid + +Electric website. This material must be a single file (text, drawings, data or whatever you are +including). +1T3.21.9 The Impact Attenuator Data Report must be named as follows: +carnumber_schoolname_competitioncode_IAD.pdf using the assigned car number, the +complete school name and competition code e.g. +087_University of SAE_FHE_IAD.pdf +1T3.21.10 Teams that submit their Impact Attenuator Data Report after the due date will be +penalized as listed in section A9.2. +1T3.21.11 Impact Attenuator Reports will be evaluated by the organizers and the evaluations will be +passed to the Design Event Captain for consideration in that event. +1T3.21.12 During the test, the attenuator must be attached to the Anti-Intrusion Plate using the +intended vehicle attachment method. The Anti-Intrusion Plate must be spaced at least 50 mm +from any rigid surface. No part of the Anti-Intrusion Plate may permanently deflect more +than 25.4 mm beyond the position of the Anti-Intrusion Plate before the test. +Note: The 25.4 mm spacing represents the front bulkhead support and insures that the plate +does not intrude excessively into the cockpit. +1T3.21.13 Dynamic testing (sled, pendulum, drop tower, etc.) of the impact attenuator may only be +done at a dedicated test facility. The test facility may be part of the University but must be +supervised by professional staff or University faculty. Teams are not allowed to construct +their own dynamic test apparatus. Quasi-static testing may be performed by teams using their +universities facilities/equipment, but teams are advised to exercise due care when performing +all tests. +1T3.22 Non-Crushable Objects +1T3.22.1 Except as allowed by T3.22.2, all non-crushable objects (e.g. batteries, master cylinders, +hydraulic reservoirs) inside the primary structure must have 25 mm (1”) clearance to the rear +face of the Impact Attenuator Anti-Intrusion Plate. +1T3.22.2 The front wing and wing supports may be forward of the Front Bulkhead, but may NOT be +located in or pass through the Impact Attenuator. If the wing supports are in front of the Front +Bulkhead, the supports must be included in the test of the Impact Attenuator. See T3.21. +1T3.23 Front Bodywork +1T3.23.1 Sharp edges on the forward facing bodywork or other protruding components are prohibited. +1T3.23.2 All forward facing edges on the bodywork that could impact people, e.g. the nose, must have +forward facing radii of at least 38 mm. This minimum radius must extend to at least forty-five +degrees (45°) relative to the forward direction, along the top, sides and bottom of all affected +edges. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.24 Side Impact Structure for Tube Frame Cars + The Side Impact Structure must meet the requirements listed below. + +1T3.24.1 The Side Impact Structure for tube frame cars must be comprised of at least three (3) tubular +members located on each side of the driver while seated in the normal driving position, as +shown in Figure 11 + + +Figure 11 – Side Impact Structure +1T3.24.2 The three (3) required tubular members must be constructed of material per Section T3.3. +1T3.24.3 The locations for the three (3) required tubular members are as follows: +(a) The upper Side Impact Structural member must connect the Main Hoop and the Front +Hoop. With a 77 kg driver seated in the normal driving position all of the member must be +at a height between 300 mm and 350 mm above the ground. The upper frame rail may be +used as this member if it meets the height, diameter and thickness requirements. +(b) The lower Side Impact Structural member must connect the bottom of the Main Hoop and +the bottom of the Front Hoop. The lower frame rail/frame member may be this member if +it meets the diameter and wall thickness requirements. +(c) The diagonal Side Impact Structural member must connect the upper and lower Side +Impact Structural members forward of the Main Hoop and rearward of the Front Hoop. + +1T3.24.4 With proper gusseting and/or triangulation, it is permissible to fabricate the Side Impact +Structural members from more than one piece of tubing. +1T3.24.5 Alternative geometry that does not comply with the minimum requirements given above +requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.25 Inspection Holes +1T3.25.1 To allow the verification of tubing wall thicknesses, 4.5 mm inspection holes must be drilled +in a non-critical location of both the Main Hoop and the Front Hoop. +1T3.25.2 In addition, the Technical Inspectors may check the compliance of other tubes that have +minimum dimensions specified in T3.3.1. This may be done by the use of ultra-sonic testing +or by the drilling of additional inspection holes at the inspector’s request. +1T3.25.3 Inspection holes must be located so that the outside diameter can be measured across the +inspection hole with a caliper, i.e. there must be access for the caliper to the inspection hole +and to the outside of the tube one hundred eighty degrees (180°) from the inspection hole. +1T3.26 Composite Tubular Space Frames +1T3.26.1 Composite tubular space frames are not permitted in the Primary Structure of the vehicle (See +T3.2(g)) +1T3.26.2 Composite tubular structures may be used for other tubes regulated under T3.3 provided the +team receives prior approval from the Formula Hybrid + Electric chief technical examiner. +This will require submission of the following data: +(a) Test data on the joints used in the structure. +(b) Static strength testing on all proposed configurations within the frame. +(c) An assessment of the ability of all joints to handle cyclic loading. +(d) The equivalency of the composite tubes to withstand maximum forces and moments +(when compared to baseline materials). +This information must also be included in the structural equivalency submission. +1T3.27 Monocoque General Requirements +1T3.27.1 All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010. +1T3.27.2 All sections of the rules apply to monocoque structures except for the following sections +which supplement or supersede other rule sections. +1T3.27.3 Monocoque construction requires an approved Structural Equivalency Spreadsheet, per +Section T3.8. The form must demonstrate that the design is equivalent to a welded frame in +terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension. +Information must include: material type(s), cloth weights, resin type, fiber orientation, +number of layers, core material, and lay-up technique. The 3 point bend test and shear test +data and pictures must also be included as per T3.30 Monocoque Laminate Testing. The +Structural Equivalency must address each of the items below. Data from the laminate testing +results must be used as the basis for any strength or stiffness calculations. +1T3.27.4 Composite and metallic monocoques have the same requirements. +1T3.27.5 Composite monocoques must meet the materials requirements in Rule T3.7 Composite +Materials. +1T3.28 Monocoque Inspections +1T3.28.1 Due to the monocoque rules and methods of manufacture it is not always possible to inspect +all aspects of a monocoque during technical inspection. For items which cannot be verified +by an inspector it is the responsibility of the team to provide documentation, both visual + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +and/or written, that the requirements have been met. Generally the following items should be +possible to be confirmed by the technical inspector: +(a) Verification of the Main Hoop outer diameter and wall thickness where it protrudes above +the monocoque +(b) Visual verification that the Main Hoop goes to the lowest part of the tub, locally +(c) Verify mechanical attachment of Main Hoop to tub exists and matches the SES, at all +points shown on the SES. +(d) Verify the outside diameter and wall thickness of the Front Hoop by providing access as +required by Rule T3.25.3. +(e) Verify visually or by feel that the Front Hoop is installed. +(f) Verify that the Front Hoop goes to the lowest part of the tub, locally. +(g) Verify mechanical attachment of the Front Hoop (if included) against the SES. +1T3.29 Monocoque Buckling Modulus – Equivalent Flat Panel Calculation + When specified in the rules, the EI of the monocoque must be calculated as the EI of a flat +panel with the same composition as the monocoque about the neutral axis of the laminate. The +curvature of the panel and geometric cross section of the monocoque must be ignored for these +calculations. + Note: Calculations of EI that do not reference T3.29 may take into account the actual geometry +of the monocoque. +1T3.30 Monocoque Laminate Testing +1T3.30.1 Teams must build a representative flat panel section of the monocoque side impact zone +(“zone” is defined in T3.32.2 and T3.2(k)) and perform a 3 point bending test on this panel. +They must prove by physical test that a section 200 mm x 500 mm has at least the same +properties as a baseline steel side impact tube (See T3.3.1 “Baseline Steel Materials”) for +bending stiffness and two side impact tubes for yield and ultimate strength. +The data from these tests and pictures of the test samples must be included in the SES, the test +results will be used to derive strength and stiffness properties used in the SES formulae for all +laminate panels. The test specimen must be presented at technical inspection. If the test +specimen does not meet these requirements then the monocoque side impact zone must be +strengthened appropriately. +Note: Teams are advised to make an equivalent test with the base line steel tubes such that any +compliance in the test rig can be accounted for. +1T3.30.2 If laminates with a lay-up different to that of the side-impact structure are used then +additional physical tests must be completed for any part of the monocoque that forms part of +the primary structure. The material properties derived from these tests must then be used in +the SES for the appropriate equivalency calculations. +Note: A laminate with more or less plies, of the same lay-up as the side-impact structure, does +not constitute a “different lay-up” and the material properties may be scaled accordingly. +1T3.30.3 Perimeter shear tests must be completed by measuring the force required to push or pull a +25 mm diameter flat punch through a flat laminate sample. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +The sample, measuring at least 100 mm x 100 mm must have core and skin thicknesses +identical to those used in the actual monocoque and be manufactured using the same materials +and processes. +The fixture must support the entire sample, except for a 32 mm hole aligned co-axially with the +punch. The sample must not be clamped to the fixture. +The force-displacement data and photos of the test setup must be included in the SES. +The first peak in the load-deflection curve must be used to determine the skin shear strength. +This may be less than the minimum force required by T3.32.3/T3.33.3. +The maximum force recorded must meet the requirements of T3.32.3/T3.33.3. + Note: The edge of the punch and hole in the fixture may include an optional fillet up-to a +maximum radius of 1 mm. +1T3.31 Monocoque Front Bulkhead + See Rule T3.27 for general requirements that apply to all aspects of the monocoque. In +addition, when modeled as an “L” shaped section the EI of the front bulkhead about both +vertical and lateral axis must be equivalent to that of the tubes specified for the front bulkhead +under T3.18. The length of the section perpendicular to the bulkhead may be a maximum of +25.4 mm measured from the rearmost face of the bulkhead. +Furthermore, any front bulkhead which supports the IA plate must have a perimeter shear +strength equivalent to a 1.5 mm thick steel plate. +1T3.32 Monocoque Front Bulkhead Support +1T3.32.1 In addition to proving that the strength of the monocoque is adequate, the monocoque must +have equivalent EI to the sum of the EI of the six (6) baseline steel tubes that it replaces. +1T3.32.2 The EI of the vertical side of the front bulkhead support structure must be equivalent to at +least the EI of one baseline steel tube that it replaces when calculated as per rule T3.29 +Monocoque Buckling Modulus. +1T3.32.3 The perimeter shear strength of the monocoque laminate in the front bulkhead support +structure should be at least 4 kN for a section with a diameter of 25 mm. This must be +proven by a physical test completed as per T3.30.3 and the results include in the SES +1T3.33 Monocoque Side Impact +1T3.33.1 In addition to proving that the strength of the monocoque is adequate, the side of the +monocoque must have equivalent EI to the sum of the EI of the three (3) baseline steel tubes +that it replaces. +1T3.33.2 The side of the monocoque between the upper surface of the floor and 350 mm above the +ground (Side Impact Zone) must have an EI of at least 50% of the sum of the EI of the three +(3) baseline steel tubes that it replaces when calculated as per Rule T3.29 Monocoque +Buckling Modulus. +1T3.33.3 The perimeter shear strength of the monocoque laminate should be at least 7.5 kN for a +section with a diameter of 25 mm. This must be proven by physical test completed as per +T3.30.3 and the results included in the SES. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 12 – Side Impact Zone Definition for a Monocoque +1T3.34 Monocoque Main Hoop +1T3.34.1 The Main Hoop must be constructed of a single piece of uncut, continuous, closed section +steel tubing per T3.3.1 and extend down to the bottom of the monocoque. +1T3.34.2 The Main Hoop must be mechanically attached at the top and bottom of the monocoque and +at intermediate locations as needed to show equivalency. +1T3.34.3 Mounting plates welded to the Roll Hoop must be at least 2.0 mm thick steel. +1T3.34.4 Attachment of the Main Hoop to the monocoque must comply with T3.39. +1T3.35 Monocoque Front Hoop +1T3.35.1 Composite materials are not allowed for the front hoop. See Rule T3.27 for general +requirements that apply to all aspects of the monocoque. +1T3.35.2 Attachment of the Front Hoop to the monocoque must comply with Rule T3.39. +1T3.36 Monocoque Front and Main Hoop Bracing +1T3.36.1 See Rule T3.27 for general requirements that apply to all aspects of the monocoque. +1T3.36.2 Attachment of tubular Front or Main Hoop Bracing to the monocoque must comply with Rule +T3.39. +1T3.37 Monocoque Impact Attenuator and Anti-Intrusion Plate Attachment +The attachment of the Impact Attenuator and Anti-Intrusion Plate to a monocoque structure +requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8 that shows the +equivalency to a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16 inch SAE Grade 5) bolts +for the Anti-Intrusion Plate attachment and a minimum of four (4) bolts to the same minimum +specification for the Impact Attenuator attachment. +1T3.38 Monocoque Impact Attenuator Anti-Intrusion Plate +1T3.38.1 See Rule T3.27 for general requirements that apply to all aspects of the monocoque and Rule +T3.20.3 for alternate Anti-Intrusion Plate designs. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.39 Monocoque Attachments +1T3.39.1 In any direction, each attachment point between the monocoque and the other primary +structure must be able to carry a load of 30 kN. +1T3.39.2 The laminate, mounting plates, backing plates and inserts must have sufficient shear area, +weld area and strength to carry the specified 30 kN load in any direction. Data obtained from +the laminate perimeter shear strength test (T3.33.3) should be used to prove adequate shear +area is provided +1T3.39.3 Each attachment point requires a minimum of two (2) 8 mm Metric Grade 8.8 or 5/16 inch +SAE Grade 5 bolts +1T3.39.4 Each attachment point requires steel backing plates with a minimum thickness of 2.0 mm. +Alternate materials may be used for backing plates if equivalency is approved. +1T3.39.5 The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports only may +use one (1) 10 mm Metric Grade 8.8 or 3/8 inch SAE Grade 5 bolt as an alternative to +T3.39.3 if the bolt is on the centerline of tube similar to the figure below. + + +Figure 13 – Alternate Single Bolt Attachment + +1T3.39.6 No crushing of the core is permitted +1T3.39.7 Main Hoop bracing attached to a monocoque (i.e. not welded to a rear space frame) is always +considered “mechanically attached” and must comply with Rule T3.16. +1T3.40 Monocoque Driver’s Harness Attachment Points +1T3.40.1 The monocoque attachment points for the shoulder and lap belts must support a load of 13 kN +before failure. +1T3.40.2 The monocoque attachment points for the ant-submarine belts must support a load of 6.5 kN +before failure. +1T3.40.3 If the lap belts and anti-submarine belts are attached to the same attachment point, then this +point must support a load of 19.5 kN before failure. +1T3.40.4 The strength of lap belt attachment and shoulder belt attachment must be proven by physical +test where the required load is applied to a representative attachment point where the +proposed layup and attachment bracket is used. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE T4 COCKPIT +1T4.1 Cockpit Opening + +Important Note: Teams are advised that cockpit template and Percy (Figure 5) compliance +will be strictly enforced during mechanical technical inspection. Check the Formula Hybrid + +Electric website for an instructional video on template and Percy inspection procedures. + +1T4.1.1 In order to ensure that the opening giving access to the cockpit is of adequate size, a template +shown in Figure 14 will be inserted downwards into the cockpit opening. It will be held +horizontally and inserted vertically from a height above any Primary Structure or bodywork +that is between the Front Hoop and the Main Hoop until it has passed below the top bar of the +Side Impact Structure (or until it is 350 mm (13.8 inches) above the ground for monocoque +cars). Fore and aft translation of the template (while maintaining its position parallel to the +ground) will be permitted during insertion. + + +Figure 14 – Cockpit Opening Template +1T4.1.2 During this test, the steering wheel, steering column, seat and all padding may be removed. The +shifter or shift mechanism may not be removed unless it is integral with the steering wheel +and is removed with the steering wheel. The firewall may not be moved or removed. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: As a practical matter, for the checks, the steering column will not be removed. The +technical inspectors will maneuver the template around the steering column shaft, but not the +steering column supports. +1T4.2 Cockpit Internal Cross Section: +1T4.2.1 A free vertical cross section, which allows the template shown in Figure 15 to be passed +horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost +pedal when in the inoperative position, must be maintained over its entire length. If the pedals +are adjustable, they will be put in their most forward position. + + + +Figure 15 – Cockpit Internal Cross Section Template +1T4.2.2 The template, with maximum thickness of 7 mm, will be held vertically and inserted into the +cockpit opening rearward of the rear-most portion of the steering column. +Note: At the discretion of the technical inspectors, the internal cross-section template may be +moved vertically by small increments during fore and aft travel to clear height deviations in the +floor of the vehicle (e.g. those caused by the steering rack, etc.). The template must still fit +through the cross-section at the location of vertical deviation. +A video demonstrating the template procedure can be found on YouTube: +https://youtu.be/azz5kbmiQbw + +1T4.2.3 The only items that may be removed for this test are the steering wheel, and any padding +required by Rule T5.8 “Driver’s Leg Protection” that can be easily removed without the use + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +of tools with the driver in the seat. The seat and any seat insert that may be used by any team +member must remain in the cockpit. +1T4.2.4 Teams whose cars do not comply with T4.1 or T4.2 will not be given a Technical +Inspection Sticker and will not be allowed to compete in the dynamic events. + Note: Cables, wires, hoses, tubes, etc. must not impede the passage of the templates required by +T4.1 and T4.2. +1T4.3 Driver’s Seat +1T4.3.1 In side view the lowest point of the driver’s seat must be no lower than the top surface of the +lower frame rails or by having a longitudinal tube (or tubes) that meets the requirements for +Side Impact tubing, passing underneath the lowest point of the seat. +1T4.3.2 When seated in the normal driving position, adequate heat insulation must be provided to +ensure that the driver will not contact any metal or other materials which may become heated +to a surface temperature above sixty degrees C (60°C). The insulation may be external to the +cockpit or incorporated with the driver’s seat or firewall. The design must show evidence of +addressing all three (3) types of heat transfer, namely conduction, convection and radiation, +with the following between the heat source, e.g. an exhaust pipe or coolant hose/tube and the +panel that the driver could contact, e.g. the seat or floor: +(a) Conduction Isolation by: +(i) No direct contact between the heat source and the panel, or +(ii) a heat resistant, conduction isolation material with a minimum thickness of 8 mm +between the heat source and the panel. +(b) Convection Isolation by a minimum air gap of 25 mm between the heat source and the +panel. +(c) Radiation Isolation by: +(i) A solid metal heat shield with a minimum thickness of 0.4 mm or +(ii) reflective foil or tape when combined with T4.3.2(a)(ii) above. +1T4.4 Floor Close-out + All vehicles must have a floor closeout made of one or more panels, which separate the driver +from the pavement. If multiple panels are used, gaps between panels are not to exceed 3 mm. +The closeout must extend from the foot area to the firewall and prevent track debris from +entering the car. The panels must be made of a solid, non-brittle material. +1T4.5 Firewall +1T4.5.1 Firewall(s) must separate the driver compartment from the following components: +(a) Fuel Tanks. +(b) Accumulators. +(c) All components of the fuel supply. +(d) External engine oil systems including hoses, oil coolers, tanks, etc. +(e) Liquid cooling systems including those for I.C. engine and electrical components. +(f) Lithium-based GLV batteries. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(g) All tractive systems (TS) components +(h) All conductors carrying tractive system voltages (TSV) (Whether contained within conduit +or not.) +1T4.5.2 The firewall(s) must be a rigid, non-permeable surface made from 1.5 mm or thicker aluminum +or proven equivalent. See Appendix H – Firewall Equivalency Test. +1T4.5.3 The firewall(s) must seal completely against the passage of fluids and hot gasses, including at +the sides and the floor of the cockpit, e.g. there can be no holes in a firewall through which +seat belts pass. +1T4.5.4 Pass-throughs for GLV wiring, cables, etc. are allowable if grommets are used to seal the pass- +throughs. +Multiple panels may be used to form the firewall but must be mechanically fastened in place +and sealed at the joints. +1T4.5.5 For those components listed in T4.5.1 that are mounted behind the driver, the firewall(s) must +extend sufficiently far upwards and/or rearwards such that a straight line from any part of any +listed component to any part of the tallest driver that is more than 150 mm below the top of +his/her helmet, must pass through the firewall. +1T4.5.6 For those components listed in section T4.5.1 positioned under the driver, the firewall must +extend: +(a) Continuously rearwards the full width of the cockpit from the Front Bulkhead, under and +up behind the driver to a point where the helmet of the 95th percentile male template +(T3.9.4) touches the head restraint, and +(b) Alongside the driver, from the top of the Side Impact Structure down to the lower portion +of the firewall required by T4.5.6(a) and from the rearmost front suspension mounting +point to connect (without holes or gaps) behind the driver with the firewall required by +T4.5.6(a). +See Figure 16(a). +1T4.5.7 For those components listed in section T4.5.1 that are mounted outboard of the Side Impact +System (e.g. in side pods), the firewall(s) must extend from 100 mm forward to 100 mm +rearward of the of the listed components and +(a) alongside the driver at the full height of the listed component, and +(b) cover the top of the listed components and +(c) run either +(i) under the cockpit between the firewall(s) required by T4.5.7(a), or +(ii) extend 100 mm out under the listed components from the firewall(s) that are +required by T4.5.8 +See Figure 16(b&c). +1T4.5.8 For the components listed in section T4.5.1 that are mounted in ways that do not fall clearly +under any of sections T4.5.5, T4.5.6 or T4.5.7, the firewall must be configured to provide +equivalent protection to the driver, and the firewall configuration must be approved by the +Rules Committee. +1T4.5.9 Containers that meet the firewall requirements of T4.5.2, including accumulator containers, +may be accepted as part of the firewall system; redundant barriers are not required. Tractive + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +System wiring and conduit must not be exposed to the driver while seated in or during egress +from the vehicle. +Note: To ensure adequate time for consideration and possible re-designs, applications should +be submitted at least 1 month in advance of the event. + +Figure 16 – Examples +4 + of firewall configurations +1T4.6 Accessibility of Controls + All vehicle controls, including the shifter, must be operated from inside the cockpit without any +part of the driver, e.g. hands, arms or elbows, being outside the planes of the Side Impact +Structure defined in Rule T3.24 and T3.33. +1T4.7 Driver Visibility +1T4.7.1 The driver must have adequate visibility to the front and sides of the car. With the driver seated +in a normal driving position he/she must have a minimum field of vision of two hundred +degrees (200°) (a minimum one hundred degrees (100°) to either side of the driver). The +required visibility may be obtained by the driver turning his/her head and/or the use of +mirrors. + +4 + The firewalls shown in red in Figure 16 are examples only and are not meant to imply that a firewall must lie +outside the frame rails. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T4.7.2 If mirrors are required to meet Rule T4.7.1, they must remain in place and adjusted to enable +the required visibility throughout all dynamic events. +1T4.8 Driver Egress + All drivers must be able to exit to the side of the vehicle in no more than 5 seconds. Egress time +begins with the driver in the fully seated position, hands in driving position on the connected +steering wheel and wearing the required driver equipment. Egress time will stop when the +driver has both feet on the pavement. +1T4.9 Emergency Shut Down Test +1T4.9.1 With their vision obscured, all drivers must be able to operate the cockpit Big Red Button +(BRB) in less than one second. +Time begins with the driver in the fully seated position, hands in driving position on the +connected steering wheel, and wearing the required driver equipment. +ARTICLE T5 DRIVER’S EQUIPMENT (BELTS AND COCKPIT PADDING) +1T5.1 Belts - General +1T5.1.1 Definitions (Note: Belt dimensions listed are nominal widths.) +(a) 5-point system – consists of a lap belt, two (2) shoulder straps and a single anti-submarine +strap. +(b) 6-point system – consists of a lap belt, two (2) shoulder straps and two (2) leg or anti- +submarine straps. +(c) 7-point system – system is the same as the 6-point except it has three (3) anti-submarine +straps, two (2) from the 6-point system and one (1) from the 5-point system. +(d) Upright driving position - is defined as one with a seat back angled at thirty degrees +(30°) or less from the vertical as measured along the line joining the two 200 mm circles +of the template of the 95th percentile male as defined in Table 6 and positioned per +T3.9.4. +(e) Reclined driving position - is defined as one with a seat back angled at more than thirty +degrees (30°) from the vertical as measured along the line joining the two 200 mm circles +of the template of the 95th percentile male as defined in Table 6 and positioned per +T3.9.4. +(f) Chest-groin line - is the straight line that in side view follows the line of the shoulder +belts from the chest to the release buckle. +1T5.1.2 Harness Requirements +All drivers must use a 5, 6 or 7 point restraint harness meeting the following specifications: +(a) SFI Specification 16.1, SFI Specification 16.5, SFI Specification 16.6, or FIA +specification 8853/98 or FIA specification 8853-2016. +Note: FIA harnesses with 44 mm (“2 inch”) shoulder straps meeting T5.1.2 and T5.1.3 +are approved for use at FH+E +(b) To accommodate drivers of differing builds, all lap belts must incorporate a tilt lock +adjuster (“quick adjuster”). + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Lap belts with “pull-up” adjusters are recommended over “pull-down” adjusters +and a tilt lock adjuster in each portion of the lap belt is highly recommended. +(c) Cars with a “reclined driving position” (see T5.1.1(e) above) must have either a 6 point +or 7-point harness, AND have either anti-submarine belts with tilt lock adjusters (“quick +adjusters”) or have two (2) sets of anti-submarine belts installed. +(d) The shoulder harness must be the over-the-shoulder type. Only separate shoulder straps +are permitted (i.e. “Y”-type shoulder straps are not allowed). The “H”-type configuration +is allowed. +(e) The belts must bear the appropriate dated labels. +(f) The material of all straps must be in perfect condition. +1T5.1.3 Harness Replacement - Harnesses must be replaced following December 31 +st + of the year of the +expiration date shown on the label. (Note: SFI belts are normally certified for two (2) years +from the date of manufacture while FIA belts are normally certified for five (5) years from +the date of manufacture.) +1T5.1.4 The restraint system must be worn tightly at all times. +1T5.2 Belt, Strap and Harness Installation - General +1T5.2.1 The lap belt, shoulder harness and anti-submarine strap(s) must be securely mounted to the +Primary Structure. Such structure and any guide or support for the belts must meet the +minimum requirements of T3.3.1. +Note: Rule T3.4.5 applies to these tubes as well so a non-straight shoulder harness bar would +require support per T3.4.5 +1T5.2.2 The tab or bracket to which any harness is attached must fulfill the following requirements: +(a) Have a minimum cross sectional area of 60 sq. mm (0.093 sq. in) of steel to be sheared or +failed in tension at any point of the tab, and +(b) Have a minimum thickness of 1.6 mm (0.063 inch). +(c) Where lap belts and anti-submarine belts use the same attachment point, there must be a +minimum cross sectional area of 90 sq. mm (0.140 sq. in) of steel to be sheared or failed +in tension at any point of the tab. +(d) Where brackets are fastened to the chassis, two 6mm Metric Grade 8.8 (1/4 inch SAE +Grade 5) fasteners or stronger must be used to attach the bracket to the chassis. +(e) Where a single shear tab is welded to the chassis, the tab to tube welding must be on both +sides of the base of the tab. +(f) The bracket or tab should be aligned such that it is not put in bending when that portion +of the harness is put under load. +NOTE: Double shear attachments are preferred. Where possible, the tabs and brackets for +double shear mounts should also be welded on both sides. +1T5.2.3 Harnesses, belts and straps must not pass through a firewall, i.e. all harness attachment points +must be on the driver’s side of any firewall. +1T5.2.4 The attachment of the Driver’s Restraint System to a monocoque structure requires an approved +Structural Equivalency Spreadsheet per Rule T3.8. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T5.2.5 All adjusters must be threaded in accordance with manufacturer’s instructions. Examples are +given in Figure 17. + + +Figure 17 - Seat Belt Threading Examples +1T5.2.6 The restraint system installation is subject to approval of the Chief Technical Inspector. +1T5.3 Lap Belt Mounting +1T5.3.1 The lap belt must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip +bones). +1T5.3.2 The lap belts must not be routed over the sides of the seat. The lap belts must come through the +seat at the bottom of the sides of the seat to maximize the wrap of the pelvic surface and +continue in a straight line to the anchorage point. +1T5.3.3 Where the belts or harness pass through a hole in the seat, the seat must be rolled or grommeted +to prevent chafing of the belts. +1T5.3.4 To fit drivers of differing statures correctly, in side view, the lap belt must be capable of +pivoting freely by using either a shouldered bolt or an eye bolt attachment, i.e. mounting lap +belts by wrapping them around frame tubes is no longer acceptable. +1T5.3.5 With an “upright driving position”, in side view the lap belt must be at an angle of between +forty-five degrees (45°) and sixty-five degrees (65°) to the horizontal. This means that the +centerline of the lap belt at the seat bottom should be between 0 – 76 mm forward of the seat +back to seat bottom junction. (See Figure 18) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + + +Figure 18 – Lap Belt Angles with Upright Driver +1T5.3.6 With a “reclined driving position”, in side view the lap belt must be between an angle of sixty +degrees (60°) and eighty degrees (80°) to the horizontal. +1T5.3.7 Any bolt used to attach a lap belt, either directly to the chassis or to an intermediate bracket, +must be a minimum of either: +(a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR +(b) The bolt diameter specified by the harness manufacturer. +1T5.4 Shoulder Harness +1T5.4.1 The shoulder harness must be mounted behind the driver to structure that meets the +requirements of T3.3.1. However, it cannot be mounted to the Main Roll Hoop Bracing or +attendant structure without additional bracing to prevent loads being transferred into the Main +Hoop Bracing. +1T5.4.2 If the harness is mounted to a tube that is not straight, the joints between this tube and the +structure to which it is mounted must be reinforced in side view by gussets or triangulation +tubes to prevent torsional rotation of the harness mounting tube. +1T5.4.3 The shoulder harness mounting points must be between 178 mm and 229 mm apart. (See +Figure 19) + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 19 – Shoulder Harness Mounting – Top View +1T5.4.4 From the driver’s shoulders rearwards to the mounting point or structural guide, the shoulder +harness must be between ten degrees (10°) above the horizontal and twenty degrees (20°) +below the horizontal. (See Figure 20). + + +Figure 20 - Shoulder Harness Mounting – Side View +1T5.4.5 Any bolt used to attach a shoulder harness belt, either directly to the chassis or to an +intermediate bracket, must be must be a minimum of either: +(a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR +(b) The bolt diameter specified by the harness manufacturer. +1T5.5 Anti-Submarine Belt Mounting +1T5.5.1 The anti-submarine belt of a 5-point harness must be mounted so that the mounting point is in +line with, or angled slightly forward (up to twenty degrees (20°)) of, the driver’s chest-groin +line. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + + +1T5.5.2 The anti-submarine belts of a 6 point harness must be mounted either: +(a) With the belts going vertically down from the groin, or angled up to twenty degrees (20°) +rearwards. The anchorage points should be approximately 100 mm apart. Or + + + +(b) With the anchorage points on the Primary Structure at or near the lap belt anchorages, the +driver sitting on the anti-submarine belts, and the belts coming up around the groin to the +release buckle. + + + +1T5.5.3 All anti-submarine belts must be installed so that they go in a straight line from the anchorage +point(s) to: +● Either the harness release buckle for the 5-point mounting per T5.5.1, + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +● Or the first point where the belts touch the driver’s body for the 6-point mounting per +T5.5.2(a) or T5.5.2(b). +without touching any hole in the seat or any other intermediate structure. +1T5.5.4 Any bolt used to attach an anti-submarine belt, either directly to the chassis or to an +intermediate bracket, must be a must be a minimum of either: +(a) 8mm Metric Grade 8.8 (5/16 inch SAE Grade 5) OR +(b) The bolt diameter specified by the belt manufacturer. +1T5.6 Head Restraint +1T5.6.1 A head restraint must be provided on the car to limit the rearward motion of the driver’s head. +1T5.6.2 The restraint must: +(a) Be vertical or near vertical in side view. +(b) Be padded with a minimum thickness of 38 mm (1.5 inches) of an energy absorbing +material that meets either SFI Standard 45.2, or is listed on the FIA Technical List No. +17 as a “Type A or a Type B Material for single seater cars”, i.e. CONFOR™ foam CF- +42AC (pink) or CF-42M (pink) or CF45 (blue) or CF45M (blue) . +(c) Have a minimum width of 15 cm (6 inches). +(d) Have a minimum area of 235 sq. cms (36 sq. inches) AND have a minimum height +adjustment of 17.5 cm (7 inches), OR have a minimum height of 28 cm (11 inches). +(e) Be covered in a thin, flexible cover with a hole with a minimum dimeter of 20 mm in a +surface other than the front surface, through which the energy absorbing material can be +seen. +(f) Be located so that for each driver: +(i) The restraint is no more than 25 mm (1 inch) away from the back of the driver’s +helmet, with the driver in their normal driving position. +(ii) The contact point of the back of the driver’s helmet on the head restraint is no less +than 50 mm (2 inches) from any edge of the head restraint. +Note 1: Head restraints may be changed to accommodate different drivers (See T1.2.2(d)). +Note 2: The above requirements must be met for all drivers. +Note 3: Approximately 100 mm (4 inches) longitudinal adjustment is required to accommodate +5th to 95th Percentile drivers. This is not a specific rules requirement, but teams must have +sufficient longitudinal adjustment and/or alternative thickness head restraints available, such +that the above requirements are met by all their drivers. +1T5.6.3 The restraint, its attachment and mounting must be strong enough to withstand a force of 890 +Newtons applied in a rearward direction. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T5.7 Roll Bar Padding + Any portion of the roll bar, roll bar bracing or frame which might be contacted by the driver’s +helmet must be covered with a minimum thickness of 12 mm (0.5 inches) of padding which +meets SFI spec 45.1 or FIA 8857-2001. +1T5.8 Driver’s Leg Protection +1T5.8.1 To keep the driver’s legs away from moving or sharp components, all moving suspension and +steering components, and other sharp edges inside the cockpit between the front roll hoop and +a vertical plane 100 mm rearward of the pedals, must be shielded with a shield made of a +solid material. Moving components include, but are not limited to springs, shock absorbers, +rocker arms, anti-roll/sway bars, steering racks and steering column CV joints. +1T5.8.2 Covers over suspension and steering components must be removable to allow inspection of the +mounting points. +ARTICLE T6 GENERAL CHASSIS RULES +1T6.1 Suspension +1T6.1.1 The car must be equipped with a fully operational suspension system with shock absorbers, +front and rear, with usable wheel travel of at least 50.8 mm, 25.4 mm jounce and 25.4 mm +rebound, with driver seated. The judges reserve the right to disqualify cars which do not +represent a serious attempt at an operational suspension system or which demonstrate +handling inappropriate for an autocross circuit. +1T6.1.2 All suspension mounting points must be visible at Technical Inspection, either by direct view or +by removing any covers. +1T6.2 Ground Clearance +The ground clearance must be sufficient to prevent any portion of the car (other than tires) from +touching the ground during track events, and with the driver aboard there must be a minimum +of 25.4 mm of static ground clearance under the complete car at all times. +1T6.3 Wheels +1T6.3.1 The wheels of the car must be 8 inches (203.2 mm) or more in diameter. +1T6.3.2 Any wheel mounting system that uses a single retaining nut must incorporate a device to retain +the nut and the wheel in the event that the nut loosens. A second nut (“jam nut”) does not +meet these requirements. +1T6.3.3 Standard wheel lug bolts are considered engineering fasteners and any modification will be +subject to extra scrutiny during technical inspection. Teams using modified lug bolts or +custom designs will be required to provide proof that good engineering practices have been +followed in their design. +1T6.3.4 Aluminum wheel nuts may be used, but they must be hard anodized and in pristine condition. +1T6.4 Tires +1T6.4.1 Vehicles may have two types of tires as follows: +(a) Dry Tires – The tires on the vehicle when it is presented for technical inspection are +defined as its “Dry Tires”. The dry tires may be any size or type. They may be slicks or +treaded. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(b) Rain Tires – Rain tires may be any size or type of treaded or grooved tire provided: +(i) The tread pattern or grooves were molded in by the tire manufacturer, or were cut by +the tire manufacturer or his appointed agent. Any grooves that have been cut must +have documentary proof that it was done in accordance with these rules. +(ii) There is a minimum tread depth of 2.4 mm. +Note: Hand cutting, grooving or modification of the tires by the teams is specifically +prohibited. +1T6.4.2 Within each tire set, the tire compound or size, or wheel type or size may not be changed after +static judging has begun. Tire warmers are not allowed. No traction enhancers may be applied +to the tires after the static judging has begun. +1T6.5 Steering +1T6.5.1 The steering wheel must be mechanically connected to the wheels, i.e. “steer-by-wire” or +electrically actuated steering is prohibited. +1T6.5.2 The steering system must have positive steering stops that prevent the steering linkages from +locking up (the inversion of a four-bar linkage at one of the pivots). The stops may be placed +on the uprights or on the rack and must prevent the tires from contacting suspension, body, or +frame members during the track events. +1T6.5.3 Allowable steering system free play is limited to seven degrees (7°) total measured at the +steering wheel. +1T6.5.4 The steering wheel must be attached to the column with a quick disconnect. The driver must be +able to operate the quick disconnect while in the normal driving position with gloves on. +1T6.5.5 Rear wheel steering, which can be electrically actuated, is permitted but only if mechanical +stops limit the range of angular movement of the rear wheels to a maximum of six degrees +(6°). This must be demonstrated with a driver in the car and the team must provide the facility +for the steering angle range to be verified at Technical Inspection. +1T6.5.6 The steering wheel must have a continuous perimeter that is near circular or near oval, i.e. the +outer perimeter profile can have some straight sections, but no concave sections. “H”, “Figure +8”, or cutout wheels are not allowed. +1T6.5.7 In any angular position, the top of the steering wheel must be no higher than the top-most +surface of the Front Hoop. See Figure 7. +1T6.5.8 Steering systems using cables for actuation are not prohibited by T6.5.1 but additional +documentation must be submitted. The team must submit a failure modes and effects +analysis report with design details of the proposed system as part of the structural +equivalency spreadsheet (SES). +The report must outline the analysis that was done to show the steering system will function +properly, potential failure modes and the effects of each failure mode and finally failure +mitigation strategies used by the team. The organizing committee will review the submission +and advise the team if the design is approved. If not approved, a non-cable based steering +system must be used instead. +1T6.5.9 The steering rack must be mechanically attached to the frame. If fasteners are used they must +be compliant with ARTICLE T11. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T6.5.10 Joints between all components attaching the steering wheel to the steering rack must be +mechanical and be visible at Technical Inspection. Bonded joints without a mechanical +backup are not permitted. +1T6.6 Jacking Point +1T6.6.1 A jacking point, which is capable of supporting the car’s weight and of engaging the +organizers’ “quick jacks”, must be provided at the rear of the car. +1T6.6.2 The jacking point is required to be: +(a) Visible to a person standing 1 meter behind the car. +(b) Painted orange. +(c) Oriented horizontally and perpendicular to the centerline of the car +(d) Made from round, 25–29 mm O.D. aluminum or steel tube +(e) A minimum of 300 mm long +(f) Exposed around the lower 180 degrees (180°) of its circumference over a minimum length +of 280 mm +(g) The height of the tube is required to be such that: +(i) There is a minimum of 75 mm clearance from the bottom of the tube to the ground +measured at tech inspection. +(ii) With the bottom of the tube 200 mm above ground, the wheels do not touch the +ground when they are in full rebound. + Comment on Disabled Cars – The organizers and the Rules Committee remind teams that cars +disabled on course must be removed as quickly as possible. A variety of tools may be used to +move disabled cars including quick jacks, dollies of different types, tow ropes and occasionally +even boards. We expect cars to be strong enough to be easily moved without damage. Speed is +important in clearing the course and although the course crew exercises due care, parts of a +vehicle can be damaged during removal. The organizers are not responsible for damage that +occurs when moving disabled vehicles. Removal/recovery workers will jack, lift, carry or tow +the car at whatever points they find easiest to access. Accordingly, we advise teams to consider +the strength and location of all obvious jacking, lifting and towing points during the design +process. +1T6.7 Rollover Stability +1T6.7.1 The track and center of gravity of the car must combine to provide adequate rollover stability. +1T6.7.2 Rollover stability will be evaluated on a tilt table using a pass/fail test. The vehicle must not roll +when tilted at an angle of sixty degrees (60°) to the horizontal in either direction, +corresponding to 1.7 G’s. The tilt test will be conducted with the tallest driver in the normal +driving position. +ARTICLE T7 BRAKE SYSTEM +1T7.1 Brake System - General +1T7.1.1 The car must be equipped with a braking system that acts on all four wheels and is operated by +a single control. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T7.1.2 It must have two (2) independent hydraulic circuits such that in the case of a leak or failure at +any point in the system, effective braking power is maintained on at least two (2) wheels. +Each hydraulic circuit must have its own fluid reserve, either by the use of separate reservoirs +or by the use of a dammed, OEM-style reservoir. +1T7.1.3 A single brake acting on a limited-slip differential is acceptable. +1T7.1.4 The brake system must be capable of locking all four (4) wheels during the test specified in +section T7.2. +1T7.1.5 “Brake-by-wire” systems are prohibited. +1T7.1.6 Unarmored plastic brake lines are prohibited. +1T7.1.7 The braking systems must be protected with scatter shields from failure of the drive train (see +T8.4) or from minor collisions. +1T7.1.8 In side view no portion of the brake system that is mounted on the sprung part of the car can +project below the lower surface of the frame or the monocoque, whichever is applicable. +1T7.1.9 The brake pedal must be designed to withstand a force of 2000 N without any failure of the +brake system or pedal box. This may be tested by pressing the pedal with the maximum +force that can be exerted by any official when seated normally. +1T7.1.10 The brake pedal must be fabricated from steel or aluminum or machined from steel, +aluminum or titanium. +1T7.1.11 The first 50% of the brake pedal travel may be used to control regeneration without +necessarily actuating the hydraulic brake system. + The remaining brake pedal travel must directly actuate the hydraulic brake system, but brake +energy regeneration may remain active. + + Note: Any strategy to regenerate energy while coasting or braking must be covered by the ESF. +1T7.2 Brake Test +1T7.2.1 The brake system will be dynamically tested and must demonstrate the capability +of locking all four (4) wheels and stopping the vehicle in a straight line at the end of an +acceleration run specified by the brake inspectors +5 +. +1T7.2.2 After accelerating, the tractive system must be switched off by the driver and the driver has to +lock all four wheels of the vehicle by braking. The brake test is passed if all four wheels +simultaneously lock while the tractive system is shut down. +Note: It is acceptable if the Tractive System Active Light switches off shortly after the vehicle +has come to a complete stop as the reduction of the system voltage may take up to 5 seconds. +1T7.3 Brake Over-Travel Switch +1T7.3.1 A brake pedal over-travel switch must be installed on the car as part of the shutdown system +and wired in series with the shutdown buttons (EV7.1). This switch must be installed so that +in the event of brake system failure such that the brake pedal over travels it will result in the +shutdown system being activated. + +5 + It is a persistent source of mystery to the organizers, how a small percentage of teams, after passing all the required +inspections, appear to have never checked to see if they can lock all four wheels. Check this early! + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T7.3.2 Repeated actuation of the switch must not restore power to these components, and it must be +designed so that the driver cannot reset it. +1T7.3.3 The brake over-travel switch must not be used as a mechanical stop for the brake pedal and +must be installed in such a way that it and its mounting will remain intact and operational +when actuated. +1T7.3.4 The switch must be implemented directly. i.e. It may not operate through programmable logic +controllers, engine control units, or digital controllers +1T7.3.5 The Brake Over-Travel switch must be a mechanical single pole, single throw (commonly +known as a two-position) switch (push-pull or flip type) as shown below. + + +Figure 21 – Over-travel Switches +1T7.4 Brake Light +1T7.4.1 The car must be equipped with a red brake light. +1T7.4.2 The brake light itself must have a black background and a rectangular, triangular or near round +shape with a minimum shining surface of at least 15 cm +2 +. +1T7.4.3 The brake light must be clearly visible from the rear in bright sunlight. +1T7.4.4 When LED lights are used without an optical diffuser, they may not be more than 20 mm apart. +If a single line of LEDs is used, the minimum length is 150 mm. +1T7.4.5 The light must be mounted between the wheel centerline and driver’s shoulder level vertically +and approximately on vehicle centerline laterally. +ARTICLE T8 POWERTRAIN +1T8.1 Coolant Fluid Limitations +1T8.1.1 Water-cooled engines must use only plain water. Glycol-based antifreeze, “water wetter”, water +pump lubricants of any kind, or any other additives are strictly prohibited. +1T8.1.2 Electric motors, accumulators or electronics must use plain water or approved +6 + fluids as the +coolant. + +6 + “Opticool” (http://dsiventures.com/electronics-cooling/opticool-a-fluid/) is permitted. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T8.2 System Sealing +1T8.2.1 Any cooling or lubrication system must be sealed to prevent leakage. +1T8.2.2 Any vent on a cooling or lubrication system must employ a catch-can to retain any fluid that is +expelled. A separate catch-can is required for each vent. +1T8.2.3 Each catch-can on a cooling or lubrication system must have a minimum volume of ten (10) +percent of the fluid being contained, or 0.9 liter whichever is greater. +1T8.2.4 Any vent on other systems containing liquid lubricant, e.g. a differential or gearbox, etc., must +have a catch-can with a minimum volume of ten (10) percent of the fluid being contained or +0.5 liter, whichever is greater. +1T8.2.5 Catch-cans must be capable of containing liquids at temperatures in excess of 100 deg. C +without deformation, be shielded by a firewall, be below the driver’s shoulder level, and be +positively retained, i.e. no tie-wraps or tape as the primary method of retention. +1T8.2.6 Any catch-can for a cooling system must vent through a hose with a minimum internal diameter +of 3 mm down to the bottom levels of the Frame. +1T8.3 Transmission and Drive + Any transmission may be used. +1T8.4 Drive Train Shields and Guards +1T8.4.1 Exposed high-speed final drivetrain equipment such as Continuously Variable Transmissions +(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives and clutch drives, +must be fitted with scatter shields in case of failure. The final drivetrain shield must cover the +chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley. The +final drivetrain shield must start and end parallel to the lowest point of the chain +wheel/belt/pulley. (See Figure 22) Body panels or other existing covers are not acceptable +unless constructed from approved materials per T8.4.3 or T8.4.4. + +Note: If equipped, the engine drive sprocket cover may be used as part of the scatter shield +system. + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 22 - Final Drive Scatter Shield Example + Comment: Scatter shields are intended to contain drivetrain parts which might separate from +the car. + +1T8.4.2 Perforated material may not be used for the construction of scatter shields. +1T8.4.3 Chain Drive - Scatter shields for chains must be made of at least 2.6 mm steel or stainless steel +(no alternatives are allowed), and have a minimum width equal to three (3) times the width of +the chain. The guard must be centered on the center line of the chain and remain aligned with +the chain under all conditions. +1T8.4.4 Non-metallic Belt Drive - Scatter shields for belts must be made from at least 3.0 mm +Aluminum Alloy 6061-T6, and have a minimum width that is equal to 1.7 times the width of +the belt. +1T8.4.5 The guard must be centered on the center line of the belt and remain aligned with the belt under +all conditions. +1T8.4.6 Attachment Fasteners - All fasteners attaching scatter shields and guards must be a minimum +6mm Metric Grade 8.8 or 1/4 inch SAE Grade 5 or stronger. +1T8.4.7 Finger Guards – Finger guards are required to cover any drivetrain parts that spin while the +car is stationary with the engine running. Finger guards may be made of lighter material, +sufficient to resist finger forces. Mesh or perforated material may be used but must prevent +the passage of a 12 mm diameter object through the guard. + Comment: Finger guards are intended to prevent finger intrusion into rotating equipment while +the vehicle is at rest. +1T8.5 Integrity of systems carrying fluids – Tilt Test +1T8.5.1 During technical inspection, the car must be capable of being tilted to a forty-five degree (45°) +angle without leaking fluid of any type. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T8.5.2 The tilt test will be conducted on hybrid cars with the fuel tank filled with either 3.7 litres of +fuel or to 50 mm below the top of the filler neck (whichever is less), and on all cars with all +other vehicle systems that contain fluids filled to their normal maximum capacity. +ARTICLE T9 AERODYNAMIC DEVICES +1T9.1 Aero Dynamics and Ground Effects - General + All aerodynamic devices must satisfy the following requirements: +1T9.2 Location +In plan view, no part of any aerodynamic device, wing, under tray or splitter can be: +(a) Further forward than 460 mm forward of the fronts of the front tires +(b) No further rearward than the rear of the rear tires. +(c) No wider than the outside of the front tires or rear tires measured at the height of the hubs, +whichever is wider. +1T9.3 Wing Edges - Minimum Radii +All wing leading edges must have a minimum radius 12.7 mm. Wing leading edges must be as +blunt or blunter than the required radii for an arc of plus or minus 45 degrees (± 45°) centered +on a plane parallel to the ground or similar reference plane for all incidence angles which lie +within the range of adjustment of the wing or wing element. If leading edge slats or slots are +used, both the fronts of the slats or slots and of the main body of the wings must meet the +minimum radius rules. +1T9.4 Other Edge Radii Limitations +All wing edges, end plates, Gurney flaps, wicker bills, splitters undertrays and any other wing +accessories must have minimum edge radii of at least 3 mm i.e., this means at least a 6 mm +thick edge. +1T9.5 Ground Effect Devices +No power device may be used to move or remove air from under the vehicle except fans +designed exclusively for cooling. Power ground effects are prohibited. +1T9.6 Driver Egress Requirements +1T9.6.1 Egress from the vehicle within the time set in Rule T4.8 “Driver Egress,” must not require any +movement of the wing or wings or their mountings. +1T9.6.2 The wing or wings must be mounted in such positions, and sturdily enough, that any accident is +unlikely to deform the wings or their mountings in such a way to block the driver’s egress. +ARTICLE T10 COMPRESSED GAS SYSTEMS AND HIGH PRESSURE HYDRAULICS +1T10.1 Compressed Gas Cylinders and Lines + Any system on the vehicle that uses a compressed gas as an actuating medium must comply +with the following requirements: +(a) Working Gas -The working gas must be nonflammable, e.g. air, nitrogen, carbon dioxide. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(b) Cylinder Certification - The gas cylinder/tank must be of proprietary manufacture, +designed and built for the pressure being used, certified by an accredited testing laboratory +in the country of its origin, and labeled or stamped appropriately. +(c) Pressure Regulation -The pressure regulator must be mounted directly onto the gas +cylinder/tank. +(d) Protection – The gas cylinder/tank and lines must be protected from rollover, collision +from any direction, or damage resulting from the failure of rotating equipment. +(e) Cylinder Location - The gas cylinder/tank and the pressure regulator must be located +either rearward of the Main Roll Hoop and within the envelope defined by the Main Roll +Hoop and the Frame (See T3.2), or in a structural side-pod. In either case it must be +protected by structure that meets the requirements of T3.24 or T3.33. It must not be +located in the cockpit. +(f) Cylinder Mounting - The gas cylinder/tank must be securely mounted to the Frame, engine +or transmission. +(g) Cylinder Axis - The axis of the gas cylinder/tank must not point at the driver. +(h) Insulation - The gas cylinder/tank must be insulated from any heat sources, e.g. the +exhaust system. +(i) Lines and Fittings - The gas lines and fittings must be appropriate for the maximum +possible operating pressure of the system. +1T10.2 High Pressure Hydraulic Pumps and Lines +The driver and anyone standing outside the car must be shielded from any hydraulic pumps and +lines with line pressures of 300 psi (2100 kPa) or higher. The shields must be steel or +aluminum with a minimum thickness of 1 mm. + Note: Brake and hydraulic clutch lines are not classified as “hydraulic pump lines” and as such, +are excluded from T10.2. +ARTICLE T11 FASTENERS +1T11.1 Fastener Grade Requirements +1T11.1.1 All threaded fasteners utilized in the driver’s cell structure, plus the steering, braking, driver’s +harness and suspension systems must meet or exceed, SAE Grade 5, Metric Grade 8.8 and/or +AN/MS specifications. +1T11.1.2 The use of button head cap, pan head, flat head, round head or countersunk +screws or bolts in ANY location in the following systems is prohibited: +(a) Driver’s cell structure, +(b) Impact attenuator attachment +(c) Driver’s harness attachment +(d) Steering system +(e) Brake system +(f) Suspension system. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Hexagonal recessed drive screws or bolts (sometimes called Socket head cap screws or +Allen screws/bolts) are permitted. +1T11.2 Securing Fasteners +1T11.2.1 All critical bolt, nuts, and other fasteners on the steering, braking, driver’s +harness, and suspension must be secured from unintentional loosening by the use of positive +locking mechanisms. +Positive locking mechanisms are defined as those that: +(a) The Technical Inspectors (and the team members) are able to see that the device/system is +in place, i.e. it is visible, AND +(b) The “positive locking mechanism” does not rely on the clamping force to apply the +“locking” or anti-vibration feature. In other words, if it loosens a bit, it still prevents the +nut or bolt from coming completely loose. + See Figure 23 +Positive locking mechanisms include: +(a) Correctly installed safety wiring +(b) Cotter pins +(c) Nylon lock nuts (where the temperature does not exceed 80 +O +C) +(d) Prevailing torque lock nuts +Note: Lock washers, bolts with nylon patches, and thread locking compounds, e.g. Loctite®, +DO NOT meet the positive locking requirement. + +Figure 23 - Examples of positive locking nuts +1T1.1.2 There must be a minimum of two (2) full threads projecting from any lock nut. +1T1.1.3 All spherical rod ends and spherical bearings on the steering or suspension must be in double +shear or captured by having a screw/bolt head or washer with an O.D. that is larger than +spherical bearing housing I.D. +1T1.1.4 Adjustable tie-rod ends must be constrained with a jam nut to prevent loosening. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE T2 TRANSPONDERS +1T2.1 Transponders +1T2.1.1 Transponders will be used as part of the timing system for the Formula Hybrid + Electric +competition. +1T2.1.2 Each team is responsible for having a functional, properly mounted transponder of the specified +type on their vehicle. Vehicles without a specified transponder will not be allowed to +compete in any event for which a transponder is used for timing and scoring. +1T2.1.3 All vehicles must be equipped with at least one MYLAPS Car/Bike Rechargeable Power +Transponder or MYLAPS Car/Bike Direct Power Transponder +7 +. + Note 1: Except for their name, AMB TranX260 transponders are identical to MYLAPS +Car/Bike Transponders and comply with this rule. If you own a functional AMB TranX260 it +does not need to be replaced. + + Note 2: It is the responsibility of the team to ensure that electrical interference from their +vehicle does not stop the transponder from functioning correctly + + +1T2.2 Transponder Mounting – All Events + The transponder mounting requirements are: + +(a) Orientation – The transponder must be mounted vertically and orientated so the number +can be read “right-side up”. +(b) Location – The transponder must be mounted on the driver’s right side of the car forward +of the front roll hoop. The transponder must be no more than 60 cm above the track. +(c) Obstructions – There must be an open, unobstructed line between the antenna on the +bottom of the transponder and the ground. Metal and carbon fiber may interrupt the +transponder signal. The signal will normally transmit through fiberglass and plastic. If the +signal will be obstructed by metal or carbon fiber, a 10.2 cm diameter opening can be cut, +the transponder mounted flush with the opening, and the opening covered with a material +transparent to the signal. +(d) Protection – Mount the transponder where it will be protected from obstacles. + +7 + Transponders are usually available for loan at the competition. Please ask the organizers well in advance to +confirm availability. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE T3 VEHICLE IDENTIFICATION +1T3.1 Car Number +1T3.1.1 Each car will be assigned a number at the time of its entry into a competition. +1T3.1.2 Car numbers must appear on the vehicle as follows: +(a) Locations: In three (3) locations: the front and both sides; +(b) Height: At least 15.24 cm high; +(c) Font: Block numbers (i.e. sans-serif characters). Italic, outline, serif, shadow, or cursive +numbers are prohibited. +(d) Stroke Width and Spacing between Numbers: At least 2.0 cm. +(e) Color: Either white numbers on a black background or black numbers on a white +background. No other color combinations will be approved. +(f) Background shape: The number background must be one of the following: round, oval, +square or rectangular. There must be at least 2.5 cm between the edge of the numbers and +the edge of the background. +(g) Clear: The numbers must not be obscured by parts of the car, e.g. wheels, side pods, +exhaust system, etc. +1T3.1.3 While car numbers for teams registered for Formula Hybrid + Electric can be found on the +“Registered Teams” section of the SAE Collegiate Design Series website, please be sure to +check with Formula Hybrid +Electric officials to ensure these numbers are correct. +Comment: Car numbers must be quickly read by course marshals when your car is moving at +speed. Make your numbers easy to see and easy to read. + + +Figure 24 - Example Car Number +1T3.2 School Name +1T3.2.1 Each car must clearly display the school name (or initials – if unique and generally recognized) +in roman characters at least 5 cm high on both sides of the vehicle. The characters must be +placed on a high contrast background in an easily visible location. +1T3.2.2 The school name may also appear in non-roman characters, but the roman character version +must be uppermost on the sides. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.3 SAE & IEEE Logos +1T3.3.1 SAE and IEEE logos must be prominently displayed on the front and/or both sides of the +vehicle. Each logo must be at least 7 cm x 20 cm. The organizers will provide the following +decals at the competition: +(a) SAE, 7.6 cm x 20.3 cm in either White or Black. +(b) IEEE, 11.4 cm x 30.5 cm (Blue only). +Actual-size JPEGs may be downloaded from the Formula Hybrid + Electric website. +1T3.4 Technical Inspection Sticker Space +Technical inspection stickers will be placed on the upper nose of the vehicle. Cars must have a +clear and unobstructed area at least 25.4 cm wide x 20.3cm high on the upper front surface of +the nose along the vehicle centerline. +ARTICLE T4 EQUIPMENT REQUIREMENTS +1T4.1 Driver’s Equipment + The equipment specified below must be worn by the driver anytime he or she is in the cockpit +with the engine running or with the tractive system energized. +1T4.2 Helmet +1T4.2.1 A well-fitting, closed face helmet that meets one of the following certifications and is labeled as +such: +(a) Snell K2010, K2015, K2020, M2010, M2015, M2020, SA2010, SAH2010, SA2015, +SA2020, EA2016 +(b) SFI 31.1/2020, SFI 41.1/2020 +(c) FIA 8859-2015, FIA 8860-2004, FIA 8860-2010, FIA 8860-2016, FIA 8860-2018. Open +faced helmets and off-road/motocross helmets (helmets without integrated face shields) are not +approved. +1T4.2.2 All helmets to be used in the competition must be presented during Technical Inspection where +approved helmets will be stickered. The organizer reserves the right to impound all non- +approved helmets until the end of the competition. +1T4.3 Balaclava +A balaclava which covers the driver’s head, hair and neck, made from acceptable fire resistant +material as defined in T14.12, or a full helmet skirt of acceptable fire resistant material. The +balaclava requirement applies to drivers of either gender, with any hair length. +1T4.4 Eye Protection +An impact resistant face shield, made from approved impact resistant materials. The face +shields supplied with approved helmets (See T14.2 above) meet this requirement. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T4.5 Suit + A fire-resistant suit that covers the body from the neck down to the ankles and the wrists. One +(1) piece suits are required. The suit must be in good condition, i.e. it must have no tears or +open seams, or oil stains that could compromise its fire-resistant capability. + The suit must be certified to one of the following standards and be labeled as such: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Table 7 – SFI / FIA Standards Logos +Note: An SFI 3-2A/1 or 3.4/1 (single layer) suit is ONLY allowed WITH fire resistant underwear. + + +-FIA 8856-2018 + +-SFI 3.4/5 + +-FIA Standard 8856-1986 + + +-SFI 3-2A/1 but only when used with +fire resistant, e.g. Nomex, underwear +that covers the body from wrist to ankles. +-SFI 3-2A/5 (or higher) + +- FIA Standard 8856-2000 + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + + +1T4.6 Underclothing +All drivers should wear fire resistant underwear (long pants and long sleeve top) under their +approved driving suit. This fire resistant underwear must be made from acceptable fire resistant +material and cover the driver’s body completely from the neck down to the ankles and wrists. +Note: If drivers do not wear fire resistant long underwear, they should wear cotton underwear +under the approved driving suit. Tee-shirts, or other undergarments made from Nylon or any +other synthetic materials may melt when exposed to high heat. +1T4.7 Socks +Socks made from an accepted fire resistant material, e.g. Nomex, which cover the bare skin +between the driver’s suit and the boots or shoes. Socks made from wool or cotton are +acceptable. Socks of nylon or polyester are not acceptable. +1T4.8 Shoes +Shoes of durable fire resistant material and which are in good condition (no holes worn in the +soles or uppers). +1T4.9 Gloves +Fire resistant gloves made from made from acceptable fire resistant material as defined in +T14.12.Gloves of all leather construction or fire resistant gloves constructed using +leather palms with no insulating fire resisting material underneath are not acceptable. +1T4.10 Arm Restraints +Arm restraints certified and labeled to SF1 standard 3.3, or a commercially manufactured +equivalent, must be worn such that the driver can release them and exit the vehicle unassisted +regardless of the vehicle’s position. +1T4.11 Driver’s Equipment Condition + All driving apparel covered by ARTICLE T14 must be in good condition. Specifically, +driving apparel must not have any tears, rips, open seams, areas of significant wear or abrasion +or stains which might compromise fire resistant performance. +1T4.12 Fire Resistant Material + For the purpose of this section some, but not all, of the approved fire resistant materials are: +Carbon X, Indura, Nomex, Polybenzimidazole (commonly known as PBI) and Proban. +1T4.13 Synthetic Material – Prohibited + T-shirts, socks or other undergarments (not to be confused with FR underwear) made from +nylon or any other synthetic material which will melt when exposed to high heat are prohibited. +ARTICLE T5 OTHER REQUIRED EQUIPMENT +1T5.1 Fire Extinguishers +1T5.1.1 Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire +extinguishers. +1T5.1.2 Extinguishers of larger capacity (higher numerical ratings) are acceptable. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T5.1.3 All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that +shows “FULL”. +1T5.2 Special Requirements +Teams must identify any fire hazards specific to their vehicle’s components and if fire +extinguisher/fire extinguisher material other than those required in section T15.1 are needed to +suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb or +equivalent) of the required type must be procured and accompany the car at all times. +As recommendations vary, teams are advised to consult the rules committee before purchasing +expensive extinguishers that may not be necessary. +1T5.3 Chemical Spill Absorbent +Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This +material must be presented at technical inspection. +1T5.4 Insulated Gloves +Insulated gloves are required, rated for at least the voltage in the TSV system, with protective +over-gloves. +1T5.4.1 Electrical gloves require testing by a qualified company and must have a test date printed on +them that is within 14 months of the competition. +1T5.5 Safety Glasses +Safety glasses must be worn as specified in section D10.7 +1T5.6 MSDS Sheets +Materials Safety Data Sheets (MSDS) for the accumulator devices are required and must be +included in the ESF. +1T5.7 Additional +Any special safety equipment called for in the MSDS, for example correct gloves +recommended for handling any electrolyte material in the accumulator. +ARTICLE T6 ON-BOARD CAMERAS +1T6.1 Mounts +The mounts for video/photographic cameras must be of a safe and secure design. +1T6.1.1 All camera installations must be approved at Technical Inspection. +1T6.1.2 Helmet mounted cameras are prohibited. +1T6.1.3 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a +minimum of 2 points on different sides of the camera body. Plastic or elastic attachments are +not permitted. If a tether is used to restrain the camera, the tether length must be limited so +that the camera cannot contact the driver. + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1PART IC - INTERNAL COMBUSTION ENGINE +ARTICLE IC1 INTERNAL COMBUSTION ENGINE +IC1.1 Engine Limitation +Engines must be Internal Combustion, four-stroke piston engines, with a maximum +displacement of 250cc for spark ignition engines and 310cc for diesel engines and be either: +(a) Modified or custom fabricated. (See section IC1.2) +OR +(b) Stock – defined as: +(i) Any single cylinder engine, +OR +(ii) Any twin cylinder engine from a motorcycle approved for licensed use on public +roads, +OR +(iii) Any commercially available “industrial” IC engine meeting the above displacement +limits. +Note: If you are not sure whether or not your engine qualifies as “stock”, contact the +organizers. +IC1.2 Permitted modifications to a stock engine are: +(a) Modification or removal of the clutch, primary drive and/or transmission. +(b) Changes to fuel mixture, ignition or cam timings. +(c) Replacement of camshaft. (Any lobe profile may be used.) +(d) Replacement or modification of any exhaust system component. +(e) Replacement or modification of any intake system component; i.e., components upstream +of (but NOT including) the cylinder head. The addition of forced induction will move the +engine into the modified category. +(f) Modifications to the engine casings. (This does not include the cylinders or cylinder head). +(g) Replacement or modification of crankshafts for the purpose of simplifying mechanical +connections. (Stroke must remain stock.) +IC1.3 Engine Inspection +The organizers reserve the right to tear down any number of engines to confirm conformance to +the rules. The initial measurement will be made externally with a measurement accuracy of one +(1) percent. When installed to and coaxially with spark plug hole, the measurement tool has +dimensions of 381 mm long and 30 mm diameter. Teams may choose to design in access space +for this tool above each spark plug hole to reduce time should their vehicle be inspected. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +IC1.4 Starter +Each car must be equipped with an on-board starter or equivalent, and must be able to move +without any outside assistance at any time during the competition. Specifically, push starts are +not permitted. +IC1.4.1 A hybrid may use the forward motion of the vehicle derived from the electric drive to start the +I.C. engine, except that this starting technique may not be used until after the car receives the +“green flag” in any event. +IC1.4.2 A manual starting system operable by the driver while belted in is permissible. +IC1.5 Air Intake System +IC1.5.1 Air Intake System Location +All parts of the engine air and fuel control systems (including the throttle or carburetor, and the +complete air intake system, including the air cleaner and any air boxes) must lie within the +surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25) + + +Figure 25- Surface Envelope +IC1.5.2 Any portion of the air intake system that is less than 350 mm above the ground must be +shielded from side or rear impact collisions by structure built to Rule T3.24 or T3.33 as +applicable. +IC1.5.3 Intake Manifold +If an intake manifold is used, it must be securely attached to the engine crankcase, cylinder, or +cylinder head with brackets and mechanical fasteners. This precludes the use of hose clamps, +plastic ties, or safety wires. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Original equipment rubber parts that bolt or clamp to the cylinder head and to the throttle body +or carburetor are acceptable. +Note: These rubber parts are referred to by various names by the engine manufacturers; e.g., +“insulators” by Honda, “joints” by Yamaha, and “holders” by Kawasaki. +Other than such original equipment parts the use of rubber hose is not considered a structural +attachment. Intake systems with significant mass or cantilever from the cylinder head must be +supported to prevent stress to the intake system. +Supports to the engine must be rigid. +Supports to the frame or chassis must incorporate some isolation to allow for engine movement +and chassis flex. +IC1.5.4 Air boxes and filters +Large air boxes must be securely mounted to the frame or engine and connections between the +air box and throttle must be flexible. Small air cleaners designed for mounting to the carburetor +or throttle body may be cantilevered from the throttle body. +IC1.6 Accelerator and Accelerator Actuation +IC1.6.1 Carburetor/Throttle Body +All spark ignition engines must be equipped with a carburetor or throttle body. The carburetor +or throttle body may be of any size or design. +IC1.6.2 Accelerator Actuation - General +All systems that transmit the driver’s control of the speed of the vehicle, commonly called +“Accelerator systems”, must be designed and constructed as “fail safe” systems, so that the +failure of any one component, be it mechanical, electrical or electronic, will not result in an +uncontrolled acceleration of the vehicle. This applies to both IC engines and to electric motors +that power the vehicle. +The Accelerator control may be actuated mechanically, electrically or electronically, i.e. +electrical Accelerator control (ETC) or “drive-by-wire” is acceptable. +Drive-by-wire controls of the electric motor controller must comply with TS isolation +requirements. See EV5.1.1 +Any Accelerator pedal must have a positive pedal stop incorporated on the Accelerator pedal to +prevent over stressing the Accelerator cable or any part of the actuation system. +IC1.6.3 Mechanical Accelerator Actuation +If mechanical Accelerator actuation is used, the Accelerator cable or rod must have smooth +operation, and must not have the possibility of binding or sticking. +The Accelerator actuation system must use at least two (2) return springs located at the throttle +body, so that the failure of any component of the Accelerator system will not prevent the +Accelerator returning to the closed position. +Note: Springs in Throttle Position Sensors (TPS) are NOT acceptable as return springs. +Accelerator cables must be at least 50 mm from any exhaust system component and out of the +exhaust stream. +Any Accelerator pedal cable must be protected from being bent or kinked by the driver’s foot +when it is operated by the driver or when the driver enters or exits the vehicle. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +If the Accelerator system contains any mechanism that could become jammed, for example a +gear mechanism, then this must be covered to prevent ingress of any debris. +The use of a push-pull type Accelerator cable with an Accelerator pedal that is capable of +forcing the Accelerator closed (e.g. toe strap) is recommended. +Electrical actuation of a mechanical throttle is permissible, provided releasing the Accelerator +pedal will override the electrical system and cause the throttle to close. +IC1.6.4 Electrical Accelerator Actuation +When electrical or electronic throttle actuation is used, the throttle actuation system must be of +a fail-safe design to assure that any single failure in the mechanical or electrical components of +the Accelerator actuation system will result in the engine returning to idle (IC engine) or having +zero torque output (electric motor). +Teams should use commercially available electrical Accelerator actuation systems. +The methodology used to ensure fail-safe operation must be included as a required appendix to +the Design Report. +IC1.7 Intake System Restrictor +IC1.7.1 Non-stock engines (See IC1.1) must be fitted with an air inlet restrictor as listed below. All the +air entering the engine must pass through the restrictor which must be located downstream of +any engine throttling device. +IC1.7.2 The restrictor must be circular with a maximum diameter of: +(a) Gasoline fueled cars – 12.90 mm +IC1.7.3 The restrictor must be located to facilitate measurement during the inspection process. +IC1.7.4 The circular restricting cross section may NOT be movable or flexible in any way, e.g. the +restrictor may not be part of the movable portion of a barrel throttle body. +IC1.7.5 Any device that has the ability to throttle the engine downstream of the restrictor is prohibited. +IC1.7.6 If more than one engine is used, the intake air for all engines must pass through the one +restrictor. +Note: Section IC1.7 applies only to those engines that are not on the approved stock engine list, +or that have been modified beyond the limits specified in IC1.2. +IC1.8 Turbochargers & Superchargers +Turbochargers or superchargers are permitted. The compressor must be located downstream of +the inlet restrictor. The addition of a Turbo or Supercharger will move the engine into the +Modified category. +IC1.9 Fuel Lines +IC1.9.1 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. +IC1.9.2 If rubber fuel line or hose is used, the components over which the hose is clamped must have +annular bulb or barbed fittings to retain the hose. Also, clamps specifically designed for fuel +lines must be used. These clamps have three (3) important features; (See Figure 26) +(a) A full 360 degree (360°) wrap, +(b) a nut and bolt system for tightening, and +(c) rolled edges to prevent the clamp cutting into the hose. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Worm-gear type hose clamps are not approved for use on any fuel line. + +Figure 26 – Hose Clamps +IC1.9.3 Fuel lines must be securely attached to the vehicle and/or engine. +IC1.9.4 All fuel lines must be shielded from possible rotating equipment failure or collision damage. +IC1.10 Fuel Injection System Requirements +IC1.10.1 Fuel Lines – Flexible fuel lines must be either +(a) Metal braided hose with either crimped-on or reusable, threaded fittings, OR +(b) Reinforced rubber hose with some form of abrasion resistant protection with fuel line +clamps per IC1.9.2. +Note: Hose clamps over metal braided hose will not be accepted. +IC1.10.2 Fuel Rail – If used, a fuel rail must be securely attached to the engine cylinder block, cylinder +head, or intake manifold with brackets and mechanical fasteners. This precludes the use of +hose clamps, plastic ties, or safety wire. +IC1.11 Crankcase / Engine lubrication venting +IC1.11.1 Any crankcase or engine lubrication vent lines routed to the intake system must be connected +upstream of the intake system restrictor, if fitted. +IC1.11.2 Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum +devices that connect directly to the exhaust system, are prohibited. +ARTICLE IC2 FUEL AND FUEL SYSTEM +IC2.1 Fuel +IC2.1.1 All fuel at the Formula Hybrid + Electric Competition will be provided by the organizer. +IC2.1.2 During all performance events the cars must be operated with the fuels provided by the +organizer. +IC2.1.3 The fuels provided at the Formula Hybrid + Electric Competition are: +(a) Gasoline (Sunoco Optima) + Note: More information including the fuel energy equivalencies, and a link for the Sunoco fuel +specifications are given in Appendix A + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +IC2.2 Fuel Additives - Prohibited +IC2.2.1 Nothing may be added to the provided fuels. This prohibition includes nitrous oxide or any +other oxidizing agent. +IC2.2.2 No agents other than fuel and air may be induced into the combustion chamber. Non-adherence +to this rule will be reason for disqualification. +IC2.2.3 Officials have the right to inspect the oil. +IC2.3 Fuel Temperature Changes - Prohibited + The temperature of fuel introduced into the fuel system may not be changed with the intent to +improve calculated fuel efficiency. +IC2.4 Fuel Tanks +IC2.4.1 The fuel tank is defined as that part of the fuel containment device that is in contact with the +fuel. It may be made of a rigid material or a flexible material. +IC2.4.2 Fuel tanks made of a rigid material cannot be used to carry structural loads, e.g. from roll +hoops, suspension, engine or gearbox mounts, and must be securely attached to the vehicle +structure with mountings that allow some flexibility such that chassis flex cannot +unintentionally load the fuel tank. +IC2.4.3 Any fuel tank that is made from a flexible material, for example a bladder fuel cell or a bag +tank, must be enclosed within a rigid fuel tank container which is securely attached to the +vehicle structure. Fuel tank containers (containing a bladder fuel cell or bag tank) may be load +carrying. +IC2.4.4 Any size fuel tank may be used. +IC2.4.5 The fuel system must have a drain fitting for emptying the fuel tank. The drain must be at the +lowest point of the tank and be easily accessible. It must not protrude below the lowest plane of +the vehicle frame, and must have provision for safety wiring. +IC2.5 Fuel System Location Requirements +IC2.5.1 All parts of the fuel storage and supply system must lie within the surface defined by the top of +the roll bar and the outside edge of the four tires. (See Figure 25). +IC2.5.2 All fuel tanks must be shielded from side or rear impact collisions. Any fuel tank which is +located outside the Side Impact Structure required by T3.24 or T3.33 must be shielded by +structure built to T3.24 or T3.33. +IC2.5.3 A firewall must separate the fuel tank from the driver, per T4.5. +IC2.6 Fuel Tank Filler Neck +IC2.6.1 All fuel tanks must have a filler neck +8 +: +(a) With a minimum inside diameter of 38 mm +(b) That is vertical (with a horizontal filler cap) or angled at no more than forty-five degrees +(45º) from the vertical. +IC2.6.2 If a sight tube is fitted, it may not run below the top surface of the fuel tank. + + +8 + Some flush fillers may be approved by contacting the Formula Hybrid + Electric rules committee. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 27 - Filler Neck +IC2.7 Tank Filling Requirement +IC2.7.1 The tank must be capable of being filled to capacity without manipulating the tank or vehicle in +any way (shaking vehicle, etc.). +IC2.7.2 The fuel system must be designed such that the spillage during refueling cannot contact the +driver position, exhaust system, hot engine parts, or the ignition system. +IC2.7.3 Belly pans must be vented to prevent accumulation of fuel. +IC2.8 Venting Systems +IC2.8.1 The fuel tank and carburetor venting systems must be designed such that fuel cannot spill +during hard cornering or acceleration. This is a concern since motorcycle carburetors normally +are not designed for lateral accelerations. +IC2.8.2 All fuel vent lines must be equipped with a check valve to prevent fuel leakage when the tank is +inverted. All fuel vent lines must exit outside the bodywork. +ARTICLE IC3 EXHAUST SYSTEM AND NOISE CONTROL +IC3.1 Exhaust System General +IC3.1.1 Exhaust Outlet +The exhaust must be routed so that the driver is not subjected to fumes at any speed considering +the draft of the car. +IC3.1.2 The exhaust outlet(s) must not extend more than 45 cm behind the centerline of the rear wheels, +and must be no more than 60 cm above the ground. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +IC3.1.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in +front of the main roll hoop must be shielded to prevent contact by persons approaching the car +or a driver exiting the car. +IC3.1.4 The application of fibrous material, e.g. “header wrap”, to the outside of an exhaust manifold or +exhaust system is prohibited. +IC3.2 Noise Measuring Procedure +IC3.2.1 The sound level will be measured during a static test. Measurements will be made with a free- +field microphone placed free from obstructions at the exhaust outlet level, 0.5 m from the end +of the exhaust outlet, at an angle of forty-five degrees (45°) with the outlet in the horizontal +plane. The test will be run with the gearbox in neutral at the engine speed defined below. +Where more than one exhaust outlet is present, the test will be repeated for each exhaust and +the highest reading will be used. +Vehicles that do not have manual throttle control must provide some means for running the +engine at the test RPM. +IC3.2.2 The car must be compliant at all engine speeds up to the test speed defined below. +IC3.2.3 If the exhaust has any form of movable tuning or throttling device or system, it must be +compliant with the device or system in all positions. The position of the device must be visible +to the officials for the noise test and must be manually operable by the officials during the noise +test. +IC3.2.4 Test Speeds +The test speed for a given engine will be the engine speed that corresponds to an average piston +speed of 914.4 m/min for automotive or motorcycle engines, and 731.5 m/min for Diesels and +“Industrial” engines. The calculated speed will be rounded to the nearest 500 rpm. The test +speeds for typical engines will be published by the organizers. +IC3.2.5 An “industrial engine” is defined as an engine which, according to the manufacturers’ +specifications and without the required restrictor, is not capable of producing more than 5 hp +per 100cc. To have an engine classified as “an industrial engine”, approval must be obtained +from organizers prior to the Competition. +IC3.2.6 Vehicles not equipped with engine tachometers must provide some external means for +measuring RPM, such as a hand-held meter or lap top computer. +Note: Teams that do not provide the means to measure engine speed will not pass the noise test, +will not receive the sticker and hence will not be eligible to compete in any dynamic event. +IC3.2.7 Engines with mechanical, closed loop speed control will be tested at their maximum (governed) +speed. +IC3.3 Maximum Sound Level + The maximum permitted sound level is 110 dB A, fast weighting. +IC3.4 Noise Level Re-testing + At the option of the officials, noise can be measured at any time during the competition. If a car +fails the noise test, it will be withheld from the competition until it has been modified and re- +passes the noise test. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART EV - ELECTRICAL POWERTRAINS AND SYSTEMS + +ARTICLE EV1 ELECTRICAL SYSTEMS OVERVIEW +EV1.1 Definitions +● Accumulator - Batteries and/or capacitors that store the electrical energy to be used by +the tractive system. This term includes both electrochemical batteries and ultracapacitor +devices. +● Accumulator Container - A housing that encloses the accumulator devices, isolating +them both physically and electrically from the rest of the vehicle. +● Accumulator Segment - A subgroup of accumulator devices that must adhere to the +voltage and energy limits listed in Table 8. +● AMS – Accumulator Monitoring System. EV9.6 +● Barrier – A material, usually rigid, that resists a flow of charge. Most often used to +provide a structural barrier and/or increase the creepage distance between two +conductors. See Figure 36. +● BRB – Big Red Button. EV7.5 and EV7.6 +● Creepage Distance - The shortest distance measured along the surface of the insulating +material between two conductors. See Figure 36. +● Enclosure – An insulated housing containing electrical circuitry. +● GLV Grounded Low Voltage system - Every conductive part that is not part of the +tractive system. (This includes the GLV electrical system, frame, conductive housings, +carbon-fiber components etc.) +● GLVMS – Grounded Low Voltage Master Switch. EV7.3 +● IMD – Insulation Monitoring Device. EV9.4 +● Insulation – A material that physically resists a flow of charge. May be rigid or flexible. +● Isolation - Electrical, or “Galvanic” isolation between two or more electrical conductors +such that if a voltage potential exists between them, no current will flow. +● Region – A design/construction methodology wherein enclosures are divided by +insulating barriers and/or spacing into TS and GLV sections, simplifying the electrical +isolation of the two systems. +● Separation – A physical distance (“spacing”) maintained between conductors. +● SMD – Segment Maintenance Disconnect. EV2.7 +● ESOK – Electrical Systems OK. EV9.3 +● Tractive System (TS) - The drive motors, the accumulators and every part that is +electrically connected to either of those components. +● Tractive System Enclosure - A housing that contains TS components other than +accumulator devices. +● TSAL – Tractive System Active Lamp. EV9.1 +● TS/GLV – The relationship between two electrical conductors; one being part of the TS +system and the other GLV. +● TS/TS – The relationship between two TS conductors. This designation implies that they +are at different potentials and/or polarities. +● TSMP – Tractive System Measuring Points. EV10.3 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +● TSMS – Tractive System Master Switch. EV7.4 + +EV1.2 Maximum System Voltages +EV1.1.1 The maximum permitted operating voltage and energy limits are listed in Table 8 below. + +Formula Hybrid + Electric voltage and energy limits +Maximum operating voltage for Hybrid +9 + +(TSV) +300 V +Maximum operating voltage for EV 600V +Maximum GLV 60 VDC or 50 VAC +Maximum accumulator segment voltage 120 V +Maximum accumulator segment energy +10 + 6 MJ +Table 8 - Voltage and Energy Limits +EV1.1.2 Maximum operating voltage for hybrid vehicles above those shown in Table 8 may be +permitted via a request for a special allowance to the FH+E rules committee. Teams requesting +such an allowance must demonstrate an appropriate level of electrical engineering knowledge +and experience. +EV1.1.3 Vehicles with a maximum operating voltage over 300V will be required to complete a form +demonstrating electrical safety competency including: +● Written vehicle electrical safety procedures +● A list of electrical safety team members +● Review of team experience and competency in high-voltage electrical +systems +● Acceptance of this document is a requirement for participation in the +event. + +9 + The maximum operating voltage is defined as the maximum measured accumulator voltage during normal +charging conditions. (A maximum capacity accumulator will require at least three segments.) +10 + Segment energy is calculated as Energy (MJ) = (V • Ah • 3600) / 1e +6 +. (Note that this is different from the fuel +allocation energy in Appendix A). + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV2 ENERGY STORAGE (ACCUMULATORS) +EV2.1 Permitted Devices +EV1.1.4 The following accumulator devices are acceptable: batteries (e.g. lithium-ion, NiMH, lead acid +and similar battery chemistries) and capacitors, such as super caps or ultracaps. +The following accumulator devices are not permitted: molten salt batteries, thermal batteries, +fuel cells, mechanical storage such as flywheels or hydraulic accumulators. +EV1.1.5 Accumulator systems using pouch-type lithium-ion cells must be commercially constructed and +specifically approved by the Formula Hybrid + Electric rules committee or must comply with +the requirements detailed in ARTICLE EV11. +EV1.1.6 Manufacturers data sheets showing the rated specification of the accumulator cell(s) which are +used must be provided in the ESF along with their number and configurations. +EV2.2 Accumulator Segments +EV1.1.7 The accumulator segments must be separated so that the segment limits in Table 8 are met by +an electrically insulating barrier meeting the TS/GLV requirements in EV5.4. For all lithium +based cell chemistries, these barriers must also be fire resistant (according to UL94-V0, FAR25 +or equivalent). +EV1.1.8 The barrier must be non-conducting, fire retardant (UL94V0) and provide a complete barrier to +the spread of arc or fire. It must have a fire resistance equal to 1/8" FR4 fiberglass, such as +Garolite G-9 +11 +. +EV2.3 Accumulator Containers +EV1.1.9 All devices which store the tractive system energy must be enclosed in (an) accumulator +container(s). +EV1.1.10 Each accumulator container must be labeled with the words “ACCUMULATOR – ALWAYS +ENERGIZED”. (This is in addition to the TSV label requirements in EV3.1.5). +Labels must be 3 inches by 9 inches with bold red lettering on a white background and be +clearly visible on all sides of the accumulator container that could be exposed during operation +and/or maintenance of the car and at least one such label must be visible with the bodywork in +place +12 +. +Figure 28 - Accumulator Sticker + +11 + https://www.mcmaster.com/grade-g-9-garolite/ +12 + Self-adhesive stickers are available from the organizers on request. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV1.1.11 If the accumulator container(s) is not easily accessible during Electrical Tech Inspection, +detailed pictures of the internals taken during assembly must be provided. If the pictures do not +adequately depict the accumulator, it may be necessary to disassemble the accumulator to pass +Electrical Tech Inspection. +EV1.1.12 The accumulator container may not contain circuitry or components other than the +accumulator itself and necessary supporting circuitry such as the AIRs, AMS, IMD and pre- +charge circuitry. +For example, the accumulator container may not contain the motor controller, TSV or any +GLV circuits other than those required for necessary accumulator functions. +Note 1: The purpose of this requirement is to allow work on other parts of the tractive system +without opening the accumulator container and exposing (always-live) high voltage. + Note 2: It is possible to meet this requirement by dividing a large box into an accumulator +section and a non-accumulator section, with an insulating barrier between them. In this case, it +must be possible to open the non-accumulator section while keeping the accumulator section +closed, meeting the requirements of the “finger probe” test. See: EV3.1.3. +EV1.1.13 If spare accumulators are to be used then they all must be of the same size, weight and type as +those that are replaced. Spare accumulator packs must be presented at Electrical Tech +Inspection. +EV2.4 Accumulator Container –Construction +EV1.1.14 The accumulator container(s) must be built of mechanically robust material. +EV1.1.15 The container material must be fire resistant according to UL94-V0, FAR25 or equivalent. +EV1.1.16 If any part of the accumulator container is made of electrically conductive material, an +insulating barrier meeting the TS/GLV requirements in EV5.4 must be affixed to the inside +wall of the accumulator container such that the barrier provides 100% coverage of all +electrically conductive container components. +EV1.1.17 All conductive penetrations (mounting hardware, hinges, latches etc.) must be covered on the +inside of the accumulator container by an insulating material meeting EV5.4. +EV1.1.18 All conductive surfaces on the outside of the container must have a low-resistance connection +to the GLV system ground. (See EV8.1.1) +EV1.1.19 The cells and/or segments must be appropriately secured against loosening inside the container. +Internal structural elements must be either non-thermoplastic or have a melting temperature of +greater than 150 degrees C. +EV1.1.20 All accumulator devices must be attached to the accumulator container(s) with mechanical +fasteners. +EV1.1.21 Holes in the container are only allowed for the wiring-harness, ventilation, cooling or +fasteners. All wiring harness holes must be sealed according to EV3.3.1. Openings for +ventilation must be designed to prevent water entry from rain or road spray, and to minimize +spread of fire. Completely open side pods are not allowed. +EV1.1.22 Any accumulator that may vent an explosive gas must have a ventilation system or pressure +relief valve to prevent the vented gas from reaching an explosive concentration. +EV1.1.23 Every accumulator container which is completely sealed must have a pressure relief valve to +prevent high-pressure in the container. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV1.1.24 An Accumulator Container that is built to an approved 2023 or 2024 FSAE Structural +Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with +Formula Hybrid + Electric Rules EV2.4.1-EV2.4.7. +EV2.5 Accumulator Container – Mounting +EV1.1.25 All accumulator containers must lie within the surface envelope as defined by IC1.5.1 +EV1.1.26 All accumulator containers must be rigidly mounted to the chassis to prevent the containers +from loosening during the dynamic events or possible accidents. +EV1.1.27 The mounting system for the accumulator container must be designed to withstand forces from +a 40g deceleration in the horizontal plane and 20 g deceleration in the vertical plane. The +calculations/tests proving this must be part of the SES. +EV1.1.28 For tube frame cars, each accumulator container must be attached to the Frame by a minimum +of four (4) 8 mm Metric Grade 8.8 or 5/16 inch Grade 5 bolts. +EV1.1.29 For monocoques: +1. Each accumulator container must be attached to the Frame at a minimum of four (4) +points, each capable of carrying a load in any direction of 400 Newtons x the mass of +the accumulator in kgs, i.e. if the accumulator has a mass of 50 kgs, each attachment +point must be able to carry a load of 20kN in any direction. +2. The laminate, mounting plates, backing plates and inserts must have sufficient shear +area, weld area and strength to carry the specified load in any direction. Data obtained +from the laminate perimeter shear strength test (T3.30) should be used to prove adequate +shear area is provided*** +3. Each attachment point requires a minimum of one (1) 8 mm Metric Grade 8.8 or 5/16 +inch SAE Grade 5 bolt. +4. Each attachment point requires steel backing plates with a minimum thickness of 2 mm. +Alternate materials may be used for backing plates if equivalency is approved. +5. The calculations/tests must be included in the SES. +EV2.5.6 An Accumulator Mounting system that is built to an approved 2023 or 2024 FSAE Structural +Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with +Formula Hybrid + Electric Rules EV2.5, and the FSAE SES may be submitted in place of the +Formula Hybrid + Electric specific SES required by EV2.5.3. +EV2.6 Accumulator Fusing +EV1.1.30 Every accumulator container must contain at least one fuse in the high-current TS path, +located on the same side of the AIRs as the battery or capacitor. These fuses must comply with +EV5.5.4. +EV1.1.31 All details and documentation for fuse, fusible link and/or internal over current protection +must be included in the ESF. + +EV1.1.32 Parallel then Series (nPmS) connections. +If more than one battery cell or capacitor is used to form a set of cells in parallel and those +parallel groups are then combined in series (Figure 29) then either: + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +a) Each cell must be protected with a fuse or fusible link with a current rating less than or +equal to 50% of the calculated short-circuit current (Isc) of the cell or capacitor, where +Isc = Vnom / IR(Ω). (The nominal cell voltage divided by its dc internal resistance).. The +fuse or fusible link must be rated for the full tractive system voltage, unless the special +conditions in EV2.6.5 (Fuse Voltage Ratings) are met. +OR +b) Manufacturer’s documentation must be provided that certifies that it is acceptable to use +this number of single cells in parallel without fusing. This certification must be included +in the ESF. (Commercially assembled packs or modules installed per manufacturer's +instructions may be exempt from this requirement upon application to the rules +committee.) + +Note: if option (a) is used, fuse j in Figure 27 may be omitted if all conductors carrying the +entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for +n fuses in parallel, each with current rating i, the conductors must be sized for a total current +i +total + = n·i) + + +Figure 29 - Example nP3S Configuration +EV1.1.33 Series then Parallel (nSmP) connections. +If strings of batteries or capacitors in series are then combined in parallel (Figure 30) then +each string must be individually fused per EV5.5.4. +Fuse j in Figure 30 may be omitted if all conductors carrying the entire pack current are +adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, +each with current rating i, the conductors must be sized for a total current 푖 +푡표푡푎푙 + = 푛· +푖 without fuse j, or may be sized for a lower current j if fuse j is included.) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +All fuses used in nSmP configurations must be rated for the full tractive system voltage. + + +Figure 30 – Example 5S4P Configuration +EV1.1.34 Fuse Voltage Ratings. +Although fuses in the tractive system must normally be rated for the full tractive system +voltage, under certain conditions an exception can be made for fuses or fusible links for +individual cells or capacitors. These conditions, defined in EV2.6.1, apply to fuses or fusible +links used to meet EV2.6.3and to any fusible links that are included in the accumulator +construction. These requirements are intended to ensure coordination between cell fuses +and pack master fuses. + The following conditions must be met to allow reduced voltage ratings: +The series fuse used to satisfy EV2.6.1 is rated at a current less than or equal to one half +of the sum of the parallel low-voltage fuses or fusible links, AND +1. fuse or fusible link current rating is specified in manufacturer’s data +OR +2. suitable team generated test data is provided, demonstrating the ability to: +(i) Carry full rated current for at least 10 minutes with less than 50° C +temperature rise. +(ii) Trip at 300% of rated current. +(iii) Interrupt current equal to the maximum short circuit current expected without +producing heat, sparks, or flames that might damage nearby cells. +For example, in Figure 29, this requirement is met if 푗 ≤ 푛· +푖 +3 +, where i is the cell fuse or link +rating, n is the number of cells in parallel and j is the master series fuse rating. +EV2.7 Accumulator - Segment Maintenance Disconnect +EV1.1.35 A Segment Maintenance Disconnect (SMD) must be installed between each accumulator +segment See EV2.2). The SMD must be used whenever the accumulator containers are opened +for maintenance and whenever accumulator segments are removed from the container. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: If the high-voltage disconnect (HVD, section EV2.9) is located between segments, it +satisfies the requirement for an SMD between those segments. +EV1.1.36 The SMD may be implemented with a switch or a removable maintenance plug. Devices +capable of remote operation such as relays or contactors may not be used. There must be a +positive means of securing the SMD in the disconnected state; for example, a lockable switch +can be secured with a zip-tie or a clip. +EV1.1.37 SMD methods requiring tools to isolate the segments are not permitted. +EV1.1.38 If the SMD is operated with the accumulator container open, any removable part used with the +SMD (e.g., a removable plug or clip) must be non-conductive on its external surfaces. i.e. it will +not cause a short if dropped into the accumulator. This requirement may be waived on +application to the rules committee if connection to battery terminals is prevented by +barriers or location. +EV1.1.39 Devices used for SMDs must be rated for the expected battery current and voltages +EV2.8 Accumulator - Isolation Relays +EV1.1.40 At least two isolation relays (AIRs) must be installed in every accumulator container, or in the +accumulator section of a segmented container (See EV2.3.4 Note 2) such that no TS voltage +will be present outside the accumulator or accumulator section when the TS is shut down. +Note: AIRs must be before TSMPs, such that TSMPs de-energize when AIRs are open. +EV1.1.41 The accumulator isolation relays must be of a normally open (N.O.) type which are held in the +closed position by the current flowing through the shutdown loop (EV7.1). When this flow of +current is interrupted, the AIRs must disconnect both poles of the accumulator such that no TS +voltage is present outside of the accumulator container(s). +EV1.1.42 When the AIRs are opened, the voltage in the tractive system must drop to under 60 VDC (or +42 VAC RMS) in less than five seconds. +EV1.1.43 The AIR contacts must be protected by Pre-Charge and Discharge circuitry, See EV2.10. +EV1.1.44 If the AIR coils are not equipped with transient suppression by the manufacturer then +Transient suppressors +13 + must be added in parallel with the AIR coils. +EV1.1.45 AIRs containing mercury are not permitted. + + +13 + Transient suppressors protect the circuitry in the shutdown loop from di/dt voltage spikes. One acceptable device +is Littelfuse 5KP43CA. (Mouser Part number 576-5KP43CA.) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 31 - Example Accumulator Segmenting +EV2.9 Accumulator - High Voltage Disconnect +EV1.1.46 Each vehicle must be fitted with a High Voltage Disconnect (HVD) making it possible to +quickly and positively break the current path of the tractive system accumulator. This can be +accomplished by turning off a disconnect switch, disconnecting the main connector or +removing an accessible element such as a fuse. A contactor or AIR device may not be used +as an HVD. +EV1.1.47 The HVD must be operable without the use of tools. +EV1.1.48 It must be possible to disconnect the HVD within 10 seconds in ready-to-race condition. +Note: Ready-to-race means that the car is fully assembled, including having all body panels in +position, with a driver seated in the vehicle and without the car jacked up. +EV1.1.49 The team must demonstrate this during Electrical Tech Inspection. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV1.1.50 The disconnect must be clearly marked with "HVD". Multiple disconnects must be marked +“HVD n of m”, such as “HVD 1 of 3”, HVD 2 of 3”, etc. +EV1.1.51 There must be a positive means of securing the HVD in the disconnected state; for example, a +lockable switch can be secured with a zip-tie or a clip. +Note: A removable plug will meet this requirement if the plug is secured or fully removed +such that it cannot accidentally reconnect. +EV1.1.52 The HVD must be opened as part of the Lockout/Tagout procedure. See EV12.1.1. +EV1.1.53 The recommended electrical location for the HVD is near the middle of the accumulator string. +In this case, it can serve as one of the SMDs. (See Figure 31). +Note: The HVD must be prior to TSMPs such that TSMPs are de-energized when the HVD is +open. +EV2.10 Accumulator - Pre-Charge and Discharge Circuits +One particularly dangerous failure mode in an electric vehicle is AIR contacts that have +welded shut. When the current through the AIR coils is interrupted, the AIRs should open, +isolating the potentially lethal voltages within the accumulator container. +If the AIRs are welded shut, these voltages will be present outside the accumulator even +though the system is presumably shut down. +Welding is caused by high instantaneous currents across the contacts. This can be avoided by +a correctly functioning pre-charge circuit. +EV1.1.54 Precharge +The AIR contacts must be protected by a circuit that will pre-charge the intermediate circuit to +at least 90% of the rated accumulator voltage before completing the intermediate circuit by +closing the second AIR. +The pre-charge circuit must be disabled if the shutdown circuit is deactivated; see EV7.1. i.e. +the pre-charge circuit must not be able to pre-charge the system if the shutdown circuit is +open. +EV1.1.55 It is allowed to pre-charge the intermediate circuit for a conservatively calculated time before +closing the second AIR. Monitoring the intermediate circuit voltage is not required. +EV1.1.56 The pre-charge circuit must operate regardless of the sequence of operations used to energize +the vehicle, including, for example, restarting after being automatically shut down by a safety +circuit. +EV1.1.57 Discharge +If a discharge circuit is needed to meet the requirements of EV2.8.3, it must be designed to +handle the maximum expected discharge current for at least 15 seconds. The calculations +determining the component values must be part of the ESF. +EV1.1.58 The discharge circuit must be fail-safe. i.e. wired in a way that it is always active whenever +the shutdown circuit is open or de-energized. +EV1.1.59 For always-on discharge circuits and other circuits that dissipate significant power for extended +time periods, calculations of the maximum operating temperature of the power dissipating +components (e.g., resistors) must be included in the ESF. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Resistors operating at their rated power level often operate at 200° C or more. Insulating +materials in proximity to resistors require care to ensure that they are not overheated. +Resistors that dissipate more than 50% of their power rating and resistors that dissipate +significant power without much open space around them will require additional care to ensure +they are safe. +It is recommended that teams use resistors rated for at least double the maximum predicted +power dissipation, document these design details in the ESF, and mount them that such that +heat dissipation is not impeded. +Note also that some resistors require external heat sinks in order to dissipate their rated power. +Using these resistors for significant power dissipation will require additional documentation of +the heat sink design or testing. +EV1.1.60 Fuses in the accumulator pre-charge or discharge current paths are not permitted. +EV2.11 Accumulator – Accumulator Management System (AMS) +EV1.1.61 Each accumulator must be monitored by an accumulator management system (AMS) +whenever the tractive system is active or the accumulator is connected to a charger. +Note: Some parts of EV2.11 may be waived for commercially manufactured accumulator +assemblies. Requests must be submitted to the Formula Hybrid + Electric rules committee at +least one month before the competition. +EV1.1.62 The AMS must monitor all critical voltages and temperatures in the accumulator as well the +integrity of all its voltage and temperature inputs. If an out-of-range or a malfunction is +detected, it must shut down the electrical systems, open the AIRs and shut down the I.C. drive +system within 60 seconds. +14 + (Some GLV systems may remain energized – See Figure 37) +EV1.1.63 The tractive system must remain disabled until manually reset by a person other than the +driver. It must not be possible for the driver to re-activate the tractive system from within the +car in case of an AMS fault. AMS faults must be latched using a mechanical relay circuit (see +Appendix G). Digital logic or microcontrollers may not be used for this function. +EV1.1.64 The AMS must continuously measure cell voltages in order to keep those voltages inside the +allowed minimum and maximums stated in the cell data-sheet. (See Table 9) +Notes: +1. If individual cells are directly connected in parallel, only one voltage measurement is +required for that group. (Measured at the parallel connections, outside of the cell fuses. +(See Figure 29) +2. Exemptions may be granted for commercial accumulator assemblies that do not meet these +requirements. + + +14 + Teams may wish to also use the AMS to detect a low voltage or high temperature before these cross the critical +threshold, and to alert the driver and/or decrease the power drawn from the accumulator, so as to mitigate the +problem before the vehicle must be shut down. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Chemistry +Maximum number of cells per +voltage measurement +PbAcid 6 +NiMh 6 +Lithium based 1 +Table 9 - AMS Voltage Monitoring +EV1.1.65 The AMS must monitor the temperature of the minimum number of cells in the accumulator as +specified in Table 10 below. The monitored cells must be equally distributed over the +accumulator container(s). + +Chemistry Cells monitored +PbAcid 5% +UltraCap 10% +NiMh 10% +Li-Ion 30% +Table 10 – AMS Temperature Monitoring +NOTE: It is acceptable to monitor multiple cells with one sensor if this sensor has direct +contact to all monitored cells. It is also acceptable to use maximum-temperature detection +schemes such as diode-paralleled thermisters or zener diodes to monitor multiple cells on a +single circuit. +NOTE: Teams should monitor the temperature of all cells. +NOTE: AMS temperature monitoring at levels less than the requirements in Table 10 may be +permitted, on application to the tech committee, for commercial accumulator modules contain +integrated temperature sensors. +EV1.1.66 All voltage sense wires to the AMS must be protected by fuses or resistors (located as close as +possible to the energy source) so that they cannot exceed their current carrying capacity in the +event of a short circuit. +Note: If the AMS monitoring board is directly connected to the cell, it is acceptable to have a +fuse or resistor integrated into the monitoring board. +EV1.1.67 Input channels of the AMS used for different segments of the accumulator must be isolated +from one another with isolation rated for at least the maximum tractive system voltage. This +isolation is also required between channels or sections of the AMS that are connected to +different sides of a SMD, HVD, fuse, or AIR. +EV1.1.68 Any GLV connection to the AMS must be galvanically isolated from the TSV. This isolation +must be documented in the ESF. +Note: Per EV2.8.2, AMS connections that are not isolated, such as cell sense wires, cannot +exit the accumulator container, unless they are isolated by additional relays when the AIRs are + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +off. This requirement should be considered in the selection of an AMS system for a vehicle +that uses more than one accumulator container. The need for additional isolation relays may +also be avoided by utilizing a virtual accumulator. See EV2.12 + +EV1.1.69 Team-Designed Accumulator Management Systems. +Teams may design and build their own Accumulator Management Systems. However, +microprocessor-based accumulator management systems are subject to the following +restrictions: +1. The processor must be dedicated to the AMS function only. However, it may +communicate with other systems through shared peripherals or other physical links. +2. The AMS circuit board must include a watchdog timer. It is strongly recommended that +teams include the ability to test the watchdog function in their designs. +EV1.1.70 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that +is easily visible even in bright sunlight. This indicator must show the latched fault rather than +instantaneous status of the AMS. Other indication methods may be used upon application for a +variance with the rules committee +EV2.12 Virtual Accumulators. +In many cases, difficulties can be encountered when multiple accumulator containers are +monitored by a single AMS. Therefore, a vehicle may use a single AMS with more than one +accumulator container by defining a ‘Virtual Accumulator’ as provided below. See: Figure 32. +EV1.1.71 Each housing of the virtual accumulator container must be permanently installed in the +vehicle. i.e. not designed to be removed for charging or exchange. +EV1.1.72 The conduit(s) connecting accumulator housings must be flexible metallic liquid-tight steel +electrical conduit (NEC type LFMC) securely fastened at each end with fittings rated for +metallic LFMC. +EV1.1.73 Connectors between the interconnecting conduit and the housings containing the +accumulators, and along the length of the interconnecting conduit must be rated for LFMC +conduit. +EV1.1.74 The conduit must be red, or painted red +15 +. +EV1.1.75 Any unsupported length of the interconnect conduit may be no greater than 150 mm. i.e. it +must be physically supported at least every 150 mm to ensure that it cannot droop or be +snagged by something on the track. The interconnect conduit must be contained entirely within +the chassis structure. +EV1.1.76 Separate conduits must be provided between housings for: +1. Individual tractive System conductors. (Only one high-current TS conductor may pass +through any one conduit.) +2. AMS wiring such as cell voltage sense wires that are at TS potential. +Note: GLV wiring may be run in its own conduit or outside of conduit. + +15 + LFMC conduit is available with a red jacket - see for example: http://www.afcweb.com/liquid-tuff-conduit/ul- +liquidtight-flexible-steel-conduit-type-lfmc/ + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV1.1.77 All rules relating to accumulator housings (including, but not limited to firewalls, location +etc.) also apply to the interconnect conduit. +EV1.1.78 If the interconnect conduit is the lowest point in the virtual housing it must have a 3-5 mm +drain hole in its lowest point to allow accumulated fluids to drain. +EV1.1.79 Segmentation requirements must be met considering the housings individually, and as an +interconnected system. For example, AMS wires must be grouped according to segment and +must maintain that grouping through to the AMS. +EV1.1.80 Each individual housing must comply with TS fusing requirements. (See EV2.6) i.e., there +must be at least one TS fuse in each container (See Figure 32). +EV1.1.81 A High Voltage Disconnect (HVD) can be installed in the conductors connecting accumulator +housings if mounted in a suitable enclosure. In this case, the accumulator boundary extends to +include conduit and the HVD enclosure. + + + + +Figure 32 - Virtual Accumulator example + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV2 TRACTIVE SYSTEM WIRING AND CONSTRUCTION +EV2.13 Positioning of tractive system parts +EV2.1.1 Housings and/or covers must prevent inadvertent human contact with any part of the tractive +system circuitry. This includes people working on or inside the vehicle. Covers must be secure +and adequately rigid. + Body panels that must be removed to access other components, etc. are not a substitute for +enclosing tractive system conductors. +EV2.1.2 Tractive system components and wiring must be physically protected from damage by rotating +and/or moving parts and must be isolated from fuel system components. +EV2.1.3 Finger Probe Test: Inspectors must not be able to touch any tractive system electrical +connection using a 10 cm long, 0.6 cm diameter non-conductive test probe. + + +Figure 33 - Finger Probe +EV2.1.4 Housings constructed of electrically conductive material must have a minimum-resistance +connection to GLV system ground. (See: ARTICLE EV8). +EV2.1.5 Every housing or enclosure containing parts of the tractive system must be labeled with the +words “Danger”, “High Voltage” and a black lightning bolt on a yellow background. The label +must be at least 4 x 6 cm. (See Figure 34 below.) + + +Figure 34 - High Voltage Label + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV2.1.6 All parts belonging to the tractive system including conduit, cables and wiring must be +contained within the Surface Envelope of the vehicle (See Figure 25) such that they are +protected against being damaged in case of a crash or roll-over situation or being caught +(snagged) by road hazards. +EV2.1.7 If tractive system parts are mounted in a position where damage could occur from a rear or +side impact (below 350 mm from the ground), such as side mounted accumulators +or rear mounted motors, they must be protected by a fully triangulated structure meeting the +requirements of T3.3, or approved equivalent per T3.3.2 or T3.7. +EV2.1.8 Drive motors that are not located fully within the frame, must be protected by an interlock. This +interlock must be configured such that the Shutdown Circuit, EV7.1, will be opened if any part +of the driven wheel assembly is dislocated from the frame. Drive motors located outside the +frame must still comply with EV7.1.3 +EV2.1.9 No part of the tractive-system may project below the lower surface of the frame or the +monocoque in either side or front view. +EV2.1.10 Tractive systems and containers must be protected from moisture in the form of rain or +puddles. +EV2.1.11 Electric motors, accumulators or electronics that use fluid coolants must comply with T8.1 and +T8.2. +EV2.14 TS wiring and conduit +EV2.1.12 All tractive system wiring must be done to professional standards with adequate strain relief +and protection from loosening due to vibration etc. +EV2.1.13 Soldering in the high current path is prohibited. Exception: surface-mount fuses and similar +components that are designed for soldering and the rated current. +1. Fuses must be mechanically supported by a PCB or equivalent, following manufacturer's +instructions (e.g. recommended footprint). Free-hanging fuses connected by wires are not +allowed. +2. Team must submit a design document showing that PCB traces on these boards are properly +designed for the current carried on all circuits. The battery design must still comply with +EV2.6, Accumulator Fusing. +EV2.1.14 All wires, terminals and other conductors used in the tractive system must be sized +appropriately for the continuous rating of the fuse which protects them. Wire size must comply +with the table in Appendix E or alternately, with cable manufacturer's published current rating, +if greater. Wires must be marked with wire gauge, temperature rating and insulation voltage +rating +16 +. +EV2.1.15 The minimum acceptable temperature rating for TS wiring is 90°C. This requirement applies +to wire and cable; it does not apply to conduit. +EV2.1.16 All tractive system wiring that runs outside of electrical enclosures must be either: +1. Orange shielded, dual-insulated cable rated for automotive application, at least 5 mm +overall cable diameter + +16 + Alternatively a manufacturer’s part number printed on the wire will be sufficient if this number can be referenced +to a manufacturer’s data sheet. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +OR +2. Enclosed in ORANGE non-conductive conduit (except for Virtual Accumulator systems +which must use RED conduit. (See EV2.12) +Note: UL Listed Conduit of other colors may be painted or wrapped with colored tape. +EV2.1.17 Conduit must be non-metallic and UL Listed +17 + as: +1. Conduit under UL1660, UL651 or UL651A +OR +2. Non-Metallic Protective Tubing (NMPT) under UL1696. +EV2.1.18 Conduit runs must be one piece. Conduit splices and/or transitions between conduit and +shielded, dual-insulated cable may only occur within an enclosure and must comply with +section EV3.3. +EV2.1.19 Wiring to outboard wheel motors may be in conduit or may use shielded dual insulated cables. +All other tractive system wiring that runs outside the vehicle frame (but within the roll +envelope) must be within conduit. +EV2.1.20 When shielded dual-insulated cable is used, the shield must be grounded at both ends of the +cable. +EV2.1.21 Wiring from motor controller to motor does not require fusing but must be sized for the +controller maximum continuous output current, or per manufacturers instructions. +EV2.15 TS Cable Strain Relief +EV2.1.22 Cable or conduit exiting or entering a tractive system enclosure or the drive motor must use a +liquid-tight fitting proving strain relief to the cable or conduit such that it will withstand a force +of 200N without straining the cable +18 +. +The fitting must be one of the following: +1. For conduit: A conduit fitting rated for use with the conduit used. +2. For shielded, dual insulated cable: +(i) A cable gland rated for use with the cable used +OR +(ii) A connector rated for use with the cable used. The connector must provide +termination of the shield to ground and latch in place securely enough to meet the +strain-relief requirements listed above. Both portions of the connector must meet or +exceed IEC standards IP53 (mated) and IP20 (unmated). +EV2.1.23 Connections to drive motors that do not have provision for conduit connection are allowed to +separate the strain-relief and insulation requirements. Specifically: +1. Cable strain relief must be capable of withstanding a 200N force, and must be within 15 +cm of the motor terminals. + +17 + "UL Recognized" is not the same as "UL Listed". +18 + This will be tested during the electrical tech inspection by pulling on the conduit using a spring scale. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Conventional cable strain relief fittings, mechanical clamps or saddles may be +used, however the integrity of the cable insulation must be protected. +AND +2. the TS wiring must pass EV3.1.3 (finger probe test) +For example, a motor with stud terminals for power input could use a 3D printed plastic cover +on the terminals and suitable cable clamps within 15 cm to provide strain relief. +EV2.16 TS Electrical Connections +EV2.1.24 Tractive system connections must be designed so that they use intentional current paths +through conductors such as copper or aluminum +19 +. Steel is not permitted. +EV2.1.25 Tractive system connections must not include compressible material such as plastic or +phenolic in the stack-up. (i.e. components identified as #1 in Figure 35) + +Figure 35 - Connection Stack-up +Note: The bolt shown in Figure 35 can be steel since it is not the primary conductor. However +the washer (#2), if used, must not be steel, since it is in the primary conduction path. If +possible, no washer should be used in this location, so that the two primary conductors are +directly clamped together. +EV2.1.26 Conductors and terminals must not be modified from their original size/shape and must be +appropriate for the connection being made. +EV2.1.27 Bolts with nylon inserts (Nylocks, etc.) and thread-locking compounds (Loctite, etc.) are not +permitted. +EV2.1.28 All bolted or threaded connections must be torqued properly. The use of a contrasting indicator +paste +20 + is strongly recommended to indicate completion of proper torqueing procedures. + + +19 + Aluminum conductors may be used, but require specific approval from the Formula Hybrid + Electric rules +committee. +20 + Such as DYKEM® Cross-Check Torque Seal®. See: https://www.youtube.com/watch?v=W80C4XfyCQE + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Recommended TS Connection Fasteners +Fasteners specified and/or supplied by the component manufacturer. +Bolts with Belleville (conical) metal locking washers. +All-metal positive locking nuts. (See Figure 23) +Table 11 - Recommended TS Connection Fasteners +EV2.17 Motor Controllers +Note: Commercially available motor controllers containing boost converters that have internal +voltages greater than 300 VDC may be used provided the unit is approved in writing by the +rules committee. +EV2.1.29 The tractive system motor(s) must be connected to the accumulator through a motor controller. +Bypassing the control system and connecting the tractive system accumulator directly to the +motor(s) is prohibited. +EV2.1.30 The accelerator control must be a right-foot-operated foot pedal. Refer to IC1.6 for specific +requirements of the accelerator control +EV2.1.31 The foot pedal must return to its original, rearward position when released. The foot pedal +must have positive stops at both ends of its travel, preventing its sensors from being damaged +or overstressed. +EV2.1.32 All acceleration control signals (between the accelerator pedal and the motor controller) must +have error checking. +For analog acceleration control signals, this error checking must detect open circuit, short to +ground and short to sensor power +For digital acceleration control signals, this error checking must detect a loss of +communication. +EV2.1.33 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control +signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, +must be galvanically isolated and referenced to GLV ground. +Note: If these capabilities are built into the motor controller, then no additional error-checking +circuitry is required. +EV2.1.34 The accelerator signal limit shutoff may be tested during electrical tech inspection by +replicating any of the fault conditions listed in EV3.5.4 +EV2.1.35 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control +signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, +must be galvanically isolated and referenced to GLV ground.. +21 +. +EV2.1.36 Motor controller inputs that are galvanically isolated from the TSV may be run throughout the +vehicle, but must be positively bonded to GLV ground. + +21 + For commercial controllers that do not provide isolated throttle inputs, a remote throttle actuator can be fabricated +with a (grounded) Bowden cable and non-conductive linkages. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV2.1.37 TS drive motors must spin freely when the TS system is in deactivated state, and when +transitioned to a deactivated state. +EV2.18 Energy Meter +EV2.1.38 Vehicles with accumulator energy capacities in excess of the limits in Table 1 must be fitted +with an Energy Meter provided by the organizer to compete in the endurance event. +EV2.1.39 All power flowing between the accumulator and the Tractive System must pass through the +Energy Meter. +EV2.1.40 FH+E does not impose POWER limits and so the only function of the energy meter is to +determine valid laps for the endurance event. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV3 GROUNDED LOW VOLTAGE SYSTEM +EV2.19 Grounded Low Voltage System (GLV) +EV3.1.1 The GLV system may not have a voltage greater than that listed in Table 8. +EV3.1.2 All GLV batteries must be attached securely to the frame. +EV3.1.3 The hot (ungrounded) terminal of the battery must be insulated. +EV3.1.4 One terminal of the GLV battery or other GLV power source must be connected to the chassis +by a stranded ground wire or flexible strap, with a minimum size of 12 AWG or equivalent +cross-section. For vehicles without metal chassis members, the GLV system must be connected +to conductive parts to meet the grounding requirements in EV8.1.2. +EV3.1.5 The ground wire must run directly from the battery to the nearest frame ground and must be +properly secured at both ends. +Note: Through-bolting a ring terminal to a gusset plate or dedicated tab welded to the frame is +highly recommended. +EV3.1.6 Any wet-cell battery located in the driver compartment must be enclosed in a nonconductive +marine-type container or equivalent and include a layer of 1.5 mm aluminum or equivalent +between the container and driver. +EV3.1.7 GLV Battery Pack +1. Team-constructed GLV batteries are allowed. +(i) GLV batteries up to 16.8V (4s LiIon) may be used without a battery management system. +(ii) GLV batteries 16.8V< MaxV<60V must measure the voltage of all series cells and the +temperature of 30% of cells. +2. The GLV battery shall have appropriate over-current circuit protection. +3. Cells wired in parallel must have branch-level overcurrent protection. +4. Team-constructed GLV batteries shall be housed in a container meeting min. firewall rules +(1.6mm aluminum baseline) with a vent/pressure relief path directed away from the driver. +5. GLV / TSV isolation rules still apply. +EV3.1.8 Orange wire and/or conduit may not be used in GLV wiring. Exception: multi-conductor +telecom-type cables containing orange color-coded wires may be used. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV4 TRACTIVE SYSTEM VOLTAGE ISOLATION +Most Formula Hybrid + Electric vehicles contain voltages that could cause injury or death if +they came in contact with a human body. In addition, all Formula Hybrid + Electric +accumulator systems are capable of storing enough energy to cause injury, blindness or death +if that energy is released unintentionally. +To minimize these risks, all tractive system components and wiring must at a minimum +comply with the following rules. +EV2.20 Isolation Requirements +EV4.1.1 All TS wiring and components must be galvanically (electrically) isolated from GLV by +separation and/or insulation. +EV4.1.2 All interaction between TS and GLV must be by means of galvanically isolated devices such as +opto-couplers, transformers, digital isolators or isolated dc-dc converters. +EV4.1.3 All connections from external devices such as laptops to a tractive system component must be +galvanically isolated, and include a connection between the external device ground and the +vehicle frame ground. +EV4.1.4 All isolation devices must be rated for an isolation voltage of at least twice the maximum TS +voltage. +EV2.21 General +EV4.1.5 Tractive system and GLV conductors must not run through the same conduit. +EV4.1.6 Tractive system and GLV wiring must not both be present in one connector. Connectors with +an integral interlock such as the Amphenol SurLok Plus are exempted from this requirement. +EV4.1.7 TS wiring must be separated from the driver's compartment by a firewall. +EV4.1.8 TS wiring must not be present behind the instrument panel. TS wiring must not be present in +the cockpit unless enclosed in conduit and separated from the driver by a firewall. TS potential +must not be present on accelerator pedal or other controls in the cockpit. +EV2.22 Insulation, Spacing and Segregation +EV4.1.9 Tractive system main current path wiring and any TS circuits that are not protected by over- +current devices must be constructed using spacing, insulation, or both, in order to prevent short +circuits between TS conductors. Minimum spacings are listed in Table 12. Insulation used to +meet this requirement must adhere to EV5.4. +EV4.1.10 Where GLV and TS circuits are present in the same enclosure, they must be segregated (in +addition to any insulating covering on the wire) by: +1. at least the distance specified in Table 12 +OR +2. a barrier material meeting the TS/GLV requirements of EV5.4 +EV4.1.11 All required spacings must be clearly defined. Components and cables must be securely +restrained to prevent movement and maintain spacing. +Note: Grouping TS and GLV wiring into separate regions of an enclosure makes it easier to +implement spacing or barriers to meet EV5.3.2 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Maximum Vehicle +TS Voltage +TS/TS +Within Accumulator Container +22 + +TS/GLV +Over Surface +(Creepage) Through Air +V < 100 VDC 5.3 mm 2.1 mm 10.0 mm +100 VDC < V < 200 VDC 7.5 mm 4.3 mm 20.0 mm +V > 200 VDC 9.6 mm 6.4 mm 30.0 mm +Table 12 – Minimum Spacings +23 + +EV2.23 Insulation. +EV4.1.12 All electrical insulating material must be appropriate and adequately robust for the application +in which it is used. +EV4.1.13 Insulating materials used for TS insulation or TS/GLV segregation must: +1. Be UL recognized (i.e., have an Underwriters Laboratories +24 + or equivalent rating and +certification). +2. Must be rated for the maximum expected operating temperatures at the location of use, or +the temperatures listed in Table 13 (whichever is greater). +3. Must meet the minimum thickness requirements listed in Table 13 +4. The TS/GLV requirement also applies to TS to chassis ground insulation. + + +Minimum +Temperature +Minimum Thickness +TS / GLV +(see Note below) +150º C 0.25 mm +TS / TS +TS/Chassis +Ground +90º C +As required to be rated for +the full TS voltage +Table 13 - Insulating Material - Minimum Temperatures and Thicknesses +Note: For TS/GLV isolation, insulating material must be used in addition to any insulating +covering provided by the wire manufacturer. +EV4.1.14 Insulating materials must extend far enough at the edges to meet spacing and creepage +requirements between conductors. + +22 + Outside of the accumulator container TS/TS spacing should comply with standard industry practice. +23 + Teams that have pre-existing systems built to comply with Table 10 in the 2016 rules will be permitted +24 + http://www.ul.com + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.1.15 Thermoplastic materials such as vinyl insulation tape may not be used. Thermoset materials +such as heat-shrink and self-fusing tapes (typically silicone) are acceptable. + +Figure 36 – Creepage Distance Example +EV2.24 Printed circuit board (PCB) isolation +Printed circuit boards designed and/or fabricated by teams must comply with the following: +EV4.1.16 If tractive system circuits and GLV circuits are on the same circuit board they must be on +separate, clearly defined areas of the board. Furthermore, the tractive system and GLV areas +must be clearly marked on the PCB. +EV4.1.17 Prototyping boards having plated holes and/or generic conductor patterns may not be used for +applications where both GLV and TS circuits are present on the same board. Bare perforated +board may be used if the spacing and marking requirements in EV5.5.3 and EV5.5.1 are met, +and if the board is removable for inspection. +EV4.1.18 Required spacings between TS and GLV conductors are shown in Table 14. If a +cut or hole in the PC board is used to allow the “through air” spacing, the cut must not be plated +with metal, and the distance around the cut must satisfy the “over surface” spacing requirement. +Spacings between TS and GLV conductors on inner layers of PCBs may be reduced to the +“through air” spacings. + +Maximum Vehicle TS Voltage +Spacing +Over surface Through air +Under +Conformal +Coating + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +0-50 V 1.6 mm 1.6 mm 1 mm +50-150 V 6.4 mm 3.2 mm 2 mm +150-300 V 8.5 mm 6.4 mm 3mm +301-600V 12.7 mm 9.5 mm 4 mm +Table 14 – PCB TS/GLV Spacings +Note: Teams must be prepared to demonstrate spacings on team-built equipment. Information +on this must be included in the ESF (EV13.1). If integrated circuits are used such as opto- +couplers which are rated for the respective maximum tractive system voltage, but do not fulfill +the required spacing, then they may still be used and the given spacing do not apply. This applies +to the pin-to-pin through air and the pin-to-pin spacing over the package surface, but does not +exempt the need to slot the board where pads would otherwise be too close. + +1. Teams must supply high resolution (min. 300 dpi at 1:1) digital photographs of team- +designed boards showing: +(i) All layers of unpopulated boards (inner layers or top/bottom layers that don’t +photograph well can be provided as copies of artwork files.) +(ii) Both top and bottom of fully populated and soldered boards. +EV4.1.19 If dimensional information is not obvious (i.e. 0.1 in x 0.1 in spacing) then a dimensional +reference must be included in the photo. Spare boards should be made available for inspection. +Teams should also be prepared to remove boards for direct inspection if asked to do so during +the technical inspection. +EV4.1.20 Printed circuit boards located inside the accumulator container and having tractive system +connections on them must be fused to limited the power on the board to 600 watt or less, with +the exception of precharge and discharge circuits. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV3 FUSING - GENERAL +EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging +system) must be appropriately fused. +EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating +of any electrical component that it protects. This includes wires, bus bars, battery cells or other +conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current +rating may be used for TS wiring if greater than the Appendix E value. +Note: Many fuses have a peak current capability significantly higher than their continuous +current capability. Using such a fuse allows using a relatively small wire for a high peak +current, because the rules only require the wire to be sized for the continuous current rating of +the fuse. +EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. +EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating +equal to or greater than the maximum voltage of the system in which they are used +25 +. +EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit +current of the system that it protects. +EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an +uncontrolled energy source (e.g., a battery). +Note: For this rule, a battery is considered an energy source even for wiring intended for +charging the battery, because current could flow in the opposite direction in a fault scenario. +EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current +limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at +the branching point, if the branch wire is too small to be protected by the main fuse for the +circuit. +Note: For further guidance on fusing, see the Fusing Tutorial found here: +https://drive.google.com/drive/u/0/search?q=fusing%20tutorial + + +25 + Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating +must be specifically called out in order for the fuse to be accepted as DC rated. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV4 SHUTDOWN CIRCUIT AND SYSTEMS +EV4.1 Shutdown Circuit +The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. +It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the +flow of current through this loop is interrupted, the AIRs will open, disconnecting the +vehicle’s high voltage systems from the source of that voltage within the accumulator +container. +Shutdown may be initiated by several devices having different priorities as shown in the +following table. + +Figure 37 - Priority of shutdown sources +EV4.1.28 The shutdown circuit must consist of at least: +1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 +2. Tractive System Master Switch (TSMS) See: EV7.4 +3. Two side mounted shutdown buttons (BRBs) See: EV7.5 +4. Cockpit-mounted shutdown button. See: EV7.6 +5. Brake over-travel switch. See: T7.3 +6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: +EV7.9 and Figure 38. +7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). +See: EV2.11 and Figure 38. +8. All required interlocks. +9. Both IMD and AMS must use mechanical latching means as described in Appendix G. +Latch reset must be by manual push button. Logic-controlled reset is not allowed. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +10. If CAN communication are used for safety functions, a relay controlled by an +independent CAN watchdog device that opens if relevant CAN messages are not +received. This relay is not required to be latching. +EV4.1.29 Any failure causing the GLV system to shut down must immediately deactivate the tractive +system as well. +EV4.1.30 The safety shutdown loop must be implemented as a series connection (logical AND) of all +devices included in EV7.1.1. Digital logic or microcontrollers may not be used for this +function. Normally open auxiliary relays may be used to power high-current devices such as +fans, pumps etc. The AIRs must be powered directly by the current flowing through the loop. +EV4.1.31 All components in the shutdown circuit must be rated for the maximum continuous current in +the circuit (i.e. AIR and relay current). +Note: A normally-open relay may be used to control AIR coils upon application to the rules +committee. +EV4.1.32 In the event of an AMS, IMD or Brake over-travel fault, it must not be possible for the driver to +re-activate the tractive system from within the cockpit. This includes “cycling power” through +the use of the cockpit shutdown button. +Note: Resetting or re-activating the tractive system by operating controls which cannot be +reached by the driver +26 + is considered to be working on the car. +EV4.1.33 Electronic systems that contain internal energy storage must be prevented from feeding power +back into the vehicle GLV circuits in the event of GLV shutdown. + + +26 + This would include the use of a wireless link remote from the vehicle. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +*GLV fuse to comply with EV6.1.7 +Figure 38 - Example Master Switch and Shutdown Circuit Configuration +EV4.2 Master Switches +EV4.1.34 Each vehicle must have two Master Switches: +1. Grounded Low Voltage Master Switch (GLVMS) +2. Tractive System Master Switch (TSMS). +EV4.1.35 Both master switches must be located on the right side of the vehicle, in proximity to the Main +Hoop, at the driver’s shoulder height and be easily actuated from outside the car. +EV4.1.36 Both master switches must be of the rotary type, with a red, removable key, similar to the one +shown in Figure 39. +EV4.1.37 Both master switches must be direct acting. i.e. they may not operate through a relay. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.1.38 Removable master switches are not allowed, e.g. mounted onto removable body work. +EV4.1.39 The function of each switch must be clearly marked with “GLV” and “TSV”. +EV4.1.40 The “ON” position of both switches must be parallel to the fore-aft axis of the vehicle +EV4.3 Grounded Low Voltage Master Switch (GLVMS) +EV4.1.41 The GLVMS is the highest priority shutdown and must disable power to all GLV electrical +circuits. This includes the alternator, lights, fuel pump(s), I.C. engine ignition and electrical +controls. +EV4.1.42 All GLV current must flow through the GLVMS. +EV4.1.43 Vehicles with GLV charging systems such as alternators or DC/DC converters must use a +multi-pole switch to isolate the charging source from the GLV as illustrated in Figure 38 +27 +. +EV4.1.44 The GLVMS must be identified with a label with a red lightning bolt in a blue triangle. (See +Figure 40) +EV4.4 Tractive System Master Switch (TSMS) +EV4.1.45 The TSMS must open the Tractive System shutdown circuit. +EV4.1.46 The TSMS must be the last switch in the loop carrying the holding current to the AIRs. (See +Figure 38) + + + + +Figure 39 - Typical Master Switch + +27 + https://www.pegasusautoracing.com/productdetails.asp?RecID=1464 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 40 - International Kill Switch Symbol +EV4.5 Side-mounted Shutdown Buttons (BRB) +The side-mounted shutdown buttons (Big Red Buttons – or BRBs) are the first line of defense +for a vehicle that is malfunctioning or in trouble. Corner and safety workers are instructed to +push the BRB first when responding to an emergency. +EV4.1.47 One button must be located on each side of the vehicle behind the driver’s compartment at +approximately the level of the driver’s head. They must be installed facing outward and be +easily visible from the sides of the car. +EV4.1.48 The side-mounted BRBs must be red and a minimum of 38 mm. in diameter. +EV4.1.49 The side-mounted shut-down buttons must be a push-pull or push-rotate emergency switch +where pushing the button opens the shutdown circuit. +EV4.1.50 The side-mounted shutdown buttons must shut down all electrical systems with the exception +of the high-current connection to the engine starter motor. +EV4.1.51 The shut-down buttons may not act through logic such as a micro-controller or relays. +EV4.1.52 The shutdown buttons may not be easily removable, e.g. they may not be mounted onto +removable body work. +EV4.1.53 The Side-mounted BRBs must be identified with a label with a red lightning bolt in a blue +triangle. (See Figure 40) +EV4.6 Cockpit Shutdown Button (BRB) +EV4.1.54 One shutdown button must be mounted in the cockpit and be easily accessible by the driver +while fully belted in and with the steering wheel in any position. +EV4.1.55 The cockpit shut-down button must be a push-pull or push-rotate emergency switch where +pushing the button opens the shutdown circuit. The cockpit shutdown button must be red and at +least 24 mm in diameter. +EV4.1.56 Pushing the cockpit mounted button must open the AIRs and shut down the I.C. engine. (See: +Figure 37) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.1.57 The cockpit shutdown button must be driver resettable. i.e. if the driver disables the system by +pressing the cockpit-mounted shutdown button, the driver must then be able to restore system +operation by pulling the button back out. +Note: There must still be one additional action by the driver after pulling the button back out +to reactivate the motor controller per EV7.7.2. +EV4.1.58 The cockpit shut-down buttons may not act through logic such as a micro-controller or relays. +EV4.7 Vehicle Start button +EV4.1.59 The GLV system must be powered up before it is possible to activate the tractive system +shutdown loop. +EV4.1.60 After enabling the shutdown circuit, at least one action, such as pressing a “start” button must +be performed by the driver before the vehicle is “ready to drive”. i.e. it will respond to any +accelerator input. +EV4.1.61 The “start” action must be configured such that it cannot inadvertently be left in the “on” +position after system shutdown. +EV4.8 Shutdown system sequencing +EV4.1.62 A recommended sequence of operation for the shutdown circuit and related systems is shown +in the form of a state diagram in Figure 41. +EV4.1.63 Teams must: +1. Demonstrate that their vehicle operates according to this state diagram, +OR +2. Obtain approval for an alternative state diagram by submitting an electrical rules query +on or before the ESF submission deadline, and demonstrate that the vehicle operates +according to the approved alternative state diagram. + +IMPORTANT NOTE: If during technical inspection, it is found that the shutdown +circuit operates differently from the standard or approved alternative state diagram, the +car will be considered to have failed inspection. + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 41 - Example Shutdown State Diagram +EV4.9 Insulation Monitoring Device (IMD) +EV4.1.64 Every car must have an insulation monitoring device installed in the tractive system. +EV4.1.65 The IMD must be designed for Electric Vehicle use and meet the following criteria: robustness +to vibration, operating temperature range, availability of a direct output, a self-test function, and +must not be powered by the system that is monitored. The IMD must be a stand-alone unit. +IMD functionality integrated in an AMS is not acceptable (Bender A-ISOMETER ® iso-F1 +IR155-3203, IR155-3204, and Iso175C-32-SS are recommended examples). +EV4.1.66 The response value of the IMD needs to be set to no less than 500 ohm/volt, related to the +maximum tractive system operation voltage. +EV4.1.67 In case of an insulation failure or an IMD failure, the IMD must shut down all the electrical +systems, open the AIRs and shut down the I.C. drive system. (Some GLV systems such as +accumulator cooling pumps and fans, may remain energized – See Figure 37) +EV4.1.68 The tractive system must remain disabled until manually reset by a person other than the +driver. It must not be possible for the driver to re-activate the tractive system from within the +car in case of an IMD-related fault. +EV4.1.69 Latching circuitry added by teams to comply with EV7.9.5 must be implemented using +electro-mechanical relays. (See Appendix G – Example Relay Latch Circuits.) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.1.70 The status of the IMD must be displayed to the driver by a red indicator light in the cockpit. +(See EV9.4). The indicator must show the latched fault and not the instantaneous status of the +IMD. +Note: The electrical inspectors will test the IMD by applying a test resistor between tractive +system (positive or negative) and GLV system ground. This must deactivate the system. +Disconnecting the test resistor may not re-activate the system. i.e. the tractive system must +remain inactive until it is manually reset. +EV4.1.71 The IMD high voltage sense connections may be unfused if wiring is less than 30 cm in +length, is less than or equal to #16 wire gauge, has an insulation voltage rating of at least 600V, +and is “double insulated” (e.g. has additional sleeving on both conductors). If any of these +conditions is not met, the IMD HV sense connections must be fused in accordance with +EV3.2.3 and ARTICLE EV6. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV5 GROUNDING +EV4.10 General +EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a +resistance below 300 mΩ to GLV system ground. + Accessible parts are defined as those that are exposed in the normal driving configuration or +when the vehicle is partially disassembled for maintenance or charging. +EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon +fiber parts, etc.) that could potentially become energized (including post collision or accident), +no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system +ground. +NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or +similar modifications to keep the ground resistance below 100 ohms. +EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV +system ground. +EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 +AWG and be stranded. +Note: For GLV system grounding conductor size see EV4.1.4. +EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the +vehicle which is likely to be conductive, for example the driver's harness attachment bolts. +Where no convenient conductive point is available then an area of coating may be removed. +Note: If the resistance measurement displayed by a conventional two-wire meter is slightly +higher than the requirement, a four-terminal measurement technique may be used. If the four- +terminal measurement (which is more accurate) meets the requirement, then the vehicle passes +the test. +See: https://en.wikipedia.org/wiki/Four-terminal_sensing +EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS +communication) will be required to document and demonstrate shutdown equivalent to BRB +operation if CAN communication is interrupted. A solution to this requirement may be a +separate device with relay output that monitors CAN traffic. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV6 SYSTEM STATUS INDICATORS +EV4.11 Tractive System Active Lamp (TSAL) +EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop +which must be lit and clearly visible any time the AIR coils are energized. +EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green +for TS not present are also acceptable. +EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. +EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. +EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles +which are covered by the main roll hoop) even in very bright sunlight. +EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The +person's minimum eye height is 1.6 m. +NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily +visible during track operations the team may not be allowed to compete in any dynamic event +before the problem is solved. +EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. +EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator +containers is above a threshold calculated as the higher value of 60V or 50% of the nominal +accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at +voltages below 20V. The TSAL system must be powered entirely by the tractive system and +must be directly controlled by voltage being present at the output of the accumulator (no +software control is permitted). +EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. +Note: This requirement may be met by locating an isolated dc-dc converter inside a TS +enclosure, and connecting the output of the dc-dc converter to the lamp. +(Because the voltage driving the lamp is considered GLV, one side of the voltage driving the +lamps must be ground-referenced by connecting it to the frame in order to comply with +EV4.1.4.) +EV4.12 Ready-to-Drive Sound +EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 +seconds, when it is ready to drive. (See EV7.7) +Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque +encoder / accelerator pedal. +EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum +loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter +28 +. +EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one +in the front, and one from each side of the vehicle. + +28 + Some compliant devices can be found here: https://www.mspindy.com/ + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV6.1.13 The vehicle must not make any other sounds similar to the Ready-to-Drive sound. +EV4.13 Electrical Systems OK Lamps (ESOK) +ESOK indicator lamps are required for hybrid and hybrid-in-progress vehicles. They are not +required for electric-only vehicles. +The purpose of the ESOK indicators is to ensure that a hybrid vehicle is operating with the +electric traction system engaged, and to prevent IC-only operation in dynamic events. +This requirement is in addition to TSAL indicators which are required for all vehicle classes. +EV6.1.14 Hybrid vehicles must have two ESOK lamps. One mounted on each side of the roll bar in the +vicinity of the side-mounted shutdown buttons (EV7.5) that can easily be seen from the sides of +the vehicle.The indicators must be Amber, complying with DOT FMVSS 108 for trailer +clearance lamps +29 +. See Figure 42. They must be clearly labeled “ESOK”. +EV6.1.15 The ESOK indicators must be powered from the circuit feeding the AIR (contactor) coils. If +there is an electrical system fault, or a “BRB” is pressed, or the TS master switch is opened, the ESOK +indicators must extinguish. See Figure 38 for an example of ESOK lamp wiring. +See Figure 38 for an example of ESOK lamp wiring. + + +Figure 42 – Typical ESOK Lamp +EV4.14 Insulation Monitoring Device (IMD) +EV6.1.16 The status of the IMD must be shown to the driver by a red indicator light in the cockpit that is +easily visible even in bright sunlight. This indicator must light up if the IMD detects an +insulation failure or if the IMD detects a failure in its own operation e.g. when it loses reference +ground. +EV6.1.17 The IMD indicator light must be clearly marked with the lettering “IMD” or “GFD” (Ground +Fault Detector). +EV4.15 Accumulator Voltage Indicator +EV6.1.18 Any removable accumulator container must have a prominent indicator, such as an LED, that +is visible through a closed container that will illuminate whenever a voltage greater than 60 +VDC is present at the vehicle side of the AIRs. +EV6.1.19 The accumulator voltage indicator must be directly controlled by voltage present at the +container connectors using analog electronics. No software control is permitted. + +29 + https://www.ecfr.gov/cgi-bin/text-idx?node=se49.6.571_1108 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.16 Accumulator Monitoring System (AMS) +EV6.1.20 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that +is easily visible even in bright sunlight. This indicator must light up if the AMS detects an +accumulator failure or if the AMS detects a failure in its own operation. +EV6.1.21 The AMS indicator light must be clearly marked with the lettering “AMS”. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV5 ELECTRICAL SYSTEM TESTS +Note: During electrical tech inspection, these tests will normally be done in the following +order: IMD test, insulation measurement, AMS function then Rain test. +EV5.1 Insulation Monitoring Device (IMD) Test +EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done +by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive +vehicle parts while the tractive system is active, as shown in the example below. +EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault +resistance of 250 ohm/volt (50% below the response value). +Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. +EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the +first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take +part in any dynamic event if any of the seals are broken until the IMD test is successfully +passed again. + + +Figure 43 – Insulation Monitoring Device Test +EV5.2 Insulation Measurement Test +EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive +system and control system ground. The available measurement voltages are 250 V, 500 V and +750 V DC. + All cars will be measured with the next available voltage level. For example, a 175 V system +will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V +system will be measured with 750 V etc. +EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least +500 ohm/volt related to the maximum nominal tractive system operation voltage. +EV5.3 Tractive System Measuring Points (TSMP) +The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, +EV2.8.3. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +They may also be used to ensure the isolation of the tractive system of the vehicle during +possible rescue operations after an accident or when work on the vehicle is to be done. +EV6.1.27 Two tractive system voltage measuring points must be installed in an easily accessible +30 + well +marked location. Access must not require the removal of body panels. The TSMP jacks must be +marked "Gnd", "TS+" and "TS-". +EV6.1.28 The TSMPs must be protected by a non-conductive housing that can be opened without tools. +EV6.1.29 Shrouded 4 mm banana jacks that accept shrouded (sheathed) banana plugs with non- +retractable shrouds must be used for the TSMPs and the system ground measuring point +(EV10.3.6). + See Figure 44 for examples of the correct jacks and of jacks that are not permitted because they +do not accept the required plugs (also shown). +EV6.1.30 The TSMPs must be connected, via current limiting resistors, to the positive and negative +motor controller/inverter supply lines. (See Figure 38) The TSMP must measure motor +controller input voltage even if segmenting or TSMS switches are opened. +EV6.1.31 The wiring to each TSMP must be protected with a current limiting resistor sized per Table 15. +(Fuses or other forms of overcurrent protection are not permitted). The resistor must be located +as close to the voltage source as practical and must have a power rating of: +Maximum TS Voltage Resistor Value +<= 200 V** 5 kΩ +201 – 400 V 10 kΩ +401 – 600 V 15 kΩ +Table 15-TSMP Resistor Values +31 + + The resistor must be located as close to the voltage source as practical and must have a +power rating of: + 2( +푇푆푉 +푚푎푥 +2 +푅 +) + +but not less than 5 W. +EV6.1.32 A GLV system ground measuring point must be installed next to the TSMPs. This measuring +point must be connected to the GLV system ground, must be a 4 mm shrouded banana jack and +marked "GND". + + +30 + It should be possible to insert a connector with one hand while standing next to the car. +31 + Teams with vehicles with Maximum TS Voltage of 200 V or less may use existing 10 kΩ resistor values upon +application to the rules committee + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 44 + +EV5.4 Accumulator Monitoring System (AMS) Test +EV6.1.33 The AMS will be tested in one of two ways: +1. By varying AMS software setpoints so that actual cell voltage is above or below the trip limit. +2.The AMS may be tested by varying simulated cell voltage to the AMS test connector, following +open accumulator safety procedures, to make the actual cell voltage above or below the +trip limit. +EV6.1.34 The requirement for an AMS test port for commercial accumulator assemblies may be waived, +or alternate tests may be substituted, upon application to the rules committee. + +EV5.5 Rain test +EV6.1.35 Vehicles that pass the rain test will receive a “Rain Certified” sticker and may be operated in +damp or wet conditions. See: ARTICLE D3 + If a vehicle does not pass the rain test, or if the team chooses to forego the rain test, then the +vehicle is not rain certified and will not be allowed to operate in damp or wet conditions. +EV6.1.36 During the rain test: +1. The tractive system must be active. +2. It is not allowed to have anyone seated in the car. +3. The vehicle must be on stands such that none of the driven wheels touch the ground. +EV6.1.37 Water will be sprayed at the car from any possible direction for 120 seconds. The water spray +will be rain-like. There will be no high-pressure water jet directed at the car. +EV6.1.38 The test is passed if the IMD does not trip while water is sprayed at the car and for 120 +seconds after the water spray has stopped. Therefore, the total time of the rain test is 240 +seconds, 120 seconds with water-spray and 120 seconds without. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV6.1.39 Teams must ensure that water cannot accumulate anywhere in the chassis. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV1 POUCH TYPE LITHIUM-ION CELLS + +Important Note: Designing an accumulator system utilizing pouch cells is a substantial +engineering undertaking, which may be avoided by using prismatic or cylindrical cells. + +EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion +and compression requirements, mechanical constraint, and tab connections. +EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, +for review, in their ESF1 and ESF2 submissions. + + + + + + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV6 HIGH VOLTAGE PROCEDURES & TOOLS + +The following rules relate to procedures that must be followed during the Formula Hybrid + +Electric competition. It is strongly recommended that these or similar rules be instituted at the +team's home institutions. +It is also important that all team members view the Formula Hybrid + Electric electrical safety +lecture, which can be found here: +https://www.youtube.com/watch?v=f_zLdzp1egI&feature=youtu.be + +EV6.1 Working on Tractive Systems or accumulators +EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and +that all team members know and follow. +EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated +by using the maintenance plugs. (See EV2.7). +EV6.1.42 If the organizers have provided a “Designated Charging Area”, then opening of or working on +accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical +Tech Inspection. +EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. +EV6.1.44 Whenever the accumulator is open or being worked on, a “Danger High Voltage” sign (or +other warning device provided by the organizers) must be displayed. +Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. +EV6.2 Charging +EV6.1.45 If the organizers have provided a “Designated Charging Area”, then charging tractive system +accumulators is only allowed inside this area. +EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a +(minimum) 16 AWG green wire during charging. +Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the +competition site. +EV6.1.47 If the organizers have provided “High Voltage” signs and/or beacons, these must be displayed +prominently while charging. +EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable +accumulator container. +EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the +accumulators are charged externally or internally) must have a prominent sign with the +following data: +1. Team name +2. RSO Name with cell phone number(s). +EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV6.1.51 All connections of the charger(s) must be isolated and covered, with intact strain relief and no +fraying of wires. +EV6.1.52 No work is allowed on any of the car’s systems during charging if the accumulators are +charging inside of or connected to the car. +EV6.1.53 No grinding, drilling, or any other activity that could produce either sparks or conductive +debris is allowed in the charging area. +EV6.1.54 At least one team member who has knowledge of the charging process must stay with the +accumulator(s) / car during charging. +EV6.1.55 Moving accumulator cells and/or stack(s) around at the event site is only allowed inside a +completely closed accumulator container. +EV6.1.56 High Voltage wiring in an offboard charger does not require conduit; however, it must be a +UL listed flexible cable that complies with NEC Article 400; jacketed. +EV6.1.57 The vehicle charging connection must be appropriately fused for the rating of its connector +and cabling in accordance with EV6.1.1. +EV6.1.58 The vehicle charging port must only be energized when the tractive system is energized and +the TSAL is flashing. +i.e. there must be no voltage present on the charging port when the tractive system is de- +energized. +EV6.1.59 If charging on the vehicle, AMS and IMD systems must be active during charging. The +external charging system must shut down if there is an AMS or IMD fault, or if one of the +shutdown buttons (See EV7.5) is pressed. If charging off the vehicle, equivalent AMS and IMD +protection must be provided. If charging off the vehicle, the charging cart and any exposed +metal must be connected to ac-power ground. +EV6.3 Accumulator Container Hand Cart +EV6.1.60 In case removable accumulator containers are used in order to accommodate charging, a hand +cart to transport the accumulators must be presented at Electrical Tech Inspection. +EV6.1.61 The hand cart must have a brake such that it can only be released using a dead man's switch, +i.e. the brake is always on except when someone releases it by pushing a handle for example. +EV6.1.62 The brake must be capable to stop the fully loaded accumulator container hand cart. +EV6.1.63 The hand cart must be able to carry the load of the accumulator container(s). +EV6.1.64 The hand cart(s) must be used whenever the accumulator container(s) are transported on the +event site. +EV6.4 Required Equipment +Each team must have the following equipment accessible at all times during the event. The +equipment must be in good condition, and must be presented during technical inspection. (See +also Appendix F) +1. Multimeter rated for CAT III use with UL approval. (Must accept shrouded banana +leads.) +2. Multimeter leads rated for CAT III use with shrouded banana leads at one end and +probes at the other end. The probes must have finger guards and no more than 3 mm of + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +exposed metal. (Heat shrink tubing may be used to cover additional exposed metal on +probes.) +3. Multimeter leads rated for CAT III use with shrouded banana plugs at both ends. +4. Insulated tools. (i.e. screwdrivers, wrenches etc. compatible with all fasteners used +inside the accumulator housing.) +5. Face shield which meets ANSI Z87.1-2003 +6. HV insulating gloves (tested within the last14 Months) plus protective outer gloves. +7. HV insulating blanket(s) of sufficient size and quantity to cover the vehicle’s +accumulator(s). +8. Safety glasses with side shields (ANSI Z87.1-2003 compliant) for all team members. + +Note: All electrical safety items must be rated for at least the maximum tractive system +voltage. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV7 REQUIRED ELECTRICAL DOCUMENTATION +EV7.1 Electrical System Form – Part 1 +Part 1 of the ESF requests preliminary design information. This is so that the technical +reviewers can identify areas of concern early and provide feedback to the teams. +EV7.2 Electrical System Form – Part 2 +Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. +This information must be reentered in Part 2. However it is not expected that the fields will +contain identical information, since many aspects of a design will change as a project evolves. +EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the +voltage level, the topology, the wiring in the car and the construction and build of the +accumulator(s). +EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and +show that none of these ratings are exceeded (including wiring components). This includes +stress caused by the environment e.g. high temperatures, vibration, etc. +EV6.1.67 A template containing the required structure for the ESF will be made available online. +EV6.1.68 The ESF must be submitted as a Microsoft Word format file. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV7 - ACRONYMS +AC Alternating Current +AIR Accumulator Isolation Relay +AMS Accumulator Management System +BRB Big Red Buttons (Emergency shutdown switches) +ESF Electrical System Form +ESOK Electrical Systems OK Lamp +GLV Grounded Low Voltage +GLVMS Grounded Low Voltage Master Switch +HVD High Voltage Disconnect +IMD Insulation Monitoring Device +PCB Printed Circuit Board +SMD Segment Maintenance Disconnect +TS Tractive System +TSMP Tractive System Measuring Point +TSMS Tractive System Master Switch +TSV Tractive System Voltage +TSAL Tractive System Active Lamp + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART S1 - STATIC EVENTS +Presentation 150 points +Design 200 points +Total 350 points +Table 15 – Static Event Maximum Scores + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE S1 TECHNICAL INSPECTION +1S1.1 Objective +1S1.1.1 The objective of technical inspection is to determine if the vehicle meets the FH+E rules +requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules. +1S1.1.2 For purposes of interpretation and inspection the violation of the intent of a rule is considered a +violation of the rule itself. +1S1.1.3 Technical inspection is a non-scored activity. +1S1.2 Inspection & Testing Requirement +1S1.2.1 Each vehicle must pass all parts of technical inspection and testing, and bear the inspection +stickers, before it is permitted to participate in any dynamic event or to run on the practice +track. The exact procedures and instruments employed for inspection and testing are entirely at +the discretion of the Chief Technical Inspector. +1S1.2.2 Technical inspection will examine all items included on the Inspection Form found on the +Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) +plus any other items the inspectors may wish to examine to ensure conformance with the Rules. +1S1.2.3 All items on the Inspection Form must be clearly visible to the technical inspectors. +1S1.2.4 Visible access can be provided by removing body panels or by providing removable access +panels. +1S1.2.5 Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification +and Repairs, it must remain in the “As-approved” condition throughout the competition and +must not be modified. +1S1.2.6 Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final +and are not permitted to be appealed. +1S1.2.7 Technical inspection is conducted only to determine if the vehicle complies with the +requirements and restrictions of the Formula Hybrid + Electric rules. +1S1.2.8 Technical approval is valid only for the duration of the specific Formula Hybrid + Electric +competition during which the inspection is conducted. +1S1.3 Inspection Condition +Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, +complete and ready-to-run. Technical inspectors will not inspect any vehicle presented +for inspection in an unfinished state. +This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). +Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished. +1S1.4 Inspection Process +Vehicle inspection will consist of five separate parts as follows: +(a) Part 1: Preliminary Electrical Inspection +Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed +to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the +Preliminary Electrical Inspection. +(b) Part 2: Scrutineering - Mechanical + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Each vehicle will be inspected to determine if it complies with the mechanical and structural +requirements of the rules. This inspection will include examination of the driver’s +equipment (ARTICLE T5) a test of the emergency shutdown response time (Rule T4.9) +and a test of the driver egress time (Rule T4.8). +The vehicle will be weighed, and the weight placed on a sticker affixed to the vehicle for reference +during the Design event. +(c) Part 3: Scrutineering – Electrical +Each vehicle will be inspected for compliance with the electrical portions of the rules. +Note: This is an extensive and detailed inspection. Teams that arrive well-prepared can reduce the +time spent in electrical inspection considerably. +The electrical inspection will include all the tests listed in EV9.5.1. +Note: In addition to the electrical rules contained in this document, the electrical inspectors will use +SAE Standard J1673 “High Voltage Automotive Wiring Assembly Design” as the +definitive reference for sound wiring practices. +Note: Parts 1, 2 and 3 must be passed before a vehicle may apply for Part 4 or Part 5 inspection. +(d) Part 4: Tilt Table Tests +Each vehicle will be tested to insure it satisfies both the 45 degree (45°) fuel and fluid tilt +requirement (Rule T8.5.1) and the 60 degree (60°) stability requirement (Rule T6.7). +(e) Part 5: Noise, Master Switch, and Brake Tests. +Noise will be tested by the specified method (Rule IC3.2). If the vehicle passes the noise test then +its master switches (EV7.2) will be tested. +Once the vehicle has passed the noise and master switch tests, its brakes will be tested by the +specified method (see Rule T7.2). +1S1.5 Correction and Re-inspection +1S1.5.1 If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, +then the team must correct the problem and have the car re-inspected. +1S1.5.2 The judges and inspectors have the right to re-inspect any vehicle at any time during the +competition and require correction of non-compliance. +1S1.6 Inspection Stickers +Inspection stickers issued following the completion of any part of technical inspection must be placed on +the upper nose of the vehicle as specified in T13.4 “Technical Inspection Sticker Space”. +Inspection stickers are issued contingent on the vehicle remaining in the required condition +throughout the competition. Inspection stickers may be removed from vehicles that are not in +compliance with the rules or which are required to be re-inspected. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE S2 PROJECT MANAGEMENT +1S2.1 Project Management Objective +The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team’s +ability to structure and execute a project management plan that helps the team define and meet +its goals. +A well written project management plan will not only aid each team in producing a functional, rules +compliant race car on-time, it will make it much easier to create the Change Management +Report and Final Presentation components of the Project Management Event. +Several resources are available to guide work in these areas. They can be found in Appendix C. +No team should begin developing its project management plan without FIRST: +(a) Reviewing “Application of the Project Management Method to Formula Hybrid + +Electric”, by Dr. Edward March, former Formula Hybrid + Electric Chief Project +Management Judge. +(b) Viewing in its entirety Dr. March’s 12-part video series”Formula Hybrid + Electric +Project Management”. +(c) Reading “Formula Hybrid + Electric Project Management Event Scoring Criteria”, found +in Appendix C of the Formula Hybrid + Electric Rules. +(d) Watching an example of a “perfect score” presentation, from a previous competiton. +1S2.2 Project Management Segments +The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of +a written project plan (2) a written change management report, and, (3) an oral final +presentation assessing the overall project management experience to be delivered before a +review board at the competition. + +Segment Points +Project Plan Report 55 +Change Management +Report +40 +Presentation 55 +Total 150 +Table 16 - Project Management Scoring +1S2.3 Submission 1 -- Project Plan Report +1S2.3.1 Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that +reflects its goals and objectives for the upcoming competition, the management structure, the +tasks that will be required to accomplish these objectives, and the time schedule over which +these tasks will be performed. The topics covered in the Project Plan Report should include: +(a) Scope: What will be accomplished, “SMART” goals and objectives (see Appendix C for +more information), major deliverables and milestones. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(b) Operations: Organization of the project team, Work Breakdown Structure, project +timeline, and a budget and funding strategy. +(c) Risk Management: tasks expected to be particularly difficult for the team, but whose +completion is essential for achieving team goals and having a functional car ready before +shipment to the track; contingency plans to mitigate these risks if problems arise during +project execution. +(d) Expected Results: Team goals and objectives quantified into “measure of success”. +These attributes are useful for assigning task priorities and allocating resources during +project execution. They are also used to determine the extent to which the goals have +been achieved. +(e) Change Management Process: The system designed by the team for administering +project change and maintaining communication across all team members. +1S2.3.2 This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of +text. Appendices with supporting information may be attached to the back of the Project Plan. +Note 1: Title pages, appendices and table-of-contents do not count as “pages”. +Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + +Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact +due date. +Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project +Management judges a one half hour online review session may be made available to each team. + +1S2.4 Submission 2 – Change Management Report + +1S2.4.1 Following completion and acceptance of the formal project plan by student team members, the +project team begins the execution phase. During this phase, members of the student team and +other stakeholders must be updated on progress being made and on issues identified that put the +project schedule at risk. The ability of the team to change direction or “pivot” in the face of +risks is often a key factor in a team’s successful completion of the project. Changes to the plan +are adopted and formally communicated through a change management report. Each team must +submit one change management report. See the Formula Hybrid + Electric rules and deadlines +page at: https://www.formula-hybrid.org/deadlines for the exact due date. +1S2.4.2 These reports are not lengthy but are intended to clearly and concisely communicate the +documented changes to the project scope and plan to the team that have been approved using +the Change Management Process. See Appendix C for details on scoring criteria for this report. +The topics covered in the progress report should include: +A) Change Management Process: Detail the Change Management processes and +platforms used by the team. At a minimum, the report is expected to cover: +a. what triggers the process +b. how does information flow through the process +c. how are final decisions transmitted to all team members +d. team-created process flow diagram + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +B) Implementation of the Change Management Process: Teams are expected to +review in detail how the Change Management Process has been used to modify at +least one of their project’s main components (Scope or Goals, Operational Plan, Risk +Management, and Expected Results). The report is expected to cover an example +from start to finish in the process and should also detail the final impact to the +project. +C) Effectiveness of and Improvements to the Change Management Process: At the +end of the project lifecycle, the team is expected to perform an assessment on the +effectiveness of their Change Management Process. Through this assessment, the +team should identify at least two areas of opportunity to improve the process and +include the plans/details to implement those changes. + + +1S2.4.3 The Change Management Report must not exceed two (2) pages. Appendices may be included +with the Report +Note 1: Appendix content does not count as “pages”. +Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- +hybrid.org/deadlines for the due date of the Change Management Report. +1S2.5 Submission Formats +1S2.5.1 The Project Plan and Change Management Report must be submitted electronically in separate +Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, +drawings, and optional content). +1S2.5.2 These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) +and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + +Electric assigned car number and the complete school name, e.g.: + +999_University of SAE_Project Plan.doc(x) +999_University of SAE_ChangeManagement.doc(x) + +1S2.6 Submission Deadlines +The Project Plan and Change Management Report must be submitted by the date and time shown in the +Action Deadlines. Submission instructions are in section A9.2. +See section A9.3 for late submission penalties. +1S2.7 Presentation +1S2.7.1 Objective: Teams must convince a review board that the team’s project has been carefully +planned and effectively and dynamically executed. +1S2.7.2 The Project Management presentation will be made on the static events day. Presentation times +will be scheduled by the organizers and either posted in advance on the competition website or +released during on-site registration (or both). +Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable. +1S2.7.3 Teams that fail to make their presentation during their assigned time period will receive zero +(0) points for that section of the event. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Teams are encouraged to arrive fifteen (15) minutes prior to their scheduled presentation time to +deal with unexpected technical difficulties. +The scoring of the event is based on the average of the presentation judging forms. +1S2.8 Presentation Format +The presentation judges should be regarded as a project management or executive review board. +1S2.8.1 Evaluation Criteria - Project Management presentations will be evaluated based on team’s +accomplishments in project planning, execution, change management, and succession planning. +Presentation organization and quality of visual aids as well as the presenters’ delivery, timing +and the team’s response to questions will also be factors in the evaluation. +1S2.8.2 One or more team members will give the presentation to the judges. It is strongly suggested, +although not required, that the project manager accompany the presentation team. All team +members who will give any part of the presentation, or who will respond to the judge’s +questions, must be in the podium area when the presentation starts and must be introduced to +the judges. Team members who are part of this “presentation group” may answer the judge’s +questions even if they did not speak during the presentation itself. +1S2.8.3 Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, +posters, etc. to convey information relevant to their project management case that cannot be +contained within a 12-minute presentation. +1S2.8.4 The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt +the presentation itself. +1S2.8.5 Feedback on presentations will take place immediately following the eight (8) minute question +and answer session. Judges and any team members present may ask questions. The maximum +feedback time for each team is eight (8) minutes. +1S2.8.6 Formula Hybrid + Electric may record a team’s presentation for publication or educational +purposes. Students have the right to opt out of being recorded - however they must notify the +chief presentation judge in writing prior to the beginning of their presentation. +1S2.9 Data Projection Equipment +Projection equipment is provided by the organizers. However, teams are advised to bring their own +computer equipment in the event the organizer’s equipment malfunctions or is not compatible +with their presentation software. +1S2.10 Scoring Formula +The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change +Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is +then normalized as follows: + +퐹퐼푁퐴퐿 푃푅푂퐽퐸퐶푇 푀퐴푁퐴퐺퐸푀퐸푁푇 푆퐶푂푅퐸 = 150 * (푃 +푦표푢푟 +/푃 +푚푎푥 +) + +Where: +P +max +is the highest point score awarded to any team +P +your + is the point score awarded to your team. + + +Notes: + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +1. It is intended that the scores will range from near zero (0) to one hundred and fifty (150) +points, providing a good separation range. +2. The Project Management Presentation Captain may at her/his discretion normalize the +scores of different presentation judging teams for consistency in scoring. +3. Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are +applied after the scores are normalized up to a maximum of the team’s normalized +Project Management Score. + +ARTICLE S3 DESIGN EVENT +1S3.1 Design Event Objective +The concept of the design event is to evaluate the engineering effort that went into the design of the car +(or the substantial modifications to a prior year car), and how the engineering meets the intent +of the market. The car that illustrates the best use of engineering to meet the design goals and +the best understanding of the design by the team members will win the design event. +Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and +that in the Design event, teams are evaluated on their design. Components and systems that are +incorporated into the design as finished items are not evaluated as a student designed unit, but +are only assessed on the team’s selection and application of that unit. For example, teams that +design and fabricate their own shocks are evaluated on the shock design itself as well as the +shock’s application within the suspension system. Teams using commercially available shocks +are evaluated only on selection and application within the suspension system. +1S3.2 Submission Requirements +1S3.2.1 Design Report - Judging will start with a Design Review before the event. +The principal document submitted for the Design Review is a Design Report. This report must not exceed +ten (10) pages, consisting drawings (see S3.4, “Vehicle Drawings”) and content to be defined +by the team (photos, graphs, etc...). +This document should contain a brief description of the vehicle and each category listed in Appendix D +with the majority of the report specifically addressing the engineering, design features, and +vehicle concepts new for this year's event. Include a list of different analysis and testing +techniques (FEA, dynamometer testing, etc.). +Evidence of this analysis and back-up data should be brought to the competition and be available, on +request, for review by the judges. These documents will be used by the judges to sort teams into +the appropriate design groups based on the quality of their review. +Comment: Consider your Design Report to be the “resume of your car”. +1S3.2.2 Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec +Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the +FH+E website. (Do not alter or re-format the template prior to submission.) +Note: The design judges realize that final design refinements and vehicle development may cause the +submitted figures to diverge slightly from those of the completed vehicle. For specifications +that are subject to tuning, an anticipated range of values may be appropriate. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +The Design Report and the Design Spec Sheet, while related documents, must stand alone and be +considered two (2) separate submissions. Two separate file submissions are required. +1S3.3 Sustainability Requirement +1S3.3.1 Instead of a Sustainability Report please add a Sustainability section to the Design Report +answering both of the following prompts: +(a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and +competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each +dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How +have you improved these quantities compared to previous year vehicles? How might you +improve this in your next vehicle? What components or design decisions are the biggest +contributors to the emissions or efficiency, positively or negatively? +(b) How does the vehicle's design and construction contribute to the recyclability and re-use of your +vehicle, especially when it comes to accumulator storage? +1S3.4 Vehicle Drawings +1S3.4.1 The Design report must include all of the following drawings: +(a) One set of 3 view drawings showing the vehicle from the front, top, and side. +(b) A schematic of the high voltage wiring showing the wiring between the major +components. (See section EV13.1) +(c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all +major high voltage components and the routing of high voltage wiring. The components +shown must (at a minimum) include all those listed in the major sections of the ESF (See +section EV13.1) +1S3.5 Submission Formats +1S3.5.1 The Design Report must be submitted electronically in Adobe Acrobat™ Format files (*.pdf +file). These documents must each be a single file (text, drawings, and optional content). These +Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E +assigned car number and the complete school name, e.g.: + 999_University of SAE_Design.pdf + + +1S3.5.2 Design Spec Sheets must be submitted electronically in Microsoft Excel™ Format. The format +of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet +file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula +Hybrid + Electric assigned car number and the complete school name, e.g. + 999_University of SAE_Specs.xls (or) + + 999_University of SAE_Specs.xlsx + +WARNING – Failure to exactly follow the above submission requirements may result in exclusion from +the Design Event. If your files are not submitted in the required format or are not properly +named then they cannot be included in the documents provided to the design judges and your +team will be excluded from the event. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1S3.6 Excess Size Design Reports +If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read +and evaluated by the judges. +Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text +information on them will be scored. +1S3.7 Submission Deadlines +The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the +Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the +event website once report is reviewed for accuracy. Teams should have a printed copy of this +reply available at the competition as proof of submission in the event of discrepancy. +1S3.8 Penalty for Late Submission or Non-Submission +See section A9.3 for late submission penalties. +1S3.9 Penalty for Unsatisfactory Submissions +1S3.9.1 Teams that submit a Design Report or a Design Spec Sheet which is deemed to be +unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. +They may be allowed to compete, but receive a penalty of up to seventy five (75) points. +Failure to fully document the changes made for the current year’s event to a vehicle used in +prior FH+E events, or reuse of any part of a prior year design report, are just two examples of +Unsatisfactory Submissions +1S3.10 Vehicle Condition +1S3.10.1 With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See +A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, +complete and ready-to-run. The judges will not evaluate any car that is presented at the design +event in what they consider to be an unfinished state. +Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be +assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. +Note: Cars can be presented for design judging without having passed technical inspection, or if final +tuning and setup is still in progress. +1S3.11 Judging Criteria +The design judges will evaluate the engineering effort based upon the team’s Design Report, Spec Sheet, +responses to questions and an inspection of the car. The design judges will inspect the car to +determine if the design concepts are adequate and appropriate for the application (relative to the +objectives set forth in the rules). It is the responsibility of the judges to deduct points on the +design judging form, as given in Appendix D if the team cannot adequately explain the +engineering and construction of the car. +1S3.12 Judging Sequence +The actual format of the design event may change from year to year as determined by the organizing +body. In general, the design event includes a brief overview presentation in front of the physical +vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the +majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve +two parts: +(a) Initial judging of all vehicles + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(b) Final judging ranking the top 2 to 4 vehicles. +1S3.13 Scoring Formula +The scoring of the event is based on either the average of the scores from the Design Judging Forms (see +Appendix C) or the consensus of the judging team. + +퐷퐸푆퐼퐺푁 푆퐶푂푅퐸 = 200 +푃 +푦표푢푟 +푃 +푚푎푥 + + +Where: P +max + is the highest point score awarded to any team in your vehicle category +P +your + is the point score awarded to your team + +Notes: +It is intended that the scores will range from near zero (0) to two hundred (200) to provide good +separation. +● The Lead Design Judge may, at his/her discretion, normalize the scores of different judging +teams. +● Penalties applied during the Design Event (see Appendix D “Design Judging Form - +Miscellaneous”) are applied before the scores are normalized. +● Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are +applied after the scores are normalized up to a maximum of the teams normalized Design +Score. + +1S3.14 Support Materials +Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example +components or other materials that they believe are needed to support the presentation of the +vehicle and the discussion of their development process. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART 1D - DYNAMIC EVENTS +ARTICLE D1 DYNAMIC EVENTS GENERAL +1D1.1 Maximum Scores +Event +Acceleration 100 Points +Autocross 200 Points +Endurance 350 Points +Total 650 Points +Table 17 - Dynamic Event Maximum Scores +1D1.2 Driving Behavior +During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event +Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to +an official, worker, spectator or other driver, will result in a penalty. +Depending on the potential consequences of the behavior, the penalty will range from an admonishment, +to disqualification of that driver from all events, to disqualification of the team from that event, +to exclusion of the team from the Competition. +1D1.3 Safety Procedures +1D1.3.1 Drivers must properly use all required safety equipment at all times while staged for an event, +while running the event, and while stopped on track during an event. Required safety +equipment includes all drivers gear and all restraint harnesses. +1D1.3.2 In the event it is necessary to stop on track during an event the driver must attempt to position +the vehicle in a safe position off of the racing line. +1D1.3.3 Drivers must not exit a vehicle stopped on track during an event until directed to do so by an +event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or +electrical problems. +1D1.4 Vehicle Integrity and Disqualification +1D1.4.1 During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be +maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged +suspension, brakes or steering components, electrical tractive system fault, or any condition that +could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid +reason for exclusion by the officials. +1D1.4.2 The safety systems monitoring the electrical tractive system must be functional as indicated by +an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event. +1D1.4.3 If vehicle integrity is compromised during the Endurance Event, scoring for that segment will +be terminated as of the last completed lap. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE D2 WEATHER CONDITIONS +The organizer reserves the right to alter the conduct and scoring of the competition based on weather +conditions. +ARTICLE D3 RUNNING IN RAIN +A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See +EV10.5) +1D3.1 Operating Conditions +The following operating conditions will be recognized at Formula Hybrid + Electric: +(a) Dry – Overall the track surface is dry. +(b) Damp – Significant sections of the track surface are damp. +(c) Wet – The entire track surface is wet and there may be puddles of water. +(d) Weather Delay/Cancellation – Any situation in which all, or part, of an event is delayed, +rescheduled or canceled in response to weather conditions. +1D3.2 Decision on Operating Conditions +The operating condition in effect at any time during the competition will be decided by the competition +officials. +1D3.3 Notification +If the competition officials declare the track(s) to be "Damp" or "Wet", +(a) This decision will be announced over the public address system, and +(b) A sign with either "Damp" or "Wet" will be prominently displayed at both the starting +line(s) and the start-finish line of the event(s), and the entry gate to the "hot" area. +1D3.4 Tire Requirements +The operating conditions will determine the type of tires a car may run as follows: +(a) Dry – Cars must run their Dry Tires, except as covered in D3.8. +(b) Damp – Cars may run either their Dry Tires or Rain Tires, at each team’s option. +(c) Wet – Cars must run their Rain Tires. +1D3.5 Event Rules +All event rules remain in effect. +1D3.6 Penalties +All penalties remain in effect. +1D3.7 Scoring +No adjustments will be made to teams' times for running in "Damp" or "Wet" conditions. The minimum +performance levels to score points may be adjusted if deemed appropriate by the officials. +1D3.8 Tire Changing +1D3.8.1 During the Acceleration or Autocross Events: + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Within the provisions of D3.4 above, teams may change from Dry Tires to Rain Tires or vice versa at any +time during those events at their own discretion. +1D3.8.2 During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any +time while their car is in the staging area inside the "hot" area. +All tire changes after a car has received the "green flag" to start the Endurance Event must take place in +the Driver Change Area. +(a) If the track was "Dry" and is declared "Damp": +(i) Teams may start on either Dry or Rain Tires at their option. +(ii) Teams that are on the track when it is declared "Damp", may elect, at their option, to +pit in the Driver Change Area and change to Rain Tires under the terms spelled out +below in "Tire Changes in the Driver Change Area". +(b) If the track is declared "Wet": +(i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver +Change Area. +(ii) Those cars that are already fitted with "Rain" tires will be allowed restart without delay +subject to the discretion of the Event Captain/Clerk of the Course. +(iii)Those cars without "Rain" tires will be required to fit them under the terms spelled out +below in "Tire Changes in the Driver Change Area". They will then be allowed to re- +start at the discretion of the Event Captain/Clerk of the Course. +(c) If the track is declared "Dry" after being "Damp" or "Wet": +The teams will NOT be required to change back to “Dry” tires. +(d) Tire Changes at Team's Option: +(i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to +change tires at their option. +(ii) If a team elects to change from “Dry” to “Rain” tires, the time to make the change will +NOT be included in the team’s total time. +(iii) If a team elects to change from “Rain” tires back to “Dry” tires, the time taken to +make the change WILL be included in the team’s total time for the event, i.e. it will +not be subtracted from the total elapsed time. However, a change from “Rain” tires +back to “Dry” tires will not be permitted during the driver change. +(iv) To make such a change, the following procedure must be followed: +1. Team makes the decision +2. Team has tires and equipment ready near Driver Change Area +3. The team informs the Event Captain/Clerk of the Course they wish their car to be +brought in for a tire change +4. Officials inform the driver by means of a sign or flag at the checker flag station +5. Driver exits the track and enters the Driver Change Area in the normal manner. +(e) Tire Changes in the Driver Change Area: + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(i) Per Rule D7.13.2 no more than three people for each team may be present in the +Driver Change Area during any tire change, e.g. a driver and two crew or two drivers +and one crew member. +(ii) No other work may be performed on the cars during a tire change. +(iii) Teams changing from "Dry" to "Rain" tires will be allowed a maximum of ten (10) +minutes to make the change. +(iv) If a team elects to change from "Dry" to "Rain" tires during their scheduled driver +change, they may do so, and the total allowed time in the Driver Change Area will be +increased without penalty by ten (10) minutes. +(v) The time spent in the driver change area of less than 10 minutes without driver change +will not be counted in the team's total time for the event. Any time in excess of these +times will be counted in the team's total time for the event. +ARTICLE D4 DRIVER LIMITATIONS +1D4.1 Two Event Limit +1D4.1.1 An individual team member may not drive in more than two (2) events. +Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum +of four (4) drivers is required to participate in all possible runs in all of the dynamic events. +1D4.1.2 It is the team’s option to participate in any event. The team may forfeit any runs in any +performance event. +1D4.1.3 In order to drive in the endurance event, a driver must have attended the mandatory drivers +meeting and walked the endurance track with an official. +1D4.1.4 The time and location of the meeting and walk-around will be announced at the event. +ARTICLE D5 ACCELERATION EVENT +1D5.1 Acceleration Objective +The acceleration event evaluates the car’s acceleration in a straight line on flat pavement. +1D5.2 Acceleration Procedure +The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The +foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be +used to indicate the approval to begin, however, time starts only after the vehicle crosses the +start line. There will be no particular order of the cars in the event. A driver has the option to +take a second run immediately after the first. +1D5.3 Acceleration Event +1D5.3.1 All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the +acceleration runs. +1D5.3.2 Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during +any of their acceleration runs. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D5.4 Tire Traction – Limitations +Special agents that increase traction may not be added to the tires or track surface and “burnouts” are not +allowed. +1D5.5 Acceleration Scoring +The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the +time the car crosses the starting line until it crosses the finish line. +1D5.6 Acceleration Penalties +1D5.6.1 Cones Down Or Out (DOO) +A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred +on that particular run to give the corrected elapsed time. +1D5.6.2 Off Course +An Off Course (OC) will result in a DNF for that run. +1D5.7 Did Not Attempt +The organizer will determine the allowable windows for each event and retains the right to adjust for +weather or technical delays. Cars that have not run by the end of the event will be scored as a +Did Not Finish (DNF). +1D5.8 Acceleration Scoring Formula +The equation below is used to determine the scores for the Acceleration Event. The first term represents +the “Start Points”, the second term the “Participation Points” and the last term the +“Performance Points”. +1D5.8.1 A team is awarded “Start Points” for crossing the start line under its own power. A team is +awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded +“Performance Points” based on its corrected elapsed time relative to the time of the best team in +its class. + +퐴퐶퐶퐸퐿퐸푅퐴푇퐼푂푁 푆퐶푂푅퐸=10 +15+ (75 × +푇 +푚푖푛 +푇 +푦표푢푟 +) + +Where: +T +your + is the lowest corrected elapsed time (including penalties) recorded by your team. +T +min + is the lowest corrected elapsed time (including penalties) recorded by the fastest team +in your vehicle category. +Note: A Did Not Start (DNS) will score (0) points for the event +ARTICLE D6 AUTOCROSS EVENT +1D6.1 Autocross Objective +The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a +tight course without the hindrance of competing cars. The autocross course will combine the +performance features of acceleration, braking, and cornering into one event. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D6.2 Autocross Procedure +1D6.2.1 There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) +timed laps will be run (weather and time permitting) by each driver and the best lap time will +stand as the time for that heat. +1D6.2.2 The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. +The timer starts only after the car crosses the start line. +1D6.2.3 There will be no particular order of the cars to run each heat, but a driver has the option to take +a second run immediately after the first. +1D6.2.4 The organizer will determine the allowable windows for each event and retains the right to +adjust for weather or technical delays. Cars that have not run by the end of the event will be +scored as a Did Not Start (DNS). +1D6.3 Autocross Course Specifications & Speeds +1D6.3.1 The following specifications will suggest the maximum speeds that will be encountered on the +course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). +(a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 +m (150 feet) with wide turns on the ends. +(b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. +(c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). +(d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. +(e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track +width will be 3.5 m (11.5 feet). +1D6.3.2 The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete +a specified number of runs. +1D6.4 Autocross Penalties +The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed +time: +1D6.4.1 Cone Down or Out (DOO) +Two (2) seconds per cone, including any after the finish line. +1D6.4.2 Off Course +Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be +assessed. Penalties will not be assessed for accident avoidance or other reasons deemed +sufficient by the track officials. +If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off +the paved surface will count as an "off course". Two (2) wheels off will not incur an immediate +penalty; however, consistent driving of this type may be penalized at the discretion of the event +officials. +1D6.4.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one "off-course" per occurrence. Each +occurrence will incur a twenty (20) second penalty. +1D6.4.4 Stalled & Disabled Vehicles + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +If a car stalls and cannot restart without external assistance, the car will be deemed disabled. Cars deemed +disabled will be cleared from the track by the track workers. At the direction of the track +officials team members may be instructed to retrieve the vehicle. Vehicle recovery may only be +done under the control of the track officials. +1D6.5 Corrected Elapsed Time +The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time. +1D6.6 Best Run Scored +The time required to complete each run will be recorded and the team’s best corrected elapsed time will +be used to determine the score. +1D6.7 Autocross Scoring Formula +The equation below is used to determine the scores for the Autocross Event. The first term represents the +“Start Points”, the second term the “Participation Points” and the last term the “Performance +Points”. A team is awarded “Start Points” for crossing the start line under its own power. A +team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is +awarded “Performance Points” based on its corrected elapsed time relative to the time of the +best team in its vehicle category. +퐴푈푇푂퐶푅푂푆푆 푆퐶푂푅퐸=20+30+ (150× +푇 +푚푖푛 +푇 +푦표푢푟 +) + +Where: +T +min + is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your +vehicle category over their four heats. +T +your + is the lowest corrected elapsed time (including penalties) recorded by your team over the four +heats. + +Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event. +ARTICLE D7 ENDURANCE EVENT +1D7.1 Right to Change Procedure +The following are general guidelines for conducting the endurance event. The organizers reserve the right +to establish procedures specific to the conduct of the event at the site. All such procedures will +be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or +on the official bulletin board at the event. +1D7.2 Endurance Objective +The endurance event is designed to evaluate the vehicle’s overall performance, reliability and efficiency. +Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the +least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated +distance on a fixed amount of energy in the least amount of time. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D7.3 Endurance General Procedure +1D7.3.1 In general, the team completing the most laps in the shortest time will earn the maximum points +available for this event. Formula Hybrid + Electric uses an endurance scoring formula that +rewards both speed and distance traveled. (See D7.18) +1D7.3.2 The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 +mile) segments. +1D7.3.3 Driver changes will be made between each segment. +1D7.3.4 Wheel to wheel racing is prohibited. +1D7.3.5 Passing another vehicle may only be done in an established passing zone or under the control of +a course marshal. +1D7.4 Endurance Course Specifications & Speeds +Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr +(29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). +Endurance courses will be configured, where possible, in a manner which maximizes the +advantage of regenerative braking. +(a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than +61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several +locations. +(b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. +(c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). +(d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. +(e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). +(f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius +turns, elevation changes, etc. +1D7.5 Energy +1D7.5.1 All vehicles competing in the endurance event must complete the event using only the energy +stored on board the vehicle at the start of the event plus any energy reclaimed through +regenerative braking during the event. Alternatively, vehicles may compete in the endurance +event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E +approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy +value will not be counted towards the endurance score. If energy meter data is missing or +appears inaccurate, the vehicle may receive start and performance points as appropriate, but +“performance points” may be forfeited at organizers discretion. +1D7.5.2 Prior to the beginning of the endurance event, all competitors may charge their electric +accumulators from any approved power source they wish. +1D7.5.3 Once a vehicle has begun the endurance event, recharging accumulators from an off-board +source is not permitted. +1D7.6 Hybrid Vehicles +1D7.6.1 All Hybrid vehicles will begin the endurance event with the defined amount of energy on +board. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D7.6.2 The amount of energy allotted to each team is determined by the Formula Hybrid + Electric +Rules Committee and is listed in Table 1 – 2024 Energy and Accumulator Limits +1D7.6.3 The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by +an amount equal to the stated energy capacity of the vehicle’s accumulator(s). +1D7.6.4 There will be no extra points given for fuel remaining at the end of the endurance event. +1D7.7 Fueling - Hybrid Vehicles +1D7.7.1 Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel +accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will +then be added to the tank by the organizers and the filler will be sealed. +1D7.7.2 Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and +supporting the vehicle to facilitate draining the fuel tank. +1D7.7.3 Once fueled, the vehicle must proceed directly to the endurance staging area. +1D7.8 Charging - Electric Vehicles +Each Electric vehicle will begin the endurance event with whatever energy can be stored in its +accumulator(s). +1D7.9 Endurance Run Order +Endurance run order will be determined by the team’s corrected elapsed time in the autocross. Teams with +the best autocross corrected elapsed time will run first. If a team did not score in the autocross +event, the run order will then continue based on acceleration event times, followed by any +vehicles that may not have completed either previous dynamic event. Endurance run order will +be published at least one hour before the endurance event is run. +1D7.10 Entering the Track +At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter +based on traffic conditions. +1D7.11 Endurance Vehicle Restarting +1D7.11.1 The vehicle must be capable of restarting without external assistance at all times once the +vehicle has begun the event. +1D7.11.2 If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following +it (approximately one (1) minute) to restart. +1D7.11.3 At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the +electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8). +1D7.11.4 If restarts are not accomplished within the above times, the vehicle will be deemed disabled and +scored as a DNF for the event. +1D7.12 Breakdowns & Stalls +1D7.12.1 If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter +the course. +1D7.12.2 If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course +where it went off, but no work may be performed on the vehicle +1D7.12.3 If a vehicle stops on track and cannot be restarted without external assistance, the track workers +will push the vehicle clear of the track. At the discretion of event officials, two (2) team +members may retrieve the vehicle under direction of the track workers. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D7.13 Endurance Driver Change Procedure +1D7.13.1 There must be a minimum of two (2) drivers for the endurance event, with a maximum of four +(4) drivers. One driver may not drive in two consecutive segments. +1D7.13.2 Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the +driver change area. If a driver elects to come into driver change before the end of their 11km +segment, they will not be allowed to make up the laps remaining in that segment. +1D7.13.3 Only three (3) team members, including the driver or drivers, will be allowed in the driver +change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers +and/or change tires will be carried into this area (no tool chests, electronic test equipment, +computers, etc.). +Extra people entering the driver change area will result in a twenty (20) point penalty to the final +endurance score for each extra person entering the area. +Note: Teams are permitted to “tag-team” in and out of the driver change area as long as there are no more +than three (3) team members present at any one time. +1D7.13.4 The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. +These systems must remain shut down until the new driver is in place. (See D7.13.8) +1D7.13.5 The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit +the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be +secured in the vehicle. +1D7.13.6 Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle +comes to a halt in the driver change area and stops when the correct adjustment of the driver +restraints and safety equipment has been verified by the driver change area official. Any time +taken over the allowed time will incur a penalty. (See D7.17.2(k)) +1D7.13.7 During the driver change, teams are not permitted to do any work on, or make any adjustments +to the vehicle with the following exceptions: +(a) Changes required to accommodate each driver +(b) Tire changing as covered by D3.8 “Tire Changing”, +(c) Actuation of the following buttons/switches to assist the driver with re-energizing the +electrical tractive system +(i) Ground Low Voltage Master Switch +(ii) Tractive System Master Switch +(iii) Side Mounted BRBs +(iv) IMD Reset (Button/Switch must be clearly marked “IMD RESET”) +(v) AMS Reset (Button/Switch must be clearly marked “AMS RESET”) + +1D7.13.8 Once the new driver is in place and an official has verified the correct adjustment of the driver +restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the +electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive +system (IC engine, electrical tractive system, or both) and begin moving out of the driver +change area. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +The ESOK indicator must be illuminated and verified by the driver change area official prior to +the vehicle being released out of the driver change area. + +1D7.13.9 The process given in Error! Reference source not found. through D7.13.8 will be repeated for +each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km +(27.34 miles) distance or until the endurance event track closing time, at which point the +vehicle will be signaled off the course. +1D7.13.10 The driver change area will be placed such that the timing system will see the driver +change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this +extra-long lap will not count into a team’s final time. If a driver change takes longer than three +minutes, the extra time will be added to the team’s final time. +1D7.13.11 Once the vehicle has begun the event, electronic adjustment to the vehicle may only be +made by the driver using driver-accessible controls. +1D7.14 Endurance Lap Timing +1D7.14.1 Each lap of the endurance event will be individually timed either by electronic means, or by +hand. +1D7.14.2 Each team is required to time their vehicle during the endurance event as a backup in case of a +timing equipment malfunction. An area will be provided where a maximum of two team +members can perform this function. All laps, including the extra-long laps must be recorded +legibly and turned in to the organizers at the end of the endurance event. Standardized lap +timing forms will be provided by the organizers. +1D7.15 Exiting the Course +1D7.15.1 Timing will stop when the vehicle crosses the start/finish line. +1D7.15.2 Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter +the driver change area before coming to a stop. There will be no “cool down” laps. +1D7.15.3 The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be +penalized. +1D7.16 Endurance Minimum Speed Requirement +1D7.16.1 A car's allotted number of laps, including driver’s changes, must be completed in a maximum +of 120 minutes elapsed time from the start of that car's first lap. +Cars that are unable to comply will be flagged off the course and their actual completed laps tallied. +1D7.16.2 If a vehicle’s lap time becomes greater than Max Average Lap Time (See: D7.18) it may be +declared “out of energy”, and flagged off the course. The vehicle will be deemed disabled and +scored as a DNF for the event. +Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring +formulas. Attempting to complete additional laps at too low a speed can cost a team points. +1D7.17 Endurance Penalties +1D7.17.1 Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the +track official. +1D7.17.2 The penalties in effect during the endurance event are listed below. +(a) Cone down or out (DOO) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + Two (2) seconds per cone. This includes cones before the start line and after the finish line. +(b) Off Course (OC) + For an OC, the driver must re-enter the track at or prior to the missed gate or a twenty (20) +second penalty will be assessed. + If a paved surface edged by grass or dirt is being used as the track, e.g. a go kart track, four +(4) wheels off the paved surface will count as an "off course". Two (2) wheels off will not +incur an immediate penalty. However, consistent driving of this type may be penalized at +the discretion of the event officials. +(c) Missed Slalom + Missing one or more gates of a given slalom will incur a twenty (20) second penalty. +(d) Failure to obey a flag + Penalty: 1 minute +(e) Over Driving (After a closed black flag) + Penalty: 1 Minute +(f) Vehicle to Vehicle Contact + Penalty: DISQUALIFIED +(g) Running Out of Order + Penalty: 2 Minutes +(h) Mechanical Black Flag +See D7.23.3(b). No time penalty. The time taken for mechanical or electrical inspection under a +“mechanical black flag” is considered officials’ time and is not included in the team’s total +time. However, if the inspection reveals a mechanical or electrical integrity problem the +vehicle may be deemed disabled and scored as a DNF for the event. +(i) Reckless or Aggressive Driving + Any reckless or aggressive driving behavior (such as forcing another vehicle off the track, +refusal to allow passing, or close driving that would cause the likelihood of vehicle contact) +will result in a black flag for that driver. + When a driver receives a black flag signal, he/she must proceed to the penalty box to listen +to a reprimand for his/her driving behavior. + The amount of time spent in the penalty box will vary from one (1) to four (4) minutes +depending upon the severity of the offense. + If it is impossible to impose a penalty by a stop under a black flag, e.g. not enough laps left, +the event officials may add an appropriate time penalty to the team’s elapsed time. +(j) Inexperienced Driver + The Event Captain or Clerk of the Course may disqualify a driver if the driver is too slow, +too aggressive, or driving in a manner that, in the sole opinion of the event officials, +demonstrates an inability to properly control their vehicle. This will result in a DNF for the +event. +(k) Driver Change + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + Driver changes taking longer than three (3) minutes will be penalized. +1D7.18 Endurance Scoring Formula +The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time +for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, +etc.), plus any penalty time and penalty points assessed against all drivers and team members. +Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the +DNF. +1D7.18.1 The equation below is used to determine the scores for the Endurance Event. The first term +represents the “Start Points”, the second term the “Participation Points” and the last term the +“Performance Points”. +A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded +“Participation Points” if it completes a minimum of one (1) lap. A team is awarded +“Performance Points” based on the number of laps it completes relative to the best team in its +vehicle category (distance factor) and its corrected average lap time relative to the event +standard time and the time of the best team in its vehicle category (speed factor). + +퐸푁퐷푈푅퐴푁퐶퐸 푆퐶푂푅퐸 = 35+52.5+ 262.5 +( +퐿푎푝푆푢푚 +( +푛 +) +푦표푢푟 +퐿푎푝푆푢푚 +( +푛 +) +푚푎푥 +) +( +푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 +푇 +푦표푢푟 +)−1 +( +푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 +푇 +푚푖푛 +) +−1 + + +Where: + Max Average Lap Time is the event standard time in minutes and is calculated as + + 푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 = +105 +푡ℎ푒 푛푢푚푏푒푟 표푓 푙푎푝푠 푟푒푞푢푖푟푒푑 푡표 푐표푚푝푙푒푡푒 44 푘푚 + + +T +min += the lowest corrected average lap time (including penalties) recorded by the fastest team in +your vehicle category over their completed laps. +T +your + = the corrected average lap time (including penalties) recorded by your team over your +completed laps. +LapSum(n) +max + = The value of LapSum corresponding to number of complete laps credited to the +team in your vehicle category that covered the greatest distance. +LapSum(n) +your + = The value of LapSum corresponding to the number of complete laps credited to +your team + +Notes: +(a) If your team completes all of the required laps, then LapSum(n) +your + will equal the +maximum possible value of LapSum(n). (990 for a 44 lap event). +(b) If your team does not complete the required number of laps, then LapSum(n) +your + will be +based on the number of laps completed. See Appendix B for LapSum(n) calculation +methodology. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(c) Negative “performance points” will not be given. +(d) A Did Not Start (DNS) will score (0) points for the event + +1D7.18.2 Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their +results truncated at the last lap completed within the 120 minute limit. +1D7.19 Post Event Engine and Energy Check +The organizer reserves the right to impound any vehicle immediately after the event to check accumulator +capacity, engine displacement (method to be determined by the organizer) and restrictor size (if +fitted). +1D7.20 Endurance Event – Driving +1D7.20.1 During the endurance event when multiple vehicles are running on the course it is paramount +that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, +failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion +in the penalty box with course officials. The amount of time spent in the penalty box is at the +discretion of the officials and is included in the run time. Penalty box time serves as a +reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware +that contact between open wheel racers is especially dangerous because tires touching can +throw one vehicle into the air. +1D7.20.2 Endurance is a timed event in which drivers compete only against the clock not against other +vehicles. Aggressive driving is unnecessary. +1D7.21 Endurance Event – Passing +1D7.21.1 Passing during the endurance event may only be done in the designated passing zones and +under the control of the track officials. Passing zones have two parallel lanes – a slow lane for +the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On +approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the +slow lane and decelerate. The following faster vehicle will continue in the fast lane and make +the pass. The vehicle that had been passed may reenter traffic only under the control of the +passing zone exit marshal. +The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on +the design of the specific course. +1D7.21.2 These passing rules do not apply to vehicles that are passing disabled vehicles on the course or +vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it +is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in +the area. +1D7.21.3 Under normal driving conditions when not being passed all vehicles use the fast lane. +1D7.22 Endurance Event – Driver’s Course Walk +The endurance course will be available for walk by drivers prior to the event. All endurance drivers +should walk the course before the event starts. +1D7.23 Flags +1D7.23.1 The flag signals convey the commands described below, and must be obeyed immediately and +without question. +1D7.23.2 There are two kinds of flags for the competition: Command Flags and Informational Flags. +Command Flags are just that, flags that send a message to the competitor that the competitor + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +must obey without question. Informational Flags, on the other hand, require no action from the +driver, but should be used as added information to help him or her maximize performance. +What follows is a brief description of the flags used at the competitions in North America and +what each flag means. +Note: Not all of these flags are used at all competitions and some alternate designs are occasionally +displayed. Any variations from this list will be explained at the drivers meetings. + + +Table 18 - Flags +1D7.23.3 Command Flags +(a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations +or other official concerning an incident. A time penalty may be assessed for such +incident. +(b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) (“Meatball”) - Pull into +the penalty box for a mechanical inspection of your vehicle, something has been observed +that needs closer inspection. +(c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor +or competitors. Obey the course marshal’s hand or flag signals at the end of the passing +zone to merge into competition. +(d) CHECKER FLAG - Your segment has been completed. Exit the course at the first +opportunity after crossing the finish line. +(e) GREEN FLAG - Your segment has started, enter the course under direction of the +starter. NOTE: If you are unable to enter the course when directed, await another green +flag as the opening in traffic may have closed. +(f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side +of the course as much as possible to keep the course open. Follow course marshal’s +directions. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(g) YELLOW FLAG (Stationary) - Danger, SLOW DOWN, be prepared to take evasive +action, something has happened beyond the flag station. NO PASSING unless directed by +the course marshals. +(h) YELLOW FLAG (Waved) - Great Danger, SLOW DOWN, evasive action is most +likely required, BE PREPARED TO STOP, something has happened beyond the flag +station, NO PASSING unless directed by the course marshals. +1D7.23.4 Informational Flags +(a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that +should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course +marshals may be able to point out what and where it is located, but do not expect it.) +(b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than +you are. Be prepared to approach it at a cautious rate. +ARTICLE D8 RULES OF CONDUCT +1D8.1 Competition Objective – A Reminder +The Formula Hybrid + Electric event is a design engineering competition that requires performance +demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized +that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. +It is also recognized that this event is an “engineering educational experience” but that it often +times becomes confused with a high stakes race. In the heat of competition, emotions peak and +disputes arise. Our officials are trained volunteers and maximum human effort will be made to +settle problems in an equitable, professional manner. +1D8.2 Unsportsmanlike Conduct +In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second +violation will result in expulsion of the team from the competition. +1D8.3 Official Instructions +Failure of a team member to follow an instruction or command directed specifically to that team or team +member will result in a twenty five (25) point penalty. +Note: This penalty can be individually applied to all members of a team. +1D8.4 Arguments with Officials +Argument with, or disobedience to, any official may result in the team being eliminated from the +competition. All members of the team may be immediately escorted from the grounds. +1D8.5 Alcohol and Illegal Material +Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the +competition. This rule will be in effect during the entire competition. Any violation of this rule +by a team member will cause the expulsion of the entire team. This applies to both team +members and faculty advisors. Any use of drugs, or the use of alcohol by an underage +individual, will be reported to the local authorities for prosecution. +1D8.6 Parties +Disruptive parties either on or off-site must be prevented by the Faculty Advisor. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D8.7 Trash Clean-up +1D8.7.1 Cleanup of trash and debris is the responsibility of the teams. The team’s work area should be +kept uncluttered. At the end of the day, each team must clean all debris from their area and help +with maintaining a clean paddock. +1D8.7.2 Teams are required to remove all of their material and trash when leaving the site at the end of +the competition. Teams that abandon furniture, or that leave a paddock that requires special +cleaning, will be billed for removal and/or cleanup costs. +1D8.7.3 All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, +capped containers and left at the hazardous waste collection building. The track must be +notified as soon as the material is deposited by calling the phone number posted on the +building. See the map in the registration packet for the building location. +ARTICLE D9 GENERAL RULES +1D9.1 Dynamometer Usage +1D9.1.1 If a dynamometer is available, it may be used by any competing team. Vehicles to be +dynamometer tested must have passed all parts of technical inspection. +1D9.1.2 Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer. +1D9.2 Problem Resolution +Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric +management team and the decision will be final. +1D9.3 Forfeit for Non-Appearance +It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready +to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups +for missed appearances. +1D9.4 Safety Class – Attendance Required +An electrical safety class is required for all team members. The time and location will be provided in the +team’s registration packet. +1D9.5 Drivers Meetings – Attendance Required +All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event +will be disqualified if he/she does not attend the driver meeting for the event. +1D9.6 Personal Vehicles +1D9.6.1 Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E +competition vehicles will be allowed in the track areas. +All vehicles and trailers must be parked behind the white “Fire Lane” lines. +1D9.6.2 Some self-powered transport such as bicycles and skate boards are permitted, subject to +restrictions posted in the event guide +1D9.6.3 The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any +part of the competition site, including the paddocks, is prohibited. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D9.7 Exam Proctoring +1D9.7.1 Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for +students attending the competition. The team Advisor, or designated representative (A6.3.1) +attending the competition will be responsible for communicating with college and university +officials, administering exams, and ensuring all exam materials are returned to the college and +university. Students who need to take exams during the competition may use designated spaces +provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to +the Officials. +ARTICLE D10 PIT/PADDOCK/GARAGE RULES +1D10.1 Vehicle Movement +1D10.1.1 Vehicles may not move under their own power anywhere outside of an officially designated +dynamic area. +1D10.1.2 When being moved outside the dynamic area: +(a) The vehicle TSV must be deactivated. +(b) The vehicle must be pushed at a normal walking pace by means of a “Push Bar” (D10.2). +(c) The vehicle’s steering and braking must be functional. +(d) A team member must be sitting in the cockpit and must be able to operate the steering and +braking in a normal manner. +(e) A team member must be walking beside the car. +(f) The team has the option to move the car either with +(i) all four (4) wheels on the ground OR +(ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that +the external wheels supporting the rear of the car are non-pivoting such that the +vehicle will travel only where the front wheels are steered. +1D10.1.3 Cars with wings are required to have two team members walking on either side of the vehicle +whenever the vehicle is being pushed. +NOTE: During performance events when the excitement is high, it is particularly important that the car +be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of +twenty-five (25) points will be assessed for each violation. +1D10.2 Push Bar +Each car must have a removable device that attaches to the rear of the car that allows two (2) people, +standing erect behind the vehicle, to push the car around the event site. This device must also +be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by +pulling it rearwards. It must be presented with the car at Technical Inspection. +1D10.3 Smoking – Prohibited +Smoking is prohibited in all competition areas. +1D10.4 Fueling and Refueling +Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and +no other activities (including any mechanical or electrical work) are allowed while refueling. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D10.5 Energized Vehicles in the Paddock or Garage Area +Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the +drive wheels must be removed or properly supported clear of the ground. +1D10.6 Engine Running in the Paddock +Engines may be run in the paddock provided: +(a) The car has passed all technical inspections. +AND +(b) The drive wheels are removed or properly supported clear of the ground. +1D10.7 Safety Glasses +Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 +meters) of a vehicle that is being worked on. +1D10.8 Curfews +A curfew period may be imposed on working in the garages. Be sure to check the event guide for further +information +ARTICLE D11 DRIVING RULES +1D11.1 Driving Under Power +1D11.1.1 Cars may only be driven under power: +(a) When running in an event. +(b) When on the practice track. +(c) During the brake test. +(d) During any powered vehicle movement specified and authorized by the organizers. +1D11.1.2 For all other movements cars must be pushed at a normal walking pace using a push bar. +1D11.1.3 Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred +(200) point penalty for the first violation and expulsion of the team for a second violation. +1D11.2 Driving Off-Site - Prohibited +Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location +during the period of the competition will be disqualified from the competition. +1D11.3 Practice Track +1D11.3.1 A practice track for testing and tuning cars may be available at the discretion of the organizers. +The practice area will be controlled and may only be used during the scheduled practice times. +1D11.3.2 Practice or testing at any location other than the practice track is absolutely forbidden. +1D11.3.3 Cars using the practice track must have passed all parts of the technical inspection. +1D11.4 Situational Awareness +Drivers must maintain a high state of situational awareness at all times and be ready to respond to the +track conditions and incidents. Flag signals and hand signals from course marshals and officials +must be immediately obeyed. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE D12 DEFINITIONS +DOO - A cone is “Down or Out”—if the cone has been knocked over or the entire base of the cone lies +outside the box marked around the cone in its undisturbed position. +DNF- Did Not Finish +Gate - The path between two cones through which the car must pass. Two cones, one on each side of the +course define a gate: Two sequential cones in a slalom define a gate. +Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter +the course. +Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit +the course. +Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about +to start. +OC - A car is Off Course if it does not pass through a gate in the required direction. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix A +Accumulator Rating & Fuel +Equivalency + +Each accumulator device will be assigned an energy rating and fuel equivalency based on +the following: + +Battery capacities are based on nominal (data sheet values). Ultracap capacities are based on the +maximum operating voltage (Vpeak) and the effective capacitance in Farads (Nparallel x C / +Nseries). +Batteries: Energy (Wh) = Vnom x Inom x Total Number of Cells x 80% +Capacitors: + +where V +min + is assumed to be 10% of V +peak. + +Table 19 - Accumulator Device Energy Calculations +Liquid Fuels Wh / Liter +32 + +Gasoline (Sunoco +33 + Optima) 2,343 +Table 20 - Fuel Energy Equivalencies +Examples: + +A battery with an energy rating of 3110 Wh has a fuel equivalency of 1.327 liters. + +If using 89 Maxell MC 2600 ultracaps in series (2600 F/89 = 29.2 F, 2.7 x 89 = 240 V), the fuel +equivalency is 231.9 Wh resulting in a 99cc reduction of gasoline. + +32 + Formula Hybrid + Electric assumes a mechanical efficiency of 27% +33 + Full specifications for Sunoco racing fuels may be found at: https://www.sunocoracefuels.com/ + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix B + +Determination of LapSum(n) +Values + +The parameter LapSum(n) is used in the calculation of the scores for the endurance event. It is a function +of the number of laps (n) completed by a team during the endurance event. It is calculated by summing +the lap numbers from 1 to (n), the number of laps completed. This gives increasing weight to each +additional lap completed during the endurance event. + +For example: +If your team is credited with completing five (5) laps of the endurance event, the value of LapSum(n)your +used in compute your endurance score would be the following: + +LapSum(5) +your + = 1 + 2 + 3 + 4 + 5 = 15 + + +Number of Laps +Completed (n) +LapSum(n) +Number of Laps +Completed (n) +LapSum(n) +0 0 23 276 +1 1 24 300 +2 3 25 325 +3 6 26 351 +4 10 27 378 +5 15 28 406 +6 21 29 435 +7 28 30 465 +8 36 31 496 +9 45 32 528 +10 55 33 561 +11 66 34 595 +12 78 35 630 +13 91 36 666 +14 105 37 703 +15 120 38 741 +16 136 39 780 +17 153 40 820 +18 171 41 861 +19 190 42 903 +20 210 43 946 +21 231 44 990 +22 253 + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Table 21 - Example of LapSum(n) calculation for a 44-lap Endurance event + + +Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event +0 +100 +200 +300 +400 +500 +600 +700 +800 +900 +1000 +051015202530354045 +LapSum(n) +Laps Completed +LapSum(n) vs. Number of Laps Completed + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix C +Formula Hybrid + Electric +Project Management +Event Scoring Criteria + + +INTRODUCTION +The Formula Hybrid + Electric Project Management Event is comprised of three components: +Project Plan Report +Change Management Report +Final Presentation. +These components cover the entire life cycle of the Formula Hybrid + Electric Project from design of the +vehicle through fabrication and performance verification, culminating in Formula Hybrid + +Electric competition at the track. The Project Management Event includes both written reports +and an oral presentation, providing project team members the opportunity to develop further +their communications skills in the context of a challenging automotive engineering team +experience. +Design, construction, and performance testing of a hybrid or electric race car are complex activities that +require a structured effort to increase the probability of success. The Project Management +Event is included in the Formula Hybrid + Electric competition to encourage each team to +create this structure specific to their set of circumstances and goals. Comments each team +receives from judges relative to their project plan and change management report, offer +guidance directed at project execution. Verbal comments made by judges following the +presentation component offer suggestions to improve performance in future competitions. +In scoring the Project Management Event judges assess (1) if a well-thought-out project plan has been +developed, (2) that the plan was executed effectively while addressing challenges encountered +and managing change and (3) the significance of lessons learned by team members from this +experience and quality of recommendations proposed to improve future team performance. +Basic Areas Evaluated +Five categories of effort are evaluated across the three components of Formula Hybrid + Electric +Project Management, but the scoring criteria differ for each, reflecting the phase of the project +life-cycle that is being assessed. The criteria includes: (1) Scope (2) Operations (3) Risk +Management (4) Expected Results (5) Change Management. Each is briefly defined below. + +1. Scope: A brief introduction of the project documenting what will be accomplished: team goals +and objectives beyond simply winning the competition, known as “secondary goals”, major +deliverables such as critical sub-systems, innovative designs, or new technologies, and milestones +for achieving the goals. Overall, this information is called the Statement of Work. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +2. Operations: How the project team is structured, usually shown with an organizational chart; +Work Breakdown Structure, a cascading representation of tasks that will be completed; a project +schedule for completing these tasks, usually this is depicted in a Gantt chart that shows the +timeline and interdependencies among different activities; also included are the approved budget +for the project and plan for obtaining these funds. + +3. Risk Management: Arriving at the track with a completed, rules compliant race car increases the +probability of full participation in all events during the competition. Even though numerous tasks +are involved in the design, build, and test of a hybrid race car, there is a smaller subset of tasks +that present a high risk to completing the car on schedule. These are high risk tasks because the +team may lack knowledge, experience, or sufficient resources necessary for completing them +successfully. However, to achieve the team goals, these tasks must be done. Identify the high risk +tasks along with contingency plans for advancing the project forward if they become barriers to +progress. + +4. Expected Results: In general, project teams are expected to deliver what is defined in the scope +statement, on time according to project schedule, and within the budget constraint. Goals and +objectives are more specifically defined by “measures of success”, quantified attributes that give +numerical targets for each goal. These “measures” are of value throughout project execution for +setting priorities and making resource decisions. At project completion, they are used to +determine the extent to which the team’s goals and objectives have been accomplished. + +5. Change Management: The need for change is a normal occurrence during project execution. +Change is good because it refocuses the team when new information is obtained or unexpected +challenges are encountered. But if it is not managed correctly change can become a destructive +element to the project. + +Change Management is a process designed by the team for administering project change and +managing uncertainty. The process includes built-in controls to ensure that change is managed in +a disciplined way, adequately documented and clearly communicated to all team members. +SCORING GUIDELINES +The guidelines used by judges for scoring the three components of the Project Management Event are +given in the following sections: (1) Project Plan Report, (2) Change Management Report, and +(3) Project Management Presentation at the competition. +1. Project Plan Report +Each Formula Hybrid + Electric team is required to submit a formal Project Plan that reflects team goals +and objectives for the upcoming competition, the management structure and tasks that will be +completed to accomplish these objectives, and the time schedule over which these tasks will be +performed. In addition, the formal process for managing change must be defined. A maximum +of fifty-five (55) points is awarded for the Project Plan. +Quality of the Written Document: The plan should look and read like a professional document. The +flow of information is expected to be logical; the content should be clear and concise. The +reader should be able to understand the plan that will be executed. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +The Project Plan must consist of at least one (1) page and not exceed three (3) pages of text. Appendices +may be attached to the Project Plan and do not count as “pages”, but they must be relevant and +referenced in the body of the report. + “SMART” Goals +Projects are initiated to achieve predetermined goals, which are identified in the Scope statement. The +project plan is a “roadmap” for effectively deploying team resources to accomplish these goals. +Overall, the requirements of the Project Plan incorporate the basic principles of “SMART” +goals. These goals have the following characteristics: +● Specific: Sufficient detail is provided to clearly identify the targeted objectives; goals are +specifically stated so that all individual project team members understand what the team must +accomplish. +● Measurable: The objectives are quantified so that progress toward the goals can be measured; +“measures of success” are defined for this purpose. +● Assignable: The person or group responsible for achieving the goals is identified; each task, +milestone, and deliverable has an owner, someone responsible for seeing that each is completed. +● Realistic: The goals can actually be achieved given the resources and time available. Along with +realistic goals, a team might define “stretch goals” which are more aggressive objectives that +challenge the team. If the “stretch goals” become barriers to progress during project execution, +the change management process is used to pull back “stretch goals”, re-focusing the team on +more realistic objectives. +● Time-Related: Deadlines are set for achieving each goal, milestone, or deliverable. These +deadlines are consistent with the overall project schedule and can be extracted from the project +timeline. +Characteristics of an Excellent Project Plan Report Submission +● Scope: A brief overview is included covering the team’s past performance and recommendations +received from previous teams for improvement. Achievable primary and secondary goals for this +year’s team are clearly stated. These goals are more than simply winning the competition. +Milestones, with due dates, and major deliverables that support accomplishing the goals are +listed. +● Operations: An organizational chart showing the structure of the team and Work Breakdown +Structure showing the cascading linkage of tasks comprising the project are included. The +timeframe and interdependencies of each task are shown in a Gantt chart timeline. The project +budget is specified and a brief overview of how these funds will be obtained is given. +● Risk Management: Careful thought is demonstrated to understand the weakest areas of the +project plan. Several “High Risk” tasks are identified that might have a significant impact on a +functional car being produced on time. A contingency plan is described to mitigate these risks if +they become barriers during project execution. +● Expected Results: All teams are expected to complete the project on schedule, within budget, +and to deliver a functional, rules complaint race car to the track. But each team has a set of +primary and secondary goals specific to its project plan. Additional depth is given to these goals +by quantifying them, defining measurable targets helpful for directing team efforts. At least two +“measures of success” are defined that are related to the team’s specific performance goals. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +● Change Management: A process for administering changes has been carefully thought-out; it is +briefly described and shown schematically in terms of: (1) what triggers the process, (2) how +information flows through the process, (3) how decision making is handled, and (4) how changes +are communicated to the team. A process flow diagram may be included in the Appendix to save +space, however is referenced in the body of the report. At a minimum, the diagram shows the +“trigger”, information flow, decision making tasks and responsibilities, and communication tasks. +The diagram is specific to and created by the team. There are sufficient controls in place to +prevent un-managed changes. The team has an effective communication plan in place to keep all +team members informed throughout project duration. +Applying the Project Plan Report Scoring Guidelines +The guidelines for awarding points in each Project Plan Report category are given in Figure 46. Four +performance designations are also specified: Excellent, Good, Marginal, and Deficient. A range +of points is suggested for each designation to give reviewers flexibility in evaluating the quality +and completeness of the submitted plans. +While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component +must be summarized in the body of the report to receive full credit. Any diagram or table (or +other appropriate figure type) must be referenced and linked appropriately to the correct content +in the Appendix. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 46 - Scoring Guidelines: Project Plan Component +34 + + + + +34 + This score sheet is available on the Formula Hybrid+Electric website in the Project Management Resources +folder. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +2. Change Management Report +The purpose of the Change Management Report is to give each judge a sense of the team’s ability to deal +with issues that will put the project schedule at risk. +Frequently, as the project progresses or as problems arise, changes may be required to vehicle +specifications or the plan for completing the project. This is an area that many teams find +difficult to manage. Of particular interest to judges are barriers encountered and creative +actions taken by the team to overcome these challenges and advance the project forward. +The Change Management Report is a maximum two (2) page summary, clearly communicating the +documented changes to the project scope and plan that have been approved using the change +management process. Appendices may be included with supporting information; they do not +have a page limit but the content is expected to be supportive of the information covered in the +main body of the report. +A maximum of forty (40) points is awarded for the Change Management Report. The content of the report +is evaluated in three broad areas: (1) Explanation of the Change Management Process (2) +Example of the Implementation of the Change Management Process, and (3) Evaluation of the +Effectiveness and Areas of Improvement for the Change Management Process. Additionally, a +final area evaluated is the quality of the overall report document. +Characteristics of an Excellent Change Management Report Submission +● Change Management Process: In the body of the report, the team provides a thorough and +clear explanation of their Change Management Process, including the following characteristics: +• What triggers/initiates the process? +• How does information flow through the process? +• How are decisions made, and who makes those decisions? +• How are final decisions communicated to the team? +• Process flow diagram (see below) +● A process flow diagram may be included in the Appendix to save space; however, it is referenced +in the body of the report. At a minimum, the diagram shows the “trigger”, information flow, +decision making tasks and responsibilities, and communication tasks. The diagram is specific to +and created by the team. +● Implementation of the Change Management Process: In the body of the report, the team +provides a single thorough and clear example of the implementation of the Change Management +Process. The example provided addresses all stages of the process from start to finish, including +the overall impact to the project. +● Effectiveness of and Improvements to the Change Management Process: In the body of the +report, the team provides their own assessment of the effectiveness of their Change Management +Process, primarily based upon the example provided. This includes the effectiveness of each stage +of the process (trigger, information flow, decision making, and communication) as well as an +overall assessment. Based on their assessment, the team provides two areas of opportunity to +improve the Change Management Process, including what stage of the process is impacted and +why this change is being made. The team addresses plans for what the team must do to make the +proposed changes, timing of changes, and a definition of how to measure the effectiveness of the +changes for the following year. + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +● Proper Use of Appendix: While the Appendix may be used to refer to diagrams, tables, etc., a +brief explanation for each component must be summarized in the body of the report to receive full +credit. Any diagram or table (or other appropriate figure type) must be referenced and linked +appropriately to the correct content in the Appendix. + +Applying the Change Management Scoring Guidelines +The guidelines for awarding points in each Change Management Report evaluation category are given in +Figure 47. Similar to the Project Plan guidelines, four performance designations are specified: +Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation +to give reviewers flexibility in weighing quality and completeness of information for each +category. + + +Figure 47: Change Management Report Scoring Guidelines + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + + +While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component +must be summarized in the body of the report to receive full credit. Any diagram or table (or +other appropriate figure type) must be referenced and linked appropriately to the correct content +in the Appendix. +3. Project Management Presentation at the Competition +The Presentation component gives teams the opportunity to briefly explain their project plans, assess how +well their project management process worked, and identify recommendations for improving +their team’s project management process in the future. In addition, the Presentation component +enables team leaders to enhance their communication skills in presenting a complex topic +clearly and concisely. +The Presentation component is the culmination of the project management experience, which included +submission by each team of a project plan and change management report. Scoring of each +presentation is based on how well project management practices were used by the team in the +planning, execution, and change management aspects of the project. Of particular interest are +innovative approaches used by each team in dealing with challenges and how lessons learned +from the current competition will be used to foster continuous improvement in the design, +development, and testing of their cars for future competitions. +Project Management presentations are made on the Static Events Day during the competition. Each +presentation is limited to a maximum of twelve (12) minutes. An eight (8) minute question and +answer period will follow along with a feedback discussion with judges lasting no longer than +five (5) minutes. +This format will give each team an opportunity to critique their project management performance, clarify +major points, and have a discussion with judges on areas that can be improved or strengths that +can be built upon for next year’s competition. Only the team members present who are +introduced at the start of the presentation will be allowed to speak and/or respond to questions +and comments. +Scoring the Project Management Presentation +In awarding points, each judge must determine if the team demonstrated an understanding of project +management, if the described accomplishments are credible, and if the approaches used to +manage the project were effective. These judgements are formed after listening to each +presentation and probing the teams for clarity and additional details during the questioning +period afterward. Presentation quality and communications skills of team members are +extremely important for establishing a positive impression. +A chart summarizing the evaluation criteria for the Presentation component is given in Figure 48 – +Evaluation Criteria. This provides more detailed guidelines used by the judging review team +for evaluating each project management presentation. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 + +Figure 48 – Evaluation Criteria +Characteristics on an Excellent Project Management Presentation +● Scope: The primary and secondary goals defined in the project plan are addressed; the degree +to which each has been accomplished is explained. Where applicable, the “Measures of Success” +are used to support the stated level of accomplishment. If the original goals have been changed, +the reasons for modification are explained. +● Operations: Was this project a success? This conclusion is supported by Team performance +against the budget, project schedule, and deliverables produced. The effectiveness of the team’s +structure is explained. If the operation was disorderly or inefficient during project execution, an +overview of corrective actions taken to fix the problem is given. +● Risk Management: The team’s success to correctly anticipate risk in the original project plan +and effectiveness of the risk mitigation plan are described. An overview of unanticipated risks +that were encountered during project execution and approaches to overcome these barriers are +explained. +● Change Management: A need for change occurs naturally in almost every project; it is +anticipated that every Formula Hybrid + Electric team will have experienced some type of change +during project execution. Change management strives to align the efforts of all team members +working in the dynamic project environment. The effectiveness of the overall change +management process in dealing with needed modifications is described. This is supported with + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +statistics on the number of changes approved and rejected. The effectiveness of the team’s +communication methods, both written and verbal, is explained. Areas of opportunity for +improvement to the change management process are briefly described as well as their status of +implementation for next year. +● Lessons Learned: When a project is completed, the team should conduct an assessment of +overall performance to determine what worked well and what failed. The strengths and +weaknesses of the team are described. This evaluation is used to propose recommendations for +improving the performance of next year’s team. Also, a plan for conveying this information to the +new leadership team is described. A leadership succession plan is briefly described. +● “SMART” Goals: Team’s demonstrated understanding and application of “SMART” goals. +● Communications Skills: The team establishes credibility by demonstrating that it has taken the +time necessary to carefully plan and create the presentation. The presentation is well organized, +content is relevant to the purpose of the presentation. Charts have a professional appearance and +are informative. Without the speaker rushing through the material, a large amount of information +is conveyed within the allowed time limit. Tables, diagrams, and graphs are used effectively. +Team members demonstrate mutual accountability with shared responses to questions. Answers are +conveyed in a manner that instills confidence in the team’s ability to plan and execute a complex +project like Formula Hybrid + Electric. + + + +Figure 49 - Project Management Scoring Sheet + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix D +Design Judging Form +35 + + + +35 + This form is for informational use only – the actual form used may differ. Check the Formula Hybrid + Electric +website prior to the competition for the latest Design judging form. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix E +Wire Current Capacity (DC) + + +Wire Gauge +Copper +AWG +Conductor +Area mm +2 + +Max. +Continuous +Fuse Rating +(A) + +Standard +Metric Wire +Size mm +2 + +Max. +Continuous +Fuse Rating +(A) +24 0.20 5 0.50 10 +22 0.33 7 0.75 12.5 +20 0.52 10 1.0 15 +18 0.82 14 1.5 20 +16 1.31 20 2.5 30 +14 2.08 28 4.0 40 +12 3.31 40 6.0 60 +10 5.26 55 10 90 +8 8.37 80 16 130 +6 13.3 105 25 150 +4 21.2 140 35 200 +3 26.7 165 50 250 +2 33.6 190 70 300 +1 42.4 220 95 375 +0 53.5 260 120 425 +2/0 67.4 300 150 500 +3/0 85.0 350 185 550 +4/0 107 405 240 650 +250 MCM 127 455 300 800 +300 MCM 152 505 +350 MCM 177 570 +400 MCM 203 615 +500 MCM 253 700 +Table 22 – Wire Current Capacity (single conductor in air) +Reference: US National Electrical Code Table 400.5(A)(2), 90C Column D1 (Copper wire only) + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix F +Required Equipment + +□ Fire Extinguishers +Minimum Requirements +Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers + +Extinguishers of larger capacity (higher numerical ratings) are acceptable. +All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows +“FULL”. + +Special Requirements +Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire +extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at +least two (2) additional extinguishers/material (at least 5 lb. or equivalent) of the required type must be +procured and accompany the car at all times. As recommendations vary, teams are advised to consult the +rules committee before purchasing expensive extinguishers that may not be necessary. +□ Chemical Spill Absorbent +Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must +be presented at technical inspection. +□ Insulated Gloves +Insulated gloves, rated for at least the voltage in the TS system, with protective over-gloves. Electrical +gloves require testing by a qualified company. The testing is valid for 14 months after the date of the test. +All gloves must have the test date printed on them. +□ Safety Glasses +Safety glasses must be worn as specified in section D10.7 +□ Additional +Any special safety equipment required for dealing with accumulator mishaps, for example correct gloves +recommended for handling any electrolyte material in the accumulator. + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix G +Example Relay Latch Circuits + + +The diagrams below are examples of relay-based latch circuits that can be used to latch the momentary +output of the Bender IMD (either high-true or low-true) such that it will comply with Formula Hybrid + +Electric rule EV7.1. Circuits such as these can also be used to latch AMS faults in accordance +with EV2.1.3. It is highly recommended that IMD and AMS latching circuits be separate and +independent to aid fault identification during the event. + +Note: It is important to confirm by checking the data sheets, that the output pin of the IMD can power the +relay directly. If not, an amplification device will be required +36 + + + + + +. + + Figure 50 - Latching for Active-High output Figure 51 - Latching for Active-Low output + + + + +36 + An example relay is the Omron LY3-DC12: +http://www.ia.omron.com/product/item/6403/ + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix H +Firewall Equivalency Test + +To demonstrate equivalence to the aluminum sheet specified in rule T4.5.2, teams should submit +a video, showing a torch test of their proposed firewall material. + +Camera angle, etc. should be similar to the video found here: + + +https://www.youtube.com/watch?v=Qw6kzG97ZtY + +A propane plumber’s torch should be held at a distance from the test piece such that the hottest +part of the flame (the tip of the inner cone) is just touching the test piece. + +The video must show two sequential tests and be contiguous and unedited (except for trimming +the irrelevant leading and trailing portions). + +The first part of the video should show the torch applied to a piece of Aluminum of the thickness +called for in T4.5.2, and held long enough to burn through the aluminum. The torch should then +be moved directly to a similarly sized test piece of the proposed material without changing any +settings, and held for at least as long as the burn-through time for the Aluminum. + +There must be no penetration of the test piece. The equivalent firewall construction must have +similar mechanical strength to the aluminum barrier called for in T4.5.2. This can be +demonstrated by equivalent resistance to deformation or puncturing. + + + + + + + + + + + + + + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix I Virtual Racing +Challenge + +The Virtual Racing Challenge will be held in 2025. + + + + + + + + + + + + + + + + + + + + + +END \ No newline at end of file From 79d5fc25cf601e47545abe5e09441325df7a7d85 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Sun, 2 Nov 2025 23:09:36 -0500 Subject: [PATCH 04/25] #3622 fhe little img info addition --- scripts/document-parser/FHEparser.ts | 89 ++++- scripts/document-parser/README.md | 4 +- scripts/document-parser/fhe_image_info.json | 365 ++++++++++++++++++++ 3 files changed, 451 insertions(+), 7 deletions(-) create mode 100644 scripts/document-parser/fhe_image_info.json diff --git a/scripts/document-parser/FHEparser.ts b/scripts/document-parser/FHEparser.ts index 9075df713b..dffa14029b 100644 --- a/scripts/document-parser/FHEparser.ts +++ b/scripts/document-parser/FHEparser.ts @@ -8,6 +8,12 @@ interface RuleData { pageNumber: string; } +interface imgData { + label: string; + description: string; + pageNumber: string; +} + interface Rule { ruleCode: string; ruleContent: string; @@ -19,10 +25,15 @@ interface ParsedOutput { generatedAt: string; } +interface ParsedImgOutput { + imgInfo: imgData[]; + generatedAt: string; +} + class FHERuleParser { - async parsePdf(path: string): Promise<{ rules: RuleData[]; text: string }> { + async parsePdf(path: string): Promise<{ rules: RuleData[]; imgInfo: imgData[], text: string }> { const filePath = "ruleDocs/" + path; - console.log(`Reading ${filePath}`); + console.log(`Reading ${filePath}`); const dataBuffer = fs.readFileSync(filePath); const pdfData = await pdf(dataBuffer); @@ -30,7 +41,63 @@ class FHERuleParser { console.log(`PDF Stats: ${pdfData.numpages} pages, ${pdfData.text.length} characters`); const rules = this.extractRules(pdfData.text); - return { rules, text: pdfData.text }; + const imgInfo = this.extractImageInfo(pdfData.text); + return { rules, imgInfo, text: pdfData.text }; + } + + private extractImageInfo(text: string): imgData[] { + const imgInfo: imgData[] = []; + const lines = text.split('\n'); + + const imgPattern = /^(FIGURE|TABLE)\s+(\d+(?:[A-C])?)\s*[-–—:]?\s*(.+?)?\s*(\d+)\s*$/i; + let inIndexSection = false; + let inTablesSection = false; + + for (const line of lines) { + const trimmedLine = line.trim(); + + // start capturing in Index of Figures section + if (/^Index of Figures/i.test(trimmedLine)) { + inIndexSection = true; + continue; + } + + if (/^Index of Tables/i.test(trimmedLine)) { + inTablesSection = true; + continue; + } + + if (inIndexSection) { + const match = trimmedLine.match(imgPattern); + if (match) { + const label = `${match[1].charAt(0).toUpperCase() + match[1].slice(1).toLowerCase()} ${match[2]}`; + const description = match[3]?.trim() || ''; + const pageNumber = match[4]; + + // check for another figure/table inside description (specific case fix) + const secondPattern = /^(.+?)\s+(FIGURE|TABLE)\s+(\d+(?:[A-C])?)\s*[-–—:]?\s*(.+)$/i; + const secondMatch = description.match(secondPattern); + + imgInfo.push({ + label, + description: secondMatch ? secondMatch[1].trim() : description, + pageNumber, + }); + if (secondMatch) { + imgInfo.push({ + label: `${secondMatch[2].charAt(0).toUpperCase() + secondMatch[2].slice(1).toLowerCase()} ${secondMatch[3]}`, + description: secondMatch[4].trim(), + pageNumber, + }); + } + } + } + if (inTablesSection && /^2025 Formula Hybrid/i.test(trimmedLine)) { + inIndexSection = false; + break; + } + } + return imgInfo; } private extractRules(text: string): RuleData[] { @@ -193,13 +260,21 @@ class FHERuleParser { return parentParts.join('.'); } - async saveToJSON(rules: RuleData[], outputPath: string = './fhe_rules.json'): Promise { + async saveToJSON(rules: RuleData[], imgInfo: imgData[], outputPath: string, imgInfoPath: string): Promise { const output: ParsedOutput = { rules: rules, totalRules: rules.length, generatedAt: new Date().toISOString() }; + const imgOutput: ParsedImgOutput = { + imgInfo: imgInfo, + generatedAt: new Date().toISOString() + }; + + fs.writeFileSync(imgInfoPath, JSON.stringify(imgOutput, null, 2), 'utf-8'); + console.log(`Saved image info to ${imgInfoPath}`); + fs.writeFileSync(outputPath, JSON.stringify(output, null, 2), 'utf-8'); console.log(`Saved ${rules.length} rules to ${outputPath}`); } @@ -214,11 +289,13 @@ class FHERuleParser { async function main(): Promise { const filePath = process.argv[2]; const outputFile = process.argv[3] || './fhe_rules.json'; + // List of figure/table descriptions and page numbers + const imgListFile = process.argv[4] || './fhe_image_info.json'; const parser = new FHERuleParser(); try { - const { rules, text } = await parser.parsePdf(filePath); - await parser.saveToJSON(rules, outputFile); + const { rules, imgInfo, text } = await parser.parsePdf(filePath); + await parser.saveToJSON(rules, imgInfo, outputFile, imgListFile); await parser.saveToTxt(text); } catch (error) { console.error('Error:', error); diff --git a/scripts/document-parser/README.md b/scripts/document-parser/README.md index 0b1b9bb798..4e3a1f6391 100644 --- a/scripts/document-parser/README.md +++ b/scripts/document-parser/README.md @@ -1,3 +1,5 @@ cd scripts/document-parser npm install -npx ts-node FSAEparser.ts FSAE.pdf \ No newline at end of file + +npx ts-node FSAEparser.ts FSAE.pdf +npx ts-node FHEparser.ts FHE.pdf \ No newline at end of file diff --git a/scripts/document-parser/fhe_image_info.json b/scripts/document-parser/fhe_image_info.json new file mode 100644 index 0000000000..fb478dd63b --- /dev/null +++ b/scripts/document-parser/fhe_image_info.json @@ -0,0 +1,365 @@ +{ + "imgInfo": [ + { + "label": "Figure 1", + "description": "FORMULA HYBRID + ELECTRIC SUPPORT PAGE", + "pageNumber": "16" + }, + { + "label": "Figure 2", + "description": "OPEN WHEEL DEFINITION", + "pageNumber": "19" + }, + { + "label": "Figure 3", + "description": "TRIANGULATION", + "pageNumber": "21" + }, + { + "label": "Figure 5", + "description": "PERCY -- 95TH PERCENTILE MALE WITH HELMET", + "pageNumber": "26" + }, + { + "label": "Figure 6", + "description": "95TH PERCENTILE TEMPLATE POSITIONING", + "pageNumber": "27" + }, + { + "label": "Figure 7", + "description": "MAIN AND FRONT HOOP BRACING", + "pageNumber": "29" + }, + { + "label": "Figure 8", + "description": "DOUBLE-LUG JOINT", + "pageNumber": "30" + }, + { + "label": "Figure 9", + "description": "DOUBLE LUG JOINT", + "pageNumber": "30" + }, + { + "label": "Figure 10", + "description": "SLEEVED BUTT JOINT", + "pageNumber": "30" + }, + { + "label": "Figure 11", + "description": "SIDE IMPACT STRUCTURE", + "pageNumber": "35" + }, + { + "label": "Figure 12", + "description": "SIDE IMPACT ZONE DEFINITION FOR A MONOCOQUE", + "pageNumber": "39" + }, + { + "label": "Figure 13", + "description": "ALTERNATE SINGLE BOLT ATTACHMENT", + "pageNumber": "40" + }, + { + "label": "Figure 14", + "description": "COCKPIT OPENING TEMPLATE", + "pageNumber": "41" + }, + { + "label": "Figure 15", + "description": "COCKPIT INTERNAL CROSS SECTION TEMPLATE", + "pageNumber": "42" + }, + { + "label": "Figure 16", + "description": "EXAMPLES OF FIREWALL CONFIGURATIONS", + "pageNumber": "45" + }, + { + "label": "Figure 17", + "description": "SEAT BELT THREADING EXAMPLES", + "pageNumber": "48" + }, + { + "label": "Figure 18", + "description": "LAP BELT ANGLES WITH UPRIGHT DRIVER", + "pageNumber": "49" + }, + { + "label": "Figure 19", + "description": "SHOULDER HARNESS MOUNTING – TOP VIEW", + "pageNumber": "50" + }, + { + "label": "Figure 20", + "description": "SHOULDER HARNESS MOUNTING – SIDE VIEW", + "pageNumber": "50" + }, + { + "label": "Figure 21", + "description": "OVER-TRAVEL SWITCHES", + "pageNumber": "57" + }, + { + "label": "Figure 22", + "description": "FINAL DRIVE SCATTER SHIELD EXAMPLE", + "pageNumber": "59" + }, + { + "label": "Figure 23", + "description": "EXAMPLES OF POSITIVE LOCKING NUTS", + "pageNumber": "62" + }, + { + "label": "Figure 24", + "description": "EXAMPLE CAR NUMBER", + "pageNumber": "64" + }, + { + "label": "Figure 25", + "description": "SURFACE ENVELOPE", + "pageNumber": "70" + }, + { + "label": "Figure 26", + "description": "HOSE CLAMPS", + "pageNumber": "73" + }, + { + "label": "Figure 27", + "description": "FILLER NECK", + "pageNumber": "75" + }, + { + "label": "Figure 28", + "description": "ACCUMULATOR STICKER", + "pageNumber": "80" + }, + { + "label": "Figure 29", + "description": "EXAMPLE NP3S CONFIGURATION", + "pageNumber": "83" + }, + { + "label": "Figure 30", + "description": "EXAMPLE 5S4P CONFIGURATION", + "pageNumber": "84" + }, + { + "label": "Figure 31", + "description": "EXAMPLE ACCUMULATOR SEGMENTING", + "pageNumber": "86" + }, + { + "label": "Figure 32", + "description": "VIRTUAL ACCUMULATOR EXAMPLE", + "pageNumber": "91" + }, + { + "label": "Figure 33", + "description": "FINGER PROBE", + "pageNumber": "92" + }, + { + "label": "Figure 34", + "description": "HIGH VOLTAGE LABEL", + "pageNumber": "92" + }, + { + "label": "Figure 35", + "description": "CONNECTION STACK-UP", + "pageNumber": "95" + }, + { + "label": "Figure 36", + "description": "CREEPAGE DISTANCE EXAMPLE", + "pageNumber": "101" + }, + { + "label": "Figure 37", + "description": "PRIORITY OF SHUTDOWN SOURCES", + "pageNumber": "104" + }, + { + "label": "Figure 38", + "description": "EXAMPLE MASTER SWITCH AND SHUTDOWN CIRCUIT CONFIGURATION", + "pageNumber": "106" + }, + { + "label": "Figure 39", + "description": "TYPICAL MASTER SWITCH", + "pageNumber": "107" + }, + { + "label": "Figure 40", + "description": "INTERNATIONAL KILL SWITCH SYMBOL", + "pageNumber": "108" + }, + { + "label": "Figure 41", + "description": "EXAMPLE SHUTDOWN STATE DIAGRAM", + "pageNumber": "110" + }, + { + "label": "Figure 42", + "description": "TYPICAL ESOK LAMP", + "pageNumber": "114" + }, + { + "label": "Figure 43", + "description": "INSULATION MONITORING DEVICE TEST", + "pageNumber": "116" + }, + { + "label": "Figure 44", + "description": "1", + "pageNumber": "18" + }, + { + "label": "Figure 45", + "description": "PLOT OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT", + "pageNumber": "159" + }, + { + "label": "Figure 46", + "description": "SCORING GUIDELINES: PROJECT PLAN COMPONENT", + "pageNumber": "164" + }, + { + "label": "Figure 47", + "description": "CHANGE MANAGEMENT REPORT SCORING GUIDELINES", + "pageNumber": "166" + }, + { + "label": "Figure 48", + "description": "EVALUATION CRITERIA", + "pageNumber": "168" + }, + { + "label": "Figure 49", + "description": "PROJECT MANAGEMENT SCORING SHEET", + "pageNumber": "169" + }, + { + "label": "Figure 50", + "description": "LATCHING FOR ACTIVE-HIGH OUTPUT", + "pageNumber": "173" + }, + { + "label": "Figure 51", + "description": "LATCHING FOR ACTIVE-LOW OUTPUT", + "pageNumber": "173" + }, + { + "label": "Table 1", + "description": "2024 ENERGY AND ACCUMULATOR LIMITS", + "pageNumber": "1" + }, + { + "label": "Table 2", + "description": "EVENT POINTS", + "pageNumber": "2" + }, + { + "label": "Table 3", + "description": "REQUIRED DOCUMENTS", + "pageNumber": "12" + }, + { + "label": "Table 4", + "description": "BASELINE STEEL", + "pageNumber": "22" + }, + { + "label": "Table 5", + "description": "STEEL TUBING MINIMUM WALL THICKNESSES", + "pageNumber": "23" + }, + { + "label": "Table 6", + "description": "95TH PERCENTILE MALE TEMPLATE DIMENSIONS", + "pageNumber": "25" + }, + { + "label": "Table 7", + "description": "SFI / FIA STANDARDS LOGOS", + "pageNumber": "66" + }, + { + "label": "Table 8", + "description": "VOLTAGE AND ENERGY LIMITS", + "pageNumber": "79" + }, + { + "label": "Table 9", + "description": "AMS VOLTAGE MONITORING", + "pageNumber": "89" + }, + { + "label": "Table 10", + "description": "AMS TEMPERATURE MONITORING", + "pageNumber": "89" + }, + { + "label": "Table 11", + "description": "RECOMMENDED TS CONNECTION FASTENERS", + "pageNumber": "96" + }, + { + "label": "Table 12", + "description": "MINIMUM SPACINGS", + "pageNumber": "100" + }, + { + "label": "Table 13", + "description": "INSULATING MATERIAL - MINIMUM TEMPERATURES AND THICKNESSES", + "pageNumber": "100" + }, + { + "label": "Table 14", + "description": "PCB TS/GLV SPACINGS", + "pageNumber": "102" + }, + { + "label": "Table 15", + "description": "STATIC EVENT MAXIMUM SCORES", + "pageNumber": "126" + }, + { + "label": "Table 16", + "description": "PROJECT MANAGEMENT SCORING", + "pageNumber": "129" + }, + { + "label": "Table 17", + "description": "DYNAMIC EVENT MAXIMUM SCORES", + "pageNumber": "137" + }, + { + "label": "Table 18", + "description": "FLAGS", + "pageNumber": "151" + }, + { + "label": "Table 19", + "description": "ACCUMULATOR DEVICE ENERGY CALCULATIONS", + "pageNumber": "157" + }, + { + "label": "Table 20", + "description": "FUEL ENERGY EQUIVALENCIES", + "pageNumber": "157" + }, + { + "label": "Table 21", + "description": "EXAMPLE OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT", + "pageNumber": "158" + }, + { + "label": "Table 22", + "description": "WIRE CURRENT CAPACITY (SINGLE CONDUCTOR IN AIR)", + "pageNumber": "171" + } + ], + "generatedAt": "2025-11-03T04:08:18.963Z" +} \ No newline at end of file From d89bfb344a2b992b0f0d42cabb11fc1bc88d17ca Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Mon, 3 Nov 2025 14:29:25 -0500 Subject: [PATCH 05/25] #3622 single parser class with FSAE/FHE inheritance --- scripts/document-parser/FSAEparser.ts | 227 - scripts/document-parser/README.md | 4 +- .../{FHEparser.ts => RuleParser.ts} | 248 +- scripts/document-parser/index.ts | 30 + .../FHE_images.json} | 2 +- .../{ => jsonOutput}/fhe_rules.json | 2397 ++- .../{ => jsonOutput}/fsae_rules.json | 862 +- scripts/document-parser/package-lock.json | 51 +- scripts/document-parser/package.json | 9 +- scripts/document-parser/parsers/FHEParser.ts | 96 + scripts/document-parser/parsers/FSAEParser.ts | 80 + scripts/document-parser/txtVersions/FHE.txt | 13536 +++++++--------- scripts/document-parser/txtVersions/FSAE.txt | 11472 +++++++------ 13 files changed, 13582 insertions(+), 15432 deletions(-) delete mode 100644 scripts/document-parser/FSAEparser.ts rename scripts/document-parser/{FHEparser.ts => RuleParser.ts} (50%) create mode 100644 scripts/document-parser/index.ts rename scripts/document-parser/{fhe_image_info.json => jsonOutput/FHE_images.json} (99%) rename scripts/document-parser/{ => jsonOutput}/fhe_rules.json (55%) rename scripts/document-parser/{ => jsonOutput}/fsae_rules.json (94%) create mode 100644 scripts/document-parser/parsers/FHEParser.ts create mode 100644 scripts/document-parser/parsers/FSAEParser.ts diff --git a/scripts/document-parser/FSAEparser.ts b/scripts/document-parser/FSAEparser.ts deleted file mode 100644 index f4fc8068f9..0000000000 --- a/scripts/document-parser/FSAEparser.ts +++ /dev/null @@ -1,227 +0,0 @@ -import * as fs from 'fs'; -import pdf from 'pdf-parse'; - -interface RuleData { - ruleCode: string; - ruleContent: string; - parentRuleCode?: string; - pageNumber: string; -} - -interface Rule { - ruleCode: string; - ruleContent: string; -} - -interface ParsedOutput { - rules: RuleData[]; - totalRules: number; - generatedAt: string; -} - -class FSAERuleParser { - async parsePdf(path: string): Promise<{ rules: RuleData[]; text: string }> { - const filePath = "ruleDocs/" + path; - console.log(`Reading ${filePath}`); - - const dataBuffer = fs.readFileSync(filePath); - const pdfData = await pdf(dataBuffer); - - console.log(`PDF Stats: ${pdfData.numpages} pages, ${pdfData.text.length} characters`); - - const rules = this.extractRules(pdfData.text); - return { rules, text: pdfData.text }; - } - - private extractRules(text: string): RuleData[] { - const rules: RuleData[] = []; - const lines = text.split('\n'); - - let currentRule: { code: string; text: string; pageNumber: string } | null = null; - let currentPageNumber = '1'; - - const saveCurrentRule = () => { - if (currentRule) { - // Check if the rule has lettered sub-items - const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); - - if (subRules.length > 0) { - // Add the main rule and all sub-rules - rules.push(...subRules); - } else { - // No sub-rules, just add the main rule - rules.push({ - ruleCode: currentRule.code, - ruleContent: currentRule.text.trim(), - parentRuleCode: this.findParentRuleCode(currentRule.code), - pageNumber: currentRule.pageNumber, - }); - } - } - }; - - for (const line of lines) { - const trimmedLine = line.trim(); - if (!trimmedLine) continue; - - // Update page number if found - const pageMatch = this.extractPageNumber(trimmedLine); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - - // Check if this line starts a new rule - const rule = this.parseRuleNumber(trimmedLine); - if (rule) { - saveCurrentRule(); - - currentRule = { - code: rule.ruleCode, - text: rule.ruleContent, - pageNumber: currentPageNumber, - }; - } else if (currentRule) { - // Append to existing rule - currentRule.text += ' ' + trimmedLine; - } - } - - saveCurrentRule(); - return rules; - } - - /** - * Extracts bulleted child rules (a, b, c, etc.) from a rule's content - * and adds them as separate rules - * @param ruleCode The parent rule code (e.g., "EV.5.2.2") - * @param content The full rule content - * @param pageNumber The page number - * @returns Array of RuleData including the main rule and new subrules - */ - private extractSubRules(ruleCode: string, content: string, pageNumber: string): RuleData[] { - const subRules: RuleData[] = []; - - // Pattern for lettered bullets like "a. Some text" or "b. Some text" - const letterPattern = /\s+([a-z])\.\s+/g; - const matches = [...content.matchAll(letterPattern)]; - - if (matches.length === 0) { - // No sub-rules found - return []; - } - - // Extract the main rule content (everything before the first lettered item) - const firstMatchIndex = matches[0].index!; - const mainContent = content.substring(0, firstMatchIndex).trim(); - - // Add the main rule - subRules.push({ - ruleCode: ruleCode, - ruleContent: mainContent, - parentRuleCode: this.findParentRuleCode(ruleCode), - pageNumber: pageNumber, - }); - - // Extract the lettered sub-rules - for (let i = 0; i < matches.length; i++) { - const letter = matches[i][1]; - const startIndex = matches[i].index! + matches[i][0].length; - - // Find where this sub-rule ends (either at next letter or end of rule content) - const endIndex = i < matches.length - 1 - ? matches[i + 1].index! - : content.length; - - const subRuleContent = content.substring(startIndex, endIndex).trim(); - const subRuleCode = `${ruleCode}.${letter}`; - - subRules.push({ - ruleCode: subRuleCode, - ruleContent: subRuleContent, - parentRuleCode: ruleCode, - pageNumber: pageNumber, - }); - } - return subRules; - } - - private parseRuleNumber(line: string): Rule | null { - // Match rule patterns like "GR.1.1" followed by text - const rulePattern = /^([A-Z]{1,4}(?:\.[\d]+)+)\s+(.+)$/; - // Match section patterns like "GR - GENERAL REGULATIONS" - const sectionPattern = /^([A-Z]{1,4})\s*-\s*([A-Z][A-Z\s]+)$/; - - let match = line.match(rulePattern) || line.match(sectionPattern); - if (match) { - return { - ruleCode: match[1], - ruleContent: match[2] - }; - } - - return null; - } - - /** - * Looks for page indicators like "Page 5 of 143" - * @param line current rule line being observed - * @returns the page number if found, otherwise null - */ - private extractPageNumber(line: string): string | null { - const pagePattern = /Page\s+(\d+)\s+of\s+\d+/i; - const match = line.match(pagePattern); - - if (match) { - return match[1]; - } - return null; - } - - private findParentRuleCode(ruleCode: string): string | undefined { - const parts = ruleCode.split('.'); - if (parts.length <= 1) { - return undefined; - } - const parentParts = parts.slice(0, -1); - return parentParts.join('.'); - } - - async saveToJSON(rules: RuleData[], outputPath: string = './fsae_rules.json'): Promise { - const output: ParsedOutput = { - rules: rules, - totalRules: rules.length, - generatedAt: new Date().toISOString() - }; - - fs.writeFileSync(outputPath, JSON.stringify(output, null, 2), 'utf-8'); - console.log(`Saved ${rules.length} rules to ${outputPath}`); - } - - async saveToTxt(text: string): Promise { - const txtPath = './txtVersions/FSAE.txt'; - fs.writeFileSync(txtPath, text, 'utf-8'); - console.log(`Saved text version to ${txtPath}`); - } -} - -async function main(): Promise { - const filePath = process.argv[2]; - const outputFile = process.argv[3] || './fsae_rules.json'; - const parser = new FSAERuleParser(); - - try { - const { rules, text } = await parser.parsePdf(filePath); - await parser.saveToJSON(rules, outputFile); - await parser.saveToTxt(text); - } catch (error) { - console.error('Error:', error); - process.exit(1); - } -} - -if (require.main === module) { - main(); -} - -export { FSAERuleParser }; \ No newline at end of file diff --git a/scripts/document-parser/README.md b/scripts/document-parser/README.md index 4e3a1f6391..f4037e1e63 100644 --- a/scripts/document-parser/README.md +++ b/scripts/document-parser/README.md @@ -1,5 +1,5 @@ cd scripts/document-parser npm install -npx ts-node FSAEparser.ts FSAE.pdf -npx ts-node FHEparser.ts FHE.pdf \ No newline at end of file +npm start FHE FHE.pdf +npm start FSAE FSAE.pdf \ No newline at end of file diff --git a/scripts/document-parser/FHEparser.ts b/scripts/document-parser/RuleParser.ts similarity index 50% rename from scripts/document-parser/FHEparser.ts rename to scripts/document-parser/RuleParser.ts index dffa14029b..3b89f2e358 100644 --- a/scripts/document-parser/FHEparser.ts +++ b/scripts/document-parser/RuleParser.ts @@ -1,20 +1,14 @@ import * as fs from 'fs'; -import pdf from 'pdf-parse'; +import pdf from 'pdf-parse-new'; -interface RuleData { +export interface RuleData { ruleCode: string; ruleContent: string; parentRuleCode?: string; pageNumber: string; } -interface imgData { - label: string; - description: string; - pageNumber: string; -} - -interface Rule { +export interface Rule { ruleCode: string; ruleContent: string; } @@ -25,30 +19,63 @@ interface ParsedOutput { generatedAt: string; } +// FHE only +interface imgData { + label: string; + description: string; + pageNumber: string; +} + interface ParsedImgOutput { imgInfo: imgData[]; generatedAt: string; } -class FHERuleParser { - async parsePdf(path: string): Promise<{ rules: RuleData[]; imgInfo: imgData[], text: string }> { - const filePath = "ruleDocs/" + path; +export enum ParserType { + FHE = 'FHE', + FSAE = 'FSAE' +} + +export abstract class RuleParser { + // must be implemented by subclasses + protected abstract extractRules(text: string): RuleData[]; + protected abstract hasImgInfo: boolean; + + async parsePdf(path: string): Promise<{ rules: RuleData[]; imgInfo?: imgData[]; text: string }> { + let options = { + // max page number to parse, 0 = all pages + max: 0, + // errors: 0, warnings: 1, infos: 5 + verbosityLevel: 0 as const + }; + + const filePath = 'ruleDocs/' + path; console.log(`Reading ${filePath}`); - + const dataBuffer = fs.readFileSync(filePath); - const pdfData = await pdf(dataBuffer); - + const pdfData = await pdf(dataBuffer, options); + console.log(`PDF Stats: ${pdfData.numpages} pages, ${pdfData.text.length} characters`); - - const rules = this.extractRules(pdfData.text); - const imgInfo = this.extractImageInfo(pdfData.text); - return { rules, imgInfo, text: pdfData.text }; + + const rules = this.extractRules(pdfData.text); + + if (this.hasImgInfo) { + const imgInfo = this.extractImageInfo(pdfData.text); + return { rules, imgInfo, text: pdfData.text }; + } + return { rules, text: pdfData.text }; } + /** + * Extracts the list of figures and tables from FHE document text + * Note: Only works for FHE due to specific formatting + * @param text full text of the FHE document + * @returns array of imgData objects containing label, description, and page number + */ private extractImageInfo(text: string): imgData[] { const imgInfo: imgData[] = []; const lines = text.split('\n'); - + const imgPattern = /^(FIGURE|TABLE)\s+(\d+(?:[A-C])?)\s*[-–—:]?\s*(.+?)?\s*(\d+)\s*$/i; let inIndexSection = false; let inTablesSection = false; @@ -77,17 +104,17 @@ class FHERuleParser { // check for another figure/table inside description (specific case fix) const secondPattern = /^(.+?)\s+(FIGURE|TABLE)\s+(\d+(?:[A-C])?)\s*[-–—:]?\s*(.+)$/i; const secondMatch = description.match(secondPattern); - + imgInfo.push({ label, description: secondMatch ? secondMatch[1].trim() : description, - pageNumber, + pageNumber }); if (secondMatch) { imgInfo.push({ label: `${secondMatch[2].charAt(0).toUpperCase() + secondMatch[2].slice(1).toLowerCase()} ${secondMatch[3]}`, description: secondMatch[4].trim(), - pageNumber, + pageNumber }); } } @@ -100,64 +127,6 @@ class FHERuleParser { return imgInfo; } - private extractRules(text: string): RuleData[] { - const rules: RuleData[] = []; - const lines = text.split('\n'); - - let currentRule: { code: string; text: string; pageNumber: string } | null = null; - let currentPageNumber = '1'; - - const saveCurrentRule = () => { - if (currentRule) { - // Check if the rule has lettered sub-items - const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); - - if (subRules.length > 0) { - // Add the main rule and all sub-rules - rules.push(...subRules); - } else { - // No sub-rules, just add the main rule - rules.push({ - ruleCode: currentRule.code, - ruleContent: currentRule.text.trim(), - parentRuleCode: this.findParentRuleCode(currentRule.code), - pageNumber: currentRule.pageNumber, - }); - } - } - }; - - for (const line of lines) { - const trimmedLine = line.trim(); - if (!trimmedLine) continue; - - // Update page number if found - const pageMatch = this.extractPageNumber(trimmedLine); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - - // Check if this line starts a new rule - const rule = this.parseRuleNumber(trimmedLine); - if (rule) { - saveCurrentRule(); - - currentRule = { - code: rule.ruleCode, - text: rule.ruleContent, - pageNumber: currentPageNumber, - }; - } else if (currentRule) { - // Append to existing rule - currentRule.text += ' ' + trimmedLine; - } - } - - saveCurrentRule(); - return rules; - } - /** * Extracts bulleted child rules (a, b, c, etc.) from a rule's content * and adds them as separate rules @@ -166,145 +135,98 @@ class FHERuleParser { * @param pageNumber The page number * @returns Array of RuleData including the main rule and new subrules */ - private extractSubRules(ruleCode: string, content: string, pageNumber: string): RuleData[] { + protected extractSubRules(ruleCode: string, content: string, pageNumber: string): RuleData[] { const subRules: RuleData[] = []; - + // Pattern for lettered bullets like "a. Some text" or "b. Some text" const letterPattern = /\s+([a-z])\.\s+/g; const matches = [...content.matchAll(letterPattern)]; - + if (matches.length === 0) { // No sub-rules found return []; } - + // Extract the main rule content (everything before the first lettered item) const firstMatchIndex = matches[0].index!; const mainContent = content.substring(0, firstMatchIndex).trim(); - + // Add the main rule subRules.push({ ruleCode: ruleCode, ruleContent: mainContent, parentRuleCode: this.findParentRuleCode(ruleCode), - pageNumber: pageNumber, + pageNumber: pageNumber }); - + // Extract the lettered sub-rules for (let i = 0; i < matches.length; i++) { const letter = matches[i][1]; const startIndex = matches[i].index! + matches[i][0].length; - + // Find where this sub-rule ends (either at next letter or end of rule content) - const endIndex = i < matches.length - 1 - ? matches[i + 1].index! - : content.length; - + const endIndex = i < matches.length - 1 ? matches[i + 1].index! : content.length; + const subRuleContent = content.substring(startIndex, endIndex).trim(); const subRuleCode = `${ruleCode}.${letter}`; - + subRules.push({ ruleCode: subRuleCode, ruleContent: subRuleContent, parentRuleCode: ruleCode, - pageNumber: pageNumber, + pageNumber: pageNumber }); } return subRules; } - private parseRuleNumber(line: string): Rule | null { - // Match FHE rule patterns like "1T3.17.1" followed by text - const rulePattern = /^(\d+[A-Z]+\d+(?:\.\d+)*)\s+(.+)$/; - - // "PART A1 - ADMINISTRATIVE REGULATIONS" - const partPattern = /^(PART\s+[A-Z0-9]+)\s+-\s+(.+)$/; - - // "ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW" - const articlePattern = /^(ARTICLE\s+[A-Z]+\d+)\s+(.+)$/; - - let match = line.match(rulePattern) || line.match(partPattern) || line.match(articlePattern); - if (match) { - return { - ruleCode: match[1], - ruleContent: match[2] - }; - } - - return null; - } - - - /** * Looks for page indicators like "Page 5 of 143" * @param line current rule line being observed * @returns the page number if found, otherwise null */ - private extractPageNumber(line: string): string | null { + protected extractPageNumber(line: string): string | null { const pagePattern = /Page\s+(\d+)\s+of\s+\d+/i; const match = line.match(pagePattern); - - if (match) { - return match[1]; - } - return null; + return match ? match[1] : null; } - private findParentRuleCode(ruleCode: string): string | undefined { + /** + * Gets parent rule code by removing the last code segment + * E.g., "EV.5.2.2" -> "EV.5.2" + * @param ruleCode rule code to find parent for + * @returns string of parent rule code or undefined if none + */ + protected findParentRuleCode(ruleCode: string): string | undefined { const parts = ruleCode.split('.'); if (parts.length <= 1) { return undefined; } - const parentParts = parts.slice(0, -1); - return parentParts.join('.'); + return parts.slice(0, -1).join('.'); } - async saveToJSON(rules: RuleData[], imgInfo: imgData[], outputPath: string, imgInfoPath: string): Promise { + async saveToJSON(rules: RuleData[], outputPath: string, imgInfo?: imgData[], imgInfoPath?: string): Promise { const output: ParsedOutput = { rules: rules, totalRules: rules.length, generatedAt: new Date().toISOString() }; - const imgOutput: ParsedImgOutput = { - imgInfo: imgInfo, - generatedAt: new Date().toISOString() - }; - - fs.writeFileSync(imgInfoPath, JSON.stringify(imgOutput, null, 2), 'utf-8'); - console.log(`Saved image info to ${imgInfoPath}`); - + if (imgInfo && imgInfoPath) { + const imgOutput: ParsedImgOutput = { + imgInfo: imgInfo, + generatedAt: new Date().toISOString() + }; + fs.writeFileSync(imgInfoPath, JSON.stringify(imgOutput, null, 2), 'utf-8'); + console.log(`Saved image info to ${imgInfoPath}`); + } fs.writeFileSync(outputPath, JSON.stringify(output, null, 2), 'utf-8'); console.log(`Saved ${rules.length} rules to ${outputPath}`); } - async saveToTxt(text: string): Promise { - const txtPath = './txtVersions/FHE.txt'; - fs.writeFileSync(txtPath, text, 'utf-8'); - console.log(`Saved text version to ${txtPath}`); + async saveToTxt(text: string, txtOutputFile: string): Promise { + // "./txtVersions/FHE.txt" or "./txtVersions/FSAE.txt" + fs.writeFileSync(txtOutputFile, text, 'utf-8'); + console.log(`Saved text version to ${txtOutputFile}`); } } - -async function main(): Promise { - const filePath = process.argv[2]; - const outputFile = process.argv[3] || './fhe_rules.json'; - // List of figure/table descriptions and page numbers - const imgListFile = process.argv[4] || './fhe_image_info.json'; - const parser = new FHERuleParser(); - - try { - const { rules, imgInfo, text } = await parser.parsePdf(filePath); - await parser.saveToJSON(rules, imgInfo, outputFile, imgListFile); - await parser.saveToTxt(text); - } catch (error) { - console.error('Error:', error); - process.exit(1); - } -} - -if (require.main === module) { - main(); -} - -export { FHERuleParser }; \ No newline at end of file diff --git a/scripts/document-parser/index.ts b/scripts/document-parser/index.ts new file mode 100644 index 0000000000..cc4b2603f8 --- /dev/null +++ b/scripts/document-parser/index.ts @@ -0,0 +1,30 @@ +import { FSAEParser } from './parsers/FSAEParser'; +import { FHEParser } from './parsers/FHEParser'; +import { ParserType } from './RuleParser'; + +async function main() { + const type = (process.argv[2]?.toUpperCase() as ParserType) || ParserType.FSAE; + const pdfFileName = process.argv[3]; + + if (!pdfFileName) { + console.error('Usage: npm start '); + process.exit(1); + } + + const parser = type === ParserType.FHE ? new FHEParser() : new FSAEParser(); + const outputPath = `./jsonOutput/${type}_rules.json`; + const txtPath = `./txtVersions/${type}.txt`; + const imgPath = type === ParserType.FHE ? `./jsonOutput/${type}_images.json` : undefined; + + try { + const result = await parser.parsePdf(pdfFileName); + await parser.saveToJSON(result.rules, outputPath, result.imgInfo, imgPath); + await parser.saveToTxt(result.text, txtPath); + console.log(`${type} parsing completed`); + } catch (error) { + console.error('Error:', error); + process.exit(1); + } +} + +main(); \ No newline at end of file diff --git a/scripts/document-parser/fhe_image_info.json b/scripts/document-parser/jsonOutput/FHE_images.json similarity index 99% rename from scripts/document-parser/fhe_image_info.json rename to scripts/document-parser/jsonOutput/FHE_images.json index fb478dd63b..6577abe462 100644 --- a/scripts/document-parser/fhe_image_info.json +++ b/scripts/document-parser/jsonOutput/FHE_images.json @@ -361,5 +361,5 @@ "pageNumber": "171" } ], - "generatedAt": "2025-11-03T04:08:18.963Z" + "generatedAt": "2025-11-03T19:26:20.823Z" } \ No newline at end of file diff --git a/scripts/document-parser/fhe_rules.json b/scripts/document-parser/jsonOutput/fhe_rules.json similarity index 55% rename from scripts/document-parser/fhe_rules.json rename to scripts/document-parser/jsonOutput/fhe_rules.json index 5a2296e194..9364cd2315 100644 --- a/scripts/document-parser/fhe_rules.json +++ b/scripts/document-parser/jsonOutput/fhe_rules.json @@ -1,5380 +1,5035 @@ { "rules": [ - { - "ruleCode": "PART EV", - "ruleContent": "EV10.4.1 AMS Test Typo (changed (“three” to “two”)", - "pageNumber": "1" - }, - { - "ruleCode": "PART EV", - "ruleContent": "EV10.4.1 AMS Test – point 2 Clarification EV12.2.6 Charger Inspection Chargers must be reviewed EV12.2.15 Charging External Charger Safety", - "pageNumber": "1" - }, - { - "ruleCode": "PART EV", - "ruleContent": "ARTICLE EV14 Acronyms SSOK changed to ESOK 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Table 8 Voltage and Energy Limits Changes to maximum GLV Figure 37CAN watchdog Added CAN watchdog failure Figure 37Acronym SSOK changed to ESOK (see EV14) Figure 37Shutdown Sources Fixed typo (“coclpit” to “cockpit”) Figure 37Shutdown Sources Far right row corrected to all “yes” EV9.3.3. Shutdown Sources Section Removed 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Advice from Our Rules Committee Formula Hybrid + Electric’s Rules Committee welcomes you to the most challenging of the SAE Collegiate Design Series competitions. Many of us are former Formula Hybrid + Electric competitors who are now professionals in the engineering industry. We have two goals: to have a safe competition and to see every team on the track. Top 10 Tips for Building a Formula Hybrid + Electric Racecar and Passing Tech Inspection Start work early. Everything takes longer than you expect. Consider starting from an existing FSAE chassis and concentrating on the powertrain. Read all rules carefully. If you don’t understand something, ask us for clarification. Use the Project Management techniques and tools. They will make life easier—and will help you as engineers. Most importantly, they will help you arrive at the competition with a finished car. Take advantage of our Mentor Program. These experts will help you solve issues—and will be valuable career contacts. Your car should be running on its own power at least a month prior to competition. Make brake testing an early priority. Take advantage of the extra day of electrical tech inspection on Sunday. That will give you extra time if you need to make modifications. This is also a good time to have your documentation reviewed. Watch out for the rules tagged with the \"attention\" symbol. These rules have a history of tripping up teams. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Index RULES CHANGES FOR 2025 III", - "pageNumber": "1" - }, - { - "ruleCode": "PART A", - "ruleContent": "ADMINISTRATIVE REGULATIONS 1", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A1", - "ruleContent": "1 A1.1 1 A1.2 1 A1.3 2 A1.4 2 A1.5 2", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A2", - "ruleContent": "3 A2.1 3 A2.2 3 A2.3 3 A2.4 4 A2.5 4", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A3", - "ruleContent": "4 A3.1 4 A3.2 4 A3.3 4", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A4", - "ruleContent": "5 A4.1 5 A4.2 5 A4.3 5 A4.4 5 A4.5 5 A4.6 5 A4.7 5 A4.8 6", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A5", - "ruleContent": "6 A5.2 6 A5.3 6 INDIVIDUAL PARTICIPATION REQUIREMENTS 7 A5.4 7 A5.5 7 A5.6 7 A5.7 7 A5.8 7 A5.9 8 A5.10 8 A5.11 8", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A6", - "ruleContent": "8 A6.1 8 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 A6.2 8 A6.3 9 A6.4 9", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A7", - "ruleContent": "10 A7.1 10 A7.2 10 A7.3 10 A7.4 10 A7.5 10 A7.6 11", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A8", - "ruleContent": "11 A8.1 11 A8.2 11 A8.3 11", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A9", - "ruleContent": "11 A9.1 11 A9.2 12 A9.3 12 A9.4 13", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A10", - "ruleContent": "15", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A11", - "ruleContent": "15 A11.1 15 A11.2 15 A11.3 15 A11.4 15 A11.5 16 A11.6 16", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE A12", - "ruleContent": "16 A12.1 16 A12.2 16 A12.3 16 A12.4 16 A12.5 17 A12.6 17", - "pageNumber": "1" - }, - { - "ruleCode": "PART T", - "ruleContent": "GENERAL TECHNICAL REQUIREMENTS 18", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T1", - "ruleContent": "18 T1.1 18 T1.2 18", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T2", - "ruleContent": "19 T2.1 19 T2.2 19 T2.3 20 T2.4 20 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 T2.5 20", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T3", - "ruleContent": "20 T3.1 20 T3.2 20 T3.3 21 T3.4 23 T3.5 23 T3.6 24 T3.7 24 T3.8 24 T3.9 25 T3.10 28 T3.11 28 T3.12 29 T3.13 30 T3.14 30 T3.15 30 T3.16 30 T3.17 32 T3.18 32 T3.19 32 T3.20 32 T3.21 34 T3.22 35 T3.23 35 T3.24 36 T3.25 37 T3.26 37 T3.27 37 T3.28 37 T3.29 38 T3.30 38 T3.31 39 T3.32 39 T3.33 39 T3.34 40 T3.35 40 T3.36 40 T3.37 40 T3.38 40 T3.39 41 T3.40 41", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T4", - "ruleContent": "42 T4.1 42 T4.2 43 T4.3 44 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 T4.4 44 T4.5 44 T4.6 46 T4.7 46 T4.8 47 T4.9 47", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T5", - "ruleContent": "47 T5.1 47 T5.2 48 T5.3 49 T5.4 50 T5.5 51 T5.6 53 T5.7 54 T5.8 54", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T6", - "ruleContent": "54 T6.1 54 T6.2 54 T6.3 54 T6.4 54 T6.5 55 T6.6 56 T6.7 56", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T7", - "ruleContent": "56 T7.1 56 T7.2 57 T7.3 57 T7.4 58", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T8", - "ruleContent": "58 T8.1 58 T8.2 59 T8.3 59 T8.4 59 T8.5 60", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T9", - "ruleContent": "61 T9.1 61 T9.2 61 T9.3 61 T9.4 61 T9.5 61 T9.6 61", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T10", - "ruleContent": "61 T10.1 61 T10.2 62 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T11", - "ruleContent": "62 T11.1 62 T11.2 63", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T12", - "ruleContent": "64 T12.1 64 T12.2 64", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T13", - "ruleContent": "65 T13.1 65 T13.2 65 T13.3 66 T13.4 66", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T14", - "ruleContent": "66 T14.1 66 T14.2 66 T14.3 66 T14.4 66 T14.5 67 T14.6 68 T14.7 68 T14.8 68 T14.9 68 T14.10 68 T14.11 68 T14.12 68 T14.13 68", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T15", - "ruleContent": "68 T15.1 68 T15.2 69 T15.3 69 T15.4 69 T15.5 69 T15.6 69 T15.7 69", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE T16", - "ruleContent": "69 T16.1 69", - "pageNumber": "1" - }, - { - "ruleCode": "PART IC", - "ruleContent": "INTERNAL COMBUSTION ENGINE 69", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE IC1", - "ruleContent": "70 IC1.1 70 IC1.2 70 IC1.3 70 IC1.4 71 IC1.5 71 IC1.6 72 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IC1.7 73 IC1.8 73 IC1.9 73 IC1.10 74 IC1.11 74", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE IC2", - "ruleContent": "74 IC2.1 74 IC2.2 75 IC2.3 75 IC2.4 75 IC2.5 75 IC2.6 75 IC2.7 76 IC2.8 76", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE IC3", - "ruleContent": "76 IC3.1 76 IC3.2 77 IC3.3 77 IC3.4 77", - "pageNumber": "1" - }, - { - "ruleCode": "PART EV", - "ruleContent": "ELECTRICAL POWERTRAINS AND SYSTEMS 78", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV1", - "ruleContent": "78 EV1.1 78 EV1.2 79", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV2", - "ruleContent": "80 EV2.1 80 EV2.2 80 EV2.3 80 EV2.4 81 EV2.5 82 EV2.6 82 EV2.7 84 EV2.8 85 EV2.9 86 EV2.10 87 EV2.11 88 EV2.12 90", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV3", - "ruleContent": "92 EV3.1 92 EV3.2 93 EV3.3 94 EV3.4 95 EV3.5 96 EV3.6 97 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV4", - "ruleContent": "98 EV4.1 98", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV5", - "ruleContent": "99 EV5.1 99 EV5.2 99 EV5.3 99 EV5.4 100 EV5.5 101", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV6", - "ruleContent": "103", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV7", - "ruleContent": "104 EV7.1 104 EV7.2 106 EV7.3 107 EV7.4 107 EV7.5 108 EV7.6 108 EV7.7 109 EV7.8 109 EV7.9 110", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV8", - "ruleContent": "112 EV8.1 112", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV9", - "ruleContent": "113 EV9.1 113 EV9.2 113 EV9.3 114 EV9.4 114 EV9.5 114 EV9.6 115", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV10", - "ruleContent": "116 EV10.1 116 EV10.2 116 EV10.3 116 EV10.4 118 EV10.5 118", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV11", - "ruleContent": "120 EV11.1 120 EV11.2 120", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV12", - "ruleContent": "121 EV12.1 121 EV12.2 121 EV12.3 122 EV12.4 122", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV13", - "ruleContent": "124 EV13.1 124 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV13.2 124", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE EV14", - "ruleContent": "125", - "pageNumber": "1" - }, - { - "ruleCode": "PART S", - "ruleContent": "STATIC EVENTS 126", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE S1", - "ruleContent": "127 S1.1 127 S1.2 127 S1.3 127 S1.4 127 S1.5 128 S1.6 128", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE S2", - "ruleContent": "129 S2.1 129 S2.2 129 S2.3 129 S2.4 130 S2.5 131 S2.6 131 S2.7 131 S2.8 132 S2.9 132 S2.10 132", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE S3", - "ruleContent": "133 S3.1 133 S3.2 133 S3.3 134 S3.4 134 S3.5 134 S3.6 135 S3.7 135 S3.8 135 S3.9 135 S3.10 135 S3.11 135 S3.12 135 S3.13 136 S3.14 136", - "pageNumber": "1" - }, - { - "ruleCode": "PART D", - "ruleContent": "DYNAMIC EVENTS 137", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D1", - "ruleContent": "137 D1.1 137 D1.2 137 D1.3 137 D1.4 137 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D2", - "ruleContent": "138", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D3", - "ruleContent": "138 D3.1 138 D3.2 138 D3.3 138 D3.4 138 D3.5 138 D3.6 138 D3.7 138 D3.8 138", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D4", - "ruleContent": "140 D4.1 140", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D5", - "ruleContent": "140 D5.1 140 D5.2 140 D5.4 140 D5.5 141 D5.6 141 D5.7 141 D5.8 141 D5.9 141", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D6", - "ruleContent": "141 D6.1 141 D6.2 142 D6.3 142 D6.4 142 D6.5 143 D6.6 143 D6.7 143", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D7", - "ruleContent": "143 D7.1 143 D7.2 143 D7.3 144 D7.4 144 D7.5 144 D7.6 144 D7.7 145 D7.8 145 D7.9 145 D7.10 145 D7.11 145 D7.12 145 D7.13 146 D7.14 147 D7.15 147 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 D7.16 147 D7.17 147 D7.18 149 D7.19 150 D7.20 150 D7.21 150 D7.22 150 D7.23 150", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D8", - "ruleContent": "152 D8.1 152 D8.2 152 D8.3 152 D8.4 152 D8.5 152 D8.6 152 D8.7 153", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D9", - "ruleContent": "153 D9.1 153 D9.2 153 D9.3 153 D9.4 153 D9.5 153 D9.6 153 D9.7 154", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D10", - "ruleContent": "154 D10.1 154 D10.2 154 D10.3 154 D10.4 154 D10.5 155 D10.6 155 D10.7 155 D10.8 155", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D11", - "ruleContent": "155 D11.1 155 D11.2 155 D11.3 155 D11.4 155", - "pageNumber": "1" - }, - { - "ruleCode": "ARTICLE D12", - "ruleContent": "156 APPENDIX A 157 APPENDIX B 158 APPENDIX C 160 APPENDIX D 170 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 APPENDIX E 171 APPENDIX F 172 APPENDIX G 173 APPENDIX H 174 APPENDIX I 175 Index of Figures FIGURE 1 - FORMULA HYBRID + ELECTRIC SUPPORT PAGE 16 FIGURE 2 - OPEN WHEEL DEFINITION 19 FIGURE 3 - TRIANGULATION 21 FIGURES FROM TOP: 4A, 4B, AND 4C- ROLL HOOPS AND HELMET CLEARANCE 26 FIGURE 5 - PERCY -- 95TH PERCENTILE MALE WITH HELMET 26 FIGURE 6 – 95TH PERCENTILE TEMPLATE POSITIONING 27 FIGURE 7 - MAIN AND FRONT HOOP BRACING 29 FIGURE 8 – DOUBLE-LUG JOINT 30 FIGURE 9 – DOUBLE LUG JOINT 30 FIGURE 10 – SLEEVED BUTT JOINT 30 FIGURE 11 – SIDE IMPACT STRUCTURE 35 FIGURE 12 – SIDE IMPACT ZONE DEFINITION FOR A MONOCOQUE 39 FIGURE 13 – ALTERNATE SINGLE BOLT ATTACHMENT 40 FIGURE 14 – COCKPIT OPENING TEMPLATE 41 FIGURE 15 – COCKPIT INTERNAL CROSS SECTION TEMPLATE 42 FIGURE 16 – EXAMPLES OF FIREWALL CONFIGURATIONS 45 FIGURE 17 - SEAT BELT THREADING EXAMPLES 48 FIGURE 18 – LAP BELT ANGLES WITH UPRIGHT DRIVER 49 FIGURE 19 – SHOULDER HARNESS MOUNTING – TOP VIEW 50 FIGURE 20 - SHOULDER HARNESS MOUNTING – SIDE VIEW 50 FIGURE 21 – OVER-TRAVEL SWITCHES 57 FIGURE 22 - FINAL DRIVE SCATTER SHIELD EXAMPLE 59 FIGURE 23 - EXAMPLES OF POSITIVE LOCKING NUTS 62 FIGURE 24 - EXAMPLE CAR NUMBER 64 FIGURE 25- SURFACE ENVELOPE 70 FIGURE 26 – HOSE CLAMPS 73 FIGURE 27 - FILLER NECK 75 FIGURE 28 - ACCUMULATOR STICKER 80 FIGURE 29 - EXAMPLE NP3S CONFIGURATION 83 FIGURE 30 – EXAMPLE 5S4P CONFIGURATION 84 FIGURE 31 - EXAMPLE ACCUMULATOR SEGMENTING 86 FIGURE 32 - VIRTUAL ACCUMULATOR EXAMPLE 91 FIGURE 33 - FINGER PROBE 92 FIGURE 34 - HIGH VOLTAGE LABEL 92 FIGURE 35 - CONNECTION STACK-UP 95 FIGURE 36 – CREEPAGE DISTANCE EXAMPLE 101 FIGURE 37 - PRIORITY OF SHUTDOWN SOURCES 104 FIGURE 38 - EXAMPLE MASTER SWITCH AND SHUTDOWN CIRCUIT CONFIGURATION 106 FIGURE 39 - TYPICAL MASTER SWITCH 107 FIGURE 40 - INTERNATIONAL KILL SWITCH SYMBOL 108 FIGURE 41 - EXAMPLE SHUTDOWN STATE DIAGRAM 110 FIGURE 42 – TYPICAL ESOK LAMP 114 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 FIGURE 43 – INSULATION MONITORING DEVICE TEST 116 FIGURE 44 118 FIGURE 45 - PLOT OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 159 FIGURE 46 - SCORING GUIDELINES: PROJECT PLAN COMPONENT 164 FIGURE 47: CHANGE MANAGEMENT REPORT SCORING GUIDELINES 166 FIGURE 48 – EVALUATION CRITERIA 168 FIGURE 49 - PROJECT MANAGEMENT SCORING SHEET 169 FIGURE 50 - LATCHING FOR ACTIVE-HIGH OUTPUT FIGURE 51 - LATCHING FOR ACTIVE-LOW OUTPUT 173 Index of Tables TABLE 1 – 2024 ENERGY AND ACCUMULATOR LIMITS 1 TABLE 2 - EVENT POINTS 2 TABLE 3 - REQUIRED DOCUMENTS 12 TABLE 4 - BASELINE STEEL 22 TABLE 5 - STEEL TUBING MINIMUM WALL THICKNESSES 23 TABLE 6 - 95TH PERCENTILE MALE TEMPLATE DIMENSIONS 25 TABLE 7 – SFI / FIA STANDARDS LOGOS 66 TABLE 8 - VOLTAGE AND ENERGY LIMITS 79 TABLE 9 - AMS VOLTAGE MONITORING 89 TABLE 10 – AMS TEMPERATURE MONITORING 89 TABLE 11 - RECOMMENDED TS CONNECTION FASTENERS 96 TABLE 12 – MINIMUM SPACINGS 100 TABLE 13 - INSULATING MATERIAL - MINIMUM TEMPERATURES AND THICKNESSES 100 TABLE 14 – PCB TS/GLV SPACINGS 102 TABLE 15 – STATIC EVENT MAXIMUM SCORES 126 TABLE 16 - PROJECT MANAGEMENT SCORING 129 TABLE 17 - DYNAMIC EVENT MAXIMUM SCORES 137 TABLE 18 - FLAGS 151 TABLE 19 - ACCUMULATOR DEVICE ENERGY CALCULATIONS 157 TABLE 20 - FUEL ENERGY EQUIVALENCIES 157 TABLE 21 - EXAMPLE OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 158 TABLE 22 – WIRE CURRENT CAPACITY (SINGLE CONDUCTOR IN AIR) 171 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" - }, { "ruleCode": "PART A1", "ruleContent": "ADMINISTRATIVE REGULATIONS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A1", "ruleContent": "FORMULA HYBRID + ELECTRIC OVERVIEW AND COMPETITION", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.1", "ruleContent": "Formula Hybrid + Electric Competition Objective", "parentRuleCode": "1A1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.1.1", "ruleContent": "The Formula Hybrid + Electric competition challenges teams of university undergraduate and graduate students to conceive, design, fabricate, develop and compete with small, formula- style, hybrid-powered and electric cars.", "parentRuleCode": "1A1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.1.2", "ruleContent": "The Formula Hybrid + Electric competition is intended as an educational program requiring students to work across disciplinary boundaries, such as those of electrical and mechanical engineering.", "parentRuleCode": "1A1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.1.3", "ruleContent": "To give teams the maximum design flexibility and the freedom to express their creativity and imagination there are very few restrictions on the overall vehicle design apart from the requirement for a mechanical/electrical hybrid or electric-only drivetrain.", "parentRuleCode": "1A1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.1.4", "ruleContent": "Teams typically spend eight to twelve months designing, building, testing and preparing their vehicles before a competition. The competitions themselves give teams the chance to demonstrate and prove both their creativity and their engineering skills in comparison to teams from other universities around the world.", "parentRuleCode": "1A1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.2", "ruleContent": "Energy Limits", "parentRuleCode": "1A1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.2.1", "ruleContent": "Competitiveness and high efficiency designs are encouraged through limits on accumulator capacities and the amount of energy that a team has available to complete the endurance event.", "parentRuleCode": "1A1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.2.2", "ruleContent": "The accumulator capacities and endurance energy allocation will be reviewed by the Formula Hybrid + Electric rules committee each year, and posted as early in the season as possible. Hybrid (and Hybrid In Progress) Endurance Energy Allocation 31.25 MJ Maximum Accumulator Capacity 4,449 Wh Electric Maximum Accumulator Capacity 5,400 Wh Table 1 – 2024 Energy and Accumulator Limits", "parentRuleCode": "1A1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.2.3", "ruleContent": "Vehicles may run with accumulator capacities greater than the Table 1 value if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted. See also D7.5.1- Energy for Endurance Event.", "parentRuleCode": "1A1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.2.4", - "ruleContent": "Accumulator capacities are calculated as: Energy (Wh) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 80% Segment Energy (Table 8) is calculated as Energy (MJ) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 0.0036. See Appendix A for energy calculations for capacitors. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Accumulator capacities are calculated as: Energy (Wh) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 80% Segment Energy (Table 8) is calculated as Energy (MJ) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 0.0036. See Appendix A for energy calculations for capacitors.", "parentRuleCode": "1A1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.3", "ruleContent": "Vehicle Design Objectives For the purpose of this competition, the students are to assume that a manufacturing firm has engaged them to design, fabricate and demonstrate a prototype hybrid-electric or all electric vehicle for evaluation as a production item. The intended market is the nonprofessional weekend autocross competitor. Therefore, the car must balance exceptional performance with fuel efficiency. Performance will be evaluated in terms of its acceleration, braking, and handling qualities. Fuel efficiency will be evaluated during the 44 km endurance event. The car must be easy to maintain and reliable. It should accommodate drivers whose stature varies from a 5th percentile female to a 95th percentile male. In addition, the car’s marketability is enhanced by other factors such as aesthetics, comfort and use of common parts. The manufacturing firm is planning to produce four (4) cars per day for a limited production run. The challenge to the design team is to develop a prototype car that best meets these goals and intents. Each design will be compared and judged with other competing designs to determine the best overall car.", "parentRuleCode": "1A1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.4", "ruleContent": "Good Engineering Practices", "parentRuleCode": "1A1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.4.1", "ruleContent": "Vehicles entered into Formula Hybrid + Electric competitions are expected to be designed and fabricated in accordance with good engineering practices. Note in particular, that the high-voltage electrical systems in a Formula Hybrid + Electric car present health and safety risks unique to a hybrid/electric vehicle, and that carelessness or poor engineering can result in serious injury or death.", "parentRuleCode": "1A1.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.4.2", - "ruleContent": "The organizers have produced several advisory publications that are available on the Formula Hybrid + Electric website. It is expected that all team members will familiarize themselves with these publications, and will apply the information in them appropriately.", + "ruleContent": "The organizers have produced several advisory publications that are available on the Formula Hybrid + Electric website. It is expected that all team members will familiarize themselves with these publications, and will apply the information in them appropriately.", "parentRuleCode": "1A1.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.5", - "ruleContent": "Judging Categories The cars are judged in a series of static and dynamic events including: technical inspections, project management skills, engineering design, solo performance trials, and high-performance track endurance. These events are scored to determine how well the car performs. Static Events Project Management 150 Engineering Design 200 Virtual Racing Challenge 1 0 Dynamic Events Acceleration 100 Autocross 200 Endurance 350 Total Points 1000 Table 2 - Event Points 1 Virtual Racing Challenge will be awarded trophies without points going towards the Event Points 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Judging Categories The cars are judged in a series of static and dynamic events including: technical inspections, project management skills, engineering design, solo performance trials, and high-performance track endurance. These events are scored to determine how well the car performs. Static Events Project Management 150 Engineering Design 200 Virtual Racing Challenge 1 0 Dynamic Events Acceleration 100 Autocross 200 Endurance 350 Total Points 1000 Table 2 - Event Points 1 Virtual Racing Challenge will be awarded trophies without points going towards the Event Points", "parentRuleCode": "1A1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A1.5.1", "ruleContent": "A team’s final score will equal the sum of their event scores plus or minus penalty and/or bonus points. Note: If a team’s penalty points exceed the sum of their event scores, their final score will be Zero (0). i.e. negative final scores will not be given.", "parentRuleCode": "1A1.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A2", "ruleContent": "FORMULA HYBRID + ELECTRIC VEHICLE CATEGORIES", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.1", "ruleContent": "Hybrid", "parentRuleCode": "1A2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.1.1", "ruleContent": "A Hybrid vehicle is defined as a vehicle using a propulsion system which comprises both a 4- stroke Internal Combustion Engine (ICE) and electrical storage (accumulator) with electric motor drive.", "parentRuleCode": "1A2.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.1.2", - "ruleContent": "A hybrid drive system may deploy the ICE and electric motor(s) in any configuration, including series and/or parallel. Coupling through the road surface is permitted.", + "ruleContent": "A hybrid drive system may deploy the ICE and electric motor(s) in any configuration, including series and/or parallel. Coupling through the road surface is permitted.", "parentRuleCode": "1A2.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.1.3", "ruleContent": "To qualify as a hybrid, vehicles must have a drive system utilizing one or more electric motors with a minimum continuous power rating of 2.5 kW (sum total of all motors) and one or more I.C engines with a minimum (sum total) power rating of 2.5 kW.", "parentRuleCode": "1A2.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.2", "ruleContent": "Electric An Electric vehicle is defined as a vehicle wherein the accumulator is charged from an external electrical source (and/or through regenerative braking) and propelled by electric drive only. There is no minimum power requirement for electric-only drive motors.", "parentRuleCode": "1A2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.3", - "ruleContent": "Hybrid in Progress (HIP) A Hybrid-in-Progress is a not-yet-completed hybrid vehicle, which includes both an internal combustion engine and electric motor. Note: The purpose of the HIP category is to give teams that are on a 2-year development/build cycle an opportunity to enter and compete their vehicle alongside the regular entries. The HIP is regarded, for all scoring purposes, as a hybrid, but will run the dynamic events on electric power only.", + "ruleContent": "Hybrid in Progress (HIP) A Hybrid-in-Progress is a not-yet-completed hybrid vehicle, which includes both an internal combustion engine and electric motor. Note: The purpose of the HIP category is to give teams that are on a 2-year development/build cycle an opportunity to enter and compete their vehicle alongside the regular entries. The HIP is regarded, for all scoring purposes, as a hybrid, but will run the dynamic events on electric power only.", "parentRuleCode": "1A2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.3.1", "ruleContent": "To qualify as an HIP, a vehicle must have been designed, and intended for completion as a hybrid vehicle.", "parentRuleCode": "1A2.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.3.2", - "ruleContent": "Teams planning to enter a vehicle in the HIP category will initially register as a Hybrid. To change to the HIP category, the team must submit a request to the organizers in writing before the start of the design event. Note: The advantages of entering as an HIP are: (a) Receive a full technical inspection of the vehicle and electrical drive systems. (b) Participate in all the competition events. (Provided tech inspection is passed). (c) Receive feedback from the design judges. Note: Teams can maximize the benefits of an HIP entry by including the full-hybrid designs in their document submissions and design event presentations, as well as including the full multi- year program in their Project Management materials. (d) When the vehicle is completed and entered as a hybrid, in a subsequent competition, it is considered an all-new vehicle, and not a second-year entry. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Teams planning to enter a vehicle in the HIP category will initially register as a Hybrid. To change to the HIP category, the team must submit a request to the organizers in writing before the start of the design event. Note: The advantages of entering as an HIP are: (a) Receive a full technical inspection of the vehicle and electrical drive systems. (b) Participate in all the competition events. (Provided tech inspection is passed). (c) Receive feedback from the design judges. Note: Teams can maximize the benefits of an HIP entry by including the full-hybrid designs in their document submissions and design event presentations, as well as including the full multi- year program in their Project Management materials. (d) When the vehicle is completed and entered as a hybrid, in a subsequent competition, it is considered an all-new vehicle, and not a second-year entry.", "parentRuleCode": "1A2.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.4", "ruleContent": "Static Events Only (SEO)", "parentRuleCode": "1A2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.4.1", - "ruleContent": "SEO is a category that may only be declared after arrival at the competition. All teams must initially register as either Hybrid/HIP or Electric.", + "ruleContent": "SEO is a category that may only be declared after arrival at the competition. All teams must initially register as either Hybrid/HIP or Electric.", "parentRuleCode": "1A2.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.4.2", "ruleContent": "A team may declare themselves as SEO and participate in the design 2 and other static events even if the vehicle is in an unfinished state. (a) An SEO vehicle may not participate in any of the dynamic events. (b) An SEO vehicle may continue the technical inspection process, but will be given a lower priority than the non-SEO teams.", "parentRuleCode": "1A2.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.4.3", "ruleContent": "An SEO declaration must be submitted in writing to the organizers before the scheduled start of the design events.", "parentRuleCode": "1A2.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.4.4", "ruleContent": "A vehicle that declares SEO in one year, will not be penalized by the design judges as a multi- year vehicle the following year per A7.5.", "parentRuleCode": "1A2.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.5", "ruleContent": "Electric vs. Hybrid Vehicles", "parentRuleCode": "1A2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.5.1", "ruleContent": "The Electric and Hybrid categories are separate. Although they compete in the same events, and may be on the endurance course at the same time, they are scored separately and receive separate awards.", "parentRuleCode": "1A2.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A2.5.2", "ruleContent": "The event scoring formulas will maintain separate baselines (T max , T min ) for Hybrid and Electric categories. Note: Electric vehicles, because they are not carrying the extra weight of engines and generating systems, may demonstrate higher performances in some of the dynamic events. Design scores should not be compared, as the engineering challenge between the two classes is different and scored accordingly.", "parentRuleCode": "1A2.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A3", "ruleContent": "THE FORMULA HYBRID + ELECTRIC COMPETITION", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A3.1", "ruleContent": "Open Registration The Formula Hybrid + Electric Competition has an open registration policy and will accept registrations by student teams representing universities in any country.", "parentRuleCode": "1A3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A3.2", "ruleContent": "Official Announcements and Competition Information", "parentRuleCode": "1A3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A3.2.1", "ruleContent": "Teams should read any newsletters published by SAE or Formula Hybrid + Electric and to be familiar with all official announcements concerning the competition and rules interpretations released by the Formula Hybrid + Electric Rules Committee.", "parentRuleCode": "1A3.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A3.2.2", "ruleContent": "Formula Hybrid + Electric posts announcements to the “Announcements” page of the Formula Hybrid + Electric website at https://www.formula-hybrid.org/announcements", "parentRuleCode": "1A3.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A3.3", - "ruleContent": "Official Language The official language of the Formula Hybrid + Electric competition is English. 2 Provided the team has met the document submission requirements of A9.3(c) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Official Language The official language of the Formula Hybrid + Electric competition is English. 2 Provided the team has met the document submission requirements of A9.3(c)", "parentRuleCode": "1A3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A4", "ruleContent": "FORMULA HYBRID + ELECTRIC RULES AND ORGANIZER AUTHORITY", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.1", "ruleContent": "Rules Authority", "parentRuleCode": "1A4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.1.1", "ruleContent": "The Formula Hybrid + Electric Rules are the responsibility of the Formula Hybrid + Electric Rules Committee and are issued under the authority of the SAE Collegiate Design Series Committee. Official announcements from the Formula Hybrid + Electric Rules Committee are to be considered part of, and have the same validity as, these rules.", "parentRuleCode": "1A4.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.1.2", "ruleContent": "Ambiguities or questions concerning the meaning or intent of these rules will be resolved by the Formula Hybrid + Electric Rules Committee, SAE or by the individual competition organizers as appropriate. (See ARTICLE A12)", "parentRuleCode": "1A4.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.2", "ruleContent": "Rules Validity The Formula Hybrid + Electric Rules posted on the Formula Hybrid + Electric website and dated for the calendar year of the competition are the rules in effect for the competition. Rule sets dated for other years are invalid.", "parentRuleCode": "1A4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.3", "ruleContent": "Rules Compliance", "parentRuleCode": "1A4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.3.1", "ruleContent": "By entering a Formula Hybrid + Electric competition the team, members of the team as individuals, faculty advisors and other personnel of the entering university agree to comply with, and be bound by, these rules and all rule interpretations or procedures issued or announced by SAE, the Formula Hybrid + Electric Rules Committee or the organizers.", "parentRuleCode": "1A4.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.3.2", "ruleContent": "Any rules or regulations pertaining to the use of the competition site by teams or individuals and which are posted, announced and/or otherwise publicly available are incorporated into these rules by reference. As examples, all event site waiver requirements, speed limits, parking and facility use rules apply to Formula Hybrid + Electric participants.", "parentRuleCode": "1A4.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.3.3", "ruleContent": "All team members, faculty advisors and other university representatives are required to cooperate with, and follow all instructions from, competition organizers, officials and judges.", "parentRuleCode": "1A4.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.4", "ruleContent": "Understanding the Rules Teams, team members as individuals and faculty advisors, are responsible for reading and understanding the rules in effect for the competition in which they are participating.", "parentRuleCode": "1A4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.5", "ruleContent": "Participating in the Competition Teams, team members as individuals, faculty advisors and other representatives of a registered university who are present on-site at a competition are considered to be “participating in the competition” from the time they arrive at the event site until they depart the site at the conclusion of the competition or earlier by withdrawing.", "parentRuleCode": "1A4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.6", "ruleContent": "Violations of Intent", "parentRuleCode": "1A4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.6.1", "ruleContent": "The violation of intent of a rule will be considered a violation of the rule itself.", "parentRuleCode": "1A4.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.6.2", "ruleContent": "Questions about the intent or meaning of a rule may be addressed to the Formula Hybrid + Electric Rules Committee or by the individual competition organizers as appropriate.", "parentRuleCode": "1A4.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.7", - "ruleContent": "Right to Impound SAE and other competition organizing bodies reserve the right to impound any onsite registered vehicles at any time during a competition for inspection and examination by the organizers, officials and technical inspectors. The organizers may also impound any equipment deemed hazardous by the technical inspectors. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Right to Impound SAE and other competition organizing bodies reserve the right to impound any onsite registered vehicles at any time during a competition for inspection and examination by the organizers, officials and technical inspectors. The organizers may also impound any equipment deemed hazardous by the technical inspectors.", "parentRuleCode": "1A4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A4.8", "ruleContent": "Restriction on Vehicle Use Teams are cautioned that the vehicles designed in compliance with these Formula Hybrid + Electric Rules are intended for competition operation only at the official Formula Hybrid + Electric competitions.", "parentRuleCode": "1A4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A5", "ruleContent": "RULES FORMAT AND USE", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.1.1", "ruleContent": "Definition of Terms Must - designates a requirement Must NOT - designates a prohibition or restriction Should - gives an expectation May - gives permission, not a requirement and not a recommendation", "parentRuleCode": "1A5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.1.2", "ruleContent": "Capitalized Terms Items or areas which have specific definitions or are covered by specific rules are capitalized. For example, “Rules Questions” or “Primary Structure”.", "parentRuleCode": "1A5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.1.3", "ruleContent": "Headings The article, section and paragraph headings in these rules are provided only to facilitate reading: they do not affect the paragraph contents.", "parentRuleCode": "1A5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.1.4", "ruleContent": "Applicability Unless otherwise designated, all rules apply to all vehicles at all times.", "parentRuleCode": "1A5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.1.5", "ruleContent": "Figures and Illustrations Figures and illustrations give clarification or guidance, but are rules only when referred to in the text of a rule.", "parentRuleCode": "1A5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.1.6", "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes.", "parentRuleCode": "1A5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.2", "ruleContent": "General Authority SAE and the competition organizing bodies reserve the right to revise the schedule of any competition and/or interpret or modify the competition rules at any time and in any manner that is, in their sole judgment, required for the efficient operation of the event or the Formula Hybrid + Electric series as a whole.", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.3", "ruleContent": "SAE Technical Standards Access", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.3.1", - "ruleContent": "A cooperative program of SAE International University Programs and Technical Standards Board is making some of SAE’s Technical Standards available to teams registered for any SAE International hosted competition at no cost. A list of accessible standards can be found online www.fsaeonline.com and accessed under the team’s registration online www.sae.org. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 INDIVIDUAL PARTICIPATION REQUIREMENTS", + "ruleContent": "A cooperative program of SAE International University Programs and Technical Standards Board is making some of SAE’s Technical Standards available to teams registered for any SAE International hosted competition at no cost. A list of accessible standards can be found online www.fsaeonline.com and accessed under the team’s registration online www.sae.org.", "parentRuleCode": "1A5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.4", "ruleContent": "Eligibility Limits Eligibility is limited to undergraduate and graduate students to ensure that this is an engineering design competition.", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.5", "ruleContent": "Student Status", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.5.1", "ruleContent": "Team members must be enrolled as degree seeking undergraduate or graduate students in the college or university of the team with which they are participating. Team members who have graduated during the twelve (12) month period prior to the competition remain eligible to participate.", "parentRuleCode": "1A5.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.5.2", "ruleContent": "Teams which are formed with members from two or more Universities are treated as a single team. A student at any University making up the team may compete at any event where the team participates. The multiple Universities are in effect treated as one University with two campuses and all eligibility requirements are enforced.", "parentRuleCode": "1A5.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.6", "ruleContent": "Society Membership", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.6.1", "ruleContent": "Team members must be members of at least one of the following societies: (a) SAE (b) IEEE (c) SAE Australasia (d) SAE Brazil (e) ATA (f) IMechE (g) VDI", "parentRuleCode": "1A5.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.6.2", "ruleContent": "Proof of membership, such as membership card, is required at the competition. Students who are members of one of the societies listed above are not required to join any of the other societies in order to participate in the Formula Hybrid + Electric competition.", "parentRuleCode": "1A5.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.6.3", "ruleContent": "Students can join SAE at: http://www.sae.org/students IEEE at https://www.ieee.org/membership/join/index.html Note: SAE membership is required to complete the on-line vehicle registration process, so at least one team member must be a member of SAE.", "parentRuleCode": "1A5.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.7", "ruleContent": "Age Team members must be at least eighteen (18) years of age.", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.8", - "ruleContent": "Driver’s License Team members who will drive a competition vehicle at any time during a competition must hold a valid, government issued driver’s license. All drivers will be required to submit copies of their driver’s licenses prior to the competition. Additional instructions will be sent to teams 6 weeks before the competition. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Driver’s License Team members who will drive a competition vehicle at any time during a competition must hold a valid, government issued driver’s license. All drivers will be required to submit copies of their driver’s licenses prior to the competition. Additional instructions will be sent to teams 6 weeks before the competition.", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.9", "ruleContent": "Driver Restrictions Drivers who have driven for a professional racing team in a national or international series at any time may not drive in any competition event. A “professional racing team” is defined as a team that provides racing cars and enables drivers to compete in national or international racing series and employs full time staff in order to achieve this.", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.10", "ruleContent": "Liability Waiver All on-site participants, including students, faculty, volunteers and guests, are required to sign a liability waiver upon registering on-site.", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A5.11", "ruleContent": "Medical Insurance Individual medical insurance coverage is required and is the sole responsibility of the participant.", "parentRuleCode": "1A5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A6", "ruleContent": "INDIVIDUAL REGISTRATION REQUIREMENTS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.1", "ruleContent": "SAE Student Members", "parentRuleCode": "1A6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.1.1", "ruleContent": "If your qualifying professional society membership is with the SAE, you should link yourself to your respective school, and complete the following information on the SAE website: (a) Medical insurance (provider, policy/ID number, telephone number) (b) Driver’s license (state/country, ID number) (c) Emergency contact data (point of contact (parent/guardian, spouse), relationship, and phone number)", "parentRuleCode": "1A6.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.1.2", "ruleContent": "To do this you will need to go to “Registration” page under the specific event the team is registered and then click on the “Register Your Team / Update Team Information” link. At this point, if you are properly affiliated to the school/college/university, a link will appear with your team name to select. Once you have selected the link, the registration page will appear. Selecting the “Add New Member” button will allow individuals to include themselves with the rest of the team. This can also be completed by team captain and faculty advisor for all team members.", "parentRuleCode": "1A6.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.1.3", "ruleContent": "All students, both domestic and international, must affiliate themselves online or submit the International Student Registration form by March 1, 2025. For additional assistance, please contact collegiatecompetitions@sae.org", "parentRuleCode": "1A6.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.2", "ruleContent": "Onsite Registration Requirement", "parentRuleCode": "1A6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.2.1", "ruleContent": "Onsite registration is required of all team members and faculty advisors", "parentRuleCode": "1A6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.2.2", "ruleContent": "Registration must be completed and the credentials and/or other identification issued by the organizers properly worn before the car can be unloaded, uncrated or worked upon in any manner.", "parentRuleCode": "1A6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.2.3", - "ruleContent": "The following is required at registration: (a) Government issued driver’s license or passport and (b) Medical insurance card or documentation (c) Proof of professional society membership (such as card or member number) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The following is required at registration: (a) Government issued driver’s license or passport and (b) Medical insurance card or documentation (c) Proof of professional society membership (such as card or member number)", "parentRuleCode": "1A6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.2.4", "ruleContent": "All international student participants (or unaffiliated faculty advisors) who are not SAE members are required to complete the International Student Registration form for the entire team found under “Competition Resources” on the event specific webpage. Upon completion, email the form to collegiatecompetitions@sae.org", "parentRuleCode": "1A6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.2.5", "ruleContent": "All students, both domestic and international, must affiliate themselves online or submit the International Student Registration form prior to the date shown in the Action Deadlines on the Formula Hybrid + Electric website. For additional assistance, please contact collegiatecompetitions@sae.org NOTE: When your team is registering for a competition, only the student or faculty advisor completing the registration needs to be linked to the school. All other students and faculty can affiliate themselves after registration has been completed.", "parentRuleCode": "1A6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.3", "ruleContent": "Team Advisor", "parentRuleCode": "1A6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.3.1", "ruleContent": "Each team must have a Professional Advisor appointed by the university. The Advisor, or an official university representative, must accompany the team to the competition and will be considered by competition officials to be the official university representative. If the appointed advisor cannot attend the competition, the team must have an alternate college or university approved adult attend.", "parentRuleCode": "1A6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.3.2", "ruleContent": "Advisors are expected to review their team’s Structural Equivalency, Impact Attenuator data and both ESFs prior to submission. Advisors are not required to certify the accuracy of these documents, but should perform a “sanity check” and look for omissions.", "parentRuleCode": "1A6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.3.3", "ruleContent": "Advisors may advise their teams on general engineering and engineering project management theory, but must not design any part of the vehicle nor directly participate in the development of any documentation or presentation. Additionally, Advisors may neither fabricate nor assemble any components nor assist in the preparation, maintenance, testing or operation of the vehicle. In Brief –Advisors must not design, build or repair any part of the car.", "parentRuleCode": "1A6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.4", "ruleContent": "Rules and Safety Officer (RSO)", "parentRuleCode": "1A6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.4.1", "ruleContent": "Each team must appoint a person to be the “Rules and Safety Officer (RSO)”.", "parentRuleCode": "1A6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.4.2", - "ruleContent": "The RSO must: (a) Be present at the entire Formula Hybrid + Electric event. (b) Be responsible for understanding the Formula Hybrid + Electric rules prior to the competition and ensuring that competing vehicles comply with all those rules requirements. (c) System Documentation – Have vehicle designs, plans, schematics and supporting documents available for review by the officials as needed. (d) Component Documentation – Have manufacturer’s documentation and information available on all components of the electrical system. (e) Be responsible for team safety while at the event. This includes issues such as: (i) Use of safety glasses and other safety equipment (ii) Control of shock hazards such as charging equipment and accessible high voltage sources 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (iii) Control of fire hazards such as fuel, sources of ignition (grinding, welding etc.) (iv) Safe working practices (lock-out/tag-out, clean work area, use of jack stands etc.) (f) Be the point of contact between the team and Formula Hybrid + Electric organizers should rules or safety issues arise.", + "ruleContent": "The RSO must: (a) Be present at the entire Formula Hybrid + Electric event. (b) Be responsible for understanding the Formula Hybrid + Electric rules prior to the competition and ensuring that competing vehicles comply with all those rules requirements. (c) System Documentation – Have vehicle designs, plans, schematics and supporting documents available for review by the officials as needed. (d) Component Documentation – Have manufacturer’s documentation and information available on all components of the electrical system. (e) Be responsible for team safety while at the event. This includes issues such as: (i) Use of safety glasses and other safety equipment (ii) Control of shock hazards such as charging equipment and accessible high voltage sources", "parentRuleCode": "1A6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.4.3", "ruleContent": "If the RSO is also a driver in a dynamic event, a backup RSO must be appointed who will take responsibility for sections A6.4.2(e) and A6.4.2(f) (above) while the primary RSO is in the vehicle.", "parentRuleCode": "1A6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.4.4", "ruleContent": "Preferably, the RSO should be the team's faculty advisor or a member of the university's professional staff, but the position may be held by a student member of the team.", "parentRuleCode": "1A6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A6.4.5", "ruleContent": "Contact information for the primary and backup RSOs (Name, Cell Phone number, etc.) must be provided to the organizers during registration.", "parentRuleCode": "1A6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A7", "ruleContent": "VEHICLE ELIGIBILITY", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A7.1", "ruleContent": "Student Developed Vehicle Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained by the student team members without direct involvement from professional engineers, automotive engineers, racers, machinists or related professionals.", "parentRuleCode": "1A7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A7.2", "ruleContent": "Information Sources The student team may use any literature or knowledge related to car design and information from professionals or from academics as long as the information is given as a discussion of alternatives with their pros and cons.", "parentRuleCode": "1A7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A7.3", "ruleContent": "Professional Assistance Professionals may not make design decisions or drawings and the Faculty Advisor may be required to sign a statement of compliance with this restriction.", "parentRuleCode": "1A7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A7.4", "ruleContent": "Student Fabrication It is the intent of the SAE Collegiate Design Series competitions to provide direct hands-on experience to the students. Therefore, students should perform all fabrication tasks whenever possible.", "parentRuleCode": "1A7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A7.5", "ruleContent": "Vehicles Entered for Multiple Years Formula Hybrid + Electric does not require that teams design and build a new vehicle from scratch each year.", "parentRuleCode": "1A7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A7.5.1", "ruleContent": "Teams may enter the same vehicle used in previous competitions, provided it complies with all the Formula Hybrid + Electric rules in effect at the competition in which it is entered.", "parentRuleCode": "1A7.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A7.5.2", - "ruleContent": "Rules waivers issued to vehicles are valid for only one year. It is assumed that teams will address the issues requiring a waiver before entering the vehicle in a subsequent year. NOTE 1: Design judges will look more favorably on vehicles that have clearly documented upgrades and improvements since last entered in a Formula Hybrid + Electric competition. NOTE 2: Because the Formula Hybrid + Electric competition emphasizes high-efficiency drive systems, engineered improvements to the drive train and control systems will be weighted more heavily by the design judges than updates to the chassis, suspension etc. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Rules waivers issued to vehicles are valid for only one year. It is assumed that teams will address the issues requiring a waiver before entering the vehicle in a subsequent year. NOTE 1: Design judges will look more favorably on vehicles that have clearly documented upgrades and improvements since last entered in a Formula Hybrid + Electric competition. NOTE 2: Because the Formula Hybrid + Electric competition emphasizes high-efficiency drive systems, engineered improvements to the drive train and control systems will be weighted more heavily by the design judges than updates to the chassis, suspension etc.", "parentRuleCode": "1A7.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A7.6", "ruleContent": "Entries per University Universities may enter up to two vehicles per competition. Note that there will be a registration wait period imposed for a second vehicle.", "parentRuleCode": "1A7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A8", "ruleContent": "REGISTRATION Registration for the Formula Hybrid + Electric competition must be completed on-line. Online registration must be done by either (a) an SAE member or (b) the official faculty advisor connected with the registering university and recorded as such in the SAE record system. Note: It typically takes at least 1 working day between the time you complete an online SAE membership application and our system recognizes you as eligible to register your team.", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A8.1", - "ruleContent": "Registration Cap The Formula Hybrid + Electric competition is capped at 35 entries. Registrations received after the entry cap is reached will be placed on a waiting list. If no slots become available prior to the competition, the entry fee will be refunded. Registration Fees", + "ruleContent": "Registration Cap The Formula Hybrid + Electric competition is capped at 35 entries. Registrations received after the entry cap is reached will be placed on a waiting list. If no slots become available prior to the competition, the entry fee will be refunded. Registration Fees", "parentRuleCode": "1A8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A8.1.1", "ruleContent": "Registration fees must be paid to the organizer by the deadline specified on the Formula Hybrid +Electric website.", "parentRuleCode": "1A8.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A8.1.2", "ruleContent": "Registration fees are not refundable.", "parentRuleCode": "1A8.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A8.2", - "ruleContent": "Withdrawals Registered teams that find that they will not be able to attend the Formula Hybrid + Electric competition are requested to officially withdraw by notifying the organizers at the following address not later than one (1) week before the event: formulahybridcomp@gmail.com", + "ruleContent": "Withdrawals Registered teams that find that they will not be able to attend the Formula Hybrid + Electric competition are requested to officially withdraw by notifying the organizers at the following address not later than one (1) week before the event: formulahybridcomp@gmail.com", "parentRuleCode": "1A8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A8.3", "ruleContent": "United States Visas", "parentRuleCode": "1A8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A8.3.1", "ruleContent": "Teams requiring visas to enter to the United States are advised to apply at least sixty (60) days prior to the competition. Although many visa applications go through without an unreasonable delay, occasionally teams have had difficulties and in several instances visas were not issued before the competition. Don’t wait – apply early for your visa. Note: After your team has registered for the Formula Hybrid + Electric competition, the organizers can provide an acknowledgement your registration. We do not issue letters of invitation or participation certificates.", "parentRuleCode": "1A8.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A8.3.2", "ruleContent": "Neither SAE staff nor any competition organizers are permitted to give advice on visas, customs regulations or vehicle shipping regulations concerning the United States or any other country.", "parentRuleCode": "1A8.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A9", "ruleContent": "VEHICLE DOCUMENTS, DEADLINES AND PENALTIES", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.1", - "ruleContent": "Required Documents The following documents supporting each vehicle must be submitted by the action deadlines posted on the Formula Hybrid + Electric website or otherwise published by the organizers. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Document Section Project Management Plan S2.3 Electrical System Form (ESF-1) EV13.1 Change Management Report S2.4 Structural Equivalency Spreadsheet (SES) T3.8 Impact Attenuator Data (IA) T3.21 Program Submission ARTICLE A10(f) Site Pre-Registration ARTICLE A10(l) Design Report S3.2.1 Design Specification Sheet S3.2.2 Electrical System Form (ESF-2) EV13.2 Table 3 - Required Documents", + "ruleContent": "Required Documents The following documents supporting each vehicle must be submitted by the action deadlines posted on the Formula Hybrid + Electric website or otherwise published by the organizers.", "parentRuleCode": "1A9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.2", "ruleContent": "Document Submission Policies Note: Volunteer examiners and judges evaluate all the required submissions and it is essential that they have enough time to complete their work. There are no exceptions to the document submission deadlines and late submissions will incur penalties.", "parentRuleCode": "1A9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.2.1", - "ruleContent": "Document submission penalties or bonus points are factored into a team’s final score. They do not alter the individual event scores.", + "ruleContent": "Document submission penalties or bonus points are factored into a team’s final score. They do not alter the individual event scores.", "parentRuleCode": "1A9.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.2.2", "ruleContent": "All documents must be submitted using the following document title, unless otherwise noted in individual document requirements: Car Number_University_Document_Competition Year i.e. 000_Oxford University_SES_2025 Teams are responsible for submitting properly labeled documents and will accrue applicable penalty points if documents with corrected formatting are late.", "parentRuleCode": "1A9.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.2.3", "ruleContent": "Teams must submit the required documents online at https://formulahybridupload.supportsystem.com/", "parentRuleCode": "1A9.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.2.4", "ruleContent": "Document submission deadlines are listed in GMT (Greenwich Mean Time) unless otherwise explicitly stated. This means that deadlines are typically 7:00 PM Eastern Standard Time. Please use this website for time conversions or https://time.is/GMT .", "parentRuleCode": "1A9.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.2.5", "ruleContent": "The time and date that the document is uploaded is recorded in GMT (Greenwich Mean Time) and constitutes the official record for deadline compliance.", "parentRuleCode": "1A9.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.2.6", "ruleContent": "The official time and date of document receipt will be posted on the Formula Hybrid + Electric website. Teams are responsible for ensuring the accuracy of these postings and must notify the organizers within three days of their submission to report a discrepancy. After three days the submission time and date will become final.", "parentRuleCode": "1A9.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.3", - "ruleContent": "Late submissions Documents received after their deadlines will be penalized as follows: (a) Structural Equivalency Spreadsheet (SES) – The penalty for late SES submission is 10 points per day and is capped at negative fifty (-50) points. However, teams are advised 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 that the SES’s are evaluated in the order in which they are received and that late submissions will be reviewed last. Late SES approval could delay the completion of your vehicle. We strongly recommend you submit your SES as early as possible. (b) Impact Attenuator Report (IA) - The penalty for late IA submissions is 10 points per day and is capped at negative fifty (-50) points. (c) Design Reports – The Design Report and Design Spec Sheet collectively constitute the “Design Documents”. (i) Design Report 10 points/day up to 100 points (ii) Design Spec Sheet 5 points/day up to 50 points NOTE: The total penalty for late arrival of any design documents will not exceed 100 points. (d) Program Submissions – There are no penalties for late program submissions. However, late submissions will not be included in the race program, which can be an important tool for future team fund raising. (e) Project Management Project Plan - Late submission or failure to submit the Project Plan will be penalized at five (5) points per day and is capped at negative fifty-five (-55) points. (f) Change Management Report - Late submission or failure to submit the interim report will be penalized at five (5) points per day and is capped at negative forty (-40) points. (g) ESF - The penalty for late ESF submissions is 10 points per day and is capped at negative twenty-five points (-25) per ESF or fifty (-50) points total. (h) Site Pre-Registration – The penalty for late submission of Site Pre-Registration will be five (5) points. Teams may submit additional team member information up to one week prior to the competition, and all drivers must submit a photo of their driver’s license prior to April 26 th on the “Document Upload Page”.", + "ruleContent": "Late submissions Documents received after their deadlines will be penalized as follows: (a) Structural Equivalency Spreadsheet (SES) – The penalty for late SES submission is 10 points per day and is capped at negative fifty (-50) points. However, teams are advised", "parentRuleCode": "1A9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A9.4", - "ruleContent": "Early submissions In some cases, documents submitted before their deadline can earn a team bonus points as follows: (a) Structural Equivalency Spreadsheet (SES) (i) Approved documents that were submitted 30 days or more before the SES deadline will receive 20 bonus points. (ii) Approved documents that were submitted between 29 and 15 days before the SES deadline will receive 10 bonus points. (b) Electrical System Forms (ESF-1 and ESF-2) (i) Approved documents that were submitted 30 days or more before each ESF deadline will receive 10 bonus points. (ii) Approved documents that were submitted between 29 and 15 days before each ESF deadline will receive 5 bonus points. Note 1: The qualifying dates for bonus points will be listed on the Formula Hybrid + Electric website. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note 2: The number of bonus points will be based on the submission date of the document, not on the approval date. Documents submitted early that are not approved will not qualify for bonus points. Note 3: Some bonus point deadlines may occur before the closing date of registration. If a team has not previously registered for a Formula Hybrid + Electric competition, they may not be listed on the documents submission page. (A9.2.3) In that case, a team should submit the document via email to formulahybridcomp@gmail.com 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Early submissions In some cases, documents submitted before their deadline can earn a team bonus points as follows: (a) Structural Equivalency Spreadsheet (SES) (i) Approved documents that were submitted 30 days or more before the SES deadline will receive 20 bonus points. (ii) Approved documents that were submitted between 29 and 15 days before the SES deadline will receive 10 bonus points. (b) Electrical System Forms (ESF-1 and ESF-2) (i) Approved documents that were submitted 30 days or more before each ESF deadline will receive 10 bonus points. (ii) Approved documents that were submitted between 29 and 15 days before each ESF deadline will receive 5 bonus points. Note 1: The qualifying dates for bonus points will be listed on the Formula Hybrid + Electric website.", "parentRuleCode": "1A9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A10", "ruleContent": "FORMS AND DOCUMENTS The following forms and documents are available on the Formula Hybrid + Electric website: (a) 2025 Formula Hybrid + Electric Rules (This Document) (b) Structural Equivalency Spreadsheet (SES) (c) Impact Attenuator (IA) Data Sheet (d) Electrical Systems Form (ESF-1) template (e) Electrical Systems Form (ESF-2) template (f) Program Information Sheet (Team information for the Event Program) (g) Mechanical Inspection Sheet (For reference) (h) Electrical Inspection Sheet (For reference) (i) Design Specification Sheet (j) Design Event Judging Form (For reference) (k) Project Management Judging Form (For reference) (l) Site pre-registration form Note: Formula Hybrid + Electric strives to provide student engineering teams with timely and useful information to assist in the design and construction of their vehicles. Check the Formula Hybrid + Electric website often for new or updated advisory publications.", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A11", "ruleContent": "PROTESTS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A11.1", "ruleContent": "Protests - General It is recognized that thousands of hours of work have gone into fielding a vehicle and that teams are entitled to all the points they can earn. We also recognize that there can be differences in the interpretation of rules, the application of penalties and the understanding of procedures. The officials and SAE staff will make every effort to fully review all questions and resolve problems and discrepancies quickly and equitably", "parentRuleCode": "1A11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A11.2", "ruleContent": "Preliminary Review – Required If a team has a question about scoring, judging, policies, or any official action it must be brought to the organizer’s or SAE staff’s attention for an informal preliminary review before a protest can be filed.", "parentRuleCode": "1A11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A11.3", "ruleContent": "Cause for Protest A team may protest any rule interpretation, score, or official action (unless specifically excluded from protest) which they feel has caused some actual, non-trivial, harm to their team, or has had substantive effect on their score. Teams may not protest rule interpretations or actions that have not caused them any substantive damage.", "parentRuleCode": "1A11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A11.4", - "ruleContent": "Protest Format and Forfeit All protests must be filed in writing and presented to the organizer or SAE staff by the team captain. In order to have a protest considered, a team must post a twenty-five (25) point protest bond which will be forfeited if their protest is rejected. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Protest Format and Forfeit All protests must be filed in writing and presented to the organizer or SAE staff by the team captain. In order to have a protest considered, a team must post a twenty-five (25) point protest bond which will be forfeited if their protest is rejected.", "parentRuleCode": "1A11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A11.5", "ruleContent": "Protest Period Protests concerning any aspect of the competition must be filed within one-half hour (30 minutes) of the posting of the scores of the event to which the protest relates.", "parentRuleCode": "1A11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A11.6", "ruleContent": "Decision The decision of the competition protest committee regarding any protest is final.", "parentRuleCode": "1A11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE A12", "ruleContent": "QUESTIONS ABOUT THE FORMULA HYBRID + ELECTRIC RULES", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A12.1", "ruleContent": "Question Publication By submitting, a question to the Formula Hybrid + Electric Rules Committee or the competition’s organizing body you and your team agree that both your question and the official answer can be reproduced and distributed by SAE or Formula Hybrid + Electric, in both complete and edited versions, in any medium or format anywhere in the world.", "parentRuleCode": "1A12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A12.2", "ruleContent": "Question Types", "parentRuleCode": "1A12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A12.2.1", "ruleContent": "The Committee will answer questions that are not already answered in the rules or FAQs or that require new or novel rule interpretations. The Committee will not respond to questions that are already answered in the rules. For example, if a rule specifies a minimum dimension for a part the Committee will not answer questions asking if a smaller dimension can be used.", "parentRuleCode": "1A12.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A12.3", "ruleContent": "Frequently Asked Questions", "parentRuleCode": "1A12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A12.3.1", "ruleContent": "Before submitting a question, check the Frequently Asked Questions section of the Formula Hybrid + Electric website.", "parentRuleCode": "1A12.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A12.4", - "ruleContent": "Question Submission Questions must be submitted on the Formula Hybrid + Electric Support page: https://formulahybridelectric.supportsystem.com/ Figure 1 - Formula Hybrid + Electric Support Page 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Question Submission Questions must be submitted on the Formula Hybrid + Electric Support page: https://formulahybridelectric.supportsystem.com/ Figure 1 - Formula Hybrid + Electric Support Page", "parentRuleCode": "1A12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A12.5", "ruleContent": "Question Format The following information is required: (a) Submitter’s Name (b) Submitter’s Email (c) Topic (Select from the pull-down menu) (d) University Name (Registered teams will find their University name in a pull-down list) You may type your question into the “Message” box, or upload a document. You will receive a confirmation email with a link to enable you to check on your question’s status.", "parentRuleCode": "1A12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1A12.6", - "ruleContent": "Response Time Please allow a minimum of 3 days for a response. The Rules Committee will respond as quickly as possible, however, responses to questions presenting new issues, or of unusual complexity, may take more than one week. Please do not resend questions. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Response Time Please allow a minimum of 3 days for a response. The Rules Committee will respond as quickly as possible, however, responses to questions presenting new issues, or of unusual complexity, may take more than one week. Please do not resend questions.", "parentRuleCode": "1A12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "PART T1", "ruleContent": "GENERAL TECHNICAL REQUIREMENTS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T1", "ruleContent": "VEHICLE REQUIREMENTS AND RESTRICTIONS ***", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.1", "ruleContent": "Technical Inspection", "parentRuleCode": "1T1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.1.1", "ruleContent": "The following requirements and restrictions will be enforced through technical inspection. Noncompliance must be corrected and the car re-inspected before the car is allowed to operate under power.", "parentRuleCode": "1T1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.2", "ruleContent": "Modifications and Repairs", "parentRuleCode": "1T1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.2.1", "ruleContent": "Once the vehicle has been presented for judging in the Design Events, or submitted for Technical Inspection, and until the vehicle is approved to compete in the dynamic events, i.e. all the inspection stickers are awarded, the only modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the Inspection Form.", "parentRuleCode": "1T1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.2.2", "ruleContent": "Once the vehicle is approved to compete in the dynamic events, the ONLY modifications permitted to the vehicle are: (a) Adjustment of belts, chains and clutches (b) Adjustment of brake bias (c) Adjustment of the driver restraint system, head restraint, seat and pedal assembly (d) Substitution of the head restraint or seat inserts for different drivers (e) Adjustment to engine operating parameters, e.g. fuel mixture and ignition timing and any software calibration changes (f) Adjustment of mirrors (g) Adjustment of the suspension where no part substitution is required, (except that springs, sway bars and shims may be changed) (h) Adjustment of tire pressure (i) Adjustment of wing angle (but not the location) (j) Replenishment of fluids (k) Replacement of worn tires or brake pads The replacement tires and/or brake pads must be identical in material, composition and size to those presented and approved at Technical Inspection. (l) The changing of wheels and tires for “wet” or “damp” conditions as allowed in D3.1 of the Formula Hybrid + Electric Rules. (m) Recharging of Grounded Low Voltage (GLV) supplies. (n) Recharging of Accumulators. (See EV12.2) (o) Adjustment of motor controller operating parameters.", "parentRuleCode": "1T1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.2.3", "ruleContent": "The vehicle must maintain all required specifications, e.g. ride height, suspension travel, braking capacity, sound level and wing location throughout the competition.", "parentRuleCode": "1T1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.2.4", - "ruleContent": "Once the vehicle is approved for competition, any damage to the vehicle that requires repair, e.g. crash damage, electrical or mechanical damage will void the Inspection Approval. Upon 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 the completion of the repair and before re-entering into any dynamic competition, the vehicle MUST be re-submitted to Technical Inspection for re-approval.", + "ruleContent": "Once the vehicle is approved for competition, any damage to the vehicle that requires repair, e.g. crash damage, electrical or mechanical damage will void the Inspection Approval. Upon", "parentRuleCode": "1T1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T2", "ruleContent": "GENERAL DESIGN REQUIREMENTS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.1", "ruleContent": "Vehicle Configuration", "parentRuleCode": "1T2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.1.1", "ruleContent": "The vehicle must be open-wheeled and open-cockpit (a formula style body) with four (4) wheels that are not in a straight line.", "parentRuleCode": "1T2.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.1.2", "ruleContent": "Definition of \"Open Wheel\" – Open Wheel vehicles must satisfy all of the following criteria: (a) The top 180 degrees of the wheels/tires must be unobstructed when viewed from vertically above the wheel. (b) The wheels/tires must be unobstructed when viewed from the side. (c) No part of the vehicle may enter a keep-out-zone defined by two lines extending vertically from positions 75 mm in front of and 75 mm behind the outer diameter of the front and rear tires in side view elevation of the vehicle with the tires steered straight ahead. This keep-out zone will extend laterally from the outside plane of the wheel/tire to the inboard plane of the wheel/tire. See Figure 2 below. Note: The dry tires will be used for all inspections. Figure 2 - Open Wheel Definition", "parentRuleCode": "1T2.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.2", - "ruleContent": "Bodywork There must be no openings through the bodywork into the driver compartment from the front of the vehicle back to the roll bar main hoop or firewall other than that required for the cockpit opening. Minimal openings around the front suspension components are allowed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Bodywork There must be no openings through the bodywork into the driver compartment from the front of the vehicle back to the roll bar main hoop or firewall other than that required for the cockpit opening. Minimal openings around the front suspension components are allowed.", "parentRuleCode": "1T2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.3", "ruleContent": "Wheelbase The car must have a wheelbase of at least 1524 mm. The wheelbase is measured from the center of ground contact of the front and rear tires with the wheels pointed straight ahead.", "parentRuleCode": "1T2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.4", "ruleContent": "Vehicle Track The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track.", "parentRuleCode": "1T2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.5", "ruleContent": "Visible Access All items on the Inspection Form must be clearly visible to the technical inspectors without using instruments such as endoscopes or mirrors. Visible access can be provided by removing body panels or by providing removable access panels.", "parentRuleCode": "1T2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T3", "ruleContent": "DRIVER’S CELL", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.1", "ruleContent": "General Requirements", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.1.1", "ruleContent": "Among other requirements, the vehicle’s structure must include two roll hoops that are braced, a front bulkhead with support system and Impact Attenuator, and side impact structures. Note: Many teams will be retrofitting Formula SAE cars for Formula Hybrid + Electric. In most cases these vehicles will be considerably heavier than what the original frame and suspension was designed to carry. It is important to analyze the structure of the car and to strengthen it as required to insure that it will handle the additional stresses. The technical inspectors will also be paying close attention to the mounting of accumulator systems. These can be very heavy and must be adequately fastened to the main structure of the vehicle.", "parentRuleCode": "1T3.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.2", - "ruleContent": "Definitions The following definitions apply throughout the Rules document: (a) Main Hoop - A roll bar located alongside or just behind the driver’s torso. (b) Front Hoop - A roll bar located above the driver’s legs, in proximity to the steering wheel. (c) Roll Hoops – Both the Front Hoop and the Main Hoop are classified as “Roll Hoops” (d) Roll Hoop Bracing Supports – The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). (e) Frame Member - A minimum representative single piece of uncut, continuous tubing. (f) Frame - The “Frame” is the fabricated structural assembly that supports all functional vehicle systems. This assembly may be a single welded structure, multiple welded structures or a combination of composite and welded structures. (g) Primary Structure – The Primary Structure is comprised of the following Frame components: (i) Main Hoop (ii) Front Hoop (iii) Roll Hoop Braces and Supports (iv) Side Impact Structure 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (v) Front Bulkhead (vi) Front Bulkhead Support System (vii) All Frame Members, guides and supports that transfer load from the Driver’s Restraint System into items (i) through (vi). (h) Major Structure of the Frame – The portion of the Frame that lies within the envelope defined by the Primary Structure. The upper portion of the Main Hoop and the Main Hoop Bracing are not included in defining this envelope. (i) Front Bulkhead – A planar structure that defines the forward plane of the Major Structure of the Frame and functions to provide protection for the driver’s feet. (j) Impact Attenuator – A deformable, energy absorbing device located forward of the Front Bulkhead. (k) Side Impact Zone – The area of the side of the car extending from the top of the floor to 350 mm above the ground and from the Front Hoop back to the Main Hoop. (l) Node-to-node triangulation – An arrangement of frame members projected onto a plane, where a co-planar load applied in any direction, at any node, results in only tensile or compressive forces in the frame members. This is also what is meant by “properly triangulated”. Figure 3 - Triangulation", + "ruleContent": "Definitions The following definitions apply throughout the Rules document: (a) Main Hoop - A roll bar located alongside or just behind the driver’s torso. (b) Front Hoop - A roll bar located above the driver’s legs, in proximity to the steering wheel. (c) Roll Hoops – Both the Front Hoop and the Main Hoop are classified as “Roll Hoops” (d) Roll Hoop Bracing Supports – The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). (e) Frame Member - A minimum representative single piece of uncut, continuous tubing. (f) Frame - The “Frame” is the fabricated structural assembly that supports all functional vehicle systems. This assembly may be a single welded structure, multiple welded structures or a combination of composite and welded structures. (g) Primary Structure – The Primary Structure is comprised of the following Frame components: (i) Main Hoop (ii) Front Hoop (iii) Roll Hoop Braces and Supports (iv) Side Impact Structure", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.3", "ruleContent": "Minimum Material Requirements", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.3.1", - "ruleContent": "Baseline Steel Material The Primary Structure of the car must be constructed of: Either: Round, mild or alloy, steel tubing (minimum 0.1% carbon) of the minimum dimensions specified in Table 4 . Or: Approved alternatives per Rules T3.3, T3.3.2, T3.5 and T3.6. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Inch Metric Main & Front Hoops, Round: 1.0\" x 0.095\" Round: 25.0 mm x 2.50 mm Shoulder Harness Mounting Bar Side Impact Structure Round: 1.0\" x 0.065\" Round: 25.0 mm x 1.75 mm Roll Hoop Bracing Square: 1.0\" x 1.0\" x 0.049\" Square: 25.0 mm x 25.0 mm x 1.25 mm Front Bulkhead Square: 26.0 mm x 26.0 mm x 1.2 mm Main Hoop Bracing Supports Round: 1.0\" x 0.049\" Round: 25.0 mm x 1.5 mm Front Bulkhead Supports Round: 26.0 mm x 1.2 mm Protection of Tractive System Components OUTSIDE DIMENSION x WALL THICKNESS ITEM or APPLICATION Driver’s Restraint Harness Attachment (except for Shoulder Harness Mounting Bar) Table 4 - Baseline Steel Note 1: The use of alloy steel does not allow the wall thickness to be thinner than that used for mild steel. Note 2: For a specific application using tubing of the specified outside diameter but with greater wall thickness, or of the specified wall thickness and a greater outside diameter, or replacing round tubing with square tubing of the same or larger size to those listed above, are NOT rules deviations requiring approval. Note 3: Except for inspection holes, any holes drilled in any regulated tubing require the submission of an SES. Note 4: Baseline steel properties used for calculations to be submitted in an SES may not be lower than the following: Bending and buckling strength calculations: Young’s Modulus (E) = 200 GPa (29,000 ksi) Yield Strength (S y ) = 305 MPa (44.2 ksi) Ultimate Strength (S u ) = 365 MPa (52.9 ksi) Welded monocoque attachment points or welded tube joint calculations: Yield Strength (S y ) = 180 MPa (26 ksi) Ultimate Strength (S u ) = 300 MPa (43.5 ksi)", + "ruleContent": "Baseline Steel Material The Primary Structure of the car must be constructed of: Either: Round, mild or alloy, steel tubing (minimum 0.1% carbon) of the minimum dimensions specified in Table 4 . Or: Approved alternatives per Rules T3.3, T3.3.2, T3.5 and T3.6.", "parentRuleCode": "1T3.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.3.2", - "ruleContent": "When a cutout, or a hole greater in diameter than 3/16 inch (4 mm), is made in a regulated tube, e.g. to mount the safety harness or suspension and steering components, in order to regain the baseline, cold rolled strength of the original tubing, the tubing must be reinforced by the use of a welded insert or other reinforcement. The welded strength figures given above must be used for the additional material. And the details, including dimensioned drawings, must be included in the SES. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "When a cutout, or a hole greater in diameter than 3/16 inch (4 mm), is made in a regulated tube, e.g. to mount the safety harness or suspension and steering components, in order to regain the baseline, cold rolled strength of the original tubing, the tubing must be reinforced by the use of a welded insert or other reinforcement. The welded strength figures given above must be used for the additional material. And the details, including dimensioned drawings, must be included in the SES.", "parentRuleCode": "1T3.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.4", "ruleContent": "Alternative Tubing and Material - General", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.4.1", "ruleContent": "Alternative tubing geometry and/or materials may be used except that the Main Roll Hoop and Main Roll Hoop Bracing must be made from steel, i.e. the use of aluminum or titanium tubing or composites for these components is prohibited.", "parentRuleCode": "1T3.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.4.2", "ruleContent": "Titanium or magnesium on which welding has been utilized may not be used for any part of the Primary Structure. This includes the attachment of brackets to the tubing or the attachment of the tubing to other components.", "parentRuleCode": "1T3.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.4.3", "ruleContent": "If a team chooses to use alternative tubing and/or materials they must still submit a “Structural Equivalency Spreadsheet” per Rule T3.8. The teams must submit calculations for the material they have chosen, demonstrating equivalence to the minimum requirements found in Section T3.3.1 for yield and ultimate strengths in bending, buckling and tension, for buckling modulus and for energy dissipation. Note: The Buckling Modulus is defined as EI, where, E = modulus of Elasticity, and I = area moment of inertia about the weakest axis.", "parentRuleCode": "1T3.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.4.4", "ruleContent": "To be considered as a structural tube in the SES Submission (T3.8) tubing cannot have an outside dimension less than 25 mm or a wall thickness less than that listed in T3.5 or T3.6.", "parentRuleCode": "1T3.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.4.5", - "ruleContent": "If a bent tube is used anywhere in the primary structure, other than the front and main roll hoops, an additional tube must be attached to support it. The attachment point must be the position along the tube where it deviates farthest from a straight line connecting both ends. The support tube must have the same diameter and thickness as the bent tube. The support tube must terminate at a node of the chassis.", + "ruleContent": "If a bent tube is used anywhere in the primary structure, other than the front and main roll hoops, an additional tube must be attached to support it. The attachment point must be the position along the tube where it deviates farthest from a straight line connecting both ends. The support tube must have the same diameter and thickness as the bent tube. The support tube must terminate at a node of the chassis.", "parentRuleCode": "1T3.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.4.6", "ruleContent": "Any chassis design that is a hybrid of the baseline and monocoque rules, must meet all relevant rules requirements, e.g. a sandwich panel side impact structure in a tube frame chassis must meet the requirements of rules T3.27, T3.28, T3.29, T3.30 and T3.33. Note: It is allowable for the properties of tubes and laminates to be combined to prove equivalence. E.g. in a side-impact structure consisting of one tube as per T3.3 and a laminate panel, the panel only needs to be equivalent to two side-impact tubes.", "parentRuleCode": "1T3.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.5", - "ruleContent": "Alternative Steel Tubing Minimum Wall Thickness Allowed: MATERIAL & APPLICATION MINIMUM WALL THICKNESS Front and Main Roll Hoops Shoulder Harness Mounting Bar 2.0 mm Roll Hoop Bracing Roll Hoop Bracing Supports Side Impact Structure Front Bulkhead Front Bulkhead Support Driver’s Harness Attachment (Except for Shoulder Harness Mounting Bar - above) Protection of accumulators Protection of TSV components 1.2 mm Table 5 - Steel Tubing Minimum Wall Thicknesses 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note 1: All steel is treated equally - there is no allowance for alloy steel tubing, e.g. SAE 4130, to have a thinner wall thickness than that used with mild steel. Note 2: To maintain EI with a thinner wall thickness than specified in T3.3.1, the outside diameter MUST be increased. Note 3: To maintain the equivalent yield and ultimate tensile strength the same cross-sectional area of steel as the baseline tubing specified in T3.3.1 must be maintained.", + "ruleContent": "Alternative Steel Tubing Minimum Wall Thickness Allowed: MATERIAL & APPLICATION MINIMUM WALL THICKNESS Front and Main Roll Hoops Shoulder Harness Mounting Bar 2.0 mm Roll Hoop Bracing Roll Hoop Bracing Supports Side Impact Structure Front Bulkhead Front Bulkhead Support Driver’s Harness Attachment (Except for Shoulder Harness Mounting Bar - above) Protection of accumulators Protection of TSV components 1.2 mm Table 5 - Steel Tubing Minimum Wall Thicknesses", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.6", "ruleContent": "Aluminum Tubing Requirements", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.6.1", "ruleContent": "Minimum Wall Thickness of Aluminum Tubing is 3.0 mm", "parentRuleCode": "1T3.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.6.2", "ruleContent": "The equivalent yield strength must be considered in the “as-welded” condition, (Reference: WELDING ALUMINUM (latest Edition) by the Aluminum Association, or THE WELDING HANDBOOK, Volume 4, 9th Ed., by The American Welding Society), unless the team demonstrates and shows proof that the frame has been properly solution heat treated and artificially aged.", "parentRuleCode": "1T3.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.6.3", "ruleContent": "Should aluminum tubing be solution heat-treated and age hardened to increase its strength after welding; the team must supply sufficient documentation as to how the process was performed. This includes, but is not limited to, the heat-treating facility used, the process applied, and the fixturing used.", "parentRuleCode": "1T3.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.7", "ruleContent": "Composite Materials", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.7.1", - "ruleContent": "If any composite or other material is used, the team must present documentation of material type, e.g. purchase receipt, shipping document or letter of donation, and of the material properties. Details of the composite lay-up technique as well as the structural material used (cloth type, weight, and resin type, number of layers, core material, and skin material if metal) must also be submitted. The team must submit calculations demonstrating equivalence of their composite structure to one of similar geometry made to the minimum requirements found in Section T3.3.1. Equivalency calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, buckling, and tension. Submit the completed “Structural Equivalency Spreadsheet” per Section T3.8 Note: Some composite materials present unique electrical shock hazards, and may require additional engineering and fabrication effort to minimize those hazards. See: ARTICLE EV8.", + "ruleContent": "If any composite or other material is used, the team must present documentation of material type, e.g. purchase receipt, shipping document or letter of donation, and of the material properties. Details of the composite lay-up technique as well as the structural material used (cloth type, weight, and resin type, number of layers, core material, and skin material if metal) must also be submitted. The team must submit calculations demonstrating equivalence of their composite structure to one of similar geometry made to the minimum requirements found in Section T3.3.1. Equivalency calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, buckling, and tension. Submit the completed “Structural Equivalency Spreadsheet” per Section T3.8 Note: Some composite materials present unique electrical shock hazards, and may require additional engineering and fabrication effort to minimize those hazards. See: ARTICLE EV8.", "parentRuleCode": "1T3.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.7.2", "ruleContent": "Composite materials are not allowed for the Main Hoop or the Front Hoop.", "parentRuleCode": "1T3.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8", "ruleContent": "Structural Documentation – SES Submission All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010.", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8.1", "ruleContent": "All teams must submit a Structural Equivalency Spreadsheet (SES) even if they are not planning to use alternative materials or tubing sizes to those specified in T3.3.1 Baseline Steel Materials.", "parentRuleCode": "1T3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8.2", "ruleContent": "The use of alternative materials or tubing sizes to those specified in T3.3.1 “Baseline Steel Material,” is allowed, provided they have been judged by a technical review to have equal or superior properties to those specified in T3.3.1.", "parentRuleCode": "1T3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8.3", "ruleContent": "Approval of alternative material or tubing sizes will be based upon the engineering judgment and experience of the chief technical inspector or their appointee.", "parentRuleCode": "1T3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8.4", "ruleContent": "The technical review is initiated by completing the “Structural Equivalency Spreadsheet” (SES) which can be downloaded from the Formula Hybrid + Electric website.", "parentRuleCode": "1T3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8.5", - "ruleContent": "Structural Equivalency Spreadsheet – Submission 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 SESs must be submitted via the Formula Hybrid + Electric Document Upload page. See Section A9.2. Do Not Resubmit SES’s unless instructed to do so.", + "ruleContent": "Structural Equivalency Spreadsheet – Submission", "parentRuleCode": "1T3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8.6", "ruleContent": "Vehicles completed under an approved SES must be fabricated in accordance with the materials and processes described in the SES.", "parentRuleCode": "1T3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8.7", - "ruleContent": "Teams must bring a copy of the approved SES with them to Technical Inspection. Comment - The resubmission of an SES that was written and submitted for a competition in a previous year is strongly discouraged. Each team is expected to perform their own tests and to submit SESs based on their original work. Understanding the engineering that justifies the equivalency is essential to discussing your work with the officials.", + "ruleContent": "Teams must bring a copy of the approved SES with them to Technical Inspection. Comment - The resubmission of an SES that was written and submitted for a competition in a previous year is strongly discouraged. Each team is expected to perform their own tests and to submit SESs based on their original work. Understanding the engineering that justifies the equivalency is essential to discussing your work with the officials.", "parentRuleCode": "1T3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.8.8", "ruleContent": "An approved SES for a Formula SAE 2024 or 2025 competition may be submitted in place of the Formula Hybrid + Electric specific SES required by T3.8.4.", "parentRuleCode": "1T3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.9", "ruleContent": "Main and Front Roll Hoops – General Requirements", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.9.1", "ruleContent": "The driver’s head and hands must not contact the ground in any rollover attitude.", "parentRuleCode": "1T3.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.9.2", "ruleContent": "The Frame must include both a Main Hoop and a Front Hoop as shown in Figures from Top: 4.", "parentRuleCode": "1T3.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.9.3", - "ruleContent": "When seated normally and restrained by the Driver’s Restraint System, the helmet of a 95th percentile male (anthropometrical data; See Table 6 and Figure 5) and all of the team’s drivers must: (a) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the top of the front hoop. (Figures from Top: 4a) (b) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the lower end of the main hoop bracing if the bracing extends rearwards. (Figures from Top: 4b) (c) Be no further rearwards than the rear surface of the main hoop if the main hoop bracing extends forwards. (Figures from Top: 4c) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 A two dimensional template used to represent the 95th percentile male is made to the following dimensions: ● A circle of diameter 200 mm will represent the hips and buttocks. ● A circle of diameter 200 mm will represent the shoulder/cervical region. ● A circle of diameter 300 mm will represent the head (with helmet). ● A straight line measuring 490 mm will connect the centers of the two 200 mm circles. ● A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle. Table 6 - 95th Percentile Male Template Dimensions Figures from Top: 4a, 4b, and 4c- Roll Hoops and Helmet Clearance 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 5 - Percy -- 95th Percentile Male with Helmet Figure 6 – 95th Percentile Template Positioning", + "ruleContent": "When seated normally and restrained by the Driver’s Restraint System, the helmet of a 95th percentile male (anthropometrical data; See Table 6 and Figure 5) and all of the team’s drivers must: (a) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the top of the front hoop. (Figures from Top: 4a) (b) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the lower end of the main hoop bracing if the bracing extends rearwards. (Figures from Top: 4b) (c) Be no further rearwards than the rear surface of the main hoop if the main hoop bracing extends forwards. (Figures from Top: 4c)", "parentRuleCode": "1T3.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.9.4", - "ruleContent": "The 95th percentile male template (Percy) will be positioned as follows: (See Figure 6) (a) The seat will be adjusted to the rearmost position, (b) The pedals will be placed in the most forward position. (c) The bottom 200 mm circle will be placed on the seat bottom such that the distance between the center of this circle and the rearmost face of the pedals is no less than 915 mm. (d) The middle 200 mm circle, representing the shoulders, will be positioned on the seat back. (e) The upper 300 mm circle will be positioned no more than 25.4 mm away from the head restraint (i.e. where the driver’s helmet would normally be located while driving). 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IMPORTANT: If the requirements of T3.9.3 are not met with the 95 th percentile male template, the car will not receive a Technical Inspection Sticker and will not be allowed to compete in the dynamic events.", + "ruleContent": "The 95th percentile male template (Percy) will be positioned as follows: (See Figure 6) (a) The seat will be adjusted to the rearmost position, (b) The pedals will be placed in the most forward position. (c) The bottom 200 mm circle will be placed on the seat bottom such that the distance between the center of this circle and the rearmost face of the pedals is no less than 915 mm. (d) The middle 200 mm circle, representing the shoulders, will be positioned on the seat back. (e) The upper 300 mm circle will be positioned no more than 25.4 mm away from the head restraint (i.e. where the driver’s helmet would normally be located while driving).", "parentRuleCode": "1T3.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.9.5", "ruleContent": "Drivers who do not meet the helmet clearance requirements of T3.9.3 will not be allowed to drive in the competition.", "parentRuleCode": "1T3.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.9.6", "ruleContent": "The minimum radius of any bend, measured at the tube centerline, must be at least three times the tube outside diameter. Bends must be smooth and continuous with no evidence of crimping or wall failure.", "parentRuleCode": "1T3.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.9.7", "ruleContent": "The Main Hoop and Front Hoop must be securely integrated into the Primary Structure using gussets and/or tube triangulation.", "parentRuleCode": "1T3.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.10", "ruleContent": "Main Hoop", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.10.1", "ruleContent": "The Main Hoop must be constructed of a single piece of uncut, continuous, closed section steel tubing per Rule T3.3.1", "parentRuleCode": "1T3.10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.10.2", "ruleContent": "The use of aluminum alloys, titanium alloys or composite materials for the Main Hoop is prohibited.", "parentRuleCode": "1T3.10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.10.3", "ruleContent": "The Main Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down the lowest Frame Member on the other side of the Frame.", "parentRuleCode": "1T3.10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.10.4", "ruleContent": "In the side view of the vehicle, the portion of the Main Roll Hoop that lies above its attachment point to the Major Structure of the Frame must be within ten degrees (10°) of the vertical.", "parentRuleCode": "1T3.10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.10.5", "ruleContent": "In the side view of the vehicle, any bends in the Main Roll Hoop above its attachment point to the Major Structure of the Frame must be braced to a node of the Main Hoop Bracing Support structure with tubing meeting the requirements of Roll Hoop Bracing as per Rule T3.3.1", "parentRuleCode": "1T3.10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.10.6", "ruleContent": "In the front view of the vehicle, the vertical members of the Main Hoop must be at least 380 mm apart (inside dimension) at the location where the Main Hoop is attached to the Major Structure of the Frame.", "parentRuleCode": "1T3.10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.11", "ruleContent": "Front Hoop", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.11.1", "ruleContent": "The Front Hoop must be constructed of closed section metal tubing per Rule T3.3.1.", "parentRuleCode": "1T3.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.11.2", "ruleContent": "The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down to the lowest Frame Member on the other side of the Frame.", "parentRuleCode": "1T3.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.11.3", "ruleContent": "With proper gusseting and/or triangulation, it is permissible to fabricate the Front Hoop from more than one piece of tubing.", "parentRuleCode": "1T3.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.11.4", "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position.", "parentRuleCode": "1T3.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.11.5", - "ruleContent": "The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance must be measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight- ahead position. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance must be measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight- ahead position.", "parentRuleCode": "1T3.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.11.6", "ruleContent": "In side view, no part of the Front Hoop can be inclined at more than twenty degrees (20°) from the vertical.", "parentRuleCode": "1T3.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.12", "ruleContent": "Main Hoop Bracing", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.12.1", "ruleContent": "Main Hoop braces must be constructed of closed section steel tubing per Rule T3.3.1.", "parentRuleCode": "1T3.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.12.2", "ruleContent": "The Main Hoop must be supported by two braces extending in the forward or rearward direction on both the left and right sides of the Main Hoop.", "parentRuleCode": "1T3.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.12.3", "ruleContent": "In the side view of the Frame, the Main Hoop and the Main Hoop braces must not lie on the same side of the vertical line through the top of the Main Hoop, i.e. if the Main Hoop leans forward, the braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, the braces must be rearward of the Main Hoop.", "parentRuleCode": "1T3.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.12.4", "ruleContent": "The Main Hoop braces must be attached as near as possible to the top of the Main Hoop but not more than 160 mm below the top-most surface of the Main Hoop. The included angle formed by the Main Hoop and the Main Hoop braces must be at least thirty degrees (30°). See: Figure 7 Figure 7 - Main and Front Hoop Bracing", "parentRuleCode": "1T3.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.12.5", "ruleContent": "The Main Hoop braces must be straight, i.e. without any bends.", "parentRuleCode": "1T3.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.12.6", "ruleContent": "The attachment of the Main Hoop braces must be capable of transmitting all loads from the Main Hoop into the Major Structure of the Frame without failing. From the lower end of the braces there must be a properly triangulated structure back to the lowest part of the Main Hoop and the node at which the upper side impact tube meets the Main Hoop. This structure must meet the minimum requirements for Main Hoop Bracing Supports (see Rule T3.3) or an SES approved alternative. Bracing loads must not be fed solely into the engine, transmission or differential, or through suspension components.", "parentRuleCode": "1T3.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.12.7", - "ruleContent": "If any item which is outside the envelope of the Primary Structure is attached to the Main Hoop braces, then additional bracing must be added to prevent bending loads in the braces in any rollover attitude. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "If any item which is outside the envelope of the Primary Structure is attached to the Main Hoop braces, then additional bracing must be added to prevent bending loads in the braces in any rollover attitude.", "parentRuleCode": "1T3.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.13", "ruleContent": "Front Hoop Bracing", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.13.1", "ruleContent": "Front Hoop braces must be constructed of material per Rule T3.3.1.", "parentRuleCode": "1T3.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.13.2", "ruleContent": "The Front Hoop must be supported by two braces extending in the forward direction, one on the left side and one on the right side of the Front Hoop.", "parentRuleCode": "1T3.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.13.3", "ruleContent": "The Front Hoop braces must be constructed such that they protect the driver’s legs and should extend to the structure in front of the driver’s feet.", "parentRuleCode": "1T3.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.13.4", - "ruleContent": "The Front Hoop braces must be attached as near as possible to the top of the Front Hoop but not more than 50.8 mm below the top-most surface of the Front Hoop. See: Figure 7", + "ruleContent": "The Front Hoop braces must be attached as near as possible to the top of the Front Hoop but not more than 50.8 mm below the top-most surface of the Front Hoop. See: Figure 7", "parentRuleCode": "1T3.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.13.5", "ruleContent": "If the Front Hoop leans rearwards by more than ten degrees (10°) from the vertical, it must be supported by additional bracing to the rear. This bracing must be constructed of material per Rule T3.3.1.", "parentRuleCode": "1T3.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.14", "ruleContent": "Other Bracing Requirements Where the braces are not welded to steel Frame Members, the braces must be securely attached to the Frame using 8 mm Metric Grade 8.8 (5/16 in SAE Grade 5), or stronger, bolts. Mounting plates welded to the Roll Hoop braces must be at least 2.0 mm thick steel.", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.15", "ruleContent": "Other Side Tube Requirements If there is a Roll Hoop brace or other frame tube alongside the driver, at the height of the neck of any of the team’s drivers, a metal tube or piece of sheet metal must be firmly attached to the Frame to prevent the drivers’ shoulders from passing under the roll hoop brace or frame tube, and his/her neck contacting this brace or tube.", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16", "ruleContent": "Mechanically Attached Roll Hoop Bracing", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16.1", "ruleContent": "Roll Hoop bracing may be mechanically attached.", "parentRuleCode": "1T3.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16.2", - "ruleContent": "Any non-permanent joint at either end must be either a double-lug joint as shown in Figure 8 and Figure 9 or a sleeved butt joint as shown in Figure 10. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 8 – Double-Lug Joint Figure 9 – Double Lug Joint Figure 10 – Sleeved Butt Joint", + "ruleContent": "Any non-permanent joint at either end must be either a double-lug joint as shown in Figure 8 and Figure 9 or a sleeved butt joint as shown in Figure 10.", "parentRuleCode": "1T3.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16.3", "ruleContent": "The threaded fasteners used to secure non-permanent joints are considered critical fasteners and must comply with ARTICLE T11.", "parentRuleCode": "1T3.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16.4", "ruleContent": "No spherical rod ends are allowed.", "parentRuleCode": "1T3.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16.5", "ruleContent": "For double-lug joints, each lug must be at least 4.5 mm thick steel, measure 25 mm minimum perpendicular to the axis of the bracing and be as short as practical along the axis of the bracing.", "parentRuleCode": "1T3.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16.6", "ruleContent": "All double-lug joints, whether fitted at the top or bottom of the tube, must include a capping arrangement. (See Figure 8 and Figure 9)", "parentRuleCode": "1T3.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16.7", "ruleContent": "In a double-lug joint the pin or bolt must be 10 mm Grade 9.8 or 3/8 inch SAE Grade 8 minimum. The attachment holes in the lugs and in the attached bracing must be a close fit with the pin or bolt.", "parentRuleCode": "1T3.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.16.8", - "ruleContent": "For sleeved butt joints (Figure 10), the sleeve must have a minimum length of 76 mm (38 mm on either side of the joint) and be a close-fit around the base tubes. The wall thickness of the sleeve must be at least that of the base tubes. The bolts must be 6 mm Grade 9.8 or 1/4 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 inch SAE Grade 8 minimum. The holes in the sleeves and tubes must be a close-fit with the bolts.", + "ruleContent": "For sleeved butt joints (Figure 10), the sleeve must have a minimum length of 76 mm (38 mm on either side of the joint) and be a close-fit around the base tubes. The wall thickness of the sleeve must be at least that of the base tubes. The bolts must be 6 mm Grade 9.8 or 1/4", "parentRuleCode": "1T3.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.17", "ruleContent": "Frontal Impact Structure", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.17.1", "ruleContent": "The driver’s feet and legs must be completely contained within the Major Structure of the Frame. While the driver’s feet are touching the pedals, in side and front views no part of the driver’s feet or legs can extend above or outside of the Major Structure of the Frame.", "parentRuleCode": "1T3.17", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.17.2", "ruleContent": "Forward of the Front Bulkhead must be an energy-absorbing Impact Attenuator.", "parentRuleCode": "1T3.17", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.18", "ruleContent": "Bulkhead", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.18.1", "ruleContent": "The Front Bulkhead must be constructed of closed section tubing per Rule T3.3.1.", "parentRuleCode": "1T3.18", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.18.2", "ruleContent": "Except as allowed byT3.22.2, The Front Bulkhead must be located forward of all non- crushable objects, e.g. batteries, master cylinders, hydraulic reservoirs.", "parentRuleCode": "1T3.18", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.18.3", "ruleContent": "The Front Bulkhead must be located such that the soles of the driver’s feet, when touching but not applying the pedals, are rearward of the bulkhead plane. (This plane is defined by the forward-most surface of the tubing.) Adjustable pedals must be in the forward most position.", "parentRuleCode": "1T3.18", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.19", "ruleContent": "Front Bulkhead Support", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.19.1", "ruleContent": "The Front Bulkhead must be securely integrated into the Frame.", "parentRuleCode": "1T3.19", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.19.2", "ruleContent": "The Front Bulkhead must be supported back to the Front Roll Hoop by a minimum of three (3) Frame Members on each side of the vehicle with one at the top (within 50.8 mm of its top-most surface), one (1) at the bottom, and one (1) as a diagonal brace to provide triangulation.", "parentRuleCode": "1T3.19", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.19.3", "ruleContent": "The triangulation must be node-to-node, with triangles being formed by the Front Bulkhead, the diagonal and one of the other two required Front Bulkhead Support Frame Members.", "parentRuleCode": "1T3.19", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.19.4", "ruleContent": "All the Frame Members of the Front Bulkhead Support system listed above must be constructed of closed section tubing per Section T3.3.1.", "parentRuleCode": "1T3.19", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20", "ruleContent": "Impact Attenuator (IA)", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.1", "ruleContent": "On all cars there must be an Impact Attenuator and an Anti-Intrusion Plate forward of the Front Bulkhead, with the Anti-Intrusion Plate between the Impact Attenuator and the Front Bulkhead. All methods of attachment of the IA to the Ant-Intrusion Plate and of the Anti-Intrusion Plate to the Front Bulkhead must provide adequate load paths for transverse and vertical loads in the event of off-axis impacts.", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.2", "ruleContent": "The Anti-Intrusion Plate must: (a) Be a 1.5 mm (0.060 in) thick solid steel or 4.0 mm (0.157 in) thick solid aluminum plate. Monocoques may use an approved alternative as per T3.38. (b) Be attached securely and directly to the Front Bulkhead. (c) Have an outer profile that meets the requirements of T3.20.3.", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.3", - "ruleContent": "Alternative designs of the Anti-Intrusion Plate required by T3.20.2 that do not comply with the minimum specifications given above require an approved “Structural Equivalency Spreadsheet”, per T3.8. Equivalency must also be proven for perimeter shear strength of the proposed design. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Alternative designs of the Anti-Intrusion Plate required by T3.20.2 that do not comply with the minimum specifications given above require an approved “Structural Equivalency Spreadsheet”, per T3.8. Equivalency must also be proven for perimeter shear strength of the proposed design.", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.4", "ruleContent": "The requirements for the outside profile of the Anti-Intrusion Plate are dependent on the method of attachment to the Front Bulkhead: ● For welded joints the profile must extend at least to the centerline of the Front Bulkhead tubes on all sides. ● For bolted joints the profile must match the outside dimensions of the Front Bulkhead around the entire periphery.", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.5", - "ruleContent": "For tube frame cars, the accepted methods of attaching the Anti-Intrusion Plate to the Front Bulkhead are: (a) Welding, where the welds are either continuous or interrupted. If interrupted, the weld/space ratio must be at least 1:1. All weld lengths must be greater than 25 mm (1”). (b) Bolted joints, using a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2”). NOTE: Holes in mandated tubes will require appropriate measures to ensure compliance with T3.3.1 Note 3, and T3.3.2", + "ruleContent": "For tube frame cars, the accepted methods of attaching the Anti-Intrusion Plate to the Front Bulkhead are: (a) Welding, where the welds are either continuous or interrupted. If interrupted, the weld/space ratio must be at least 1:1. All weld lengths must be greater than 25 mm (1”). (b) Bolted joints, using a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2”). NOTE: Holes in mandated tubes will require appropriate measures to ensure compliance with T3.3.1 Note 3, and T3.3.2", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.6", "ruleContent": "For monocoque cars, the attachment of the Anti-Intrusion Plate to the monocoque structure must be documented in the team’s SES submission. This must prove the attachment method is equivalent to the bolted joints described in T3.20.5 and that the attachment method utilized will fail before any other part of the monocoque.", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.7", "ruleContent": "The Impact Attenuator must be: (a) At least 200 mm (7.8 in) long, with its length oriented along the fore/aft axis of the Frame. (b) At least 100 mm (3.9 in) high and 200 mm (7.8 in) wide for a minimum distance of 200 mm (7.8 in) forward of the Front Bulkhead. (c) Attached securely to the Anti-Intrusion Plate. Segmented foam attenuators must have all segments bonded together to prevent sliding or parallelogramming.", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.8", "ruleContent": "The accepted methods of attaching the Impact Attenuator to the Anti-Intrusion Plate are: (a) Bolted joints, using a minimum of four (4) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2”). (b) By the use of a structural adhesive. The adhesive must be appropriate for use with both substrate types. Appropriate adhesive choice, substrate preparation, and equivalency of this bonded joint to the bolted joint in T3.20.8(a) must be documented in the team’s IAD Report. Note: Foam IA’s cannot be attached solely by the bolted method.", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.20.9", - "ruleContent": "If a team uses the “standard” FSAE Impact Attenuator 3 , and the outside profile of the Anti- Intrusion Plate extends beyond the “standard” Impact Attenuator by more than 25 mm (1”) on 3 The officially approved “standard” Formula SAE Impact Attenuator may be found here on the Formula SAE website 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 any side, a diagonal or X-brace made from 1.00” x 0.049” steel tube, or an approved equivalent per T3.5, must be included in the Front Bulkhead.", + "ruleContent": "If a team uses the “standard” FSAE Impact Attenuator 3 , and the outside profile of the Anti- Intrusion Plate extends beyond the “standard” Impact Attenuator by more than 25 mm (1”) on 3 The officially approved “standard” Formula SAE Impact Attenuator may be found here on the Formula SAE website", "parentRuleCode": "1T3.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21", "ruleContent": "Impact Attenuator Test Data Report Requirement", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.1", "ruleContent": "Impact Attenuator Test Data Report Requirement All teams, whether they are using their own design of Impact Attenuator (IA) or the “standard” FSAE Impact Attenuator, must submit an Impact Attenuator Data Report using the Impact Attenuator Data (IAD) Template found on the Formula Hybrid + Electric Document page at: https://www.formula-hybrid.org/documents", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.2", "ruleContent": "All teams must submit calculations and/or test data to show that their Impact Attenuator, when mounted on the front of their vehicle and run into a solid, non-yielding impact barrier with a velocity of impact of 7.0 meters/second, would give an average deceleration of the vehicle not to exceed 20 g, with a peak deceleration less than or equal to 40 g's. NOTE 1: Quasi-static testing is allowed. NOTE 2: The calculations of how the reported absorbed energy, average deceleration and peak deceleration figures have been derived from the test data MUST be included in the report and appended to the report template.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.3", "ruleContent": "Calculations must be based on the actual vehicle mass with a 175 lb. driver, full fluids, and rounded up to the nearest 100 lb. Note: Teams may only use the “Standard” FSAE impact attenuator design and data submission process if their vehicle mass with driver is 300 kgs (661 lbs) or less. To be eligible to utilize the “Standard” FSAE impact attenuator, teams must either have previously brought a Formula Hybrid + Electric vehicle that weighs under 300 kgs (661 lbs) with driver to a Formula Hybrid + Electric competition, or submit a detailed mass measurement spreadsheet covering all the vehicle’s components as part of the Impact Attenuator Data Report, showing that the new vehicle meets the above requirements.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.4", "ruleContent": "Teams using a front wing must prove that the combination of the Impact Attenuator and front wing, when used together, do not exceed the peak deceleration of rule T3.21.2. Teams can use the following methods to show the design does not exceed the limits given in T3.21.2. (a) Physical testing of the Impact Attenuator with wing mounts, links, vertical plates, and a structural representation of the airfoil section to determine the peak force. See http://formula-hybrid.org/students/tech-support/ FAQs for an example of the structure to be included in the test. Or (b) Combine the peak force from physical testing of the Impact Attenuator Assembly with the wing mount failure load calculated from fastener shear and/or link buckling. Or (c) If they are using the Standard FSAE Impact Attenuator (see T3.21.3 above), combine the peak load of 95 kN exerted by the Standard FSAE Impact Attenuator with the wing mount failure load calculated from fastener shear and/or buckling.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.5", - "ruleContent": "When using acceleration data, the average deceleration must be calculated based on the raw data. The peak deceleration can be assessed based on the raw data, and if peaks above the 40g limit are apparent in the data, it can then be filtered with a Channel Filter Class (CFC) 60 (100 Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Tests”, or a 100 Hz, 3rd order, lowpass Butterworth (-3dB at 100 Hz) filter. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "When using acceleration data, the average deceleration must be calculated based on the raw data. The peak deceleration can be assessed based on the raw data, and if peaks above the 40g limit are apparent in the data, it can then be filtered with a Channel Filter Class (CFC) 60 (100 Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Tests”, or a 100 Hz, 3rd order, lowpass Butterworth (-3dB at 100 Hz) filter.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.6", "ruleContent": "A schematic of the test method must be supplied along with photos of the attenuator before and after testing.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.7", "ruleContent": "The test piece must be presented at technical inspection for comparison to the photographs and the attenuator fitted to the vehicle.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.8", "ruleContent": "The report must be submitted electronically in Adobe Acrobat ® format (*.pdf file) to the address and by the date provided in the Action Deadlines provided on the Formula Hybrid + Electric website. This material must be a single file (text, drawings, data or whatever you are including).", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.9", - "ruleContent": "The Impact Attenuator Data Report must be named as follows: carnumber_schoolname_competitioncode_IAD.pdf using the assigned car number, the complete school name and competition code e.g. 087_University of SAE_FHE_IAD.pdf", + "ruleContent": "The Impact Attenuator Data Report must be named as follows: carnumber_schoolname_competitioncode_IAD.pdf using the assigned car number, the complete school name and competition code e.g. 087_University of SAE_FHE_IAD.pdf", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.10", "ruleContent": "Teams that submit their Impact Attenuator Data Report after the due date will be penalized as listed in section A9.2.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.11", "ruleContent": "Impact Attenuator Reports will be evaluated by the organizers and the evaluations will be passed to the Design Event Captain for consideration in that event.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.12", "ruleContent": "During the test, the attenuator must be attached to the Anti-Intrusion Plate using the intended vehicle attachment method. The Anti-Intrusion Plate must be spaced at least 50 mm from any rigid surface. No part of the Anti-Intrusion Plate may permanently deflect more than 25.4 mm beyond the position of the Anti-Intrusion Plate before the test. Note: The 25.4 mm spacing represents the front bulkhead support and insures that the plate does not intrude excessively into the cockpit.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.21.13", - "ruleContent": "Dynamic testing (sled, pendulum, drop tower, etc.) of the impact attenuator may only be done at a dedicated test facility. The test facility may be part of the University but must be supervised by professional staff or University faculty. Teams are not allowed to construct their own dynamic test apparatus. Quasi-static testing may be performed by teams using their universities facilities/equipment, but teams are advised to exercise due care when performing all tests.", + "ruleContent": "Dynamic testing (sled, pendulum, drop tower, etc.) of the impact attenuator may only be done at a dedicated test facility. The test facility may be part of the University but must be supervised by professional staff or University faculty. Teams are not allowed to construct their own dynamic test apparatus. Quasi-static testing may be performed by teams using their universities facilities/equipment, but teams are advised to exercise due care when performing all tests.", "parentRuleCode": "1T3.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.22", "ruleContent": "Non-Crushable Objects", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.22.1", "ruleContent": "Except as allowed by T3.22.2, all non-crushable objects (e.g. batteries, master cylinders, hydraulic reservoirs) inside the primary structure must have 25 mm (1”) clearance to the rear face of the Impact Attenuator Anti-Intrusion Plate.", "parentRuleCode": "1T3.22", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.22.2", "ruleContent": "The front wing and wing supports may be forward of the Front Bulkhead, but may NOT be located in or pass through the Impact Attenuator. If the wing supports are in front of the Front Bulkhead, the supports must be included in the test of the Impact Attenuator. See T3.21.", "parentRuleCode": "1T3.22", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.23", "ruleContent": "Front Bodywork", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.23.1", "ruleContent": "Sharp edges on the forward facing bodywork or other protruding components are prohibited.", "parentRuleCode": "1T3.23", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.23.2", - "ruleContent": "All forward facing edges on the bodywork that could impact people, e.g. the nose, must have forward facing radii of at least 38 mm. This minimum radius must extend to at least forty-five degrees (45°) relative to the forward direction, along the top, sides and bottom of all affected edges. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "All forward facing edges on the bodywork that could impact people, e.g. the nose, must have forward facing radii of at least 38 mm. This minimum radius must extend to at least forty-five degrees (45°) relative to the forward direction, along the top, sides and bottom of all affected edges.", "parentRuleCode": "1T3.23", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.24", "ruleContent": "Side Impact Structure for Tube Frame Cars The Side Impact Structure must meet the requirements listed below.", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.24.1", "ruleContent": "The Side Impact Structure for tube frame cars must be comprised of at least three (3) tubular members located on each side of the driver while seated in the normal driving position, as shown in Figure 11 Figure 11 – Side Impact Structure", "parentRuleCode": "1T3.24", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.24.2", "ruleContent": "The three (3) required tubular members must be constructed of material per Section T3.3.", "parentRuleCode": "1T3.24", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.24.3", "ruleContent": "The locations for the three (3) required tubular members are as follows: (a) The upper Side Impact Structural member must connect the Main Hoop and the Front Hoop. With a 77 kg driver seated in the normal driving position all of the member must be at a height between 300 mm and 350 mm above the ground. The upper frame rail may be used as this member if it meets the height, diameter and thickness requirements. (b) The lower Side Impact Structural member must connect the bottom of the Main Hoop and the bottom of the Front Hoop. The lower frame rail/frame member may be this member if it meets the diameter and wall thickness requirements. (c) The diagonal Side Impact Structural member must connect the upper and lower Side Impact Structural members forward of the Main Hoop and rearward of the Front Hoop.", "parentRuleCode": "1T3.24", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.24.4", "ruleContent": "With proper gusseting and/or triangulation, it is permissible to fabricate the Side Impact Structural members from more than one piece of tubing.", "parentRuleCode": "1T3.24", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.24.5", - "ruleContent": "Alternative geometry that does not comply with the minimum requirements given above requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Alternative geometry that does not comply with the minimum requirements given above requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8.", "parentRuleCode": "1T3.24", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.25", "ruleContent": "Inspection Holes", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.25.1", "ruleContent": "To allow the verification of tubing wall thicknesses, 4.5 mm inspection holes must be drilled in a non-critical location of both the Main Hoop and the Front Hoop.", "parentRuleCode": "1T3.25", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.25.2", "ruleContent": "In addition, the Technical Inspectors may check the compliance of other tubes that have minimum dimensions specified in T3.3.1. This may be done by the use of ultra-sonic testing or by the drilling of additional inspection holes at the inspector’s request.", "parentRuleCode": "1T3.25", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.25.3", "ruleContent": "Inspection holes must be located so that the outside diameter can be measured across the inspection hole with a caliper, i.e. there must be access for the caliper to the inspection hole and to the outside of the tube one hundred eighty degrees (180°) from the inspection hole.", "parentRuleCode": "1T3.25", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.26", "ruleContent": "Composite Tubular Space Frames", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.26.1", "ruleContent": "Composite tubular space frames are not permitted in the Primary Structure of the vehicle (See T3.2(g))", "parentRuleCode": "1T3.26", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.26.2", "ruleContent": "Composite tubular structures may be used for other tubes regulated under T3.3 provided the team receives prior approval from the Formula Hybrid + Electric chief technical examiner. This will require submission of the following data: (a) Test data on the joints used in the structure. (b) Static strength testing on all proposed configurations within the frame. (c) An assessment of the ability of all joints to handle cyclic loading. (d) The equivalency of the composite tubes to withstand maximum forces and moments (when compared to baseline materials). This information must also be included in the structural equivalency submission.", "parentRuleCode": "1T3.26", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.27", "ruleContent": "Monocoque General Requirements", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.27.1", "ruleContent": "All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010.", "parentRuleCode": "1T3.27", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.27.2", "ruleContent": "All sections of the rules apply to monocoque structures except for the following sections which supplement or supersede other rule sections.", "parentRuleCode": "1T3.27", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.27.3", "ruleContent": "Monocoque construction requires an approved Structural Equivalency Spreadsheet, per Section T3.8. The form must demonstrate that the design is equivalent to a welded frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension. Information must include: material type(s), cloth weights, resin type, fiber orientation, number of layers, core material, and lay-up technique. The 3 point bend test and shear test data and pictures must also be included as per T3.30 Monocoque Laminate Testing. The Structural Equivalency must address each of the items below. Data from the laminate testing results must be used as the basis for any strength or stiffness calculations.", "parentRuleCode": "1T3.27", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.27.4", "ruleContent": "Composite and metallic monocoques have the same requirements.", "parentRuleCode": "1T3.27", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.27.5", "ruleContent": "Composite monocoques must meet the materials requirements in Rule T3.7 Composite Materials.", "parentRuleCode": "1T3.27", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.28", "ruleContent": "Monocoque Inspections", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.28.1", - "ruleContent": "Due to the monocoque rules and methods of manufacture it is not always possible to inspect all aspects of a monocoque during technical inspection. For items which cannot be verified by an inspector it is the responsibility of the team to provide documentation, both visual 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 and/or written, that the requirements have been met. Generally the following items should be possible to be confirmed by the technical inspector: (a) Verification of the Main Hoop outer diameter and wall thickness where it protrudes above the monocoque (b) Visual verification that the Main Hoop goes to the lowest part of the tub, locally (c) Verify mechanical attachment of Main Hoop to tub exists and matches the SES, at all points shown on the SES. (d) Verify the outside diameter and wall thickness of the Front Hoop by providing access as required by Rule T3.25.3. (e) Verify visually or by feel that the Front Hoop is installed. (f) Verify that the Front Hoop goes to the lowest part of the tub, locally. (g) Verify mechanical attachment of the Front Hoop (if included) against the SES.", + "ruleContent": "Due to the monocoque rules and methods of manufacture it is not always possible to inspect all aspects of a monocoque during technical inspection. For items which cannot be verified by an inspector it is the responsibility of the team to provide documentation, both visual", "parentRuleCode": "1T3.28", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.29", - "ruleContent": "Monocoque Buckling Modulus – Equivalent Flat Panel Calculation When specified in the rules, the EI of the monocoque must be calculated as the EI of a flat panel with the same composition as the monocoque about the neutral axis of the laminate. The curvature of the panel and geometric cross section of the monocoque must be ignored for these calculations. Note: Calculations of EI that do not reference T3.29 may take into account the actual geometry of the monocoque.", + "ruleContent": "Monocoque Buckling Modulus – Equivalent Flat Panel Calculation When specified in the rules, the EI of the monocoque must be calculated as the EI of a flat panel with the same composition as the monocoque about the neutral axis of the laminate. The curvature of the panel and geometric cross section of the monocoque must be ignored for these calculations. Note: Calculations of EI that do not reference T3.29 may take into account the actual geometry of the monocoque.", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.30", "ruleContent": "Monocoque Laminate Testing", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.30.1", "ruleContent": "Teams must build a representative flat panel section of the monocoque side impact zone (“zone” is defined in T3.32.2 and T3.2(k)) and perform a 3 point bending test on this panel. They must prove by physical test that a section 200 mm x 500 mm has at least the same properties as a baseline steel side impact tube (See T3.3.1 “Baseline Steel Materials”) for bending stiffness and two side impact tubes for yield and ultimate strength. The data from these tests and pictures of the test samples must be included in the SES, the test results will be used to derive strength and stiffness properties used in the SES formulae for all laminate panels. The test specimen must be presented at technical inspection. If the test specimen does not meet these requirements then the monocoque side impact zone must be strengthened appropriately. Note: Teams are advised to make an equivalent test with the base line steel tubes such that any compliance in the test rig can be accounted for.", "parentRuleCode": "1T3.30", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.30.2", "ruleContent": "If laminates with a lay-up different to that of the side-impact structure are used then additional physical tests must be completed for any part of the monocoque that forms part of the primary structure. The material properties derived from these tests must then be used in the SES for the appropriate equivalency calculations. Note: A laminate with more or less plies, of the same lay-up as the side-impact structure, does not constitute a “different lay-up” and the material properties may be scaled accordingly.", "parentRuleCode": "1T3.30", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.30.3", - "ruleContent": "Perimeter shear tests must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 The sample, measuring at least 100 mm x 100 mm must have core and skin thicknesses identical to those used in the actual monocoque and be manufactured using the same materials and processes. The fixture must support the entire sample, except for a 32 mm hole aligned co-axially with the punch. The sample must not be clamped to the fixture. The force-displacement data and photos of the test setup must be included in the SES. The first peak in the load-deflection curve must be used to determine the skin shear strength. This may be less than the minimum force required by T3.32.3/T3.33.3. The maximum force recorded must meet the requirements of T3.32.3/T3.33.3. Note: The edge of the punch and hole in the fixture may include an optional fillet up-to a maximum radius of 1 mm.", + "ruleContent": "Perimeter shear tests must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample.", "parentRuleCode": "1T3.30", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.31", - "ruleContent": "Monocoque Front Bulkhead See Rule T3.27 for general requirements that apply to all aspects of the monocoque. In addition, when modeled as an “L” shaped section the EI of the front bulkhead about both vertical and lateral axis must be equivalent to that of the tubes specified for the front bulkhead under T3.18. The length of the section perpendicular to the bulkhead may be a maximum of 25.4 mm measured from the rearmost face of the bulkhead. Furthermore, any front bulkhead which supports the IA plate must have a perimeter shear strength equivalent to a 1.5 mm thick steel plate.", + "ruleContent": "Monocoque Front Bulkhead See Rule T3.27 for general requirements that apply to all aspects of the monocoque. In addition, when modeled as an “L” shaped section the EI of the front bulkhead about both vertical and lateral axis must be equivalent to that of the tubes specified for the front bulkhead under T3.18. The length of the section perpendicular to the bulkhead may be a maximum of 25.4 mm measured from the rearmost face of the bulkhead. Furthermore, any front bulkhead which supports the IA plate must have a perimeter shear strength equivalent to a 1.5 mm thick steel plate.", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.32", "ruleContent": "Monocoque Front Bulkhead Support", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.32.1", "ruleContent": "In addition to proving that the strength of the monocoque is adequate, the monocoque must have equivalent EI to the sum of the EI of the six (6) baseline steel tubes that it replaces.", "parentRuleCode": "1T3.32", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.32.2", "ruleContent": "The EI of the vertical side of the front bulkhead support structure must be equivalent to at least the EI of one baseline steel tube that it replaces when calculated as per rule T3.29 Monocoque Buckling Modulus.", "parentRuleCode": "1T3.32", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.32.3", - "ruleContent": "The perimeter shear strength of the monocoque laminate in the front bulkhead support structure should be at least 4 kN for a section with a diameter of 25 mm. This must be proven by a physical test completed as per T3.30.3 and the results include in the SES", + "ruleContent": "The perimeter shear strength of the monocoque laminate in the front bulkhead support structure should be at least 4 kN for a section with a diameter of 25 mm. This must be proven by a physical test completed as per T3.30.3 and the results include in the SES", "parentRuleCode": "1T3.32", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.33", "ruleContent": "Monocoque Side Impact", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.33.1", "ruleContent": "In addition to proving that the strength of the monocoque is adequate, the side of the monocoque must have equivalent EI to the sum of the EI of the three (3) baseline steel tubes that it replaces.", "parentRuleCode": "1T3.33", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.33.2", "ruleContent": "The side of the monocoque between the upper surface of the floor and 350 mm above the ground (Side Impact Zone) must have an EI of at least 50% of the sum of the EI of the three (3) baseline steel tubes that it replaces when calculated as per Rule T3.29 Monocoque Buckling Modulus.", "parentRuleCode": "1T3.33", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.33.3", - "ruleContent": "The perimeter shear strength of the monocoque laminate should be at least 7.5 kN for a section with a diameter of 25 mm. This must be proven by physical test completed as per T3.30.3 and the results included in the SES. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 12 – Side Impact Zone Definition for a Monocoque", + "ruleContent": "The perimeter shear strength of the monocoque laminate should be at least 7.5 kN for a section with a diameter of 25 mm. This must be proven by physical test completed as per T3.30.3 and the results included in the SES.", "parentRuleCode": "1T3.33", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.34", "ruleContent": "Monocoque Main Hoop", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.34.1", "ruleContent": "The Main Hoop must be constructed of a single piece of uncut, continuous, closed section steel tubing per T3.3.1 and extend down to the bottom of the monocoque.", "parentRuleCode": "1T3.34", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.34.2", "ruleContent": "The Main Hoop must be mechanically attached at the top and bottom of the monocoque and at intermediate locations as needed to show equivalency.", "parentRuleCode": "1T3.34", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.34.3", "ruleContent": "Mounting plates welded to the Roll Hoop must be at least 2.0 mm thick steel.", "parentRuleCode": "1T3.34", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.34.4", "ruleContent": "Attachment of the Main Hoop to the monocoque must comply with T3.39.", "parentRuleCode": "1T3.34", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.35", "ruleContent": "Monocoque Front Hoop", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.35.1", "ruleContent": "Composite materials are not allowed for the front hoop. See Rule T3.27 for general requirements that apply to all aspects of the monocoque.", "parentRuleCode": "1T3.35", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.35.2", "ruleContent": "Attachment of the Front Hoop to the monocoque must comply with Rule T3.39.", "parentRuleCode": "1T3.35", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.36", "ruleContent": "Monocoque Front and Main Hoop Bracing", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.36.1", "ruleContent": "See Rule T3.27 for general requirements that apply to all aspects of the monocoque.", "parentRuleCode": "1T3.36", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.36.2", "ruleContent": "Attachment of tubular Front or Main Hoop Bracing to the monocoque must comply with Rule T3.39.", "parentRuleCode": "1T3.36", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.37", "ruleContent": "Monocoque Impact Attenuator and Anti-Intrusion Plate Attachment The attachment of the Impact Attenuator and Anti-Intrusion Plate to a monocoque structure requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8 that shows the equivalency to a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16 inch SAE Grade 5) bolts for the Anti-Intrusion Plate attachment and a minimum of four (4) bolts to the same minimum specification for the Impact Attenuator attachment.", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.38", "ruleContent": "Monocoque Impact Attenuator Anti-Intrusion Plate", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.38.1", - "ruleContent": "See Rule T3.27 for general requirements that apply to all aspects of the monocoque and Rule T3.20.3 for alternate Anti-Intrusion Plate designs. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "See Rule T3.27 for general requirements that apply to all aspects of the monocoque and Rule T3.20.3 for alternate Anti-Intrusion Plate designs.", "parentRuleCode": "1T3.38", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.39", "ruleContent": "Monocoque Attachments", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.39.1", "ruleContent": "In any direction, each attachment point between the monocoque and the other primary structure must be able to carry a load of 30 kN.", "parentRuleCode": "1T3.39", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.39.2", - "ruleContent": "The laminate, mounting plates, backing plates and inserts must have sufficient shear area, weld area and strength to carry the specified 30 kN load in any direction. Data obtained from the laminate perimeter shear strength test (T3.33.3) should be used to prove adequate shear area is provided", + "ruleContent": "The laminate, mounting plates, backing plates and inserts must have sufficient shear area, weld area and strength to carry the specified 30 kN load in any direction. Data obtained from the laminate perimeter shear strength test (T3.33.3) should be used to prove adequate shear area is provided", "parentRuleCode": "1T3.39", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.39.3", "ruleContent": "Each attachment point requires a minimum of two (2) 8 mm Metric Grade 8.8 or 5/16 inch SAE Grade 5 bolts", "parentRuleCode": "1T3.39", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.39.4", "ruleContent": "Each attachment point requires steel backing plates with a minimum thickness of 2.0 mm. Alternate materials may be used for backing plates if equivalency is approved.", "parentRuleCode": "1T3.39", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.39.5", "ruleContent": "The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports only may use one (1) 10 mm Metric Grade 8.8 or 3/8 inch SAE Grade 5 bolt as an alternative to T3.39.3 if the bolt is on the centerline of tube similar to the figure below. Figure 13 – Alternate Single Bolt Attachment", "parentRuleCode": "1T3.39", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.39.6", "ruleContent": "No crushing of the core is permitted", "parentRuleCode": "1T3.39", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.39.7", "ruleContent": "Main Hoop bracing attached to a monocoque (i.e. not welded to a rear space frame) is always considered “mechanically attached” and must comply with Rule T3.16.", "parentRuleCode": "1T3.39", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.40", "ruleContent": "Monocoque Driver’s Harness Attachment Points", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.40.1", "ruleContent": "The monocoque attachment points for the shoulder and lap belts must support a load of 13 kN before failure.", "parentRuleCode": "1T3.40", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.40.2", "ruleContent": "The monocoque attachment points for the ant-submarine belts must support a load of 6.5 kN before failure.", "parentRuleCode": "1T3.40", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.40.3", "ruleContent": "If the lap belts and anti-submarine belts are attached to the same attachment point, then this point must support a load of 19.5 kN before failure.", "parentRuleCode": "1T3.40", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.40.4", - "ruleContent": "The strength of lap belt attachment and shoulder belt attachment must be proven by physical test where the required load is applied to a representative attachment point where the proposed layup and attachment bracket is used. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The strength of lap belt attachment and shoulder belt attachment must be proven by physical test where the required load is applied to a representative attachment point where the proposed layup and attachment bracket is used.", "parentRuleCode": "1T3.40", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T4", "ruleContent": "COCKPIT", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.1", - "ruleContent": "Cockpit Opening Important Note: Teams are advised that cockpit template and Percy (Figure 5) compliance will be strictly enforced during mechanical technical inspection. Check the Formula Hybrid + Electric website for an instructional video on template and Percy inspection procedures.", + "ruleContent": "Cockpit Opening Important Note: Teams are advised that cockpit template and Percy (Figure 5) compliance will be strictly enforced during mechanical technical inspection. Check the Formula Hybrid + Electric website for an instructional video on template and Percy inspection procedures.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.1.1", "ruleContent": "In order to ensure that the opening giving access to the cockpit is of adequate size, a template shown in Figure 14 will be inserted downwards into the cockpit opening. It will be held horizontally and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it has passed below the top bar of the Side Impact Structure (or until it is 350 mm (13.8 inches) above the ground for monocoque cars). Fore and aft translation of the template (while maintaining its position parallel to the ground) will be permitted during insertion. Figure 14 – Cockpit Opening Template", "parentRuleCode": "1T4.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.1.2", - "ruleContent": "During this test, the steering wheel, steering column, seat and all padding may be removed. The shifter or shift mechanism may not be removed unless it is integral with the steering wheel and is removed with the steering wheel. The firewall may not be moved or removed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: As a practical matter, for the checks, the steering column will not be removed. The technical inspectors will maneuver the template around the steering column shaft, but not the steering column supports.", + "ruleContent": "During this test, the steering wheel, steering column, seat and all padding may be removed. The shifter or shift mechanism may not be removed unless it is integral with the steering wheel and is removed with the steering wheel. The firewall may not be moved or removed.", "parentRuleCode": "1T4.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.2", "ruleContent": "Cockpit Internal Cross Section:", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.2.1", "ruleContent": "A free vertical cross section, which allows the template shown in Figure 15 to be passed horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost pedal when in the inoperative position, must be maintained over its entire length. If the pedals are adjustable, they will be put in their most forward position. Figure 15 – Cockpit Internal Cross Section Template", "parentRuleCode": "1T4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.2.2", - "ruleContent": "The template, with maximum thickness of 7 mm, will be held vertically and inserted into the cockpit opening rearward of the rear-most portion of the steering column. Note: At the discretion of the technical inspectors, the internal cross-section template may be moved vertically by small increments during fore and aft travel to clear height deviations in the floor of the vehicle (e.g. those caused by the steering rack, etc.). The template must still fit through the cross-section at the location of vertical deviation. A video demonstrating the template procedure can be found on YouTube: https://youtu.be/azz5kbmiQbw", + "ruleContent": "The template, with maximum thickness of 7 mm, will be held vertically and inserted into the cockpit opening rearward of the rear-most portion of the steering column. Note: At the discretion of the technical inspectors, the internal cross-section template may be moved vertically by small increments during fore and aft travel to clear height deviations in the floor of the vehicle (e.g. those caused by the steering rack, etc.). The template must still fit through the cross-section at the location of vertical deviation. A video demonstrating the template procedure can be found on YouTube: https://youtu.be/azz5kbmiQbw", "parentRuleCode": "1T4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.2.3", - "ruleContent": "The only items that may be removed for this test are the steering wheel, and any padding required by Rule T5.8 “Driver’s Leg Protection” that can be easily removed without the use 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 of tools with the driver in the seat. The seat and any seat insert that may be used by any team member must remain in the cockpit.", + "ruleContent": "The only items that may be removed for this test are the steering wheel, and any padding required by Rule T5.8 “Driver’s Leg Protection” that can be easily removed without the use", "parentRuleCode": "1T4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.2.4", "ruleContent": "Teams whose cars do not comply with T4.1 or T4.2 will not be given a Technical Inspection Sticker and will not be allowed to compete in the dynamic events. Note: Cables, wires, hoses, tubes, etc. must not impede the passage of the templates required by T4.1 and T4.2.", "parentRuleCode": "1T4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.3", "ruleContent": "Driver’s Seat", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.3.1", "ruleContent": "In side view the lowest point of the driver’s seat must be no lower than the top surface of the lower frame rails or by having a longitudinal tube (or tubes) that meets the requirements for Side Impact tubing, passing underneath the lowest point of the seat.", "parentRuleCode": "1T4.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.3.2", "ruleContent": "When seated in the normal driving position, adequate heat insulation must be provided to ensure that the driver will not contact any metal or other materials which may become heated to a surface temperature above sixty degrees C (60°C). The insulation may be external to the cockpit or incorporated with the driver’s seat or firewall. The design must show evidence of addressing all three (3) types of heat transfer, namely conduction, convection and radiation, with the following between the heat source, e.g. an exhaust pipe or coolant hose/tube and the panel that the driver could contact, e.g. the seat or floor: (a) Conduction Isolation by: (i) No direct contact between the heat source and the panel, or (ii) a heat resistant, conduction isolation material with a minimum thickness of 8 mm between the heat source and the panel. (b) Convection Isolation by a minimum air gap of 25 mm between the heat source and the panel. (c) Radiation Isolation by: (i) A solid metal heat shield with a minimum thickness of 0.4 mm or (ii) reflective foil or tape when combined with T4.3.2(a)(ii) above.", "parentRuleCode": "1T4.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.4", "ruleContent": "Floor Close-out All vehicles must have a floor closeout made of one or more panels, which separate the driver from the pavement. If multiple panels are used, gaps between panels are not to exceed 3 mm. The closeout must extend from the foot area to the firewall and prevent track debris from entering the car. The panels must be made of a solid, non-brittle material.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5", "ruleContent": "Firewall", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.1", - "ruleContent": "Firewall(s) must separate the driver compartment from the following components: (a) Fuel Tanks. (b) Accumulators. (c) All components of the fuel supply. (d) External engine oil systems including hoses, oil coolers, tanks, etc. (e) Liquid cooling systems including those for I.C. engine and electrical components. (f) Lithium-based GLV batteries. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (g) All tractive systems (TS) components (h) All conductors carrying tractive system voltages (TSV) (Whether contained within conduit or not.)", + "ruleContent": "Firewall(s) must separate the driver compartment from the following components: (a) Fuel Tanks. (b) Accumulators. (c) All components of the fuel supply. (d) External engine oil systems including hoses, oil coolers, tanks, etc. (e) Liquid cooling systems including those for I.C. engine and electrical components. (f) Lithium-based GLV batteries.", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.2", - "ruleContent": "The firewall(s) must be a rigid, non-permeable surface made from 1.5 mm or thicker aluminum or proven equivalent. See Appendix H – Firewall Equivalency Test.", + "ruleContent": "The firewall(s) must be a rigid, non-permeable surface made from 1.5 mm or thicker aluminum or proven equivalent. See Appendix H – Firewall Equivalency Test.", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.3", "ruleContent": "The firewall(s) must seal completely against the passage of fluids and hot gasses, including at the sides and the floor of the cockpit, e.g. there can be no holes in a firewall through which seat belts pass.", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.4", "ruleContent": "Pass-throughs for GLV wiring, cables, etc. are allowable if grommets are used to seal the pass- throughs. Multiple panels may be used to form the firewall but must be mechanically fastened in place and sealed at the joints.", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.5", "ruleContent": "For those components listed in T4.5.1 that are mounted behind the driver, the firewall(s) must extend sufficiently far upwards and/or rearwards such that a straight line from any part of any listed component to any part of the tallest driver that is more than 150 mm below the top of his/her helmet, must pass through the firewall.", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.6", "ruleContent": "For those components listed in section T4.5.1 positioned under the driver, the firewall must extend: (a) Continuously rearwards the full width of the cockpit from the Front Bulkhead, under and up behind the driver to a point where the helmet of the 95th percentile male template (T3.9.4) touches the head restraint, and (b) Alongside the driver, from the top of the Side Impact Structure down to the lower portion of the firewall required by T4.5.6(a) and from the rearmost front suspension mounting point to connect (without holes or gaps) behind the driver with the firewall required by T4.5.6(a). See Figure 16(a).", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.7", "ruleContent": "For those components listed in section T4.5.1 that are mounted outboard of the Side Impact System (e.g. in side pods), the firewall(s) must extend from 100 mm forward to 100 mm rearward of the of the listed components and (a) alongside the driver at the full height of the listed component, and (b) cover the top of the listed components and (c) run either (i) under the cockpit between the firewall(s) required by T4.5.7(a), or (ii) extend 100 mm out under the listed components from the firewall(s) that are required by T4.5.8 See Figure 16(b&c).", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.8", "ruleContent": "For the components listed in section T4.5.1 that are mounted in ways that do not fall clearly under any of sections T4.5.5, T4.5.6 or T4.5.7, the firewall must be configured to provide equivalent protection to the driver, and the firewall configuration must be approved by the Rules Committee.", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5.9", - "ruleContent": "Containers that meet the firewall requirements of T4.5.2, including accumulator containers, may be accepted as part of the firewall system; redundant barriers are not required. Tractive 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 System wiring and conduit must not be exposed to the driver while seated in or during egress from the vehicle. Note: To ensure adequate time for consideration and possible re-designs, applications should be submitted at least 1 month in advance of the event. Figure 16 – Examples 4 of firewall configurations", + "ruleContent": "Containers that meet the firewall requirements of T4.5.2, including accumulator containers, may be accepted as part of the firewall system; redundant barriers are not required. Tractive", "parentRuleCode": "1T4.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.6", "ruleContent": "Accessibility of Controls All vehicle controls, including the shifter, must be operated from inside the cockpit without any part of the driver, e.g. hands, arms or elbows, being outside the planes of the Side Impact Structure defined in Rule T3.24 and T3.33.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.7", "ruleContent": "Driver Visibility", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.7.1", - "ruleContent": "The driver must have adequate visibility to the front and sides of the car. With the driver seated in a normal driving position he/she must have a minimum field of vision of two hundred degrees (200°) (a minimum one hundred degrees (100°) to either side of the driver). The required visibility may be obtained by the driver turning his/her head and/or the use of mirrors. 4 The firewalls shown in red in Figure 16 are examples only and are not meant to imply that a firewall must lie outside the frame rails. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The driver must have adequate visibility to the front and sides of the car. With the driver seated in a normal driving position he/she must have a minimum field of vision of two hundred degrees (200°) (a minimum one hundred degrees (100°) to either side of the driver). The required visibility may be obtained by the driver turning his/her head and/or the use of mirrors. 4 The firewalls shown in red in Figure 16 are examples only and are not meant to imply that a firewall must lie outside the frame rails.", "parentRuleCode": "1T4.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.7.2", "ruleContent": "If mirrors are required to meet Rule T4.7.1, they must remain in place and adjusted to enable the required visibility throughout all dynamic events.", "parentRuleCode": "1T4.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.8", "ruleContent": "Driver Egress All drivers must be able to exit to the side of the vehicle in no more than 5 seconds. Egress time begins with the driver in the fully seated position, hands in driving position on the connected steering wheel and wearing the required driver equipment. Egress time will stop when the driver has both feet on the pavement.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.9", "ruleContent": "Emergency Shut Down Test", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.9.1", "ruleContent": "With their vision obscured, all drivers must be able to operate the cockpit Big Red Button (BRB) in less than one second. Time begins with the driver in the fully seated position, hands in driving position on the connected steering wheel, and wearing the required driver equipment.", "parentRuleCode": "1T4.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T5", "ruleContent": "DRIVER’S EQUIPMENT (BELTS AND COCKPIT PADDING)", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1", "ruleContent": "Belts - General", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1.1", "ruleContent": "Definitions (Note: Belt dimensions listed are nominal widths.) (a) 5-point system – consists of a lap belt, two (2) shoulder straps and a single anti-submarine strap. (b) 6-point system – consists of a lap belt, two (2) shoulder straps and two (2) leg or anti- submarine straps. (c) 7-point system – system is the same as the 6-point except it has three (3) anti-submarine straps, two (2) from the 6-point system and one (1) from the 5-point system. (d) Upright driving position - is defined as one with a seat back angled at thirty degrees (30°) or less from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in Table 6 and positioned per T3.9.4. (e) Reclined driving position - is defined as one with a seat back angled at more than thirty degrees (30°) from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in Table 6 and positioned per T3.9.4. (f) Chest-groin line - is the straight line that in side view follows the line of the shoulder belts from the chest to the release buckle.", "parentRuleCode": "1T5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1.2", - "ruleContent": "Harness Requirements All drivers must use a 5, 6 or 7 point restraint harness meeting the following specifications: (a) SFI Specification 16.1, SFI Specification 16.5, SFI Specification 16.6, or FIA specification 8853/98 or FIA specification 8853-2016. Note: FIA harnesses with 44 mm (“2 inch”) shoulder straps meeting T5.1.2 and T5.1.3 are approved for use at FH+E (b) To accommodate drivers of differing builds, all lap belts must incorporate a tilt lock adjuster (“quick adjuster”). 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Lap belts with “pull-up” adjusters are recommended over “pull-down” adjusters and a tilt lock adjuster in each portion of the lap belt is highly recommended. (c) Cars with a “reclined driving position” (see T5.1.1(e) above) must have either a 6 point or 7-point harness, AND have either anti-submarine belts with tilt lock adjusters (“quick adjusters”) or have two (2) sets of anti-submarine belts installed. (d) The shoulder harness must be the over-the-shoulder type. Only separate shoulder straps are permitted (i.e. “Y”-type shoulder straps are not allowed). The “H”-type configuration is allowed. (e) The belts must bear the appropriate dated labels. (f) The material of all straps must be in perfect condition.", + "ruleContent": "Harness Requirements All drivers must use a 5, 6 or 7 point restraint harness meeting the following specifications: (a) SFI Specification 16.1, SFI Specification 16.5, SFI Specification 16.6, or FIA specification 8853/98 or FIA specification 8853-2016. Note: FIA harnesses with 44 mm (“2 inch”) shoulder straps meeting T5.1.2 and T5.1.3 are approved for use at FH+E (b) To accommodate drivers of differing builds, all lap belts must incorporate a tilt lock adjuster (“quick adjuster”).", "parentRuleCode": "1T5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1.3", "ruleContent": "Harness Replacement - Harnesses must be replaced following December 31 st of the year of the expiration date shown on the label. (Note: SFI belts are normally certified for two (2) years from the date of manufacture while FIA belts are normally certified for five (5) years from the date of manufacture.)", "parentRuleCode": "1T5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1.4", "ruleContent": "The restraint system must be worn tightly at all times.", "parentRuleCode": "1T5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.2", "ruleContent": "Belt, Strap and Harness Installation - General", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.2.1", "ruleContent": "The lap belt, shoulder harness and anti-submarine strap(s) must be securely mounted to the Primary Structure. Such structure and any guide or support for the belts must meet the minimum requirements of T3.3.1. Note: Rule T3.4.5 applies to these tubes as well so a non-straight shoulder harness bar would require support per T3.4.5", "parentRuleCode": "1T5.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.2.2", "ruleContent": "The tab or bracket to which any harness is attached must fulfill the following requirements: (a) Have a minimum cross sectional area of 60 sq. mm (0.093 sq. in) of steel to be sheared or failed in tension at any point of the tab, and (b) Have a minimum thickness of 1.6 mm (0.063 inch). (c) Where lap belts and anti-submarine belts use the same attachment point, there must be a minimum cross sectional area of 90 sq. mm (0.140 sq. in) of steel to be sheared or failed in tension at any point of the tab. (d) Where brackets are fastened to the chassis, two 6mm Metric Grade 8.8 (1/4 inch SAE Grade 5) fasteners or stronger must be used to attach the bracket to the chassis. (e) Where a single shear tab is welded to the chassis, the tab to tube welding must be on both sides of the base of the tab. (f) The bracket or tab should be aligned such that it is not put in bending when that portion of the harness is put under load. NOTE: Double shear attachments are preferred. Where possible, the tabs and brackets for double shear mounts should also be welded on both sides.", "parentRuleCode": "1T5.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.2.3", - "ruleContent": "Harnesses, belts and straps must not pass through a firewall, i.e. all harness attachment points must be on the driver’s side of any firewall.", + "ruleContent": "Harnesses, belts and straps must not pass through a firewall, i.e. all harness attachment points must be on the driver’s side of any firewall.", "parentRuleCode": "1T5.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.2.4", - "ruleContent": "The attachment of the Driver’s Restraint System to a monocoque structure requires an approved Structural Equivalency Spreadsheet per Rule T3.8. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The attachment of the Driver’s Restraint System to a monocoque structure requires an approved Structural Equivalency Spreadsheet per Rule T3.8.", "parentRuleCode": "1T5.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.2.5", "ruleContent": "All adjusters must be threaded in accordance with manufacturer’s instructions. Examples are given in Figure 17. Figure 17 - Seat Belt Threading Examples", "parentRuleCode": "1T5.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.2.6", "ruleContent": "The restraint system installation is subject to approval of the Chief Technical Inspector.", "parentRuleCode": "1T5.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3", "ruleContent": "Lap Belt Mounting", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3.1", "ruleContent": "The lap belt must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip bones).", "parentRuleCode": "1T5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3.2", "ruleContent": "The lap belts must not be routed over the sides of the seat. The lap belts must come through the seat at the bottom of the sides of the seat to maximize the wrap of the pelvic surface and continue in a straight line to the anchorage point.", "parentRuleCode": "1T5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3.3", "ruleContent": "Where the belts or harness pass through a hole in the seat, the seat must be rolled or grommeted to prevent chafing of the belts.", "parentRuleCode": "1T5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3.4", "ruleContent": "To fit drivers of differing statures correctly, in side view, the lap belt must be capable of pivoting freely by using either a shouldered bolt or an eye bolt attachment, i.e. mounting lap belts by wrapping them around frame tubes is no longer acceptable.", "parentRuleCode": "1T5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3.5", - "ruleContent": "With an “upright driving position”, in side view the lap belt must be at an angle of between forty-five degrees (45°) and sixty-five degrees (65°) to the horizontal. This means that the centerline of the lap belt at the seat bottom should be between 0 – 76 mm forward of the seat back to seat bottom junction. (See Figure 18) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 18 – Lap Belt Angles with Upright Driver", + "ruleContent": "With an “upright driving position”, in side view the lap belt must be at an angle of between forty-five degrees (45°) and sixty-five degrees (65°) to the horizontal. This means that the centerline of the lap belt at the seat bottom should be between 0 – 76 mm forward of the seat back to seat bottom junction. (See Figure 18)", "parentRuleCode": "1T5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3.6", "ruleContent": "With a “reclined driving position”, in side view the lap belt must be between an angle of sixty degrees (60°) and eighty degrees (80°) to the horizontal.", "parentRuleCode": "1T5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3.7", "ruleContent": "Any bolt used to attach a lap belt, either directly to the chassis or to an intermediate bracket, must be a minimum of either: (a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR (b) The bolt diameter specified by the harness manufacturer.", "parentRuleCode": "1T5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.4", "ruleContent": "Shoulder Harness", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.4.1", "ruleContent": "The shoulder harness must be mounted behind the driver to structure that meets the requirements of T3.3.1. However, it cannot be mounted to the Main Roll Hoop Bracing or attendant structure without additional bracing to prevent loads being transferred into the Main Hoop Bracing.", "parentRuleCode": "1T5.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.4.2", "ruleContent": "If the harness is mounted to a tube that is not straight, the joints between this tube and the structure to which it is mounted must be reinforced in side view by gussets or triangulation tubes to prevent torsional rotation of the harness mounting tube.", "parentRuleCode": "1T5.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.4.3", - "ruleContent": "The shoulder harness mounting points must be between 178 mm and 229 mm apart. (See Figure 19) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 19 – Shoulder Harness Mounting – Top View", + "ruleContent": "The shoulder harness mounting points must be between 178 mm and 229 mm apart. (See Figure 19)", "parentRuleCode": "1T5.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.4.4", "ruleContent": "From the driver’s shoulders rearwards to the mounting point or structural guide, the shoulder harness must be between ten degrees (10°) above the horizontal and twenty degrees (20°) below the horizontal. (See Figure 20). Figure 20 - Shoulder Harness Mounting – Side View", "parentRuleCode": "1T5.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.4.5", "ruleContent": "Any bolt used to attach a shoulder harness belt, either directly to the chassis or to an intermediate bracket, must be must be a minimum of either: (a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR (b) The bolt diameter specified by the harness manufacturer.", "parentRuleCode": "1T5.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.5", "ruleContent": "Anti-Submarine Belt Mounting", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.5.1", - "ruleContent": "The anti-submarine belt of a 5-point harness must be mounted so that the mounting point is in line with, or angled slightly forward (up to twenty degrees (20°)) of, the driver’s chest-groin line. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The anti-submarine belt of a 5-point harness must be mounted so that the mounting point is in line with, or angled slightly forward (up to twenty degrees (20°)) of, the driver’s chest-groin line.", "parentRuleCode": "1T5.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.5.2", "ruleContent": "The anti-submarine belts of a 6 point harness must be mounted either: (a) With the belts going vertically down from the groin, or angled up to twenty degrees (20°) rearwards. The anchorage points should be approximately 100 mm apart. Or (b) With the anchorage points on the Primary Structure at or near the lap belt anchorages, the driver sitting on the anti-submarine belts, and the belts coming up around the groin to the release buckle.", "parentRuleCode": "1T5.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.5.3", - "ruleContent": "All anti-submarine belts must be installed so that they go in a straight line from the anchorage point(s) to: ● Either the harness release buckle for the 5-point mounting per T5.5.1, 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 ● Or the first point where the belts touch the driver’s body for the 6-point mounting per T5.5.2(a) or T5.5.2(b). without touching any hole in the seat or any other intermediate structure.", + "ruleContent": "All anti-submarine belts must be installed so that they go in a straight line from the anchorage point(s) to: ● Either the harness release buckle for the 5-point mounting per T5.5.1,", "parentRuleCode": "1T5.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.5.4", "ruleContent": "Any bolt used to attach an anti-submarine belt, either directly to the chassis or to an intermediate bracket, must be a must be a minimum of either: (a) 8mm Metric Grade 8.8 (5/16 inch SAE Grade 5) OR (b) The bolt diameter specified by the belt manufacturer.", "parentRuleCode": "1T5.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.6", "ruleContent": "Head Restraint", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.6.1", "ruleContent": "A head restraint must be provided on the car to limit the rearward motion of the driver’s head.", "parentRuleCode": "1T5.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.6.2", "ruleContent": "The restraint must: (a) Be vertical or near vertical in side view. (b) Be padded with a minimum thickness of 38 mm (1.5 inches) of an energy absorbing material that meets either SFI Standard 45.2, or is listed on the FIA Technical List No. 17 as a “Type A or a Type B Material for single seater cars”, i.e. CONFOR™ foam CF- 42AC (pink) or CF-42M (pink) or CF45 (blue) or CF45M (blue) . (c) Have a minimum width of 15 cm (6 inches). (d) Have a minimum area of 235 sq. cms (36 sq. inches) AND have a minimum height adjustment of 17.5 cm (7 inches), OR have a minimum height of 28 cm (11 inches). (e) Be covered in a thin, flexible cover with a hole with a minimum dimeter of 20 mm in a surface other than the front surface, through which the energy absorbing material can be seen. (f) Be located so that for each driver: (i) The restraint is no more than 25 mm (1 inch) away from the back of the driver’s helmet, with the driver in their normal driving position. (ii) The contact point of the back of the driver’s helmet on the head restraint is no less than 50 mm (2 inches) from any edge of the head restraint. Note 1: Head restraints may be changed to accommodate different drivers (See T1.2.2(d)). Note 2: The above requirements must be met for all drivers. Note 3: Approximately 100 mm (4 inches) longitudinal adjustment is required to accommodate 5th to 95th Percentile drivers. This is not a specific rules requirement, but teams must have sufficient longitudinal adjustment and/or alternative thickness head restraints available, such that the above requirements are met by all their drivers.", "parentRuleCode": "1T5.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.6.3", - "ruleContent": "The restraint, its attachment and mounting must be strong enough to withstand a force of 890 Newtons applied in a rearward direction. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The restraint, its attachment and mounting must be strong enough to withstand a force of 890 Newtons applied in a rearward direction.", "parentRuleCode": "1T5.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.7", "ruleContent": "Roll Bar Padding Any portion of the roll bar, roll bar bracing or frame which might be contacted by the driver’s helmet must be covered with a minimum thickness of 12 mm (0.5 inches) of padding which meets SFI spec 45.1 or FIA 8857-2001.", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.8", "ruleContent": "Driver’s Leg Protection", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.8.1", "ruleContent": "To keep the driver’s legs away from moving or sharp components, all moving suspension and steering components, and other sharp edges inside the cockpit between the front roll hoop and a vertical plane 100 mm rearward of the pedals, must be shielded with a shield made of a solid material. Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti-roll/sway bars, steering racks and steering column CV joints.", "parentRuleCode": "1T5.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.8.2", "ruleContent": "Covers over suspension and steering components must be removable to allow inspection of the mounting points.", "parentRuleCode": "1T5.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T6", "ruleContent": "GENERAL CHASSIS RULES", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.1", "ruleContent": "Suspension", "parentRuleCode": "1T6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.1.1", "ruleContent": "The car must be equipped with a fully operational suspension system with shock absorbers, front and rear, with usable wheel travel of at least 50.8 mm, 25.4 mm jounce and 25.4 mm rebound, with driver seated. The judges reserve the right to disqualify cars which do not represent a serious attempt at an operational suspension system or which demonstrate handling inappropriate for an autocross circuit.", "parentRuleCode": "1T6.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.1.2", "ruleContent": "All suspension mounting points must be visible at Technical Inspection, either by direct view or by removing any covers.", "parentRuleCode": "1T6.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.2", "ruleContent": "Ground Clearance The ground clearance must be sufficient to prevent any portion of the car (other than tires) from touching the ground during track events, and with the driver aboard there must be a minimum of 25.4 mm of static ground clearance under the complete car at all times.", "parentRuleCode": "1T6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.3", "ruleContent": "Wheels", "parentRuleCode": "1T6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.3.1", "ruleContent": "The wheels of the car must be 8 inches (203.2 mm) or more in diameter.", "parentRuleCode": "1T6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.3.2", - "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel in the event that the nut loosens. A second nut (“jam nut”) does not meet these requirements.", + "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel in the event that the nut loosens. A second nut (“jam nut”) does not meet these requirements.", "parentRuleCode": "1T6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.3.3", - "ruleContent": "Standard wheel lug bolts are considered engineering fasteners and any modification will be subject to extra scrutiny during technical inspection. Teams using modified lug bolts or custom designs will be required to provide proof that good engineering practices have been followed in their design.", + "ruleContent": "Standard wheel lug bolts are considered engineering fasteners and any modification will be subject to extra scrutiny during technical inspection. Teams using modified lug bolts or custom designs will be required to provide proof that good engineering practices have been followed in their design.", "parentRuleCode": "1T6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.3.4", "ruleContent": "Aluminum wheel nuts may be used, but they must be hard anodized and in pristine condition.", "parentRuleCode": "1T6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.4", "ruleContent": "Tires", "parentRuleCode": "1T6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.4.1", - "ruleContent": "Vehicles may have two types of tires as follows: (a) Dry Tires – The tires on the vehicle when it is presented for technical inspection are defined as its “Dry Tires”. The dry tires may be any size or type. They may be slicks or treaded. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (b) Rain Tires – Rain tires may be any size or type of treaded or grooved tire provided: (i) The tread pattern or grooves were molded in by the tire manufacturer, or were cut by the tire manufacturer or his appointed agent. Any grooves that have been cut must have documentary proof that it was done in accordance with these rules. (ii) There is a minimum tread depth of 2.4 mm. Note: Hand cutting, grooving or modification of the tires by the teams is specifically prohibited.", + "ruleContent": "Vehicles may have two types of tires as follows: (a) Dry Tires – The tires on the vehicle when it is presented for technical inspection are defined as its “Dry Tires”. The dry tires may be any size or type. They may be slicks or treaded.", "parentRuleCode": "1T6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.4.2", "ruleContent": "Within each tire set, the tire compound or size, or wheel type or size may not be changed after static judging has begun. Tire warmers are not allowed. No traction enhancers may be applied to the tires after the static judging has begun.", "parentRuleCode": "1T6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5", "ruleContent": "Steering", "parentRuleCode": "1T6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.1", "ruleContent": "The steering wheel must be mechanically connected to the wheels, i.e. “steer-by-wire” or electrically actuated steering is prohibited.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.2", "ruleContent": "The steering system must have positive steering stops that prevent the steering linkages from locking up (the inversion of a four-bar linkage at one of the pivots). The stops may be placed on the uprights or on the rack and must prevent the tires from contacting suspension, body, or frame members during the track events.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.3", "ruleContent": "Allowable steering system free play is limited to seven degrees (7°) total measured at the steering wheel.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.4", "ruleContent": "The steering wheel must be attached to the column with a quick disconnect. The driver must be able to operate the quick disconnect while in the normal driving position with gloves on.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.5", "ruleContent": "Rear wheel steering, which can be electrically actuated, is permitted but only if mechanical stops limit the range of angular movement of the rear wheels to a maximum of six degrees (6°). This must be demonstrated with a driver in the car and the team must provide the facility for the steering angle range to be verified at Technical Inspection.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.6", "ruleContent": "The steering wheel must have a continuous perimeter that is near circular or near oval, i.e. the outer perimeter profile can have some straight sections, but no concave sections. “H”, “Figure 8”, or cutout wheels are not allowed.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.7", "ruleContent": "In any angular position, the top of the steering wheel must be no higher than the top-most surface of the Front Hoop. See Figure 7.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.8", - "ruleContent": "Steering systems using cables for actuation are not prohibited by T6.5.1 but additional documentation must be submitted. The team must submit a failure modes and effects analysis report with design details of the proposed system as part of the structural equivalency spreadsheet (SES). The report must outline the analysis that was done to show the steering system will function properly, potential failure modes and the effects of each failure mode and finally failure mitigation strategies used by the team. The organizing committee will review the submission and advise the team if the design is approved. If not approved, a non-cable based steering system must be used instead.", + "ruleContent": "Steering systems using cables for actuation are not prohibited by T6.5.1 but additional documentation must be submitted. The team must submit a failure modes and effects analysis report with design details of the proposed system as part of the structural equivalency spreadsheet (SES). The report must outline the analysis that was done to show the steering system will function properly, potential failure modes and the effects of each failure mode and finally failure mitigation strategies used by the team. The organizing committee will review the submission and advise the team if the design is approved. If not approved, a non-cable based steering system must be used instead.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.9", - "ruleContent": "The steering rack must be mechanically attached to the frame. If fasteners are used they must be compliant with ARTICLE T11. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The steering rack must be mechanically attached to the frame. If fasteners are used they must be compliant with ARTICLE T11.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.5.10", "ruleContent": "Joints between all components attaching the steering wheel to the steering rack must be mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup are not permitted.", "parentRuleCode": "1T6.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.6", "ruleContent": "Jacking Point", "parentRuleCode": "1T6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.6.1", "ruleContent": "A jacking point, which is capable of supporting the car’s weight and of engaging the organizers’ “quick jacks”, must be provided at the rear of the car.", "parentRuleCode": "1T6.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.6.2", - "ruleContent": "The jacking point is required to be: (a) Visible to a person standing 1 meter behind the car. (b) Painted orange. (c) Oriented horizontally and perpendicular to the centerline of the car (d) Made from round, 25–29 mm O.D. aluminum or steel tube (e) A minimum of 300 mm long (f) Exposed around the lower 180 degrees (180°) of its circumference over a minimum length of 280 mm (g) The height of the tube is required to be such that: (i) There is a minimum of 75 mm clearance from the bottom of the tube to the ground measured at tech inspection. (ii) With the bottom of the tube 200 mm above ground, the wheels do not touch the ground when they are in full rebound. Comment on Disabled Cars – The organizers and the Rules Committee remind teams that cars disabled on course must be removed as quickly as possible. A variety of tools may be used to move disabled cars including quick jacks, dollies of different types, tow ropes and occasionally even boards. We expect cars to be strong enough to be easily moved without damage. Speed is important in clearing the course and although the course crew exercises due care, parts of a vehicle can be damaged during removal. The organizers are not responsible for damage that occurs when moving disabled vehicles. Removal/recovery workers will jack, lift, carry or tow the car at whatever points they find easiest to access. Accordingly, we advise teams to consider the strength and location of all obvious jacking, lifting and towing points during the design process.", + "ruleContent": "The jacking point is required to be: (a) Visible to a person standing 1 meter behind the car. (b) Painted orange. (c) Oriented horizontally and perpendicular to the centerline of the car (d) Made from round, 25–29 mm O.D. aluminum or steel tube (e) A minimum of 300 mm long (f) Exposed around the lower 180 degrees (180°) of its circumference over a minimum length of 280 mm (g) The height of the tube is required to be such that: (i) There is a minimum of 75 mm clearance from the bottom of the tube to the ground measured at tech inspection. (ii) With the bottom of the tube 200 mm above ground, the wheels do not touch the ground when they are in full rebound. Comment on Disabled Cars – The organizers and the Rules Committee remind teams that cars disabled on course must be removed as quickly as possible. A variety of tools may be used to move disabled cars including quick jacks, dollies of different types, tow ropes and occasionally even boards. We expect cars to be strong enough to be easily moved without damage. Speed is important in clearing the course and although the course crew exercises due care, parts of a vehicle can be damaged during removal. The organizers are not responsible for damage that occurs when moving disabled vehicles. Removal/recovery workers will jack, lift, carry or tow the car at whatever points they find easiest to access. Accordingly, we advise teams to consider the strength and location of all obvious jacking, lifting and towing points during the design process.", "parentRuleCode": "1T6.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.7", "ruleContent": "Rollover Stability", "parentRuleCode": "1T6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.7.1", "ruleContent": "The track and center of gravity of the car must combine to provide adequate rollover stability.", "parentRuleCode": "1T6.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.7.2", "ruleContent": "Rollover stability will be evaluated on a tilt table using a pass/fail test. The vehicle must not roll when tilted at an angle of sixty degrees (60°) to the horizontal in either direction, corresponding to 1.7 G’s. The tilt test will be conducted with the tallest driver in the normal driving position.", "parentRuleCode": "1T6.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T7", "ruleContent": "BRAKE SYSTEM", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1", "ruleContent": "Brake System - General", "parentRuleCode": "1T7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.1", - "ruleContent": "The car must be equipped with a braking system that acts on all four wheels and is operated by a single control. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The car must be equipped with a braking system that acts on all four wheels and is operated by a single control.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.2", "ruleContent": "It must have two (2) independent hydraulic circuits such that in the case of a leak or failure at any point in the system, effective braking power is maintained on at least two (2) wheels. Each hydraulic circuit must have its own fluid reserve, either by the use of separate reservoirs or by the use of a dammed, OEM-style reservoir.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.3", "ruleContent": "A single brake acting on a limited-slip differential is acceptable.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.4", "ruleContent": "The brake system must be capable of locking all four (4) wheels during the test specified in section T7.2.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.5", "ruleContent": "“Brake-by-wire” systems are prohibited.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.6", "ruleContent": "Unarmored plastic brake lines are prohibited.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.7", "ruleContent": "The braking systems must be protected with scatter shields from failure of the drive train (see T8.4) or from minor collisions.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.8", "ruleContent": "In side view no portion of the brake system that is mounted on the sprung part of the car can project below the lower surface of the frame or the monocoque, whichever is applicable.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.9", - "ruleContent": "The brake pedal must be designed to withstand a force of 2000 N without any failure of the brake system or pedal box. This may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally.", + "ruleContent": "The brake pedal must be designed to withstand a force of 2000 N without any failure of the brake system or pedal box. This may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.10", "ruleContent": "The brake pedal must be fabricated from steel or aluminum or machined from steel, aluminum or titanium.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.1.11", "ruleContent": "The first 50% of the brake pedal travel may be used to control regeneration without necessarily actuating the hydraulic brake system. The remaining brake pedal travel must directly actuate the hydraulic brake system, but brake energy regeneration may remain active. Note: Any strategy to regenerate energy while coasting or braking must be covered by the ESF.", "parentRuleCode": "1T7.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.2", "ruleContent": "Brake Test", "parentRuleCode": "1T7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.2.1", "ruleContent": "The brake system will be dynamically tested and must demonstrate the capability of locking all four (4) wheels and stopping the vehicle in a straight line at the end of an acceleration run specified by the brake inspectors 5 .", "parentRuleCode": "1T7.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.2.2", "ruleContent": "After accelerating, the tractive system must be switched off by the driver and the driver has to lock all four wheels of the vehicle by braking. The brake test is passed if all four wheels simultaneously lock while the tractive system is shut down. Note: It is acceptable if the Tractive System Active Light switches off shortly after the vehicle has come to a complete stop as the reduction of the system voltage may take up to 5 seconds.", "parentRuleCode": "1T7.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.3", "ruleContent": "Brake Over-Travel Switch", "parentRuleCode": "1T7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.3.1", - "ruleContent": "A brake pedal over-travel switch must be installed on the car as part of the shutdown system and wired in series with the shutdown buttons (EV7.1). This switch must be installed so that in the event of brake system failure such that the brake pedal over travels it will result in the shutdown system being activated. 5 It is a persistent source of mystery to the organizers, how a small percentage of teams, after passing all the required inspections, appear to have never checked to see if they can lock all four wheels. Check this early! 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "A brake pedal over-travel switch must be installed on the car as part of the shutdown system and wired in series with the shutdown buttons (EV7.1). This switch must be installed so that in the event of brake system failure such that the brake pedal over travels it will result in the shutdown system being activated. 5 It is a persistent source of mystery to the organizers, how a small percentage of teams, after passing all the required inspections, appear to have never checked to see if they can lock all four wheels. Check this early!", "parentRuleCode": "1T7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.3.2", "ruleContent": "Repeated actuation of the switch must not restore power to these components, and it must be designed so that the driver cannot reset it.", "parentRuleCode": "1T7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.3.3", "ruleContent": "The brake over-travel switch must not be used as a mechanical stop for the brake pedal and must be installed in such a way that it and its mounting will remain intact and operational when actuated.", "parentRuleCode": "1T7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.3.4", - "ruleContent": "The switch must be implemented directly. i.e. It may not operate through programmable logic controllers, engine control units, or digital controllers", + "ruleContent": "The switch must be implemented directly. i.e. It may not operate through programmable logic controllers, engine control units, or digital controllers", "parentRuleCode": "1T7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.3.5", "ruleContent": "The Brake Over-Travel switch must be a mechanical single pole, single throw (commonly known as a two-position) switch (push-pull or flip type) as shown below. Figure 21 – Over-travel Switches", "parentRuleCode": "1T7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.4", "ruleContent": "Brake Light", "parentRuleCode": "1T7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.4.1", "ruleContent": "The car must be equipped with a red brake light.", "parentRuleCode": "1T7.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.4.2", "ruleContent": "The brake light itself must have a black background and a rectangular, triangular or near round shape with a minimum shining surface of at least 15 cm 2 .", "parentRuleCode": "1T7.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.4.3", "ruleContent": "The brake light must be clearly visible from the rear in bright sunlight.", "parentRuleCode": "1T7.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.4.4", "ruleContent": "When LED lights are used without an optical diffuser, they may not be more than 20 mm apart. If a single line of LEDs is used, the minimum length is 150 mm.", "parentRuleCode": "1T7.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T7.4.5", "ruleContent": "The light must be mounted between the wheel centerline and driver’s shoulder level vertically and approximately on vehicle centerline laterally.", "parentRuleCode": "1T7.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T8", "ruleContent": "POWERTRAIN", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.1", "ruleContent": "Coolant Fluid Limitations", "parentRuleCode": "1T8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.1.1", "ruleContent": "Water-cooled engines must use only plain water. Glycol-based antifreeze, “water wetter”, water pump lubricants of any kind, or any other additives are strictly prohibited.", "parentRuleCode": "1T8.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.1.2", - "ruleContent": "Electric motors, accumulators or electronics must use plain water or approved 6 fluids as the coolant. 6 “Opticool” (http://dsiventures.com/electronics-cooling/opticool-a-fluid/) is permitted. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Electric motors, accumulators or electronics must use plain water or approved 6 fluids as the coolant. 6 “Opticool” (http://dsiventures.com/electronics-cooling/opticool-a-fluid/) is permitted.", "parentRuleCode": "1T8.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.2", "ruleContent": "System Sealing", "parentRuleCode": "1T8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.2.1", "ruleContent": "Any cooling or lubrication system must be sealed to prevent leakage.", "parentRuleCode": "1T8.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.2.2", "ruleContent": "Any vent on a cooling or lubrication system must employ a catch-can to retain any fluid that is expelled. A separate catch-can is required for each vent.", "parentRuleCode": "1T8.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.2.3", "ruleContent": "Each catch-can on a cooling or lubrication system must have a minimum volume of ten (10) percent of the fluid being contained, or 0.9 liter whichever is greater.", "parentRuleCode": "1T8.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.2.4", "ruleContent": "Any vent on other systems containing liquid lubricant, e.g. a differential or gearbox, etc., must have a catch-can with a minimum volume of ten (10) percent of the fluid being contained or 0.5 liter, whichever is greater.", "parentRuleCode": "1T8.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.2.5", "ruleContent": "Catch-cans must be capable of containing liquids at temperatures in excess of 100 deg. C without deformation, be shielded by a firewall, be below the driver’s shoulder level, and be positively retained, i.e. no tie-wraps or tape as the primary method of retention.", "parentRuleCode": "1T8.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.2.6", "ruleContent": "Any catch-can for a cooling system must vent through a hose with a minimum internal diameter of 3 mm down to the bottom levels of the Frame.", "parentRuleCode": "1T8.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.3", "ruleContent": "Transmission and Drive Any transmission may be used.", "parentRuleCode": "1T8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.4", "ruleContent": "Drive Train Shields and Guards", "parentRuleCode": "1T8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.4.1", - "ruleContent": "Exposed high-speed final drivetrain equipment such as Continuously Variable Transmissions (CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives and clutch drives, must be fitted with scatter shields in case of failure. The final drivetrain shield must cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley. The final drivetrain shield must start and end parallel to the lowest point of the chain wheel/belt/pulley. (See Figure 22) Body panels or other existing covers are not acceptable unless constructed from approved materials per T8.4.3 or T8.4.4. Note: If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 22 - Final Drive Scatter Shield Example Comment: Scatter shields are intended to contain drivetrain parts which might separate from the car.", + "ruleContent": "Exposed high-speed final drivetrain equipment such as Continuously Variable Transmissions (CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives and clutch drives, must be fitted with scatter shields in case of failure. The final drivetrain shield must cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley. The final drivetrain shield must start and end parallel to the lowest point of the chain wheel/belt/pulley. (See Figure 22) Body panels or other existing covers are not acceptable unless constructed from approved materials per T8.4.3 or T8.4.4. Note: If equipped, the engine drive sprocket cover may be used as part of the scatter shield system.", "parentRuleCode": "1T8.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.4.2", "ruleContent": "Perforated material may not be used for the construction of scatter shields.", "parentRuleCode": "1T8.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.4.3", - "ruleContent": "Chain Drive - Scatter shields for chains must be made of at least 2.6 mm steel or stainless steel (no alternatives are allowed), and have a minimum width equal to three (3) times the width of the chain. The guard must be centered on the center line of the chain and remain aligned with the chain under all conditions.", + "ruleContent": "Chain Drive - Scatter shields for chains must be made of at least 2.6 mm steel or stainless steel (no alternatives are allowed), and have a minimum width equal to three (3) times the width of the chain. The guard must be centered on the center line of the chain and remain aligned with the chain under all conditions.", "parentRuleCode": "1T8.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.4.4", "ruleContent": "Non-metallic Belt Drive - Scatter shields for belts must be made from at least 3.0 mm Aluminum Alloy 6061-T6, and have a minimum width that is equal to 1.7 times the width of the belt.", "parentRuleCode": "1T8.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.4.5", "ruleContent": "The guard must be centered on the center line of the belt and remain aligned with the belt under all conditions.", "parentRuleCode": "1T8.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.4.6", "ruleContent": "Attachment Fasteners - All fasteners attaching scatter shields and guards must be a minimum 6mm Metric Grade 8.8 or 1/4 inch SAE Grade 5 or stronger.", "parentRuleCode": "1T8.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.4.7", - "ruleContent": "Finger Guards – Finger guards are required to cover any drivetrain parts that spin while the car is stationary with the engine running. Finger guards may be made of lighter material, sufficient to resist finger forces. Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard. Comment: Finger guards are intended to prevent finger intrusion into rotating equipment while the vehicle is at rest.", + "ruleContent": "Finger Guards – Finger guards are required to cover any drivetrain parts that spin while the car is stationary with the engine running. Finger guards may be made of lighter material, sufficient to resist finger forces. Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard. Comment: Finger guards are intended to prevent finger intrusion into rotating equipment while the vehicle is at rest.", "parentRuleCode": "1T8.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.5", "ruleContent": "Integrity of systems carrying fluids – Tilt Test", "parentRuleCode": "1T8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.5.1", - "ruleContent": "During technical inspection, the car must be capable of being tilted to a forty-five degree (45°) angle without leaking fluid of any type. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "During technical inspection, the car must be capable of being tilted to a forty-five degree (45°) angle without leaking fluid of any type.", "parentRuleCode": "1T8.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T8.5.2", "ruleContent": "The tilt test will be conducted on hybrid cars with the fuel tank filled with either 3.7 litres of fuel or to 50 mm below the top of the filler neck (whichever is less), and on all cars with all other vehicle systems that contain fluids filled to their normal maximum capacity.", "parentRuleCode": "1T8.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T9", "ruleContent": "AERODYNAMIC DEVICES", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T9.1", "ruleContent": "Aero Dynamics and Ground Effects - General All aerodynamic devices must satisfy the following requirements:", "parentRuleCode": "1T9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T9.2", "ruleContent": "Location In plan view, no part of any aerodynamic device, wing, under tray or splitter can be: (a) Further forward than 460 mm forward of the fronts of the front tires (b) No further rearward than the rear of the rear tires. (c) No wider than the outside of the front tires or rear tires measured at the height of the hubs, whichever is wider.", "parentRuleCode": "1T9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T9.3", "ruleContent": "Wing Edges - Minimum Radii All wing leading edges must have a minimum radius 12.7 mm. Wing leading edges must be as blunt or blunter than the required radii for an arc of plus or minus 45 degrees (± 45°) centered on a plane parallel to the ground or similar reference plane for all incidence angles which lie within the range of adjustment of the wing or wing element. If leading edge slats or slots are used, both the fronts of the slats or slots and of the main body of the wings must meet the minimum radius rules.", "parentRuleCode": "1T9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T9.4", "ruleContent": "Other Edge Radii Limitations All wing edges, end plates, Gurney flaps, wicker bills, splitters undertrays and any other wing accessories must have minimum edge radii of at least 3 mm i.e., this means at least a 6 mm thick edge.", "parentRuleCode": "1T9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T9.5", - "ruleContent": "Ground Effect Devices No power device may be used to move or remove air from under the vehicle except fans designed exclusively for cooling. Power ground effects are prohibited.", + "ruleContent": "Ground Effect Devices No power device may be used to move or remove air from under the vehicle except fans designed exclusively for cooling. Power ground effects are prohibited.", "parentRuleCode": "1T9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T9.6", "ruleContent": "Driver Egress Requirements", "parentRuleCode": "1T9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T9.6.1", "ruleContent": "Egress from the vehicle within the time set in Rule T4.8 “Driver Egress,” must not require any movement of the wing or wings or their mountings.", "parentRuleCode": "1T9.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T9.6.2", "ruleContent": "The wing or wings must be mounted in such positions, and sturdily enough, that any accident is unlikely to deform the wings or their mountings in such a way to block the driver’s egress.", "parentRuleCode": "1T9.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T10", "ruleContent": "COMPRESSED GAS SYSTEMS AND HIGH PRESSURE HYDRAULICS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T10.1", - "ruleContent": "Compressed Gas Cylinders and Lines Any system on the vehicle that uses a compressed gas as an actuating medium must comply with the following requirements: (a) Working Gas -The working gas must be nonflammable, e.g. air, nitrogen, carbon dioxide. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (b) Cylinder Certification - The gas cylinder/tank must be of proprietary manufacture, designed and built for the pressure being used, certified by an accredited testing laboratory in the country of its origin, and labeled or stamped appropriately. (c) Pressure Regulation -The pressure regulator must be mounted directly onto the gas cylinder/tank. (d) Protection – The gas cylinder/tank and lines must be protected from rollover, collision from any direction, or damage resulting from the failure of rotating equipment. (e) Cylinder Location - The gas cylinder/tank and the pressure regulator must be located either rearward of the Main Roll Hoop and within the envelope defined by the Main Roll Hoop and the Frame (See T3.2), or in a structural side-pod. In either case it must be protected by structure that meets the requirements of T3.24 or T3.33. It must not be located in the cockpit. (f) Cylinder Mounting - The gas cylinder/tank must be securely mounted to the Frame, engine or transmission. (g) Cylinder Axis - The axis of the gas cylinder/tank must not point at the driver. (h) Insulation - The gas cylinder/tank must be insulated from any heat sources, e.g. the exhaust system. (i) Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible operating pressure of the system.", + "ruleContent": "Compressed Gas Cylinders and Lines Any system on the vehicle that uses a compressed gas as an actuating medium must comply with the following requirements: (a) Working Gas -The working gas must be nonflammable, e.g. air, nitrogen, carbon dioxide.", "parentRuleCode": "1T10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T10.2", - "ruleContent": "High Pressure Hydraulic Pumps and Lines The driver and anyone standing outside the car must be shielded from any hydraulic pumps and lines with line pressures of 300 psi (2100 kPa) or higher. The shields must be steel or aluminum with a minimum thickness of 1 mm. Note: Brake and hydraulic clutch lines are not classified as “hydraulic pump lines” and as such, are excluded from T10.2.", + "ruleContent": "High Pressure Hydraulic Pumps and Lines The driver and anyone standing outside the car must be shielded from any hydraulic pumps and lines with line pressures of 300 psi (2100 kPa) or higher. The shields must be steel or aluminum with a minimum thickness of 1 mm. Note: Brake and hydraulic clutch lines are not classified as “hydraulic pump lines” and as such, are excluded from T10.2.", "parentRuleCode": "1T10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T11", "ruleContent": "FASTENERS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T11.1", "ruleContent": "Fastener Grade Requirements", "parentRuleCode": "1T11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T11.1.1", "ruleContent": "All threaded fasteners utilized in the driver’s cell structure, plus the steering, braking, driver’s harness and suspension systems must meet or exceed, SAE Grade 5, Metric Grade 8.8 and/or AN/MS specifications.", "parentRuleCode": "1T11.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T11.1.2", - "ruleContent": "The use of button head cap, pan head, flat head, round head or countersunk screws or bolts in ANY location in the following systems is prohibited: (a) Driver’s cell structure, (b) Impact attenuator attachment (c) Driver’s harness attachment (d) Steering system (e) Brake system (f) Suspension system. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Hexagonal recessed drive screws or bolts (sometimes called Socket head cap screws or Allen screws/bolts) are permitted.", + "ruleContent": "The use of button head cap, pan head, flat head, round head or countersunk screws or bolts in ANY location in the following systems is prohibited: (a) Driver’s cell structure, (b) Impact attenuator attachment (c) Driver’s harness attachment (d) Steering system (e) Brake system (f) Suspension system.", "parentRuleCode": "1T11.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T11.2", "ruleContent": "Securing Fasteners", "parentRuleCode": "1T11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T11.2.1", "ruleContent": "All critical bolt, nuts, and other fasteners on the steering, braking, driver’s harness, and suspension must be secured from unintentional loosening by the use of positive locking mechanisms. Positive locking mechanisms are defined as those that: (a) The Technical Inspectors (and the team members) are able to see that the device/system is in place, i.e. it is visible, AND (b) The “positive locking mechanism” does not rely on the clamping force to apply the “locking” or anti-vibration feature. In other words, if it loosens a bit, it still prevents the nut or bolt from coming completely loose. See Figure 23 Positive locking mechanisms include: (a) Correctly installed safety wiring (b) Cotter pins (c) Nylon lock nuts (where the temperature does not exceed 80 O C) (d) Prevailing torque lock nuts Note: Lock washers, bolts with nylon patches, and thread locking compounds, e.g. Loctite®, DO NOT meet the positive locking requirement. Figure 23 - Examples of positive locking nuts", "parentRuleCode": "1T11.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.1.2", "ruleContent": "There must be a minimum of two (2) full threads projecting from any lock nut.", "parentRuleCode": "1T1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.1.3", "ruleContent": "All spherical rod ends and spherical bearings on the steering or suspension must be in double shear or captured by having a screw/bolt head or washer with an O.D. that is larger than spherical bearing housing I.D.", "parentRuleCode": "1T1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T1.1.4", - "ruleContent": "Adjustable tie-rod ends must be constrained with a jam nut to prevent loosening. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Adjustable tie-rod ends must be constrained with a jam nut to prevent loosening.", "parentRuleCode": "1T1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T2", "ruleContent": "TRANSPONDERS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.1", "ruleContent": "Transponders", "parentRuleCode": "1T2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.1.1", "ruleContent": "Transponders will be used as part of the timing system for the Formula Hybrid + Electric competition.", "parentRuleCode": "1T2.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.1.2", "ruleContent": "Each team is responsible for having a functional, properly mounted transponder of the specified type on their vehicle. Vehicles without a specified transponder will not be allowed to compete in any event for which a transponder is used for timing and scoring.", "parentRuleCode": "1T2.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.1.3", - "ruleContent": "All vehicles must be equipped with at least one MYLAPS Car/Bike Rechargeable Power Transponder or MYLAPS Car/Bike Direct Power Transponder 7 . Note 1: Except for their name, AMB TranX260 transponders are identical to MYLAPS Car/Bike Transponders and comply with this rule. If you own a functional AMB TranX260 it does not need to be replaced. Note 2: It is the responsibility of the team to ensure that electrical interference from their vehicle does not stop the transponder from functioning correctly", + "ruleContent": "All vehicles must be equipped with at least one MYLAPS Car/Bike Rechargeable Power Transponder or MYLAPS Car/Bike Direct Power Transponder 7 . Note 1: Except for their name, AMB TranX260 transponders are identical to MYLAPS Car/Bike Transponders and comply with this rule. If you own a functional AMB TranX260 it does not need to be replaced. Note 2: It is the responsibility of the team to ensure that electrical interference from their vehicle does not stop the transponder from functioning correctly", "parentRuleCode": "1T2.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T2.2", - "ruleContent": "Transponder Mounting – All Events The transponder mounting requirements are: (a) Orientation – The transponder must be mounted vertically and orientated so the number can be read “right-side up”. (b) Location – The transponder must be mounted on the driver’s right side of the car forward of the front roll hoop. The transponder must be no more than 60 cm above the track. (c) Obstructions – There must be an open, unobstructed line between the antenna on the bottom of the transponder and the ground. Metal and carbon fiber may interrupt the transponder signal. The signal will normally transmit through fiberglass and plastic. If the signal will be obstructed by metal or carbon fiber, a 10.2 cm diameter opening can be cut, the transponder mounted flush with the opening, and the opening covered with a material transparent to the signal. (d) Protection – Mount the transponder where it will be protected from obstacles. 7 Transponders are usually available for loan at the competition. Please ask the organizers well in advance to confirm availability. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Transponder Mounting – All Events The transponder mounting requirements are: (a) Orientation – The transponder must be mounted vertically and orientated so the number can be read “right-side up”. (b) Location – The transponder must be mounted on the driver’s right side of the car forward of the front roll hoop. The transponder must be no more than 60 cm above the track. (c) Obstructions – There must be an open, unobstructed line between the antenna on the bottom of the transponder and the ground. Metal and carbon fiber may interrupt the transponder signal. The signal will normally transmit through fiberglass and plastic. If the signal will be obstructed by metal or carbon fiber, a 10.2 cm diameter opening can be cut, the transponder mounted flush with the opening, and the opening covered with a material transparent to the signal. (d) Protection – Mount the transponder where it will be protected from obstacles. 7 Transponders are usually available for loan at the competition. Please ask the organizers well in advance to confirm availability.", "parentRuleCode": "1T2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T3", "ruleContent": "VEHICLE IDENTIFICATION", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.1", "ruleContent": "Car Number", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.1.1", "ruleContent": "Each car will be assigned a number at the time of its entry into a competition.", "parentRuleCode": "1T3.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.1.2", "ruleContent": "Car numbers must appear on the vehicle as follows: (a) Locations: In three (3) locations: the front and both sides; (b) Height: At least 15.24 cm high; (c) Font: Block numbers (i.e. sans-serif characters). Italic, outline, serif, shadow, or cursive numbers are prohibited. (d) Stroke Width and Spacing between Numbers: At least 2.0 cm. (e) Color: Either white numbers on a black background or black numbers on a white background. No other color combinations will be approved. (f) Background shape: The number background must be one of the following: round, oval, square or rectangular. There must be at least 2.5 cm between the edge of the numbers and the edge of the background. (g) Clear: The numbers must not be obscured by parts of the car, e.g. wheels, side pods, exhaust system, etc.", "parentRuleCode": "1T3.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.1.3", "ruleContent": "While car numbers for teams registered for Formula Hybrid + Electric can be found on the “Registered Teams” section of the SAE Collegiate Design Series website, please be sure to check with Formula Hybrid +Electric officials to ensure these numbers are correct. Comment: Car numbers must be quickly read by course marshals when your car is moving at speed. Make your numbers easy to see and easy to read. Figure 24 - Example Car Number", "parentRuleCode": "1T3.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.2", "ruleContent": "School Name", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.2.1", "ruleContent": "Each car must clearly display the school name (or initials – if unique and generally recognized) in roman characters at least 5 cm high on both sides of the vehicle. The characters must be placed on a high contrast background in an easily visible location.", "parentRuleCode": "1T3.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.2.2", - "ruleContent": "The school name may also appear in non-roman characters, but the roman character version must be uppermost on the sides. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The school name may also appear in non-roman characters, but the roman character version must be uppermost on the sides.", "parentRuleCode": "1T3.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.3", "ruleContent": "SAE & IEEE Logos", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.3.1", "ruleContent": "SAE and IEEE logos must be prominently displayed on the front and/or both sides of the vehicle. Each logo must be at least 7 cm x 20 cm. The organizers will provide the following decals at the competition: (a) SAE, 7.6 cm x 20.3 cm in either White or Black. (b) IEEE, 11.4 cm x 30.5 cm (Blue only). Actual-size JPEGs may be downloaded from the Formula Hybrid + Electric website.", "parentRuleCode": "1T3.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T3.4", "ruleContent": "Technical Inspection Sticker Space Technical inspection stickers will be placed on the upper nose of the vehicle. Cars must have a clear and unobstructed area at least 25.4 cm wide x 20.3cm high on the upper front surface of the nose along the vehicle centerline.", "parentRuleCode": "1T3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T4", "ruleContent": "EQUIPMENT REQUIREMENTS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.1", "ruleContent": "Driver’s Equipment The equipment specified below must be worn by the driver anytime he or she is in the cockpit with the engine running or with the tractive system energized.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.2", "ruleContent": "Helmet", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.2.1", "ruleContent": "A well-fitting, closed face helmet that meets one of the following certifications and is labeled as such: (a) Snell K2010, K2015, K2020, M2010, M2015, M2020, SA2010, SAH2010, SA2015, SA2020, EA2016 (b) SFI 31.1/2020, SFI 41.1/2020 (c) FIA 8859-2015, FIA 8860-2004, FIA 8860-2010, FIA 8860-2016, FIA 8860-2018. Open faced helmets and off-road/motocross helmets (helmets without integrated face shields) are not approved.", "parentRuleCode": "1T4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.2.2", - "ruleContent": "All helmets to be used in the competition must be presented during Technical Inspection where approved helmets will be stickered. The organizer reserves the right to impound all non- approved helmets until the end of the competition.", + "ruleContent": "All helmets to be used in the competition must be presented during Technical Inspection where approved helmets will be stickered. The organizer reserves the right to impound all non- approved helmets until the end of the competition.", "parentRuleCode": "1T4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.3", - "ruleContent": "Balaclava A balaclava which covers the driver’s head, hair and neck, made from acceptable fire resistant material as defined in T14.12, or a full helmet skirt of acceptable fire resistant material. The balaclava requirement applies to drivers of either gender, with any hair length.", + "ruleContent": "Balaclava A balaclava which covers the driver’s head, hair and neck, made from acceptable fire resistant material as defined in T14.12, or a full helmet skirt of acceptable fire resistant material. The balaclava requirement applies to drivers of either gender, with any hair length.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.4", - "ruleContent": "Eye Protection An impact resistant face shield, made from approved impact resistant materials. The face shields supplied with approved helmets (See T14.2 above) meet this requirement. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Eye Protection An impact resistant face shield, made from approved impact resistant materials. The face shields supplied with approved helmets (See T14.2 above) meet this requirement.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.5", - "ruleContent": "Suit A fire-resistant suit that covers the body from the neck down to the ankles and the wrists. One (1) piece suits are required. The suit must be in good condition, i.e. it must have no tears or open seams, or oil stains that could compromise its fire-resistant capability. The suit must be certified to one of the following standards and be labeled as such: Table 7 – SFI / FIA Standards Logos Note: An SFI 3-2A/1 or 3.4/1 (single layer) suit is ONLY allowed WITH fire resistant underwear. -FIA 8856-2018 -SFI 3.4/5 -FIA Standard 8856-1986 -SFI 3-2A/1 but only when used with fire resistant, e.g. Nomex, underwear that covers the body from wrist to ankles. -SFI 3-2A/5 (or higher) - FIA Standard 8856-2000 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Suit A fire-resistant suit that covers the body from the neck down to the ankles and the wrists. One (1) piece suits are required. The suit must be in good condition, i.e. it must have no tears or open seams, or oil stains that could compromise its fire-resistant capability. The suit must be certified to one of the following standards and be labeled as such: Table 7 – SFI / FIA Standards Logos Note: An SFI 3-2A/1 or 3.4/1 (single layer) suit is ONLY allowed WITH fire resistant underwear. -FIA 8856-2018 -SFI 3.4/5 -FIA Standard 8856-1986 -SFI 3-2A/1 but only when used with fire resistant, e.g. Nomex, underwear that covers the body from wrist to ankles. -SFI 3-2A/5 (or higher) - FIA Standard 8856-2000", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.6", "ruleContent": "Underclothing All drivers should wear fire resistant underwear (long pants and long sleeve top) under their approved driving suit. This fire resistant underwear must be made from acceptable fire resistant material and cover the driver’s body completely from the neck down to the ankles and wrists. Note: If drivers do not wear fire resistant long underwear, they should wear cotton underwear under the approved driving suit. Tee-shirts, or other undergarments made from Nylon or any other synthetic materials may melt when exposed to high heat.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.7", "ruleContent": "Socks Socks made from an accepted fire resistant material, e.g. Nomex, which cover the bare skin between the driver’s suit and the boots or shoes. Socks made from wool or cotton are acceptable. Socks of nylon or polyester are not acceptable.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.8", "ruleContent": "Shoes Shoes of durable fire resistant material and which are in good condition (no holes worn in the soles or uppers).", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.9", "ruleContent": "Gloves Fire resistant gloves made from made from acceptable fire resistant material as defined in T14.12.Gloves of all leather construction or fire resistant gloves constructed using leather palms with no insulating fire resisting material underneath are not acceptable.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.10", "ruleContent": "Arm Restraints Arm restraints certified and labeled to SF1 standard 3.3, or a commercially manufactured equivalent, must be worn such that the driver can release them and exit the vehicle unassisted regardless of the vehicle’s position.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.11", - "ruleContent": "Driver’s Equipment Condition All driving apparel covered by ARTICLE T14 must be in good condition. Specifically, driving apparel must not have any tears, rips, open seams, areas of significant wear or abrasion or stains which might compromise fire resistant performance.", + "ruleContent": "Driver’s Equipment Condition All driving apparel covered by ARTICLE T14 must be in good condition. Specifically, driving apparel must not have any tears, rips, open seams, areas of significant wear or abrasion or stains which might compromise fire resistant performance.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.12", "ruleContent": "Fire Resistant Material For the purpose of this section some, but not all, of the approved fire resistant materials are: Carbon X, Indura, Nomex, Polybenzimidazole (commonly known as PBI) and Proban.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T4.13", "ruleContent": "Synthetic Material – Prohibited T-shirts, socks or other undergarments (not to be confused with FR underwear) made from nylon or any other synthetic material which will melt when exposed to high heat are prohibited.", "parentRuleCode": "1T4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T5", "ruleContent": "OTHER REQUIRED EQUIPMENT", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1", "ruleContent": "Fire Extinguishers", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1.1", "ruleContent": "Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers.", "parentRuleCode": "1T5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1.2", - "ruleContent": "Extinguishers of larger capacity (higher numerical ratings) are acceptable. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Extinguishers of larger capacity (higher numerical ratings) are acceptable.", "parentRuleCode": "1T5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.1.3", "ruleContent": "All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows “FULL”.", "parentRuleCode": "1T5.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.2", "ruleContent": "Special Requirements Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb or equivalent) of the required type must be procured and accompany the car at all times. As recommendations vary, teams are advised to consult the rules committee before purchasing expensive extinguishers that may not be necessary.", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.3", "ruleContent": "Chemical Spill Absorbent Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must be presented at technical inspection.", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.4", "ruleContent": "Insulated Gloves Insulated gloves are required, rated for at least the voltage in the TSV system, with protective over-gloves.", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.4.1", "ruleContent": "Electrical gloves require testing by a qualified company and must have a test date printed on them that is within 14 months of the competition.", "parentRuleCode": "1T5.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.5", "ruleContent": "Safety Glasses Safety glasses must be worn as specified in section D10.7", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.6", "ruleContent": "MSDS Sheets Materials Safety Data Sheets (MSDS) for the accumulator devices are required and must be included in the ESF.", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T5.7", "ruleContent": "Additional Any special safety equipment called for in the MSDS, for example correct gloves recommended for handling any electrolyte material in the accumulator.", "parentRuleCode": "1T5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE T6", "ruleContent": "ON-BOARD CAMERAS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.1", "ruleContent": "Mounts The mounts for video/photographic cameras must be of a safe and secure design.", "parentRuleCode": "1T6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.1.1", "ruleContent": "All camera installations must be approved at Technical Inspection.", "parentRuleCode": "1T6.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.1.2", "ruleContent": "Helmet mounted cameras are prohibited.", "parentRuleCode": "1T6.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1T6.1.3", - "ruleContent": "The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a minimum of 2 points on different sides of the camera body. Plastic or elastic attachments are not permitted. If a tether is used to restrain the camera, the tether length must be limited so that the camera cannot contact the driver. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 1PART IC - INTERNAL COMBUSTION ENGINE", + "ruleContent": "The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a minimum of 2 points on different sides of the camera body. Plastic or elastic attachments are not permitted. If a tether is used to restrain the camera, the tether length must be limited so that the camera cannot contact the driver.", "parentRuleCode": "1T6.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE IC1", - "ruleContent": "INTERNAL COMBUSTION ENGINE IC1.1 Engine Limitation Engines must be Internal Combustion, four-stroke piston engines, with a maximum displacement of 250cc for spark ignition engines and 310cc for diesel engines and be either: (a) Modified or custom fabricated. (See section IC1.2) OR (b) Stock – defined as: (i) Any single cylinder engine, OR (ii) Any twin cylinder engine from a motorcycle approved for licensed use on public roads, OR (iii) Any commercially available “industrial” IC engine meeting the above displacement limits. Note: If you are not sure whether or not your engine qualifies as “stock”, contact the organizers. IC1.2 Permitted modifications to a stock engine are: (a) Modification or removal of the clutch, primary drive and/or transmission. (b) Changes to fuel mixture, ignition or cam timings. (c) Replacement of camshaft. (Any lobe profile may be used.) (d) Replacement or modification of any exhaust system component. (e) Replacement or modification of any intake system component; i.e., components upstream of (but NOT including) the cylinder head. The addition of forced induction will move the engine into the modified category. (f) Modifications to the engine casings. (This does not include the cylinders or cylinder head). (g) Replacement or modification of crankshafts for the purpose of simplifying mechanical connections. (Stroke must remain stock.) IC1.3 Engine Inspection The organizers reserve the right to tear down any number of engines to confirm conformance to the rules. The initial measurement will be made externally with a measurement accuracy of one (1) percent. When installed to and coaxially with spark plug hole, the measurement tool has dimensions of 381 mm long and 30 mm diameter. Teams may choose to design in access space for this tool above each spark plug hole to reduce time should their vehicle be inspected. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IC1.4 Starter Each car must be equipped with an on-board starter or equivalent, and must be able to move without any outside assistance at any time during the competition. Specifically, push starts are not permitted. IC1.4.1 A hybrid may use the forward motion of the vehicle derived from the electric drive to start the I.C. engine, except that this starting technique may not be used until after the car receives the “green flag” in any event. IC1.4.2 A manual starting system operable by the driver while belted in is permissible. IC1.5 Air Intake System IC1.5.1 Air Intake System Location All parts of the engine air and fuel control systems (including the throttle or carburetor, and the complete air intake system, including the air cleaner and any air boxes) must lie within the surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25) Figure 25- Surface Envelope IC1.5.2 Any portion of the air intake system that is less than 350 mm above the ground must be shielded from side or rear impact collisions by structure built to Rule T3.24 or T3.33 as applicable. IC1.5.3 Intake Manifold If an intake manifold is used, it must be securely attached to the engine crankcase, cylinder, or cylinder head with brackets and mechanical fasteners. This precludes the use of hose clamps, plastic ties, or safety wires. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Original equipment rubber parts that bolt or clamp to the cylinder head and to the throttle body or carburetor are acceptable. Note: These rubber parts are referred to by various names by the engine manufacturers; e.g., “insulators” by Honda, “joints” by Yamaha, and “holders” by Kawasaki. Other than such original equipment parts the use of rubber hose is not considered a structural attachment. Intake systems with significant mass or cantilever from the cylinder head must be supported to prevent stress to the intake system. Supports to the engine must be rigid. Supports to the frame or chassis must incorporate some isolation to allow for engine movement and chassis flex. IC1.5.4 Air boxes and filters Large air boxes must be securely mounted to the frame or engine and connections between the air box and throttle must be flexible. Small air cleaners designed for mounting to the carburetor or throttle body may be cantilevered from the throttle body. IC1.6 Accelerator and Accelerator Actuation IC1.6.1 Carburetor/Throttle Body All spark ignition engines must be equipped with a carburetor or throttle body. The carburetor or throttle body may be of any size or design. IC1.6.2 Accelerator Actuation - General All systems that transmit the driver’s control of the speed of the vehicle, commonly called “Accelerator systems”, must be designed and constructed as “fail safe” systems, so that the failure of any one component, be it mechanical, electrical or electronic, will not result in an uncontrolled acceleration of the vehicle. This applies to both IC engines and to electric motors that power the vehicle. The Accelerator control may be actuated mechanically, electrically or electronically, i.e. electrical Accelerator control (ETC) or “drive-by-wire” is acceptable. Drive-by-wire controls of the electric motor controller must comply with TS isolation requirements. See EV5.1.1 Any Accelerator pedal must have a positive pedal stop incorporated on the Accelerator pedal to prevent over stressing the Accelerator cable or any part of the actuation system. IC1.6.3 Mechanical Accelerator Actuation If mechanical Accelerator actuation is used, the Accelerator cable or rod must have smooth operation, and must not have the possibility of binding or sticking. The Accelerator actuation system must use at least two (2) return springs located at the throttle body, so that the failure of any component of the Accelerator system will not prevent the Accelerator returning to the closed position. Note: Springs in Throttle Position Sensors (TPS) are NOT acceptable as return springs. Accelerator cables must be at least 50 mm from any exhaust system component and out of the exhaust stream. Any Accelerator pedal cable must be protected from being bent or kinked by the driver’s foot when it is operated by the driver or when the driver enters or exits the vehicle. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 If the Accelerator system contains any mechanism that could become jammed, for example a gear mechanism, then this must be covered to prevent ingress of any debris. The use of a push-pull type Accelerator cable with an Accelerator pedal that is capable of forcing the Accelerator closed (e.g. toe strap) is recommended. Electrical actuation of a mechanical throttle is permissible, provided releasing the Accelerator pedal will override the electrical system and cause the throttle to close. IC1.6.4 Electrical Accelerator Actuation When electrical or electronic throttle actuation is used, the throttle actuation system must be of a fail-safe design to assure that any single failure in the mechanical or electrical components of the Accelerator actuation system will result in the engine returning to idle (IC engine) or having zero torque output (electric motor). Teams should use commercially available electrical Accelerator actuation systems. The methodology used to ensure fail-safe operation must be included as a required appendix to the Design Report. IC1.7 Intake System Restrictor IC1.7.1 Non-stock engines (See IC1.1) must be fitted with an air inlet restrictor as listed below. All the air entering the engine must pass through the restrictor which must be located downstream of any engine throttling device. IC1.7.2 The restrictor must be circular with a maximum diameter of: (a) Gasoline fueled cars – 12.90 mm IC1.7.3 The restrictor must be located to facilitate measurement during the inspection process. IC1.7.4 The circular restricting cross section may NOT be movable or flexible in any way, e.g. the restrictor may not be part of the movable portion of a barrel throttle body. IC1.7.5 Any device that has the ability to throttle the engine downstream of the restrictor is prohibited. IC1.7.6 If more than one engine is used, the intake air for all engines must pass through the one restrictor. Note: Section IC1.7 applies only to those engines that are not on the approved stock engine list, or that have been modified beyond the limits specified in IC1.2. IC1.8 Turbochargers & Superchargers Turbochargers or superchargers are permitted. The compressor must be located downstream of the inlet restrictor. The addition of a Turbo or Supercharger will move the engine into the Modified category. IC1.9 Fuel Lines IC1.9.1 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. IC1.9.2 If rubber fuel line or hose is used, the components over which the hose is clamped must have annular bulb or barbed fittings to retain the hose. Also, clamps specifically designed for fuel lines must be used. These clamps have three (3) important features; (See Figure 26) (a) A full 360 degree (360°) wrap, (b) a nut and bolt system for tightening, and (c) rolled edges to prevent the clamp cutting into the hose. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Worm-gear type hose clamps are not approved for use on any fuel line. Figure 26 – Hose Clamps IC1.9.3 Fuel lines must be securely attached to the vehicle and/or engine. IC1.9.4 All fuel lines must be shielded from possible rotating equipment failure or collision damage. IC1.10 Fuel Injection System Requirements IC1.10.1 Fuel Lines – Flexible fuel lines must be either (a) Metal braided hose with either crimped-on or reusable, threaded fittings, OR (b) Reinforced rubber hose with some form of abrasion resistant protection with fuel line clamps per IC1.9.2. Note: Hose clamps over metal braided hose will not be accepted. IC1.10.2 Fuel Rail – If used, a fuel rail must be securely attached to the engine cylinder block, cylinder head, or intake manifold with brackets and mechanical fasteners. This precludes the use of hose clamps, plastic ties, or safety wire. IC1.11 Crankcase / Engine lubrication venting IC1.11.1 Any crankcase or engine lubrication vent lines routed to the intake system must be connected upstream of the intake system restrictor, if fitted. IC1.11.2 Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum devices that connect directly to the exhaust system, are prohibited.", - "pageNumber": "1" + "ruleContent": "INTERNAL COMBUSTION ENGINE IC1.1 Engine Limitation Engines must be Internal Combustion, four-stroke piston engines, with a maximum displacement of 250cc for spark ignition engines and 310cc for diesel engines and be either: (a) Modified or custom fabricated. (See section IC1.2) OR (b) Stock – defined as: (i) Any single cylinder engine, OR (ii) Any twin cylinder engine from a motorcycle approved for licensed use on public roads, OR (iii) Any commercially available “industrial” IC engine meeting the above displacement limits. Note: If you are not sure whether or not your engine qualifies as “stock”, contact the organizers. IC1.2 Permitted modifications to a stock engine are: (a) Modification or removal of the clutch, primary drive and/or transmission. (b) Changes to fuel mixture, ignition or cam timings. (c) Replacement of camshaft. (Any lobe profile may be used.) (d) Replacement or modification of any exhaust system component. (e) Replacement or modification of any intake system component; i.e., components upstream of (but NOT including) the cylinder head. The addition of forced induction will move the engine into the modified category. (f) Modifications to the engine casings. (This does not include the cylinders or cylinder head). (g) Replacement or modification of crankshafts for the purpose of simplifying mechanical connections. (Stroke must remain stock.) IC1.3 Engine Inspection The organizers reserve the right to tear down any number of engines to confirm conformance to the rules. The initial measurement will be made externally with a measurement accuracy of one (1) percent. When installed to and coaxially with spark plug hole, the measurement tool has dimensions of 381 mm long and 30 mm diameter. Teams may choose to design in access space for this tool above each spark plug hole to reduce time should their vehicle be inspected.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE IC2", - "ruleContent": "FUEL AND FUEL SYSTEM IC2.1 Fuel IC2.1.1 All fuel at the Formula Hybrid + Electric Competition will be provided by the organizer. IC2.1.2 During all performance events the cars must be operated with the fuels provided by the organizer. IC2.1.3 The fuels provided at the Formula Hybrid + Electric Competition are: (a) Gasoline (Sunoco Optima) Note: More information including the fuel energy equivalencies, and a link for the Sunoco fuel specifications are given in Appendix A 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IC2.2 Fuel Additives - Prohibited IC2.2.1 Nothing may be added to the provided fuels. This prohibition includes nitrous oxide or any other oxidizing agent. IC2.2.2 No agents other than fuel and air may be induced into the combustion chamber. Non-adherence to this rule will be reason for disqualification. IC2.2.3 Officials have the right to inspect the oil. IC2.3 Fuel Temperature Changes - Prohibited The temperature of fuel introduced into the fuel system may not be changed with the intent to improve calculated fuel efficiency. IC2.4 Fuel Tanks IC2.4.1 The fuel tank is defined as that part of the fuel containment device that is in contact with the fuel. It may be made of a rigid material or a flexible material. IC2.4.2 Fuel tanks made of a rigid material cannot be used to carry structural loads, e.g. from roll hoops, suspension, engine or gearbox mounts, and must be securely attached to the vehicle structure with mountings that allow some flexibility such that chassis flex cannot unintentionally load the fuel tank. IC2.4.3 Any fuel tank that is made from a flexible material, for example a bladder fuel cell or a bag tank, must be enclosed within a rigid fuel tank container which is securely attached to the vehicle structure. Fuel tank containers (containing a bladder fuel cell or bag tank) may be load carrying. IC2.4.4 Any size fuel tank may be used. IC2.4.5 The fuel system must have a drain fitting for emptying the fuel tank. The drain must be at the lowest point of the tank and be easily accessible. It must not protrude below the lowest plane of the vehicle frame, and must have provision for safety wiring. IC2.5 Fuel System Location Requirements IC2.5.1 All parts of the fuel storage and supply system must lie within the surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25). IC2.5.2 All fuel tanks must be shielded from side or rear impact collisions. Any fuel tank which is located outside the Side Impact Structure required by T3.24 or T3.33 must be shielded by structure built to T3.24 or T3.33. IC2.5.3 A firewall must separate the fuel tank from the driver, per T4.5. IC2.6 Fuel Tank Filler Neck IC2.6.1 All fuel tanks must have a filler neck 8 : (a) With a minimum inside diameter of 38 mm (b) That is vertical (with a horizontal filler cap) or angled at no more than forty-five degrees (45º) from the vertical. IC2.6.2 If a sight tube is fitted, it may not run below the top surface of the fuel tank. 8 Some flush fillers may be approved by contacting the Formula Hybrid + Electric rules committee. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 27 - Filler Neck IC2.7 Tank Filling Requirement IC2.7.1 The tank must be capable of being filled to capacity without manipulating the tank or vehicle in any way (shaking vehicle, etc.). IC2.7.2 The fuel system must be designed such that the spillage during refueling cannot contact the driver position, exhaust system, hot engine parts, or the ignition system. IC2.7.3 Belly pans must be vented to prevent accumulation of fuel. IC2.8 Venting Systems IC2.8.1 The fuel tank and carburetor venting systems must be designed such that fuel cannot spill during hard cornering or acceleration. This is a concern since motorcycle carburetors normally are not designed for lateral accelerations. IC2.8.2 All fuel vent lines must be equipped with a check valve to prevent fuel leakage when the tank is inverted. All fuel vent lines must exit outside the bodywork.", - "pageNumber": "1" + "ruleContent": "FUEL AND FUEL SYSTEM IC2.1 Fuel IC2.1.1 All fuel at the Formula Hybrid + Electric Competition will be provided by the organizer. IC2.1.2 During all performance events the cars must be operated with the fuels provided by the organizer. IC2.1.3 The fuels provided at the Formula Hybrid + Electric Competition are: (a) Gasoline (Sunoco Optima) Note: More information including the fuel energy equivalencies, and a link for the Sunoco fuel specifications are given in Appendix A", + "pageNumber": "0" }, { "ruleCode": "ARTICLE IC3", - "ruleContent": "EXHAUST SYSTEM AND NOISE CONTROL IC3.1 Exhaust System General IC3.1.1 Exhaust Outlet The exhaust must be routed so that the driver is not subjected to fumes at any speed considering the draft of the car. IC3.1.2 The exhaust outlet(s) must not extend more than 45 cm behind the centerline of the rear wheels, and must be no more than 60 cm above the ground. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IC3.1.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in front of the main roll hoop must be shielded to prevent contact by persons approaching the car or a driver exiting the car. IC3.1.4 The application of fibrous material, e.g. “header wrap”, to the outside of an exhaust manifold or exhaust system is prohibited. IC3.2 Noise Measuring Procedure IC3.2.1 The sound level will be measured during a static test. Measurements will be made with a free- field microphone placed free from obstructions at the exhaust outlet level, 0.5 m from the end of the exhaust outlet, at an angle of forty-five degrees (45°) with the outlet in the horizontal plane. The test will be run with the gearbox in neutral at the engine speed defined below. Where more than one exhaust outlet is present, the test will be repeated for each exhaust and the highest reading will be used. Vehicles that do not have manual throttle control must provide some means for running the engine at the test RPM. IC3.2.2 The car must be compliant at all engine speeds up to the test speed defined below. IC3.2.3 If the exhaust has any form of movable tuning or throttling device or system, it must be compliant with the device or system in all positions. The position of the device must be visible to the officials for the noise test and must be manually operable by the officials during the noise test. IC3.2.4 Test Speeds The test speed for a given engine will be the engine speed that corresponds to an average piston speed of 914.4 m/min for automotive or motorcycle engines, and 731.5 m/min for Diesels and “Industrial” engines. The calculated speed will be rounded to the nearest 500 rpm. The test speeds for typical engines will be published by the organizers. IC3.2.5 An “industrial engine” is defined as an engine which, according to the manufacturers’ specifications and without the required restrictor, is not capable of producing more than 5 hp per 100cc. To have an engine classified as “an industrial engine”, approval must be obtained from organizers prior to the Competition. IC3.2.6 Vehicles not equipped with engine tachometers must provide some external means for measuring RPM, such as a hand-held meter or lap top computer. Note: Teams that do not provide the means to measure engine speed will not pass the noise test, will not receive the sticker and hence will not be eligible to compete in any dynamic event. IC3.2.7 Engines with mechanical, closed loop speed control will be tested at their maximum (governed) speed. IC3.3 Maximum Sound Level The maximum permitted sound level is 110 dB A, fast weighting. IC3.4 Noise Level Re-testing At the option of the officials, noise can be measured at any time during the competition. If a car fails the noise test, it will be withheld from the competition until it has been modified and re- passes the noise test. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "EXHAUST SYSTEM AND NOISE CONTROL IC3.1 Exhaust System General IC3.1.1 Exhaust Outlet The exhaust must be routed so that the driver is not subjected to fumes at any speed considering the draft of the car. IC3.1.2 The exhaust outlet(s) must not extend more than 45 cm behind the centerline of the rear wheels, and must be no more than 60 cm above the ground.", + "pageNumber": "0" }, { "ruleCode": "PART EV", "ruleContent": "ELECTRICAL POWERTRAINS AND SYSTEMS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV1", - "ruleContent": "ELECTRICAL SYSTEMS OVERVIEW EV1.1 Definitions ● Accumulator - Batteries and/or capacitors that store the electrical energy to be used by the tractive system. This term includes both electrochemical batteries and ultracapacitor devices. ● Accumulator Container - A housing that encloses the accumulator devices, isolating them both physically and electrically from the rest of the vehicle. ● Accumulator Segment - A subgroup of accumulator devices that must adhere to the voltage and energy limits listed in Table 8. ● AMS – Accumulator Monitoring System. EV9.6 ● Barrier – A material, usually rigid, that resists a flow of charge. Most often used to provide a structural barrier and/or increase the creepage distance between two conductors. See Figure 36. ● BRB – Big Red Button. EV7.5 and EV7.6 ● Creepage Distance - The shortest distance measured along the surface of the insulating material between two conductors. See Figure 36. ● Enclosure – An insulated housing containing electrical circuitry. ● GLV Grounded Low Voltage system - Every conductive part that is not part of the tractive system. (This includes the GLV electrical system, frame, conductive housings, carbon-fiber components etc.) ● GLVMS – Grounded Low Voltage Master Switch. EV7.3 ● IMD – Insulation Monitoring Device. EV9.4 ● Insulation – A material that physically resists a flow of charge. May be rigid or flexible. ● Isolation - Electrical, or “Galvanic” isolation between two or more electrical conductors such that if a voltage potential exists between them, no current will flow. ● Region – A design/construction methodology wherein enclosures are divided by insulating barriers and/or spacing into TS and GLV sections, simplifying the electrical isolation of the two systems. ● Separation – A physical distance (“spacing”) maintained between conductors. ● SMD – Segment Maintenance Disconnect. EV2.7 ● ESOK – Electrical Systems OK. EV9.3 ● Tractive System (TS) - The drive motors, the accumulators and every part that is electrically connected to either of those components. ● Tractive System Enclosure - A housing that contains TS components other than accumulator devices. ● TSAL – Tractive System Active Lamp. EV9.1 ● TS/GLV – The relationship between two electrical conductors; one being part of the TS system and the other GLV. ● TS/TS – The relationship between two TS conductors. This designation implies that they are at different potentials and/or polarities. ● TSMP – Tractive System Measuring Points. EV10.3 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 ● TSMS – Tractive System Master Switch. EV7.4 EV1.2 Maximum System Voltages EV1.1.1 The maximum permitted operating voltage and energy limits are listed in Table 8 below. Formula Hybrid + Electric voltage and energy limits Maximum operating voltage for Hybrid 9 (TSV) 300 V Maximum operating voltage for EV 600V Maximum GLV 60 VDC or 50 VAC Maximum accumulator segment voltage 120 V Maximum accumulator segment energy 10 6 MJ Table 8 - Voltage and Energy Limits EV1.1.2 Maximum operating voltage for hybrid vehicles above those shown in Table 8 may be permitted via a request for a special allowance to the FH+E rules committee. Teams requesting such an allowance must demonstrate an appropriate level of electrical engineering knowledge and experience. EV1.1.3 Vehicles with a maximum operating voltage over 300V will be required to complete a form demonstrating electrical safety competency including: ● Written vehicle electrical safety procedures ● A list of electrical safety team members ● Review of team experience and competency in high-voltage electrical systems ● Acceptance of this document is a requirement for participation in the event. 9 The maximum operating voltage is defined as the maximum measured accumulator voltage during normal charging conditions. (A maximum capacity accumulator will require at least three segments.) 10 Segment energy is calculated as Energy (MJ) = (V • Ah • 3600) / 1e 6 . (Note that this is different from the fuel allocation energy in Appendix A). 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "ELECTRICAL SYSTEMS OVERVIEW EV1.1 Definitions ● Accumulator - Batteries and/or capacitors that store the electrical energy to be used by the tractive system. This term includes both electrochemical batteries and ultracapacitor devices. ● Accumulator Container - A housing that encloses the accumulator devices, isolating them both physically and electrically from the rest of the vehicle. ● Accumulator Segment - A subgroup of accumulator devices that must adhere to the voltage and energy limits listed in Table 8. ● AMS – Accumulator Monitoring System. EV9.6 ● Barrier – A material, usually rigid, that resists a flow of charge. Most often used to provide a structural barrier and/or increase the creepage distance between two conductors. See Figure 36. ● BRB – Big Red Button. EV7.5 and EV7.6 ● Creepage Distance - The shortest distance measured along the surface of the insulating material between two conductors. See Figure 36. ● Enclosure – An insulated housing containing electrical circuitry. ● GLV Grounded Low Voltage system - Every conductive part that is not part of the tractive system. (This includes the GLV electrical system, frame, conductive housings, carbon-fiber components etc.) ● GLVMS – Grounded Low Voltage Master Switch. EV7.3 ● IMD – Insulation Monitoring Device. EV9.4 ● Insulation – A material that physically resists a flow of charge. May be rigid or flexible. ● Isolation - Electrical, or “Galvanic” isolation between two or more electrical conductors such that if a voltage potential exists between them, no current will flow. ● Region – A design/construction methodology wherein enclosures are divided by insulating barriers and/or spacing into TS and GLV sections, simplifying the electrical isolation of the two systems. ● Separation – A physical distance (“spacing”) maintained between conductors. ● SMD – Segment Maintenance Disconnect. EV2.7 ● ESOK – Electrical Systems OK. EV9.3 ● Tractive System (TS) - The drive motors, the accumulators and every part that is electrically connected to either of those components. ● Tractive System Enclosure - A housing that contains TS components other than accumulator devices. ● TSAL – Tractive System Active Lamp. EV9.1 ● TS/GLV – The relationship between two electrical conductors; one being part of the TS system and the other GLV. ● TS/TS – The relationship between two TS conductors. This designation implies that they are at different potentials and/or polarities. ● TSMP – Tractive System Measuring Points. EV10.3", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV2", - "ruleContent": "ENERGY STORAGE (ACCUMULATORS) EV2.1 Permitted Devices EV1.1.4 The following accumulator devices are acceptable: batteries (e.g. lithium-ion, NiMH, lead acid and similar battery chemistries) and capacitors, such as super caps or ultracaps. The following accumulator devices are not permitted: molten salt batteries, thermal batteries, fuel cells, mechanical storage such as flywheels or hydraulic accumulators. EV1.1.5 Accumulator systems using pouch-type lithium-ion cells must be commercially constructed and specifically approved by the Formula Hybrid + Electric rules committee or must comply with the requirements detailed in ARTICLE EV11. EV1.1.6 Manufacturers data sheets showing the rated specification of the accumulator cell(s) which are used must be provided in the ESF along with their number and configurations. EV2.2 Accumulator Segments EV1.1.7 The accumulator segments must be separated so that the segment limits in Table 8 are met by an electrically insulating barrier meeting the TS/GLV requirements in EV5.4. For all lithium based cell chemistries, these barriers must also be fire resistant (according to UL94-V0, FAR25 or equivalent). EV1.1.8 The barrier must be non-conducting, fire retardant (UL94V0) and provide a complete barrier to the spread of arc or fire. It must have a fire resistance equal to 1/8\" FR4 fiberglass, such as Garolite G-9 11 . EV2.3 Accumulator Containers EV1.1.9 All devices which store the tractive system energy must be enclosed in (an) accumulator container(s). EV1.1.10 Each accumulator container must be labeled with the words “ACCUMULATOR – ALWAYS ENERGIZED”. (This is in addition to the TSV label requirements in EV3.1.5). Labels must be 3 inches by 9 inches with bold red lettering on a white background and be clearly visible on all sides of the accumulator container that could be exposed during operation and/or maintenance of the car and at least one such label must be visible with the bodywork in place 12 . Figure 28 - Accumulator Sticker 11 https://www.mcmaster.com/grade-g-9-garolite/ 12 Self-adhesive stickers are available from the organizers on request. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV1.1.11 If the accumulator container(s) is not easily accessible during Electrical Tech Inspection, detailed pictures of the internals taken during assembly must be provided. If the pictures do not adequately depict the accumulator, it may be necessary to disassemble the accumulator to pass Electrical Tech Inspection. EV1.1.12 The accumulator container may not contain circuitry or components other than the accumulator itself and necessary supporting circuitry such as the AIRs, AMS, IMD and pre- charge circuitry. For example, the accumulator container may not contain the motor controller, TSV or any GLV circuits other than those required for necessary accumulator functions. Note 1: The purpose of this requirement is to allow work on other parts of the tractive system without opening the accumulator container and exposing (always-live) high voltage. Note 2: It is possible to meet this requirement by dividing a large box into an accumulator section and a non-accumulator section, with an insulating barrier between them. In this case, it must be possible to open the non-accumulator section while keeping the accumulator section closed, meeting the requirements of the “finger probe” test. See: EV3.1.3. EV1.1.13 If spare accumulators are to be used then they all must be of the same size, weight and type as those that are replaced. Spare accumulator packs must be presented at Electrical Tech Inspection. EV2.4 Accumulator Container –Construction EV1.1.14 The accumulator container(s) must be built of mechanically robust material. EV1.1.15 The container material must be fire resistant according to UL94-V0, FAR25 or equivalent. EV1.1.16 If any part of the accumulator container is made of electrically conductive material, an insulating barrier meeting the TS/GLV requirements in EV5.4 must be affixed to the inside wall of the accumulator container such that the barrier provides 100% coverage of all electrically conductive container components. EV1.1.17 All conductive penetrations (mounting hardware, hinges, latches etc.) must be covered on the inside of the accumulator container by an insulating material meeting EV5.4. EV1.1.18 All conductive surfaces on the outside of the container must have a low-resistance connection to the GLV system ground. (See EV8.1.1) EV1.1.19 The cells and/or segments must be appropriately secured against loosening inside the container. Internal structural elements must be either non-thermoplastic or have a melting temperature of greater than 150 degrees C. EV1.1.20 All accumulator devices must be attached to the accumulator container(s) with mechanical fasteners. EV1.1.21 Holes in the container are only allowed for the wiring-harness, ventilation, cooling or fasteners. All wiring harness holes must be sealed according to EV3.3.1. Openings for ventilation must be designed to prevent water entry from rain or road spray, and to minimize spread of fire. Completely open side pods are not allowed. EV1.1.22 Any accumulator that may vent an explosive gas must have a ventilation system or pressure relief valve to prevent the vented gas from reaching an explosive concentration. EV1.1.23 Every accumulator container which is completely sealed must have a pressure relief valve to prevent high-pressure in the container. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV1.1.24 An Accumulator Container that is built to an approved 2023 or 2024 FSAE Structural Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with Formula Hybrid + Electric Rules EV2.4.1-EV2.4.7. EV2.5 Accumulator Container – Mounting EV1.1.25 All accumulator containers must lie within the surface envelope as defined by IC1.5.1 EV1.1.26 All accumulator containers must be rigidly mounted to the chassis to prevent the containers from loosening during the dynamic events or possible accidents. EV1.1.27 The mounting system for the accumulator container must be designed to withstand forces from a 40g deceleration in the horizontal plane and 20 g deceleration in the vertical plane. The calculations/tests proving this must be part of the SES. EV1.1.28 For tube frame cars, each accumulator container must be attached to the Frame by a minimum of four (4) 8 mm Metric Grade 8.8 or 5/16 inch Grade 5 bolts. EV1.1.29 For monocoques: 1. Each accumulator container must be attached to the Frame at a minimum of four (4) points, each capable of carrying a load in any direction of 400 Newtons x the mass of the accumulator in kgs, i.e. if the accumulator has a mass of 50 kgs, each attachment point must be able to carry a load of 20kN in any direction. 2. The laminate, mounting plates, backing plates and inserts must have sufficient shear area, weld area and strength to carry the specified load in any direction. Data obtained from the laminate perimeter shear strength test (T3.30) should be used to prove adequate shear area is provided*** 3. Each attachment point requires a minimum of one (1) 8 mm Metric Grade 8.8 or 5/16 inch SAE Grade 5 bolt. 4. Each attachment point requires steel backing plates with a minimum thickness of 2 mm. Alternate materials may be used for backing plates if equivalency is approved. 5. The calculations/tests must be included in the SES. EV2.5.6 An Accumulator Mounting system that is built to an approved 2023 or 2024 FSAE Structural Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with Formula Hybrid + Electric Rules EV2.5, and the FSAE SES may be submitted in place of the Formula Hybrid + Electric specific SES required by EV2.5.3. EV2.6 Accumulator Fusing EV1.1.30 Every accumulator container must contain at least one fuse in the high-current TS path, located on the same side of the AIRs as the battery or capacitor. These fuses must comply with EV5.5.4. EV1.1.31 All details and documentation for fuse, fusible link and/or internal over current protection must be included in the ESF. EV1.1.32 Parallel then Series (nPmS) connections. If more than one battery cell or capacitor is used to form a set of cells in parallel and those parallel groups are then combined in series (Figure 29) then either: 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 a) Each cell must be protected with a fuse or fusible link with a current rating less than or equal to 50% of the calculated short-circuit current (Isc) of the cell or capacitor, where Isc = Vnom / IR(Ω). (The nominal cell voltage divided by its dc internal resistance).. The fuse or fusible link must be rated for the full tractive system voltage, unless the special conditions in EV2.6.5 (Fuse Voltage Ratings) are met. OR b) Manufacturer’s documentation must be provided that certifies that it is acceptable to use this number of single cells in parallel without fusing. This certification must be included in the ESF. (Commercially assembled packs or modules installed per manufacturer's instructions may be exempt from this requirement upon application to the rules committee.) Note: if option (a) is used, fuse j in Figure 27 may be omitted if all conductors carrying the entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, each with current rating i, the conductors must be sized for a total current i total = n·i) Figure 29 - Example nP3S Configuration EV1.1.33 Series then Parallel (nSmP) connections. If strings of batteries or capacitors in series are then combined in parallel (Figure 30) then each string must be individually fused per EV5.5.4. Fuse j in Figure 30 may be omitted if all conductors carrying the entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, each with current rating i, the conductors must be sized for a total current 푖 푡표푡푎푙 = 푛· 푖 without fuse j, or may be sized for a lower current j if fuse j is included.) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 All fuses used in nSmP configurations must be rated for the full tractive system voltage. Figure 30 – Example 5S4P Configuration EV1.1.34 Fuse Voltage Ratings. Although fuses in the tractive system must normally be rated for the full tractive system voltage, under certain conditions an exception can be made for fuses or fusible links for individual cells or capacitors. These conditions, defined in EV2.6.1, apply to fuses or fusible links used to meet EV2.6.3and to any fusible links that are included in the accumulator construction. These requirements are intended to ensure coordination between cell fuses and pack master fuses. The following conditions must be met to allow reduced voltage ratings: The series fuse used to satisfy EV2.6.1 is rated at a current less than or equal to one half of the sum of the parallel low-voltage fuses or fusible links, AND 1. fuse or fusible link current rating is specified in manufacturer’s data OR 2. suitable team generated test data is provided, demonstrating the ability to: (i) Carry full rated current for at least 10 minutes with less than 50° C temperature rise. (ii) Trip at 300% of rated current. (iii) Interrupt current equal to the maximum short circuit current expected without producing heat, sparks, or flames that might damage nearby cells. For example, in Figure 29, this requirement is met if 푗 ≤ 푛· 푖 3 , where i is the cell fuse or link rating, n is the number of cells in parallel and j is the master series fuse rating. EV2.7 Accumulator - Segment Maintenance Disconnect EV1.1.35 A Segment Maintenance Disconnect (SMD) must be installed between each accumulator segment See EV2.2). The SMD must be used whenever the accumulator containers are opened for maintenance and whenever accumulator segments are removed from the container. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: If the high-voltage disconnect (HVD, section EV2.9) is located between segments, it satisfies the requirement for an SMD between those segments. EV1.1.36 The SMD may be implemented with a switch or a removable maintenance plug. Devices capable of remote operation such as relays or contactors may not be used. There must be a positive means of securing the SMD in the disconnected state; for example, a lockable switch can be secured with a zip-tie or a clip. EV1.1.37 SMD methods requiring tools to isolate the segments are not permitted. EV1.1.38 If the SMD is operated with the accumulator container open, any removable part used with the SMD (e.g., a removable plug or clip) must be non-conductive on its external surfaces. i.e. it will not cause a short if dropped into the accumulator. This requirement may be waived on application to the rules committee if connection to battery terminals is prevented by barriers or location. EV1.1.39 Devices used for SMDs must be rated for the expected battery current and voltages EV2.8 Accumulator - Isolation Relays EV1.1.40 At least two isolation relays (AIRs) must be installed in every accumulator container, or in the accumulator section of a segmented container (See EV2.3.4 Note 2) such that no TS voltage will be present outside the accumulator or accumulator section when the TS is shut down. Note: AIRs must be before TSMPs, such that TSMPs de-energize when AIRs are open. EV1.1.41 The accumulator isolation relays must be of a normally open (N.O.) type which are held in the closed position by the current flowing through the shutdown loop (EV7.1). When this flow of current is interrupted, the AIRs must disconnect both poles of the accumulator such that no TS voltage is present outside of the accumulator container(s). EV1.1.42 When the AIRs are opened, the voltage in the tractive system must drop to under 60 VDC (or 42 VAC RMS) in less than five seconds. EV1.1.43 The AIR contacts must be protected by Pre-Charge and Discharge circuitry, See EV2.10. EV1.1.44 If the AIR coils are not equipped with transient suppression by the manufacturer then Transient suppressors 13 must be added in parallel with the AIR coils. EV1.1.45 AIRs containing mercury are not permitted. 13 Transient suppressors protect the circuitry in the shutdown loop from di/dt voltage spikes. One acceptable device is Littelfuse 5KP43CA. (Mouser Part number 576-5KP43CA.) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 31 - Example Accumulator Segmenting EV2.9 Accumulator - High Voltage Disconnect EV1.1.46 Each vehicle must be fitted with a High Voltage Disconnect (HVD) making it possible to quickly and positively break the current path of the tractive system accumulator. This can be accomplished by turning off a disconnect switch, disconnecting the main connector or removing an accessible element such as a fuse. A contactor or AIR device may not be used as an HVD. EV1.1.47 The HVD must be operable without the use of tools. EV1.1.48 It must be possible to disconnect the HVD within 10 seconds in ready-to-race condition. Note: Ready-to-race means that the car is fully assembled, including having all body panels in position, with a driver seated in the vehicle and without the car jacked up. EV1.1.49 The team must demonstrate this during Electrical Tech Inspection. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV1.1.50 The disconnect must be clearly marked with \"HVD\". Multiple disconnects must be marked “HVD n of m”, such as “HVD 1 of 3”, HVD 2 of 3”, etc. EV1.1.51 There must be a positive means of securing the HVD in the disconnected state; for example, a lockable switch can be secured with a zip-tie or a clip. Note: A removable plug will meet this requirement if the plug is secured or fully removed such that it cannot accidentally reconnect. EV1.1.52 The HVD must be opened as part of the Lockout/Tagout procedure. See EV12.1.1. EV1.1.53 The recommended electrical location for the HVD is near the middle of the accumulator string. In this case, it can serve as one of the SMDs. (See Figure 31). Note: The HVD must be prior to TSMPs such that TSMPs are de-energized when the HVD is open. EV2.10 Accumulator - Pre-Charge and Discharge Circuits One particularly dangerous failure mode in an electric vehicle is AIR contacts that have welded shut. When the current through the AIR coils is interrupted, the AIRs should open, isolating the potentially lethal voltages within the accumulator container. If the AIRs are welded shut, these voltages will be present outside the accumulator even though the system is presumably shut down. Welding is caused by high instantaneous currents across the contacts. This can be avoided by a correctly functioning pre-charge circuit. EV1.1.54 Precharge The AIR contacts must be protected by a circuit that will pre-charge the intermediate circuit to at least 90% of the rated accumulator voltage before completing the intermediate circuit by closing the second AIR. The pre-charge circuit must be disabled if the shutdown circuit is deactivated; see EV7.1. i.e. the pre-charge circuit must not be able to pre-charge the system if the shutdown circuit is open. EV1.1.55 It is allowed to pre-charge the intermediate circuit for a conservatively calculated time before closing the second AIR. Monitoring the intermediate circuit voltage is not required. EV1.1.56 The pre-charge circuit must operate regardless of the sequence of operations used to energize the vehicle, including, for example, restarting after being automatically shut down by a safety circuit. EV1.1.57 Discharge If a discharge circuit is needed to meet the requirements of EV2.8.3, it must be designed to handle the maximum expected discharge current for at least 15 seconds. The calculations determining the component values must be part of the ESF. EV1.1.58 The discharge circuit must be fail-safe. i.e. wired in a way that it is always active whenever the shutdown circuit is open or de-energized. EV1.1.59 For always-on discharge circuits and other circuits that dissipate significant power for extended time periods, calculations of the maximum operating temperature of the power dissipating components (e.g., resistors) must be included in the ESF. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Resistors operating at their rated power level often operate at 200° C or more. Insulating materials in proximity to resistors require care to ensure that they are not overheated. Resistors that dissipate more than 50% of their power rating and resistors that dissipate significant power without much open space around them will require additional care to ensure they are safe. It is recommended that teams use resistors rated for at least double the maximum predicted power dissipation, document these design details in the ESF, and mount them that such that heat dissipation is not impeded. Note also that some resistors require external heat sinks in order to dissipate their rated power. Using these resistors for significant power dissipation will require additional documentation of the heat sink design or testing. EV1.1.60 Fuses in the accumulator pre-charge or discharge current paths are not permitted. EV2.11 Accumulator – Accumulator Management System (AMS) EV1.1.61 Each accumulator must be monitored by an accumulator management system (AMS) whenever the tractive system is active or the accumulator is connected to a charger. Note: Some parts of EV2.11 may be waived for commercially manufactured accumulator assemblies. Requests must be submitted to the Formula Hybrid + Electric rules committee at least one month before the competition. EV1.1.62 The AMS must monitor all critical voltages and temperatures in the accumulator as well the integrity of all its voltage and temperature inputs. If an out-of-range or a malfunction is detected, it must shut down the electrical systems, open the AIRs and shut down the I.C. drive system within 60 seconds. 14 (Some GLV systems may remain energized – See Figure 37) EV1.1.63 The tractive system must remain disabled until manually reset by a person other than the driver. It must not be possible for the driver to re-activate the tractive system from within the car in case of an AMS fault. AMS faults must be latched using a mechanical relay circuit (see Appendix G). Digital logic or microcontrollers may not be used for this function. EV1.1.64 The AMS must continuously measure cell voltages in order to keep those voltages inside the allowed minimum and maximums stated in the cell data-sheet. (See Table 9) Notes: 1. If individual cells are directly connected in parallel, only one voltage measurement is required for that group. (Measured at the parallel connections, outside of the cell fuses. (See Figure 29) 2. Exemptions may be granted for commercial accumulator assemblies that do not meet these requirements. 14 Teams may wish to also use the AMS to detect a low voltage or high temperature before these cross the critical threshold, and to alert the driver and/or decrease the power drawn from the accumulator, so as to mitigate the problem before the vehicle must be shut down. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Chemistry Maximum number of cells per voltage measurement PbAcid 6 NiMh 6 Lithium based 1 Table 9 - AMS Voltage Monitoring EV1.1.65 The AMS must monitor the temperature of the minimum number of cells in the accumulator as specified in Table 10 below. The monitored cells must be equally distributed over the accumulator container(s). Chemistry Cells monitored PbAcid 5% UltraCap 10% NiMh 10% Li-Ion 30% Table 10 – AMS Temperature Monitoring NOTE: It is acceptable to monitor multiple cells with one sensor if this sensor has direct contact to all monitored cells. It is also acceptable to use maximum-temperature detection schemes such as diode-paralleled thermisters or zener diodes to monitor multiple cells on a single circuit. NOTE: Teams should monitor the temperature of all cells. NOTE: AMS temperature monitoring at levels less than the requirements in Table 10 may be permitted, on application to the tech committee, for commercial accumulator modules contain integrated temperature sensors. EV1.1.66 All voltage sense wires to the AMS must be protected by fuses or resistors (located as close as possible to the energy source) so that they cannot exceed their current carrying capacity in the event of a short circuit. Note: If the AMS monitoring board is directly connected to the cell, it is acceptable to have a fuse or resistor integrated into the monitoring board. EV1.1.67 Input channels of the AMS used for different segments of the accumulator must be isolated from one another with isolation rated for at least the maximum tractive system voltage. This isolation is also required between channels or sections of the AMS that are connected to different sides of a SMD, HVD, fuse, or AIR. EV1.1.68 Any GLV connection to the AMS must be galvanically isolated from the TSV. This isolation must be documented in the ESF. Note: Per EV2.8.2, AMS connections that are not isolated, such as cell sense wires, cannot exit the accumulator container, unless they are isolated by additional relays when the AIRs are 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 off. This requirement should be considered in the selection of an AMS system for a vehicle that uses more than one accumulator container. The need for additional isolation relays may also be avoided by utilizing a virtual accumulator. See EV2.12 EV1.1.69 Team-Designed Accumulator Management Systems. Teams may design and build their own Accumulator Management Systems. However, microprocessor-based accumulator management systems are subject to the following restrictions: 1. The processor must be dedicated to the AMS function only. However, it may communicate with other systems through shared peripherals or other physical links. 2. The AMS circuit board must include a watchdog timer. It is strongly recommended that teams include the ability to test the watchdog function in their designs. EV1.1.70 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must show the latched fault rather than instantaneous status of the AMS. Other indication methods may be used upon application for a variance with the rules committee EV2.12 Virtual Accumulators. In many cases, difficulties can be encountered when multiple accumulator containers are monitored by a single AMS. Therefore, a vehicle may use a single AMS with more than one accumulator container by defining a ‘Virtual Accumulator’ as provided below. See: Figure 32. EV1.1.71 Each housing of the virtual accumulator container must be permanently installed in the vehicle. i.e. not designed to be removed for charging or exchange. EV1.1.72 The conduit(s) connecting accumulator housings must be flexible metallic liquid-tight steel electrical conduit (NEC type LFMC) securely fastened at each end with fittings rated for metallic LFMC. EV1.1.73 Connectors between the interconnecting conduit and the housings containing the accumulators, and along the length of the interconnecting conduit must be rated for LFMC conduit. EV1.1.74 The conduit must be red, or painted red 15 . EV1.1.75 Any unsupported length of the interconnect conduit may be no greater than 150 mm. i.e. it must be physically supported at least every 150 mm to ensure that it cannot droop or be snagged by something on the track. The interconnect conduit must be contained entirely within the chassis structure. EV1.1.76 Separate conduits must be provided between housings for: 1. Individual tractive System conductors. (Only one high-current TS conductor may pass through any one conduit.) 2. AMS wiring such as cell voltage sense wires that are at TS potential. Note: GLV wiring may be run in its own conduit or outside of conduit. 15 LFMC conduit is available with a red jacket - see for example: http://www.afcweb.com/liquid-tuff-conduit/ul- liquidtight-flexible-steel-conduit-type-lfmc/ 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV1.1.77 All rules relating to accumulator housings (including, but not limited to firewalls, location etc.) also apply to the interconnect conduit. EV1.1.78 If the interconnect conduit is the lowest point in the virtual housing it must have a 3-5 mm drain hole in its lowest point to allow accumulated fluids to drain. EV1.1.79 Segmentation requirements must be met considering the housings individually, and as an interconnected system. For example, AMS wires must be grouped according to segment and must maintain that grouping through to the AMS. EV1.1.80 Each individual housing must comply with TS fusing requirements. (See EV2.6) i.e., there must be at least one TS fuse in each container (See Figure 32). EV1.1.81 A High Voltage Disconnect (HVD) can be installed in the conductors connecting accumulator housings if mounted in a suitable enclosure. In this case, the accumulator boundary extends to include conduit and the HVD enclosure. Figure 32 - Virtual Accumulator example 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "ENERGY STORAGE (ACCUMULATORS) EV2.1 Permitted Devices EV1.1.4 The following accumulator devices are acceptable: batteries (e.g. lithium-ion, NiMH, lead acid and similar battery chemistries) and capacitors, such as super caps or ultracaps. The following accumulator devices are not permitted: molten salt batteries, thermal batteries, fuel cells, mechanical storage such as flywheels or hydraulic accumulators. EV1.1.5 Accumulator systems using pouch-type lithium-ion cells must be commercially constructed and specifically approved by the Formula Hybrid + Electric rules committee or must comply with the requirements detailed in ARTICLE EV11. EV1.1.6 Manufacturers data sheets showing the rated specification of the accumulator cell(s) which are used must be provided in the ESF along with their number and configurations. EV2.2 Accumulator Segments EV1.1.7 The accumulator segments must be separated so that the segment limits in Table 8 are met by an electrically insulating barrier meeting the TS/GLV requirements in EV5.4. For all lithium based cell chemistries, these barriers must also be fire resistant (according to UL94-V0, FAR25 or equivalent). EV1.1.8 The barrier must be non-conducting, fire retardant (UL94V0) and provide a complete barrier to the spread of arc or fire. It must have a fire resistance equal to 1/8\" FR4 fiberglass, such as Garolite G-9 11 . EV2.3 Accumulator Containers EV1.1.9 All devices which store the tractive system energy must be enclosed in (an) accumulator container(s). EV1.1.10 Each accumulator container must be labeled with the words “ACCUMULATOR – ALWAYS ENERGIZED”. (This is in addition to the TSV label requirements in EV3.1.5). Labels must be 3 inches by 9 inches with bold red lettering on a white background and be clearly visible on all sides of the accumulator container that could be exposed during operation and/or maintenance of the car and at least one such label must be visible with the bodywork in place 12 . Figure 28 - Accumulator Sticker 11 https://www.mcmaster.com/grade-g-9-garolite/ 12 Self-adhesive stickers are available from the organizers on request.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV2", - "ruleContent": "TRACTIVE SYSTEM WIRING AND CONSTRUCTION EV2.13 Positioning of tractive system parts EV2.1.1 Housings and/or covers must prevent inadvertent human contact with any part of the tractive system circuitry. This includes people working on or inside the vehicle. Covers must be secure and adequately rigid. Body panels that must be removed to access other components, etc. are not a substitute for enclosing tractive system conductors. EV2.1.2 Tractive system components and wiring must be physically protected from damage by rotating and/or moving parts and must be isolated from fuel system components. EV2.1.3 Finger Probe Test: Inspectors must not be able to touch any tractive system electrical connection using a 10 cm long, 0.6 cm diameter non-conductive test probe. Figure 33 - Finger Probe EV2.1.4 Housings constructed of electrically conductive material must have a minimum-resistance connection to GLV system ground. (See: ARTICLE EV8). EV2.1.5 Every housing or enclosure containing parts of the tractive system must be labeled with the words “Danger”, “High Voltage” and a black lightning bolt on a yellow background. The label must be at least 4 x 6 cm. (See Figure 34 below.) Figure 34 - High Voltage Label 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV2.1.6 All parts belonging to the tractive system including conduit, cables and wiring must be contained within the Surface Envelope of the vehicle (See Figure 25) such that they are protected against being damaged in case of a crash or roll-over situation or being caught (snagged) by road hazards. EV2.1.7 If tractive system parts are mounted in a position where damage could occur from a rear or side impact (below 350 mm from the ground), such as side mounted accumulators or rear mounted motors, they must be protected by a fully triangulated structure meeting the requirements of T3.3, or approved equivalent per T3.3.2 or T3.7. EV2.1.8 Drive motors that are not located fully within the frame, must be protected by an interlock. This interlock must be configured such that the Shutdown Circuit, EV7.1, will be opened if any part of the driven wheel assembly is dislocated from the frame. Drive motors located outside the frame must still comply with EV7.1.3 EV2.1.9 No part of the tractive-system may project below the lower surface of the frame or the monocoque in either side or front view. EV2.1.10 Tractive systems and containers must be protected from moisture in the form of rain or puddles. EV2.1.11 Electric motors, accumulators or electronics that use fluid coolants must comply with T8.1 and T8.2. EV2.14 TS wiring and conduit EV2.1.12 All tractive system wiring must be done to professional standards with adequate strain relief and protection from loosening due to vibration etc. EV2.1.13 Soldering in the high current path is prohibited. Exception: surface-mount fuses and similar components that are designed for soldering and the rated current. 1. Fuses must be mechanically supported by a PCB or equivalent, following manufacturer's instructions (e.g. recommended footprint). Free-hanging fuses connected by wires are not allowed. 2. Team must submit a design document showing that PCB traces on these boards are properly designed for the current carried on all circuits. The battery design must still comply with EV2.6, Accumulator Fusing. EV2.1.14 All wires, terminals and other conductors used in the tractive system must be sized appropriately for the continuous rating of the fuse which protects them. Wire size must comply with the table in Appendix E or alternately, with cable manufacturer's published current rating, if greater. Wires must be marked with wire gauge, temperature rating and insulation voltage rating 16 . EV2.1.15 The minimum acceptable temperature rating for TS wiring is 90°C. This requirement applies to wire and cable; it does not apply to conduit. EV2.1.16 All tractive system wiring that runs outside of electrical enclosures must be either: 1. Orange shielded, dual-insulated cable rated for automotive application, at least 5 mm overall cable diameter 16 Alternatively a manufacturer’s part number printed on the wire will be sufficient if this number can be referenced to a manufacturer’s data sheet. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 OR 2. Enclosed in ORANGE non-conductive conduit (except for Virtual Accumulator systems which must use RED conduit. (See EV2.12) Note: UL Listed Conduit of other colors may be painted or wrapped with colored tape. EV2.1.17 Conduit must be non-metallic and UL Listed 17 as: 1. Conduit under UL1660, UL651 or UL651A OR 2. Non-Metallic Protective Tubing (NMPT) under UL1696. EV2.1.18 Conduit runs must be one piece. Conduit splices and/or transitions between conduit and shielded, dual-insulated cable may only occur within an enclosure and must comply with section EV3.3. EV2.1.19 Wiring to outboard wheel motors may be in conduit or may use shielded dual insulated cables. All other tractive system wiring that runs outside the vehicle frame (but within the roll envelope) must be within conduit. EV2.1.20 When shielded dual-insulated cable is used, the shield must be grounded at both ends of the cable. EV2.1.21 Wiring from motor controller to motor does not require fusing but must be sized for the controller maximum continuous output current, or per manufacturers instructions. EV2.15 TS Cable Strain Relief EV2.1.22 Cable or conduit exiting or entering a tractive system enclosure or the drive motor must use a liquid-tight fitting proving strain relief to the cable or conduit such that it will withstand a force of 200N without straining the cable 18 . The fitting must be one of the following: 1. For conduit: A conduit fitting rated for use with the conduit used. 2. For shielded, dual insulated cable: (i) A cable gland rated for use with the cable used OR (ii) A connector rated for use with the cable used. The connector must provide termination of the shield to ground and latch in place securely enough to meet the strain-relief requirements listed above. Both portions of the connector must meet or exceed IEC standards IP53 (mated) and IP20 (unmated). EV2.1.23 Connections to drive motors that do not have provision for conduit connection are allowed to separate the strain-relief and insulation requirements. Specifically: 1. Cable strain relief must be capable of withstanding a 200N force, and must be within 15 cm of the motor terminals. 17 \"UL Recognized\" is not the same as \"UL Listed\". 18 This will be tested during the electrical tech inspection by pulling on the conduit using a spring scale. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Conventional cable strain relief fittings, mechanical clamps or saddles may be used, however the integrity of the cable insulation must be protected. AND 2. the TS wiring must pass EV3.1.3 (finger probe test) For example, a motor with stud terminals for power input could use a 3D printed plastic cover on the terminals and suitable cable clamps within 15 cm to provide strain relief. EV2.16 TS Electrical Connections EV2.1.24 Tractive system connections must be designed so that they use intentional current paths through conductors such as copper or aluminum 19 . Steel is not permitted. EV2.1.25 Tractive system connections must not include compressible material such as plastic or phenolic in the stack-up. (i.e. components identified as #1 in Figure 35) Figure 35 - Connection Stack-up Note: The bolt shown in Figure 35 can be steel since it is not the primary conductor. However the washer (#2), if used, must not be steel, since it is in the primary conduction path. If possible, no washer should be used in this location, so that the two primary conductors are directly clamped together. EV2.1.26 Conductors and terminals must not be modified from their original size/shape and must be appropriate for the connection being made. EV2.1.27 Bolts with nylon inserts (Nylocks, etc.) and thread-locking compounds (Loctite, etc.) are not permitted. EV2.1.28 All bolted or threaded connections must be torqued properly. The use of a contrasting indicator paste 20 is strongly recommended to indicate completion of proper torqueing procedures. 19 Aluminum conductors may be used, but require specific approval from the Formula Hybrid + Electric rules committee. 20 Such as DYKEM® Cross-Check Torque Seal®. See: https://www.youtube.com/watch?v=W80C4XfyCQE 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Recommended TS Connection Fasteners Fasteners specified and/or supplied by the component manufacturer. Bolts with Belleville (conical) metal locking washers. All-metal positive locking nuts. (See Figure 23) Table 11 - Recommended TS Connection Fasteners EV2.17 Motor Controllers Note: Commercially available motor controllers containing boost converters that have internal voltages greater than 300 VDC may be used provided the unit is approved in writing by the rules committee. EV2.1.29 The tractive system motor(s) must be connected to the accumulator through a motor controller. Bypassing the control system and connecting the tractive system accumulator directly to the motor(s) is prohibited. EV2.1.30 The accelerator control must be a right-foot-operated foot pedal. Refer to IC1.6 for specific requirements of the accelerator control EV2.1.31 The foot pedal must return to its original, rearward position when released. The foot pedal must have positive stops at both ends of its travel, preventing its sensors from being damaged or overstressed. EV2.1.32 All acceleration control signals (between the accelerator pedal and the motor controller) must have error checking. For analog acceleration control signals, this error checking must detect open circuit, short to ground and short to sensor power For digital acceleration control signals, this error checking must detect a loss of communication. EV2.1.33 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, must be galvanically isolated and referenced to GLV ground. Note: If these capabilities are built into the motor controller, then no additional error-checking circuitry is required. EV2.1.34 The accelerator signal limit shutoff may be tested during electrical tech inspection by replicating any of the fault conditions listed in EV3.5.4 EV2.1.35 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, must be galvanically isolated and referenced to GLV ground.. 21 . EV2.1.36 Motor controller inputs that are galvanically isolated from the TSV may be run throughout the vehicle, but must be positively bonded to GLV ground. 21 For commercial controllers that do not provide isolated throttle inputs, a remote throttle actuator can be fabricated with a (grounded) Bowden cable and non-conductive linkages. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV2.1.37 TS drive motors must spin freely when the TS system is in deactivated state, and when transitioned to a deactivated state. EV2.18 Energy Meter EV2.1.38 Vehicles with accumulator energy capacities in excess of the limits in Table 1 must be fitted with an Energy Meter provided by the organizer to compete in the endurance event. EV2.1.39 All power flowing between the accumulator and the Tractive System must pass through the Energy Meter. EV2.1.40 FH+E does not impose POWER limits and so the only function of the energy meter is to determine valid laps for the endurance event. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "TRACTIVE SYSTEM WIRING AND CONSTRUCTION EV2.13 Positioning of tractive system parts EV2.1.1 Housings and/or covers must prevent inadvertent human contact with any part of the tractive system circuitry. This includes people working on or inside the vehicle. Covers must be secure and adequately rigid. Body panels that must be removed to access other components, etc. are not a substitute for enclosing tractive system conductors. EV2.1.2 Tractive system components and wiring must be physically protected from damage by rotating and/or moving parts and must be isolated from fuel system components. EV2.1.3 Finger Probe Test: Inspectors must not be able to touch any tractive system electrical connection using a 10 cm long, 0.6 cm diameter non-conductive test probe. Figure 33 - Finger Probe EV2.1.4 Housings constructed of electrically conductive material must have a minimum-resistance connection to GLV system ground. (See: ARTICLE EV8). EV2.1.5 Every housing or enclosure containing parts of the tractive system must be labeled with the words “Danger”, “High Voltage” and a black lightning bolt on a yellow background. The label must be at least 4 x 6 cm. (See Figure 34 below.) Figure 34 - High Voltage Label", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV3", - "ruleContent": "GROUNDED LOW VOLTAGE SYSTEM EV2.19 Grounded Low Voltage System (GLV) EV3.1.1 The GLV system may not have a voltage greater than that listed in Table 8. EV3.1.2 All GLV batteries must be attached securely to the frame. EV3.1.3 The hot (ungrounded) terminal of the battery must be insulated. EV3.1.4 One terminal of the GLV battery or other GLV power source must be connected to the chassis by a stranded ground wire or flexible strap, with a minimum size of 12 AWG or equivalent cross-section. For vehicles without metal chassis members, the GLV system must be connected to conductive parts to meet the grounding requirements in EV8.1.2. EV3.1.5 The ground wire must run directly from the battery to the nearest frame ground and must be properly secured at both ends. Note: Through-bolting a ring terminal to a gusset plate or dedicated tab welded to the frame is highly recommended. EV3.1.6 Any wet-cell battery located in the driver compartment must be enclosed in a nonconductive marine-type container or equivalent and include a layer of 1.5 mm aluminum or equivalent between the container and driver. EV3.1.7 GLV Battery Pack 1. Team-constructed GLV batteries are allowed. (i) GLV batteries up to 16.8V (4s LiIon) may be used without a battery management system. (ii) GLV batteries 16.8V< MaxV<60V must measure the voltage of all series cells and the temperature of 30% of cells. 2. The GLV battery shall have appropriate over-current circuit protection. 3. Cells wired in parallel must have branch-level overcurrent protection. 4. Team-constructed GLV batteries shall be housed in a container meeting min. firewall rules (1.6mm aluminum baseline) with a vent/pressure relief path directed away from the driver. 5. GLV / TSV isolation rules still apply. EV3.1.8 Orange wire and/or conduit may not be used in GLV wiring. Exception: multi-conductor telecom-type cables containing orange color-coded wires may be used. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "GROUNDED LOW VOLTAGE SYSTEM EV2.19 Grounded Low Voltage System (GLV) EV3.1.1 The GLV system may not have a voltage greater than that listed in Table 8. EV3.1.2 All GLV batteries must be attached securely to the frame. EV3.1.3 The hot (ungrounded) terminal of the battery must be insulated. EV3.1.4 One terminal of the GLV battery or other GLV power source must be connected to the chassis by a stranded ground wire or flexible strap, with a minimum size of 12 AWG or equivalent cross-section. For vehicles without metal chassis members, the GLV system must be connected to conductive parts to meet the grounding requirements in EV8.1.2. EV3.1.5 The ground wire must run directly from the battery to the nearest frame ground and must be properly secured at both ends. Note: Through-bolting a ring terminal to a gusset plate or dedicated tab welded to the frame is highly recommended. EV3.1.6 Any wet-cell battery located in the driver compartment must be enclosed in a nonconductive marine-type container or equivalent and include a layer of 1.5 mm aluminum or equivalent between the container and driver. EV3.1.7 GLV Battery Pack 1. Team-constructed GLV batteries are allowed. (i) GLV batteries up to 16.8V (4s LiIon) may be used without a battery management system. (ii) GLV batteries 16.8V< MaxV<60V must measure the voltage of all series cells and the temperature of 30% of cells. 2. The GLV battery shall have appropriate over-current circuit protection. 3. Cells wired in parallel must have branch-level overcurrent protection. 4. Team-constructed GLV batteries shall be housed in a container meeting min. firewall rules (1.6mm aluminum baseline) with a vent/pressure relief path directed away from the driver. 5. GLV / TSV isolation rules still apply. EV3.1.8 Orange wire and/or conduit may not be used in GLV wiring. Exception: multi-conductor telecom-type cables containing orange color-coded wires may be used.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV4", - "ruleContent": "TRACTIVE SYSTEM VOLTAGE ISOLATION Most Formula Hybrid + Electric vehicles contain voltages that could cause injury or death if they came in contact with a human body. In addition, all Formula Hybrid + Electric accumulator systems are capable of storing enough energy to cause injury, blindness or death if that energy is released unintentionally. To minimize these risks, all tractive system components and wiring must at a minimum comply with the following rules. EV2.20 Isolation Requirements EV4.1.1 All TS wiring and components must be galvanically (electrically) isolated from GLV by separation and/or insulation. EV4.1.2 All interaction between TS and GLV must be by means of galvanically isolated devices such as opto-couplers, transformers, digital isolators or isolated dc-dc converters. EV4.1.3 All connections from external devices such as laptops to a tractive system component must be galvanically isolated, and include a connection between the external device ground and the vehicle frame ground. EV4.1.4 All isolation devices must be rated for an isolation voltage of at least twice the maximum TS voltage. EV2.21 General EV4.1.5 Tractive system and GLV conductors must not run through the same conduit. EV4.1.6 Tractive system and GLV wiring must not both be present in one connector. Connectors with an integral interlock such as the Amphenol SurLok Plus are exempted from this requirement. EV4.1.7 TS wiring must be separated from the driver's compartment by a firewall. EV4.1.8 TS wiring must not be present behind the instrument panel. TS wiring must not be present in the cockpit unless enclosed in conduit and separated from the driver by a firewall. TS potential must not be present on accelerator pedal or other controls in the cockpit. EV2.22 Insulation, Spacing and Segregation EV4.1.9 Tractive system main current path wiring and any TS circuits that are not protected by over- current devices must be constructed using spacing, insulation, or both, in order to prevent short circuits between TS conductors. Minimum spacings are listed in Table 12. Insulation used to meet this requirement must adhere to EV5.4. EV4.1.10 Where GLV and TS circuits are present in the same enclosure, they must be segregated (in addition to any insulating covering on the wire) by: 1. at least the distance specified in Table 12 OR 2. a barrier material meeting the TS/GLV requirements of EV5.4 EV4.1.11 All required spacings must be clearly defined. Components and cables must be securely restrained to prevent movement and maintain spacing. Note: Grouping TS and GLV wiring into separate regions of an enclosure makes it easier to implement spacing or barriers to meet EV5.3.2 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Maximum Vehicle TS Voltage TS/TS Within Accumulator Container 22 TS/GLV Over Surface (Creepage) Through Air V < 100 VDC 5.3 mm 2.1 mm 10.0 mm 100 VDC < V < 200 VDC 7.5 mm 4.3 mm 20.0 mm V > 200 VDC 9.6 mm 6.4 mm 30.0 mm Table 12 – Minimum Spacings 23 EV2.23 Insulation. EV4.1.12 All electrical insulating material must be appropriate and adequately robust for the application in which it is used. EV4.1.13 Insulating materials used for TS insulation or TS/GLV segregation must: 1. Be UL recognized (i.e., have an Underwriters Laboratories 24 or equivalent rating and certification). 2. Must be rated for the maximum expected operating temperatures at the location of use, or the temperatures listed in Table 13 (whichever is greater). 3. Must meet the minimum thickness requirements listed in Table 13 4. The TS/GLV requirement also applies to TS to chassis ground insulation. Minimum Temperature Minimum Thickness TS / GLV (see Note below) 150º C 0.25 mm TS / TS TS/Chassis Ground 90º C As required to be rated for the full TS voltage Table 13 - Insulating Material - Minimum Temperatures and Thicknesses Note: For TS/GLV isolation, insulating material must be used in addition to any insulating covering provided by the wire manufacturer. EV4.1.14 Insulating materials must extend far enough at the edges to meet spacing and creepage requirements between conductors. 22 Outside of the accumulator container TS/TS spacing should comply with standard industry practice. 23 Teams that have pre-existing systems built to comply with Table 10 in the 2016 rules will be permitted 24 http://www.ul.com 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.1.15 Thermoplastic materials such as vinyl insulation tape may not be used. Thermoset materials such as heat-shrink and self-fusing tapes (typically silicone) are acceptable. Figure 36 – Creepage Distance Example EV2.24 Printed circuit board (PCB) isolation Printed circuit boards designed and/or fabricated by teams must comply with the following: EV4.1.16 If tractive system circuits and GLV circuits are on the same circuit board they must be on separate, clearly defined areas of the board. Furthermore, the tractive system and GLV areas must be clearly marked on the PCB. EV4.1.17 Prototyping boards having plated holes and/or generic conductor patterns may not be used for applications where both GLV and TS circuits are present on the same board. Bare perforated board may be used if the spacing and marking requirements in EV5.5.3 and EV5.5.1 are met, and if the board is removable for inspection. EV4.1.18 Required spacings between TS and GLV conductors are shown in Table 14. If a cut or hole in the PC board is used to allow the “through air” spacing, the cut must not be plated with metal, and the distance around the cut must satisfy the “over surface” spacing requirement. Spacings between TS and GLV conductors on inner layers of PCBs may be reduced to the “through air” spacings. Maximum Vehicle TS Voltage Spacing Over surface Through air Under Conformal Coating 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 0-50 V 1.6 mm 1.6 mm 1 mm 50-150 V 6.4 mm 3.2 mm 2 mm 150-300 V 8.5 mm 6.4 mm 3mm 301-600V 12.7 mm 9.5 mm 4 mm Table 14 – PCB TS/GLV Spacings Note: Teams must be prepared to demonstrate spacings on team-built equipment. Information on this must be included in the ESF (EV13.1). If integrated circuits are used such as opto- couplers which are rated for the respective maximum tractive system voltage, but do not fulfill the required spacing, then they may still be used and the given spacing do not apply. This applies to the pin-to-pin through air and the pin-to-pin spacing over the package surface, but does not exempt the need to slot the board where pads would otherwise be too close. 1. Teams must supply high resolution (min. 300 dpi at 1:1) digital photographs of team- designed boards showing: (i) All layers of unpopulated boards (inner layers or top/bottom layers that don’t photograph well can be provided as copies of artwork files.) (ii) Both top and bottom of fully populated and soldered boards. EV4.1.19 If dimensional information is not obvious (i.e. 0.1 in x 0.1 in spacing) then a dimensional reference must be included in the photo. Spare boards should be made available for inspection. Teams should also be prepared to remove boards for direct inspection if asked to do so during the technical inspection. EV4.1.20 Printed circuit boards located inside the accumulator container and having tractive system connections on them must be fused to limited the power on the board to 600 watt or less, with the exception of precharge and discharge circuits. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "TRACTIVE SYSTEM VOLTAGE ISOLATION Most Formula Hybrid + Electric vehicles contain voltages that could cause injury or death if they came in contact with a human body. In addition, all Formula Hybrid + Electric accumulator systems are capable of storing enough energy to cause injury, blindness or death if that energy is released unintentionally. To minimize these risks, all tractive system components and wiring must at a minimum comply with the following rules. EV2.20 Isolation Requirements EV4.1.1 All TS wiring and components must be galvanically (electrically) isolated from GLV by separation and/or insulation. EV4.1.2 All interaction between TS and GLV must be by means of galvanically isolated devices such as opto-couplers, transformers, digital isolators or isolated dc-dc converters. EV4.1.3 All connections from external devices such as laptops to a tractive system component must be galvanically isolated, and include a connection between the external device ground and the vehicle frame ground. EV4.1.4 All isolation devices must be rated for an isolation voltage of at least twice the maximum TS voltage. EV2.21 General EV4.1.5 Tractive system and GLV conductors must not run through the same conduit. EV4.1.6 Tractive system and GLV wiring must not both be present in one connector. Connectors with an integral interlock such as the Amphenol SurLok Plus are exempted from this requirement. EV4.1.7 TS wiring must be separated from the driver's compartment by a firewall. EV4.1.8 TS wiring must not be present behind the instrument panel. TS wiring must not be present in the cockpit unless enclosed in conduit and separated from the driver by a firewall. TS potential must not be present on accelerator pedal or other controls in the cockpit. EV2.22 Insulation, Spacing and Segregation EV4.1.9 Tractive system main current path wiring and any TS circuits that are not protected by over- current devices must be constructed using spacing, insulation, or both, in order to prevent short circuits between TS conductors. Minimum spacings are listed in Table 12. Insulation used to meet this requirement must adhere to EV5.4. EV4.1.10 Where GLV and TS circuits are present in the same enclosure, they must be segregated (in addition to any insulating covering on the wire) by: 1. at least the distance specified in Table 12 OR 2. a barrier material meeting the TS/GLV requirements of EV5.4 EV4.1.11 All required spacings must be clearly defined. Components and cables must be securely restrained to prevent movement and maintain spacing. Note: Grouping TS and GLV wiring into separate regions of an enclosure makes it easier to implement spacing or barriers to meet EV5.3.2", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV3", - "ruleContent": "FUSING - GENERAL EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging system) must be appropriately fused. EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating of any electrical component that it protects. This includes wires, bus bars, battery cells or other conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current rating may be used for TS wiring if greater than the Appendix E value. Note: Many fuses have a peak current capability significantly higher than their continuous current capability. Using such a fuse allows using a relatively small wire for a high peak current, because the rules only require the wire to be sized for the continuous current rating of the fuse. EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating equal to or greater than the maximum voltage of the system in which they are used 25 . EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit current of the system that it protects. EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an uncontrolled energy source (e.g., a battery). Note: For this rule, a battery is considered an energy source even for wiring intended for charging the battery, because current could flow in the opposite direction in a fault scenario. EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at the branching point, if the branch wire is too small to be protected by the main fuse for the circuit. Note: For further guidance on fusing, see the Fusing Tutorial found here: https://drive.google.com/drive/u/0/search?q=fusing%20tutorial 25 Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating must be specifically called out in order for the fuse to be accepted as DC rated. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "FUSING - GENERAL EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging system) must be appropriately fused. EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating of any electrical component that it protects. This includes wires, bus bars, battery cells or other conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current rating may be used for TS wiring if greater than the Appendix E value. Note: Many fuses have a peak current capability significantly higher than their continuous current capability. Using such a fuse allows using a relatively small wire for a high peak current, because the rules only require the wire to be sized for the continuous current rating of the fuse. EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating equal to or greater than the maximum voltage of the system in which they are used 25 . EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit current of the system that it protects. EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an uncontrolled energy source (e.g., a battery). Note: For this rule, a battery is considered an energy source even for wiring intended for charging the battery, because current could flow in the opposite direction in a fault scenario. EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at the branching point, if the branch wire is too small to be protected by the main fuse for the circuit. Note: For further guidance on fusing, see the Fusing Tutorial found here: https://drive.google.com/drive/u/0/search?q=fusing%20tutorial 25 Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating must be specifically called out in order for the fuse to be accepted as DC rated.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV4", - "ruleContent": "SHUTDOWN CIRCUIT AND SYSTEMS EV4.1 Shutdown Circuit The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the flow of current through this loop is interrupted, the AIRs will open, disconnecting the vehicle’s high voltage systems from the source of that voltage within the accumulator container. Shutdown may be initiated by several devices having different priorities as shown in the following table. Figure 37 - Priority of shutdown sources EV4.1.28 The shutdown circuit must consist of at least: 1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 2. Tractive System Master Switch (TSMS) See: EV7.4 3. Two side mounted shutdown buttons (BRBs) See: EV7.5 4. Cockpit-mounted shutdown button. See: EV7.6 5. Brake over-travel switch. See: T7.3 6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: EV7.9 and Figure 38. 7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). See: EV2.11 and Figure 38. 8. All required interlocks. 9. Both IMD and AMS must use mechanical latching means as described in Appendix G. Latch reset must be by manual push button. Logic-controlled reset is not allowed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 10. If CAN communication are used for safety functions, a relay controlled by an independent CAN watchdog device that opens if relevant CAN messages are not received. This relay is not required to be latching. EV4.1.29 Any failure causing the GLV system to shut down must immediately deactivate the tractive system as well. EV4.1.30 The safety shutdown loop must be implemented as a series connection (logical AND) of all devices included in EV7.1.1. Digital logic or microcontrollers may not be used for this function. Normally open auxiliary relays may be used to power high-current devices such as fans, pumps etc. The AIRs must be powered directly by the current flowing through the loop. EV4.1.31 All components in the shutdown circuit must be rated for the maximum continuous current in the circuit (i.e. AIR and relay current). Note: A normally-open relay may be used to control AIR coils upon application to the rules committee. EV4.1.32 In the event of an AMS, IMD or Brake over-travel fault, it must not be possible for the driver to re-activate the tractive system from within the cockpit. This includes “cycling power” through the use of the cockpit shutdown button. Note: Resetting or re-activating the tractive system by operating controls which cannot be reached by the driver 26 is considered to be working on the car. EV4.1.33 Electronic systems that contain internal energy storage must be prevented from feeding power back into the vehicle GLV circuits in the event of GLV shutdown. 26 This would include the use of a wireless link remote from the vehicle. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 *GLV fuse to comply with EV6.1.7 Figure 38 - Example Master Switch and Shutdown Circuit Configuration EV4.2 Master Switches EV4.1.34 Each vehicle must have two Master Switches: 1. Grounded Low Voltage Master Switch (GLVMS) 2. Tractive System Master Switch (TSMS). EV4.1.35 Both master switches must be located on the right side of the vehicle, in proximity to the Main Hoop, at the driver’s shoulder height and be easily actuated from outside the car. EV4.1.36 Both master switches must be of the rotary type, with a red, removable key, similar to the one shown in Figure 39. EV4.1.37 Both master switches must be direct acting. i.e. they may not operate through a relay. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.1.38 Removable master switches are not allowed, e.g. mounted onto removable body work. EV4.1.39 The function of each switch must be clearly marked with “GLV” and “TSV”. EV4.1.40 The “ON” position of both switches must be parallel to the fore-aft axis of the vehicle EV4.3 Grounded Low Voltage Master Switch (GLVMS) EV4.1.41 The GLVMS is the highest priority shutdown and must disable power to all GLV electrical circuits. This includes the alternator, lights, fuel pump(s), I.C. engine ignition and electrical controls. EV4.1.42 All GLV current must flow through the GLVMS. EV4.1.43 Vehicles with GLV charging systems such as alternators or DC/DC converters must use a multi-pole switch to isolate the charging source from the GLV as illustrated in Figure 38 27 . EV4.1.44 The GLVMS must be identified with a label with a red lightning bolt in a blue triangle. (See Figure 40) EV4.4 Tractive System Master Switch (TSMS) EV4.1.45 The TSMS must open the Tractive System shutdown circuit. EV4.1.46 The TSMS must be the last switch in the loop carrying the holding current to the AIRs. (See Figure 38) Figure 39 - Typical Master Switch 27 https://www.pegasusautoracing.com/productdetails.asp?RecID=1464 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 40 - International Kill Switch Symbol EV4.5 Side-mounted Shutdown Buttons (BRB) The side-mounted shutdown buttons (Big Red Buttons – or BRBs) are the first line of defense for a vehicle that is malfunctioning or in trouble. Corner and safety workers are instructed to push the BRB first when responding to an emergency. EV4.1.47 One button must be located on each side of the vehicle behind the driver’s compartment at approximately the level of the driver’s head. They must be installed facing outward and be easily visible from the sides of the car. EV4.1.48 The side-mounted BRBs must be red and a minimum of 38 mm. in diameter. EV4.1.49 The side-mounted shut-down buttons must be a push-pull or push-rotate emergency switch where pushing the button opens the shutdown circuit. EV4.1.50 The side-mounted shutdown buttons must shut down all electrical systems with the exception of the high-current connection to the engine starter motor. EV4.1.51 The shut-down buttons may not act through logic such as a micro-controller or relays. EV4.1.52 The shutdown buttons may not be easily removable, e.g. they may not be mounted onto removable body work. EV4.1.53 The Side-mounted BRBs must be identified with a label with a red lightning bolt in a blue triangle. (See Figure 40) EV4.6 Cockpit Shutdown Button (BRB) EV4.1.54 One shutdown button must be mounted in the cockpit and be easily accessible by the driver while fully belted in and with the steering wheel in any position. EV4.1.55 The cockpit shut-down button must be a push-pull or push-rotate emergency switch where pushing the button opens the shutdown circuit. The cockpit shutdown button must be red and at least 24 mm in diameter. EV4.1.56 Pushing the cockpit mounted button must open the AIRs and shut down the I.C. engine. (See: Figure 37) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.1.57 The cockpit shutdown button must be driver resettable. i.e. if the driver disables the system by pressing the cockpit-mounted shutdown button, the driver must then be able to restore system operation by pulling the button back out. Note: There must still be one additional action by the driver after pulling the button back out to reactivate the motor controller per EV7.7.2. EV4.1.58 The cockpit shut-down buttons may not act through logic such as a micro-controller or relays. EV4.7 Vehicle Start button EV4.1.59 The GLV system must be powered up before it is possible to activate the tractive system shutdown loop. EV4.1.60 After enabling the shutdown circuit, at least one action, such as pressing a “start” button must be performed by the driver before the vehicle is “ready to drive”. i.e. it will respond to any accelerator input. EV4.1.61 The “start” action must be configured such that it cannot inadvertently be left in the “on” position after system shutdown. EV4.8 Shutdown system sequencing EV4.1.62 A recommended sequence of operation for the shutdown circuit and related systems is shown in the form of a state diagram in Figure 41. EV4.1.63 Teams must: 1. Demonstrate that their vehicle operates according to this state diagram, OR 2. Obtain approval for an alternative state diagram by submitting an electrical rules query on or before the ESF submission deadline, and demonstrate that the vehicle operates according to the approved alternative state diagram. IMPORTANT NOTE: If during technical inspection, it is found that the shutdown circuit operates differently from the standard or approved alternative state diagram, the car will be considered to have failed inspection. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 41 - Example Shutdown State Diagram EV4.9 Insulation Monitoring Device (IMD) EV4.1.64 Every car must have an insulation monitoring device installed in the tractive system. EV4.1.65 The IMD must be designed for Electric Vehicle use and meet the following criteria: robustness to vibration, operating temperature range, availability of a direct output, a self-test function, and must not be powered by the system that is monitored. The IMD must be a stand-alone unit. IMD functionality integrated in an AMS is not acceptable (Bender A-ISOMETER ® iso-F1 IR155-3203, IR155-3204, and Iso175C-32-SS are recommended examples). EV4.1.66 The response value of the IMD needs to be set to no less than 500 ohm/volt, related to the maximum tractive system operation voltage. EV4.1.67 In case of an insulation failure or an IMD failure, the IMD must shut down all the electrical systems, open the AIRs and shut down the I.C. drive system. (Some GLV systems such as accumulator cooling pumps and fans, may remain energized – See Figure 37) EV4.1.68 The tractive system must remain disabled until manually reset by a person other than the driver. It must not be possible for the driver to re-activate the tractive system from within the car in case of an IMD-related fault. EV4.1.69 Latching circuitry added by teams to comply with EV7.9.5 must be implemented using electro-mechanical relays. (See Appendix G – Example Relay Latch Circuits.) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.1.70 The status of the IMD must be displayed to the driver by a red indicator light in the cockpit. (See EV9.4). The indicator must show the latched fault and not the instantaneous status of the IMD. Note: The electrical inspectors will test the IMD by applying a test resistor between tractive system (positive or negative) and GLV system ground. This must deactivate the system. Disconnecting the test resistor may not re-activate the system. i.e. the tractive system must remain inactive until it is manually reset. EV4.1.71 The IMD high voltage sense connections may be unfused if wiring is less than 30 cm in length, is less than or equal to #16 wire gauge, has an insulation voltage rating of at least 600V, and is “double insulated” (e.g. has additional sleeving on both conductors). If any of these conditions is not met, the IMD HV sense connections must be fused in accordance with EV3.2.3 and ARTICLE EV6. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "SHUTDOWN CIRCUIT AND SYSTEMS EV4.1 Shutdown Circuit The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the flow of current through this loop is interrupted, the AIRs will open, disconnecting the vehicle’s high voltage systems from the source of that voltage within the accumulator container. Shutdown may be initiated by several devices having different priorities as shown in the following table. Figure 37 - Priority of shutdown sources EV4.1.28 The shutdown circuit must consist of at least: 1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 2. Tractive System Master Switch (TSMS) See: EV7.4 3. Two side mounted shutdown buttons (BRBs) See: EV7.5 4. Cockpit-mounted shutdown button. See: EV7.6 5. Brake over-travel switch. See: T7.3 6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: EV7.9 and Figure 38. 7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). See: EV2.11 and Figure 38. 8. All required interlocks. 9. Both IMD and AMS must use mechanical latching means as described in Appendix G. Latch reset must be by manual push button. Logic-controlled reset is not allowed.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV5", - "ruleContent": "GROUNDING EV4.10 General EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a resistance below 300 mΩ to GLV system ground. Accessible parts are defined as those that are exposed in the normal driving configuration or when the vehicle is partially disassembled for maintenance or charging. EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon fiber parts, etc.) that could potentially become energized (including post collision or accident), no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system ground. NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or similar modifications to keep the ground resistance below 100 ohms. EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV system ground. EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 AWG and be stranded. Note: For GLV system grounding conductor size see EV4.1.4. EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the vehicle which is likely to be conductive, for example the driver's harness attachment bolts. Where no convenient conductive point is available then an area of coating may be removed. Note: If the resistance measurement displayed by a conventional two-wire meter is slightly higher than the requirement, a four-terminal measurement technique may be used. If the four- terminal measurement (which is more accurate) meets the requirement, then the vehicle passes the test. See: https://en.wikipedia.org/wiki/Four-terminal_sensing EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS communication) will be required to document and demonstrate shutdown equivalent to BRB operation if CAN communication is interrupted. A solution to this requirement may be a separate device with relay output that monitors CAN traffic. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "GROUNDING EV4.10 General EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a resistance below 300 mΩ to GLV system ground. Accessible parts are defined as those that are exposed in the normal driving configuration or when the vehicle is partially disassembled for maintenance or charging. EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon fiber parts, etc.) that could potentially become energized (including post collision or accident), no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system ground. NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or similar modifications to keep the ground resistance below 100 ohms. EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV system ground. EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 AWG and be stranded. Note: For GLV system grounding conductor size see EV4.1.4. EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the vehicle which is likely to be conductive, for example the driver's harness attachment bolts. Where no convenient conductive point is available then an area of coating may be removed. Note: If the resistance measurement displayed by a conventional two-wire meter is slightly higher than the requirement, a four-terminal measurement technique may be used. If the four- terminal measurement (which is more accurate) meets the requirement, then the vehicle passes the test. See: https://en.wikipedia.org/wiki/Four-terminal_sensing EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS communication) will be required to document and demonstrate shutdown equivalent to BRB operation if CAN communication is interrupted. A solution to this requirement may be a separate device with relay output that monitors CAN traffic.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV6", "ruleContent": "SYSTEM STATUS INDICATORS EV4.11 Tractive System Active Lamp (TSAL) EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop which must be lit and clearly visible any time the AIR coils are energized. EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green for TS not present are also acceptable. EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles which are covered by the main roll hoop) even in very bright sunlight. EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The person's minimum eye height is 1.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV6.m", - "ruleContent": "NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily visible during track operations the team may not be allowed to compete in any dynamic event before the problem is solved. EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator containers is above a threshold calculated as the higher value of 60V or 50% of the nominal accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at voltages below 20V. The TSAL system must be powered entirely by the tractive system and must be directly controlled by voltage being present at the output of the accumulator (no software control is permitted). EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. Note: This requirement may be met by locating an isolated dc-dc converter inside a TS enclosure, and connecting the output of the dc-dc converter to the lamp. (Because the voltage driving the lamp is considered GLV, one side of the voltage driving the lamps must be ground-referenced by connecting it to the frame in order to comply with EV4.1.4.) EV4.12 Ready-to-Drive Sound EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 seconds, when it is ready to drive. (See EV7.7) Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque encoder / accelerator pedal. EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter 28 . EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one in the front, and one from each side of the vehicle. 28 Some compliant devices can be found here: https://www.mspindy.com/ 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV6.1.13 The vehicle must not make any other sounds similar to the Ready-to-Drive sound. EV4.13 Electrical Systems OK Lamps (ESOK) ESOK indicator lamps are required for hybrid and hybrid-in-progress vehicles. They are not required for electric-only vehicles. The purpose of the ESOK indicators is to ensure that a hybrid vehicle is operating with the electric traction system engaged, and to prevent IC-only operation in dynamic events. This requirement is in addition to TSAL indicators which are required for all vehicle classes. EV6.1.14 Hybrid vehicles must have two ESOK lamps. One mounted on each side of the roll bar in the vicinity of the side-mounted shutdown buttons (EV7.5) that can easily be seen from the sides of the vehicle.The indicators must be Amber, complying with DOT FMVSS 108 for trailer clearance lamps 29 . See Figure 42. They must be clearly labeled “ESOK”. EV6.1.15 The ESOK indicators must be powered from the circuit feeding the AIR (contactor) coils. If there is an electrical system fault, or a “BRB” is pressed, or the TS master switch is opened, the ESOK indicators must extinguish. See Figure 38 for an example of ESOK lamp wiring. See Figure 38 for an example of ESOK lamp wiring. Figure 42 – Typical ESOK Lamp EV4.14 Insulation Monitoring Device (IMD) EV6.1.16 The status of the IMD must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must light up if the IMD detects an insulation failure or if the IMD detects a failure in its own operation e.g. when it loses reference ground. EV6.1.17 The IMD indicator light must be clearly marked with the lettering “IMD” or “GFD” (Ground Fault Detector). EV4.15 Accumulator Voltage Indicator EV6.1.18 Any removable accumulator container must have a prominent indicator, such as an LED, that is visible through a closed container that will illuminate whenever a voltage greater than 60 VDC is present at the vehicle side of the AIRs. EV6.1.19 The accumulator voltage indicator must be directly controlled by voltage present at the container connectors using analog electronics. No software control is permitted. 29 https://www.ecfr.gov/cgi-bin/text-idx?node=se49.6.571_1108 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV4.16 Accumulator Monitoring System (AMS) EV6.1.20 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that is easily visible even in bright sunlight. This indicator must light up if the AMS detects an accumulator failure or if the AMS detects a failure in its own operation. EV6.1.21 The AMS indicator light must be clearly marked with the lettering “AMS”. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily visible during track operations the team may not be allowed to compete in any dynamic event before the problem is solved. EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator containers is above a threshold calculated as the higher value of 60V or 50% of the nominal accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at voltages below 20V. The TSAL system must be powered entirely by the tractive system and must be directly controlled by voltage being present at the output of the accumulator (no software control is permitted). EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. Note: This requirement may be met by locating an isolated dc-dc converter inside a TS enclosure, and connecting the output of the dc-dc converter to the lamp. (Because the voltage driving the lamp is considered GLV, one side of the voltage driving the lamps must be ground-referenced by connecting it to the frame in order to comply with EV4.1.4.) EV4.12 Ready-to-Drive Sound EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 seconds, when it is ready to drive. (See EV7.7) Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque encoder / accelerator pedal. EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter 28 . EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one in the front, and one from each side of the vehicle. 28 Some compliant devices can be found here: https://www.mspindy.com/", "parentRuleCode": "ARTICLE EV6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV5", - "ruleContent": "ELECTRICAL SYSTEM TESTS Note: During electrical tech inspection, these tests will normally be done in the following order: IMD test, insulation measurement, AMS function then Rain test. EV5.1 Insulation Monitoring Device (IMD) Test EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive vehicle parts while the tractive system is active, as shown in the example below. EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault resistance of 250 ohm/volt (50% below the response value). Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take part in any dynamic event if any of the seals are broken until the IMD test is successfully passed again. Figure 43 – Insulation Monitoring Device Test EV5.2 Insulation Measurement Test EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive system and control system ground. The available measurement voltages are 250 V, 500 V and 750 V DC. All cars will be measured with the next available voltage level. For example, a 175 V system will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V system will be measured with 750 V etc. EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least 500 ohm/volt related to the maximum nominal tractive system operation voltage. EV5.3 Tractive System Measuring Points (TSMP) The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, EV2.8.3. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 They may also be used to ensure the isolation of the tractive system of the vehicle during possible rescue operations after an accident or when work on the vehicle is to be done. EV6.1.27 Two tractive system voltage measuring points must be installed in an easily accessible 30 well marked location. Access must not require the removal of body panels. The TSMP jacks must be marked \"Gnd\", \"TS+\" and \"TS-\". EV6.1.28 The TSMPs must be protected by a non-conductive housing that can be opened without tools. EV6.1.29 Shrouded 4 mm banana jacks that accept shrouded (sheathed) banana plugs with non- retractable shrouds must be used for the TSMPs and the system ground measuring point (EV10.3.6). See Figure 44 for examples of the correct jacks and of jacks that are not permitted because they do not accept the required plugs (also shown). EV6.1.30 The TSMPs must be connected, via current limiting resistors, to the positive and negative motor controller/inverter supply lines. (See Figure 38) The TSMP must measure motor controller input voltage even if segmenting or TSMS switches are opened. EV6.1.31 The wiring to each TSMP must be protected with a current limiting resistor sized per Table 15. (Fuses or other forms of overcurrent protection are not permitted). The resistor must be located as close to the voltage source as practical and must have a power rating of: Maximum TS Voltage Resistor Value <= 200 V** 5 kΩ 201 – 400 V 10 kΩ 401 – 600 V 15 kΩ Table 15-TSMP Resistor Values 31 The resistor must be located as close to the voltage source as practical and must have a power rating of: 2( 푇푆푉 푚푎푥 2 푅 ) but not less than 5 W. EV6.1.32 A GLV system ground measuring point must be installed next to the TSMPs. This measuring point must be connected to the GLV system ground, must be a 4 mm shrouded banana jack and marked \"GND\". 30 It should be possible to insert a connector with one hand while standing next to the car. 31 Teams with vehicles with Maximum TS Voltage of 200 V or less may use existing 10 kΩ resistor values upon application to the rules committee 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 44 EV5.4 Accumulator Monitoring System (AMS) Test EV6.1.33 The AMS will be tested in one of two ways: 1. By varying AMS software setpoints so that actual cell voltage is above or below the trip limit. 2.The AMS may be tested by varying simulated cell voltage to the AMS test connector, following open accumulator safety procedures, to make the actual cell voltage above or below the trip limit. EV6.1.34 The requirement for an AMS test port for commercial accumulator assemblies may be waived, or alternate tests may be substituted, upon application to the rules committee. EV5.5 Rain test EV6.1.35 Vehicles that pass the rain test will receive a “Rain Certified” sticker and may be operated in damp or wet conditions. See: ARTICLE D3 If a vehicle does not pass the rain test, or if the team chooses to forego the rain test, then the vehicle is not rain certified and will not be allowed to operate in damp or wet conditions. EV6.1.36 During the rain test: 1. The tractive system must be active. 2. It is not allowed to have anyone seated in the car. 3. The vehicle must be on stands such that none of the driven wheels touch the ground. EV6.1.37 Water will be sprayed at the car from any possible direction for 120 seconds. The water spray will be rain-like. There will be no high-pressure water jet directed at the car. EV6.1.38 The test is passed if the IMD does not trip while water is sprayed at the car and for 120 seconds after the water spray has stopped. Therefore, the total time of the rain test is 240 seconds, 120 seconds with water-spray and 120 seconds without. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV6.1.39 Teams must ensure that water cannot accumulate anywhere in the chassis. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "ELECTRICAL SYSTEM TESTS Note: During electrical tech inspection, these tests will normally be done in the following order: IMD test, insulation measurement, AMS function then Rain test. EV5.1 Insulation Monitoring Device (IMD) Test EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive vehicle parts while the tractive system is active, as shown in the example below. EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault resistance of 250 ohm/volt (50% below the response value). Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take part in any dynamic event if any of the seals are broken until the IMD test is successfully passed again. Figure 43 – Insulation Monitoring Device Test EV5.2 Insulation Measurement Test EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive system and control system ground. The available measurement voltages are 250 V, 500 V and 750 V DC. All cars will be measured with the next available voltage level. For example, a 175 V system will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V system will be measured with 750 V etc. EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least 500 ohm/volt related to the maximum nominal tractive system operation voltage. EV5.3 Tractive System Measuring Points (TSMP) The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, EV2.8.3.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV1", - "ruleContent": "POUCH TYPE LITHIUM-ION CELLS Important Note: Designing an accumulator system utilizing pouch cells is a substantial engineering undertaking, which may be avoided by using prismatic or cylindrical cells. EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion and compression requirements, mechanical constraint, and tab connections. EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, for review, in their ESF1 and ESF2 submissions. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "POUCH TYPE LITHIUM-ION CELLS Important Note: Designing an accumulator system utilizing pouch cells is a substantial engineering undertaking, which may be avoided by using prismatic or cylindrical cells. EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion and compression requirements, mechanical constraint, and tab connections. EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, for review, in their ESF1 and ESF2 submissions.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV6", - "ruleContent": "HIGH VOLTAGE PROCEDURES & TOOLS The following rules relate to procedures that must be followed during the Formula Hybrid + Electric competition. It is strongly recommended that these or similar rules be instituted at the team's home institutions. It is also important that all team members view the Formula Hybrid + Electric electrical safety lecture, which can be found here: https://www.youtube.com/watch?v=f_zLdzp1egI&feature=youtu.be EV6.1 Working on Tractive Systems or accumulators EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and that all team members know and follow. EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated by using the maintenance plugs. (See EV2.7). EV6.1.42 If the organizers have provided a “Designated Charging Area”, then opening of or working on accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical Tech Inspection. EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. EV6.1.44 Whenever the accumulator is open or being worked on, a “Danger High Voltage” sign (or other warning device provided by the organizers) must be displayed. Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. EV6.2 Charging EV6.1.45 If the organizers have provided a “Designated Charging Area”, then charging tractive system accumulators is only allowed inside this area. EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a (minimum) 16 AWG green wire during charging. Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the competition site. EV6.1.47 If the organizers have provided “High Voltage” signs and/or beacons, these must be displayed prominently while charging. EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable accumulator container. EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the accumulators are charged externally or internally) must have a prominent sign with the following data: 1. Team name 2. RSO Name with cell phone number(s). EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 EV6.1.51 All connections of the charger(s) must be isolated and covered, with intact strain relief and no fraying of wires. EV6.1.52 No work is allowed on any of the car’s systems during charging if the accumulators are charging inside of or connected to the car. EV6.1.53 No grinding, drilling, or any other activity that could produce either sparks or conductive debris is allowed in the charging area. EV6.1.54 At least one team member who has knowledge of the charging process must stay with the accumulator(s) / car during charging. EV6.1.55 Moving accumulator cells and/or stack(s) around at the event site is only allowed inside a completely closed accumulator container. EV6.1.56 High Voltage wiring in an offboard charger does not require conduit; however, it must be a UL listed flexible cable that complies with NEC Article 400; jacketed. EV6.1.57 The vehicle charging connection must be appropriately fused for the rating of its connector and cabling in accordance with EV6.1.1. EV6.1.58 The vehicle charging port must only be energized when the tractive system is energized and the TSAL is flashing. i.e. there must be no voltage present on the charging port when the tractive system is de- energized. EV6.1.59 If charging on the vehicle, AMS and IMD systems must be active during charging. The external charging system must shut down if there is an AMS or IMD fault, or if one of the shutdown buttons (See EV7.5) is pressed. If charging off the vehicle, equivalent AMS and IMD protection must be provided. If charging off the vehicle, the charging cart and any exposed metal must be connected to ac-power ground. EV6.3 Accumulator Container Hand Cart EV6.1.60 In case removable accumulator containers are used in order to accommodate charging, a hand cart to transport the accumulators must be presented at Electrical Tech Inspection. EV6.1.61 The hand cart must have a brake such that it can only be released using a dead man's switch, i.e. the brake is always on except when someone releases it by pushing a handle for example. EV6.1.62 The brake must be capable to stop the fully loaded accumulator container hand cart. EV6.1.63 The hand cart must be able to carry the load of the accumulator container(s). EV6.1.64 The hand cart(s) must be used whenever the accumulator container(s) are transported on the event site. EV6.4 Required Equipment Each team must have the following equipment accessible at all times during the event. The equipment must be in good condition, and must be presented during technical inspection. (See also Appendix F) 1. Multimeter rated for CAT III use with UL approval. (Must accept shrouded banana leads.) 2. Multimeter leads rated for CAT III use with shrouded banana leads at one end and probes at the other end. The probes must have finger guards and no more than 3 mm of 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 exposed metal. (Heat shrink tubing may be used to cover additional exposed metal on probes.) 3. Multimeter leads rated for CAT III use with shrouded banana plugs at both ends. 4. Insulated tools. (i.e. screwdrivers, wrenches etc. compatible with all fasteners used inside the accumulator housing.) 5. Face shield which meets ANSI Z87.1-2003 6. HV insulating gloves (tested within the last14 Months) plus protective outer gloves. 7. HV insulating blanket(s) of sufficient size and quantity to cover the vehicle’s accumulator(s). 8. Safety glasses with side shields (ANSI Z87.1-2003 compliant) for all team members. Note: All electrical safety items must be rated for at least the maximum tractive system voltage. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "HIGH VOLTAGE PROCEDURES & TOOLS The following rules relate to procedures that must be followed during the Formula Hybrid + Electric competition. It is strongly recommended that these or similar rules be instituted at the team's home institutions. It is also important that all team members view the Formula Hybrid + Electric electrical safety lecture, which can be found here: https://www.youtube.com/watch?v=f_zLdzp1egI&feature=youtu.be EV6.1 Working on Tractive Systems or accumulators EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and that all team members know and follow. EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated by using the maintenance plugs. (See EV2.7). EV6.1.42 If the organizers have provided a “Designated Charging Area”, then opening of or working on accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical Tech Inspection. EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. EV6.1.44 Whenever the accumulator is open or being worked on, a “Danger High Voltage” sign (or other warning device provided by the organizers) must be displayed. Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. EV6.2 Charging EV6.1.45 If the organizers have provided a “Designated Charging Area”, then charging tractive system accumulators is only allowed inside this area. EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a (minimum) 16 AWG green wire during charging. Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the competition site. EV6.1.47 If the organizers have provided “High Voltage” signs and/or beacons, these must be displayed prominently while charging. EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable accumulator container. EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the accumulators are charged externally or internally) must have a prominent sign with the following data: 1. Team name 2. RSO Name with cell phone number(s). EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV7", - "ruleContent": "REQUIRED ELECTRICAL DOCUMENTATION EV7.1 Electrical System Form – Part 1 Part 1 of the ESF requests preliminary design information. This is so that the technical reviewers can identify areas of concern early and provide feedback to the teams. EV7.2 Electrical System Form – Part 2 Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. This information must be reentered in Part 2. However it is not expected that the fields will contain identical information, since many aspects of a design will change as a project evolves. EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the voltage level, the topology, the wiring in the car and the construction and build of the accumulator(s). EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and show that none of these ratings are exceeded (including wiring components). This includes stress caused by the environment e.g. high temperatures, vibration, etc. EV6.1.67 A template containing the required structure for the ESF will be made available online. EV6.1.68 The ESF must be submitted as a Microsoft Word format file. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "REQUIRED ELECTRICAL DOCUMENTATION EV7.1 Electrical System Form – Part 1 Part 1 of the ESF requests preliminary design information. This is so that the technical reviewers can identify areas of concern early and provide feedback to the teams. EV7.2 Electrical System Form – Part 2 Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. This information must be reentered in Part 2. However it is not expected that the fields will contain identical information, since many aspects of a design will change as a project evolves. EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the voltage level, the topology, the wiring in the car and the construction and build of the accumulator(s). EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and show that none of these ratings are exceeded (including wiring components). This includes stress caused by the environment e.g. high temperatures, vibration, etc. EV6.1.67 A template containing the required structure for the ESF will be made available online. EV6.1.68 The ESF must be submitted as a Microsoft Word format file.", + "pageNumber": "0" }, { "ruleCode": "ARTICLE EV7", - "ruleContent": "- ACRONYMS AC Alternating Current AIR Accumulator Isolation Relay AMS Accumulator Management System BRB Big Red Buttons (Emergency shutdown switches) ESF Electrical System Form ESOK Electrical Systems OK Lamp GLV Grounded Low Voltage GLVMS Grounded Low Voltage Master Switch HVD High Voltage Disconnect IMD Insulation Monitoring Device PCB Printed Circuit Board SMD Segment Maintenance Disconnect TS Tractive System TSMP Tractive System Measuring Point TSMS Tractive System Master Switch TSV Tractive System Voltage TSAL Tractive System Active Lamp 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "- ACRONYMS AC Alternating Current AIR Accumulator Isolation Relay AMS Accumulator Management System BRB Big Red Buttons (Emergency shutdown switches) ESF Electrical System Form ESOK Electrical Systems OK Lamp GLV Grounded Low Voltage GLVMS Grounded Low Voltage Master Switch HVD High Voltage Disconnect IMD Insulation Monitoring Device PCB Printed Circuit Board SMD Segment Maintenance Disconnect TS Tractive System TSMP Tractive System Measuring Point TSMS Tractive System Master Switch TSV Tractive System Voltage TSAL Tractive System Active Lamp", + "pageNumber": "0" }, { "ruleCode": "PART S1", - "ruleContent": "STATIC EVENTS Presentation 150 points Design 200 points Total 350 points Table 15 – Static Event Maximum Scores 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", - "pageNumber": "1" + "ruleContent": "STATIC EVENTS Presentation 150 points Design 200 points Total 350 points Table 15 – Static Event Maximum Scores", + "pageNumber": "0" }, { "ruleCode": "ARTICLE S1", "ruleContent": "TECHNICAL INSPECTION", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.1", "ruleContent": "Objective", "parentRuleCode": "1S1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.1.1", "ruleContent": "The objective of technical inspection is to determine if the vehicle meets the FH+E rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules.", "parentRuleCode": "1S1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.1.2", "ruleContent": "For purposes of interpretation and inspection the violation of the intent of a rule is considered a violation of the rule itself.", "parentRuleCode": "1S1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.1.3", "ruleContent": "Technical inspection is a non-scored activity.", "parentRuleCode": "1S1.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2", "ruleContent": "Inspection & Testing Requirement", "parentRuleCode": "1S1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2.1", - "ruleContent": "Each vehicle must pass all parts of technical inspection and testing, and bear the inspection stickers, before it is permitted to participate in any dynamic event or to run on the practice track. The exact procedures and instruments employed for inspection and testing are entirely at the discretion of the Chief Technical Inspector.", + "ruleContent": "Each vehicle must pass all parts of technical inspection and testing, and bear the inspection stickers, before it is permitted to participate in any dynamic event or to run on the practice track. The exact procedures and instruments employed for inspection and testing are entirely at the discretion of the Chief Technical Inspector.", "parentRuleCode": "1S1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2.2", "ruleContent": "Technical inspection will examine all items included on the Inspection Form found on the Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) plus any other items the inspectors may wish to examine to ensure conformance with the Rules.", "parentRuleCode": "1S1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2.3", "ruleContent": "All items on the Inspection Form must be clearly visible to the technical inspectors.", "parentRuleCode": "1S1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2.4", "ruleContent": "Visible access can be provided by removing body panels or by providing removable access panels.", "parentRuleCode": "1S1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2.5", "ruleContent": "Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification and Repairs, it must remain in the “As-approved” condition throughout the competition and must not be modified.", "parentRuleCode": "1S1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2.6", "ruleContent": "Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final and are not permitted to be appealed.", "parentRuleCode": "1S1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2.7", "ruleContent": "Technical inspection is conducted only to determine if the vehicle complies with the requirements and restrictions of the Formula Hybrid + Electric rules.", "parentRuleCode": "1S1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.2.8", "ruleContent": "Technical approval is valid only for the duration of the specific Formula Hybrid + Electric competition during which the inspection is conducted.", "parentRuleCode": "1S1.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.3", "ruleContent": "Inspection Condition Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, complete and ready-to-run. Technical inspectors will not inspect any vehicle presented for inspection in an unfinished state. This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished.", "parentRuleCode": "1S1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.4", - "ruleContent": "Inspection Process Vehicle inspection will consist of five separate parts as follows: (a) Part 1: Preliminary Electrical Inspection Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the Preliminary Electrical Inspection. (b) Part 2: Scrutineering - Mechanical 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Each vehicle will be inspected to determine if it complies with the mechanical and structural requirements of the rules. This inspection will include examination of the driver’s equipment (ARTICLE T5) a test of the emergency shutdown response time (Rule T4.9) and a test of the driver egress time (Rule T4.8). The vehicle will be weighed, and the weight placed on a sticker affixed to the vehicle for reference during the Design event. (c) Part 3: Scrutineering – Electrical Each vehicle will be inspected for compliance with the electrical portions of the rules. Note: This is an extensive and detailed inspection. Teams that arrive well-prepared can reduce the time spent in electrical inspection considerably. The electrical inspection will include all the tests listed in EV9.5.1. Note: In addition to the electrical rules contained in this document, the electrical inspectors will use SAE Standard J1673 “High Voltage Automotive Wiring Assembly Design” as the definitive reference for sound wiring practices. Note: Parts 1, 2 and 3 must be passed before a vehicle may apply for Part 4 or Part 5 inspection. (d) Part 4: Tilt Table Tests Each vehicle will be tested to insure it satisfies both the 45 degree (45°) fuel and fluid tilt requirement (Rule T8.5.1) and the 60 degree (60°) stability requirement (Rule T6.7). (e) Part 5: Noise, Master Switch, and Brake Tests. Noise will be tested by the specified method (Rule IC3.2). If the vehicle passes the noise test then its master switches (EV7.2) will be tested. Once the vehicle has passed the noise and master switch tests, its brakes will be tested by the specified method (see Rule T7.2).", + "ruleContent": "Inspection Process Vehicle inspection will consist of five separate parts as follows: (a) Part 1: Preliminary Electrical Inspection Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the Preliminary Electrical Inspection. (b) Part 2: Scrutineering - Mechanical", "parentRuleCode": "1S1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.5", "ruleContent": "Correction and Re-inspection", "parentRuleCode": "1S1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.5.1", "ruleContent": "If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, then the team must correct the problem and have the car re-inspected.", "parentRuleCode": "1S1.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.5.2", "ruleContent": "The judges and inspectors have the right to re-inspect any vehicle at any time during the competition and require correction of non-compliance.", "parentRuleCode": "1S1.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S1.6", - "ruleContent": "Inspection Stickers Inspection stickers issued following the completion of any part of technical inspection must be placed on the upper nose of the vehicle as specified in T13.4 “Technical Inspection Sticker Space”. Inspection stickers are issued contingent on the vehicle remaining in the required condition throughout the competition. Inspection stickers may be removed from vehicles that are not in compliance with the rules or which are required to be re-inspected. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Inspection Stickers Inspection stickers issued following the completion of any part of technical inspection must be placed on the upper nose of the vehicle as specified in T13.4 “Technical Inspection Sticker Space”. Inspection stickers are issued contingent on the vehicle remaining in the required condition throughout the competition. Inspection stickers may be removed from vehicles that are not in compliance with the rules or which are required to be re-inspected.", "parentRuleCode": "1S1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE S2", "ruleContent": "PROJECT MANAGEMENT", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.1", "ruleContent": "Project Management Objective The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team’s ability to structure and execute a project management plan that helps the team define and meet its goals. A well written project management plan will not only aid each team in producing a functional, rules compliant race car on-time, it will make it much easier to create the Change Management Report and Final Presentation components of the Project Management Event. Several resources are available to guide work in these areas. They can be found in Appendix C. No team should begin developing its project management plan without FIRST: (a) Reviewing “Application of the Project Management Method to Formula Hybrid + Electric”, by Dr. Edward March, former Formula Hybrid + Electric Chief Project Management Judge. (b) Viewing in its entirety Dr. March’s 12-part video series”Formula Hybrid + Electric Project Management”. (c) Reading “Formula Hybrid + Electric Project Management Event Scoring Criteria”, found in Appendix C of the Formula Hybrid + Electric Rules. (d) Watching an example of a “perfect score” presentation, from a previous competiton.", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.2", "ruleContent": "Project Management Segments The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of a written project plan (2) a written change management report, and, (3) an oral final presentation assessing the overall project management experience to be delivered before a review board at the competition. Segment Points Project Plan Report 55 Change Management Report 40 Presentation 55 Total 150 Table 16 - Project Management Scoring", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.3", "ruleContent": "Submission 1 -- Project Plan Report", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.3.1", - "ruleContent": "Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that reflects its goals and objectives for the upcoming competition, the management structure, the tasks that will be required to accomplish these objectives, and the time schedule over which these tasks will be performed. The topics covered in the Project Plan Report should include: (a) Scope: What will be accomplished, “SMART” goals and objectives (see Appendix C for more information), major deliverables and milestones. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (b) Operations: Organization of the project team, Work Breakdown Structure, project timeline, and a budget and funding strategy. (c) Risk Management: tasks expected to be particularly difficult for the team, but whose completion is essential for achieving team goals and having a functional car ready before shipment to the track; contingency plans to mitigate these risks if problems arise during project execution. (d) Expected Results: Team goals and objectives quantified into “measure of success”. These attributes are useful for assigning task priorities and allocating resources during project execution. They are also used to determine the extent to which the goals have been achieved. (e) Change Management Process: The system designed by the team for administering project change and maintaining communication across all team members.", + "ruleContent": "Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that reflects its goals and objectives for the upcoming competition, the management structure, the tasks that will be required to accomplish these objectives, and the time schedule over which these tasks will be performed. The topics covered in the Project Plan Report should include: (a) Scope: What will be accomplished, “SMART” goals and objectives (see Appendix C for more information), major deliverables and milestones.", "parentRuleCode": "1S2.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.3.2", - "ruleContent": "This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of text. Appendices with supporting information may be attached to the back of the Project Plan. Note 1: Title pages, appendices and table-of-contents do not count as “pages”. Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date. Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project Management judges a one half hour online review session may be made available to each team.", + "ruleContent": "This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of text. Appendices with supporting information may be attached to the back of the Project Plan. Note 1: Title pages, appendices and table-of-contents do not count as “pages”. Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date. Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project Management judges a one half hour online review session may be made available to each team.", "parentRuleCode": "1S2.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.4", "ruleContent": "Submission 2 – Change Management Report", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.4.1", - "ruleContent": "Following completion and acceptance of the formal project plan by student team members, the project team begins the execution phase. During this phase, members of the student team and other stakeholders must be updated on progress being made and on issues identified that put the project schedule at risk. The ability of the team to change direction or “pivot” in the face of risks is often a key factor in a team’s successful completion of the project. Changes to the plan are adopted and formally communicated through a change management report. Each team must submit one change management report. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date.", + "ruleContent": "Following completion and acceptance of the formal project plan by student team members, the project team begins the execution phase. During this phase, members of the student team and other stakeholders must be updated on progress being made and on issues identified that put the project schedule at risk. The ability of the team to change direction or “pivot” in the face of risks is often a key factor in a team’s successful completion of the project. Changes to the plan are adopted and formally communicated through a change management report. Each team must submit one change management report. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date.", "parentRuleCode": "1S2.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.4.2", "ruleContent": "These reports are not lengthy but are intended to clearly and concisely communicate the documented changes to the project scope and plan to the team that have been approved using the Change Management Process. See Appendix C for details on scoring criteria for this report. The topics covered in the progress report should include: A) Change Management Process: Detail the Change Management processes and platforms used by the team. At a minimum, the report is expected to cover:", "parentRuleCode": "1S2.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.4.2.a", "ruleContent": "what triggers the process", "parentRuleCode": "1S2.4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.4.2.b", "ruleContent": "how does information flow through the process", "parentRuleCode": "1S2.4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.4.2.c", "ruleContent": "how are final decisions transmitted to all team members", "parentRuleCode": "1S2.4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.4.2.d", - "ruleContent": "team-created process flow diagram 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 B) Implementation of the Change Management Process: Teams are expected to review in detail how the Change Management Process has been used to modify at least one of their project’s main components (Scope or Goals, Operational Plan, Risk Management, and Expected Results). The report is expected to cover an example from start to finish in the process and should also detail the final impact to the project. C) Effectiveness of and Improvements to the Change Management Process: At the end of the project lifecycle, the team is expected to perform an assessment on the effectiveness of their Change Management Process. Through this assessment, the team should identify at least two areas of opportunity to improve the process and include the plans/details to implement those changes.", + "ruleContent": "team-created process flow diagram", "parentRuleCode": "1S2.4.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.4.3", "ruleContent": "The Change Management Report must not exceed two (2) pages. Appendices may be included with the Report Note 1: Appendix content does not count as “pages”. Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- hybrid.org/deadlines for the due date of the Change Management Report.", "parentRuleCode": "1S2.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.5", "ruleContent": "Submission Formats", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.5.1", "ruleContent": "The Project Plan and Change Management Report must be submitted electronically in separate Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, drawings, and optional content).", "parentRuleCode": "1S2.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.5.2", "ruleContent": "These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g.: 999_University of SAE_Project Plan.doc(x) 999_University of SAE_ChangeManagement.doc(x)", "parentRuleCode": "1S2.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.6", - "ruleContent": "Submission Deadlines The Project Plan and Change Management Report must be submitted by the date and time shown in the Action Deadlines. Submission instructions are in section A9.2. See section A9.3 for late submission penalties.", + "ruleContent": "Submission Deadlines The Project Plan and Change Management Report must be submitted by the date and time shown in the Action Deadlines. Submission instructions are in section A9.2. See section A9.3 for late submission penalties.", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.7", "ruleContent": "Presentation", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.7.1", "ruleContent": "Objective: Teams must convince a review board that the team’s project has been carefully planned and effectively and dynamically executed.", "parentRuleCode": "1S2.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.7.2", "ruleContent": "The Project Management presentation will be made on the static events day. Presentation times will be scheduled by the organizers and either posted in advance on the competition website or released during on-site registration (or both). Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable.", "parentRuleCode": "1S2.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.7.3", - "ruleContent": "Teams that fail to make their presentation during their assigned time period will receive zero (0) points for that section of the event. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Note: Teams are encouraged to arrive fifteen (15) minutes prior to their scheduled presentation time to deal with unexpected technical difficulties. The scoring of the event is based on the average of the presentation judging forms.", + "ruleContent": "Teams that fail to make their presentation during their assigned time period will receive zero (0) points for that section of the event.", "parentRuleCode": "1S2.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.8", "ruleContent": "Presentation Format The presentation judges should be regarded as a project management or executive review board.", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.8.1", "ruleContent": "Evaluation Criteria - Project Management presentations will be evaluated based on team’s accomplishments in project planning, execution, change management, and succession planning. Presentation organization and quality of visual aids as well as the presenters’ delivery, timing and the team’s response to questions will also be factors in the evaluation.", "parentRuleCode": "1S2.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.8.2", "ruleContent": "One or more team members will give the presentation to the judges. It is strongly suggested, although not required, that the project manager accompany the presentation team. All team members who will give any part of the presentation, or who will respond to the judge’s questions, must be in the podium area when the presentation starts and must be introduced to the judges. Team members who are part of this “presentation group” may answer the judge’s questions even if they did not speak during the presentation itself.", "parentRuleCode": "1S2.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.8.3", "ruleContent": "Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, posters, etc. to convey information relevant to their project management case that cannot be contained within a 12-minute presentation.", "parentRuleCode": "1S2.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.8.4", "ruleContent": "The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt the presentation itself.", "parentRuleCode": "1S2.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.8.5", "ruleContent": "Feedback on presentations will take place immediately following the eight (8) minute question and answer session. Judges and any team members present may ask questions. The maximum feedback time for each team is eight (8) minutes.", "parentRuleCode": "1S2.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.8.6", "ruleContent": "Formula Hybrid + Electric may record a team’s presentation for publication or educational purposes. Students have the right to opt out of being recorded - however they must notify the chief presentation judge in writing prior to the beginning of their presentation.", "parentRuleCode": "1S2.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.9", - "ruleContent": "Data Projection Equipment Projection equipment is provided by the organizers. However, teams are advised to bring their own computer equipment in the event the organizer’s equipment malfunctions or is not compatible with their presentation software.", + "ruleContent": "Data Projection Equipment Projection equipment is provided by the organizers. However, teams are advised to bring their own computer equipment in the event the organizer’s equipment malfunctions or is not compatible with their presentation software.", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S2.10", - "ruleContent": "Scoring Formula The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is then normalized as follows: 퐹퐼푁퐴퐿 푃푅푂퐽퐸퐶푇 푀퐴푁퐴퐺퐸푀퐸푁푇 푆퐶푂푅퐸 = 150 * (푃 푦표푢푟 /푃 푚푎푥 ) Where: P max is the highest point score awarded to any team P your is the point score awarded to your team. Notes: 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 1. It is intended that the scores will range from near zero (0) to one hundred and fifty (150) points, providing a good separation range. 2. The Project Management Presentation Captain may at her/his discretion normalize the scores of different presentation judging teams for consistency in scoring. 3. Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are applied after the scores are normalized up to a maximum of the team’s normalized Project Management Score.", + "ruleContent": "Scoring Formula The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is then normalized as follows: 𝐹𝐼𝑁𝐴𝐿 𝑃𝑅𝑂𝐽𝐸𝐶𝑇 𝑀𝐴𝑁𝐴𝐺𝐸𝑀𝐸𝑁𝑇 𝑆𝐶𝑂𝑅𝐸 = 150 * (𝑃 𝑦𝑜𝑢𝑟 /𝑃 𝑚𝑎𝑥 ) Where: P max is the highest point score awarded to any team P your is the point score awarded to your team. Notes:", "parentRuleCode": "1S2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE S3", "ruleContent": "DESIGN EVENT", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.1", "ruleContent": "Design Event Objective The concept of the design event is to evaluate the engineering effort that went into the design of the car (or the substantial modifications to a prior year car), and how the engineering meets the intent of the market. The car that illustrates the best use of engineering to meet the design goals and the best understanding of the design by the team members will win the design event. Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and that in the Design event, teams are evaluated on their design. Components and systems that are incorporated into the design as finished items are not evaluated as a student designed unit, but are only assessed on the team’s selection and application of that unit. For example, teams that design and fabricate their own shocks are evaluated on the shock design itself as well as the shock’s application within the suspension system. Teams using commercially available shocks are evaluated only on selection and application within the suspension system.", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.2", "ruleContent": "Submission Requirements", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.2.1", - "ruleContent": "Design Report - Judging will start with a Design Review before the event. The principal document submitted for the Design Review is a Design Report. This report must not exceed ten (10) pages, consisting drawings (see S3.4, “Vehicle Drawings”) and content to be defined by the team (photos, graphs, etc...). This document should contain a brief description of the vehicle and each category listed in Appendix D with the majority of the report specifically addressing the engineering, design features, and vehicle concepts new for this year's event. Include a list of different analysis and testing techniques (FEA, dynamometer testing, etc.). Evidence of this analysis and back-up data should be brought to the competition and be available, on request, for review by the judges. These documents will be used by the judges to sort teams into the appropriate design groups based on the quality of their review. Comment: Consider your Design Report to be the “resume of your car”.", + "ruleContent": "Design Report - Judging will start with a Design Review before the event. The principal document submitted for the Design Review is a Design Report. This report must not exceed ten (10) pages, consisting drawings (see S3.4, “Vehicle Drawings”) and content to be defined by the team (photos, graphs, etc…). This document should contain a brief description of the vehicle and each category listed in Appendix D with the majority of the report specifically addressing the engineering, design features, and vehicle concepts new for this year's event. Include a list of different analysis and testing techniques (FEA, dynamometer testing, etc.). Evidence of this analysis and back-up data should be brought to the competition and be available, on request, for review by the judges. These documents will be used by the judges to sort teams into the appropriate design groups based on the quality of their review. Comment: Consider your Design Report to be the “resume of your car”.", "parentRuleCode": "1S3.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.2.2", - "ruleContent": "Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the FH+E website. (Do not alter or re-format the template prior to submission.) Note: The design judges realize that final design refinements and vehicle development may cause the submitted figures to diverge slightly from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 The Design Report and the Design Spec Sheet, while related documents, must stand alone and be considered two (2) separate submissions. Two separate file submissions are required.", + "ruleContent": "Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the FH+E website. (Do not alter or re-format the template prior to submission.) Note: The design judges realize that final design refinements and vehicle development may cause the submitted figures to diverge slightly from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate.", "parentRuleCode": "1S3.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.3", "ruleContent": "Sustainability Requirement", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.3.1", - "ruleContent": "Instead of a Sustainability Report please add a Sustainability section to the Design Report answering both of the following prompts: (a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How have you improved these quantities compared to previous year vehicles? How might you improve this in your next vehicle? What components or design decisions are the biggest contributors to the emissions or efficiency, positively or negatively? (b) How does the vehicle's design and construction contribute to the recyclability and re-use of your vehicle, especially when it comes to accumulator storage?", + "ruleContent": "Instead of a Sustainability Report please add a Sustainability section to the Design Report answering both of the following prompts: (a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How have you improved these quantities compared to previous year vehicles? How might you improve this in your next vehicle? What components or design decisions are the biggest contributors to the emissions or efficiency, positively or negatively? (b) How does the vehicle's design and construction contribute to the recyclability and re-use of your vehicle, especially when it comes to accumulator storage?", "parentRuleCode": "1S3.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.4", "ruleContent": "Vehicle Drawings", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.4.1", "ruleContent": "The Design report must include all of the following drawings: (a) One set of 3 view drawings showing the vehicle from the front, top, and side. (b) A schematic of the high voltage wiring showing the wiring between the major components. (See section EV13.1) (c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all major high voltage components and the routing of high voltage wiring. The components shown must (at a minimum) include all those listed in the major sections of the ESF (See section EV13.1)", "parentRuleCode": "1S3.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.5", "ruleContent": "Submission Formats", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.5.1", "ruleContent": "The Design Report must be submitted electronically in Adobe Acrobat™ Format files (*.pdf file). These documents must each be a single file (text, drawings, and optional content). These Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E assigned car number and the complete school name, e.g.: 999_University of SAE_Design.pdf", "parentRuleCode": "1S3.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.5.2", - "ruleContent": "Design Spec Sheets must be submitted electronically in Microsoft Excel™ Format. The format of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g. 999_University of SAE_Specs.xls (or) 999_University of SAE_Specs.xlsx WARNING – Failure to exactly follow the above submission requirements may result in exclusion from the Design Event. If your files are not submitted in the required format or are not properly named then they cannot be included in the documents provided to the design judges and your team will be excluded from the event. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Design Spec Sheets must be submitted electronically in Microsoft Excel™ Format. The format of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g. 999_University of SAE_Specs.xls (or) 999_University of SAE_Specs.xlsx WARNING – Failure to exactly follow the above submission requirements may result in exclusion from the Design Event. If your files are not submitted in the required format or are not properly named then they cannot be included in the documents provided to the design judges and your team will be excluded from the event.", "parentRuleCode": "1S3.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.6", "ruleContent": "Excess Size Design Reports If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read and evaluated by the judges. Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text information on them will be scored.", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.7", "ruleContent": "Submission Deadlines The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the event website once report is reviewed for accuracy. Teams should have a printed copy of this reply available at the competition as proof of submission in the event of discrepancy.", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.8", "ruleContent": "Penalty for Late Submission or Non-Submission See section A9.3 for late submission penalties.", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.9", "ruleContent": "Penalty for Unsatisfactory Submissions", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.9.1", "ruleContent": "Teams that submit a Design Report or a Design Spec Sheet which is deemed to be unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. They may be allowed to compete, but receive a penalty of up to seventy five (75) points. Failure to fully document the changes made for the current year’s event to a vehicle used in prior FH+E events, or reuse of any part of a prior year design report, are just two examples of Unsatisfactory Submissions", "parentRuleCode": "1S3.9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.10", "ruleContent": "Vehicle Condition", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.10.1", "ruleContent": "With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, complete and ready-to-run. The judges will not evaluate any car that is presented at the design event in what they consider to be an unfinished state. Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. Note: Cars can be presented for design judging without having passed technical inspection, or if final tuning and setup is still in progress.", "parentRuleCode": "1S3.10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.11", "ruleContent": "Judging Criteria The design judges will evaluate the engineering effort based upon the team’s Design Report, Spec Sheet, responses to questions and an inspection of the car. The design judges will inspect the car to determine if the design concepts are adequate and appropriate for the application (relative to the objectives set forth in the rules). It is the responsibility of the judges to deduct points on the design judging form, as given in Appendix D if the team cannot adequately explain the engineering and construction of the car.", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.12", - "ruleContent": "Judging Sequence The actual format of the design event may change from year to year as determined by the organizing body. In general, the design event includes a brief overview presentation in front of the physical vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve two parts: (a) Initial judging of all vehicles 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (b) Final judging ranking the top 2 to 4 vehicles.", + "ruleContent": "Judging Sequence The actual format of the design event may change from year to year as determined by the organizing body. In general, the design event includes a brief overview presentation in front of the physical vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve two parts: (a) Initial judging of all vehicles", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.13", - "ruleContent": "Scoring Formula The scoring of the event is based on either the average of the scores from the Design Judging Forms (see Appendix C) or the consensus of the judging team. 퐷퐸푆퐼퐺푁 푆퐶푂푅퐸 = 200 푃 푦표푢푟 푃 푚푎푥 Where: P max is the highest point score awarded to any team in your vehicle category P your is the point score awarded to your team Notes: It is intended that the scores will range from near zero (0) to two hundred (200) to provide good separation. ● The Lead Design Judge may, at his/her discretion, normalize the scores of different judging teams. ● Penalties applied during the Design Event (see Appendix D “Design Judging Form - Miscellaneous”) are applied before the scores are normalized. ● Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are applied after the scores are normalized up to a maximum of the teams normalized Design Score.", + "ruleContent": "Scoring Formula The scoring of the event is based on either the average of the scores from the Design Judging Forms (see Appendix C) or the consensus of the judging team. 𝐷𝐸𝑆𝐼𝐺𝑁 𝑆𝐶𝑂𝑅𝐸 = 200 𝑃 𝑦𝑜𝑢𝑟 𝑃 𝑚𝑎𝑥 Where: P max is the highest point score awarded to any team in your vehicle category P your is the point score awarded to your team Notes: It is intended that the scores will range from near zero (0) to two hundred (200) to provide good separation. ● The Lead Design Judge may, at his/her discretion, normalize the scores of different judging teams. ● Penalties applied during the Design Event (see Appendix D “Design Judging Form - Miscellaneous”) are applied before the scores are normalized. ● Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are applied after the scores are normalized up to a maximum of the teams normalized Design Score.", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1S3.14", - "ruleContent": "Support Materials Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Support Materials Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process.", "parentRuleCode": "1S3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "PART 1D", "ruleContent": "DYNAMIC EVENTS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D1", "ruleContent": "DYNAMIC EVENTS GENERAL", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.1", "ruleContent": "Maximum Scores Event Acceleration 100 Points Autocross 200 Points Endurance 350 Points Total 650 Points Table 17 - Dynamic Event Maximum Scores", "parentRuleCode": "1D1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.2", "ruleContent": "Driving Behavior During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to an official, worker, spectator or other driver, will result in a penalty. Depending on the potential consequences of the behavior, the penalty will range from an admonishment, to disqualification of that driver from all events, to disqualification of the team from that event, to exclusion of the team from the Competition.", "parentRuleCode": "1D1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.3", "ruleContent": "Safety Procedures", "parentRuleCode": "1D1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.3.1", - "ruleContent": "Drivers must properly use all required safety equipment at all times while staged for an event, while running the event, and while stopped on track during an event. Required safety equipment includes all drivers gear and all restraint harnesses.", + "ruleContent": "Drivers must properly use all required safety equipment at all times while staged for an event, while running the event, and while stopped on track during an event. Required safety equipment includes all drivers gear and all restraint harnesses.", "parentRuleCode": "1D1.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.3.2", "ruleContent": "In the event it is necessary to stop on track during an event the driver must attempt to position the vehicle in a safe position off of the racing line.", "parentRuleCode": "1D1.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.3.3", - "ruleContent": "Drivers must not exit a vehicle stopped on track during an event until directed to do so by an event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or electrical problems.", + "ruleContent": "Drivers must not exit a vehicle stopped on track during an event until directed to do so by an event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or electrical problems.", "parentRuleCode": "1D1.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.4", "ruleContent": "Vehicle Integrity and Disqualification", "parentRuleCode": "1D1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.4.1", "ruleContent": "During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged suspension, brakes or steering components, electrical tractive system fault, or any condition that could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid reason for exclusion by the officials.", "parentRuleCode": "1D1.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.4.2", "ruleContent": "The safety systems monitoring the electrical tractive system must be functional as indicated by an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event.", "parentRuleCode": "1D1.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D1.4.3", - "ruleContent": "If vehicle integrity is compromised during the Endurance Event, scoring for that segment will be terminated as of the last completed lap. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "If vehicle integrity is compromised during the Endurance Event, scoring for that segment will be terminated as of the last completed lap.", "parentRuleCode": "1D1.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D2", "ruleContent": "WEATHER CONDITIONS The organizer reserves the right to alter the conduct and scoring of the competition based on weather conditions.", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D3", - "ruleContent": "RUNNING IN RAIN A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See EV10.5)", - "pageNumber": "1" + "ruleContent": "RUNNING IN RAIN A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See EV10.5)", + "pageNumber": "0" }, { "ruleCode": "1D3.1", "ruleContent": "Operating Conditions The following operating conditions will be recognized at Formula Hybrid + Electric: (a) Dry – Overall the track surface is dry. (b) Damp – Significant sections of the track surface are damp. (c) Wet – The entire track surface is wet and there may be puddles of water. (d) Weather Delay/Cancellation – Any situation in which all, or part, of an event is delayed, rescheduled or canceled in response to weather conditions.", "parentRuleCode": "1D3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.2", "ruleContent": "Decision on Operating Conditions The operating condition in effect at any time during the competition will be decided by the competition officials.", "parentRuleCode": "1D3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.3", "ruleContent": "Notification If the competition officials declare the track(s) to be \"Damp\" or \"Wet\", (a) This decision will be announced over the public address system, and (b) A sign with either \"Damp\" or \"Wet\" will be prominently displayed at both the starting line(s) and the start-finish line of the event(s), and the entry gate to the \"hot\" area.", "parentRuleCode": "1D3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.4", "ruleContent": "Tire Requirements The operating conditions will determine the type of tires a car may run as follows: (a) Dry – Cars must run their Dry Tires, except as covered in D3.8. (b) Damp – Cars may run either their Dry Tires or Rain Tires, at each team’s option. (c) Wet – Cars must run their Rain Tires.", "parentRuleCode": "1D3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.5", "ruleContent": "Event Rules All event rules remain in effect.", "parentRuleCode": "1D3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.6", "ruleContent": "Penalties All penalties remain in effect.", "parentRuleCode": "1D3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.7", "ruleContent": "Scoring No adjustments will be made to teams' times for running in \"Damp\" or \"Wet\" conditions. The minimum performance levels to score points may be adjusted if deemed appropriate by the officials.", "parentRuleCode": "1D3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.8", "ruleContent": "Tire Changing", "parentRuleCode": "1D3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.8.1", - "ruleContent": "During the Acceleration or Autocross Events: 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Within the provisions of D3.4 above, teams may change from Dry Tires to Rain Tires or vice versa at any time during those events at their own discretion.", + "ruleContent": "During the Acceleration or Autocross Events:", "parentRuleCode": "1D3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D3.8.2", - "ruleContent": "During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any time while their car is in the staging area inside the \"hot\" area. All tire changes after a car has received the \"green flag\" to start the Endurance Event must take place in the Driver Change Area. (a) If the track was \"Dry\" and is declared \"Damp\": (i) Teams may start on either Dry or Rain Tires at their option. (ii) Teams that are on the track when it is declared \"Damp\", may elect, at their option, to pit in the Driver Change Area and change to Rain Tires under the terms spelled out below in \"Tire Changes in the Driver Change Area\". (b) If the track is declared \"Wet\": (i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver Change Area. (ii) Those cars that are already fitted with \"Rain\" tires will be allowed restart without delay subject to the discretion of the Event Captain/Clerk of the Course. (iii)Those cars without \"Rain\" tires will be required to fit them under the terms spelled out below in \"Tire Changes in the Driver Change Area\". They will then be allowed to re- start at the discretion of the Event Captain/Clerk of the Course. (c) If the track is declared \"Dry\" after being \"Damp\" or \"Wet\": The teams will NOT be required to change back to “Dry” tires. (d) Tire Changes at Team's Option: (i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to change tires at their option. (ii) If a team elects to change from “Dry” to “Rain” tires, the time to make the change will NOT be included in the team’s total time. (iii) If a team elects to change from “Rain” tires back to “Dry” tires, the time taken to make the change WILL be included in the team’s total time for the event, i.e. it will not be subtracted from the total elapsed time. However, a change from “Rain” tires back to “Dry” tires will not be permitted during the driver change. (iv) To make such a change, the following procedure must be followed: 1. Team makes the decision 2. Team has tires and equipment ready near Driver Change Area 3. The team informs the Event Captain/Clerk of the Course they wish their car to be brought in for a tire change 4. Officials inform the driver by means of a sign or flag at the checker flag station 5. Driver exits the track and enters the Driver Change Area in the normal manner. (e) Tire Changes in the Driver Change Area: 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (i) Per Rule D7.13.2 no more than three people for each team may be present in the Driver Change Area during any tire change, e.g. a driver and two crew or two drivers and one crew member. (ii) No other work may be performed on the cars during a tire change. (iii) Teams changing from \"Dry\" to \"Rain\" tires will be allowed a maximum of ten (10) minutes to make the change. (iv) If a team elects to change from \"Dry\" to \"Rain\" tires during their scheduled driver change, they may do so, and the total allowed time in the Driver Change Area will be increased without penalty by ten (10) minutes. (v) The time spent in the driver change area of less than 10 minutes without driver change will not be counted in the team's total time for the event. Any time in excess of these times will be counted in the team's total time for the event.", + "ruleContent": "During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any time while their car is in the staging area inside the \"hot\" area. All tire changes after a car has received the \"green flag\" to start the Endurance Event must take place in the Driver Change Area. (a) If the track was \"Dry\" and is declared \"Damp\": (i) Teams may start on either Dry or Rain Tires at their option. (ii) Teams that are on the track when it is declared \"Damp\", may elect, at their option, to pit in the Driver Change Area and change to Rain Tires under the terms spelled out below in \"Tire Changes in the Driver Change Area\". (b) If the track is declared \"Wet\": (i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver Change Area. (ii) Those cars that are already fitted with \"Rain\" tires will be allowed restart without delay subject to the discretion of the Event Captain/Clerk of the Course. (iii)Those cars without \"Rain\" tires will be required to fit them under the terms spelled out below in \"Tire Changes in the Driver Change Area\". They will then be allowed to re- start at the discretion of the Event Captain/Clerk of the Course. (c) If the track is declared \"Dry\" after being \"Damp\" or \"Wet\": The teams will NOT be required to change back to “Dry” tires. (d) Tire Changes at Team's Option: (i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to change tires at their option. (ii) If a team elects to change from “Dry” to “Rain” tires, the time to make the change will NOT be included in the team’s total time. (iii) If a team elects to change from “Rain” tires back to “Dry” tires, the time taken to make the change WILL be included in the team’s total time for the event, i.e. it will not be subtracted from the total elapsed time. However, a change from “Rain” tires back to “Dry” tires will not be permitted during the driver change. (iv) To make such a change, the following procedure must be followed: 1. Team makes the decision 2. Team has tires and equipment ready near Driver Change Area 3. The team informs the Event Captain/Clerk of the Course they wish their car to be brought in for a tire change 4. Officials inform the driver by means of a sign or flag at the checker flag station 5. Driver exits the track and enters the Driver Change Area in the normal manner. (e) Tire Changes in the Driver Change Area:", "parentRuleCode": "1D3.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D4", "ruleContent": "DRIVER LIMITATIONS", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D4.1", "ruleContent": "Two Event Limit", "parentRuleCode": "1D4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D4.1.1", - "ruleContent": "An individual team member may not drive in more than two (2) events. Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum of four (4) drivers is required to participate in all possible runs in all of the dynamic events.", + "ruleContent": "An individual team member may not drive in more than two (2) events. Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum of four (4) drivers is required to participate in all possible runs in all of the dynamic events.", "parentRuleCode": "1D4.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D4.1.2", "ruleContent": "It is the team’s option to participate in any event. The team may forfeit any runs in any performance event.", "parentRuleCode": "1D4.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D4.1.3", "ruleContent": "In order to drive in the endurance event, a driver must have attended the mandatory drivers meeting and walked the endurance track with an official.", "parentRuleCode": "1D4.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D4.1.4", "ruleContent": "The time and location of the meeting and walk-around will be announced at the event.", "parentRuleCode": "1D4.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D5", "ruleContent": "ACCELERATION EVENT", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.1", "ruleContent": "Acceleration Objective The acceleration event evaluates the car’s acceleration in a straight line on flat pavement.", "parentRuleCode": "1D5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.2", "ruleContent": "Acceleration Procedure The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be used to indicate the approval to begin, however, time starts only after the vehicle crosses the start line. There will be no particular order of the cars in the event. A driver has the option to take a second run immediately after the first.", "parentRuleCode": "1D5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.3", "ruleContent": "Acceleration Event", "parentRuleCode": "1D5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.3.1", - "ruleContent": "All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the acceleration runs.", + "ruleContent": "All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the acceleration runs.", "parentRuleCode": "1D5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.3.2", - "ruleContent": "Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during any of their acceleration runs. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during any of their acceleration runs.", "parentRuleCode": "1D5.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.4", "ruleContent": "Tire Traction – Limitations Special agents that increase traction may not be added to the tires or track surface and “burnouts” are not allowed.", "parentRuleCode": "1D5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.5", "ruleContent": "Acceleration Scoring The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the time the car crosses the starting line until it crosses the finish line.", "parentRuleCode": "1D5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.6", "ruleContent": "Acceleration Penalties", "parentRuleCode": "1D5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.6.1", "ruleContent": "Cones Down Or Out (DOO) A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred on that particular run to give the corrected elapsed time.", "parentRuleCode": "1D5.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.6.2", "ruleContent": "Off Course An Off Course (OC) will result in a DNF for that run.", "parentRuleCode": "1D5.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.7", "ruleContent": "Did Not Attempt The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Finish (DNF).", "parentRuleCode": "1D5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.8", "ruleContent": "Acceleration Scoring Formula The equation below is used to determine the scores for the Acceleration Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”.", "parentRuleCode": "1D5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D5.8.1", - "ruleContent": "A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded “Performance Points” based on its corrected elapsed time relative to the time of the best team in its class. 퐴퐶퐶퐸퐿퐸푅퐴푇퐼푂푁 푆퐶푂푅퐸=10 +15+ (75 × 푇 푚푖푛 푇 푦표푢푟 ) Where: T your is the lowest corrected elapsed time (including penalties) recorded by your team. T min is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category. Note: A Did Not Start (DNS) will score (0) points for the event", + "ruleContent": "A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded “Performance Points” based on its corrected elapsed time relative to the time of the best team in its class. 𝐴𝐶𝐶𝐸𝐿𝐸𝑅𝐴𝑇𝐼𝑂𝑁 𝑆𝐶𝑂𝑅𝐸 = 10 + 15 + (75 × 𝑇 𝑚𝑖𝑛 𝑇 𝑦𝑜𝑢𝑟 ) Where: T your is the lowest corrected elapsed time (including penalties) recorded by your team. T min is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category. Note: A Did Not Start (DNS) will score (0) points for the event", "parentRuleCode": "1D5.8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D6", "ruleContent": "AUTOCROSS EVENT", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.1", - "ruleContent": "Autocross Objective The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a tight course without the hindrance of competing cars. The autocross course will combine the performance features of acceleration, braking, and cornering into one event. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Autocross Objective The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a tight course without the hindrance of competing cars. The autocross course will combine the performance features of acceleration, braking, and cornering into one event.", "parentRuleCode": "1D6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.2", "ruleContent": "Autocross Procedure", "parentRuleCode": "1D6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.2.1", "ruleContent": "There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) timed laps will be run (weather and time permitting) by each driver and the best lap time will stand as the time for that heat.", "parentRuleCode": "1D6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.2.2", "ruleContent": "The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. The timer starts only after the car crosses the start line.", "parentRuleCode": "1D6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.2.3", "ruleContent": "There will be no particular order of the cars to run each heat, but a driver has the option to take a second run immediately after the first.", "parentRuleCode": "1D6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.2.4", "ruleContent": "The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Start (DNS).", "parentRuleCode": "1D6.2", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.3", "ruleContent": "Autocross Course Specifications & Speeds", "parentRuleCode": "1D6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.3.1", - "ruleContent": "The following specifications will suggest the maximum speeds that will be encountered on the course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). (a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 m (150 feet) with wide turns on the ends. (b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. (c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). (d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. (e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track width will be 3.5 m (11.5 feet).", + "ruleContent": "The following specifications will suggest the maximum speeds that will be encountered on the course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). (a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 m (150 feet) with wide turns on the ends. (b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. (c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). (d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. (e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track width will be 3.5 m (11.5 feet).", "parentRuleCode": "1D6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.3.2", "ruleContent": "The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete a specified number of runs.", "parentRuleCode": "1D6.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.4", "ruleContent": "Autocross Penalties The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed time:", "parentRuleCode": "1D6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.4.1", "ruleContent": "Cone Down or Out (DOO) Two (2) seconds per cone, including any after the finish line.", "parentRuleCode": "1D6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.4.2", "ruleContent": "Off Course Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. Penalties will not be assessed for accident avoidance or other reasons deemed sufficient by the track officials. If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off the paved surface will count as an \"off course\". Two (2) wheels off will not incur an immediate penalty; however, consistent driving of this type may be penalized at the discretion of the event officials.", "parentRuleCode": "1D6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.4.3", "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one \"off-course\" per occurrence. Each occurrence will incur a twenty (20) second penalty.", "parentRuleCode": "1D6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.4.4", - "ruleContent": "Stalled & Disabled Vehicles 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 If a car stalls and cannot restart without external assistance, the car will be deemed disabled. Cars deemed disabled will be cleared from the track by the track workers. At the direction of the track officials team members may be instructed to retrieve the vehicle. Vehicle recovery may only be done under the control of the track officials.", + "ruleContent": "Stalled & Disabled Vehicles", "parentRuleCode": "1D6.4", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.5", "ruleContent": "Corrected Elapsed Time The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time.", "parentRuleCode": "1D6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.6", "ruleContent": "Best Run Scored The time required to complete each run will be recorded and the team’s best corrected elapsed time will be used to determine the score.", "parentRuleCode": "1D6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D6.7", - "ruleContent": "Autocross Scoring Formula The equation below is used to determine the scores for the Autocross Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”. A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded “Performance Points” based on its corrected elapsed time relative to the time of the best team in its vehicle category. 퐴푈푇푂퐶푅푂푆푆 푆퐶푂푅퐸=20+30+ (150× 푇 푚푖푛 푇 푦표푢푟 ) Where: T min is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category over their four heats. T your is the lowest corrected elapsed time (including penalties) recorded by your team over the four heats. Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event.", + "ruleContent": "Autocross Scoring Formula The equation below is used to determine the scores for the Autocross Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”. A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded “Performance Points” based on its corrected elapsed time relative to the time of the best team in its vehicle category. 𝐴𝑈𝑇𝑂𝐶𝑅𝑂𝑆𝑆 𝑆𝐶𝑂𝑅𝐸 = 20 + 30 + (150 × 𝑇 𝑚𝑖𝑛 𝑇 𝑦𝑜𝑢𝑟 ) Where: T min is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category over their four heats. T your is the lowest corrected elapsed time (including penalties) recorded by your team over the four heats. Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event.", "parentRuleCode": "1D6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D7", "ruleContent": "ENDURANCE EVENT", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.1", - "ruleContent": "Right to Change Procedure The following are general guidelines for conducting the endurance event. The organizers reserve the right to establish procedures specific to the conduct of the event at the site. All such procedures will be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or on the official bulletin board at the event.", + "ruleContent": "Right to Change Procedure The following are general guidelines for conducting the endurance event. The organizers reserve the right to establish procedures specific to the conduct of the event at the site. All such procedures will be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or on the official bulletin board at the event.", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.2", - "ruleContent": "Endurance Objective The endurance event is designed to evaluate the vehicle’s overall performance, reliability and efficiency. Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated distance on a fixed amount of energy in the least amount of time. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Endurance Objective The endurance event is designed to evaluate the vehicle’s overall performance, reliability and efficiency. Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated distance on a fixed amount of energy in the least amount of time.", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.3", "ruleContent": "Endurance General Procedure", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.3.1", - "ruleContent": "In general, the team completing the most laps in the shortest time will earn the maximum points available for this event. Formula Hybrid + Electric uses an endurance scoring formula that rewards both speed and distance traveled. (See D7.18)", + "ruleContent": "In general, the team completing the most laps in the shortest time will earn the maximum points available for this event. Formula Hybrid + Electric uses an endurance scoring formula that rewards both speed and distance traveled. (See D7.18)", "parentRuleCode": "1D7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.3.2", "ruleContent": "The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 mile) segments.", "parentRuleCode": "1D7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.3.3", "ruleContent": "Driver changes will be made between each segment.", "parentRuleCode": "1D7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.3.4", "ruleContent": "Wheel to wheel racing is prohibited.", "parentRuleCode": "1D7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.3.5", "ruleContent": "Passing another vehicle may only be done in an established passing zone or under the control of a course marshal.", "parentRuleCode": "1D7.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.4", - "ruleContent": "Endurance Course Specifications & Speeds Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr (29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). Endurance courses will be configured, where possible, in a manner which maximizes the advantage of regenerative braking. (a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than 61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several locations. (b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. (c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). (d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. (e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). (f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius turns, elevation changes, etc.", + "ruleContent": "Endurance Course Specifications & Speeds Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr (29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). Endurance courses will be configured, where possible, in a manner which maximizes the advantage of regenerative braking. (a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than 61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several locations. (b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. (c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). (d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. (e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). (f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius turns, elevation changes, etc.", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.5", "ruleContent": "Energy", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.5.1", "ruleContent": "All vehicles competing in the endurance event must complete the event using only the energy stored on board the vehicle at the start of the event plus any energy reclaimed through regenerative braking during the event. Alternatively, vehicles may compete in the endurance event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted towards the endurance score. If energy meter data is missing or appears inaccurate, the vehicle may receive start and performance points as appropriate, but “performance points” may be forfeited at organizers discretion.", "parentRuleCode": "1D7.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.5.2", "ruleContent": "Prior to the beginning of the endurance event, all competitors may charge their electric accumulators from any approved power source they wish.", "parentRuleCode": "1D7.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.5.3", "ruleContent": "Once a vehicle has begun the endurance event, recharging accumulators from an off-board source is not permitted.", "parentRuleCode": "1D7.5", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.6", "ruleContent": "Hybrid Vehicles", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.6.1", - "ruleContent": "All Hybrid vehicles will begin the endurance event with the defined amount of energy on board. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "All Hybrid vehicles will begin the endurance event with the defined amount of energy on board.", "parentRuleCode": "1D7.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.6.2", "ruleContent": "The amount of energy allotted to each team is determined by the Formula Hybrid + Electric Rules Committee and is listed in Table 1 – 2024 Energy and Accumulator Limits", "parentRuleCode": "1D7.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.6.3", "ruleContent": "The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by an amount equal to the stated energy capacity of the vehicle’s accumulator(s).", "parentRuleCode": "1D7.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.6.4", "ruleContent": "There will be no extra points given for fuel remaining at the end of the endurance event.", "parentRuleCode": "1D7.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.7", "ruleContent": "Fueling - Hybrid Vehicles", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.7.1", - "ruleContent": "Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will then be added to the tank by the organizers and the filler will be sealed.", + "ruleContent": "Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will then be added to the tank by the organizers and the filler will be sealed.", "parentRuleCode": "1D7.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.7.2", "ruleContent": "Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and supporting the vehicle to facilitate draining the fuel tank.", "parentRuleCode": "1D7.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.7.3", "ruleContent": "Once fueled, the vehicle must proceed directly to the endurance staging area.", "parentRuleCode": "1D7.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.8", "ruleContent": "Charging - Electric Vehicles Each Electric vehicle will begin the endurance event with whatever energy can be stored in its accumulator(s).", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.9", "ruleContent": "Endurance Run Order Endurance run order will be determined by the team’s corrected elapsed time in the autocross. Teams with the best autocross corrected elapsed time will run first. If a team did not score in the autocross event, the run order will then continue based on acceleration event times, followed by any vehicles that may not have completed either previous dynamic event. Endurance run order will be published at least one hour before the endurance event is run.", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.10", "ruleContent": "Entering the Track At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter based on traffic conditions.", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.11", "ruleContent": "Endurance Vehicle Restarting", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.11.1", "ruleContent": "The vehicle must be capable of restarting without external assistance at all times once the vehicle has begun the event.", "parentRuleCode": "1D7.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.11.2", "ruleContent": "If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following it (approximately one (1) minute) to restart.", "parentRuleCode": "1D7.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.11.3", "ruleContent": "At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8).", "parentRuleCode": "1D7.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.11.4", "ruleContent": "If restarts are not accomplished within the above times, the vehicle will be deemed disabled and scored as a DNF for the event.", "parentRuleCode": "1D7.11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.12", "ruleContent": "Breakdowns & Stalls", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.12.1", "ruleContent": "If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter the course.", "parentRuleCode": "1D7.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.12.2", "ruleContent": "If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course where it went off, but no work may be performed on the vehicle", "parentRuleCode": "1D7.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.12.3", - "ruleContent": "If a vehicle stops on track and cannot be restarted without external assistance, the track workers will push the vehicle clear of the track. At the discretion of event officials, two (2) team members may retrieve the vehicle under direction of the track workers. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "If a vehicle stops on track and cannot be restarted without external assistance, the track workers will push the vehicle clear of the track. At the discretion of event officials, two (2) team members may retrieve the vehicle under direction of the track workers.", "parentRuleCode": "1D7.12", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13", "ruleContent": "Endurance Driver Change Procedure", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.1", - "ruleContent": "There must be a minimum of two (2) drivers for the endurance event, with a maximum of four (4) drivers. One driver may not drive in two consecutive segments.", + "ruleContent": "There must be a minimum of two (2) drivers for the endurance event, with a maximum of four (4) drivers. One driver may not drive in two consecutive segments.", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.2", "ruleContent": "Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the driver change area. If a driver elects to come into driver change before the end of their 11km segment, they will not be allowed to make up the laps remaining in that segment.", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.3", "ruleContent": "Only three (3) team members, including the driver or drivers, will be allowed in the driver change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers and/or change tires will be carried into this area (no tool chests, electronic test equipment, computers, etc.). Extra people entering the driver change area will result in a twenty (20) point penalty to the final endurance score for each extra person entering the area. Note: Teams are permitted to “tag-team” in and out of the driver change area as long as there are no more than three (3) team members present at any one time.", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.4", "ruleContent": "The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. These systems must remain shut down until the new driver is in place. (See D7.13.8)", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.5", "ruleContent": "The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be secured in the vehicle.", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.6", - "ruleContent": "Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle comes to a halt in the driver change area and stops when the correct adjustment of the driver restraints and safety equipment has been verified by the driver change area official. Any time taken over the allowed time will incur a penalty. (See D7.17.2(k))", + "ruleContent": "Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle comes to a halt in the driver change area and stops when the correct adjustment of the driver restraints and safety equipment has been verified by the driver change area official. Any time taken over the allowed time will incur a penalty. (See D7.17.2(k))", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.7", "ruleContent": "During the driver change, teams are not permitted to do any work on, or make any adjustments to the vehicle with the following exceptions: (a) Changes required to accommodate each driver (b) Tire changing as covered by D3.8 “Tire Changing”, (c) Actuation of the following buttons/switches to assist the driver with re-energizing the electrical tractive system (i) Ground Low Voltage Master Switch (ii) Tractive System Master Switch (iii) Side Mounted BRBs (iv) IMD Reset (Button/Switch must be clearly marked “IMD RESET”) (v) AMS Reset (Button/Switch must be clearly marked “AMS RESET”)", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.8", - "ruleContent": "Once the new driver is in place and an official has verified the correct adjustment of the driver restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive system (IC engine, electrical tractive system, or both) and begin moving out of the driver change area. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 The ESOK indicator must be illuminated and verified by the driver change area official prior to the vehicle being released out of the driver change area.", + "ruleContent": "Once the new driver is in place and an official has verified the correct adjustment of the driver restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive system (IC engine, electrical tractive system, or both) and begin moving out of the driver change area.", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.9", "ruleContent": "The process given in Error! Reference source not found. through D7.13.8 will be repeated for each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km (27.34 miles) distance or until the endurance event track closing time, at which point the vehicle will be signaled off the course.", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.10", "ruleContent": "The driver change area will be placed such that the timing system will see the driver change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this extra-long lap will not count into a team’s final time. If a driver change takes longer than three minutes, the extra time will be added to the team’s final time.", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.13.11", "ruleContent": "Once the vehicle has begun the event, electronic adjustment to the vehicle may only be made by the driver using driver-accessible controls.", "parentRuleCode": "1D7.13", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.14", "ruleContent": "Endurance Lap Timing", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.14.1", "ruleContent": "Each lap of the endurance event will be individually timed either by electronic means, or by hand.", "parentRuleCode": "1D7.14", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.14.2", "ruleContent": "Each team is required to time their vehicle during the endurance event as a backup in case of a timing equipment malfunction. An area will be provided where a maximum of two team members can perform this function. All laps, including the extra-long laps must be recorded legibly and turned in to the organizers at the end of the endurance event. Standardized lap timing forms will be provided by the organizers.", "parentRuleCode": "1D7.14", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.15", "ruleContent": "Exiting the Course", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.15.1", "ruleContent": "Timing will stop when the vehicle crosses the start/finish line.", "parentRuleCode": "1D7.15", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.15.2", "ruleContent": "Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter the driver change area before coming to a stop. There will be no “cool down” laps.", "parentRuleCode": "1D7.15", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.15.3", "ruleContent": "The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be penalized.", "parentRuleCode": "1D7.15", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.16", "ruleContent": "Endurance Minimum Speed Requirement", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.16.1", "ruleContent": "A car's allotted number of laps, including driver’s changes, must be completed in a maximum of 120 minutes elapsed time from the start of that car's first lap. Cars that are unable to comply will be flagged off the course and their actual completed laps tallied.", "parentRuleCode": "1D7.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.16.2", - "ruleContent": "If a vehicle’s lap time becomes greater than Max Average Lap Time (See: D7.18) it may be declared “out of energy”, and flagged off the course. The vehicle will be deemed disabled and scored as a DNF for the event. Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring formulas. Attempting to complete additional laps at too low a speed can cost a team points.", + "ruleContent": "If a vehicle’s lap time becomes greater than Max Average Lap Time (See: D7.18) it may be declared “out of energy”, and flagged off the course. The vehicle will be deemed disabled and scored as a DNF for the event. Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring formulas. Attempting to complete additional laps at too low a speed can cost a team points.", "parentRuleCode": "1D7.16", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.17", "ruleContent": "Endurance Penalties", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.17.1", "ruleContent": "Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the track official.", "parentRuleCode": "1D7.17", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.17.2", - "ruleContent": "The penalties in effect during the endurance event are listed below. (a) Cone down or out (DOO) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Two (2) seconds per cone. This includes cones before the start line and after the finish line. (b) Off Course (OC) For an OC, the driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. If a paved surface edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off the paved surface will count as an \"off course\". Two (2) wheels off will not incur an immediate penalty. However, consistent driving of this type may be penalized at the discretion of the event officials. (c) Missed Slalom Missing one or more gates of a given slalom will incur a twenty (20) second penalty. (d) Failure to obey a flag Penalty: 1 minute (e) Over Driving (After a closed black flag) Penalty: 1 Minute (f) Vehicle to Vehicle Contact Penalty: DISQUALIFIED (g) Running Out of Order Penalty: 2 Minutes (h) Mechanical Black Flag See D7.23.3(b). No time penalty. The time taken for mechanical or electrical inspection under a “mechanical black flag” is considered officials’ time and is not included in the team’s total time. However, if the inspection reveals a mechanical or electrical integrity problem the vehicle may be deemed disabled and scored as a DNF for the event. (i) Reckless or Aggressive Driving Any reckless or aggressive driving behavior (such as forcing another vehicle off the track, refusal to allow passing, or close driving that would cause the likelihood of vehicle contact) will result in a black flag for that driver. When a driver receives a black flag signal, he/she must proceed to the penalty box to listen to a reprimand for his/her driving behavior. The amount of time spent in the penalty box will vary from one (1) to four (4) minutes depending upon the severity of the offense. If it is impossible to impose a penalty by a stop under a black flag, e.g. not enough laps left, the event officials may add an appropriate time penalty to the team’s elapsed time. (j) Inexperienced Driver The Event Captain or Clerk of the Course may disqualify a driver if the driver is too slow, too aggressive, or driving in a manner that, in the sole opinion of the event officials, demonstrates an inability to properly control their vehicle. This will result in a DNF for the event. (k) Driver Change 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Driver changes taking longer than three (3) minutes will be penalized.", + "ruleContent": "The penalties in effect during the endurance event are listed below. (a) Cone down or out (DOO)", "parentRuleCode": "1D7.17", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.18", "ruleContent": "Endurance Scoring Formula The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, etc.), plus any penalty time and penalty points assessed against all drivers and team members. Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the DNF.", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.18.1", - "ruleContent": "The equation below is used to determine the scores for the Endurance Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”. A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) lap. A team is awarded “Performance Points” based on the number of laps it completes relative to the best team in its vehicle category (distance factor) and its corrected average lap time relative to the event standard time and the time of the best team in its vehicle category (speed factor). 퐸푁퐷푈푅퐴푁퐶퐸 푆퐶푂푅퐸 = 35+52.5+ 262.5 ( 퐿푎푝푆푢푚 ( 푛 ) 푦표푢푟 퐿푎푝푆푢푚 ( 푛 ) 푚푎푥 ) ( 푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 푇 푦표푢푟 )−1 ( 푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 푇 푚푖푛 ) −1 Where: Max Average Lap Time is the event standard time in minutes and is calculated as 푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 = 105 푡ℎ푒 푛푢푚푏푒푟 표푓 푙푎푝푠 푟푒푞푢푖푟푒푑 푡표 푐표푚푝푙푒푡푒 44 푘푚 T min = the lowest corrected average lap time (including penalties) recorded by the fastest team in your vehicle category over their completed laps. T your = the corrected average lap time (including penalties) recorded by your team over your completed laps. LapSum(n) max = The value of LapSum corresponding to number of complete laps credited to the team in your vehicle category that covered the greatest distance. LapSum(n) your = The value of LapSum corresponding to the number of complete laps credited to your team Notes: (a) If your team completes all of the required laps, then LapSum(n) your will equal the maximum possible value of LapSum(n). (990 for a 44 lap event). (b) If your team does not complete the required number of laps, then LapSum(n) your will be based on the number of laps completed. See Appendix B for LapSum(n) calculation methodology. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (c) Negative “performance points” will not be given. (d) A Did Not Start (DNS) will score (0) points for the event", + "ruleContent": "The equation below is used to determine the scores for the Endurance Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”. A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) lap. A team is awarded “Performance Points” based on the number of laps it completes relative to the best team in its vehicle category (distance factor) and its corrected average lap time relative to the event standard time and the time of the best team in its vehicle category (speed factor). 𝐸𝑁𝐷𝑈𝑅𝐴𝑁𝐶𝐸 𝑆𝐶𝑂𝑅𝐸 = 35 + 52.5 + 262.5 ( 𝐿𝑎𝑝𝑆𝑢𝑚 ( 𝑛 ) 𝑦𝑜𝑢𝑟 𝐿𝑎𝑝𝑆𝑢𝑚 ( 𝑛 ) 𝑚𝑎𝑥 ) ( 𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 𝑇 𝑦𝑜𝑢𝑟 ) − 1 ( 𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 𝑇 𝑚𝑖𝑛 ) − 1 Where: Max Average Lap Time is the event standard time in minutes and is calculated as 𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 = 105 𝑡ℎ𝑒 𝑛𝑢𝑚𝑏𝑒𝑟 𝑜𝑓 𝑙𝑎𝑝𝑠 𝑟𝑒𝑞𝑢𝑖𝑟𝑒𝑑 𝑡𝑜 𝑐𝑜𝑚𝑝𝑙𝑒𝑡𝑒 44 𝑘𝑚 T min = the lowest corrected average lap time (including penalties) recorded by the fastest team in your vehicle category over their completed laps. T your = the corrected average lap time (including penalties) recorded by your team over your completed laps. LapSum(n) max = The value of LapSum corresponding to number of complete laps credited to the team in your vehicle category that covered the greatest distance. LapSum(n) your = The value of LapSum corresponding to the number of complete laps credited to your team Notes: (a) If your team completes all of the required laps, then LapSum(n) your will equal the maximum possible value of LapSum(n). (990 for a 44 lap event). (b) If your team does not complete the required number of laps, then LapSum(n) your will be based on the number of laps completed. See Appendix B for LapSum(n) calculation methodology.", "parentRuleCode": "1D7.18", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.18.2", "ruleContent": "Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their results truncated at the last lap completed within the 120 minute limit.", "parentRuleCode": "1D7.18", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.19", "ruleContent": "Post Event Engine and Energy Check The organizer reserves the right to impound any vehicle immediately after the event to check accumulator capacity, engine displacement (method to be determined by the organizer) and restrictor size (if fitted).", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.20", "ruleContent": "Endurance Event – Driving", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.20.1", "ruleContent": "During the endurance event when multiple vehicles are running on the course it is paramount that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion in the penalty box with course officials. The amount of time spent in the penalty box is at the discretion of the officials and is included in the run time. Penalty box time serves as a reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware that contact between open wheel racers is especially dangerous because tires touching can throw one vehicle into the air.", "parentRuleCode": "1D7.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.20.2", "ruleContent": "Endurance is a timed event in which drivers compete only against the clock not against other vehicles. Aggressive driving is unnecessary.", "parentRuleCode": "1D7.20", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.21", "ruleContent": "Endurance Event – Passing", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.21.1", "ruleContent": "Passing during the endurance event may only be done in the designated passing zones and under the control of the track officials. Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the slow lane and decelerate. The following faster vehicle will continue in the fast lane and make the pass. The vehicle that had been passed may reenter traffic only under the control of the passing zone exit marshal. The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on the design of the specific course.", "parentRuleCode": "1D7.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.21.2", "ruleContent": "These passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", "parentRuleCode": "1D7.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.21.3", "ruleContent": "Under normal driving conditions when not being passed all vehicles use the fast lane.", "parentRuleCode": "1D7.21", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.22", "ruleContent": "Endurance Event – Driver’s Course Walk The endurance course will be available for walk by drivers prior to the event. All endurance drivers should walk the course before the event starts.", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.23", "ruleContent": "Flags", "parentRuleCode": "1D7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.23.1", "ruleContent": "The flag signals convey the commands described below, and must be obeyed immediately and without question.", "parentRuleCode": "1D7.23", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.23.2", - "ruleContent": "There are two kinds of flags for the competition: Command Flags and Informational Flags. Command Flags are just that, flags that send a message to the competitor that the competitor 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 must obey without question. Informational Flags, on the other hand, require no action from the driver, but should be used as added information to help him or her maximize performance. What follows is a brief description of the flags used at the competitions in North America and what each flag means. Note: Not all of these flags are used at all competitions and some alternate designs are occasionally displayed. Any variations from this list will be explained at the drivers meetings. Table 18 - Flags", + "ruleContent": "There are two kinds of flags for the competition: Command Flags and Informational Flags. Command Flags are just that, flags that send a message to the competitor that the competitor", "parentRuleCode": "1D7.23", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.23.3", - "ruleContent": "Command Flags (a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations or other official concerning an incident. A time penalty may be assessed for such incident. (b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) (“Meatball”) - Pull into the penalty box for a mechanical inspection of your vehicle, something has been observed that needs closer inspection. (c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor or competitors. Obey the course marshal’s hand or flag signals at the end of the passing zone to merge into competition. (d) CHECKER FLAG - Your segment has been completed. Exit the course at the first opportunity after crossing the finish line. (e) GREEN FLAG - Your segment has started, enter the course under direction of the starter. NOTE: If you are unable to enter the course when directed, await another green flag as the opening in traffic may have closed. (f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow course marshal’s directions. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 (g) YELLOW FLAG (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the course marshals. (h) YELLOW FLAG (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless directed by the course marshals.", + "ruleContent": "Command Flags (a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations or other official concerning an incident. A time penalty may be assessed for such incident. (b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) (“Meatball”) - Pull into the penalty box for a mechanical inspection of your vehicle, something has been observed that needs closer inspection. (c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor or competitors. Obey the course marshal’s hand or flag signals at the end of the passing zone to merge into competition. (d) CHECKER FLAG - Your segment has been completed. Exit the course at the first opportunity after crossing the finish line. (e) GREEN FLAG - Your segment has started, enter the course under direction of the starter. NOTE: If you are unable to enter the course when directed, await another green flag as the opening in traffic may have closed. (f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow course marshal’s directions.", "parentRuleCode": "1D7.23", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D7.23.4", "ruleContent": "Informational Flags (a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course marshals may be able to point out what and where it is located, but do not expect it.) (b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than you are. Be prepared to approach it at a cautious rate.", "parentRuleCode": "1D7.23", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D8", "ruleContent": "RULES OF CONDUCT", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.1", "ruleContent": "Competition Objective – A Reminder The Formula Hybrid + Electric event is a design engineering competition that requires performance demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. It is also recognized that this event is an “engineering educational experience” but that it often times becomes confused with a high stakes race. In the heat of competition, emotions peak and disputes arise. Our officials are trained volunteers and maximum human effort will be made to settle problems in an equitable, professional manner.", "parentRuleCode": "1D8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.2", "ruleContent": "Unsportsmanlike Conduct In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second violation will result in expulsion of the team from the competition.", "parentRuleCode": "1D8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.3", "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a twenty five (25) point penalty. Note: This penalty can be individually applied to all members of a team.", "parentRuleCode": "1D8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.4", "ruleContent": "Arguments with Officials Argument with, or disobedience to, any official may result in the team being eliminated from the competition. All members of the team may be immediately escorted from the grounds.", "parentRuleCode": "1D8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.5", "ruleContent": "Alcohol and Illegal Material Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the competition. This rule will be in effect during the entire competition. Any violation of this rule by a team member will cause the expulsion of the entire team. This applies to both team members and faculty advisors. Any use of drugs, or the use of alcohol by an underage individual, will be reported to the local authorities for prosecution.", "parentRuleCode": "1D8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.6", - "ruleContent": "Parties Disruptive parties either on or off-site must be prevented by the Faculty Advisor. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Parties Disruptive parties either on or off-site must be prevented by the Faculty Advisor.", "parentRuleCode": "1D8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.7", "ruleContent": "Trash Clean-up", "parentRuleCode": "1D8", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.7.1", "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. The team’s work area should be kept uncluttered. At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock.", "parentRuleCode": "1D8.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.7.2", "ruleContent": "Teams are required to remove all of their material and trash when leaving the site at the end of the competition. Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs.", "parentRuleCode": "1D8.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D8.7.3", - "ruleContent": "All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, capped containers and left at the hazardous waste collection building. The track must be notified as soon as the material is deposited by calling the phone number posted on the building. See the map in the registration packet for the building location.", + "ruleContent": "All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, capped containers and left at the hazardous waste collection building. The track must be notified as soon as the material is deposited by calling the phone number posted on the building. See the map in the registration packet for the building location.", "parentRuleCode": "1D8.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D9", "ruleContent": "GENERAL RULES", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.1", "ruleContent": "Dynamometer Usage", "parentRuleCode": "1D9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.1.1", "ruleContent": "If a dynamometer is available, it may be used by any competing team. Vehicles to be dynamometer tested must have passed all parts of technical inspection.", "parentRuleCode": "1D9.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.1.2", "ruleContent": "Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer.", "parentRuleCode": "1D9.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.2", "ruleContent": "Problem Resolution Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric management team and the decision will be final.", "parentRuleCode": "1D9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.3", "ruleContent": "Forfeit for Non-Appearance It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups for missed appearances.", "parentRuleCode": "1D9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.4", - "ruleContent": "Safety Class – Attendance Required An electrical safety class is required for all team members. The time and location will be provided in the team’s registration packet.", + "ruleContent": "Safety Class – Attendance Required An electrical safety class is required for all team members. The time and location will be provided in the team’s registration packet.", "parentRuleCode": "1D9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.5", "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", "parentRuleCode": "1D9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.6", "ruleContent": "Personal Vehicles", "parentRuleCode": "1D9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.6.1", "ruleContent": "Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E competition vehicles will be allowed in the track areas. All vehicles and trailers must be parked behind the white “Fire Lane” lines.", "parentRuleCode": "1D9.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.6.2", "ruleContent": "Some self-powered transport such as bicycles and skate boards are permitted, subject to restrictions posted in the event guide", "parentRuleCode": "1D9.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.6.3", - "ruleContent": "The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited.", "parentRuleCode": "1D9.6", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.7", "ruleContent": "Exam Proctoring", "parentRuleCode": "1D9", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D9.7.1", "ruleContent": "Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for students attending the competition. The team Advisor, or designated representative (A6.3.1) attending the competition will be responsible for communicating with college and university officials, administering exams, and ensuring all exam materials are returned to the college and university. Students who need to take exams during the competition may use designated spaces provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to the Officials.", "parentRuleCode": "1D9.7", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D10", "ruleContent": "PIT/PADDOCK/GARAGE RULES", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.1", "ruleContent": "Vehicle Movement", "parentRuleCode": "1D10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.1.1", "ruleContent": "Vehicles may not move under their own power anywhere outside of an officially designated dynamic area.", "parentRuleCode": "1D10.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.1.2", "ruleContent": "When being moved outside the dynamic area: (a) The vehicle TSV must be deactivated. (b) The vehicle must be pushed at a normal walking pace by means of a “Push Bar” (D10.2). (c) The vehicle’s steering and braking must be functional. (d) A team member must be sitting in the cockpit and must be able to operate the steering and braking in a normal manner. (e) A team member must be walking beside the car. (f) The team has the option to move the car either with (i) all four (4) wheels on the ground OR (ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that the external wheels supporting the rear of the car are non-pivoting such that the vehicle will travel only where the front wheels are steered.", "parentRuleCode": "1D10.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.1.3", "ruleContent": "Cars with wings are required to have two team members walking on either side of the vehicle whenever the vehicle is being pushed. NOTE: During performance events when the excitement is high, it is particularly important that the car be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of twenty-five (25) points will be assessed for each violation.", "parentRuleCode": "1D10.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.2", "ruleContent": "Push Bar Each car must have a removable device that attaches to the rear of the car that allows two (2) people, standing erect behind the vehicle, to push the car around the event site. This device must also be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by pulling it rearwards. It must be presented with the car at Technical Inspection.", "parentRuleCode": "1D10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.3", "ruleContent": "Smoking – Prohibited Smoking is prohibited in all competition areas.", "parentRuleCode": "1D10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.4", - "ruleContent": "Fueling and Refueling Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and no other activities (including any mechanical or electrical work) are allowed while refueling. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Fueling and Refueling Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and no other activities (including any mechanical or electrical work) are allowed while refueling.", "parentRuleCode": "1D10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.5", "ruleContent": "Energized Vehicles in the Paddock or Garage Area Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the drive wheels must be removed or properly supported clear of the ground.", "parentRuleCode": "1D10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.6", "ruleContent": "Engine Running in the Paddock Engines may be run in the paddock provided: (a) The car has passed all technical inspections. AND (b) The drive wheels are removed or properly supported clear of the ground.", "parentRuleCode": "1D10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.7", "ruleContent": "Safety Glasses Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 meters) of a vehicle that is being worked on.", "parentRuleCode": "1D10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D10.8", "ruleContent": "Curfews A curfew period may be imposed on working in the garages. Be sure to check the event guide for further information", "parentRuleCode": "1D10", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D11", "ruleContent": "DRIVING RULES", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.1", "ruleContent": "Driving Under Power", "parentRuleCode": "1D11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.1.1", "ruleContent": "Cars may only be driven under power: (a) When running in an event. (b) When on the practice track. (c) During the brake test. (d) During any powered vehicle movement specified and authorized by the organizers.", "parentRuleCode": "1D11.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.1.2", "ruleContent": "For all other movements cars must be pushed at a normal walking pace using a push bar.", "parentRuleCode": "1D11.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.1.3", "ruleContent": "Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred (200) point penalty for the first violation and expulsion of the team for a second violation.", "parentRuleCode": "1D11.1", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.2", "ruleContent": "Driving Off-Site - Prohibited Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location during the period of the competition will be disqualified from the competition.", "parentRuleCode": "1D11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.3", "ruleContent": "Practice Track", "parentRuleCode": "1D11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.3.1", "ruleContent": "A practice track for testing and tuning cars may be available at the discretion of the organizers. The practice area will be controlled and may only be used during the scheduled practice times.", "parentRuleCode": "1D11.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.3.2", "ruleContent": "Practice or testing at any location other than the practice track is absolutely forbidden.", "parentRuleCode": "1D11.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.3.3", "ruleContent": "Cars using the practice track must have passed all parts of the technical inspection.", "parentRuleCode": "1D11.3", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "1D11.4", - "ruleContent": "Situational Awareness Drivers must maintain a high state of situational awareness at all times and be ready to respond to the track conditions and incidents. Flag signals and hand signals from course marshals and officials must be immediately obeyed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025", + "ruleContent": "Situational Awareness Drivers must maintain a high state of situational awareness at all times and be ready to respond to the track conditions and incidents. Flag signals and hand signals from course marshals and officials must be immediately obeyed.", "parentRuleCode": "1D11", - "pageNumber": "1" + "pageNumber": "0" }, { "ruleCode": "ARTICLE D12", - "ruleContent": "DEFINITIONS DOO - A cone is “Down or Out”—if the cone has been knocked over or the entire base of the cone lies outside the box marked around the cone in its undisturbed position. DNF- Did Not Finish Gate - The path between two cones through which the car must pass. Two cones, one on each side of the course define a gate: Two sequential cones in a slalom define a gate. Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course. Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course. Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about to start. OC - A car is Off Course if it does not pass through a gate in the required direction. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix A Accumulator Rating & Fuel Equivalency Each accumulator device will be assigned an energy rating and fuel equivalency based on the following: Battery capacities are based on nominal (data sheet values). Ultracap capacities are based on the maximum operating voltage (Vpeak) and the effective capacitance in Farads (Nparallel x C / Nseries). Batteries: Energy (Wh) = Vnom x Inom x Total Number of Cells x 80% Capacitors: where V min is assumed to be 10% of V peak. Table 19 - Accumulator Device Energy Calculations Liquid Fuels Wh / Liter 32 Gasoline (Sunoco 33 Optima) 2,343 Table 20 - Fuel Energy Equivalencies Examples: A battery with an energy rating of 3110 Wh has a fuel equivalency of 1.327 liters. If using 89 Maxell MC 2600 ultracaps in series (2600 F/89 = 29.2 F, 2.7 x 89 = 240 V), the fuel equivalency is 231.9 Wh resulting in a 99cc reduction of gasoline. 32 Formula Hybrid + Electric assumes a mechanical efficiency of 27% 33 Full specifications for Sunoco racing fuels may be found at: https://www.sunocoracefuels.com/ 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix B Determination of LapSum(n) Values The parameter LapSum(n) is used in the calculation of the scores for the endurance event. It is a function of the number of laps (n) completed by a team during the endurance event. It is calculated by summing the lap numbers from 1 to (n), the number of laps completed. This gives increasing weight to each additional lap completed during the endurance event. For example: If your team is credited with completing five (5) laps of the endurance event, the value of LapSum(n)your used in compute your endurance score would be the following: LapSum(5) your = 1 + 2 + 3 + 4 + 5 = 15 Number of Laps Completed (n) LapSum(n) Number of Laps Completed (n) LapSum(n) 0 0 23 276 1 1 24 300 2 3 25 325 3 6 26 351 4 10 27 378 5 15 28 406 6 21 29 435 7 28 30 465 8 36 31 496 9 45 32 528 10 55 33 561 11 66 34 595 12 78 35 630 13 91 36 666 14 105 37 703 15 120 38 741 16 136 39 780 17 153 40 820 18 171 41 861 19 190 42 903 20 210 43 946 21 231 44 990 22 253 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Table 21 - Example of LapSum(n) calculation for a 44-lap Endurance event Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event 0 100 200 300 400 500 600 700 800 900 1000 051015202530354045 LapSum(n) Laps Completed LapSum(n) vs. Number of Laps Completed 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix C Formula Hybrid + Electric Project Management Event Scoring Criteria INTRODUCTION The Formula Hybrid + Electric Project Management Event is comprised of three components: Project Plan Report Change Management Report Final Presentation. These components cover the entire life cycle of the Formula Hybrid + Electric Project from design of the vehicle through fabrication and performance verification, culminating in Formula Hybrid + Electric competition at the track. The Project Management Event includes both written reports and an oral presentation, providing project team members the opportunity to develop further their communications skills in the context of a challenging automotive engineering team experience. Design, construction, and performance testing of a hybrid or electric race car are complex activities that require a structured effort to increase the probability of success. The Project Management Event is included in the Formula Hybrid + Electric competition to encourage each team to create this structure specific to their set of circumstances and goals. Comments each team receives from judges relative to their project plan and change management report, offer guidance directed at project execution. Verbal comments made by judges following the presentation component offer suggestions to improve performance in future competitions. In scoring the Project Management Event judges assess (1) if a well-thought-out project plan has been developed, (2) that the plan was executed effectively while addressing challenges encountered and managing change and (3) the significance of lessons learned by team members from this experience and quality of recommendations proposed to improve future team performance. Basic Areas Evaluated Five categories of effort are evaluated across the three components of Formula Hybrid + Electric Project Management, but the scoring criteria differ for each, reflecting the phase of the project life-cycle that is being assessed. The criteria includes: (1) Scope (2) Operations (3) Risk Management (4) Expected Results (5) Change Management. Each is briefly defined below. 1. Scope: A brief introduction of the project documenting what will be accomplished: team goals and objectives beyond simply winning the competition, known as “secondary goals”, major deliverables such as critical sub-systems, innovative designs, or new technologies, and milestones for achieving the goals. Overall, this information is called the Statement of Work. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 2. Operations: How the project team is structured, usually shown with an organizational chart; Work Breakdown Structure, a cascading representation of tasks that will be completed; a project schedule for completing these tasks, usually this is depicted in a Gantt chart that shows the timeline and interdependencies among different activities; also included are the approved budget for the project and plan for obtaining these funds. 3. Risk Management: Arriving at the track with a completed, rules compliant race car increases the probability of full participation in all events during the competition. Even though numerous tasks are involved in the design, build, and test of a hybrid race car, there is a smaller subset of tasks that present a high risk to completing the car on schedule. These are high risk tasks because the team may lack knowledge, experience, or sufficient resources necessary for completing them successfully. However, to achieve the team goals, these tasks must be done. Identify the high risk tasks along with contingency plans for advancing the project forward if they become barriers to progress. 4. Expected Results: In general, project teams are expected to deliver what is defined in the scope statement, on time according to project schedule, and within the budget constraint. Goals and objectives are more specifically defined by “measures of success”, quantified attributes that give numerical targets for each goal. These “measures” are of value throughout project execution for setting priorities and making resource decisions. At project completion, they are used to determine the extent to which the team’s goals and objectives have been accomplished. 5. Change Management: The need for change is a normal occurrence during project execution. Change is good because it refocuses the team when new information is obtained or unexpected challenges are encountered. But if it is not managed correctly change can become a destructive element to the project. Change Management is a process designed by the team for administering project change and managing uncertainty. The process includes built-in controls to ensure that change is managed in a disciplined way, adequately documented and clearly communicated to all team members. SCORING GUIDELINES The guidelines used by judges for scoring the three components of the Project Management Event are given in the following sections: (1) Project Plan Report, (2) Change Management Report, and (3) Project Management Presentation at the competition. 1. Project Plan Report Each Formula Hybrid + Electric team is required to submit a formal Project Plan that reflects team goals and objectives for the upcoming competition, the management structure and tasks that will be completed to accomplish these objectives, and the time schedule over which these tasks will be performed. In addition, the formal process for managing change must be defined. A maximum of fifty-five (55) points is awarded for the Project Plan. Quality of the Written Document: The plan should look and read like a professional document. The flow of information is expected to be logical; the content should be clear and concise. The reader should be able to understand the plan that will be executed. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 The Project Plan must consist of at least one (1) page and not exceed three (3) pages of text. Appendices may be attached to the Project Plan and do not count as “pages”, but they must be relevant and referenced in the body of the report. “SMART” Goals Projects are initiated to achieve predetermined goals, which are identified in the Scope statement. The project plan is a “roadmap” for effectively deploying team resources to accomplish these goals. Overall, the requirements of the Project Plan incorporate the basic principles of “SMART” goals. These goals have the following characteristics: ● Specific: Sufficient detail is provided to clearly identify the targeted objectives; goals are specifically stated so that all individual project team members understand what the team must accomplish. ● Measurable: The objectives are quantified so that progress toward the goals can be measured; “measures of success” are defined for this purpose. ● Assignable: The person or group responsible for achieving the goals is identified; each task, milestone, and deliverable has an owner, someone responsible for seeing that each is completed. ● Realistic: The goals can actually be achieved given the resources and time available. Along with realistic goals, a team might define “stretch goals” which are more aggressive objectives that challenge the team. If the “stretch goals” become barriers to progress during project execution, the change management process is used to pull back “stretch goals”, re-focusing the team on more realistic objectives. ● Time-Related: Deadlines are set for achieving each goal, milestone, or deliverable. These deadlines are consistent with the overall project schedule and can be extracted from the project timeline. Characteristics of an Excellent Project Plan Report Submission ● Scope: A brief overview is included covering the team’s past performance and recommendations received from previous teams for improvement. Achievable primary and secondary goals for this year’s team are clearly stated. These goals are more than simply winning the competition. Milestones, with due dates, and major deliverables that support accomplishing the goals are listed. ● Operations: An organizational chart showing the structure of the team and Work Breakdown Structure showing the cascading linkage of tasks comprising the project are included. The timeframe and interdependencies of each task are shown in a Gantt chart timeline. The project budget is specified and a brief overview of how these funds will be obtained is given. ● Risk Management: Careful thought is demonstrated to understand the weakest areas of the project plan. Several “High Risk” tasks are identified that might have a significant impact on a functional car being produced on time. A contingency plan is described to mitigate these risks if they become barriers during project execution. ● Expected Results: All teams are expected to complete the project on schedule, within budget, and to deliver a functional, rules complaint race car to the track. But each team has a set of primary and secondary goals specific to its project plan. Additional depth is given to these goals by quantifying them, defining measurable targets helpful for directing team efforts. At least two “measures of success” are defined that are related to the team’s specific performance goals. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 ● Change Management: A process for administering changes has been carefully thought-out; it is briefly described and shown schematically in terms of: (1) what triggers the process, (2) how information flows through the process, (3) how decision making is handled, and (4) how changes are communicated to the team. A process flow diagram may be included in the Appendix to save space, however is referenced in the body of the report. At a minimum, the diagram shows the “trigger”, information flow, decision making tasks and responsibilities, and communication tasks. The diagram is specific to and created by the team. There are sufficient controls in place to prevent un-managed changes. The team has an effective communication plan in place to keep all team members informed throughout project duration. Applying the Project Plan Report Scoring Guidelines The guidelines for awarding points in each Project Plan Report category are given in Figure 46. Four performance designations are also specified: Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation to give reviewers flexibility in evaluating the quality and completeness of the submitted plans. While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 46 - Scoring Guidelines: Project Plan Component 34 34 This score sheet is available on the Formula Hybrid+Electric website in the Project Management Resources folder. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 2. Change Management Report The purpose of the Change Management Report is to give each judge a sense of the team’s ability to deal with issues that will put the project schedule at risk. Frequently, as the project progresses or as problems arise, changes may be required to vehicle specifications or the plan for completing the project. This is an area that many teams find difficult to manage. Of particular interest to judges are barriers encountered and creative actions taken by the team to overcome these challenges and advance the project forward. The Change Management Report is a maximum two (2) page summary, clearly communicating the documented changes to the project scope and plan that have been approved using the change management process. Appendices may be included with supporting information; they do not have a page limit but the content is expected to be supportive of the information covered in the main body of the report. A maximum of forty (40) points is awarded for the Change Management Report. The content of the report is evaluated in three broad areas: (1) Explanation of the Change Management Process (2) Example of the Implementation of the Change Management Process, and (3) Evaluation of the Effectiveness and Areas of Improvement for the Change Management Process. Additionally, a final area evaluated is the quality of the overall report document. Characteristics of an Excellent Change Management Report Submission ● Change Management Process: In the body of the report, the team provides a thorough and clear explanation of their Change Management Process, including the following characteristics: • What triggers/initiates the process? • How does information flow through the process? • How are decisions made, and who makes those decisions? • How are final decisions communicated to the team? • Process flow diagram (see below) ● A process flow diagram may be included in the Appendix to save space; however, it is referenced in the body of the report. At a minimum, the diagram shows the “trigger”, information flow, decision making tasks and responsibilities, and communication tasks. The diagram is specific to and created by the team. ● Implementation of the Change Management Process: In the body of the report, the team provides a single thorough and clear example of the implementation of the Change Management Process. The example provided addresses all stages of the process from start to finish, including the overall impact to the project. ● Effectiveness of and Improvements to the Change Management Process: In the body of the report, the team provides their own assessment of the effectiveness of their Change Management Process, primarily based upon the example provided. This includes the effectiveness of each stage of the process (trigger, information flow, decision making, and communication) as well as an overall assessment. Based on their assessment, the team provides two areas of opportunity to improve the Change Management Process, including what stage of the process is impacted and why this change is being made. The team addresses plans for what the team must do to make the proposed changes, timing of changes, and a definition of how to measure the effectiveness of the changes for the following year. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 ● Proper Use of Appendix: While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. Applying the Change Management Scoring Guidelines The guidelines for awarding points in each Change Management Report evaluation category are given in Figure 47. Similar to the Project Plan guidelines, four performance designations are specified: Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation to give reviewers flexibility in weighing quality and completeness of information for each category. Figure 47: Change Management Report Scoring Guidelines 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component must be summarized in the body of the report to receive full credit. Any diagram or table (or other appropriate figure type) must be referenced and linked appropriately to the correct content in the Appendix. 3. Project Management Presentation at the Competition The Presentation component gives teams the opportunity to briefly explain their project plans, assess how well their project management process worked, and identify recommendations for improving their team’s project management process in the future. In addition, the Presentation component enables team leaders to enhance their communication skills in presenting a complex topic clearly and concisely. The Presentation component is the culmination of the project management experience, which included submission by each team of a project plan and change management report. Scoring of each presentation is based on how well project management practices were used by the team in the planning, execution, and change management aspects of the project. Of particular interest are innovative approaches used by each team in dealing with challenges and how lessons learned from the current competition will be used to foster continuous improvement in the design, development, and testing of their cars for future competitions. Project Management presentations are made on the Static Events Day during the competition. Each presentation is limited to a maximum of twelve (12) minutes. An eight (8) minute question and answer period will follow along with a feedback discussion with judges lasting no longer than five (5) minutes. This format will give each team an opportunity to critique their project management performance, clarify major points, and have a discussion with judges on areas that can be improved or strengths that can be built upon for next year’s competition. Only the team members present who are introduced at the start of the presentation will be allowed to speak and/or respond to questions and comments. Scoring the Project Management Presentation In awarding points, each judge must determine if the team demonstrated an understanding of project management, if the described accomplishments are credible, and if the approaches used to manage the project were effective. These judgements are formed after listening to each presentation and probing the teams for clarity and additional details during the questioning period afterward. Presentation quality and communications skills of team members are extremely important for establishing a positive impression. A chart summarizing the evaluation criteria for the Presentation component is given in Figure 48 – Evaluation Criteria. This provides more detailed guidelines used by the judging review team for evaluating each project management presentation. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 48 – Evaluation Criteria Characteristics on an Excellent Project Management Presentation ● Scope: The primary and secondary goals defined in the project plan are addressed; the degree to which each has been accomplished is explained. Where applicable, the “Measures of Success” are used to support the stated level of accomplishment. If the original goals have been changed, the reasons for modification are explained. ● Operations: Was this project a success? This conclusion is supported by Team performance against the budget, project schedule, and deliverables produced. The effectiveness of the team’s structure is explained. If the operation was disorderly or inefficient during project execution, an overview of corrective actions taken to fix the problem is given. ● Risk Management: The team’s success to correctly anticipate risk in the original project plan and effectiveness of the risk mitigation plan are described. An overview of unanticipated risks that were encountered during project execution and approaches to overcome these barriers are explained. ● Change Management: A need for change occurs naturally in almost every project; it is anticipated that every Formula Hybrid + Electric team will have experienced some type of change during project execution. Change management strives to align the efforts of all team members working in the dynamic project environment. The effectiveness of the overall change management process in dealing with needed modifications is described. This is supported with 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 statistics on the number of changes approved and rejected. The effectiveness of the team’s communication methods, both written and verbal, is explained. Areas of opportunity for improvement to the change management process are briefly described as well as their status of implementation for next year. ● Lessons Learned: When a project is completed, the team should conduct an assessment of overall performance to determine what worked well and what failed. The strengths and weaknesses of the team are described. This evaluation is used to propose recommendations for improving the performance of next year’s team. Also, a plan for conveying this information to the new leadership team is described. A leadership succession plan is briefly described. ● “SMART” Goals: Team’s demonstrated understanding and application of “SMART” goals. ● Communications Skills: The team establishes credibility by demonstrating that it has taken the time necessary to carefully plan and create the presentation. The presentation is well organized, content is relevant to the purpose of the presentation. Charts have a professional appearance and are informative. Without the speaker rushing through the material, a large amount of information is conveyed within the allowed time limit. Tables, diagrams, and graphs are used effectively. Team members demonstrate mutual accountability with shared responses to questions. Answers are conveyed in a manner that instills confidence in the team’s ability to plan and execute a complex project like Formula Hybrid + Electric. Figure 49 - Project Management Scoring Sheet 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix D Design Judging Form 35 35 This form is for informational use only – the actual form used may differ. Check the Formula Hybrid + Electric website prior to the competition for the latest Design judging form. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix E Wire Current Capacity (DC) Wire Gauge Copper AWG Conductor Area mm 2 Max. Continuous Fuse Rating (A) Standard Metric Wire Size mm 2 Max. Continuous Fuse Rating (A) 24 0.20 5 0.50 10 22 0.33 7 0.75 12.5 20 0.52 10 1.0 15 18 0.82 14 1.5 20 16 1.31 20 2.5 30 14 2.08 28 4.0 40 12 3.31 40 6.0 60 10 5.26 55 10 90 8 8.37 80 16 130 6 13.3 105 25 150 4 21.2 140 35 200 3 26.7 165 50 250 2 33.6 190 70 300 1 42.4 220 95 375 0 53.5 260 120 425 2/0 67.4 300 150 500 3/0 85.0 350 185 550 4/0 107 405 240 650 250 MCM 127 455 300 800 300 MCM 152 505 350 MCM 177 570 400 MCM 203 615 500 MCM 253 700 Table 22 – Wire Current Capacity (single conductor in air) Reference: US National Electrical Code Table 400.5(A)(2), 90C Column D1 (Copper wire only) 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix F Required Equipment □ Fire Extinguishers Minimum Requirements Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers Extinguishers of larger capacity (higher numerical ratings) are acceptable. All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows “FULL”. Special Requirements Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb. or equivalent) of the required type must be procured and accompany the car at all times. As recommendations vary, teams are advised to consult the rules committee before purchasing expensive extinguishers that may not be necessary. □ Chemical Spill Absorbent Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must be presented at technical inspection. □ Insulated Gloves Insulated gloves, rated for at least the voltage in the TS system, with protective over-gloves. Electrical gloves require testing by a qualified company. The testing is valid for 14 months after the date of the test. All gloves must have the test date printed on them. □ Safety Glasses Safety glasses must be worn as specified in section D10.7 □ Additional Any special safety equipment required for dealing with accumulator mishaps, for example correct gloves recommended for handling any electrolyte material in the accumulator. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix G Example Relay Latch Circuits The diagrams below are examples of relay-based latch circuits that can be used to latch the momentary output of the Bender IMD (either high-true or low-true) such that it will comply with Formula Hybrid + Electric rule EV7.1. Circuits such as these can also be used to latch AMS faults in accordance with EV2.1.3. It is highly recommended that IMD and AMS latching circuits be separate and independent to aid fault identification during the event. Note: It is important to confirm by checking the data sheets, that the output pin of the IMD can power the relay directly. If not, an amplification device will be required 36 . Figure 50 - Latching for Active-High output Figure 51 - Latching for Active-Low output 36 An example relay is the Omron LY3-DC12: http://www.ia.omron.com/product/item/6403/ 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix H Firewall Equivalency Test To demonstrate equivalence to the aluminum sheet specified in rule T4.5.2, teams should submit a video, showing a torch test of their proposed firewall material. Camera angle, etc. should be similar to the video found here: https://www.youtube.com/watch?v=Qw6kzG97ZtY A propane plumber’s torch should be held at a distance from the test piece such that the hottest part of the flame (the tip of the inner cone) is just touching the test piece. The video must show two sequential tests and be contiguous and unedited (except for trimming the irrelevant leading and trailing portions). The first part of the video should show the torch applied to a piece of Aluminum of the thickness called for in T4.5.2, and held long enough to burn through the aluminum. The torch should then be moved directly to a similarly sized test piece of the proposed material without changing any settings, and held for at least as long as the burn-through time for the Aluminum. There must be no penetration of the test piece. The equivalent firewall construction must have similar mechanical strength to the aluminum barrier called for in T4.5.2. This can be demonstrated by equivalent resistance to deformation or puncturing. 2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Appendix I Virtual Racing Challenge The Virtual Racing Challenge will be held in 2025. END", - "pageNumber": "1" + "ruleContent": "DEFINITIONS DOO - A cone is “Down or Out”—if the cone has been knocked over or the entire base of the cone lies outside the box marked around the cone in its undisturbed position. DNF- Did Not Finish Gate - The path between two cones through which the car must pass. Two cones, one on each side of the course define a gate: Two sequential cones in a slalom define a gate. Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course. Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course. Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about to start. OC - A car is Off Course if it does not pass through a gate in the required direction.", + "pageNumber": "0" } ], - "totalRules": 918, - "generatedAt": "2025-10-15T02:43:48.719Z" + "totalRules": 849, + "generatedAt": "2025-11-03T19:26:20.822Z" } \ No newline at end of file diff --git a/scripts/document-parser/fsae_rules.json b/scripts/document-parser/jsonOutput/fsae_rules.json similarity index 94% rename from scripts/document-parser/fsae_rules.json rename to scripts/document-parser/jsonOutput/fsae_rules.json index e0afeb6a18..de34a20278 100644 --- a/scripts/document-parser/fsae_rules.json +++ b/scripts/document-parser/jsonOutput/fsae_rules.json @@ -8,7 +8,7 @@ }, { "ruleCode": "GR.2", - "ruleContent": "Organizer Authority .............................................................................................................................. 6", + "ruleContent": "Organizer Authority.............................................................................................................................. 6", "parentRuleCode": "GR", "pageNumber": "2" }, @@ -20,7 +20,7 @@ }, { "ruleCode": "GR.4", - "ruleContent": "Rules Authority and Issue ..................................................................................................................... 7", + "ruleContent": "Rules Authority and Issue..................................................................................................................... 7", "parentRuleCode": "GR", "pageNumber": "2" }, @@ -38,7 +38,7 @@ }, { "ruleCode": "GR.7", - "ruleContent": "Rules Questions .................................................................................................................................... 9", + "ruleContent": "Rules Questions.................................................................................................................................... 9", "parentRuleCode": "GR", "pageNumber": "2" }, @@ -68,7 +68,7 @@ }, { "ruleCode": "AD.3", - "ruleContent": "Individual Participation Requirements ............................................................................................... 11", + "ruleContent": "Individual Participation Requirements............................................................................................... 11", "parentRuleCode": "AD", "pageNumber": "2" }, @@ -110,7 +110,7 @@ }, { "ruleCode": "DR.3", - "ruleContent": "Submission Penalties .......................................................................................................................... 17 V - Vehicle Requirements ................................................................................................................. 19", + "ruleContent": "Submission Penalties.......................................................................................................................... 17 V - Vehicle Requirements ................................................................................................................. 19", "parentRuleCode": "DR", "pageNumber": "2" }, @@ -122,7 +122,7 @@ }, { "ruleCode": "V.2", - "ruleContent": "Driver .................................................................................................................................................. 20", + "ruleContent": "Driver.................................................................................................................................................. 20", "parentRuleCode": "V", "pageNumber": "2" }, @@ -134,7 +134,7 @@ }, { "ruleCode": "V.4", - "ruleContent": "Wheels and Tires ................................................................................................................................ 21 F - Chassis and Structural .................................................................................................................. 23", + "ruleContent": "Wheels and Tires ................................................................................................................................ 21 F - Chassis and Structural.................................................................................................................. 23", "parentRuleCode": "V", "pageNumber": "2" }, @@ -230,7 +230,7 @@ }, { "ruleCode": "T.5", - "ruleContent": "Powertrain .......................................................................................................................................... 66 Version 1.0 31 Aug 2024", + "ruleContent": "Powertrain.......................................................................................................................................... 66 Version 1.0 31 Aug 2024", "parentRuleCode": "T", "pageNumber": "2" }, @@ -296,7 +296,7 @@ }, { "ruleCode": "IC.4", - "ruleContent": "Electronic Throttle Control ................................................................................................................. 81", + "ruleContent": "Electronic Throttle Control................................................................................................................. 81", "parentRuleCode": "IC", "pageNumber": "3" }, @@ -422,7 +422,7 @@ }, { "ruleCode": "IN.5", - "ruleContent": "Driver Cockpit Checks ....................................................................................................................... 114", + "ruleContent": "Driver Cockpit Checks....................................................................................................................... 114", "parentRuleCode": "IN", "pageNumber": "3" }, @@ -464,7 +464,7 @@ }, { "ruleCode": "IN.12", - "ruleContent": "Brake Test ......................................................................................................................................... 118", + "ruleContent": "Brake Test......................................................................................................................................... 118", "parentRuleCode": "IN", "pageNumber": "3" }, @@ -482,7 +482,7 @@ }, { "ruleCode": "IN.15", - "ruleContent": "Reinspection ..................................................................................................................................... 120 Version 1.0 31 Aug 2024 S - Static Events .............................................................................................................................. 121", + "ruleContent": "Reinspection ..................................................................................................................................... 120 Version 1.0 31 Aug 2024 S - Static Events.............................................................................................................................. 121", "parentRuleCode": "IN", "pageNumber": "3" }, @@ -500,13 +500,13 @@ }, { "ruleCode": "S.3", - "ruleContent": "Cost and Manufacturing Event ......................................................................................................... 122", + "ruleContent": "Cost and Manufacturing Event......................................................................................................... 122", "parentRuleCode": "S", "pageNumber": "4" }, { "ruleCode": "S.4", - "ruleContent": "Design Event ..................................................................................................................................... 126 D - Dynamic Events ........................................................................................................................ 128", + "ruleContent": "Design Event..................................................................................................................................... 126 D - Dynamic Events ........................................................................................................................ 128", "parentRuleCode": "S", "pageNumber": "4" }, @@ -518,7 +518,7 @@ }, { "ruleCode": "D.2", - "ruleContent": "Pit and Paddock ................................................................................................................................ 128", + "ruleContent": "Pit and Paddock................................................................................................................................ 128", "parentRuleCode": "D", "pageNumber": "4" }, @@ -590,7 +590,7 @@ }, { "ruleCode": "D.14", - "ruleContent": "Post Endurance ................................................................................................................................ 143 Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com REVISION SUMMARY Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 Allowance for Late Submissions DR.3.3.1 Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, EV.5.9, EV.7.8.4 Version 1.0 31 Aug 2024", + "ruleContent": "Post Endurance ................................................................................................................................ 143 Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com REVISION SUMMARY Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 Allowance for Late Submissions DR.3.3.1 Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, EV.5.9, EV.7.8.4 Version 1.0 31 Aug 2024", "parentRuleCode": "D", "pageNumber": "4" }, @@ -655,7 +655,7 @@ }, { "ruleCode": "GR.1.5", - "ruleContent": "Good Engineering Practices Vehicles entered into Formula SAE competitions should be designed and fabricated in accordance with good engineering practices. Version 1.0 31 Aug 2024", + "ruleContent": "Good Engineering Practices Vehicles entered into Formula SAE competitions should be designed and fabricated in accordance with good engineering practices. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.1", "pageNumber": "5" }, @@ -757,7 +757,7 @@ }, { "ruleCode": "GR.3.5.2", - "ruleContent": "If a team is not present and ready to compete at the scheduled time, they forfeit their attempt at that event. Version 1.0 31 Aug 2024", + "ruleContent": "If a team is not present and ready to compete at the scheduled time, they forfeit their attempt at that event. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.3.5", "pageNumber": "6" }, @@ -841,7 +841,7 @@ }, { "ruleCode": "GR.4.4.1", - "ruleContent": "All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE Online Website to verify the current version.", + "ruleContent": "All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE Online Website to verify the current version.", "parentRuleCode": "GR.4.4", "pageNumber": "7" }, @@ -877,7 +877,7 @@ }, { "ruleCode": "GR.5.2", - "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a 25 point penalty. Version 1.0 31 Aug 2024", + "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a 25 point penalty. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.5", "pageNumber": "7" }, @@ -955,7 +955,7 @@ }, { "ruleCode": "GR.6.4.2", - "ruleContent": "Rules specific to vehicles based on their powertrain will be specified as such in the rule text: • Internal Combustion “IC” or “IC Only” • Electric Vehicle “EV” or “EV Only”", + "ruleContent": "Rules specific to vehicles based on their powertrain will be specified as such in the rule text: • Internal Combustion “IC” or “IC Only” • Electric Vehicle “EV” or “EV Only”", "parentRuleCode": "GR.6.4", "pageNumber": "8" }, @@ -967,7 +967,7 @@ }, { "ruleCode": "GR.6.6", - "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes. Version 1.0 31 Aug 2024", + "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.6", "pageNumber": "8" }, @@ -1009,7 +1009,7 @@ }, { "ruleCode": "GR.7.2.3.a", - "ruleContent": "Teams entering Formula SAE competitions: Follow the link and instructions published on the FSAE Online Website to \"Submit a Rules Question\"", + "ruleContent": "Teams entering Formula SAE competitions: Follow the link and instructions published on the FSAE Online Website to \"Submit a Rules Question\"", "parentRuleCode": "GR.7.2.3", "pageNumber": "9" }, @@ -1051,7 +1051,7 @@ }, { "ruleCode": "GR.8.4", - "ruleContent": "Protest Point Bond A team must post a 25 point protest bond which will be forfeited if their protest is rejected. Version 1.0 31 Aug 2024", + "ruleContent": "Protest Point Bond A team must post a 25 point protest bond which will be forfeited if their protest is rejected. Version 1.0 31 Aug 2024", "parentRuleCode": "GR.8", "pageNumber": "9" }, @@ -1093,7 +1093,7 @@ }, { "ruleCode": "GR.9.1.3", - "ruleContent": "Professional Assistance Professionals must not make design decisions or drawings. The Faculty Advisor may be required to sign a statement of compliance with this restriction.", + "ruleContent": "Professional Assistance Professionals must not make design decisions or drawings. The Faculty Advisor may be required to sign a statement of compliance with this restriction.", "parentRuleCode": "GR.9.1", "pageNumber": "10" }, @@ -1159,7 +1159,7 @@ }, { "ruleCode": "GR.9.3.3", - "ruleContent": "Third Year Vehicles must not enter any Formula SAE Competitions Version 1.0 31 Aug 2024", + "ruleContent": "Third Year Vehicles must not enter any Formula SAE Competitions Version 1.0 31 Aug 2024", "parentRuleCode": "GR.9.3", "pageNumber": "10" }, @@ -1176,7 +1176,7 @@ }, { "ruleCode": "AD.1.1", - "ruleContent": "Rule Variations All competitions in the Formula SAE Series may post rule variations specific to the operation of the events in their countries. Vehicle design requirements and restrictions will remain unchanged. Any rule variations will be posted on the websites specific to those competitions.", + "ruleContent": "Rule Variations All competitions in the Formula SAE Series may post rule variations specific to the operation of the events in their countries. Vehicle design requirements and restrictions will remain unchanged. Any rule variations will be posted on the websites specific to those competitions.", "parentRuleCode": "AD.1", "pageNumber": "11" }, @@ -1206,7 +1206,7 @@ }, { "ruleCode": "AD.2.2", - "ruleContent": "FSAE Online Website The FSAE Online website is at: http://fsaeonline.com/", + "ruleContent": "FSAE Online Website The FSAE Online website is at: http://fsaeonline.com/", "parentRuleCode": "AD.2", "pageNumber": "11" }, @@ -1224,7 +1224,7 @@ }, { "ruleCode": "AD.2.2.3", - "ruleContent": "Each team must have one or more persons as Team Captain. The Team Captain must accept Team Members.", + "ruleContent": "Each team must have one or more persons as Team Captain. The Team Captain must accept Team Members.", "parentRuleCode": "AD.2.2", "pageNumber": "11" }, @@ -1260,19 +1260,19 @@ }, { "ruleCode": "AD.3.1.2", - "ruleContent": "Team members who have graduated during the seven month period prior to the competition remain eligible to participate. Version 1.0 31 Aug 2024", + "ruleContent": "Team members who have graduated during the seven month period prior to the competition remain eligible to participate. Version 1.0 31 Aug 2024", "parentRuleCode": "AD.3.1", "pageNumber": "11" }, { "ruleCode": "AD.3.1.3", - "ruleContent": "Teams which are formed with members from two or more universities are treated as a single team. A student at any university making up the team may compete at any competition where the team participates. The multiple universities are treated as one university with the same eligibility requirements.", + "ruleContent": "Teams which are formed with members from two or more universities are treated as a single team. A student at any university making up the team may compete at any competition where the team participates. The multiple universities are treated as one university with the same eligibility requirements.", "parentRuleCode": "AD.3.1", "pageNumber": "12" }, { "ruleCode": "AD.3.1.4", - "ruleContent": "Each team member may participate at a competition for only one team. This includes competitions where the University enters both IC and EV teams.", + "ruleContent": "Each team member may participate at a competition for only one team. This includes competitions where the University enters both IC and EV teams.", "parentRuleCode": "AD.3.1", "pageNumber": "12" }, @@ -1326,7 +1326,7 @@ }, { "ruleCode": "AD.4.1.2", - "ruleContent": "International student participants (or unaffiliated Faculty Advisors) who are not SAE International members must create a free customer account profile on www.sae.org. Upon completion, please email collegiatecompetitions@sae.org the assigned customer number stating also the event and university affiliation.", + "ruleContent": "International student participants (or unaffiliated Faculty Advisors) who are not SAE International members must create a free customer account profile on www.sae.org. Upon completion, please email collegiatecompetitions@sae.org the assigned customer number stating also the event and university affiliation.", "parentRuleCode": "AD.4.1", "pageNumber": "12" }, @@ -1374,7 +1374,7 @@ }, { "ruleCode": "AD.5.1.2", - "ruleContent": "The Faculty Advisor should accompany the team to the competition and will be considered by the officials to be the official university representative. Version 1.0 31 Aug 2024", + "ruleContent": "The Faculty Advisor should accompany the team to the competition and will be considered by the officials to be the official university representative. Version 1.0 31 Aug 2024", "parentRuleCode": "AD.5.1", "pageNumber": "12" }, @@ -1404,7 +1404,7 @@ }, { "ruleCode": "AD.5.2", - "ruleContent": "Electrical System Officer (EV Only) The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle during the event", + "ruleContent": "Electrical System Officer (EV Only) The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle during the event", "parentRuleCode": "AD.5", "pageNumber": "13" }, @@ -1446,13 +1446,13 @@ }, { "ruleCode": "AD.5.3", - "ruleContent": "Electric System Advisor (EV Only)", + "ruleContent": "Electric System Advisor (EV Only)", "parentRuleCode": "AD.5", "pageNumber": "13" }, { "ruleCode": "AD.5.3.1", - "ruleContent": "The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated by the team who can advise on the electrical and control systems that will be integrated into the vehicle. The faculty advisor may also be the ESA if all the requirements below are met.", + "ruleContent": "The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated by the team who can advise on the electrical and control systems that will be integrated into the vehicle. The faculty advisor may also be the ESA if all the requirements below are met.", "parentRuleCode": "AD.5.3", "pageNumber": "13" }, @@ -1470,7 +1470,7 @@ }, { "ruleCode": "AD.5.3.4", - "ruleContent": "The ESA must advise the team on the merits of any relevant engineering solutions. Solutions should be discussed, questioned and approved before they are implemented into the final vehicle design.", + "ruleContent": "The ESA must advise the team on the merits of any relevant engineering solutions. Solutions should be discussed, questioned and approved before they are implemented into the final vehicle design.", "parentRuleCode": "AD.5.3", "pageNumber": "13" }, @@ -1512,7 +1512,7 @@ }, { "ruleCode": "AD.6.1.2", - "ruleContent": "Refer to the individual competition websites for registration requirements for other competitions Version 1.0 31 Aug 2024", + "ruleContent": "Refer to the individual competition websites for registration requirements for other competitions Version 1.0 31 Aug 2024", "parentRuleCode": "AD.6.1", "pageNumber": "13" }, @@ -1602,7 +1602,7 @@ }, { "ruleCode": "AD.7.1", - "ruleContent": "Personal Vehicles Personal cars and trailers must be parked in designated areas only. Only authorized vehicles will be allowed in the track areas.", + "ruleContent": "Personal Vehicles Personal cars and trailers must be parked in designated areas only. Only authorized vehicles will be allowed in the track areas.", "parentRuleCode": "AD.7", "pageNumber": "14" }, @@ -1626,7 +1626,7 @@ }, { "ruleCode": "AD.7.4.1", - "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. • The team’s work area should be kept uncluttered Version 1.0 31 Aug 2024 • At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock", + "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. • The team’s work area should be kept uncluttered Version 1.0 31 Aug 2024 • At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock", "parentRuleCode": "AD.7.4", "pageNumber": "14" }, @@ -1638,7 +1638,7 @@ }, { "ruleCode": "AD.7.4.3", - "ruleContent": "Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs. Version 1.0 31 Aug 2024", + "ruleContent": "Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs. Version 1.0 31 Aug 2024", "parentRuleCode": "AD.7.4", "pageNumber": "15" }, @@ -1751,7 +1751,7 @@ }, { "ruleCode": "DR.2.2.2", - "ruleContent": "Template files are available on the FSAE Online Website, see AD.2.2.1 Version 1.0 31 Aug 2024", + "ruleContent": "Template files are available on the FSAE Online Website, see AD.2.2.1 Version 1.0 31 Aug 2024", "parentRuleCode": "DR.2.2", "pageNumber": "16" }, @@ -1889,7 +1889,7 @@ }, { "ruleCode": "DR.3.4.1", - "ruleContent": "Electronic Throttle Control (ETC) (IC Only)", + "ruleContent": "Electronic Throttle Control (ETC) (IC Only)", "parentRuleCode": "DR.3.4", "pageNumber": "17" }, @@ -1907,19 +1907,19 @@ }, { "ruleCode": "DR.3.4.2", - "ruleContent": "Fuel Type IC.5.1 There is no point penalty for a late fuel type order. Once the deadline has passed, the team will be allocated the basic fuel type.", + "ruleContent": "Fuel Type IC.5.1 There is no point penalty for a late fuel type order. Once the deadline has passed, the team will be allocated the basic fuel type.", "parentRuleCode": "DR.3.4", "pageNumber": "17" }, { "ruleCode": "DR.3.4.3", - "ruleContent": "Program Submissions Please submit material requested for the Event Program by the published deadlines Version 1.0 31 Aug 2024 Table DR-1 Submission Information Submission Refer to: Required Format: Submit in File Format: Penalty Group Structural Equivalency Spreadsheet (SES) as applicable to your design", + "ruleContent": "Program Submissions Please submit material requested for the Event Program by the published deadlines Version 1.0 31 Aug 2024 Table DR-1 Submission Information Submission Refer to: Required Format: Submit in File Format: Penalty Group Structural Equivalency Spreadsheet (SES) as applicable to your design", "parentRuleCode": "DR.3.4", "pageNumber": "17" }, { "ruleCode": "F.2.1", - "ruleContent": "see below XLSX Tech ETC - Notice of Intent IC.4.3 see below PDF ETC ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC EV – Electrical Systems Officer and Electrical Systems Advisor Form AD.5.2, AD.5.3 see below PDF Tech EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other Cost Report S.3.4 see S.3.4.2 (1) Other Cost Addendum S.3.7 see below see S.3.7 none Design Briefing S.4.3 see below PDF Other Vehicle Drawings S.4.4 see S.4.4.1 PDF Other Design Spec Sheet S.4.5 see below XLSX Other Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 Note (1): Refer to the FSAE Online website for submission requirements Table DR-2 Submission Penalty Information Penalty Group Penalty Points per 24 Hours Not Submitted after the Deadline ETC none Not Approved to use ETC - see DR.3.4.1 Tech -20 Grounds for Removal - see DR.3.3 Other -10 Removed from Cost/Design/Presentation Event and Score 0 points – see DR.3.2.2 Version 1.0 31 Aug 2024", + "ruleContent": "see below XLSX Tech ETC - Notice of Intent IC.4.3 see below PDF ETC ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC EV – Electrical Systems Officer and Electrical Systems Advisor Form AD.5.2, AD.5.3 see below PDF Tech EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other Cost Report S.3.4 see S.3.4.2 (1) Other Cost Addendum S.3.7 see below see S.3.7 none Design Briefing S.4.3 see below PDF Other Vehicle Drawings S.4.4 see S.4.4.1 PDF Other Design Spec Sheet S.4.5 see below XLSX Other Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 Note (1): Refer to the FSAE Online website for submission requirements Table DR-2 Submission Penalty Information Penalty Group Penalty Points per 24 Hours Not Submitted after the Deadline ETC none Not Approved to use ETC - see DR.3.4.1 Tech -20 Grounds for Removal - see DR.3.3 Other -10 Removed from Cost/Design/Presentation Event and Score 0 points – see DR.3.2.2 Version 1.0 31 Aug 2024", "parentRuleCode": "F.2", "pageNumber": "18" }, @@ -1972,13 +1972,13 @@ }, { "ruleCode": "V.1.3.1", - "ruleContent": "The track and center of gravity must combine to provide sufficient rollover stability. See IN.9.2", + "ruleContent": "The track and center of gravity must combine to provide sufficient rollover stability. See IN.9.2", "parentRuleCode": "V.1.3", "pageNumber": "19" }, { "ruleCode": "V.1.3.2", - "ruleContent": "The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. Version 1.0 31 Aug 2024", + "ruleContent": "The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. Version 1.0 31 Aug 2024", "parentRuleCode": "V.1.3", "pageNumber": "19" }, @@ -2092,13 +2092,13 @@ }, { "ruleCode": "V.3.1.4", - "ruleContent": "Fasteners in the Suspension system are Critical Fasteners, see T.8.2", + "ruleContent": "Fasteners in the Suspension system are Critical Fasteners, see T.8.2", "parentRuleCode": "V.3.1", "pageNumber": "20" }, { "ruleCode": "V.3.1.5", - "ruleContent": "All spherical rod ends and spherical bearings on the suspension and steering must be one of: • Mounted in double shear • Captured by having a screw/bolt head or washer with an outside diameter that is larger than spherical bearing housing inside diameter. Version 1.0 31 Aug 2024", + "ruleContent": "All spherical rod ends and spherical bearings on the suspension and steering must be one of: • Mounted in double shear • Captured by having a screw/bolt head or washer with an outside diameter that is larger than spherical bearing housing inside diameter. Version 1.0 31 Aug 2024", "parentRuleCode": "V.3.1", "pageNumber": "20" }, @@ -2152,7 +2152,7 @@ }, { "ruleCode": "V.3.2.6", - "ruleContent": "The steering rack must be mechanically attached to the Chassis F.5.14", + "ruleContent": "The steering rack must be mechanically attached to the Chassis F.5.14", "parentRuleCode": "V.3.2", "pageNumber": "21" }, @@ -2248,7 +2248,7 @@ }, { "ruleCode": "V.4.2.1", - "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel if the nut loosens. A second nut (jam nut) does not meet this requirement Version 1.0 31 Aug 2024", + "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel if the nut loosens. A second nut (jam nut) does not meet this requirement Version 1.0 31 Aug 2024", "parentRuleCode": "V.4.2", "pageNumber": "21" }, @@ -2350,7 +2350,7 @@ }, { "ruleCode": "V.4.3.5.c", - "ruleContent": "No traction enhancers may be applied to the tires at any time onsite at the competition. Version 1.0 31 Aug 2024", + "ruleContent": "No traction enhancers may be applied to the tires at any time onsite at the competition. Version 1.0 31 Aug 2024", "parentRuleCode": "V.4.3.5", "pageNumber": "22" }, @@ -2421,7 +2421,7 @@ }, { "ruleCode": "F.1.10", - "ruleContent": "Primary Structure The combination of these components: • Front Bulkhead and Front Bulkhead Support • Front Hoop, Main Hoop, Roll Hoop Braces and Supports • Side Impact Structure • (EV Only) Tractive System Protection and Rear Impact Protection • Any Frame Members, guides, or supports that transfer load from the Driver Restraint System", + "ruleContent": "Primary Structure The combination of these components: • Front Bulkhead and Front Bulkhead Support • Front Hoop, Main Hoop, Roll Hoop Braces and Supports • Side Impact Structure • (EV Only) Tractive System Protection and Rear Impact Protection • Any Frame Members, guides, or supports that transfer load from the Driver Restraint System", "parentRuleCode": "F.1", "pageNumber": "23" }, @@ -2433,7 +2433,7 @@ }, { "ruleCode": "F.1.12", - "ruleContent": "Major Structure The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of the Upper Side Impact Member or top of the Side Impact Zone. Version 1.0 31 Aug 2024", + "ruleContent": "Major Structure The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of the Upper Side Impact Member or top of the Side Impact Zone. Version 1.0 31 Aug 2024", "parentRuleCode": "F.1", "pageNumber": "23" }, @@ -2451,7 +2451,7 @@ }, { "ruleCode": "F.1.15", - "ruleContent": "Component Envelope The area that is inside a plane from the top of the Main Hoop to the top of the Front Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * see note in step F.1.13 above", + "ruleContent": "Component Envelope The area that is inside a plane from the top of the Main Hoop to the top of the Front Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * see note in step F.1.13 above", "parentRuleCode": "F.1", "pageNumber": "24" }, @@ -2475,7 +2475,7 @@ }, { "ruleCode": "F.1.17.b", - "ruleContent": "This is also what is meant by “properly triangulated” Version 1.0 31 Aug 2024", + "ruleContent": "This is also what is meant by “properly triangulated” Version 1.0 31 Aug 2024", "parentRuleCode": "F.1.17", "pageNumber": "24" }, @@ -2577,7 +2577,7 @@ }, { "ruleCode": "F.3.1", - "ruleContent": "Dimensions Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for commonly available tubing. Version 1.0 31 Aug 2024", + "ruleContent": "Dimensions Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for commonly available tubing. Version 1.0 31 Aug 2024", "parentRuleCode": "F.3", "pageNumber": "25" }, @@ -2667,7 +2667,7 @@ }, { "ruleCode": "F.3.2.1.m", - "ruleContent": "Accumulator Mounting and Protection Size B Yes", + "ruleContent": "Accumulator Mounting and Protection Size B Yes", "parentRuleCode": "F.3.2.1", "pageNumber": "26" }, @@ -2733,7 +2733,7 @@ }, { "ruleCode": "F.3.4.1.d", - "ruleContent": "Size D 18015 mm 4 126 mm 2 35.0 mm 1.2 mm 1.375” x 0.049” 35 x 1.2 mm Version 1.0 31 Aug 2024", + "ruleContent": "Size D 18015 mm 4 126 mm 2 35.0 mm 1.2 mm 1.375” x 0.049” 35 x 1.2 mm Version 1.0 31 Aug 2024", "parentRuleCode": "F.3.4.1", "pageNumber": "26" }, @@ -2805,13 +2805,13 @@ }, { "ruleCode": "F.3.5.3.a", - "ruleContent": "Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm Welded 3.0 mm", + "ruleContent": "Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm Welded 3.0 mm", "parentRuleCode": "F.3.5.3", "pageNumber": "27" }, { "ruleCode": "F.3.5.3.b", - "ruleContent": "Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Young’s Modulus (E) 69 GPa (10,000 ksi) Yield Strength (Sy) 240 MPa (34.8 ksi) Ultimate Strength (Su) 290 MPa (42.1 ksi)", + "ruleContent": "Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Young’s Modulus (E) 69 GPa (10,000 ksi) Yield Strength (Sy) 240 MPa (34.8 ksi) Ultimate Strength (Su) 290 MPa (42.1 ksi)", "parentRuleCode": "F.3.5.3", "pageNumber": "27" }, @@ -2829,7 +2829,7 @@ }, { "ruleCode": "F.3.5.3.e", - "ruleContent": "If aluminum was solution heat treated and age hardened to increase its strength after welding, the team must supply evidence of the process. This includes, but is not limited to, the heat treating facility used, the process applied, and the fixturing used. Version 1.0 31 Aug 2024", + "ruleContent": "If aluminum was solution heat treated and age hardened to increase its strength after welding, the team must supply evidence of the process. This includes, but is not limited to, the heat treating facility used, the process applied, and the fixturing used. Version 1.0 31 Aug 2024", "parentRuleCode": "F.3.5.3", "pageNumber": "27" }, @@ -2895,13 +2895,13 @@ }, { "ruleCode": "F.4.2.2", - "ruleContent": "Primary Structure Laminate Testing Teams must build new representative test panels for each ply schedule used in the regulated regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer to F.4.2.4", + "ruleContent": "Primary Structure Laminate Testing Teams must build new representative test panels for each ply schedule used in the regulated regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer to F.4.2.4", "parentRuleCode": "F.4.2", "pageNumber": "28" }, { "ruleCode": "F.4.2.2.a", - "ruleContent": "Test panels must: • Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm • Be supported by a span distance of 400 mm • Have equal surface area for the top and bottom skin • Have bare edges, without skin material", + "ruleContent": "Test panels must: • Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm • Be supported by a span distance of 400 mm • Have equal surface area for the top and bottom skin • Have bare edges, without skin material", "parentRuleCode": "F.4.2.2", "pageNumber": "28" }, @@ -2919,7 +2919,7 @@ }, { "ruleCode": "F.4.2.2.d", - "ruleContent": "Test panels must use the thickest core associated with each skin layup Version 1.0 31 Aug 2024 Designs may use core thickness that is 50% - 100% of the test panel core thickness associated with each skin layup", + "ruleContent": "Test panels must use the thickest core associated with each skin layup Version 1.0 31 Aug 2024 Designs may use core thickness that is 50% - 100% of the test panel core thickness associated with each skin layup", "parentRuleCode": "F.4.2.2", "pageNumber": "28" }, @@ -3027,7 +3027,7 @@ }, { "ruleCode": "F.4.2.5.f", - "ruleContent": "The SES must include force and displacement data and photos of the test setup. Version 1.0 31 Aug 2024", + "ruleContent": "The SES must include force and displacement data and photos of the test setup. Version 1.0 31 Aug 2024", "parentRuleCode": "F.4.2.5", "pageNumber": "29" }, @@ -3135,7 +3135,7 @@ }, { "ruleCode": "F.5", - "ruleContent": "CHASSIS REQUIREMENTS This section applies to all Chassis, regardless of material or construction Version 1.0 31 Aug 2024", + "ruleContent": "CHASSIS REQUIREMENTS This section applies to all Chassis, regardless of material or construction Version 1.0 31 Aug 2024", "parentRuleCode": "F", "pageNumber": "30" }, @@ -3147,7 +3147,7 @@ }, { "ruleCode": "F.5.1.1", - "ruleContent": "The Primary Structure must be constructed from one or a combination of: • Steel Tubing and Material F.3.2 F.3.4 • Alternative Tubing Materials F.3.2 F.3.5 • Composite Material F.4", + "ruleContent": "The Primary Structure must be constructed from one or a combination of: • Steel Tubing and Material F.3.2 F.3.4 • Alternative Tubing Materials F.3.2 F.3.5 • Composite Material F.4", "parentRuleCode": "F.5.1", "pageNumber": "31" }, @@ -3231,7 +3231,7 @@ }, { "ruleCode": "F.5.3.2", - "ruleContent": "Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic testing or by the drilling of inspection holes on request.", + "ruleContent": "Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic testing or by the drilling of inspection holes on request.", "parentRuleCode": "F.5.3", "pageNumber": "31" }, @@ -3261,7 +3261,7 @@ }, { "ruleCode": "F.5.4.3", - "ruleContent": "Bolted connections in the Primary Structure using tabs or brackets must have an edge distance ratio “e/D” of 1.5 or higher “D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest free edge Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” Version 1.0 31 Aug 2024", + "ruleContent": "Bolted connections in the Primary Structure using tabs or brackets must have an edge distance ratio “e/D” of 1.5 or higher “D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest free edge Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.4", "pageNumber": "31" }, @@ -3321,7 +3321,7 @@ }, { "ruleCode": "F.5.6.3.b", - "ruleContent": "Less than 25 mm from an Attachment point F.7.8", + "ruleContent": "Less than 25 mm from an Attachment point F.7.8", "parentRuleCode": "F.5.6.3", "pageNumber": "32" }, @@ -3351,7 +3351,7 @@ }, { "ruleCode": "F.5.6.5", - "ruleContent": "Driver Template A two dimensional template used to represent the 95th percentile male is made to these dimensions (see figure below): • A circle of diameter 200 mm will represent the hips and buttocks. • A circle of diameter 200 mm will represent the shoulder/cervical region. • A circle of diameter 300 mm will represent the head (with helmet). • A straight line measuring 490 mm will connect the centers of the two 200 mm circles. • A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle. Version 1.0 31 Aug 2024", + "ruleContent": "Driver Template A two dimensional template used to represent the 95th percentile male is made to these dimensions (see figure below): • A circle of diameter 200 mm will represent the hips and buttocks. • A circle of diameter 200 mm will represent the shoulder/cervical region. • A circle of diameter 300 mm will represent the head (with helmet). • A straight line measuring 490 mm will connect the centers of the two 200 mm circles. • A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle. Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.6", "pageNumber": "32" }, @@ -3387,7 +3387,7 @@ }, { "ruleCode": "F.5.7.4", - "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position. See figure after F.5.9.6 below", + "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position. See figure after F.5.9.6 below", "parentRuleCode": "F.5.7", "pageNumber": "33" }, @@ -3417,7 +3417,7 @@ }, { "ruleCode": "F.5.8.1", - "ruleContent": "The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.g Version 1.0 31 Aug 2024", + "ruleContent": "The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.g Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.8", "pageNumber": "33" }, @@ -3507,7 +3507,7 @@ }, { "ruleCode": "F.5.9.7.b", - "ruleContent": "Capable of transmitting all loads from the Main Hoop into the Major Structure of the Chassis without failing Version 1.0 31 Aug 2024", + "ruleContent": "Capable of transmitting all loads from the Main Hoop into the Major Structure of the Chassis without failing Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.9.7", "pageNumber": "34" }, @@ -3537,7 +3537,7 @@ }, { "ruleCode": "F.5.10.1.c", - "ruleContent": "Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3)", + "ruleContent": "Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3)", "parentRuleCode": "F.5.10.1", "pageNumber": "35" }, @@ -3633,7 +3633,7 @@ }, { "ruleCode": "F.5.12.1.a", - "ruleContent": "The threaded fasteners used to secure non permanent joints are Critical Fasteners, see T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7", + "ruleContent": "The threaded fasteners used to secure non permanent joints are Critical Fasteners, see T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7", "parentRuleCode": "F.5.12.1", "pageNumber": "35" }, @@ -3651,7 +3651,7 @@ }, { "ruleCode": "F.5.12.2", - "ruleContent": "Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint Version 1.0 31 Aug 2024 Figure – Double Lug Joint", + "ruleContent": "Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint Version 1.0 31 Aug 2024 Figure – Double Lug Joint", "parentRuleCode": "F.5.12", "pageNumber": "35" }, @@ -3687,7 +3687,7 @@ }, { "ruleCode": "F.5.12.5", - "ruleContent": "In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above Figure – Sleeved Butt Joint", + "ruleContent": "In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above Figure – Sleeved Butt Joint", "parentRuleCode": "F.5.12", "pageNumber": "36" }, @@ -3717,7 +3717,7 @@ }, { "ruleCode": "F.5.12.7", - "ruleContent": "In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above", + "ruleContent": "In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above", "parentRuleCode": "F.5.12", "pageNumber": "36" }, @@ -3735,7 +3735,7 @@ }, { "ruleCode": "F.5.13.2", - "ruleContent": "Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness steel. Version 1.0 31 Aug 2024", + "ruleContent": "Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness steel. Version 1.0 31 Aug 2024", "parentRuleCode": "F.5.13", "pageNumber": "36" }, @@ -3747,7 +3747,7 @@ }, { "ruleCode": "F.5.14.a", - "ruleContent": "Be F.3.2.1.n or Equivalent", + "ruleContent": "Be F.3.2.1.n or Equivalent", "parentRuleCode": "F.5.14", "pageNumber": "37" }, @@ -3849,7 +3849,7 @@ }, { "ruleCode": "F.6.2.3.d", - "ruleContent": "The diagonal brace must properly Triangulate the upper and lower support members Version 1.0 31 Aug 2024", + "ruleContent": "The diagonal brace must properly Triangulate the upper and lower support members Version 1.0 31 Aug 2024", "parentRuleCode": "F.6.2.3", "pageNumber": "37" }, @@ -3891,7 +3891,7 @@ }, { "ruleCode": "F.6.3.4", - "ruleContent": "The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 above", + "ruleContent": "The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 above", "parentRuleCode": "F.6.3", "pageNumber": "38" }, @@ -3951,7 +3951,7 @@ }, { "ruleCode": "F.6.4.5", - "ruleContent": "The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the bottom of the Front Hoop. Version 1.0 31 Aug 2024", + "ruleContent": "The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the bottom of the Front Hoop. Version 1.0 31 Aug 2024", "parentRuleCode": "F.6.4", "pageNumber": "38" }, @@ -4101,7 +4101,7 @@ }, { "ruleCode": "F.7.1.4", - "ruleContent": "An inspection hole approximately 4mm in diameter must be drilled through a low stress location of each monocoque section regulated by the Structural Equivalency Spreadsheet This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b Version 1.0 31 Aug 2024", + "ruleContent": "An inspection hole approximately 4mm in diameter must be drilled through a low stress location of each monocoque section regulated by the Structural Equivalency Spreadsheet This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b Version 1.0 31 Aug 2024", "parentRuleCode": "F.7.1", "pageNumber": "39" }, @@ -4209,7 +4209,7 @@ }, { "ruleCode": "F.7.4.3.a", - "ruleContent": "The Front Hoop has core fit tightly around its entire circumference. Expanding foam is not permitted", + "ruleContent": "The Front Hoop has core fit tightly around its entire circumference. Expanding foam is not permitted", "parentRuleCode": "F.7.4.3", "pageNumber": "40" }, @@ -4221,13 +4221,13 @@ }, { "ruleCode": "F.7.4.3.c", - "ruleContent": "A small gap in the laminate (approximately 25 mm) exists for inspection of the Front Hoop F.5.7.7", + "ruleContent": "A small gap in the laminate (approximately 25 mm) exists for inspection of the Front Hoop F.5.7.7", "parentRuleCode": "F.7.4.3", "pageNumber": "40" }, { "ruleCode": "F.7.4.4", - "ruleContent": "Adhesive must not be the sole method of attaching the Front Hoop to the monocoque Version 1.0 31 Aug 2024", + "ruleContent": "Adhesive must not be the sole method of attaching the Front Hoop to the monocoque Version 1.0 31 Aug 2024", "parentRuleCode": "F.7.4", "pageNumber": "40" }, @@ -4329,7 +4329,7 @@ }, { "ruleCode": "F.7.8.1.a", - "ruleContent": "When a Roll Hoop attaches in three locations on each side, the attachments must be located at the bottom, top, and a location near the midpoint Version 1.0 31 Aug 2024", + "ruleContent": "When a Roll Hoop attaches in three locations on each side, the attachments must be located at the bottom, top, and a location near the midpoint Version 1.0 31 Aug 2024", "parentRuleCode": "F.7.8.1", "pageNumber": "41" }, @@ -4425,7 +4425,7 @@ }, { "ruleCode": "F.7.9.1.b", - "ruleContent": "Each attachment point for the Lap Belts must support a minimum load of 15 kN before failure. Version 1.0 31 Aug 2024", + "ruleContent": "Each attachment point for the Lap Belts must support a minimum load of 15 kN before failure. Version 1.0 31 Aug 2024", "parentRuleCode": "F.7.9.1", "pageNumber": "42" }, @@ -4479,7 +4479,7 @@ }, { "ruleCode": "F.7.9.2.f", - "ruleContent": "Designs with attachments near a free edge must not support the free edge during the test The intent is that the test specimen, to the best extent possible, represents the vehicle as driven at competition. Teams are expected to test a panel that is manufactured in as close a configuration to what is built in the vehicle as possible", + "ruleContent": "Designs with attachments near a free edge must not support the free edge during the test The intent is that the test specimen, to the best extent possible, represents the vehicle as driven at competition. Teams are expected to test a panel that is manufactured in as close a configuration to what is built in the vehicle as possible", "parentRuleCode": "F.7.9.2", "pageNumber": "43" }, @@ -4527,7 +4527,7 @@ }, { "ruleCode": "F.8.2.1.b", - "ruleContent": "4.0 mm minimum thickness solid aluminum plate Version 1.0 31 Aug 2024", + "ruleContent": "4.0 mm minimum thickness solid aluminum plate Version 1.0 31 Aug 2024", "parentRuleCode": "F.8.2.1", "pageNumber": "43" }, @@ -4623,7 +4623,7 @@ }, { "ruleCode": "F.8.3.2.b", - "ruleContent": "Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending and perimeter shear Version 1.0 31 Aug 2024", + "ruleContent": "Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending and perimeter shear Version 1.0 31 Aug 2024", "parentRuleCode": "F.8.3.2", "pageNumber": "44" }, @@ -4677,7 +4677,7 @@ }, { "ruleCode": "F.8.4.3.a", - "ruleContent": "The Front Bulkhead must include an additional support that is a diagonal or X-brace that meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 • The structure must go across the entire Front Bulkhead opening on the diagonal • Attachment points at each end must carry a minimum load of 30 kN in any direction", + "ruleContent": "The Front Bulkhead must include an additional support that is a diagonal or X-brace that meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 • The structure must go across the entire Front Bulkhead opening on the diagonal • Attachment points at each end must carry a minimum load of 30 kN in any direction", "parentRuleCode": "F.8.4.3", "pageNumber": "45" }, @@ -4761,7 +4761,7 @@ }, { "ruleCode": "F.8.5.4.b", - "ruleContent": "If interrupted, the weld/space ratio must be 1:1 or higher Version 1.0 31 Aug 2024", + "ruleContent": "If interrupted, the weld/space ratio must be 1:1 or higher Version 1.0 31 Aug 2024", "parentRuleCode": "F.8.5.4", "pageNumber": "45" }, @@ -4911,13 +4911,13 @@ }, { "ruleCode": "F.8.7.1", - "ruleContent": "The combination of the Impact Attenuator assembly and the force to crush or detach all other items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in F.8.8.2 Ignore light bodywork, light nosecones, and outboard wheel assemblies Version 1.0 31 Aug 2024", + "ruleContent": "The combination of the Impact Attenuator assembly and the force to crush or detach all other items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in F.8.8.2 Ignore light bodywork, light nosecones, and outboard wheel assemblies Version 1.0 31 Aug 2024", "parentRuleCode": "F.8.7", "pageNumber": "46" }, { "ruleCode": "F.8.7.2", - "ruleContent": "The peak load for the type of Impact Attenuator: • Standard Foam Impact Attenuator 95 kN • Standard Honeycomb Impact Attenuator 60 kN • Tested Impact Attenuator peak as measured", + "ruleContent": "The peak load for the type of Impact Attenuator: • Standard Foam Impact Attenuator 95 kN • Standard Honeycomb Impact Attenuator 60 kN • Tested Impact Attenuator peak as measured", "parentRuleCode": "F.8.7", "pageNumber": "47" }, @@ -5019,7 +5019,7 @@ }, { "ruleCode": "F.8.8.3.d", - "ruleContent": "Evidence that the Standard IA meets the design criteria provided in the Standard Impact Attenuator specification must be included with the SES. This may be a receipt or packing slip from the supplier.", + "ruleContent": "Evidence that the Standard IA meets the design criteria provided in the Standard Impact Attenuator specification must be included with the SES. This may be a receipt or packing slip from the supplier.", "parentRuleCode": "F.8.8.3", "pageNumber": "47" }, @@ -5031,7 +5031,7 @@ }, { "ruleCode": "F.8.8.4.a", - "ruleContent": "Test data that proves that the Impact Attenuator Assembly meets the Functional Requirements F.8.8.2", + "ruleContent": "Test data that proves that the Impact Attenuator Assembly meets the Functional Requirements F.8.8.2", "parentRuleCode": "F.8.8.4", "pageNumber": "47" }, @@ -5049,7 +5049,7 @@ }, { "ruleCode": "F.8.8.4.d", - "ruleContent": "Photos of the attenuator, annotated with the height of the attenuator before and after testing. Version 1.0 31 Aug 2024", + "ruleContent": "Photos of the attenuator, annotated with the height of the attenuator before and after testing. Version 1.0 31 Aug 2024", "parentRuleCode": "F.8.8.4", "pageNumber": "47" }, @@ -5157,13 +5157,13 @@ }, { "ruleCode": "F.9.1.1.b", - "ruleContent": "Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper Side Impact Structure IC.1.2", + "ruleContent": "Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper Side Impact Structure IC.1.2", "parentRuleCode": "F.9.1.1", "pageNumber": "48" }, { "ruleCode": "F.9.1.2", - "ruleContent": "In side view, any portion of the Fuel System must not project below the lower surface of the chassis Version 1.0 31 Aug 2024", + "ruleContent": "In side view, any portion of the Fuel System must not project below the lower surface of the chassis Version 1.0 31 Aug 2024", "parentRuleCode": "F.9.1", "pageNumber": "48" }, @@ -5241,19 +5241,19 @@ }, { "ruleCode": "F.10.2.1.a", - "ruleContent": "Steel 1.25 mm minimum thickness", + "ruleContent": "Steel 1.25 mm minimum thickness", "parentRuleCode": "F.10.2.1", "pageNumber": "49" }, { "ruleCode": "F.10.2.1.b", - "ruleContent": "Aluminum 3.2 mm minimum thickness", + "ruleContent": "Aluminum 3.2 mm minimum thickness", "parentRuleCode": "F.10.2.1", "pageNumber": "49" }, { "ruleCode": "F.10.2.1.c", - "ruleContent": "Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", + "ruleContent": "Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", "parentRuleCode": "F.10.2.1", "pageNumber": "49" }, @@ -5265,19 +5265,19 @@ }, { "ruleCode": "F.10.2.2.a", - "ruleContent": "Steel 0.9 mm minimum thickness", + "ruleContent": "Steel 0.9 mm minimum thickness", "parentRuleCode": "F.10.2.2", "pageNumber": "49" }, { "ruleCode": "F.10.2.2.b", - "ruleContent": "Aluminum 2.3 mm minimum thickness", + "ruleContent": "Aluminum 2.3 mm minimum thickness", "parentRuleCode": "F.10.2.2", "pageNumber": "49" }, { "ruleCode": "F.10.2.2.c", - "ruleContent": "Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", + "ruleContent": "Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", "parentRuleCode": "F.10.2.2", "pageNumber": "49" }, @@ -5289,7 +5289,7 @@ }, { "ruleCode": "F.10.2.3.a", - "ruleContent": "Must surround and separate each Accumulator Segment EV.5.1.2", + "ruleContent": "Must surround and separate each Accumulator Segment EV.5.1.2", "parentRuleCode": "F.10.2.3", "pageNumber": "49" }, @@ -5319,7 +5319,7 @@ }, { "ruleCode": "F.10.2.5.a", - "ruleContent": "Welding • Welds may be continuous or interrupted. • If interrupted, the weld/space ratio must be 1:1 or higher Version 1.0 31 Aug 2024 • All weld lengths must be more than 25 mm", + "ruleContent": "Welding • Welds may be continuous or interrupted. • If interrupted, the weld/space ratio must be 1:1 or higher Version 1.0 31 Aug 2024 • All weld lengths must be more than 25 mm", "parentRuleCode": "F.10.2.5", "pageNumber": "49" }, @@ -5331,7 +5331,7 @@ }, { "ruleCode": "F.10.2.5.c", - "ruleContent": "Bonding • Bonding must meet F.5.5 • Strength of the bonded joint must be Equivalent to the strength of the welded joint ( F.10.2.5.a above ) • Bonds must run the entire length of the joint Folding or bending plate material to create flanges or to eliminate joints between walls is recommended.", + "ruleContent": "Bonding • Bonding must meet F.5.5 • Strength of the bonded joint must be Equivalent to the strength of the welded joint ( F.10.2.5.a above ) • Bonds must run the entire length of the joint Folding or bending plate material to create flanges or to eliminate joints between walls is recommended.", "parentRuleCode": "F.10.2.5", "pageNumber": "49" }, @@ -5379,7 +5379,7 @@ }, { "ruleCode": "F.10.3.2.a", - "ruleContent": "Mechanical Cover and Lid attachments must show equivalence to the strength of a welded joint F.10.2.5.a", + "ruleContent": "Mechanical Cover and Lid attachments must show equivalence to the strength of a welded joint F.10.2.5.a", "parentRuleCode": "F.10.3.2", "pageNumber": "50" }, @@ -5427,7 +5427,7 @@ }, { "ruleCode": "F.10.4.4.a", - "ruleContent": "Must be round. Slots are prohibited", + "ruleContent": "Must be round. Slots are prohibited", "parentRuleCode": "F.10.4.4", "pageNumber": "50" }, @@ -5463,7 +5463,7 @@ }, { "ruleCode": "F.10.5.2.a", - "ruleContent": "Attach to the Major Structure of the chassis Version 1.0 31 Aug 2024 A maximum of two attachment points may be on a chassis tube between two triangulated nodes.", + "ruleContent": "Attach to the Major Structure of the chassis Version 1.0 31 Aug 2024 A maximum of two attachment points may be on a chassis tube between two triangulated nodes.", "parentRuleCode": "F.10.5.2", "pageNumber": "50" }, @@ -5499,7 +5499,7 @@ }, { "ruleCode": "F.10.5.5", - "ruleContent": "Teams must justify the Accumulator Container attachment using one of the two methods: • Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 • Load Based Analysis per F.10.5.7 and F.10.5.8", + "ruleContent": "Teams must justify the Accumulator Container attachment using one of the two methods: • Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 • Load Based Analysis per F.10.5.7 and F.10.5.8", "parentRuleCode": "F.10.5", "pageNumber": "51" }, @@ -5535,7 +5535,7 @@ }, { "ruleCode": "F.10.5.7.a", - "ruleContent": "The minimum number of attachment points depends on the total mass of the container: Accumulator Weight Minimum Attachment Points < 20 kg 4 20 – 30 kg 6 30 – 40 kg 8 > 40 kg 10", + "ruleContent": "The minimum number of attachment points depends on the total mass of the container: Accumulator Weight Minimum Attachment Points < 20 kg 4 20 – 30 kg 6 30 – 40 kg 8 > 40 kg 10", "parentRuleCode": "F.10.5.7", "pageNumber": "51" }, @@ -5565,7 +5565,7 @@ }, { "ruleCode": "F.10.5.8.c", - "ruleContent": "Monocoque attachment points must meet F.7.8.8 Version 1.0 31 Aug 2024", + "ruleContent": "Monocoque attachment points must meet F.7.8.8 Version 1.0 31 Aug 2024", "parentRuleCode": "F.10.5.8", "pageNumber": "51" }, @@ -5661,7 +5661,7 @@ }, { "ruleCode": "F.11.3.1.b", - "ruleContent": "When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the structure must meet F.5.16 Component Protection", + "ruleContent": "When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the structure must meet F.5.16 Component Protection", "parentRuleCode": "F.11.3.1", "pageNumber": "52" }, @@ -5691,13 +5691,13 @@ }, { "ruleCode": "F.11.3.4.a", - "ruleContent": "A structural and triangulated load path from the top of the Rear Impact Protection to the Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop", + "ruleContent": "A structural and triangulated load path from the top of the Rear Impact Protection to the Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop", "parentRuleCode": "F.11.3.4", "pageNumber": "52" }, { "ruleCode": "F.11.3.4.b", - "ruleContent": "A structural and triangulated load path from the bottom of the Rear Impact Protection to the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop Version 1.0 31 Aug 2024", + "ruleContent": "A structural and triangulated load path from the bottom of the Rear Impact Protection to the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop Version 1.0 31 Aug 2024", "parentRuleCode": "F.11.3.4", "pageNumber": "52" }, @@ -5739,7 +5739,7 @@ }, { "ruleCode": "F.11.4.3", - "ruleContent": "Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through the Rear Bulkhead Version 1.0 31 Aug 2024", + "ruleContent": "Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through the Rear Bulkhead Version 1.0 31 Aug 2024", "parentRuleCode": "F.11.4", "pageNumber": "53" }, @@ -5768,7 +5768,7 @@ }, { "ruleCode": "T.1.1.2", - "ruleContent": "The template will be held horizontally, parallel to the ground, and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 )", + "ruleContent": "The template will be held horizontally, parallel to the ground, and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 )", "parentRuleCode": "T.1.1", "pageNumber": "54" }, @@ -5816,7 +5816,7 @@ }, { "ruleCode": "T.1.1.4.d", - "ruleContent": "Cables, wires, hoses, tubes, etc. must not block movement of the template During inspection, the steering column, for practical purposes, will not be removed. The template may be maneuvered around the steering column, but not any fixed supports. For ease of use, the template may contain a slot at the front center that the steering column may pass through. Version 1.0 31 Aug 2024", + "ruleContent": "Cables, wires, hoses, tubes, etc. must not block movement of the template During inspection, the steering column, for practical purposes, will not be removed. The template may be maneuvered around the steering column, but not any fixed supports. For ease of use, the template may contain a slot at the front center that the steering column may pass through. Version 1.0 31 Aug 2024", "parentRuleCode": "T.1.1.4", "pageNumber": "54" }, @@ -5846,7 +5846,7 @@ }, { "ruleCode": "T.1.2.2", - "ruleContent": "Conduct of the test. The template:", + "ruleContent": "Conduct of the test. The template:", "parentRuleCode": "T.1.2", "pageNumber": "55" }, @@ -5918,7 +5918,7 @@ }, { "ruleCode": "T.1.3.1", - "ruleContent": "The driver’s feet and legs must be completely contained inside the Major Structure of the Chassis. Version 1.0 31 Aug 2024", + "ruleContent": "The driver’s feet and legs must be completely contained inside the Major Structure of the Chassis. Version 1.0 31 Aug 2024", "parentRuleCode": "T.1.3", "pageNumber": "55" }, @@ -5960,7 +5960,7 @@ }, { "ruleCode": "T.1.4.1.b", - "ruleContent": "Pedal Travel is the percent of travel from a fully released position to a fully applied position. 0% is fully released and 100% is fully applied.", + "ruleContent": "Pedal Travel is the percent of travel from a fully released position to a fully applied position. 0% is fully released and 100% is fully applied.", "parentRuleCode": "T.1.4.1", "pageNumber": "56" }, @@ -6038,13 +6038,13 @@ }, { "ruleCode": "T.1.6.2", - "ruleContent": "Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. Version 1.0 31 Aug 2024", + "ruleContent": "Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. Version 1.0 31 Aug 2024", "parentRuleCode": "T.1.6", "pageNumber": "56" }, { "ruleCode": "T.1.6.3", - "ruleContent": "The design must address all three types of heat transfer between the heat source (examples include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a place that the driver could contact (including seat or floor):", + "ruleContent": "The design must address all three types of heat transfer between the heat source (examples include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a place that the driver could contact (including seat or floor):", "parentRuleCode": "T.1.6", "pageNumber": "57" }, @@ -6152,7 +6152,7 @@ }, { "ruleCode": "T.1.8.4.a", - "ruleContent": "Made of aluminum. The Firewall layer itself must not be aluminum tape.", + "ruleContent": "Made of aluminum. The Firewall layer itself must not be aluminum tape.", "parentRuleCode": "T.1.8.4", "pageNumber": "57" }, @@ -6194,7 +6194,7 @@ }, { "ruleCode": "T.1.8.6.d", - "ruleContent": "Grommets must be used to seal any pass through for wiring, cables, etc Version 1.0 31 Aug 2024", + "ruleContent": "Grommets must be used to seal any pass through for wiring, cables, etc Version 1.0 31 Aug 2024", "parentRuleCode": "T.1.8.6", "pageNumber": "57" }, @@ -6290,7 +6290,7 @@ }, { "ruleCode": "T.2.2.3", - "ruleContent": "The Harness must be in or before the year of expiration shown on the labels. Harnesses expiring on or before Dec 31 of the calendar year of the competition are permitted.", + "ruleContent": "The Harness must be in or before the year of expiration shown on the labels. Harnesses expiring on or before Dec 31 of the calendar year of the competition are permitted.", "parentRuleCode": "T.2.2", "pageNumber": "58" }, @@ -6308,7 +6308,7 @@ }, { "ruleCode": "T.2.2.6", - "ruleContent": "All Harness hardware must be used as received from the manufacturer. No modification (including drilling, cutting, grinding, etc) is permitted.", + "ruleContent": "All Harness hardware must be used as received from the manufacturer. No modification (including drilling, cutting, grinding, etc) is permitted.", "parentRuleCode": "T.2.2", "pageNumber": "58" }, @@ -6338,13 +6338,13 @@ }, { "ruleCode": "T.2.3.2", - "ruleContent": "All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. Version 1.0 31 Aug 2024", + "ruleContent": "All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. Version 1.0 31 Aug 2024", "parentRuleCode": "T.2.3", "pageNumber": "58" }, { "ruleCode": "T.2.3.3", - "ruleContent": "The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed.", + "ruleContent": "The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed.", "parentRuleCode": "T.2.3", "pageNumber": "59" }, @@ -6374,7 +6374,7 @@ }, { "ruleCode": "T.2.4.3.a", - "ruleContent": "Support a minimum load in pullout and tearout before failure of: • If one belt is attached to the tab, bracket or eye 15 kN • If two belts are attached to the tab, bracket or eye 30 kN", + "ruleContent": "Support a minimum load in pullout and tearout before failure of: • If one belt is attached to the tab, bracket or eye 15 kN • If two belts are attached to the tab, bracket or eye 30 kN", "parentRuleCode": "T.2.4.3", "pageNumber": "59" }, @@ -6410,7 +6410,7 @@ }, { "ruleCode": "T.2.4.4.c", - "ruleContent": "Where a single shear tab is welded to the chassis, the tab to tube welding must be on the two sides of the base of the tab Double shear attachments are preferred. Tabs and brackets for double shear mounts should be welded on the two sides.", + "ruleContent": "Where a single shear tab is welded to the chassis, the tab to tube welding must be on the two sides of the base of the tab Double shear attachments are preferred. Tabs and brackets for double shear mounts should be welded on the two sides.", "parentRuleCode": "T.2.4.4", "pageNumber": "59" }, @@ -6470,7 +6470,7 @@ }, { "ruleCode": "T.2.4.7", - "ruleContent": "Harness installation must meet T.1.8.1 Version 1.0 31 Aug 2024", + "ruleContent": "Harness installation must meet T.1.8.1 Version 1.0 31 Aug 2024", "parentRuleCode": "T.2.4", "pageNumber": "59" }, @@ -6530,7 +6530,7 @@ }, { "ruleCode": "T.2.5.6.a", - "ruleContent": "Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9", + "ruleContent": "Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9", "parentRuleCode": "T.2.5.6", "pageNumber": "60" }, @@ -6584,7 +6584,7 @@ }, { "ruleCode": "T.2.6.3.b", - "ruleContent": "Bolt through a welded tube insert or tested monocoque attachment F.7.9", + "ruleContent": "Bolt through a welded tube insert or tested monocoque attachment F.7.9", "parentRuleCode": "T.2.6.3", "pageNumber": "60" }, @@ -6602,7 +6602,7 @@ }, { "ruleCode": "T.2.4.3.d", - "ruleContent": "Wrap around physically tested hardware attached to a monocoque Version 1.0 31 Aug 2024", + "ruleContent": "Wrap around physically tested hardware attached to a monocoque Version 1.0 31 Aug 2024", "parentRuleCode": "T.2.4.3", "pageNumber": "60" }, @@ -6638,7 +6638,7 @@ }, { "ruleCode": "T.2.7.2.b", - "ruleContent": "With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming up around the groin to the release buckle. Version 1.0 31 Aug 2024", + "ruleContent": "With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming up around the groin to the release buckle. Version 1.0 31 Aug 2024", "parentRuleCode": "T.2.7.2", "pageNumber": "61" }, @@ -6668,7 +6668,7 @@ }, { "ruleCode": "T.2.7.4.a", - "ruleContent": "Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9", + "ruleContent": "Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9", "parentRuleCode": "T.2.7.4", "pageNumber": "62" }, @@ -6716,13 +6716,13 @@ }, { "ruleCode": "T.2.8.3.a", - "ruleContent": "Rollover Protection Envelope F.1.13", + "ruleContent": "Rollover Protection Envelope F.1.13", "parentRuleCode": "T.2.8.3", "pageNumber": "62" }, { "ruleCode": "T.2.8.3.b", - "ruleContent": "Head Restraint Protection (if used) F.5.10", + "ruleContent": "Head Restraint Protection (if used) F.5.10", "parentRuleCode": "T.2.8.3", "pageNumber": "62" }, @@ -6758,7 +6758,7 @@ }, { "ruleCode": "T.2.8.5.b", - "ruleContent": "The contact point of the back of the driver’s helmet on the Head Restraint is no less than 50 mm from any edge of the Head Restraint. Approximately 100 mm of longitudinal adjustment should accommodate range of specified drivers. Several Head Restraints with different thicknesses may be used", + "ruleContent": "The contact point of the back of the driver’s helmet on the Head Restraint is no less than 50 mm from any edge of the Head Restraint. Approximately 100 mm of longitudinal adjustment should accommodate range of specified drivers. Several Head Restraints with different thicknesses may be used", "parentRuleCode": "T.2.8.5", "pageNumber": "62" }, @@ -6770,7 +6770,7 @@ }, { "ruleCode": "T.2.8.6.a", - "ruleContent": "Be an energy absorbing material that is one of the two: • Meets SFI Spec 45.2 • CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17", + "ruleContent": "Be an energy absorbing material that is one of the two: • Meets SFI Spec 45.2 • CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17", "parentRuleCode": "T.2.8.6", "pageNumber": "62" }, @@ -6782,7 +6782,7 @@ }, { "ruleCode": "T.2.8.6.c", - "ruleContent": "Have a minimum width of 15 cm Version 1.0 31 Aug 2024", + "ruleContent": "Have a minimum width of 15 cm Version 1.0 31 Aug 2024", "parentRuleCode": "T.2.8.6", "pageNumber": "62" }, @@ -6908,13 +6908,13 @@ }, { "ruleCode": "T.3.2.2", - "ruleContent": "The Brake Pedal and associated components design must withstand a minimum force of 2000 N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally", + "ruleContent": "The Brake Pedal and associated components design must withstand a minimum force of 2000 N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally", "parentRuleCode": "T.3.2", "pageNumber": "63" }, { "ruleCode": "T.3.2.3", - "ruleContent": "Failure of non-loadbearing components in the Brake System or pedal box must not interfere with Brake Pedal operation or Brake System function Version 1.0 31 Aug 2024", + "ruleContent": "Failure of non-loadbearing components in the Brake System or pedal box must not interfere with Brake Pedal operation or Brake System function Version 1.0 31 Aug 2024", "parentRuleCode": "T.3.2", "pageNumber": "63" }, @@ -6944,7 +6944,7 @@ }, { "ruleCode": "T.3.3.1", - "ruleContent": "The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the normal range will operate the switch", + "ruleContent": "The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the normal range will operate the switch", "parentRuleCode": "T.3.3", "pageNumber": "64" }, @@ -7040,7 +7040,7 @@ }, { "ruleCode": "T.4.1", - "ruleContent": "Applicability This section T.4 applies only for: • IC vehicles using Electronic Throttle Control (ETC) IC.4 • EV vehicles", + "ruleContent": "Applicability This section T.4 applies only for: • IC vehicles using Electronic Throttle Control (ETC) IC.4 • EV vehicles", "parentRuleCode": "T.4", "pageNumber": "64" }, @@ -7052,7 +7052,7 @@ }, { "ruleCode": "T.4.2.1", - "ruleContent": "The Accelerator Pedal must operate the APPS T.1.4.1", + "ruleContent": "The Accelerator Pedal must operate the APPS T.1.4.1", "parentRuleCode": "T.4.2", "pageNumber": "64" }, @@ -7064,25 +7064,25 @@ }, { "ruleCode": "T.4.2.1.b", - "ruleContent": "Each spring must be capable of returning the pedal to 0% Pedal Travel with the other disconnected. The springs in the APPS are not acceptable pedal return springs.", + "ruleContent": "Each spring must be capable of returning the pedal to 0% Pedal Travel with the other disconnected. The springs in the APPS are not acceptable pedal return springs.", "parentRuleCode": "T.4.2.1", "pageNumber": "64" }, { "ruleCode": "T.4.2.2", - "ruleContent": "Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS with two completely separate sensors in a single housing is acceptable. Version 1.0 31 Aug 2024", + "ruleContent": "Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS with two completely separate sensors in a single housing is acceptable. Version 1.0 31 Aug 2024", "parentRuleCode": "T.4.2", "pageNumber": "64" }, { "ruleCode": "T.4.2.3", - "ruleContent": "The APPS sensors must have different transfer functions which meet one of the two: • Each sensor has different gradients and/or offsets to the other(s). The circuit must have a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel • An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor configurations require prior approval. The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel", + "ruleContent": "The APPS sensors must have different transfer functions which meet one of the two: • Each sensor has different gradients and/or offsets to the other(s). The circuit must have a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel • An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor configurations require prior approval. The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel", "parentRuleCode": "T.4.2", "pageNumber": "65" }, { "ruleCode": "T.4.2.4", - "ruleContent": "Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel require justification in the ETC Systems Form and may not be approved", + "ruleContent": "Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel require justification in the ETC Systems Form and may not be approved", "parentRuleCode": "T.4.2", "pageNumber": "65" }, @@ -7154,7 +7154,7 @@ }, { "ruleCode": "T.4.3.1", - "ruleContent": "The vehicle must have a sensor or switch to measure brake pedal position or brake system pressure Version 1.0 31 Aug 2024", + "ruleContent": "The vehicle must have a sensor or switch to measure brake pedal position or brake system pressure Version 1.0 31 Aug 2024", "parentRuleCode": "T.4.3", "pageNumber": "65" }, @@ -7244,7 +7244,7 @@ }, { "ruleCode": "T.5.2.2.c", - "ruleContent": "Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: Version 1.0 31 Aug 2024", + "ruleContent": "Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: Version 1.0 31 Aug 2024", "parentRuleCode": "T.5.2.2", "pageNumber": "66" }, @@ -7268,7 +7268,7 @@ }, { "ruleCode": "T.5.2.5", - "ruleContent": "Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm)", + "ruleContent": "Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm)", "parentRuleCode": "T.5.2", "pageNumber": "67" }, @@ -7376,7 +7376,7 @@ }, { "ruleCode": "T.5.3.1", - "ruleContent": "The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. The motor casing may be the original motor casing, a team built motor casing or the original casing with additional material added to achieve the minimum required thickness. • Minimum thickness for aluminum alloy 6061-T6: 3.0 mm If lower grade aluminum alloy is used, then the material must be thicker to provide an equivalent strength. • Minimum thickness for steel: 2.0 mm", + "ruleContent": "The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. The motor casing may be the original motor casing, a team built motor casing or the original casing with additional material added to achieve the minimum required thickness. • Minimum thickness for aluminum alloy 6061-T6: 3.0 mm If lower grade aluminum alloy is used, then the material must be thicker to provide an equivalent strength. • Minimum thickness for steel: 2.0 mm", "parentRuleCode": "T.5.3", "pageNumber": "67" }, @@ -7388,7 +7388,7 @@ }, { "ruleCode": "T.5.3.3", - "ruleContent": "The Motor Scatter Shield must be: • Made from aluminum alloy 6061-T6 or steel • Minimum thickness: 1.0 mm Version 1.0 31 Aug 2024", + "ruleContent": "The Motor Scatter Shield must be: • Made from aluminum alloy 6061-T6 or steel • Minimum thickness: 1.0 mm Version 1.0 31 Aug 2024", "parentRuleCode": "T.5.3", "pageNumber": "67" }, @@ -7538,7 +7538,7 @@ }, { "ruleCode": "T.6.1.1", - "ruleContent": "Working Gas - The working gas must be non flammable Version 1.0 31 Aug 2024", + "ruleContent": "Working Gas - The working gas must be non flammable Version 1.0 31 Aug 2024", "parentRuleCode": "T.6.1", "pageNumber": "68" }, @@ -7652,7 +7652,7 @@ }, { "ruleCode": "T.7.1.2", - "ruleContent": "No power device may be used to move or remove air from under the vehicle. Power ground effects are strictly prohibited.", + "ruleContent": "No power device may be used to move or remove air from under the vehicle. Power ground effects are strictly prohibited.", "parentRuleCode": "T.7.1", "pageNumber": "69" }, @@ -7670,13 +7670,13 @@ }, { "ruleCode": "T.7.1.3.b", - "ruleContent": "The Aerodynamic Devices do not oscillate or move excessively when the vehicle is moving. Refer to IN.8.2", + "ruleContent": "The Aerodynamic Devices do not oscillate or move excessively when the vehicle is moving. Refer to IN.8.2", "parentRuleCode": "T.7.1.3", "pageNumber": "69" }, { "ruleCode": "T.7.1.4", - "ruleContent": "All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. Version 1.0 31 Aug 2024 This may be the radius of the edges themselves, or additional permanently attached pieces designed to meet this requirement.", + "ruleContent": "All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. Version 1.0 31 Aug 2024 This may be the radius of the edges themselves, or additional permanently attached pieces designed to meet this requirement.", "parentRuleCode": "T.7.1", "pageNumber": "69" }, @@ -7706,7 +7706,7 @@ }, { "ruleCode": "T.7.2.3", - "ruleContent": "Bodywork must not contain openings into the cockpit from the front of the vehicle back to the Main Hoop or Firewall. The cockpit opening and minimal openings around the front suspension components are allowed.", + "ruleContent": "Bodywork must not contain openings into the cockpit from the front of the vehicle back to the Main Hoop or Firewall. The cockpit opening and minimal openings around the front suspension components are allowed.", "parentRuleCode": "T.7.2", "pageNumber": "70" }, @@ -7790,7 +7790,7 @@ }, { "ruleCode": "T.7.6.2", - "ruleContent": "When between the centerlines of the front and rear wheel axles: Version 1.0 31 Aug 2024 Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height of the wheel centers", + "ruleContent": "When between the centerlines of the front and rear wheel axles: Version 1.0 31 Aug 2024 Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height of the wheel centers", "parentRuleCode": "T.7.6", "pageNumber": "70" }, @@ -7874,7 +7874,7 @@ }, { "ruleCode": "T.8.2.1.c", - "ruleContent": "AN/MS Specifications Version 1.0 31 Aug 2024", + "ruleContent": "AN/MS Specifications Version 1.0 31 Aug 2024", "parentRuleCode": "T.8.2.1", "pageNumber": "71" }, @@ -8012,7 +8012,7 @@ }, { "ruleCode": "T.9.1.3", - "ruleContent": "Normally Open A type of electrical relay or contactor that allows current flow only in the energized state Version 1.0 31 Aug 2024", + "ruleContent": "Normally Open A type of electrical relay or contactor that allows current flow only in the energized state Version 1.0 31 Aug 2024", "parentRuleCode": "T.9.1", "pageNumber": "72" }, @@ -8072,7 +8072,7 @@ }, { "ruleCode": "T.9.3", - "ruleContent": "Master Switches Each Master Switch ( IC.9.3 / EV.7.9 ) must meet:", + "ruleContent": "Master Switches Each Master Switch ( IC.9.3 / EV.7.9 ) must meet:", "parentRuleCode": "T.9", "pageNumber": "73" }, @@ -8180,7 +8180,7 @@ }, { "ruleCode": "T.9.4.2.c", - "ruleContent": "Removable to test functionality Version 1.0 31 Aug 2024", + "ruleContent": "Removable to test functionality Version 1.0 31 Aug 2024", "parentRuleCode": "T.9.4.2", "pageNumber": "73" }, @@ -8210,7 +8210,7 @@ }, { "ruleCode": "T.9.4.3.d", - "ruleContent": "May be reset by the driver from inside the driver's cell Version 1.0 31 Aug 2024", + "ruleContent": "May be reset by the driver from inside the driver's cell Version 1.0 31 Aug 2024", "parentRuleCode": "T.9.4.3", "pageNumber": "74" }, @@ -8251,19 +8251,19 @@ }, { "ruleCode": "VE.1.1.1.c", - "ruleContent": "Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive numbers)", + "ruleContent": "Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive numbers)", "parentRuleCode": "VE.1.1.1", "pageNumber": "75" }, { "ruleCode": "VE.1.1.1.d", - "ruleContent": "Stroke Width and Spacing between numbers: 18 mm minimum", + "ruleContent": "Stroke Width and Spacing between numbers: 18 mm minimum", "parentRuleCode": "VE.1.1.1", "pageNumber": "75" }, { "ruleCode": "VE.1.1.1.e", - "ruleContent": "Color: White numbers on a black background OR black numbers on a white background", + "ruleContent": "Color: White numbers on a black background OR black numbers on a white background", "parentRuleCode": "VE.1.1.1", "pageNumber": "75" }, @@ -8365,7 +8365,7 @@ }, { "ruleCode": "VE.2.1.1", - "ruleContent": "A Jacking Point must be provided at the rear of the vehicle Version 1.0 31 Aug 2024", + "ruleContent": "A Jacking Point must be provided at the rear of the vehicle Version 1.0 31 Aug 2024", "parentRuleCode": "VE.2.1", "pageNumber": "75" }, @@ -8389,7 +8389,7 @@ }, { "ruleCode": "VE.2.1.2.c", - "ruleContent": "Color: Orange", + "ruleContent": "Color: Orange", "parentRuleCode": "VE.2.1.2", "pageNumber": "76" }, @@ -8491,7 +8491,7 @@ }, { "ruleCode": "VE.2.3.3.b", - "ruleContent": "Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and Halon extinguishers and systems are prohibited.", + "ruleContent": "Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and Halon extinguishers and systems are prohibited.", "parentRuleCode": "VE.2.3.3", "pageNumber": "76" }, @@ -8515,7 +8515,7 @@ }, { "ruleCode": "VE.2.4", - "ruleContent": "Electrical Equipment (EV Only) These items must accompany the vehicle at all times: • Two pairs of High Voltage insulating gloves Version 1.0 31 Aug 2024 • A multimeter", + "ruleContent": "Electrical Equipment (EV Only) These items must accompany the vehicle at all times: • Two pairs of High Voltage insulating gloves Version 1.0 31 Aug 2024 • A multimeter", "parentRuleCode": "VE.2", "pageNumber": "76" }, @@ -8647,7 +8647,7 @@ }, { "ruleCode": "VE.3.2.2", - "ruleContent": "Acceptable helmet standards are listed below. Any additional approved standards are shown on the Technical Inspection Form or the FAQ on the FSAE Online website", + "ruleContent": "Acceptable helmet standards are listed below. Any additional approved standards are shown on the Technical Inspection Form or the FAQ on the FSAE Online website", "parentRuleCode": "VE.3.2", "pageNumber": "77" }, @@ -8665,7 +8665,7 @@ }, { "ruleCode": "VE.3.2.2.c", - "ruleContent": "FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) Version 1.0 31 Aug 2024", + "ruleContent": "FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) Version 1.0 31 Aug 2024", "parentRuleCode": "VE.3.2.2", "pageNumber": "77" }, @@ -8677,7 +8677,7 @@ }, { "ruleCode": "VE.3.3.1", - "ruleContent": "Driver Suit A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers the body from the neck to the ankles and the wrists. Each suit must meet one or more of these standards and be labeled as such: • SFI 3.2A/5 (or higher ex: /10, /15, /20) • SFI 3.4/5 (or higher ex: /10, /15, /20) • FIA Standard 1986 • FIA Standard 8856-2000 • FIA Standard 8856-2018", + "ruleContent": "Driver Suit A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers the body from the neck to the ankles and the wrists. Each suit must meet one or more of these standards and be labeled as such: • SFI 3.2A/5 (or higher ex: /10, /15, /20) • SFI 3.4/5 (or higher ex: /10, /15, /20) • FIA Standard 1986 • FIA Standard 8856-2000 • FIA Standard 8856-2018", "parentRuleCode": "VE.3.3", "pageNumber": "78" }, @@ -8725,7 +8725,7 @@ }, { "ruleCode": "VE.3.3.7.b", - "ruleContent": "Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec 3.3 and labeled as such meet this requirement. Version 1.0 31 Aug 2024", + "ruleContent": "Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec 3.3 and labeled as such meet this requirement. Version 1.0 31 Aug 2024", "parentRuleCode": "VE.3.3.7", "pageNumber": "78" }, @@ -8874,7 +8874,7 @@ }, { "ruleCode": "IC.2.4.2.a", - "ruleContent": "For naturally aspirated engines, the sequence must be: throttle body, restrictor, and engine. Version 1.0 31 Aug 2024", + "ruleContent": "For naturally aspirated engines, the sequence must be: throttle body, restrictor, and engine. Version 1.0 31 Aug 2024", "parentRuleCode": "IC.2.4.2", "pageNumber": "79" }, @@ -8892,13 +8892,13 @@ }, { "ruleCode": "IC.2.4.3.a", - "ruleContent": "Gasoline fueled vehicles 20.0 mm", + "ruleContent": "Gasoline fueled vehicles 20.0 mm", "parentRuleCode": "IC.2.4.3", "pageNumber": "80" }, { "ruleCode": "IC.2.4.3.b", - "ruleContent": "E85 fueled vehicles 19.0 mm", + "ruleContent": "E85 fueled vehicles 19.0 mm", "parentRuleCode": "IC.2.4.3", "pageNumber": "80" }, @@ -8964,7 +8964,7 @@ }, { "ruleCode": "IC.2.5.3", - "ruleContent": "Plenums must not be located anywhere upstream of the throttle body For the purpose of definition, a plenum is any tank or volume that is a significant enlargement of the normal intake runner system. Teams may submit their designs via a Rules Question for review prior to competition if the legality of their proposed system is in doubt.", + "ruleContent": "Plenums must not be located anywhere upstream of the throttle body For the purpose of definition, a plenum is any tank or volume that is a significant enlargement of the normal intake runner system. Teams may submit their designs via a Rules Question for review prior to competition if the legality of their proposed system is in doubt.", "parentRuleCode": "IC.2.5", "pageNumber": "80" }, @@ -9006,7 +9006,7 @@ }, { "ruleCode": "IC.3.1.1.b", - "ruleContent": "Boosted applications must not use carburetors. Version 1.0 31 Aug 2024", + "ruleContent": "Boosted applications must not use carburetors. Version 1.0 31 Aug 2024", "parentRuleCode": "IC.3.1.1", "pageNumber": "80" }, @@ -9018,13 +9018,13 @@ }, { "ruleCode": "IC.3.2.a", - "ruleContent": "Mechanically by a cable or rod system IC.3.3", + "ruleContent": "Mechanically by a cable or rod system IC.3.3", "parentRuleCode": "IC.3.2", "pageNumber": "81" }, { "ruleCode": "IC.3.2.b", - "ruleContent": "By Electronic Throttle Control IC.4", + "ruleContent": "By Electronic Throttle Control IC.4", "parentRuleCode": "IC.3.2", "pageNumber": "81" }, @@ -9078,7 +9078,7 @@ }, { "ruleCode": "IC.4", - "ruleContent": "ELECTRONIC THROTTLE CONTROL This section IC.4 applies only when Electronic Throttle Control is used An Electronic Throttle Control (ETC) system may be used. This is a device or system which may change the engine throttle setting based on various inputs.", + "ruleContent": "ELECTRONIC THROTTLE CONTROL This section IC.4 applies only when Electronic Throttle Control is used An Electronic Throttle Control (ETC) system may be used. This is a device or system which may change the engine throttle setting based on various inputs.", "parentRuleCode": "IC", "pageNumber": "81" }, @@ -9120,7 +9120,7 @@ }, { "ruleCode": "IC.4.1.3", - "ruleContent": "The ETC system may blip the throttle during downshifts when proven that unintended acceleration can be prevented. Document the functional analysis in the ETC Systems Form", + "ruleContent": "The ETC system may blip the throttle during downshifts when proven that unintended acceleration can be prevented. Document the functional analysis in the ETC Systems Form", "parentRuleCode": "IC.4.1", "pageNumber": "81" }, @@ -9138,7 +9138,7 @@ }, { "ruleCode": "IC.4.2.2", - "ruleContent": "To obtain approval, submit a Rules Question which includes: • Which ETC system the team is seeking approval to use. • The specific ETC rule(s) that the commercial system deviates from. • Sufficient technical details of these deviations to determine the acceptability of the commercial system. Version 1.0 31 Aug 2024", + "ruleContent": "To obtain approval, submit a Rules Question which includes: • Which ETC system the team is seeking approval to use. • The specific ETC rule(s) that the commercial system deviates from. • Sufficient technical details of these deviations to determine the acceptability of the commercial system. Version 1.0 31 Aug 2024", "parentRuleCode": "IC.4.2", "pageNumber": "81" }, @@ -9192,7 +9192,7 @@ }, { "ruleCode": "IC.4.4.3", - "ruleContent": "Implausibility is defined as a deviation of more than 10% throttle position between the sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be considered on a case by case basis and require justification in the ETC Systems Form", + "ruleContent": "Implausibility is defined as a deviation of more than 10% throttle position between the sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be considered on a case by case basis and require justification in the ETC Systems Form", "parentRuleCode": "IC.4.4", "pageNumber": "82" }, @@ -9252,7 +9252,7 @@ }, { "ruleCode": "IC.4.4.9.b", - "ruleContent": "The failures to be considered must include but are not limited to the failure of the TPS, TPS signals being out of range, corruption of the message and loss of messages and the associated time outs. Version 1.0 31 Aug 2024", + "ruleContent": "The failures to be considered must include but are not limited to the failure of the TPS, TPS signals being out of range, corruption of the message and loss of messages and the associated time outs. Version 1.0 31 Aug 2024", "parentRuleCode": "IC.4.4.9", "pageNumber": "82" }, @@ -9288,13 +9288,13 @@ }, { "ruleCode": "IC.4.7.1.b", - "ruleContent": "An interval of one second is allowed for the throttle to close (return to idle). Failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system.", + "ruleContent": "An interval of one second is allowed for the throttle to close (return to idle). Failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system.", "parentRuleCode": "IC.4.7.1", "pageNumber": "83" }, { "ruleCode": "IC.4.7.1.c", - "ruleContent": "The permitted relationship between BSE and TPS may be defined by the team using a table. This functionality must be demonstrated at Technical Inspection.", + "ruleContent": "The permitted relationship between BSE and TPS may be defined by the team using a table. This functionality must be demonstrated at Technical Inspection.", "parentRuleCode": "IC.4.7.1", "pageNumber": "83" }, @@ -9336,7 +9336,7 @@ }, { "ruleCode": "IC.4.8.1", - "ruleContent": "A standalone nonprogrammable circuit must be used to monitor the electronic throttle control. The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7", + "ruleContent": "A standalone nonprogrammable circuit must be used to monitor the electronic throttle control. The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7", "parentRuleCode": "IC.4.8", "pageNumber": "83" }, @@ -9354,7 +9354,7 @@ }, { "ruleCode": "IC.4.8.3.a", - "ruleContent": "The two of these for more than one second: • Demand for Hard Braking IC.4.6 • Throttle more than 10% open IC.4.4", + "ruleContent": "The two of these for more than one second: • Demand for Hard Braking IC.4.6 • Throttle more than 10% open IC.4.4", "parentRuleCode": "IC.4.8.3", "pageNumber": "83" }, @@ -9366,7 +9366,7 @@ }, { "ruleCode": "IC.4.8.3.c", - "ruleContent": "Loss of signal from the throttle sensor(s) for more than 100 msec Version 1.0 31 Aug 2024", + "ruleContent": "Loss of signal from the throttle sensor(s) for more than 100 msec Version 1.0 31 Aug 2024", "parentRuleCode": "IC.4.8.3", "pageNumber": "83" }, @@ -9432,7 +9432,7 @@ }, { "ruleCode": "IC.5.1.2", - "ruleContent": "Fuels provided are expected to be Gasoline and E85. Consult the individual competition websites for fuel specifics and other information.", + "ruleContent": "Fuels provided are expected to be Gasoline and E85. Consult the individual competition websites for fuel specifics and other information.", "parentRuleCode": "IC.5.1", "pageNumber": "84" }, @@ -9498,7 +9498,7 @@ }, { "ruleCode": "IC.5.3.1.a", - "ruleContent": "Be securely attached to the vehicle structure. The mounting method must not allow chassis flex to load the Fuel Tank.", + "ruleContent": "Be securely attached to the vehicle structure. The mounting method must not allow chassis flex to load the Fuel Tank.", "parentRuleCode": "IC.5.3.1", "pageNumber": "84" }, @@ -9528,7 +9528,7 @@ }, { "ruleCode": "IC.5.3.3", - "ruleContent": "Any size Fuel Tank may be used Version 1.0 31 Aug 2024", + "ruleContent": "Any size Fuel Tank may be used Version 1.0 31 Aug 2024", "parentRuleCode": "IC.5.3", "pageNumber": "84" }, @@ -9594,7 +9594,7 @@ }, { "ruleCode": "IC.5.4.3.b", - "ruleContent": "Inside diameter: 6 mm minimum", + "ruleContent": "Inside diameter: 6 mm minimum", "parentRuleCode": "IC.5.4.3", "pageNumber": "85" }, @@ -9630,7 +9630,7 @@ }, { "ruleCode": "IC.5.4.8", - "ruleContent": "The filler neck must have a fuel cap that can withstand severe vibrations or high pressures such as could occur during a vehicle rollover event Version 1.0 31 Aug 2024", + "ruleContent": "The filler neck must have a fuel cap that can withstand severe vibrations or high pressures such as could occur during a vehicle rollover event Version 1.0 31 Aug 2024", "parentRuleCode": "IC.5.4", "pageNumber": "85" }, @@ -9738,7 +9738,7 @@ }, { "ruleCode": "IC.6.1", - "ruleContent": "Low Pressure Injection (LPI) Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most Port Fuel Injected (PFI) fuel systems are low pressure.", + "ruleContent": "Low Pressure Injection (LPI) Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most Port Fuel Injected (PFI) fuel systems are low pressure.", "parentRuleCode": "IC.6", "pageNumber": "86" }, @@ -9774,7 +9774,7 @@ }, { "ruleCode": "IC.6.1.2.d", - "ruleContent": "Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 Version 1.0 31 Aug 2024", + "ruleContent": "Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 Version 1.0 31 Aug 2024", "parentRuleCode": "IC.6.1.2", "pageNumber": "86" }, @@ -9822,7 +9822,7 @@ }, { "ruleCode": "IC.6.2.2.a", - "ruleContent": "Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel reinforcement and visible Nomex tracer yarn. Equivalent products may be used with prior approval.", + "ruleContent": "Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel reinforcement and visible Nomex tracer yarn. Equivalent products may be used with prior approval.", "parentRuleCode": "IC.6.2.2", "pageNumber": "87" }, @@ -9852,7 +9852,7 @@ }, { "ruleCode": "IC.6.2.4.a", - "ruleContent": "The fuel rail must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement.", + "ruleContent": "The fuel rail must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement.", "parentRuleCode": "IC.6.2.4", "pageNumber": "87" }, @@ -9864,7 +9864,7 @@ }, { "ruleCode": "IC.6.2.4.c", - "ruleContent": "Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2", + "ruleContent": "Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2", "parentRuleCode": "IC.6.2.4", "pageNumber": "87" }, @@ -9876,7 +9876,7 @@ }, { "ruleCode": "IC.6.2.6", - "ruleContent": "Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the fuel system in parallel with the DI boost pump. The external regulator must be used even if the DI boost pump comes equipped with an internal regulator.", + "ruleContent": "Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the fuel system in parallel with the DI boost pump. The external regulator must be used even if the DI boost pump comes equipped with an internal regulator.", "parentRuleCode": "IC.6.2", "pageNumber": "87" }, @@ -9906,7 +9906,7 @@ }, { "ruleCode": "IC.7.1.1.b", - "ruleContent": "Thermally sensitive components, including brake lines, composite materials, and batteries Version 1.0 31 Aug 2024", + "ruleContent": "Thermally sensitive components, including brake lines, composite materials, and batteries Version 1.0 31 Aug 2024", "parentRuleCode": "IC.7.1.1", "pageNumber": "87" }, @@ -9990,7 +9990,7 @@ }, { "ruleCode": "IC.7.5.1", - "ruleContent": "The vehicle must stay below the permitted sound level at all times IN.10.5", + "ruleContent": "The vehicle must stay below the permitted sound level at all times IN.10.5", "parentRuleCode": "IC.7.5", "pageNumber": "88" }, @@ -10056,31 +10056,31 @@ }, { "ruleCode": "IC.9.1.1.a", - "ruleContent": "Primary Master Switch IC.9.3", + "ruleContent": "Primary Master Switch IC.9.3", "parentRuleCode": "IC.9.1.1", "pageNumber": "88" }, { "ruleCode": "IC.9.1.1.b", - "ruleContent": "Cockpit Main Switch IC.9.4 Version 1.0 31 Aug 2024", + "ruleContent": "Cockpit Main Switch IC.9.4 Version 1.0 31 Aug 2024", "parentRuleCode": "IC.9.1.1", "pageNumber": "88" }, { "ruleCode": "IC.9.1.1.c", - "ruleContent": "(ETC Only) Brake System Plausibility Device (BSPD) IC.4.8", + "ruleContent": "(ETC Only) Brake System Plausibility Device (BSPD) IC.4.8", "parentRuleCode": "IC.9.1.1", "pageNumber": "88" }, { "ruleCode": "IC.9.1.1.d", - "ruleContent": "Brake Overtravel Switch (BOTS) T.3.3", + "ruleContent": "Brake Overtravel Switch (BOTS) T.3.3", "parentRuleCode": "IC.9.1.1", "pageNumber": "88" }, { "ruleCode": "IC.9.1.1.e", - "ruleContent": "Inertia Switch (if used) T.9.4", + "ruleContent": "Inertia Switch (if used) T.9.4", "parentRuleCode": "IC.9.1.1", "pageNumber": "88" }, @@ -10092,7 +10092,7 @@ }, { "ruleCode": "IC.9.1.3", - "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near the Primary Master Switch and the Cockpit Main Switch.", + "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near the Primary Master Switch and the Cockpit Main Switch.", "parentRuleCode": "IC.9.1", "pageNumber": "89" }, @@ -10122,7 +10122,7 @@ }, { "ruleCode": "IC.9.2.2.b", - "ruleContent": "Disconnect power to the: • Fuel Pump(s) • Ignition • (ETC only) Electronic Throttle IC.4.1.1", + "ruleContent": "Disconnect power to the: • Fuel Pump(s) • Ignition • (ETC only) Electronic Throttle IC.4.1.1", "parentRuleCode": "IC.9.2.2", "pageNumber": "89" }, @@ -10206,7 +10206,7 @@ }, { "ruleCode": "IC.9.4.3", - "ruleContent": "Function - the Cockpit Main Switch may act through a relay Version 1.0 31 Aug 2024", + "ruleContent": "Function - the Cockpit Main Switch may act through a relay Version 1.0 31 Aug 2024", "parentRuleCode": "IC.9.4", "pageNumber": "89" }, @@ -10337,7 +10337,7 @@ }, { "ruleCode": "EV.3.2.5", - "ruleContent": "Power and Voltage limits will be checked by the Energy Meter data Energy is calculated as the time integrated value of the measured voltage multiplied by the measured current logged by the Energy Meter. Version 1.0 31 Aug 2024", + "ruleContent": "Power and Voltage limits will be checked by the Energy Meter data Energy is calculated as the time integrated value of the measured voltage multiplied by the measured current logged by the Energy Meter. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.3.2", "pageNumber": "90" }, @@ -10379,13 +10379,13 @@ }, { "ruleCode": "EV.3.4.1.a", - "ruleContent": "Use of more than the specified maximum power EV.3.3.1", + "ruleContent": "Use of more than the specified maximum power EV.3.3.1", "parentRuleCode": "EV.3.4.1", "pageNumber": "91" }, { "ruleCode": "EV.3.4.1.b", - "ruleContent": "Exceed the maximum voltage EV.3.3.2 for one or the two conditions: • Continuously for 100 ms or more • After a moving average over 500 ms is applied", + "ruleContent": "Exceed the maximum voltage EV.3.3.2 for one or the two conditions: • Continuously for 100 ms or more • After a moving average over 500 ms is applied", "parentRuleCode": "EV.3.4.1", "pageNumber": "91" }, @@ -10427,7 +10427,7 @@ }, { "ruleCode": "EV.3.5.2", - "ruleContent": "Violations during the Endurance event: • Each Violation: 60 second penalty D.14.2.1", + "ruleContent": "Violations during the Endurance event: • Each Violation: 60 second penalty D.14.2.1", "parentRuleCode": "EV.3.5", "pageNumber": "91" }, @@ -10457,7 +10457,7 @@ }, { "ruleCode": "EV.4.1.1", - "ruleContent": "Only electrical motors are allowed. The number of motors is not limited.", + "ruleContent": "Only electrical motors are allowed. The number of motors is not limited.", "parentRuleCode": "EV.4.1", "pageNumber": "91" }, @@ -10487,13 +10487,13 @@ }, { "ruleCode": "F.11.1.3", - "ruleContent": "to the extent possible Version 1.0 31 Aug 2024", + "ruleContent": "to the extent possible Version 1.0 31 Aug 2024", "parentRuleCode": "F.11.1", "pageNumber": "91" }, { "ruleCode": "EV.4.2", - "ruleContent": "Motor Controller The Tractive System Motor(s) must be connected to the Accumulator through a Motor Controller. No direct connections between Motor(s) and Accumulator.", + "ruleContent": "Motor Controller The Tractive System Motor(s) must be connected to the Accumulator through a Motor Controller. No direct connections between Motor(s) and Accumulator.", "parentRuleCode": "EV.4", "pageNumber": "92" }, @@ -10577,7 +10577,7 @@ }, { "ruleCode": "EV.4.3.8.b", - "ruleContent": "Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background) with: • Triangle side length of 100 mm minimum • Visibility from all angles, including when the lid is removed", + "ruleContent": "Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background) with: • Triangle side length of 100 mm minimum • Visibility from all angles, including when the lid is removed", "parentRuleCode": "EV.4.3.8", "pageNumber": "92" }, @@ -10637,7 +10637,7 @@ }, { "ruleCode": "EV.4.4.3.b", - "ruleContent": "Next to the TSMP EV.5.8", + "ruleContent": "Next to the TSMP EV.5.8", "parentRuleCode": "EV.4.4.3", "pageNumber": "92" }, @@ -10649,13 +10649,13 @@ }, { "ruleCode": "EV.4.4.3.d", - "ruleContent": "Color: Black", + "ruleContent": "Color: Black", "parentRuleCode": "EV.4.4.3", "pageNumber": "92" }, { "ruleCode": "EV.4.4.3.e", - "ruleContent": "Marked “GND” Version 1.0 31 Aug 2024", + "ruleContent": "Marked “GND” Version 1.0 31 Aug 2024", "parentRuleCode": "EV.4.4.3", "pageNumber": "92" }, @@ -10685,7 +10685,7 @@ }, { "ruleCode": "EV.4.7.1", - "ruleContent": "Must monitor for the two conditions: • The mechanical brakes are engaged EV.4.6, T.3.2.4 • The APPS signals more than 25% Pedal Travel EV.4.5", + "ruleContent": "Must monitor for the two conditions: • The mechanical brakes are engaged EV.4.6, T.3.2.4 • The APPS signals more than 25% Pedal Travel EV.4.5", "parentRuleCode": "EV.4.7", "pageNumber": "93" }, @@ -10727,7 +10727,7 @@ }, { "ruleCode": "EV.4.9.1.a", - "ruleContent": "Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background)", + "ruleContent": "Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background)", "parentRuleCode": "EV.4.9.1", "pageNumber": "93" }, @@ -10757,7 +10757,7 @@ }, { "ruleCode": "EV.4.10.2", - "ruleContent": "The Hand Cart must be used when the Accumulator Container(s) are transported on the competition site EV.11.4.2 EV.11.5.1", + "ruleContent": "The Hand Cart must be used when the Accumulator Container(s) are transported on the competition site EV.11.4.2 EV.11.5.1", "parentRuleCode": "EV.4.10", "pageNumber": "93" }, @@ -10787,7 +10787,7 @@ }, { "ruleCode": "EV.4.10.4", - "ruleContent": "Accumulator Container(s) must be securely attached to the Hand Cart Version 1.0 31 Aug 2024", + "ruleContent": "Accumulator Container(s) must be securely attached to the Hand Cart Version 1.0 31 Aug 2024", "parentRuleCode": "EV.4.10", "pageNumber": "93" }, @@ -10817,7 +10817,7 @@ }, { "ruleCode": "EV.5.1.3", - "ruleContent": "No further energy storage except for reasonably sized intermediate circuit capacitors are allowed after the Energy Meter EV.3.1", + "ruleContent": "No further energy storage except for reasonably sized intermediate circuit capacitors are allowed after the Energy Meter EV.3.1", "parentRuleCode": "EV.5.1", "pageNumber": "94" }, @@ -10883,7 +10883,7 @@ }, { "ruleCode": "EV.5.2.4", - "ruleContent": "Soldering electrical connections in the high current path is prohibited Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are not part of the high current path. Version 1.0 31 Aug 2024", + "ruleContent": "Soldering electrical connections in the high current path is prohibited Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are not part of the high current path. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.5.2", "pageNumber": "94" }, @@ -10925,7 +10925,7 @@ }, { "ruleCode": "EV.5.3.2.a", - "ruleContent": "Require the physical removal or separation of a component. Contactors or switches are not acceptable Maintenance Plugs", + "ruleContent": "Require the physical removal or separation of a component. Contactors or switches are not acceptable Maintenance Plugs", "parentRuleCode": "EV.5.3.2", "pageNumber": "95" }, @@ -10961,7 +10961,7 @@ }, { "ruleCode": "EV.5.3.3", - "ruleContent": "When the Accumulator Containers are opened or Segments are removed, the Accumulator Segments must be separated by using the Maintenance Plugs. See EV.11.4.1", + "ruleContent": "When the Accumulator Containers are opened or Segments are removed, the Accumulator Segments must be separated by using the Maintenance Plugs. See EV.11.4.1", "parentRuleCode": "EV.5.3", "pageNumber": "95" }, @@ -11009,13 +11009,13 @@ }, { "ruleCode": "EV.5.4.5", - "ruleContent": "A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit Opens EV.7.2.2", + "ruleContent": "A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit Opens EV.7.2.2", "parentRuleCode": "EV.5.4", "pageNumber": "95" }, { "ruleCode": "EV.5.5", - "ruleContent": "Manual Service Disconnect - MSD A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two poles of the Accumulator EV.11.3.2", + "ruleContent": "Manual Service Disconnect - MSD A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two poles of the Accumulator EV.11.3.2", "parentRuleCode": "EV.5", "pageNumber": "95" }, @@ -11051,13 +11051,13 @@ }, { "ruleCode": "EV.5.5.1.e", - "ruleContent": "Operable without removing any bodywork or obstruction or using tools Version 1.0 31 Aug 2024", + "ruleContent": "Operable without removing any bodywork or obstruction or using tools Version 1.0 31 Aug 2024", "parentRuleCode": "EV.5.5.1", "pageNumber": "95" }, { "ruleCode": "EV.5.5.1.f", - "ruleContent": "Directly operated. Remote operation through a long handle, rope or wire is not acceptable.", + "ruleContent": "Directly operated. Remote operation through a long handle, rope or wire is not acceptable.", "parentRuleCode": "EV.5.5.1", "pageNumber": "95" }, @@ -11093,7 +11093,7 @@ }, { "ruleCode": "EV.5.6.1", - "ruleContent": "The Accumulator must contain a Precharge Circuit. The Precharge Circuit must:", + "ruleContent": "The Accumulator must contain a Precharge Circuit. The Precharge Circuit must:", "parentRuleCode": "EV.5.6", "pageNumber": "96" }, @@ -11105,7 +11105,7 @@ }, { "ruleCode": "EV.5.6.1.b", - "ruleContent": "Be supplied from the Shutdown Circuit EV.7.1", + "ruleContent": "Be supplied from the Shutdown Circuit EV.7.1", "parentRuleCode": "EV.5.6.1", "pageNumber": "96" }, @@ -11231,7 +11231,7 @@ }, { "ruleCode": "EV.5.8.1.c", - "ruleContent": "Protected by a nonconductive housing that can be opened without tools Version 1.0 31 Aug 2024", + "ruleContent": "Protected by a nonconductive housing that can be opened without tools Version 1.0 31 Aug 2024", "parentRuleCode": "EV.5.8.1", "pageNumber": "96" }, @@ -11273,7 +11273,7 @@ }, { "ruleCode": "EV.5.8.3.b", - "ruleContent": "Color: Red", + "ruleContent": "Color: Red", "parentRuleCode": "EV.5.8.3", "pageNumber": "97" }, @@ -11291,7 +11291,7 @@ }, { "ruleCode": "EV.5.8.4.a", - "ruleContent": "The resistor must be sized for the voltage: Maximum TS Voltage (Vmax) Resistor Value Vmax <= 200 V DC 5 kOhm 200 V DC < Vmax <= 400 V DC 10 kOhm 400 V DC < Vmax <= 600 V DC 15 kOhm", + "ruleContent": "The resistor must be sized for the voltage: Maximum TS Voltage (Vmax) Resistor Value Vmax <= 200 V DC 5 kOhm 200 V DC < Vmax <= 400 V DC 10 kOhm 400 V DC < Vmax <= 600 V DC 15 kOhm", "parentRuleCode": "EV.5.8.4", "pageNumber": "97" }, @@ -11357,7 +11357,7 @@ }, { "ruleCode": "EV.5.10.2.b", - "ruleContent": "Color: Amber", + "ruleContent": "Color: Amber", "parentRuleCode": "EV.5.10.2", "pageNumber": "97" }, @@ -11381,7 +11381,7 @@ }, { "ruleCode": "EV.5.10.3.b", - "ruleContent": "Be inside the Rollover Protection Envelope F.1.13", + "ruleContent": "Be inside the Rollover Protection Envelope F.1.13", "parentRuleCode": "EV.5.10.3", "pageNumber": "97" }, @@ -11399,7 +11399,7 @@ }, { "ruleCode": "EV.5.10.3.e", - "ruleContent": "Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm horizontal radius from the light Visibility is checked with Bodywork and Aerodynamic Devices in place Version 1.0 31 Aug 2024", + "ruleContent": "Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm horizontal radius from the light Visibility is checked with Bodywork and Aerodynamic Devices in place Version 1.0 31 Aug 2024", "parentRuleCode": "EV.5.10.3", "pageNumber": "97" }, @@ -11417,7 +11417,7 @@ }, { "ruleCode": "EV.5.10.4.b", - "ruleContent": "Be directly controlled by the voltage present in the Tractive System using hard wired electronics. EV.6.5.4 Software control is not permitted.", + "ruleContent": "Be directly controlled by the voltage present in the Tractive System using hard wired electronics. EV.6.5.4 Software control is not permitted.", "parentRuleCode": "EV.5.10.4", "pageNumber": "98" }, @@ -11495,7 +11495,7 @@ }, { "ruleCode": "EV.5.11.4.c", - "ruleContent": "Be inside the Rollover Protection Envelope F.1.13", + "ruleContent": "Be inside the Rollover Protection Envelope F.1.13", "parentRuleCode": "EV.5.11.4", "pageNumber": "98" }, @@ -11519,13 +11519,13 @@ }, { "ruleCode": "EV.5.11.5", - "ruleContent": "The Tractive System Status Indicator must show when the GLV System is energized: Condition Green Light Red Light", + "ruleContent": "The Tractive System Status Indicator must show when the GLV System is energized: Condition Green Light Red Light", "parentRuleCode": "EV.5.11", "pageNumber": "98" }, { "ruleCode": "EV.5.11.5.a", - "ruleContent": "No Faults Always ON OFF", + "ruleContent": "No Faults Always ON OFF", "parentRuleCode": "EV.5.11.5", "pageNumber": "98" }, @@ -11561,7 +11561,7 @@ }, { "ruleCode": "EV.6.1.3", - "ruleContent": "Tractive System components and Accumulator Containers must be protected from moisture, rain or puddles. A rating of IP65 is recommended Version 1.0 31 Aug 2024", + "ruleContent": "Tractive System components and Accumulator Containers must be protected from moisture, rain or puddles. A rating of IP65 is recommended Version 1.0 31 Aug 2024", "parentRuleCode": "EV.6.1", "pageNumber": "98" }, @@ -11723,7 +11723,7 @@ }, { "ruleCode": "EV.6.4.3", - "ruleContent": "Bolted electrical connections in the high current path of the Tractive System must include a positive locking feature to prevent unintentional loosening Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. Bolts with nylon patches are allowed for blind connections into OEM components. Version 1.0 31 Aug 2024", + "ruleContent": "Bolted electrical connections in the high current path of the Tractive System must include a positive locking feature to prevent unintentional loosening Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. Bolts with nylon patches are allowed for blind connections into OEM components. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.6.4", "pageNumber": "99" }, @@ -11795,7 +11795,7 @@ }, { "ruleCode": "EV.6.5.5.b", - "ruleContent": "Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: U < 100 V DC 10 mm 100 V DC < U < 200 V DC 20 mm U > 200 V DC 30 mm", + "ruleContent": "Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: U < 100 V DC 10 mm 100 V DC < U < 200 V DC 20 mm U > 200 V DC 30 mm", "parentRuleCode": "EV.6.5.5", "pageNumber": "100" }, @@ -11819,7 +11819,7 @@ }, { "ruleCode": "EV.6.5.7.b", - "ruleContent": "Required spacing related to the spacing between traces / board areas are as follows: Voltage Over Surface Thru Air (cut in board) Under Conformal Coating 0-50 V DC 1.6 mm 1.6 mm 1 mm 50-150 V DC 6.4 mm 3.2 mm 2 mm 150-300 V DC 9.5 mm 6.4 mm 3 mm 300-600 V DC 12.7 mm 9.5 mm 4 mm", + "ruleContent": "Required spacing related to the spacing between traces / board areas are as follows: Voltage Over Surface Thru Air (cut in board) Under Conformal Coating 0-50 V DC 1.6 mm 1.6 mm 1 mm 50-150 V DC 6.4 mm 3.2 mm 2 mm 150-300 V DC 9.5 mm 6.4 mm 3 mm 300-600 V DC 12.7 mm 9.5 mm 4 mm", "parentRuleCode": "EV.6.5.7", "pageNumber": "100" }, @@ -11831,7 +11831,7 @@ }, { "ruleCode": "EV.6.5.9", - "ruleContent": "All connections to external devices such as laptops from a Tractive System component must include galvanic isolation Version 1.0 31 Aug 2024", + "ruleContent": "All connections to external devices such as laptops from a Tractive System component must include galvanic isolation Version 1.0 31 Aug 2024", "parentRuleCode": "EV.6.5", "pageNumber": "100" }, @@ -11957,19 +11957,19 @@ }, { "ruleCode": "EV.6.7.2", - "ruleContent": "Grounded parts of the vehicle must have a resistance to GLV System Ground less than the values specified below. Version 1.0 31 Aug 2024", + "ruleContent": "Grounded parts of the vehicle must have a resistance to GLV System Ground less than the values specified below. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.6.7", "pageNumber": "101" }, { "ruleCode": "EV.6.7.2.a", - "ruleContent": "Electrically conductive parts 300 mOhms (measured with a current of 1 A) Examples: parts made of steel, (anodized) aluminum, any other metal parts", + "ruleContent": "Electrically conductive parts 300 mOhms (measured with a current of 1 A) Examples: parts made of steel, (anodized) aluminum, any other metal parts", "parentRuleCode": "EV.6.7.2", "pageNumber": "101" }, { "ruleCode": "EV.6.7.2.b", - "ruleContent": "Parts which may become electrically conductive 5 Ohm Example: carbon fiber parts Carbon fiber parts may need special measures such as using copper mesh or similar to keep the ground resistance below 5 Ohms.", + "ruleContent": "Parts which may become electrically conductive 5 Ohm Example: carbon fiber parts Carbon fiber parts may need special measures such as using copper mesh or similar to keep the ground resistance below 5 Ohms.", "parentRuleCode": "EV.6.7.2", "pageNumber": "101" }, @@ -11999,49 +11999,49 @@ }, { "ruleCode": "EV.7.1.1.a", - "ruleContent": "Battery Management System (BMS) EV.7.3", + "ruleContent": "Battery Management System (BMS) EV.7.3", "parentRuleCode": "EV.7.1.1", "pageNumber": "102" }, { "ruleCode": "EV.7.1.1.b", - "ruleContent": "Insulation Monitoring Device (IMD) EV.7.6", + "ruleContent": "Insulation Monitoring Device (IMD) EV.7.6", "parentRuleCode": "EV.7.1.1", "pageNumber": "102" }, { "ruleCode": "EV.7.1.1.c", - "ruleContent": "Brake System Plausibility Device (BSPD) EV.7.7", + "ruleContent": "Brake System Plausibility Device (BSPD) EV.7.7", "parentRuleCode": "EV.7.1.1", "pageNumber": "102" }, { "ruleCode": "EV.7.1.1.d", - "ruleContent": "Interlocks (as required) EV.7.8", + "ruleContent": "Interlocks (as required) EV.7.8", "parentRuleCode": "EV.7.1.1", "pageNumber": "102" }, { "ruleCode": "EV.7.1.1.e", - "ruleContent": "Master Switches (GLVMS, TSMS) EV.7.9", + "ruleContent": "Master Switches (GLVMS, TSMS) EV.7.9", "parentRuleCode": "EV.7.1.1", "pageNumber": "102" }, { "ruleCode": "EV.7.1.1.f", - "ruleContent": "Shutdown Buttons EV.7.10", + "ruleContent": "Shutdown Buttons EV.7.10", "parentRuleCode": "EV.7.1.1", "pageNumber": "102" }, { "ruleCode": "EV.7.1.1.g", - "ruleContent": "Brake Over Travel Switch (BOTS) T.3.3", + "ruleContent": "Brake Over Travel Switch (BOTS) T.3.3", "parentRuleCode": "EV.7.1.1", "pageNumber": "102" }, { "ruleCode": "EV.7.1.1.h", - "ruleContent": "Inertia Switch T.9.4", + "ruleContent": "Inertia Switch T.9.4", "parentRuleCode": "EV.7.1.1", "pageNumber": "102" }, @@ -12071,7 +12071,7 @@ }, { "ruleCode": "EV.7.1.6", - "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Electrical Technical Inspection. Version 1.0 31 Aug 2024", + "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Electrical Technical Inspection. Version 1.0 31 Aug 2024", "parentRuleCode": "EV.7.1", "pageNumber": "102" }, @@ -12113,7 +12113,7 @@ }, { "ruleCode": "EV.7.2.2.b", - "ruleContent": "All Accumulator current flow must stop immediately EV.5.4.3", + "ruleContent": "All Accumulator current flow must stop immediately EV.5.4.3", "parentRuleCode": "EV.7.2.2", "pageNumber": "103" }, @@ -12125,7 +12125,7 @@ }, { "ruleCode": "EV.7.2.2.d", - "ruleContent": "The Motor(s) must spin free. Torque must not be applied to the Motor(s)", + "ruleContent": "The Motor(s) must spin free. Torque must not be applied to the Motor(s)", "parentRuleCode": "EV.7.2.2", "pageNumber": "103" }, @@ -12173,13 +12173,13 @@ }, { "ruleCode": "EV.7.3.1.a", - "ruleContent": "Tractive System is Active EV.11.5", + "ruleContent": "Tractive System is Active EV.11.5", "parentRuleCode": "EV.7.3.1", "pageNumber": "103" }, { "ruleCode": "EV.7.3.1.b", - "ruleContent": "Accumulator is connected to a Charger EV.8.3", + "ruleContent": "Accumulator is connected to a Charger EV.8.3", "parentRuleCode": "EV.7.3.1", "pageNumber": "103" }, @@ -12191,7 +12191,7 @@ }, { "ruleCode": "EV.7.3.3", - "ruleContent": "Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) Chassis Master Switch Brake System Plausibility Device Ba ery Management System TSMP HV+ Trac ve System le right Shutdown Bu ons GLV System GLV System Trac ve System Accumulator Fuse(s) IR Accumulator Container(s) Trac ve System cockpit IR Precharge Precharge Control GLV Ba ery Interlock(s) GND GLVMP HV TSMP Iner a Switch Brake System Plausibility Device Insula on Monitoring Device Brake Over Travel Switch MSD Interlock LV TS le right GLV System Master Switch GLV System GLV Fuse Trac ve System Trac ve System Version 1.0 31 Aug 2024", + "ruleContent": "Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) Chas s is Master Switch Brake System Plausibility Device Ba ery Management System TSMP HV+ Trac ve System le right Shutdown Bu ons GLV System GLV System Trac ve System Accumulator Fuse(s) IR Accumulator Container(s) Trac ve System cockpit IR Precharge Precharge Control GLV Ba ery Interlock(s) GND GLVMP HV TSMP Iner a Switch Brake System Plausibility Device Insula on Monitoring Device Brake Over Travel Switch MSD Interlock LV TS le right GLV System Master Switch GLV System GLV Fuse Trac ve System Trac ve System Version 1.0 31 Aug 2024", "parentRuleCode": "EV.7.3", "pageNumber": "103" }, @@ -12203,7 +12203,7 @@ }, { "ruleCode": "EV.7.3.4.a", - "ruleContent": "Voltage values outside the allowable range EV.7.4.2", + "ruleContent": "Voltage values outside the allowable range EV.7.4.2", "parentRuleCode": "EV.7.3.4", "pageNumber": "104" }, @@ -12215,7 +12215,7 @@ }, { "ruleCode": "EV.7.3.4.c", - "ruleContent": "Temperature values outside the allowable range EV.7.5.2", + "ruleContent": "Temperature values outside the allowable range EV.7.5.2", "parentRuleCode": "EV.7.3.4", "pageNumber": "104" }, @@ -12239,7 +12239,7 @@ }, { "ruleCode": "EV.7.3.5.a", - "ruleContent": "Open the Shutdown Circuit EV.7.2.2", + "ruleContent": "Open the Shutdown Circuit EV.7.2.2", "parentRuleCode": "EV.7.3.5", "pageNumber": "104" }, @@ -12257,7 +12257,7 @@ }, { "ruleCode": "EV.7.3.6.a", - "ruleContent": "Color: Red", + "ruleContent": "Color: Red", "parentRuleCode": "EV.7.3.6", "pageNumber": "104" }, @@ -12287,7 +12287,7 @@ }, { "ruleCode": "EV.7.4.2", - "ruleContent": "Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels stated in the cell data sheet. Measurement accuracy must be considered.", + "ruleContent": "Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels stated in the cell data sheet. Measurement accuracy must be considered.", "parentRuleCode": "EV.7.4", "pageNumber": "104" }, @@ -12353,7 +12353,7 @@ }, { "ruleCode": "EV.7.5.3", - "ruleContent": "Cell temperatures must be measured at the negative terminal of the respective cell Version 1.0 31 Aug 2024", + "ruleContent": "Cell temperatures must be measured at the negative terminal of the respective cell Version 1.0 31 Aug 2024", "parentRuleCode": "EV.7.5", "pageNumber": "104" }, @@ -12443,7 +12443,7 @@ }, { "ruleCode": "EV.7.6.5.a", - "ruleContent": "Open the Shutdown Circuit EV.7.2.2", + "ruleContent": "Open the Shutdown Circuit EV.7.2.2", "parentRuleCode": "EV.7.6.5", "pageNumber": "105" }, @@ -12461,7 +12461,7 @@ }, { "ruleCode": "EV.7.6.6.a", - "ruleContent": "Color: Red", + "ruleContent": "Color: Red", "parentRuleCode": "EV.7.6.6", "pageNumber": "105" }, @@ -12491,7 +12491,7 @@ }, { "ruleCode": "EV.7.7.2", - "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: Version 1.0 31 Aug 2024 • Demand for Hard Braking EV.4.6 • Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit is delivered to the Motor(s) at the nominal battery voltage The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips", + "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: Version 1.0 31 Aug 2024 • Demand for Hard Braking EV.4.6 • Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit is delivered to the Motor(s) at the nominal battery voltage The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips", "parentRuleCode": "EV.7.7", "pageNumber": "105" }, @@ -12569,7 +12569,7 @@ }, { "ruleCode": "EV.7.8.4.b", - "ruleContent": "Part of a Tractive System Connector EV.5.9", + "ruleContent": "Part of a Tractive System Connector EV.5.9", "parentRuleCode": "EV.7.8.4", "pageNumber": "106" }, @@ -12611,7 +12611,7 @@ }, { "ruleCode": "EV.7.9.2.a", - "ruleContent": "Completely stop all power to the GLV System EV.4.4", + "ruleContent": "Completely stop all power to the GLV System EV.4.4", "parentRuleCode": "EV.7.9.2", "pageNumber": "106" }, @@ -12635,7 +12635,7 @@ }, { "ruleCode": "EV.7.9.3.a", - "ruleContent": "Open the Shutdown Circuit in the OFF position EV.7.2.2", + "ruleContent": "Open the Shutdown Circuit in the OFF position EV.7.2.2", "parentRuleCode": "EV.7.9.3", "pageNumber": "106" }, @@ -12653,13 +12653,13 @@ }, { "ruleCode": "EV.7.9.3.d", - "ruleContent": "Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background).", + "ruleContent": "Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background).", "parentRuleCode": "EV.7.9.3", "pageNumber": "106" }, { "ruleCode": "EV.7.9.3.e", - "ruleContent": "Be fitted with a \"lockout/tagout\" capability in the OFF position EV.11.3.1 Version 1.0 31 Aug 2024", + "ruleContent": "Be fitted with a \"lockout/tagout\" capability in the OFF position EV.11.3.1 Version 1.0 31 Aug 2024", "parentRuleCode": "EV.7.9.3", "pageNumber": "106" }, @@ -12749,7 +12749,7 @@ }, { "ruleCode": "EV.7.10.5", - "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near each Shutdown Button.", + "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near each Shutdown Button.", "parentRuleCode": "EV.7.10", "pageNumber": "107" }, @@ -12767,13 +12767,13 @@ }, { "ruleCode": "EV.8.1.1", - "ruleContent": "All features and functions of the Charger and Charging Shutdown Circuit must be demonstrated at Electrical Technical Inspection. IN.4.1", + "ruleContent": "All features and functions of the Charger and Charging Shutdown Circuit must be demonstrated at Electrical Technical Inspection. IN.4.1", "parentRuleCode": "EV.8.1", "pageNumber": "107" }, { "ruleCode": "EV.8.1.2", - "ruleContent": "Chargers will be sealed after approval. IN.4.7.1", + "ruleContent": "Chargers will be sealed after approval. IN.4.7.1", "parentRuleCode": "EV.8.1", "pageNumber": "107" }, @@ -12851,7 +12851,7 @@ }, { "ruleCode": "EV.8.2.7.e", - "ruleContent": "Be labelled with the international electrical symbol (a red spark on a white edged blue triangle) Version 1.0 31 Aug 2024", + "ruleContent": "Be labelled with the international electrical symbol (a red spark on a white edged blue triangle) Version 1.0 31 Aug 2024", "parentRuleCode": "EV.8.2.7", "pageNumber": "107" }, @@ -12869,19 +12869,19 @@ }, { "ruleCode": "EV.8.3.1.a", - "ruleContent": "Charger Shutdown Button EV.8.2.7", + "ruleContent": "Charger Shutdown Button EV.8.2.7", "parentRuleCode": "EV.8.3.1", "pageNumber": "108" }, { "ruleCode": "EV.8.3.1.b", - "ruleContent": "Battery Management System (BMS) EV.7.3", + "ruleContent": "Battery Management System (BMS) EV.7.3", "parentRuleCode": "EV.8.3.1", "pageNumber": "108" }, { "ruleCode": "EV.8.3.1.c", - "ruleContent": "Insulation Monitoring Device (IMD) EV.7.6", + "ruleContent": "Insulation Monitoring Device (IMD) EV.7.6", "parentRuleCode": "EV.8.3.1", "pageNumber": "108" }, @@ -12977,19 +12977,19 @@ }, { "ruleCode": "EV.9.2.a", - "ruleContent": "Low Voltage (GLV) System EV.9.3", + "ruleContent": "Low Voltage (GLV) System EV.9.3", "parentRuleCode": "EV.9.2", "pageNumber": "108" }, { "ruleCode": "EV.9.2.b", - "ruleContent": "Tractive System Active EV.9.4", + "ruleContent": "Tractive System Active EV.9.4", "parentRuleCode": "EV.9.2", "pageNumber": "108" }, { "ruleCode": "EV.9.2.c", - "ruleContent": "Ready to Drive EV.9.5", + "ruleContent": "Ready to Drive EV.9.5", "parentRuleCode": "EV.9.2", "pageNumber": "108" }, @@ -13025,13 +13025,13 @@ }, { "ruleCode": "EV.9.5.1", - "ruleContent": "Definition – the Motor(s) will respond to the input of the APPS Version 1.0 31 Aug 2024", + "ruleContent": "Definition – the Motor(s) will respond to the input of the APPS Version 1.0 31 Aug 2024", "parentRuleCode": "EV.9.5", "pageNumber": "108" }, { "ruleCode": "EV.9.5.2", - "ruleContent": "Ready to Drive must not be possible until the three at the same time: • Tractive System Active EV.9.4 • The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 • The driver does a manual action to start Ready to Drive Such as pressing a specific button in the cockpit", + "ruleContent": "Ready to Drive must not be possible until the three at the same time: • Tractive System Active EV.9.4 • The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 • The driver does a manual action to start Ready to Drive Such as pressing a specific button in the cockpit", "parentRuleCode": "EV.9.5", "pageNumber": "109" }, @@ -13061,13 +13061,13 @@ }, { "ruleCode": "EV.9.6.2.b", - "ruleContent": "A minimum sound level of 80 dBA, fast weighting IN.4.6", + "ruleContent": "A minimum sound level of 80 dBA, fast weighting IN.4.6", "parentRuleCode": "EV.9.6.2", "pageNumber": "109" }, { "ruleCode": "EV.9.6.2.c", - "ruleContent": "Easily recognizable. No animal voices, song parts or sounds that could be interpreted as offensive will be accepted", + "ruleContent": "Easily recognizable. No animal voices, song parts or sounds that could be interpreted as offensive will be accepted", "parentRuleCode": "EV.9.6.2", "pageNumber": "109" }, @@ -13145,7 +13145,7 @@ }, { "ruleCode": "EV.11.1.1", - "ruleContent": "The Electrical System Officer (ESO): AD.5.2", + "ruleContent": "The Electrical System Officer (ESO): AD.5.2", "parentRuleCode": "EV.11.1", "pageNumber": "109" }, @@ -13193,7 +13193,7 @@ }, { "ruleCode": "EV.11.2.2", - "ruleContent": "Appropriate insulated tools must be used when working on the Accumulator or Tractive System Version 1.0 31 Aug 2024", + "ruleContent": "Appropriate insulated tools must be used when working on the Accumulator or Tractive System Version 1.0 31 Aug 2024", "parentRuleCode": "EV.11.2", "pageNumber": "109" }, @@ -13235,7 +13235,7 @@ }, { "ruleCode": "EV.11.4.1", - "ruleContent": "These work activities at competition are allowed only in the designated area and during Electrical Technical Inspection IN.4 See EV.5.3.3", + "ruleContent": "These work activities at competition are allowed only in the designated area and during Electrical Technical Inspection IN.4 See EV.5.3.3", "parentRuleCode": "EV.11.4", "pageNumber": "110" }, @@ -13265,7 +13265,7 @@ }, { "ruleCode": "EV.11.4.2.a", - "ruleContent": "Completely closed Accumulator Container EV.4.3 See EV.4.10.2", + "ruleContent": "Completely closed Accumulator Container EV.4.3 See EV.4.10.2", "parentRuleCode": "EV.11.4.2", "pageNumber": "110" }, @@ -13373,7 +13373,7 @@ }, { "ruleCode": "EV.12.2.a", - "ruleContent": "Isolate the vehicle Version 1.0 31 Aug 2024", + "ruleContent": "Isolate the vehicle Version 1.0 31 Aug 2024", "parentRuleCode": "EV.12.2", "pageNumber": "110" }, @@ -13385,7 +13385,7 @@ }, { "ruleCode": "EV.12.2.c", - "ruleContent": "Call out designated Red Car responders Version 1.0 31 Aug 2024", + "ruleContent": "Call out designated Red Car responders Version 1.0 31 Aug 2024", "parentRuleCode": "EV.12.2", "pageNumber": "110" }, @@ -13432,7 +13432,7 @@ }, { "ruleCode": "IN.1.4", - "ruleContent": "Reinspection Officials may Reinspect any vehicle at any time during the competition IN.15", + "ruleContent": "Reinspection Officials may Reinspect any vehicle at any time during the competition IN.15", "parentRuleCode": "IN.1", "pageNumber": "112" }, @@ -13504,7 +13504,7 @@ }, { "ruleCode": "IN.2.4.2", - "ruleContent": "Technical Inspectors may examine any other items at their discretion Version 1.0 31 Aug 2024", + "ruleContent": "Technical Inspectors may examine any other items at their discretion Version 1.0 31 Aug 2024", "parentRuleCode": "IN.2.4", "pageNumber": "112" }, @@ -13528,13 +13528,13 @@ }, { "ruleCode": "IN.2.6.2", - "ruleContent": "Damaged or lost marks or seals require Reinspection IN.15", + "ruleContent": "Damaged or lost marks or seals require Reinspection IN.15", "parentRuleCode": "IN.2.6", "pageNumber": "113" }, { "ruleCode": "IN.3", - "ruleContent": "INITIAL INSPECTION Bring these to Initial Inspection: • Technical Inspection Form • All Driver Equipment per VE.3 to be used by each driver • Fire Extinguishers (for paddock and vehicle) VE.2.3 • Wet Tires V.4.3.2", + "ruleContent": "INITIAL INSPECTION Bring these to Initial Inspection: • Technical Inspection Form • All Driver Equipment per VE.3 to be used by each driver • Fire Extinguishers (for paddock and vehicle) VE.2.3 • Wet Tires V.4.3.2", "parentRuleCode": "IN", "pageNumber": "113" }, @@ -13546,13 +13546,13 @@ }, { "ruleCode": "IN.4.1", - "ruleContent": "Inspection Items Bring these to Electrical Technical Inspection: • Charger(s) for the Accumulator(s) EV.8.1 • Accumulator Container Hand Cart EV.4.10 • Spare Accumulator(s) (if applicable) EV.5.1.4 • Electrical Systems Form (ESF) and Component Data Sheets EV.2 • Copies of any submitted Rules Questions with the received answer GR.7 These basic tools in good condition: • Insulated cable shears • Insulated screw drivers • Multimeter with protected probe tips • Insulated tools, if screwed connections are used in the Tractive System • Face Shield • HV insulating gloves which are 12 months or less from their test date • Two HV insulating blankets of minimum 0.83 m² each • Safety glasses with side shields for all team members that might work on the Tractive System or Accumulator", + "ruleContent": "Inspection Items Bring these to Electrical Technical Inspection: • Charger(s) for the Accumulator(s) EV.8.1 • Accumulator Container Hand Cart EV.4.10 • Spare Accumulator(s) (if applicable) EV.5.1.4 • Electrical Systems Form (ESF) and Component Data Sheets EV.2 • Copies of any submitted Rules Questions with the received answer GR.7 These basic tools in good condition: • Insulated cable shears • Insulated screw drivers • Multimeter with protected probe tips • Insulated tools, if screwed connections are used in the Tractive System • Face Shield • HV insulating gloves which are 12 months or less from their test date • Two HV insulating blankets of minimum 0.83 m² each • Safety glasses with side shields for all team members that might work on the Tractive System or Accumulator", "parentRuleCode": "IN.4", "pageNumber": "113" }, { "ruleCode": "IN.4.2", - "ruleContent": "Accumulator Inspection The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected during Electrical Technical Inspection, or separately from the rest of Electrical Technical Inspection. Version 1.0 31 Aug 2024", + "ruleContent": "Accumulator Inspection The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected during Electrical Technical Inspection, or separately from the rest of Electrical Technical Inspection. Version 1.0 31 Aug 2024", "parentRuleCode": "IN.4", "pageNumber": "113" }, @@ -13630,7 +13630,7 @@ }, { "ruleCode": "IN.4.7.1", - "ruleContent": "All or portions of the Tractive System, Charger and other components may be sealed IN.2.6", + "ruleContent": "All or portions of the Tractive System, Charger and other components may be sealed IN.2.6", "parentRuleCode": "IN.4.7", "pageNumber": "114" }, @@ -13642,13 +13642,13 @@ }, { "ruleCode": "IN.4.7.3", - "ruleContent": "A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle may be Tractive System Active EV.9.4", + "ruleContent": "A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle may be Tractive System Active EV.9.4", "parentRuleCode": "IN.4.7", "pageNumber": "114" }, { "ruleCode": "IN.4.7.4", - "ruleContent": "Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection before the vehicle may attempt any further Inspections. See EV.11.3.2", + "ruleContent": "Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection before the vehicle may attempt any further Inspections. See EV.11.3.2", "parentRuleCode": "IN.4.7", "pageNumber": "114" }, @@ -13660,7 +13660,7 @@ }, { "ruleCode": "IN.5.1", - "ruleContent": "Driver Clearance Each driver in the normal driving position is checked for the three: • Helmet clearance F.5.6.4 • Head Restraint positioning T.2.8.5 • Harness fit and adjustment T.2.5, T.2.6, T.2.7", + "ruleContent": "Driver Clearance Each driver in the normal driving position is checked for the three: • Helmet clearance F.5.6.4 • Head Restraint positioning T.2.8.5 • Harness fit and adjustment T.2.5, T.2.6, T.2.7", "parentRuleCode": "IN.5", "pageNumber": "114" }, @@ -13672,7 +13672,7 @@ }, { "ruleCode": "IN.5.2.1", - "ruleContent": "Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. Version 1.0 31 Aug 2024", + "ruleContent": "Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. Version 1.0 31 Aug 2024", "parentRuleCode": "IN.5.2", "pageNumber": "114" }, @@ -13684,7 +13684,7 @@ }, { "ruleCode": "IN.5.2.2.a", - "ruleContent": "The driver must wear the specified Driver Equipment VE.3.2, VE.3.3", + "ruleContent": "The driver must wear the specified Driver Equipment VE.3.2, VE.3.3", "parentRuleCode": "IN.5.2.2", "pageNumber": "115" }, @@ -13696,7 +13696,7 @@ }, { "ruleCode": "IN.5.2.2.c", - "ruleContent": "Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown Button EV.7.10.4", + "ruleContent": "Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown Button EV.7.10.4", "parentRuleCode": "IN.5.2.2", "pageNumber": "115" }, @@ -13720,13 +13720,13 @@ }, { "ruleCode": "IN.5.3.1.a", - "ruleContent": "Meet the Driver Clearance requirements IN.5.1", + "ruleContent": "Meet the Driver Clearance requirements IN.5.1", "parentRuleCode": "IN.5.3.1", "pageNumber": "115" }, { "ruleCode": "IN.5.3.1.b", - "ruleContent": "Successfully complete the Egress Test IN.5.2", + "ruleContent": "Successfully complete the Egress Test IN.5.2", "parentRuleCode": "IN.5.3.1", "pageNumber": "115" }, @@ -13792,7 +13792,7 @@ }, { "ruleCode": "IN.8.1", - "ruleContent": "Inspection Items Bring these to Mechanical Technical Inspection: • Vehicle on Dry Tires V.4.3.1 • Technical Inspection Form • Push Bar VE.2.2 • Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 • Monocoque Laminate Test Specimens (if applicable) F.4.2 • The Impact Attenuator that was tested (if applicable) F.8.8.7 • Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c Version 1.0 31 Aug 2024 • Electronic copies of any submitted Rules Questions with the received answer GR.7", + "ruleContent": "Inspection Items Bring these to Mechanical Technical Inspection: • Vehicle on Dry Tires V.4.3.1 • Technical Inspection Form • Push Bar VE.2.2 • Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 • Monocoque Laminate Test Specimens (if applicable) F.4.2 • The Impact Attenuator that was tested (if applicable) F.8.8.7 • Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c Version 1.0 31 Aug 2024 • Electronic copies of any submitted Rules Questions with the received answer GR.7", "parentRuleCode": "IN.8", "pageNumber": "115" }, @@ -13918,7 +13918,7 @@ }, { "ruleCode": "IN.9.1.d", - "ruleContent": "(IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and pressure the system downstream of the High Pressure pump. See IC.6.2", + "ruleContent": "(IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and pressure the system downstream of the High Pressure pump. See IC.6.2", "parentRuleCode": "IN.9.1", "pageNumber": "116" }, @@ -13942,7 +13942,7 @@ }, { "ruleCode": "IN.9.3", - "ruleContent": "Tilt Test Completion Tilt Tests must be passed before a vehicle may attempt any further inspections Version 1.0 31 Aug 2024", + "ruleContent": "Tilt Test Completion Tilt Tests must be passed before a vehicle may attempt any further inspections Version 1.0 31 Aug 2024", "parentRuleCode": "IN.9", "pageNumber": "116" }, @@ -13966,7 +13966,7 @@ }, { "ruleCode": "IN.10.1.2", - "ruleContent": "Measurements will be made with a free field microphone placed: • free from obstructions • at the Exhaust Outlet vertical level IC.7.2.2 • 0.5 m from the end of the Exhaust Outlet IC.7.2.2 • at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below)", + "ruleContent": "Measurements will be made with a free field microphone placed: • free from obstructions • at the Exhaust Outlet vertical level IC.7.2.2 • 0.5 m from the end of the Exhaust Outlet IC.7.2.2 • at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below)", "parentRuleCode": "IN.10.1", "pageNumber": "117" }, @@ -14050,13 +14050,13 @@ }, { "ruleCode": "IN.10.4.1.a", - "ruleContent": "Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min)", + "ruleContent": "Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min)", "parentRuleCode": "IN.10.4.1", "pageNumber": "117" }, { "ruleCode": "IN.10.4.1.b", - "ruleContent": "Industrial Engines 731.5 m/min (2,400 ft/min) The calculated speed will be rounded to the nearest 500 rpm. Test Speeds for typical engines are published on the FSAE Online website", + "ruleContent": "Industrial Engines 731.5 m/min (2,400 ft/min) The calculated speed will be rounded to the nearest 500 rpm. Test Speeds for typical engines are published on the FSAE Online website", "parentRuleCode": "IN.10.4.1", "pageNumber": "117" }, @@ -14080,7 +14080,7 @@ }, { "ruleCode": "IN.10.4.3", - "ruleContent": "The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. Version 1.0 31 Aug 2024", + "ruleContent": "The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. Version 1.0 31 Aug 2024", "parentRuleCode": "IN.10.4", "pageNumber": "117" }, @@ -14092,13 +14092,13 @@ }, { "ruleCode": "IN.10.5.a", - "ruleContent": "At idle 103 dBC, fast weighting", + "ruleContent": "At idle 103 dBC, fast weighting", "parentRuleCode": "IN.10.5", "pageNumber": "118" }, { "ruleCode": "IN.10.5.b", - "ruleContent": "At all other speeds 110 dBC, fast weighting", + "ruleContent": "At all other speeds 110 dBC, fast weighting", "parentRuleCode": "IN.10.5", "pageNumber": "118" }, @@ -14212,7 +14212,7 @@ }, { "ruleCode": "IN.12.2.2", - "ruleContent": "The Brake Test passes if: • All four wheels lock up • The engine stays running during the complete test Version 1.0 31 Aug 2024", + "ruleContent": "The Brake Test passes if: • All four wheels lock up • The engine stays running during the complete test Version 1.0 31 Aug 2024", "parentRuleCode": "IN.12.2", "pageNumber": "118" }, @@ -14236,7 +14236,7 @@ }, { "ruleCode": "IN.12.3.1.b", - "ruleContent": "Switch off the Tractive System EV.7.10.4", + "ruleContent": "Switch off the Tractive System EV.7.10.4", "parentRuleCode": "IN.12.3.1", "pageNumber": "119" }, @@ -14254,7 +14254,7 @@ }, { "ruleCode": "IN.12.3.3", - "ruleContent": "The Tractive System Active Light may switch a short time after the vehicle has come to a complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c", + "ruleContent": "The Tractive System Active Light may switch a short time after the vehicle has come to a complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c", "parentRuleCode": "IN.12.3", "pageNumber": "119" }, @@ -14356,13 +14356,13 @@ }, { "ruleCode": "IN.14.2.2", - "ruleContent": "Changes to fit the vehicle to different drivers are allowed. Permitted changes are: • Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly • Substitution of the Head Restraint or seat insert • Adjustment of mirrors Version 1.0 31 Aug 2024", + "ruleContent": "Changes to fit the vehicle to different drivers are allowed. Permitted changes are: • Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly • Substitution of the Head Restraint or seat insert • Adjustment of mirrors Version 1.0 31 Aug 2024", "parentRuleCode": "IN.14.2", "pageNumber": "119" }, { "ruleCode": "IN.14.2.3", - "ruleContent": "Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the vehicle are: • Adjustment of belts, chains and clutches • Adjustment of brake bias • Adjustment to engine / powertrain operating parameters, including fuel mixture and ignition timing, and any software calibration changes • Adjustment of the suspension • Changing springs, sway bars and shims in the suspension • Adjustment of Tire Pressure, subject to V.4.3.4 • Adjustment of wing or wing element(s) angle, but not the location T.7.1 • Replenishment of fluids • Replacement of worn tires or brake pads. Replacement tires and brake pads must be identical in material/composition/size to those presented and approved at Technical Inspection. • Changing of wheels and tires for weather conditions D.6 • Recharging Low Voltage batteries • Recharging High Voltage Accumulators", + "ruleContent": "Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the vehicle are: • Adjustment of belts, chains and clutches • Adjustment of brake bias • Adjustment to engine / powertrain operating parameters, including fuel mixture and ignition timing, and any software calibration changes • Adjustment of the suspension • Changing springs, sway bars and shims in the suspension • Adjustment of Tire Pressure, subject to V.4.3.4 • Adjustment of wing or wing element(s) angle, but not the location T.7.1 • Replenishment of fluids • Replacement of worn tires or brake pads. Replacement tires and brake pads must be identical in material/composition/size to those presented and approved at Technical Inspection. • Changing of wheels and tires for weather conditions D.6 • Recharging Low Voltage batteries • Recharging High Voltage Accumulators", "parentRuleCode": "IN.14.2", "pageNumber": "120" }, @@ -14374,7 +14374,7 @@ }, { "ruleCode": "IN.14.3.a", - "ruleContent": "Damage to the vehicle IN.13.1.3", + "ruleContent": "Damage to the vehicle IN.13.1.3", "parentRuleCode": "IN.14.3", "pageNumber": "120" }, @@ -14434,7 +14434,7 @@ }, { "ruleCode": "IN.15.3.1", - "ruleContent": "With Voided Inspection Approval Successful completion of Reinspection will restore Inspection Approval IN.13.1", + "ruleContent": "With Voided Inspection Approval Successful completion of Reinspection will restore Inspection Approval IN.13.1", "parentRuleCode": "IN.15.3", "pageNumber": "120" }, @@ -14452,7 +14452,7 @@ }, { "ruleCode": "IN.15.3.2.b", - "ruleContent": "Penalties may be applied to the Dynamic Events the vehicle has competed in Applied penalties may include additional time added to event(s), loss of one or more fastest runs, up to DQ, subject to official discretion. Version 1.0 31 Aug 2024", + "ruleContent": "Penalties may be applied to the Dynamic Events the vehicle has competed in Applied penalties may include additional time added to event(s), loss of one or more fastest runs, up to DQ, subject to official discretion. Version 1.0 31 Aug 2024", "parentRuleCode": "IN.15.3.2", "pageNumber": "120" }, @@ -14463,7 +14463,7 @@ }, { "ruleCode": "S.1", - "ruleContent": "GENERAL STATIC Presentation 75 points Cost 100 points Design 150 points Total 325 points", + "ruleContent": "GENERAL STATIC Presentation 75 points Cost 100 points Design 150 points Total 325 points", "parentRuleCode": "S", "pageNumber": "121" }, @@ -14571,13 +14571,13 @@ }, { "ruleCode": "S.2.5.3", - "ruleContent": "Presentations will be time limited. The judges will stop any presentation exceeding the time limit. Version 1.0 31 Aug 2024", + "ruleContent": "Presentations will be time limited. The judges will stop any presentation exceeding the time limit. Version 1.0 31 Aug 2024", "parentRuleCode": "S.2.5", "pageNumber": "121" }, { "ruleCode": "S.2.5.4", - "ruleContent": "The presentation itself will not be interrupted by questions. Immediately after the presentation there may be a question and answer session.", + "ruleContent": "The presentation itself will not be interrupted by questions. Immediately after the presentation there may be a question and answer session.", "parentRuleCode": "S.2.5", "pageNumber": "122" }, @@ -14697,7 +14697,7 @@ }, { "ruleCode": "S.3.3.2", - "ruleContent": "Event Day Discussion Discussion at the Competition with the Cost Judges around the team’s vehicle. Version 1.0 31 Aug 2024", + "ruleContent": "Event Day Discussion Discussion at the Competition with the Cost Judges around the team’s vehicle. Version 1.0 31 Aug 2024", "parentRuleCode": "S.3.3", "pageNumber": "122" }, @@ -14871,7 +14871,7 @@ }, { "ruleCode": "S.3.8.2", - "ruleContent": "If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add Item Request must be submitted. See S.3.10 Version 1.0 31 Aug 2024", + "ruleContent": "If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add Item Request must be submitted. See S.3.10 Version 1.0 31 Aug 2024", "parentRuleCode": "S.3.8", "pageNumber": "123" }, @@ -14919,7 +14919,7 @@ }, { "ruleCode": "S.3.10.2", - "ruleContent": "After review, the item may be added to the Cost Table with an appropriate cost. It will then be available to all teams.", + "ruleContent": "After review, the item may be added to the Cost Table with an appropriate cost. It will then be available to all teams.", "parentRuleCode": "S.3.10", "pageNumber": "124" }, @@ -14937,7 +14937,7 @@ }, { "ruleCode": "S.3.11.2", - "ruleContent": "Cost Reports for a given competition season will not be published before the end of the calendar year. Support materials, such as technical drawings, will not be released.", + "ruleContent": "Cost Reports for a given competition season will not be published before the end of the calendar year. Support materials, such as technical drawings, will not be released.", "parentRuleCode": "S.3.11", "pageNumber": "124" }, @@ -14997,13 +14997,13 @@ }, { "ruleCode": "S.3.12.4.b", - "ruleContent": "In the case of any omission or error a penalty proportional to the BOM level of the error will be imposed: • Missing/inaccurate Material, Process, Fastener 1 point • Missing/inaccurate Part 3 point • Missing/inaccurate Assembly 5 point", + "ruleContent": "In the case of any omission or error a penalty proportional to the BOM level of the error will be imposed: • Missing/inaccurate Material, Process, Fastener 1 point • Missing/inaccurate Part 3 point • Missing/inaccurate Assembly 5 point", "parentRuleCode": "S.3.12.4", "pageNumber": "124" }, { "ruleCode": "S.3.12.4.c", - "ruleContent": "Each of the penalties listed above supersedes the previous penalty. Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. Version 1.0 31 Aug 2024", + "ruleContent": "Each of the penalties listed above supersedes the previous penalty. Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. Version 1.0 31 Aug 2024", "parentRuleCode": "S.3.12.4", "pageNumber": "124" }, @@ -15027,7 +15027,7 @@ }, { "ruleCode": "S.3.12.5.b", - "ruleContent": "The penalty will be a value equal to twice the difference between the team cost and the correct cost for all items in error. Penalty = 2 x (Table Cost – Team Reported Cost) The table costs of all items in error are included in the calculation. A missing Assembly would include the price of all Parts, Materials, Processes and Fasteners making up the Assembly.", + "ruleContent": "The penalty will be a value equal to twice the difference between the team cost and the correct cost for all items in error. Penalty = 2 x (Table Cost – Team Reported Cost) The table costs of all items in error are included in the calculation. A missing Assembly would include the price of all Parts, Materials, Processes and Fasteners making up the Assembly.", "parentRuleCode": "S.3.12.5", "pageNumber": "125" }, @@ -15141,7 +15141,7 @@ }, { "ruleCode": "S.3.16.5", - "ruleContent": "Cost Event scoring may include normalizing the scores of different judging teams and scaling the results. Version 1.0 31 Aug 2024", + "ruleContent": "Cost Event scoring may include normalizing the scores of different judging teams and scaling the results. Version 1.0 31 Aug 2024", "parentRuleCode": "S.3.16", "pageNumber": "125" }, @@ -15279,7 +15279,7 @@ }, { "ruleCode": "S.4.5", - "ruleContent": "Design Spec Sheet Use the format provided and submit the Design Spec Sheet as given in section DR - Document Requirements The Design Judges realize that final design refinements and vehicle development may cause the submitted values to differ from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate. Version 1.0 31 Aug 2024", + "ruleContent": "Design Spec Sheet Use the format provided and submit the Design Spec Sheet as given in section DR - Document Requirements The Design Judges realize that final design refinements and vehicle development may cause the submitted values to differ from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate. Version 1.0 31 Aug 2024", "parentRuleCode": "S.4", "pageNumber": "126" }, @@ -15399,7 +15399,7 @@ }, { "ruleCode": "S.4.10.3", - "ruleContent": "Vehicles that are excluded from Design judging or refused judging get zero points for Design, and may receive penalty points. Version 1.0 31 Aug 2024", + "ruleContent": "Vehicles that are excluded from Design judging or refused judging get zero points for Design, and may receive penalty points. Version 1.0 31 Aug 2024", "parentRuleCode": "S.4.10", "pageNumber": "127" }, @@ -15416,7 +15416,7 @@ }, { "ruleCode": "D.1.1", - "ruleContent": "Dynamic Events and Maximum Scores Acceleration 100 points Skid Pad 75 points Autocross 125 points Efficiency 100 points Endurance 275 points Total 675 points", + "ruleContent": "Dynamic Events and Maximum Scores Acceleration 100 points Skid Pad 75 points Autocross 125 points Efficiency 100 points Endurance 275 points Total 675 points", "parentRuleCode": "D.1", "pageNumber": "128" }, @@ -15428,7 +15428,7 @@ }, { "ruleCode": "D.1.2.1", - "ruleContent": "Dynamic Area – Any designated portion(s) of the competition site where the vehicles may move under their own power. This includes competition, inspection and practice areas.", + "ruleContent": "Dynamic Area – Any designated portion(s) of the competition site where the vehicles may move under their own power. This includes competition, inspection and practice areas.", "parentRuleCode": "D.1.2", "pageNumber": "128" }, @@ -15470,7 +15470,7 @@ }, { "ruleCode": "D.2.1.2.b", - "ruleContent": "The rear wheels supported on dollies, by push bar mounted wheels The external wheels supporting the rear of the vehicle must be non pivoting so the vehicle travels only where the front wheels are steered. The driver must always be able to steer and brake the vehicle normally.", + "ruleContent": "The rear wheels supported on dollies, by push bar mounted wheels The external wheels supporting the rear of the vehicle must be non pivoting so the vehicle travels only where the front wheels are steered. The driver must always be able to steer and brake the vehicle normally.", "parentRuleCode": "D.2.1.2", "pageNumber": "128" }, @@ -15500,7 +15500,7 @@ }, { "ruleCode": "D.2.2", - "ruleContent": "Fueling and Charging (IC only) Officials must conduct all fueling activities in the designated location. (EV only) Accumulator charging must be done in the designated location EV.11.5", + "ruleContent": "Fueling and Charging (IC only) Officials must conduct all fueling activities in the designated location. (EV only) Accumulator charging must be done in the designated location EV.11.5", "parentRuleCode": "D.2", "pageNumber": "128" }, @@ -15512,13 +15512,13 @@ }, { "ruleCode": "D.2.3.a", - "ruleContent": "(IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR a Technical Inspector gives permission (EV only) The vehicle shows the OK to Energize sticker IN.4.7.3", + "ruleContent": "(IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR a Technical Inspector gives permission (EV only) The vehicle shows the OK to Energize sticker IN.4.7.3", "parentRuleCode": "D.2.3", "pageNumber": "128" }, { "ruleCode": "D.2.3.b", - "ruleContent": "The vehicle is supported on a stand Version 1.0 31 Aug 2024", + "ruleContent": "The vehicle is supported on a stand Version 1.0 31 Aug 2024", "parentRuleCode": "D.2.3", "pageNumber": "128" }, @@ -15536,7 +15536,7 @@ }, { "ruleCode": "D.3.1", - "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event must attend the drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", + "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event must attend the drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", "parentRuleCode": "D.3", "pageNumber": "129" }, @@ -15548,13 +15548,13 @@ }, { "ruleCode": "D.3.2.1", - "ruleContent": "The organizer may specify restrictions for the Dynamic Area. These could include limiting the number of team members and what may be brought into the area.", + "ruleContent": "The organizer may specify restrictions for the Dynamic Area. These could include limiting the number of team members and what may be brought into the area.", "parentRuleCode": "D.3.2", "pageNumber": "129" }, { "ruleCode": "D.3.2.2", - "ruleContent": "The organizer may specify additional restrictions for the Staging Area. These could include limiting the number of team members and what may be brought into the area.", + "ruleContent": "The organizer may specify additional restrictions for the Staging Area. These could include limiting the number of team members and what may be brought into the area.", "parentRuleCode": "D.3.2", "pageNumber": "129" }, @@ -15620,7 +15620,7 @@ }, { "ruleCode": "D.3.6", - "ruleContent": "Starting Auxiliary batteries must not be used once a vehicle has moved to the starting line of any event. See IC.8.1", + "ruleContent": "Starting Auxiliary batteries must not be used once a vehicle has moved to the starting line of any event. See IC.8.1", "parentRuleCode": "D.3", "pageNumber": "129" }, @@ -15650,7 +15650,7 @@ }, { "ruleCode": "D.3.8", - "ruleContent": "Instructions from Officials Obey flags and hand signals from course marshals and officials immediately Version 1.0 31 Aug 2024", + "ruleContent": "Instructions from Officials Obey flags and hand signals from course marshals and officials immediately Version 1.0 31 Aug 2024", "parentRuleCode": "D.3", "pageNumber": "129" }, @@ -15698,7 +15698,7 @@ }, { "ruleCode": "D.4.1.2", - "ruleContent": "Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time penalty may be assessed.", + "ruleContent": "Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time penalty may be assessed.", "parentRuleCode": "D.4.1", "pageNumber": "130" }, @@ -15716,25 +15716,25 @@ }, { "ruleCode": "D.4.1.5", - "ruleContent": "Checkered Flag - Run has been completed. Exit the course at the designated point.", + "ruleContent": "Checkered Flag - Run has been completed. Exit the course at the designated point.", "parentRuleCode": "D.4.1", "pageNumber": "130" }, { "ruleCode": "D.4.1.6", - "ruleContent": "Green Flag – Approval to begin your run, enter the course under direction of the starter. If you stall the vehicle, please restart and await another Green Flag", + "ruleContent": "Green Flag – Approval to begin your run, enter the course under direction of the starter. If you stall the vehicle, please restart and await another Green Flag", "parentRuleCode": "D.4.1", "pageNumber": "130" }, { "ruleCode": "D.4.1.7", - "ruleContent": "Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow corner worker directions.", + "ruleContent": "Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow corner worker directions.", "parentRuleCode": "D.4.1", "pageNumber": "130" }, { "ruleCode": "D.4.1.8", - "ruleContent": "Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the corner workers.", + "ruleContent": "Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the corner workers.", "parentRuleCode": "D.4.1", "pageNumber": "130" }, @@ -15764,7 +15764,7 @@ }, { "ruleCode": "D.4.2.3", - "ruleContent": "White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a cautious rate.", + "ruleContent": "White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a cautious rate.", "parentRuleCode": "D.4.2", "pageNumber": "130" }, @@ -15782,7 +15782,7 @@ }, { "ruleCode": "D.5.1.1", - "ruleContent": "The organizer may alter the conduct and scoring of the competition based on weather conditions. Version 1.0 31 Aug 2024", + "ruleContent": "The organizer may alter the conduct and scoring of the competition based on weather conditions. Version 1.0 31 Aug 2024", "parentRuleCode": "D.5.1", "pageNumber": "130" }, @@ -15836,7 +15836,7 @@ }, { "ruleCode": "D.6.1.1", - "ruleContent": "Teams must run the tires allowed for each Operating Condition: Operating Condition Tires Allowed Dry Dry ( V.4.3.1 ) Damp Dry or Wet Wet Wet ( V.4.3.2 )", + "ruleContent": "Teams must run the tires allowed for each Operating Condition: Operating Condition Tires Allowed Dry Dry ( V.4.3.1 ) Damp Dry or Wet Wet Wet ( V.4.3.2 )", "parentRuleCode": "D.6.1", "pageNumber": "131" }, @@ -15884,7 +15884,7 @@ }, { "ruleCode": "D.6.2.4", - "ruleContent": "Time allowed to change tires: Version 1.0 31 Aug 2024", + "ruleContent": "Time allowed to change tires: Version 1.0 31 Aug 2024", "parentRuleCode": "D.6.2", "pageNumber": "131" }, @@ -15980,7 +15980,7 @@ }, { "ruleCode": "D.8.1.4", - "ruleContent": "Gate - The path between two cones through which the vehicle must pass. Two cones, one on each side of the course define a gate. Two sequential cones in a slalom define a gate.", + "ruleContent": "Gate - The path between two cones through which the vehicle must pass. Two cones, one on each side of the course define a gate. Two sequential cones in a slalom define a gate.", "parentRuleCode": "D.8.1", "pageNumber": "132" }, @@ -16028,7 +16028,7 @@ }, { "ruleCode": "D.9.1.1", - "ruleContent": "Course length will be 75 m from starting line to finish line Version 1.0 31 Aug 2024", + "ruleContent": "Course length will be 75 m from starting line to finish line Version 1.0 31 Aug 2024", "parentRuleCode": "D.9.1", "pageNumber": "132" }, @@ -16130,13 +16130,13 @@ }, { "ruleCode": "D.9.4.1", - "ruleContent": "Scoring Term Definitions: • Corrected Time = Acceleration Run Time + ( DOO * 2 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 150% of Tmin", + "ruleContent": "Scoring Term Definitions: • Corrected Time = Acceleration Run Time + ( DOO * 2 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 150% of Tmin", "parentRuleCode": "D.9.4", "pageNumber": "133" }, { "ruleCode": "D.9.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Acceleration Score = 95.5 x ( Tmax / Tyour ) -1 + 4.5 ( Tmax / Tmin ) -1", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Acceleration Score = 95.5 x ( Tmax / Tyour ) -1 + 4.5 ( Tmax / Tmin ) -1", "parentRuleCode": "D.9.4", "pageNumber": "133" }, @@ -16160,7 +16160,7 @@ }, { "ruleCode": "D.10.1.1", - "ruleContent": "Course Design • Two pairs of concentric circles in a figure of eight pattern • Centers of the circles 18.25 m apart • Inner circles 15.25 m in diameter Version 1.0 31 Aug 2024 • Outer circles 21.25 m in diameter • Driving path the 3.0 m wide path between the inner and outer circles", + "ruleContent": "Course Design • Two pairs of concentric circles in a figure of eight pattern • Centers of the circles 18.25 m apart • Inner circles 15.25 m in diameter Version 1.0 31 Aug 2024 • Outer circles 21.25 m in diameter • Driving path the 3.0 m wide path between the inner and outer circles", "parentRuleCode": "D.10.1", "pageNumber": "133" }, @@ -16244,7 +16244,7 @@ }, { "ruleCode": "D.10.2.3.a", - "ruleContent": "A Green Flag or light signal will give the approval to begin the run Version 1.0 31 Aug 2024", + "ruleContent": "A Green Flag or light signal will give the approval to begin the run Version 1.0 31 Aug 2024", "parentRuleCode": "D.10.2.3", "pageNumber": "134" }, @@ -16298,7 +16298,7 @@ }, { "ruleCode": "D.10.3.2", - "ruleContent": "Off Course (OC) DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off Course.", + "ruleContent": "Off Course (OC) DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off Course.", "parentRuleCode": "D.10.3", "pageNumber": "135" }, @@ -16316,13 +16316,13 @@ }, { "ruleCode": "D.10.4.1", - "ruleContent": "Scoring Term Definitions • Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) • Tyour - the best Corrected Time for the team • Tmin - is the lowest Corrected Time recorded for any team • Tmax - 125% of Tmin", + "ruleContent": "Scoring Term Definitions • Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) • Tyour - the best Corrected Time for the team • Tmin - is the lowest Corrected Time recorded for any team • Tmax - 125% of Tmin", "parentRuleCode": "D.10.4", "pageNumber": "135" }, { "ruleCode": "D.10.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Skidpad Score = 71.5 x ( Tmax / Tyour ) 2 -1 + 3.5 ( Tmax / Tmin ) 2 -1", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Skidpad Score = 71.5 x ( Tmax / Tyour ) 2 -1 + 3.5 ( Tmax / Tmin ) 2 -1", "parentRuleCode": "D.10.4", "pageNumber": "135" }, @@ -16346,43 +16346,43 @@ }, { "ruleCode": "D.11.1.1", - "ruleContent": "The Autocross course will be designed with these specifications. Average speeds should be 40 km/hr to 48 km/hr", + "ruleContent": "The Autocross course will be designed with these specifications. Average speeds should be 40 km/hr to 48 km/hr", "parentRuleCode": "D.11.1", "pageNumber": "135" }, { "ruleCode": "D.11.1.1.a", - "ruleContent": "Straights: No longer than 60 m with hairpins at the two ends", + "ruleContent": "Straights: No longer than 60 m with hairpins at the two ends", "parentRuleCode": "D.11.1.1", "pageNumber": "135" }, { "ruleCode": "D.11.1.1.b", - "ruleContent": "Straights: No longer than 45 m with wide turns on the ends", + "ruleContent": "Straights: No longer than 45 m with wide turns on the ends", "parentRuleCode": "D.11.1.1", "pageNumber": "135" }, { "ruleCode": "D.11.1.1.c", - "ruleContent": "Constant Turns: 23 m to 45 m diameter", + "ruleContent": "Constant Turns: 23 m to 45 m diameter", "parentRuleCode": "D.11.1.1", "pageNumber": "135" }, { "ruleCode": "D.11.1.1.d", - "ruleContent": "Hairpin Turns: 9 m minimum outside diameter (of the turn) Version 1.0 31 Aug 2024", + "ruleContent": "Hairpin Turns: 9 m minimum outside diameter (of the turn) Version 1.0 31 Aug 2024", "parentRuleCode": "D.11.1.1", "pageNumber": "135" }, { "ruleCode": "D.11.1.1.e", - "ruleContent": "Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing", + "ruleContent": "Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing", "parentRuleCode": "D.11.1.1", "pageNumber": "135" }, { "ruleCode": "D.11.1.1.f", - "ruleContent": "Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc.", + "ruleContent": "Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc.", "parentRuleCode": "D.11.1.1", "pageNumber": "135" }, @@ -16502,19 +16502,19 @@ }, { "ruleCode": "D.11.4.1", - "ruleContent": "Scoring Term Definitions: • Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 145% of Tmin", + "ruleContent": "Scoring Term Definitions: • Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 145% of Tmin", "parentRuleCode": "D.11.4", "pageNumber": "136" }, { "ruleCode": "D.11.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Autocross Score = 118.5 x ( Tmax / Tyour ) -1 + 6.5 ( Tmax / Tmin ) -1", + "ruleContent": "When Tyour < Tmax. the team score is calculated as: Autocross Score = 118.5 x ( Tmax / Tyour ) -1 + 6.5 ( Tmax / Tmin ) -1", "parentRuleCode": "D.11.4", "pageNumber": "136" }, { "ruleCode": "D.11.4.3", - "ruleContent": "When Tyour > Tmax , Autocross Score = 6.5 Version 1.0 31 Aug 2024", + "ruleContent": "When Tyour > Tmax , Autocross Score = 6.5 Version 1.0 31 Aug 2024", "parentRuleCode": "D.11.4", "pageNumber": "136" }, @@ -16586,31 +16586,31 @@ }, { "ruleCode": "D.12.2.2", - "ruleContent": "The Endurance course will be designed with these specifications. Average speed should be 48 km/hr to 57 km/hr with top speeds of approximately 105 km/hr.", + "ruleContent": "The Endurance course will be designed with these specifications. Average speed should be 48 km/hr to 57 km/hr with top speeds of approximately 105 km/hr.", "parentRuleCode": "D.12.2", "pageNumber": "137" }, { "ruleCode": "D.12.2.2.a", - "ruleContent": "Straights: No longer than 77 m with hairpins at the two ends", + "ruleContent": "Straights: No longer than 77 m with hairpins at the two ends", "parentRuleCode": "D.12.2.2", "pageNumber": "137" }, { "ruleCode": "D.12.2.2.b", - "ruleContent": "Straights: No longer than 61 m with wide turns on the ends", + "ruleContent": "Straights: No longer than 61 m with wide turns on the ends", "parentRuleCode": "D.12.2.2", "pageNumber": "137" }, { "ruleCode": "D.12.2.2.c", - "ruleContent": "Constant Turns: 30 m to 54 m diameter", + "ruleContent": "Constant Turns: 30 m to 54 m diameter", "parentRuleCode": "D.12.2.2", "pageNumber": "137" }, { "ruleCode": "D.12.2.2.d", - "ruleContent": "Hairpin Turns: 9 m minimum outside diameter (of the turn)", + "ruleContent": "Hairpin Turns: 9 m minimum outside diameter (of the turn)", "parentRuleCode": "D.12.2.2", "pageNumber": "137" }, @@ -16622,13 +16622,13 @@ }, { "ruleCode": "D.12.2.2.f", - "ruleContent": "Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc.", + "ruleContent": "Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc.", "parentRuleCode": "D.12.2.2", "pageNumber": "137" }, { "ruleCode": "D.12.2.2.g", - "ruleContent": "Minimum track width: 4.5 m", + "ruleContent": "Minimum track width: 4.5 m", "parentRuleCode": "D.12.2.2", "pageNumber": "137" }, @@ -16676,7 +16676,7 @@ }, { "ruleCode": "D.12.3.2", - "ruleContent": "Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line and prepared to start when their turn to run arrives. Version 1.0 31 Aug 2024", + "ruleContent": "Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line and prepared to start when their turn to run arrives. Version 1.0 31 Aug 2024", "parentRuleCode": "D.12.3", "pageNumber": "137" }, @@ -16706,7 +16706,7 @@ }, { "ruleCode": "D.12.4.2", - "ruleContent": "After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) restart the engine or to (EV) enter Ready to Drive EV.9.5", + "ruleContent": "After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) restart the engine or to (EV) enter Ready to Drive EV.9.5", "parentRuleCode": "D.12.4", "pageNumber": "138" }, @@ -16724,7 +16724,7 @@ }, { "ruleCode": "D.12.4.3", - "ruleContent": "If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it (approximately 60 seconds) to restart. This time counts toward the Endurance time.", + "ruleContent": "If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it (approximately 60 seconds) to restart. This time counts toward the Endurance time.", "parentRuleCode": "D.12.4", "pageNumber": "138" }, @@ -16838,7 +16838,7 @@ }, { "ruleCode": "D.12.7.1.d", - "ruleContent": "Each extra person entering the Driver Change Area: 20 point penalty", + "ruleContent": "Each extra person entering the Driver Change Area: 20 point penalty", "parentRuleCode": "D.12.7.1", "pageNumber": "138" }, @@ -16862,7 +16862,7 @@ }, { "ruleCode": "D.12.7.2.c", - "ruleContent": "Tire changes per D.6.2 Version 1.0 31 Aug 2024", + "ruleContent": "Tire changes per D.6.2 Version 1.0 31 Aug 2024", "parentRuleCode": "D.12.7.2", "pageNumber": "138" }, @@ -16886,7 +16886,7 @@ }, { "ruleCode": "D.12.8.1.b", - "ruleContent": "First Driver turns off the engine / Tractive System. Driver Change time starts.", + "ruleContent": "First Driver turns off the engine / Tractive System. Driver Change time starts.", "parentRuleCode": "D.12.8.1", "pageNumber": "139" }, @@ -16910,7 +16910,7 @@ }, { "ruleCode": "D.12.8.1.f", - "ruleContent": "Second Driver is ready to start the engine / enable the Tractive System. Driver Change time stops.", + "ruleContent": "Second Driver is ready to start the engine / enable the Tractive System. Driver Change time stops.", "parentRuleCode": "D.12.8.1", "pageNumber": "139" }, @@ -16922,7 +16922,7 @@ }, { "ruleCode": "D.12.8.1.h", - "ruleContent": "The vehicle engine is started or Tractive System enabled. See D.12.4", + "ruleContent": "The vehicle engine is started or Tractive System enabled. See D.12.4", "parentRuleCode": "D.12.8.1", "pageNumber": "139" }, @@ -17048,7 +17048,7 @@ }, { "ruleCode": "D.12.10.6", - "ruleContent": "Based on the inspection or discussion during a Black Flag period, the vehicle may not be allowed to continue the Endurance Run and will be scored DNF Version 1.0 31 Aug 2024", + "ruleContent": "Based on the inspection or discussion during a Black Flag period, the vehicle may not be allowed to continue the Endurance Run and will be scored DNF Version 1.0 31 Aug 2024", "parentRuleCode": "D.12.10", "pageNumber": "139" }, @@ -17102,7 +17102,7 @@ }, { "ruleCode": "D.12.11.4", - "ruleContent": "Passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", + "ruleContent": "Passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", "parentRuleCode": "D.12.11", "pageNumber": "140" }, @@ -17180,7 +17180,7 @@ }, { "ruleCode": "D.12.13.1", - "ruleContent": "Scoring Term Definitions: • Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 • Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team Version 1.0 31 Aug 2024 • Tmax - 145% of Tmin", + "ruleContent": "Scoring Term Definitions: • Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 • Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team Version 1.0 31 Aug 2024 • Tmax - 145% of Tmin", "parentRuleCode": "D.12.13", "pageNumber": "140" }, @@ -17192,7 +17192,7 @@ }, { "ruleCode": "D.12.13.2.a", - "ruleContent": "If Tyour < Tmax, the team score is calculated as: Endurance Time Score = 250 x ( Tmax / Tyour ) -1 ( Tmax / Tmin ) -1", + "ruleContent": "If Tyour < Tmax, the team score is calculated as: Endurance Time Score = 250 x ( Tmax / Tyour ) -1 ( Tmax / Tmin ) -1", "parentRuleCode": "D.12.13.2", "pageNumber": "141" }, @@ -17234,7 +17234,7 @@ }, { "ruleCode": "D.13.1.2", - "ruleContent": "The Efficiency score is based only on the distance the vehicle runs on the course during the Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy will be made.", + "ruleContent": "The Efficiency score is based only on the distance the vehicle runs on the course during the Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy will be made.", "parentRuleCode": "D.13.1", "pageNumber": "141" }, @@ -17300,7 +17300,7 @@ }, { "ruleCode": "D.13.2.5.c", - "ruleContent": "If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the Fuel Tank will not be refilled D.13.3.4 Version 1.0 31 Aug 2024", + "ruleContent": "If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the Fuel Tank will not be refilled D.13.3.4 Version 1.0 31 Aug 2024", "parentRuleCode": "D.13.2.5", "pageNumber": "141" }, @@ -17378,19 +17378,19 @@ }, { "ruleCode": "D.13.4.1.a", - "ruleContent": "Gasoline / Petrol 2.31 kg of CO 2 per liter", + "ruleContent": "Gasoline / Petrol 2.31 kg of CO 2 per liter", "parentRuleCode": "D.13.4.1", "pageNumber": "142" }, { "ruleCode": "D.13.4.1.b", - "ruleContent": "E85 1.65 kg of CO 2 per liter", + "ruleContent": "E85 1.65 kg of CO 2 per liter", "parentRuleCode": "D.13.4.1", "pageNumber": "142" }, { "ruleCode": "D.13.4.1.c", - "ruleContent": "Electric 0.65 kg of CO 2 per kWh", + "ruleContent": "Electric 0.65 kg of CO 2 per kWh", "parentRuleCode": "D.13.4.1", "pageNumber": "142" }, @@ -17402,7 +17402,7 @@ }, { "ruleCode": "D.13.4.3", - "ruleContent": "Scoring Term Definitions: • CO 2 min - the smallest mass of CO 2 used by any competitor who is eligible for Efficiency • CO 2 your - the mass of CO 2 used by the team being scored • Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency • Tyour - same as Endurance (D.12.13.1) • Lapyours - the number of laps driven by the team being scored • Laptotal Tmin and Latptotal CO 2 min - be the number of laps completed by the teams which set Tmin and CO 2 min, respectively", + "ruleContent": "Scoring Term Definitions: • CO 2 min - the smallest mass of CO 2 used by any competitor who is eligible for Efficiency • CO 2 your - the mass of CO 2 used by the team being scored • Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency • Tyour - same as Endurance (D.12.13.1) • Lapyours - the number of laps driven by the team being scored • Laptotal Tmin and Latptotal CO 2 min - be the number of laps completed by the teams which set Tmin and CO 2 min, respectively", "parentRuleCode": "D.13.4", "pageNumber": "142" }, @@ -17414,13 +17414,13 @@ }, { "ruleCode": "D.13.4.5", - "ruleContent": "EfficiencyFactor min is calculated using the above formula with: • CO 2 your (IC) equivalent to 60.06 kg CO 2 /100km (based on gasoline 26 ltr/100km) • CO 2 your (EV) equivalent to 20.02 kg CO 2 /100km • Tyour 1.45 times Tmin Version 1.0 31 Aug 2024", + "ruleContent": "EfficiencyFactor min is calculated using the above formula with: • CO 2 your (IC) equivalent to 60.06 kg CO 2 /100km (based on gasoline 26 ltr/100km) • CO 2 your (EV) equivalent to 20.02 kg CO 2 /100km • Tyour 1.45 times Tmin Version 1.0 31 Aug 2024", "parentRuleCode": "D.13.4", "pageNumber": "142" }, { "ruleCode": "D.13.4.6", - "ruleContent": "When the team is eligible for Efficiency. the team score is calculated as: Efficiency Score = 100 x Efficiency Factor your - Efficiency Factor min Efficiency Factor max - Efficiency Factor min", + "ruleContent": "When the team is eligible for Efficiency. the team score is calculated as: Efficiency Score = 100 x Efficiency Factor your - Efficiency Factor min Efficiency Factor max - Efficiency Factor min", "parentRuleCode": "D.13.4", "pageNumber": "143" }, @@ -17474,7 +17474,7 @@ }, { "ruleCode": "D.14.2.1.c", - "ruleContent": "(EV only) Energy Meter violations EV.3.3, EV.3.5.2", + "ruleContent": "(EV only) Energy Meter violations EV.3.3, EV.3.5.2", "parentRuleCode": "D.14.2.1", "pageNumber": "143" }, @@ -17492,19 +17492,19 @@ }, { "ruleCode": "D.14.3.1", - "ruleContent": "One or more minor violations (rules compliance, but no advantage to team): 15-30 sec", + "ruleContent": "One or more minor violations (rules compliance, but no advantage to team): 15-30 sec", "parentRuleCode": "D.14.3", "pageNumber": "143" }, { "ruleCode": "D.14.3.2", - "ruleContent": "Violation which is a potential or actual performance advantage to team: 120-360 sec", + "ruleContent": "Violation which is a potential or actual performance advantage to team: 120-360 sec", "parentRuleCode": "D.14.3", "pageNumber": "143" }, { "ruleCode": "D.14.3.3", - "ruleContent": "Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ", + "ruleContent": "Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ", "parentRuleCode": "D.14.3", "pageNumber": "143" }, @@ -17528,5 +17528,5 @@ } ], "totalRules": 2923, - "generatedAt": "2025-10-06T02:46:26.727Z" + "generatedAt": "2025-11-03T19:26:24.925Z" } \ No newline at end of file diff --git a/scripts/document-parser/package-lock.json b/scripts/document-parser/package-lock.json index cfff4c6c50..275865aeb7 100644 --- a/scripts/document-parser/package-lock.json +++ b/scripts/document-parser/package-lock.json @@ -8,11 +8,10 @@ "name": "pdf-text-extractor", "version": "1.0.0", "dependencies": { - "pdf-parse": "^1.1.1" + "pdf-parse-new": "^1.4.1" }, "devDependencies": { "@types/node": "^20.0.0", - "@types/pdf-parse": "^1.1.5", "ts-node": "^10.9.0", "typescript": "^5.0.0" } @@ -96,16 +95,6 @@ "undici-types": "~6.21.0" } }, - "node_modules/@types/pdf-parse": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/@types/pdf-parse/-/pdf-parse-1.1.5.tgz", - "integrity": "sha512-kBfrSXsloMnUJOKi25s3+hRmkycHfLK6A09eRGqF/N8BkQoPUmaCr+q8Cli5FnfohEz/rsv82zAiPz/LXtOGhA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/acorn": { "version": "8.15.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", @@ -146,15 +135,6 @@ "dev": true, "license": "MIT" }, - "node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } - }, "node_modules/diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", @@ -184,17 +164,34 @@ "integrity": "sha512-DRI60hzo2oKN1ma0ckc6nQWlHU69RH6xN0sjQTjMpChPfTYvKZdcQFfdYK2RWbJcKyUizSIy/l8OTGxMAM1QDw==", "license": "MIT" }, - "node_modules/pdf-parse": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/pdf-parse/-/pdf-parse-1.1.1.tgz", - "integrity": "sha512-v6ZJ/efsBpGrGGknjtq9J/oC8tZWq0KWL5vQrk2GlzLEQPUDB1ex+13Rmidl1neNN358Jn9EHZw5y07FFtaC7A==", + "node_modules/pdf-parse-new": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/pdf-parse-new/-/pdf-parse-new-1.4.1.tgz", + "integrity": "sha512-6DAySxlMpTeQ77+adv01ckUB13/bFvwaXSN38umuItHJewLhJFMOUWJlFPCu+YB+sA9gkLQL8Av5SoG5yJD5vw==", "license": "MIT", "dependencies": { - "debug": "^3.1.0", + "debug": "^4.3.4", "node-ensure": "^0.0.0" }, "engines": { - "node": ">=6.8.1" + "node": ">=20.11.0" + } + }, + "node_modules/pdf-parse-new/node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, "node_modules/ts-node": { diff --git a/scripts/document-parser/package.json b/scripts/document-parser/package.json index cf7d248a93..2998841211 100644 --- a/scripts/document-parser/package.json +++ b/scripts/document-parser/package.json @@ -3,16 +3,15 @@ "version": "1.0.0", "scripts": { "build": "tsc", - "start": "ts-node FSAEparser.ts", - "dev": "ts-node FSAEparser.ts" + "start": "ts-node index.ts", + "dev": "ts-node index.ts" }, "dependencies": { - "pdf-parse": "^1.1.1" + "pdf-parse-new": "^1.4.1" }, "devDependencies": { "@types/node": "^20.0.0", - "@types/pdf-parse": "^1.1.5", "ts-node": "^10.9.0", "typescript": "^5.0.0" } -} \ No newline at end of file +} diff --git a/scripts/document-parser/parsers/FHEParser.ts b/scripts/document-parser/parsers/FHEParser.ts new file mode 100644 index 0000000000..32963a8b4c --- /dev/null +++ b/scripts/document-parser/parsers/FHEParser.ts @@ -0,0 +1,96 @@ +import { RuleParser, RuleData, Rule } from '../RuleParser'; + +export class FHEParser extends RuleParser { + protected hasImgInfo = true; + + protected extractRules(text: string): RuleData[] { + const rules: RuleData[] = []; + const lines = text.split('\n'); + + let inRulesSection = false; + let currentRule: { code: string; text: string; pageNumber: string } | null = null; + let currentPageNumber = '0'; + + const saveCurrentRule = () => { + if (currentRule) { + // Check if the rule has lettered sub-items + const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); + + if (subRules.length > 0) { + // Add the main rule and all sub-rules + rules.push(...subRules); + } else { + // No sub-rules, just add the main rule + rules.push({ + ruleCode: currentRule.code, + ruleContent: currentRule.text.trim(), + parentRuleCode: this.findParentRuleCode(currentRule.code), + pageNumber: currentRule.pageNumber + }); + } + } + }; + + for (const line of lines) { + const trimmedLine = line.trim(); + if (!trimmedLine) continue; + if (/^Index of Tables/i.test(trimmedLine)) { + inRulesSection = true; + } + // Skip table of contents + if (inRulesSection) { + if (/^2025 Formula Hybrid.*Rules/i.test(trimmedLine)) { + saveCurrentRule(); + currentRule = null; + continue; + } + + // Update page number if found + const pageMatch = this.extractPageNumber(trimmedLine); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + // Check if this line starts a new rule + const rule = this.parseRuleNumber(trimmedLine); + if (rule) { + saveCurrentRule(); + + currentRule = { + code: rule.ruleCode, + text: rule.ruleContent, + pageNumber: currentPageNumber + }; + } else if (currentRule) { + // Append to existing rule + currentRule.text += ' ' + trimmedLine; + } + } + } + + saveCurrentRule(); + return rules; + } + + private parseRuleNumber(line: string): Rule | null { + // Match FHE rule patterns like "1T3.17.1" followed by text + const rulePattern = /^(\d+[A-Z]+\d+(?:\.\d+)*)\s+(.+)$/; + + // "PART A1 - ADMINISTRATIVE REGULATIONS" + const partPattern = /^(PART\s+[A-Z0-9]+)\s+-\s+(.+)$/; + + // "ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW" + const articlePattern = /^(ARTICLE\s+[A-Z]+\d+)\s+(.+)$/; + + let match = line.match(rulePattern) || line.match(partPattern) || line.match(articlePattern); + if (match) { + return { + ruleCode: match[1], + ruleContent: match[2] + }; + } + + return null; + } +} diff --git a/scripts/document-parser/parsers/FSAEParser.ts b/scripts/document-parser/parsers/FSAEParser.ts new file mode 100644 index 0000000000..71c4380506 --- /dev/null +++ b/scripts/document-parser/parsers/FSAEParser.ts @@ -0,0 +1,80 @@ +import { RuleParser, RuleData, Rule } from '../RuleParser'; + +export class FSAEParser extends RuleParser { + protected hasImgInfo = false; + + protected extractRules(text: string): RuleData[] { + const rules: RuleData[] = []; + const lines = text.split('\n'); + + let currentRule: { code: string; text: string; pageNumber: string } | null = null; + let currentPageNumber = '1'; + + const saveCurrentRule = () => { + if (currentRule) { + // Check if the rule has lettered sub-items + const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); + + if (subRules.length > 0) { + // Add the main rule and all sub-rules + rules.push(...subRules); + } else { + // No sub-rules, just add the main rule + rules.push({ + ruleCode: currentRule.code, + ruleContent: currentRule.text.trim(), + parentRuleCode: this.findParentRuleCode(currentRule.code), + pageNumber: currentRule.pageNumber + }); + } + } + }; + + for (const line of lines) { + const trimmedLine = line.trim(); + if (!trimmedLine) continue; + + // Update page number if found + const pageMatch = this.extractPageNumber(trimmedLine); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + // Check if this line starts a new rule + const rule = this.parseRuleNumber(trimmedLine); + if (rule) { + saveCurrentRule(); + + currentRule = { + code: rule.ruleCode, + text: rule.ruleContent, + pageNumber: currentPageNumber + }; + } else if (currentRule) { + // Append to existing rule + currentRule.text += ' ' + trimmedLine; + } + } + + saveCurrentRule(); + return rules; + } + + private parseRuleNumber(line: string): Rule | null { + // Match rule patterns like "GR.1.1" followed by text + const rulePattern = /^([A-Z]{1,4}(?:\.[\d]+)+)\s+(.+)$/; + // Match section patterns like "GR - GENERAL REGULATIONS" + const sectionPattern = /^([A-Z]{1,4})\s*-\s*([A-Z][A-Z\s]+)$/; + + let match = line.match(rulePattern) || line.match(sectionPattern); + if (match) { + return { + ruleCode: match[1], + ruleContent: match[2] + }; + } + + return null; + } +} diff --git a/scripts/document-parser/txtVersions/FHE.txt b/scripts/document-parser/txtVersions/FHE.txt index 6f8e2872f7..db20b85b90 100644 --- a/scripts/document-parser/txtVersions/FHE.txt +++ b/scripts/document-parser/txtVersions/FHE.txt @@ -1,6864 +1,6006 @@ - -© 2019 SAE International and the Trustees of Dartmouth College - - - - - - - - -2025 -Formula Hybrid + -Electric Rules -Version 3 - - - -January 19, 2025 - - - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Formula Hybrid + Electric Rules Committee - - - -Formula Hybrid + Electric gratefully acknowledges the contributions of the following people, -who have donated countless hours and immeasurable effort into making the Formula Hybrid + -Electric competition a stellar, multidisciplinary learning experience, while keeping the -competition as safe as possible. - - -Michael Chapman, Director, Formula Hybrid + Electric ** -Douglas Fraser, P.E., Director Emeritus, Formula Hybrid + Electric* -Gary Grise, IEEE** -Kathy Grise, IEEE** -Missy Chmielowiec, General Motors (Chief Project Management Judge)** -Paul Messier, BAE Systems* -Tremont Miao, Analog Devices, Inc., Retired (Electrical Tech Examiner)* -Michael Royce, Albion Associates (Chief Technical Examiner) -Prof. Charles R. Sullivan, Thayer School of Engineering, Dartmouth College* -Jalyn Kelley, IEEE -Prof. Douglas W. Van Citters, Thayer School of Engineering (Chief Mechanical Tech Inspector) -Rob Wills, P.E., Intergrid, LLC* (Chief Electrical Tech Inspector and Electrical Rules Chair) -Kendra Bogren-Brock, BAE Systems (Chief Design Judge) -Kaley Zundel, SAE -Andrew Benagh, New England Region SCCA -Wiley Cox, New England Region SCCA -Jalyn Kelly, IEEE -Jennifer Smith, Keurig Dr. Pepper ** - -*Members of the Electrical Rules subcommittee. -** Members of the Project Management subcommittee - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - RULES CHANGES FOR 2025 - -The following is a list of noteworthy changes from the 2024 Formula Hybrid + Electric rules. It is not -complete and is not binding. If there are any differences between this summary and the official rules, -the rules will prevail. Therefore, it is the responsibility of the competitors to read the published Rules -thoroughly. - -Rule Number Section Change - -T3.8.8 SES Approval dates Dates updated -T15.1.3 Fire extinguishers Gauge must show “FULL” -S3.2.1 Design Report Increased the page limit from 9 to 10 -S3.3 Sustainability Requirement Change to make requirements more constrained -S3.6 Excess Size Design Reports Typo -S3.6 Excess Size Design Reports Increased the page limit from 9 to 10 -S3.11 Judging Criteria Typo -S3.13 Scoring Formula Reference to the “Lead Design Judge” -D7.5.2 Accumulator Charge Clarification (added “approved”) -D7.5.3 Accumulator Charge Clarification (changed “outside” to “off-board”) -Appendix C Project Management Presentation Added text about who can speak -Appendix C Figure 46 Scoring updated -Appendix C Figure 48 – Evaluation criteria Replaced with version that -matches scorecard -Appendix C Characteristics on an excellent PM Added “SMART’ goals text -Appendix C Figure 49 New scoresheet -Appendix D Design Judging Form Updated scoring rubric and redesigned -the form -Appendix F Fire extinguishers Gauge must show “FULL” -Appendix I Virtual Racing Challenge Removed for 2025 - -Electrical Rules Updates - -A1.2.4 Segment Energy Reference to Table 8 added -EV2.3.4 Accumulator Container Typo (changed “TSVP” to “TSV”) -EV2.8.3 Accumulator – Isolation Relays Changed to “60 VDC (or 42 VAC RMS)” -EV2.10.4 Discharge Current Clarification (added “expected”) -EV4.1.4 GLV & Carbon Frame New Requirement -EV4.1.7 GLV Battery Pack Allowing team-constructed battery pack -EV7.9.2 Insulation Monitoring Device Change in IMD requirements -EV7.9.2 Insulation Monitoring Device (IMD) Added Bender “Iso175C-32-SS” -EV7.9.8 IMD high voltage sense connections Fixed broken link -EV9.3.2 Electrical Systems OK Lamps(ESOK) Typo (“SSOK” changed to “ESOK”) -EV9.5.1 Accumulator Voltage Indicator Changed “30 VDC” to “60 VDC” -PART EV - EV10.4.1 AMS Test Typo (changed (“three” to “two”) -PART EV - EV10.4.1 AMS Test – point 2 Clarification -EV12.2.6 Charger Inspection Chargers must be reviewed -EV12.2.15 Charging External Charger Safety -PART EV - ARTICLE EV14 Acronyms SSOK changed to ESOK - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Table 8 Voltage and Energy Limits Changes to maximum GLV -Figure 37CAN watchdog Added CAN watchdog failure -Figure 37Acronym SSOK changed to ESOK (see EV14) -Figure 37Shutdown Sources Fixed typo (“coclpit” to “cockpit”) -Figure 37Shutdown Sources Far right row corrected to all “yes” -EV9.3.3. Shutdown Sources Section Removed - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - - -Advice from Our Rules Committee - -Formula Hybrid + Electric’s Rules Committee welcomes you to the most challenging of the SAE Collegiate -Design Series competitions. Many of us are former Formula Hybrid + Electric competitors who are now -professionals in the engineering industry. We have two goals: to have a safe competition and to see -every team on the track. - - -Top 10 Tips for Building a Formula Hybrid + Electric Racecar and Passing Tech -Inspection - -Start work early. Everything takes longer than you expect. -Consider starting from an existing FSAE chassis and concentrating on the powertrain. -Read all rules carefully. If you don’t understand something, ask us for clarification. -Use the Project Management techniques and tools. They will make life easier—and will help you as -engineers. Most importantly, they will help you arrive at the competition with a finished car. -Take advantage of our Mentor Program. These experts will help you solve issues—and will be valuable -career contacts. -Your car should be running on its own power at least a month prior to competition. -Make brake testing an early priority. -Take advantage of the extra day of electrical tech inspection on Sunday. That will give you extra time if -you need to make modifications. This is also a good time to have your documentation reviewed. -Watch out for the rules tagged with the "attention" symbol. These rules have a history of tripping up -teams. - - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Index -RULES CHANGES FOR 2025 III -PART A - ADMINISTRATIVE REGULATIONS 1 -ARTICLE A1 1 -A1.1 1 -A1.2 1 -A1.3 2 -A1.4 2 -A1.5 2 -ARTICLE A2 3 -A2.1 3 -A2.2 3 -A2.3 3 -A2.4 4 -A2.5 4 -ARTICLE A3 4 -A3.1 4 -A3.2 4 -A3.3 4 -ARTICLE A4 5 -A4.1 5 -A4.2 5 -A4.3 5 -A4.4 5 -A4.5 5 -A4.6 5 -A4.7 5 -A4.8 6 -ARTICLE A5 6 -A5.2 6 -A5.3 6 -INDIVIDUAL PARTICIPATION REQUIREMENTS 7 -A5.4 7 -A5.5 7 -A5.6 7 -A5.7 7 -A5.8 7 -A5.9 8 -A5.10 8 -A5.11 8 -ARTICLE A6 8 -A6.1 8 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -A6.2 8 -A6.3 9 -A6.4 9 -ARTICLE A7 10 -A7.1 10 -A7.2 10 -A7.3 10 -A7.4 10 -A7.5 10 -A7.6 11 -ARTICLE A8 11 -A8.1 11 -A8.2 11 -A8.3 11 -ARTICLE A9 11 -A9.1 11 -A9.2 12 -A9.3 12 -A9.4 13 -ARTICLE A10 15 -ARTICLE A11 15 -A11.1 15 -A11.2 15 -A11.3 15 -A11.4 15 -A11.5 16 -A11.6 16 -ARTICLE A12 16 -A12.1 16 -A12.2 16 -A12.3 16 -A12.4 16 -A12.5 17 -A12.6 17 -PART T - GENERAL TECHNICAL REQUIREMENTS 18 -ARTICLE T1 18 -T1.1 18 -T1.2 18 -ARTICLE T2 19 -T2.1 19 -T2.2 19 -T2.3 20 -T2.4 20 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -T2.5 20 -ARTICLE T3 20 -T3.1 20 -T3.2 20 -T3.3 21 -T3.4 23 -T3.5 23 -T3.6 24 -T3.7 24 -T3.8 24 -T3.9 25 -T3.10 28 -T3.11 28 -T3.12 29 -T3.13 30 -T3.14 30 -T3.15 30 -T3.16 30 -T3.17 32 -T3.18 32 -T3.19 32 -T3.20 32 -T3.21 34 -T3.22 35 -T3.23 35 -T3.24 36 -T3.25 37 -T3.26 37 -T3.27 37 -T3.28 37 -T3.29 38 -T3.30 38 -T3.31 39 -T3.32 39 -T3.33 39 -T3.34 40 -T3.35 40 -T3.36 40 -T3.37 40 -T3.38 40 -T3.39 41 -T3.40 41 -ARTICLE T4 42 -T4.1 42 -T4.2 43 -T4.3 44 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -T4.4 44 -T4.5 44 -T4.6 46 -T4.7 46 -T4.8 47 -T4.9 47 -ARTICLE T5 47 -T5.1 47 -T5.2 48 -T5.3 49 -T5.4 50 -T5.5 51 -T5.6 53 -T5.7 54 -T5.8 54 -ARTICLE T6 54 -T6.1 54 -T6.2 54 -T6.3 54 -T6.4 54 -T6.5 55 -T6.6 56 -T6.7 56 -ARTICLE T7 56 -T7.1 56 -T7.2 57 -T7.3 57 -T7.4 58 -ARTICLE T8 58 -T8.1 58 -T8.2 59 -T8.3 59 -T8.4 59 -T8.5 60 -ARTICLE T9 61 -T9.1 61 -T9.2 61 -T9.3 61 -T9.4 61 -T9.5 61 -T9.6 61 -ARTICLE T10 61 -T10.1 61 -T10.2 62 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE T11 62 -T11.1 62 -T11.2 63 -ARTICLE T12 64 -T12.1 64 -T12.2 64 -ARTICLE T13 65 -T13.1 65 -T13.2 65 -T13.3 66 -T13.4 66 -ARTICLE T14 66 -T14.1 66 -T14.2 66 -T14.3 66 -T14.4 66 -T14.5 67 -T14.6 68 -T14.7 68 -T14.8 68 -T14.9 68 -T14.10 68 -T14.11 68 -T14.12 68 -T14.13 68 -ARTICLE T15 68 -T15.1 68 -T15.2 69 -T15.3 69 -T15.4 69 -T15.5 69 -T15.6 69 -T15.7 69 -ARTICLE T16 69 -T16.1 69 -PART IC - INTERNAL COMBUSTION ENGINE 69 -ARTICLE IC1 70 -IC1.1 70 -IC1.2 70 -IC1.3 70 -IC1.4 71 -IC1.5 71 -IC1.6 72 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -IC1.7 73 -IC1.8 73 -IC1.9 73 -IC1.10 74 -IC1.11 74 -ARTICLE IC2 74 -IC2.1 74 -IC2.2 75 -IC2.3 75 -IC2.4 75 -IC2.5 75 -IC2.6 75 -IC2.7 76 -IC2.8 76 -ARTICLE IC3 76 -IC3.1 76 -IC3.2 77 -IC3.3 77 -IC3.4 77 -PART EV - ELECTRICAL POWERTRAINS AND SYSTEMS 78 -ARTICLE EV1 78 -EV1.1 78 -EV1.2 79 -ARTICLE EV2 80 -EV2.1 80 -EV2.2 80 -EV2.3 80 -EV2.4 81 -EV2.5 82 -EV2.6 82 -EV2.7 84 -EV2.8 85 -EV2.9 86 -EV2.10 87 -EV2.11 88 -EV2.12 90 -ARTICLE EV3 92 -EV3.1 92 -EV3.2 93 -EV3.3 94 -EV3.4 95 -EV3.5 96 -EV3.6 97 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV4 98 -EV4.1 98 -ARTICLE EV5 99 -EV5.1 99 -EV5.2 99 -EV5.3 99 -EV5.4 100 -EV5.5 101 -ARTICLE EV6 103 -ARTICLE EV7 104 -EV7.1 104 -EV7.2 106 -EV7.3 107 -EV7.4 107 -EV7.5 108 -EV7.6 108 -EV7.7 109 -EV7.8 109 -EV7.9 110 -ARTICLE EV8 112 -EV8.1 112 -ARTICLE EV9 113 -EV9.1 113 -EV9.2 113 -EV9.3 114 -EV9.4 114 -EV9.5 114 -EV9.6 115 -ARTICLE EV10 116 -EV10.1 116 -EV10.2 116 -EV10.3 116 -EV10.4 118 -EV10.5 118 -ARTICLE EV11 120 -EV11.1 120 -EV11.2 120 -ARTICLE EV12 121 -EV12.1 121 -EV12.2 121 -EV12.3 122 -EV12.4 122 -ARTICLE EV13 124 -EV13.1 124 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV13.2 124 -ARTICLE EV14 125 -PART S - STATIC EVENTS 126 -ARTICLE S1 127 -S1.1 127 -S1.2 127 -S1.3 127 -S1.4 127 -S1.5 128 -S1.6 128 -ARTICLE S2 129 -S2.1 129 -S2.2 129 -S2.3 129 -S2.4 130 -S2.5 131 -S2.6 131 -S2.7 131 -S2.8 132 -S2.9 132 -S2.10 132 -ARTICLE S3 133 -S3.1 133 -S3.2 133 -S3.3 134 -S3.4 134 -S3.5 134 -S3.6 135 -S3.7 135 -S3.8 135 -S3.9 135 -S3.10 135 -S3.11 135 -S3.12 135 -S3.13 136 -S3.14 136 -PART D - DYNAMIC EVENTS 137 -ARTICLE D1 137 -D1.1 137 -D1.2 137 -D1.3 137 -D1.4 137 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE D2 138 -ARTICLE D3 138 -D3.1 138 -D3.2 138 -D3.3 138 -D3.4 138 -D3.5 138 -D3.6 138 -D3.7 138 -D3.8 138 -ARTICLE D4 140 -D4.1 140 -ARTICLE D5 140 -D5.1 140 -D5.2 140 -D5.4 140 -D5.5 141 -D5.6 141 -D5.7 141 -D5.8 141 -D5.9 141 -ARTICLE D6 141 -D6.1 141 -D6.2 142 -D6.3 142 -D6.4 142 -D6.5 143 -D6.6 143 -D6.7 143 -ARTICLE D7 143 -D7.1 143 -D7.2 143 -D7.3 144 -D7.4 144 -D7.5 144 -D7.6 144 -D7.7 145 -D7.8 145 -D7.9 145 -D7.10 145 -D7.11 145 -D7.12 145 -D7.13 146 -D7.14 147 -D7.15 147 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -D7.16 147 -D7.17 147 -D7.18 149 -D7.19 150 -D7.20 150 -D7.21 150 -D7.22 150 -D7.23 150 -ARTICLE D8 152 -D8.1 152 -D8.2 152 -D8.3 152 -D8.4 152 -D8.5 152 -D8.6 152 -D8.7 153 -ARTICLE D9 153 -D9.1 153 -D9.2 153 -D9.3 153 -D9.4 153 -D9.5 153 -D9.6 153 -D9.7 154 -ARTICLE D10 154 -D10.1 154 -D10.2 154 -D10.3 154 -D10.4 154 -D10.5 155 -D10.6 155 -D10.7 155 -D10.8 155 -ARTICLE D11 155 -D11.1 155 -D11.2 155 -D11.3 155 -D11.4 155 -ARTICLE D12 156 -APPENDIX A 157 -APPENDIX B 158 -APPENDIX C 160 -APPENDIX D 170 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -APPENDIX E 171 -APPENDIX F 172 -APPENDIX G 173 -APPENDIX H 174 -APPENDIX I 175 - -Index of Figures - -FIGURE 1 - FORMULA HYBRID + ELECTRIC SUPPORT PAGE 16 -FIGURE 2 - OPEN WHEEL DEFINITION 19 -FIGURE 3 - TRIANGULATION 21 -FIGURES FROM TOP: 4A, 4B, AND 4C- ROLL HOOPS AND HELMET CLEARANCE 26 -FIGURE 5 - PERCY -- 95TH PERCENTILE MALE WITH HELMET 26 -FIGURE 6 – 95TH PERCENTILE TEMPLATE POSITIONING 27 -FIGURE 7 - MAIN AND FRONT HOOP BRACING 29 -FIGURE 8 – DOUBLE-LUG JOINT 30 -FIGURE 9 – DOUBLE LUG JOINT 30 -FIGURE 10 – SLEEVED BUTT JOINT 30 -FIGURE 11 – SIDE IMPACT STRUCTURE 35 -FIGURE 12 – SIDE IMPACT ZONE DEFINITION FOR A MONOCOQUE 39 -FIGURE 13 – ALTERNATE SINGLE BOLT ATTACHMENT 40 -FIGURE 14 – COCKPIT OPENING TEMPLATE 41 -FIGURE 15 – COCKPIT INTERNAL CROSS SECTION TEMPLATE 42 -FIGURE 16 – EXAMPLES OF FIREWALL CONFIGURATIONS 45 -FIGURE 17 - SEAT BELT THREADING EXAMPLES 48 -FIGURE 18 – LAP BELT ANGLES WITH UPRIGHT DRIVER 49 -FIGURE 19 – SHOULDER HARNESS MOUNTING – TOP VIEW 50 -FIGURE 20 - SHOULDER HARNESS MOUNTING – SIDE VIEW 50 -FIGURE 21 – OVER-TRAVEL SWITCHES 57 -FIGURE 22 - FINAL DRIVE SCATTER SHIELD EXAMPLE 59 -FIGURE 23 - EXAMPLES OF POSITIVE LOCKING NUTS 62 -FIGURE 24 - EXAMPLE CAR NUMBER 64 -FIGURE 25- SURFACE ENVELOPE 70 -FIGURE 26 – HOSE CLAMPS 73 -FIGURE 27 - FILLER NECK 75 -FIGURE 28 - ACCUMULATOR STICKER 80 -FIGURE 29 - EXAMPLE NP3S CONFIGURATION 83 -FIGURE 30 – EXAMPLE 5S4P CONFIGURATION 84 -FIGURE 31 - EXAMPLE ACCUMULATOR SEGMENTING 86 -FIGURE 32 - VIRTUAL ACCUMULATOR EXAMPLE 91 -FIGURE 33 - FINGER PROBE 92 -FIGURE 34 - HIGH VOLTAGE LABEL 92 -FIGURE 35 - CONNECTION STACK-UP 95 -FIGURE 36 – CREEPAGE DISTANCE EXAMPLE 101 -FIGURE 37 - PRIORITY OF SHUTDOWN SOURCES 104 -FIGURE 38 - EXAMPLE MASTER SWITCH AND SHUTDOWN CIRCUIT CONFIGURATION 106 -FIGURE 39 - TYPICAL MASTER SWITCH 107 -FIGURE 40 - INTERNATIONAL KILL SWITCH SYMBOL 108 -FIGURE 41 - EXAMPLE SHUTDOWN STATE DIAGRAM 110 -FIGURE 42 – TYPICAL ESOK LAMP 114 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -FIGURE 43 – INSULATION MONITORING DEVICE TEST 116 -FIGURE 44 118 -FIGURE 45 - PLOT OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 159 -FIGURE 46 - SCORING GUIDELINES: PROJECT PLAN COMPONENT 164 -FIGURE 47: CHANGE MANAGEMENT REPORT SCORING GUIDELINES 166 -FIGURE 48 – EVALUATION CRITERIA 168 -FIGURE 49 - PROJECT MANAGEMENT SCORING SHEET 169 -FIGURE 50 - LATCHING FOR ACTIVE-HIGH OUTPUT FIGURE 51 - LATCHING FOR ACTIVE-LOW OUTPUT 173 - -Index of Tables - -TABLE 1 – 2024 ENERGY AND ACCUMULATOR LIMITS 1 -TABLE 2 - EVENT POINTS 2 -TABLE 3 - REQUIRED DOCUMENTS 12 -TABLE 4 - BASELINE STEEL 22 -TABLE 5 - STEEL TUBING MINIMUM WALL THICKNESSES 23 -TABLE 6 - 95TH PERCENTILE MALE TEMPLATE DIMENSIONS 25 -TABLE 7 – SFI / FIA STANDARDS LOGOS 66 -TABLE 8 - VOLTAGE AND ENERGY LIMITS 79 -TABLE 9 - AMS VOLTAGE MONITORING 89 -TABLE 10 – AMS TEMPERATURE MONITORING 89 -TABLE 11 - RECOMMENDED TS CONNECTION FASTENERS 96 -TABLE 12 – MINIMUM SPACINGS 100 -TABLE 13 - INSULATING MATERIAL - MINIMUM TEMPERATURES AND THICKNESSES 100 -TABLE 14 – PCB TS/GLV SPACINGS 102 -TABLE 15 – STATIC EVENT MAXIMUM SCORES 126 -TABLE 16 - PROJECT MANAGEMENT SCORING 129 -TABLE 17 - DYNAMIC EVENT MAXIMUM SCORES 137 -TABLE 18 - FLAGS 151 -TABLE 19 - ACCUMULATOR DEVICE ENERGY CALCULATIONS 157 -TABLE 20 - FUEL ENERGY EQUIVALENCIES 157 -TABLE 21 - EXAMPLE OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 158 -TABLE 22 – WIRE CURRENT CAPACITY (SINGLE CONDUCTOR IN AIR) 171 - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -PART A1 - ADMINISTRATIVE REGULATIONS -ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW AND COMPETITION -1A1.1 Formula Hybrid + Electric Competition Objective -1A1.1.1 The Formula Hybrid + Electric competition challenges teams of university undergraduate and +© 2019 SAE International and the Trustees of Dartmouth College +2025 +Formula Hybrid + +Electric Rules +Version 3 +January 19, 2025 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Formula Hybrid + Electric Rules Committee +Formula Hybrid + Electric gratefully acknowledges the contributions of the following people, +who have donated countless hours and immeasurable effort into making the Formula Hybrid + +Electric competition a stellar, multidisciplinary learning experience, while keeping the +competition as safe as possible. +Michael Chapman, Director, Formula Hybrid + Electric ** +Douglas Fraser, P.E., Director Emeritus, Formula Hybrid + Electric* +Gary Grise, IEEE** +Kathy Grise, IEEE** +Missy Chmielowiec, General Motors (Chief Project Management Judge)** +Paul Messier, BAE Systems* +Tremont Miao, Analog Devices, Inc., Retired (Electrical Tech Examiner)* +Michael Royce, Albion Associates (Chief Technical Examiner) +Prof. Charles R. Sullivan, Thayer School of Engineering, Dartmouth College* +Jalyn Kelley, IEEE +Prof. Douglas W. Van Citters, Thayer School of Engineering (Chief Mechanical Tech Inspector) +Rob Wills, P.E., Intergrid, LLC* (Chief Electrical Tech Inspector and Electrical Rules Chair) +Kendra Bogren-Brock, BAE Systems (Chief Design Judge) +Kaley Zundel, SAE +Andrew Benagh, New England Region SCCA +Wiley Cox, New England Region SCCA +Jalyn Kelly, IEEE +Jennifer Smith, Keurig Dr. Pepper ** +*Members of the Electrical Rules subcommittee. +** Members of the Project Management subcommittee + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +RULES CHANGES FOR 2025 +The following is a list of noteworthy changes from the 2024 Formula Hybrid + Electric rules. It is not +complete and is not binding. If there are any differences between this summary and the official rules, +the rules will prevail. Therefore, it is the responsibility of the competitors to read the published Rules +thoroughly. +Rule Number Section Change +T3.8.8 SES Approval dates Dates updated +T15.1.3 Fire extinguishers Gauge must show “FULL” +S3.2.1 Design Report Increased the page limit from 9 to 10 +S3.3 Sustainability Requirement Change to make requirements more constrained +S3.6 Excess Size Design Reports Typo +S3.6 Excess Size Design Reports Increased the page limit from 9 to 10 +S3.11 Judging Criteria Typo +S3.13 Scoring Formula Reference to the “Lead Design Judge” +D7.5.2 Accumulator Charge Clarification (added “approved”) +D7.5.3 Accumulator Charge Clarification (changed “outside” to “off-board”) +Appendix C Project Management Presentation Added text about who can speak +Appendix C Figure 46 Scoring updated +Appendix C Figure 48 – Evaluation criteria Replaced with version that +matches scorecard +Appendix C Characteristics on an excellent PM Added “SMART’ goals text +Appendix C Figure 49 New scoresheet +Appendix D Design Judging Form Updated scoring rubric and redesigned +the form +Appendix F Fire extinguishers Gauge must show “FULL” +Appendix I Virtual Racing Challenge Removed for 2025 +Electrical Rules Updates +A1.2.4 Segment Energy Reference to Table 8 added +EV2.3.4 Accumulator Container Typo (changed “TSVP” to “TSV”) +EV2.8.3 Accumulator – Isolation Relays Changed to “60 VDC (or 42 VAC RMS)” +EV2.10.4 Discharge Current Clarification (added “expected”) +EV4.1.4 GLV & Carbon Frame New Requirement +EV4.1.7 GLV Battery Pack Allowing team-constructed battery pack +EV7.9.2 Insulation Monitoring Device Change in IMD requirements +EV7.9.2 Insulation Monitoring Device (IMD) Added Bender “Iso175C-32-SS” +EV7.9.8 IMD high voltage sense connections Fixed broken link +EV9.3.2 Electrical Systems OK Lamps(ESOK) Typo (“SSOK” changed to “ESOK”) +EV9.5.1 Accumulator Voltage Indicator Changed “30 VDC” to “60 VDC” +PART EV - EV10.4.1 AMS Test Typo (changed (“three” to “two”) +PART EV - EV10.4.1 AMS Test – point 2 Clarification +EV12.2.6 Charger Inspection Chargers must be reviewed +EV12.2.15 Charging External Charger Safety +PART EV - ARTICLE EV14 Acronyms SSOK changed to ESOK + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Table 8 Voltage and Energy Limits Changes to maximum GLV +Figure 37CAN watchdog Added CAN watchdog failure +Figure 37Acronym SSOK changed to ESOK (see EV14) +Figure 37Shutdown Sources Fixed typo (“coclpit” to “cockpit”) +Figure 37Shutdown Sources Far right row corrected to all “yes” +EV9.3.3. Shutdown Sources Section Removed + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Advice from Our Rules Committee +Formula Hybrid + Electric’s Rules Committee welcomes you to the most challenging of the SAE Collegiate +Design Series competitions. Many of us are former Formula Hybrid + Electric competitors who are now +professionals in the engineering industry. We have two goals: to have a safe competition and to see +every team on the track. +Top 10 Tips for Building a Formula Hybrid + Electric Racecar and Passing Tech +Inspection +Start work early. Everything takes longer than you expect. +Consider starting from an existing FSAE chassis and concentrating on the powertrain. +Read all rules carefully. If you don’t understand something, ask us for clarification. +Use the Project Management techniques and tools. They will make life easier—and will help you as +engineers. Most importantly, they will help you arrive at the competition with a finished car. +Take advantage of our Mentor Program. These experts will help you solve issues—and will be valuable +career contacts. +Your car should be running on its own power at least a month prior to competition. +Make brake testing an early priority. +Take advantage of the extra day of electrical tech inspection on Sunday. That will give you extra time if +you need to make modifications. This is also a good time to have your documentation reviewed. +Watch out for the rules tagged with the "attention" symbol. These rules have a history of tripping up +teams. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Index +RULES CHANGES FOR 2025 III +PART A - ADMINISTRATIVE REGULATIONS 1 +ARTICLE A1 1 +A1.1 1 +A1.2 1 +A1.3 2 +A1.4 2 +A1.5 2 +ARTICLE A2 3 +A2.1 3 +A2.2 3 +A2.3 3 +A2.4 4 +A2.5 4 +ARTICLE A3 4 +A3.1 4 +A3.2 4 +A3.3 4 +ARTICLE A4 5 +A4.1 5 +A4.2 5 +A4.3 5 +A4.4 5 +A4.5 5 +A4.6 5 +A4.7 5 +A4.8 6 +ARTICLE A5 6 +A5.2 6 +A5.3 6 +INDIVIDUAL PARTICIPATION REQUIREMENTS 7 +A5.4 7 +A5.5 7 +A5.6 7 +A5.7 7 +A5.8 7 +A5.9 8 +A5.10 8 +A5.11 8 +ARTICLE A6 8 +A6.1 8 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +A6.2 8 +A6.3 9 +A6.4 9 +ARTICLE A7 10 +A7.1 10 +A7.2 10 +A7.3 10 +A7.4 10 +A7.5 10 +A7.6 11 +ARTICLE A8 11 +A8.1 11 +A8.2 11 +A8.3 11 +ARTICLE A9 11 +A9.1 11 +A9.2 12 +A9.3 12 +A9.4 13 +ARTICLE A10 15 +ARTICLE A11 15 +A11.1 15 +A11.2 15 +A11.3 15 +A11.4 15 +A11.5 16 +A11.6 16 +ARTICLE A12 16 +A12.1 16 +A12.2 16 +A12.3 16 +A12.4 16 +A12.5 17 +A12.6 17 +PART T - GENERAL TECHNICAL REQUIREMENTS 18 +ARTICLE T1 18 +T1.1 18 +T1.2 18 +ARTICLE T2 19 +T2.1 19 +T2.2 19 +T2.3 20 +T2.4 20 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +T2.5 20 +ARTICLE T3 20 +T3.1 20 +T3.2 20 +T3.3 21 +T3.4 23 +T3.5 23 +T3.6 24 +T3.7 24 +T3.8 24 +T3.9 25 +T3.10 28 +T3.11 28 +T3.12 29 +T3.13 30 +T3.14 30 +T3.15 30 +T3.16 30 +T3.17 32 +T3.18 32 +T3.19 32 +T3.20 32 +T3.21 34 +T3.22 35 +T3.23 35 +T3.24 36 +T3.25 37 +T3.26 37 +T3.27 37 +T3.28 37 +T3.29 38 +T3.30 38 +T3.31 39 +T3.32 39 +T3.33 39 +T3.34 40 +T3.35 40 +T3.36 40 +T3.37 40 +T3.38 40 +T3.39 41 +T3.40 41 +ARTICLE T4 42 +T4.1 42 +T4.2 43 +T4.3 44 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +T4.4 44 +T4.5 44 +T4.6 46 +T4.7 46 +T4.8 47 +T4.9 47 +ARTICLE T5 47 +T5.1 47 +T5.2 48 +T5.3 49 +T5.4 50 +T5.5 51 +T5.6 53 +T5.7 54 +T5.8 54 +ARTICLE T6 54 +T6.1 54 +T6.2 54 +T6.3 54 +T6.4 54 +T6.5 55 +T6.6 56 +T6.7 56 +ARTICLE T7 56 +T7.1 56 +T7.2 57 +T7.3 57 +T7.4 58 +ARTICLE T8 58 +T8.1 58 +T8.2 59 +T8.3 59 +T8.4 59 +T8.5 60 +ARTICLE T9 61 +T9.1 61 +T9.2 61 +T9.3 61 +T9.4 61 +T9.5 61 +T9.6 61 +ARTICLE T10 61 +T10.1 61 +T10.2 62 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE T11 62 +T11.1 62 +T11.2 63 +ARTICLE T12 64 +T12.1 64 +T12.2 64 +ARTICLE T13 65 +T13.1 65 +T13.2 65 +T13.3 66 +T13.4 66 +ARTICLE T14 66 +T14.1 66 +T14.2 66 +T14.3 66 +T14.4 66 +T14.5 67 +T14.6 68 +T14.7 68 +T14.8 68 +T14.9 68 +T14.10 68 +T14.11 68 +T14.12 68 +T14.13 68 +ARTICLE T15 68 +T15.1 68 +T15.2 69 +T15.3 69 +T15.4 69 +T15.5 69 +T15.6 69 +T15.7 69 +ARTICLE T16 69 +T16.1 69 +PART IC - INTERNAL COMBUSTION ENGINE 69 +ARTICLE IC1 70 +IC1.1 70 +IC1.2 70 +IC1.3 70 +IC1.4 71 +IC1.5 71 +IC1.6 72 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +IC1.7 73 +IC1.8 73 +IC1.9 73 +IC1.10 74 +IC1.11 74 +ARTICLE IC2 74 +IC2.1 74 +IC2.2 75 +IC2.3 75 +IC2.4 75 +IC2.5 75 +IC2.6 75 +IC2.7 76 +IC2.8 76 +ARTICLE IC3 76 +IC3.1 76 +IC3.2 77 +IC3.3 77 +IC3.4 77 +PART EV - ELECTRICAL POWERTRAINS AND SYSTEMS 78 +ARTICLE EV1 78 +EV1.1 78 +EV1.2 79 +ARTICLE EV2 80 +EV2.1 80 +EV2.2 80 +EV2.3 80 +EV2.4 81 +EV2.5 82 +EV2.6 82 +EV2.7 84 +EV2.8 85 +EV2.9 86 +EV2.10 87 +EV2.11 88 +EV2.12 90 +ARTICLE EV3 92 +EV3.1 92 +EV3.2 93 +EV3.3 94 +EV3.4 95 +EV3.5 96 +EV3.6 97 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV4 98 +EV4.1 98 +ARTICLE EV5 99 +EV5.1 99 +EV5.2 99 +EV5.3 99 +EV5.4 100 +EV5.5 101 +ARTICLE EV6 103 +ARTICLE EV7 104 +EV7.1 104 +EV7.2 106 +EV7.3 107 +EV7.4 107 +EV7.5 108 +EV7.6 108 +EV7.7 109 +EV7.8 109 +EV7.9 110 +ARTICLE EV8 112 +EV8.1 112 +ARTICLE EV9 113 +EV9.1 113 +EV9.2 113 +EV9.3 114 +EV9.4 114 +EV9.5 114 +EV9.6 115 +ARTICLE EV10 116 +EV10.1 116 +EV10.2 116 +EV10.3 116 +EV10.4 118 +EV10.5 118 +ARTICLE EV11 120 +EV11.1 120 +EV11.2 120 +ARTICLE EV12 121 +EV12.1 121 +EV12.2 121 +EV12.3 122 +EV12.4 122 +ARTICLE EV13 124 +EV13.1 124 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV13.2 124 +ARTICLE EV14 125 +PART S - STATIC EVENTS 126 +ARTICLE S1 127 +S1.1 127 +S1.2 127 +S1.3 127 +S1.4 127 +S1.5 128 +S1.6 128 +ARTICLE S2 129 +S2.1 129 +S2.2 129 +S2.3 129 +S2.4 130 +S2.5 131 +S2.6 131 +S2.7 131 +S2.8 132 +S2.9 132 +S2.10 132 +ARTICLE S3 133 +S3.1 133 +S3.2 133 +S3.3 134 +S3.4 134 +S3.5 134 +S3.6 135 +S3.7 135 +S3.8 135 +S3.9 135 +S3.10 135 +S3.11 135 +S3.12 135 +S3.13 136 +S3.14 136 +PART D - DYNAMIC EVENTS 137 +ARTICLE D1 137 +D1.1 137 +D1.2 137 +D1.3 137 +D1.4 137 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE D2 138 +ARTICLE D3 138 +D3.1 138 +D3.2 138 +D3.3 138 +D3.4 138 +D3.5 138 +D3.6 138 +D3.7 138 +D3.8 138 +ARTICLE D4 140 +D4.1 140 +ARTICLE D5 140 +D5.1 140 +D5.2 140 +D5.4 140 +D5.5 141 +D5.6 141 +D5.7 141 +D5.8 141 +D5.9 141 +ARTICLE D6 141 +D6.1 141 +D6.2 142 +D6.3 142 +D6.4 142 +D6.5 143 +D6.6 143 +D6.7 143 +ARTICLE D7 143 +D7.1 143 +D7.2 143 +D7.3 144 +D7.4 144 +D7.5 144 +D7.6 144 +D7.7 145 +D7.8 145 +D7.9 145 +D7.10 145 +D7.11 145 +D7.12 145 +D7.13 146 +D7.14 147 +D7.15 147 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +D7.16 147 +D7.17 147 +D7.18 149 +D7.19 150 +D7.20 150 +D7.21 150 +D7.22 150 +D7.23 150 +ARTICLE D8 152 +D8.1 152 +D8.2 152 +D8.3 152 +D8.4 152 +D8.5 152 +D8.6 152 +D8.7 153 +ARTICLE D9 153 +D9.1 153 +D9.2 153 +D9.3 153 +D9.4 153 +D9.5 153 +D9.6 153 +D9.7 154 +ARTICLE D10 154 +D10.1 154 +D10.2 154 +D10.3 154 +D10.4 154 +D10.5 155 +D10.6 155 +D10.7 155 +D10.8 155 +ARTICLE D11 155 +D11.1 155 +D11.2 155 +D11.3 155 +D11.4 155 +ARTICLE D12 156 +APPENDIX A 157 +APPENDIX B 158 +APPENDIX C 160 +APPENDIX D 170 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +APPENDIX E 171 +APPENDIX F 172 +APPENDIX G 173 +APPENDIX H 174 +APPENDIX I 175 +Index of Figures +FIGURE 1 - FORMULA HYBRID + ELECTRIC SUPPORT PAGE 16 +FIGURE 2 - OPEN WHEEL DEFINITION 19 +FIGURE 3 - TRIANGULATION 21 +FIGURES FROM TOP: 4A, 4B, AND 4C- ROLL HOOPS AND HELMET CLEARANCE 26 +FIGURE 5 - PERCY -- 95TH PERCENTILE MALE WITH HELMET 26 +FIGURE 6 – 95TH PERCENTILE TEMPLATE POSITIONING 27 +FIGURE 7 - MAIN AND FRONT HOOP BRACING 29 +FIGURE 8 – DOUBLE-LUG JOINT 30 +FIGURE 9 – DOUBLE LUG JOINT 30 +FIGURE 10 – SLEEVED BUTT JOINT 30 +FIGURE 11 – SIDE IMPACT STRUCTURE 35 +FIGURE 12 – SIDE IMPACT ZONE DEFINITION FOR A MONOCOQUE 39 +FIGURE 13 – ALTERNATE SINGLE BOLT ATTACHMENT 40 +FIGURE 14 – COCKPIT OPENING TEMPLATE 41 +FIGURE 15 – COCKPIT INTERNAL CROSS SECTION TEMPLATE 42 +FIGURE 16 – EXAMPLES OF FIREWALL CONFIGURATIONS 45 +FIGURE 17 - SEAT BELT THREADING EXAMPLES 48 +FIGURE 18 – LAP BELT ANGLES WITH UPRIGHT DRIVER 49 +FIGURE 19 – SHOULDER HARNESS MOUNTING – TOP VIEW 50 +FIGURE 20 - SHOULDER HARNESS MOUNTING – SIDE VIEW 50 +FIGURE 21 – OVER-TRAVEL SWITCHES 57 +FIGURE 22 - FINAL DRIVE SCATTER SHIELD EXAMPLE 59 +FIGURE 23 - EXAMPLES OF POSITIVE LOCKING NUTS 62 +FIGURE 24 - EXAMPLE CAR NUMBER 64 +FIGURE 25- SURFACE ENVELOPE 70 +FIGURE 26 – HOSE CLAMPS 73 +FIGURE 27 - FILLER NECK 75 +FIGURE 28 - ACCUMULATOR STICKER 80 +FIGURE 29 - EXAMPLE NP3S CONFIGURATION 83 +FIGURE 30 – EXAMPLE 5S4P CONFIGURATION 84 +FIGURE 31 - EXAMPLE ACCUMULATOR SEGMENTING 86 +FIGURE 32 - VIRTUAL ACCUMULATOR EXAMPLE 91 +FIGURE 33 - FINGER PROBE 92 +FIGURE 34 - HIGH VOLTAGE LABEL 92 +FIGURE 35 - CONNECTION STACK-UP 95 +FIGURE 36 – CREEPAGE DISTANCE EXAMPLE 101 +FIGURE 37 - PRIORITY OF SHUTDOWN SOURCES 104 +FIGURE 38 - EXAMPLE MASTER SWITCH AND SHUTDOWN CIRCUIT CONFIGURATION 106 +FIGURE 39 - TYPICAL MASTER SWITCH 107 +FIGURE 40 - INTERNATIONAL KILL SWITCH SYMBOL 108 +FIGURE 41 - EXAMPLE SHUTDOWN STATE DIAGRAM 110 +FIGURE 42 – TYPICAL ESOK LAMP 114 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +FIGURE 43 – INSULATION MONITORING DEVICE TEST 116 +FIGURE 44 118 +FIGURE 45 - PLOT OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 159 +FIGURE 46 - SCORING GUIDELINES: PROJECT PLAN COMPONENT 164 +FIGURE 47: CHANGE MANAGEMENT REPORT SCORING GUIDELINES 166 +FIGURE 48 – EVALUATION CRITERIA 168 +FIGURE 49 - PROJECT MANAGEMENT SCORING SHEET 169 +FIGURE 50 - LATCHING FOR ACTIVE-HIGH OUTPUT FIGURE 51 - LATCHING FOR ACTIVE-LOW OUTPUT 173 +Index of Tables +TABLE 1 – 2024 ENERGY AND ACCUMULATOR LIMITS 1 +TABLE 2 - EVENT POINTS 2 +TABLE 3 - REQUIRED DOCUMENTS 12 +TABLE 4 - BASELINE STEEL 22 +TABLE 5 - STEEL TUBING MINIMUM WALL THICKNESSES 23 +TABLE 6 - 95TH PERCENTILE MALE TEMPLATE DIMENSIONS 25 +TABLE 7 – SFI / FIA STANDARDS LOGOS 66 +TABLE 8 - VOLTAGE AND ENERGY LIMITS 79 +TABLE 9 - AMS VOLTAGE MONITORING 89 +TABLE 10 – AMS TEMPERATURE MONITORING 89 +TABLE 11 - RECOMMENDED TS CONNECTION FASTENERS 96 +TABLE 12 – MINIMUM SPACINGS 100 +TABLE 13 - INSULATING MATERIAL - MINIMUM TEMPERATURES AND THICKNESSES 100 +TABLE 14 – PCB TS/GLV SPACINGS 102 +TABLE 15 – STATIC EVENT MAXIMUM SCORES 126 +TABLE 16 - PROJECT MANAGEMENT SCORING 129 +TABLE 17 - DYNAMIC EVENT MAXIMUM SCORES 137 +TABLE 18 - FLAGS 151 +TABLE 19 - ACCUMULATOR DEVICE ENERGY CALCULATIONS 157 +TABLE 20 - FUEL ENERGY EQUIVALENCIES 157 +TABLE 21 - EXAMPLE OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT 158 +TABLE 22 – WIRE CURRENT CAPACITY (SINGLE CONDUCTOR IN AIR) 171 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART A1 - ADMINISTRATIVE REGULATIONS +ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW AND COMPETITION +1A1.1 Formula Hybrid + Electric Competition Objective +1A1.1.1 The Formula Hybrid + Electric competition challenges teams of university undergraduate and graduate students to conceive, design, fabricate, develop and compete with small, formula- -style, hybrid-powered and electric cars. -1A1.1.2 The Formula Hybrid + Electric competition is intended as an educational program requiring -students to work across disciplinary boundaries, such as those of electrical and mechanical -engineering. -1A1.1.3 To give teams the maximum design flexibility and the freedom to express their creativity and -imagination there are very few restrictions on the overall vehicle design apart from the -requirement for a mechanical/electrical hybrid or electric-only drivetrain. -1A1.1.4 Teams typically spend eight to twelve months designing, building, testing and preparing their -vehicles before a competition. The competitions themselves give teams the chance to -demonstrate and prove both their creativity and their engineering skills in comparison to teams -from other universities around the world. -1A1.2 Energy Limits -1A1.2.1 Competitiveness and high efficiency designs are encouraged through limits on accumulator -capacities and the amount of energy that a team has available to complete the endurance event. -1A1.2.2 The accumulator capacities and endurance energy allocation will be reviewed by the Formula -Hybrid + Electric rules committee each year, and posted as early in the season as possible. - -Hybrid (and Hybrid In Progress) -Endurance Energy Allocation 31.25 MJ -Maximum Accumulator Capacity 4,449 Wh -Electric -Maximum Accumulator Capacity 5,400 Wh - Table 1 – 2024 Energy and Accumulator Limits -1A1.2.3 Vehicles may run with accumulator capacities greater than the Table 1 value if equipped with -an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 -maximum energy value will not be counted. See also D7.5.1- Energy for Endurance Event. -1A1.2.4 Accumulator capacities are calculated as: - Energy (Wh) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 80% - Segment Energy (Table 8) is calculated as - Energy (MJ) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 0.0036. - See Appendix A for energy calculations for capacitors. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A1.3 Vehicle Design Objectives -For the purpose of this competition, the students are to assume that a manufacturing firm has engaged -them to design, fabricate and demonstrate a prototype hybrid-electric or all electric vehicle for -evaluation as a production item. The intended market is the nonprofessional weekend autocross -competitor. Therefore, the car must balance exceptional performance with fuel efficiency. -Performance will be evaluated in terms of its acceleration, braking, and handling qualities. Fuel -efficiency will be evaluated during the 44 km endurance event. The car must be easy to -maintain and reliable. It should accommodate drivers whose stature varies from a 5th percentile -female to a 95th percentile male. In addition, the car’s marketability is enhanced by other -factors such as aesthetics, comfort and use of common parts. The manufacturing firm is -planning to produce four (4) cars per day for a limited production run. The challenge to the -design team is to develop a prototype car that best meets these goals and intents. Each design -will be compared and judged with other competing designs to determine the best overall car. -1A1.4 Good Engineering Practices -1A1.4.1 Vehicles entered into Formula Hybrid + Electric competitions are expected to be designed and -fabricated in accordance with good engineering practices. -Note in particular, that the high-voltage electrical systems in a Formula Hybrid + Electric car present -health and safety risks unique to a hybrid/electric vehicle, and that carelessness or poor -engineering can result in serious injury or death. -1A1.4.2 The organizers have produced several advisory publications that are available on the Formula -Hybrid + Electric website. It is expected that all team members will familiarize themselves -with these publications, and will apply the information in them appropriately. -1A1.5 Judging Categories -The cars are judged in a series of static and dynamic events including: technical inspections, project -management skills, engineering design, solo performance trials, and high-performance track -endurance. These events are scored to determine how well the car performs. - -Static Events - Project Management 150 - Engineering Design 200 - Virtual Racing Challenge -1 - 0 -Dynamic Events - Acceleration 100 - Autocross 200 - Endurance 350 -Total Points 1000 -Table 2 - Event Points - -1 - Virtual Racing Challenge will be awarded trophies without points going towards the Event Points - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A1.5.1 A team’s final score will equal the sum of their event scores plus or minus penalty and/or bonus -points. -Note: If a team’s penalty points exceed the sum of their event scores, their final score will be Zero (0). -i.e. negative final scores will not be given. -ARTICLE A2 FORMULA HYBRID + ELECTRIC VEHICLE CATEGORIES -1A2.1 Hybrid +style, hybrid-powered and electric cars. +1A1.1.2 The Formula Hybrid + Electric competition is intended as an educational program requiring +students to work across disciplinary boundaries, such as those of electrical and mechanical +engineering. +1A1.1.3 To give teams the maximum design flexibility and the freedom to express their creativity and +imagination there are very few restrictions on the overall vehicle design apart from the +requirement for a mechanical/electrical hybrid or electric-only drivetrain. +1A1.1.4 Teams typically spend eight to twelve months designing, building, testing and preparing their +vehicles before a competition. The competitions themselves give teams the chance to +demonstrate and prove both their creativity and their engineering skills in comparison to teams +from other universities around the world. +1A1.2 Energy Limits +1A1.2.1 Competitiveness and high efficiency designs are encouraged through limits on accumulator +capacities and the amount of energy that a team has available to complete the endurance event. +1A1.2.2 The accumulator capacities and endurance energy allocation will be reviewed by the Formula +Hybrid + Electric rules committee each year, and posted as early in the season as possible. +Hybrid (and Hybrid In Progress) +Endurance Energy Allocation 31.25 MJ +Maximum Accumulator Capacity 4,449 Wh +Electric +Maximum Accumulator Capacity 5,400 Wh +Table 1 – 2024 Energy and Accumulator Limits +1A1.2.3 Vehicles may run with accumulator capacities greater than the Table 1 value if equipped with +an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 +maximum energy value will not be counted. See also D7.5.1- Energy for Endurance Event. +1A1.2.4 Accumulator capacities are calculated as: +Energy (Wh) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 80% +Segment Energy (Table 8) is calculated as +Energy (MJ) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 0.0036. +See Appendix A for energy calculations for capacitors. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A1.3 Vehicle Design Objectives +For the purpose of this competition, the students are to assume that a manufacturing firm has engaged +them to design, fabricate and demonstrate a prototype hybrid-electric or all electric vehicle for +evaluation as a production item. The intended market is the nonprofessional weekend autocross +competitor. Therefore, the car must balance exceptional performance with fuel efficiency. +Performance will be evaluated in terms of its acceleration, braking, and handling qualities. Fuel +efficiency will be evaluated during the 44 km endurance event. The car must be easy to +maintain and reliable. It should accommodate drivers whose stature varies from a 5th percentile +female to a 95th percentile male. In addition, the car’s marketability is enhanced by other +factors such as aesthetics, comfort and use of common parts. The manufacturing firm is +planning to produce four (4) cars per day for a limited production run. The challenge to the +design team is to develop a prototype car that best meets these goals and intents. Each design +will be compared and judged with other competing designs to determine the best overall car. +1A1.4 Good Engineering Practices +1A1.4.1 Vehicles entered into Formula Hybrid + Electric competitions are expected to be designed and +fabricated in accordance with good engineering practices. +Note in particular, that the high-voltage electrical systems in a Formula Hybrid + Electric car present +health and safety risks unique to a hybrid/electric vehicle, and that carelessness or poor +engineering can result in serious injury or death. +1A1.4.2 The organizers have produced several advisory publications that are available on the Formula +Hybrid + Electric website. It is expected that all team members will familiarize themselves +with these publications, and will apply the information in them appropriately. +1A1.5 Judging Categories +The cars are judged in a series of static and dynamic events including: technical inspections, project +management skills, engineering design, solo performance trials, and high-performance track +endurance. These events are scored to determine how well the car performs. +Static Events +Project Management 150 +Engineering Design 200 +Virtual Racing Challenge +1 +0 +Dynamic Events +Acceleration 100 +Autocross 200 +Endurance 350 +Total Points 1000 +Table 2 - Event Points +1 +Virtual Racing Challenge will be awarded trophies without points going towards the Event Points + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A1.5.1 A team’s final score will equal the sum of their event scores plus or minus penalty and/or bonus +points. +Note: If a team’s penalty points exceed the sum of their event scores, their final score will be Zero (0). +i.e. negative final scores will not be given. +ARTICLE A2 FORMULA HYBRID + ELECTRIC VEHICLE CATEGORIES +1A2.1 Hybrid 1A2.1.1 A Hybrid vehicle is defined as a vehicle using a propulsion system which comprises both a 4- -stroke Internal Combustion Engine (ICE) and electrical storage (accumulator) with electric -motor drive. -1A2.1.2 A hybrid drive system may deploy the ICE and electric motor(s) in any configuration, including -series and/or parallel. Coupling through the road surface is permitted. -1A2.1.3 To qualify as a hybrid, vehicles must have a drive system utilizing one or more electric motors -with a minimum continuous power rating of 2.5 kW (sum total of all motors) and one or more -I.C engines with a minimum (sum total) power rating of 2.5 kW. -1A2.2 Electric -An Electric vehicle is defined as a vehicle wherein the accumulator is charged from an external electrical -source (and/or through regenerative braking) and propelled by electric drive only. -There is no minimum power requirement for electric-only drive motors. -1A2.3 Hybrid in Progress (HIP) -A Hybrid-in-Progress is a not-yet-completed hybrid vehicle, which includes both an internal combustion -engine and electric motor. -Note: The purpose of the HIP category is to give teams that are on a 2-year development/build cycle an -opportunity to enter and compete their vehicle alongside the regular entries. The HIP is -regarded, for all scoring purposes, as a hybrid, but will run the dynamic events on electric -power only. -1A2.3.1 To qualify as an HIP, a vehicle must have been designed, and intended for completion as a -hybrid vehicle. -1A2.3.2 Teams planning to enter a vehicle in the HIP category will initially register as a Hybrid. To -change to the HIP category, the team must submit a request to the organizers in writing before -the start of the design event. -Note: The advantages of entering as an HIP are: -(a) Receive a full technical inspection of the vehicle and electrical drive systems. -(b) Participate in all the competition events. (Provided tech inspection is passed). -(c) Receive feedback from the design judges. -Note: Teams can maximize the benefits of an HIP entry by including the full-hybrid designs in their +stroke Internal Combustion Engine (ICE) and electrical storage (accumulator) with electric +motor drive. +1A2.1.2 A hybrid drive system may deploy the ICE and electric motor(s) in any configuration, including +series and/or parallel. Coupling through the road surface is permitted. +1A2.1.3 To qualify as a hybrid, vehicles must have a drive system utilizing one or more electric motors +with a minimum continuous power rating of 2.5 kW (sum total of all motors) and one or more +I.C engines with a minimum (sum total) power rating of 2.5 kW. +1A2.2 Electric +An Electric vehicle is defined as a vehicle wherein the accumulator is charged from an external electrical +source (and/or through regenerative braking) and propelled by electric drive only. +There is no minimum power requirement for electric-only drive motors. +1A2.3 Hybrid in Progress (HIP) +A Hybrid-in-Progress is a not-yet-completed hybrid vehicle, which includes both an internal combustion +engine and electric motor. +Note: The purpose of the HIP category is to give teams that are on a 2-year development/build cycle an +opportunity to enter and compete their vehicle alongside the regular entries. The HIP is +regarded, for all scoring purposes, as a hybrid, but will run the dynamic events on electric +power only. +1A2.3.1 To qualify as an HIP, a vehicle must have been designed, and intended for completion as a +hybrid vehicle. +1A2.3.2 Teams planning to enter a vehicle in the HIP category will initially register as a Hybrid. To +change to the HIP category, the team must submit a request to the organizers in writing before +the start of the design event. +Note: The advantages of entering as an HIP are: +(a) Receive a full technical inspection of the vehicle and electrical drive systems. +(b) Participate in all the competition events. (Provided tech inspection is passed). +(c) Receive feedback from the design judges. +Note: Teams can maximize the benefits of an HIP entry by including the full-hybrid designs in their document submissions and design event presentations, as well as including the full multi- -year program in their Project Management materials. -(d) When the vehicle is completed and entered as a hybrid, in a subsequent competition, it is -considered an all-new vehicle, and not a second-year entry. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A2.4 Static Events Only (SEO) -1A2.4.1 SEO is a category that may only be declared after arrival at the competition. All teams must -initially register as either Hybrid/HIP or Electric. +year program in their Project Management materials. +(d) When the vehicle is completed and entered as a hybrid, in a subsequent competition, it is +considered an all-new vehicle, and not a second-year entry. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A2.4 Static Events Only (SEO) +1A2.4.1 SEO is a category that may only be declared after arrival at the competition. All teams must +initially register as either Hybrid/HIP or Electric. 1A2.4.2 A team may declare themselves as SEO and participate in the design -2 - and other static events -even if the vehicle is in an unfinished state. -(a) An SEO vehicle may not participate in any of the dynamic events. -(b) An SEO vehicle may continue the technical inspection process, but will be given a lower -priority than the non-SEO teams. -1A2.4.3 An SEO declaration must be submitted in writing to the organizers before the scheduled start of -the design events. +2 +and other static events +even if the vehicle is in an unfinished state. +(a) An SEO vehicle may not participate in any of the dynamic events. +(b) An SEO vehicle may continue the technical inspection process, but will be given a lower +priority than the non-SEO teams. +1A2.4.3 An SEO declaration must be submitted in writing to the organizers before the scheduled start of +the design events. 1A2.4.4 A vehicle that declares SEO in one year, will not be penalized by the design judges as a multi- -year vehicle the following year per A7.5. -1A2.5 Electric vs. Hybrid Vehicles -1A2.5.1 The Electric and Hybrid categories are separate. Although they compete in the same events, and -may be on the endurance course at the same time, they are scored separately and receive -separate awards. +year vehicle the following year per A7.5. +1A2.5 Electric vs. Hybrid Vehicles +1A2.5.1 The Electric and Hybrid categories are separate. Although they compete in the same events, and +may be on the endurance course at the same time, they are scored separately and receive +separate awards. 1A2.5.2 The event scoring formulas will maintain separate baselines (T max , T min -) for Hybrid and -Electric categories. -Note: Electric vehicles, because they are not carrying the extra weight of engines and generating systems, -may demonstrate higher performances in some of the dynamic events. Design scores should not -be compared, as the engineering challenge between the two classes is different and scored -accordingly. -ARTICLE A3 THE FORMULA HYBRID + ELECTRIC COMPETITION -1A3.1 Open Registration -The Formula Hybrid + Electric Competition has an open registration policy and will accept registrations -by student teams representing universities in any country. -1A3.2 Official Announcements and Competition Information -1A3.2.1 Teams should read any newsletters published by SAE or Formula Hybrid + Electric and to be -familiar with all official announcements concerning the competition and rules interpretations -released by the Formula Hybrid + Electric Rules Committee. -1A3.2.2 Formula Hybrid + Electric posts announcements to the “Announcements” page of the Formula -Hybrid + Electric website at https://www.formula-hybrid.org/announcements -1A3.3 Official Language -The official language of the Formula Hybrid + Electric competition is English. - -2 - Provided the team has met the document submission requirements of A9.3(c) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE A4 FORMULA HYBRID + ELECTRIC RULES AND ORGANIZER AUTHORITY -1A4.1 Rules Authority -1A4.1.1 The Formula Hybrid + Electric Rules are the responsibility of the Formula Hybrid + Electric -Rules Committee and are issued under the authority of the SAE Collegiate Design Series -Committee. Official announcements from the Formula Hybrid + Electric Rules Committee are -to be considered part of, and have the same validity as, these rules. -1A4.1.2 Ambiguities or questions concerning the meaning or intent of these rules will be resolved by -the Formula Hybrid + Electric Rules Committee, SAE or by the individual competition -organizers as appropriate. (See ARTICLE A12) -1A4.2 Rules Validity -The Formula Hybrid + Electric Rules posted on the Formula Hybrid + Electric website and dated for the -calendar year of the competition are the rules in effect for the competition. Rule sets dated for -other years are invalid. -1A4.3 Rules Compliance -1A4.3.1 By entering a Formula Hybrid + Electric competition the team, members of the team as -individuals, faculty advisors and other personnel of the entering university agree to comply -with, and be bound by, these rules and all rule interpretations or procedures issued or -announced by SAE, the Formula Hybrid + Electric Rules Committee or the organizers. -1A4.3.2 Any rules or regulations pertaining to the use of the competition site by teams or individuals -and which are posted, announced and/or otherwise publicly available are incorporated into -these rules by reference. As examples, all event site waiver requirements, speed limits, parking -and facility use rules apply to Formula Hybrid + Electric participants. -1A4.3.3 All team members, faculty advisors and other university representatives are required to -cooperate with, and follow all instructions from, competition organizers, officials and judges. -1A4.4 Understanding the Rules -Teams, team members as individuals and faculty advisors, are responsible for reading and understanding -the rules in effect for the competition in which they are participating. -1A4.5 Participating in the Competition -Teams, team members as individuals, faculty advisors and other representatives of a registered university -who are present on-site at a competition are considered to be “participating in the competition” -from the time they arrive at the event site until they depart the site at the conclusion of the -competition or earlier by withdrawing. -1A4.6 Violations of Intent -1A4.6.1 The violation of intent of a rule will be considered a violation of the rule itself. -1A4.6.2 Questions about the intent or meaning of a rule may be addressed to the Formula Hybrid + -Electric Rules Committee or by the individual competition organizers as appropriate. -1A4.7 Right to Impound -SAE and other competition organizing bodies reserve the right to impound any onsite registered vehicles -at any time during a competition for inspection and examination by the organizers, officials and -technical inspectors. The organizers may also impound any equipment deemed hazardous by -the technical inspectors. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A4.8 Restriction on Vehicle Use -Teams are cautioned that the vehicles designed in compliance with these Formula Hybrid + Electric Rules -are intended for competition operation only at the official Formula Hybrid + Electric -competitions. - -ARTICLE A5 RULES FORMAT AND USE - -1A5.1.1 Definition of Terms -Must - designates a requirement -Must NOT - designates a prohibition or restriction -Should - gives an expectation -May - gives permission, not a requirement and not a recommendation -1A5.1.2 Capitalized Terms - Items or areas which have specific definitions or are covered by specific rules are capitalized. -For example, “Rules Questions” or “Primary Structure”. -1A5.1.3 Headings - The article, section and paragraph headings in these rules are provided only to facilitate -reading: they do not affect the paragraph contents. -1A5.1.4 Applicability -Unless otherwise designated, all rules apply to all vehicles at all times. -1A5.1.5 Figures and Illustrations - Figures and illustrations give clarification or guidance, but are rules only when referred to in -the text of a rule. -1A5.1.6 Change Identification - Any summary of changed rules and/or changed portions marked in the rules themselves are -provided for courtesy, and may or may not include all changes. -1A5.2 General Authority -SAE and the competition organizing bodies reserve the right to revise the schedule of any competition -and/or interpret or modify the competition rules at any time and in any manner that is, in their -sole judgment, required for the efficient operation of the event or the Formula Hybrid + Electric -series as a whole. -1A5.3 SAE Technical Standards Access -1A5.3.1 A cooperative program of SAE International University Programs and Technical Standards -Board is making some of SAE’s Technical Standards available to teams registered for any SAE -International hosted competition at no cost. A list of accessible standards can be found -online www.fsaeonline.com and accessed under the team’s registration online www.sae.org. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -INDIVIDUAL PARTICIPATION REQUIREMENTS -1A5.4 Eligibility Limits -Eligibility is limited to undergraduate and graduate students to ensure that this is an engineering design -competition. -1A5.5 Student Status -1A5.5.1 Team members must be enrolled as degree seeking undergraduate or graduate students in the -college or university of the team with which they are participating. Team members who have -graduated during the twelve (12) month period prior to the competition remain eligible to -participate. -1A5.5.2 Teams which are formed with members from two or more Universities are treated as a single -team. A student at any University making up the team may compete at any event where the -team participates. The multiple Universities are in effect treated as one University with two -campuses and all eligibility requirements are enforced. -1A5.6 Society Membership -1A5.6.1 Team members must be members of at least one of the following societies: -(a) SAE -(b) IEEE -(c) SAE Australasia -(d) SAE Brazil -(e) ATA -(f) IMechE -(g) VDI -1A5.6.2 Proof of membership, such as membership card, is required at the competition. Students who -are members of one of the societies listed above are not required to join any of the other -societies in order to participate in the Formula Hybrid + Electric competition. -1A5.6.3 Students can join -SAE at: http://www.sae.org/students -IEEE at https://www.ieee.org/membership/join/index.html -Note: SAE membership is required to complete the on-line vehicle registration process, so at least one -team member must be a member of SAE. -1A5.7 Age -Team members must be at least eighteen (18) years of age. -1A5.8 Driver’s License -Team members who will drive a competition vehicle at any time during a competition must hold a valid, -government issued driver’s license. All drivers will be required to submit copies of their -driver’s licenses prior to the competition. Additional instructions will be sent to teams 6 weeks -before the competition. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A5.9 Driver Restrictions -Drivers who have driven for a professional racing team in a national or international series at any time -may not drive in any competition event. A “professional racing team” is defined as a team that -provides racing cars and enables drivers to compete in national or international racing series -and employs full time staff in order to achieve this. -1A5.10 Liability Waiver -All on-site participants, including students, faculty, volunteers and guests, are required to sign a liability -waiver upon registering on-site. -1A5.11 Medical Insurance -Individual medical insurance coverage is required and is the sole responsibility of the participant. -ARTICLE A6 INDIVIDUAL REGISTRATION REQUIREMENTS -1A6.1 SAE Student Members -1A6.1.1 If your qualifying professional society membership is with the SAE, you should link yourself to -your respective school, and complete the following information on the SAE website: -(a) Medical insurance (provider, policy/ID number, -telephone number) -(b) Driver’s license (state/country, ID number) -(c) Emergency contact data (point of contact -(parent/guardian, spouse), relationship, and phone -number) -1A6.1.2 To do this you will need to go to “Registration” page under the specific event the team is -registered and then click on the “Register Your Team / Update Team Information” link. At this -point, if you are properly affiliated to the school/college/university, a link will appear with your -team name to select. Once you have selected the link, the registration page will appear. -Selecting the “Add New Member” button will allow individuals to include themselves with the -rest of the team. This can also be completed by team captain and faculty advisor for all team -members. -1A6.1.3 All students, both domestic and international, must affiliate themselves online or submit the -International Student Registration form by March 1, 2025. For additional assistance, please -contact collegiatecompetitions@sae.org -1A6.2 Onsite Registration Requirement -1A6.2.1 Onsite registration is required of all team members and faculty advisors -1A6.2.2 Registration must be completed and the credentials and/or other identification issued by the -organizers properly worn before the car can be unloaded, uncrated or worked upon in any -manner. -1A6.2.3 The following is required at registration: -(a) Government issued driver’s license or passport and -(b) Medical insurance card or documentation -(c) Proof of professional society membership (such as card or member number) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A6.2.4 All international student participants (or unaffiliated faculty advisors) who are not SAE -members are required to complete the International Student Registration form for the entire -team found under “Competition Resources” on the event specific webpage. Upon completion, -email the form to collegiatecompetitions@sae.org -1A6.2.5 All students, both domestic and international, must affiliate themselves online or submit the -International Student Registration form prior to the date shown in the Action Deadlines on the -Formula Hybrid + Electric website. For additional assistance, please contact -collegiatecompetitions@sae.org -NOTE: When your team is registering for a competition, only the student or faculty advisor completing -the registration needs to be linked to the school. All other students and faculty can affiliate -themselves after registration has been completed. -1A6.3 Team Advisor -1A6.3.1 Each team must have a Professional Advisor appointed by the university. The Advisor, or an -official university representative, must accompany the team to the competition and will be -considered by competition officials to be the official university representative. If the appointed -advisor cannot attend the competition, the team must have an alternate college or university -approved adult attend. -1A6.3.2 Advisors are expected to review their team’s Structural Equivalency, Impact Attenuator data -and both ESFs prior to submission. Advisors are not required to certify the accuracy of these -documents, but should perform a “sanity check” and look for omissions. -1A6.3.3 Advisors may advise their teams on general engineering and engineering project management -theory, but must not design any part of the vehicle nor directly participate in the development -of any documentation or presentation. Additionally, Advisors may neither fabricate nor -assemble any components nor assist in the preparation, maintenance, testing or operation of the -vehicle. -In Brief –Advisors must not design, build or repair any part of the car. -1A6.4 Rules and Safety Officer (RSO) -1A6.4.1 Each team must appoint a person to be the “Rules and Safety Officer (RSO)”. -1A6.4.2 The RSO must: -(a) Be present at the entire Formula Hybrid + Electric event. -(b) Be responsible for understanding the Formula Hybrid + Electric rules prior to the -competition and ensuring that competing vehicles comply with all those rules -requirements. -(c) System Documentation – Have vehicle designs, plans, schematics and supporting -documents available for review by the officials as needed. -(d) Component Documentation – Have manufacturer’s documentation and information -available on all components of the electrical system. -(e) Be responsible for team safety while at the event. This includes issues such as: -(i) Use of safety glasses and other safety equipment -(ii) Control of shock hazards such as charging equipment and accessible high -voltage sources - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(iii) Control of fire hazards such as fuel, sources of ignition (grinding, welding -etc.) -(iv) Safe working practices (lock-out/tag-out, clean work area, use of jack stands -etc.) -(f) Be the point of contact between the team and Formula Hybrid + Electric organizers -should rules or safety issues arise. -1A6.4.3 If the RSO is also a driver in a dynamic event, a backup RSO must be appointed who will take -responsibility for sections A6.4.2(e) and A6.4.2(f) (above) while the primary RSO is in the -vehicle. -1A6.4.4 Preferably, the RSO should be the team's faculty advisor or a member of the university's -professional staff, but the position may be held by a student member of the team. -1A6.4.5 Contact information for the primary and backup RSOs (Name, Cell Phone number, etc.) must -be provided to the organizers during registration. -ARTICLE A7 VEHICLE ELIGIBILITY -1A7.1 Student Developed Vehicle -Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained -by the student team members without direct involvement from professional engineers, -automotive engineers, racers, machinists or related professionals. -1A7.2 Information Sources -The student team may use any literature or knowledge related to car design and information from -professionals or from academics as long as the information is given as a discussion of -alternatives with their pros and cons. -1A7.3 Professional Assistance -Professionals may not make design decisions or drawings and the Faculty Advisor may be required to -sign a statement of compliance with this restriction. -1A7.4 Student Fabrication -It is the intent of the SAE Collegiate Design Series competitions to provide direct hands-on experience to -the students. Therefore, students should perform all fabrication tasks whenever possible. -1A7.5 Vehicles Entered for Multiple Years -Formula Hybrid + Electric does not require that teams design and build a new vehicle from scratch each -year. -1A7.5.1 Teams may enter the same vehicle used in previous competitions, provided it complies with all -the Formula Hybrid + Electric rules in effect at the competition in which it is entered. -1A7.5.2 Rules waivers issued to vehicles are valid for only one year. It is assumed that teams will -address the issues requiring a waiver before entering the vehicle in a subsequent year. -NOTE 1: Design judges will look more favorably on vehicles that have clearly documented upgrades and -improvements since last entered in a Formula Hybrid + Electric competition. -NOTE 2: Because the Formula Hybrid + Electric competition emphasizes high-efficiency drive systems, -engineered improvements to the drive train and control systems will be weighted more heavily -by the design judges than updates to the chassis, suspension etc. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A7.6 Entries per University -Universities may enter up to two vehicles per competition. Note that there will be a registration wait -period imposed for a second vehicle. -ARTICLE A8 REGISTRATION -Registration for the Formula Hybrid + Electric competition must be completed on-line. Online -registration must be done by either (a) an SAE member or (b) the official faculty advisor -connected with the registering university and recorded as such in the SAE record system. -Note: It typically takes at least 1 working day between the time you complete an online SAE membership -application and our system recognizes you as eligible to register your team. -1A8.1 Registration Cap -The Formula Hybrid + Electric competition is capped at 35 entries. Registrations received after the entry -cap is reached will be placed on a waiting list. If no slots become available prior to the -competition, the entry fee will be refunded. -Registration Fees - -1A8.1.1 Registration fees must be paid to the organizer by the deadline specified on the Formula Hybrid -+Electric website. -1A8.1.2 Registration fees are not refundable. -1A8.2 Withdrawals -Registered teams that find that they will not be able to attend the Formula Hybrid + Electric competition -are requested to officially withdraw by notifying the organizers at the following address not -later than one (1) week before the event: formulahybridcomp@gmail.com -1A8.3 United States Visas -1A8.3.1 Teams requiring visas to enter to the United States are advised to apply at least sixty (60) days -prior to the competition. Although many visa applications go through without an unreasonable -delay, occasionally teams have had difficulties and in several instances visas were not issued -before the competition. -Don’t wait – apply early for your visa. -Note: After your team has registered for the Formula Hybrid + Electric competition, the organizers can -provide an acknowledgement your registration. We do not issue letters of invitation or -participation certificates. -1A8.3.2 Neither SAE staff nor any competition organizers are permitted to give advice on visas, -customs regulations or vehicle shipping regulations concerning the United States or any other -country. -ARTICLE A9 VEHICLE DOCUMENTS, DEADLINES AND PENALTIES -1A9.1 Required Documents -The following documents supporting each vehicle must be submitted by the action deadlines posted on -the Formula Hybrid + Electric website or otherwise published by the organizers. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Document Section -Project Management Plan S2.3 -Electrical System Form (ESF-1) EV13.1 -Change Management Report S2.4 -Structural Equivalency Spreadsheet (SES) T3.8 -Impact Attenuator Data (IA) T3.21 -Program Submission ARTICLE A10(f) -Site Pre-Registration ARTICLE A10(l) -Design Report S3.2.1 -Design Specification Sheet S3.2.2 -Electrical System Form (ESF-2) EV13.2 -Table 3 - Required Documents -1A9.2 Document Submission Policies -Note: Volunteer examiners and judges evaluate all the required submissions and it is essential that they -have enough time to complete their work. There are no exceptions to the document submission -deadlines and late submissions will incur penalties. -1A9.2.1 Document submission penalties or bonus points are factored into a team’s final score. They do -not alter the individual event scores. -1A9.2.2 All documents must be submitted using the following document title, unless otherwise noted in -individual document requirements: Car Number_University_Document_Competition Year -i.e. 000_Oxford University_SES_2025 -Teams are responsible for submitting properly labeled documents and will accrue applicable -penalty points if documents with corrected formatting are late. -1A9.2.3 Teams must submit the required documents online at -https://formulahybridupload.supportsystem.com/ -1A9.2.4 Document submission deadlines are listed in GMT (Greenwich Mean Time) unless otherwise -explicitly stated. This means that deadlines are typically 7:00 PM Eastern Standard Time. -Please use this website for time conversions or https://time.is/GMT . -1A9.2.5 The time and date that the document is uploaded is recorded in GMT (Greenwich Mean Time) -and constitutes the official record for deadline compliance. -1A9.2.6 The official time and date of document receipt will be posted on the Formula Hybrid + Electric -website. -Teams are responsible for ensuring the accuracy of these postings and must notify the organizers within -three days of their submission to report a discrepancy. After three days the submission time and -date will become final. -1A9.3 Late submissions -Documents received after their deadlines will be penalized as follows: -(a) Structural Equivalency Spreadsheet (SES) – The penalty for late SES submission is 10 -points per day and is capped at negative fifty (-50) points. However, teams are advised - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -that the SES’s are evaluated in the order in which they are received and that late -submissions will be reviewed last. Late SES approval could delay the completion of your -vehicle. We strongly recommend you submit your SES as early as possible. -(b) Impact Attenuator Report (IA) - The penalty for late IA submissions is 10 points per -day and is capped at negative fifty (-50) points. -(c) Design Reports – The Design Report and Design Spec Sheet collectively constitute the -“Design Documents”. -(i) Design Report 10 points/day up to 100 points -(ii) Design Spec Sheet 5 points/day up to 50 points -NOTE: The total penalty for late arrival of any design documents will not exceed 100 points. - -(d) Program Submissions – There are no penalties for late program submissions. However, -late submissions will not be included in the race program, which can be an important tool -for future team fund raising. -(e) Project Management Project Plan - Late submission or failure to submit the Project -Plan will be penalized at five (5) points per day and is capped at negative fifty-five (-55) -points. -(f) Change Management Report - Late submission or failure to submit the interim report -will be penalized at five (5) points per day and is capped at negative forty (-40) points. -(g) ESF - The penalty for late ESF submissions is 10 points per day and is capped at -negative twenty-five points (-25) per ESF or fifty (-50) points total. -(h) Site Pre-Registration – The penalty for late submission of Site Pre-Registration will be -five (5) points. Teams may submit additional team member information up to one week -prior to the competition, and all drivers must submit a photo of their driver’s license prior +) for Hybrid and +Electric categories. +Note: Electric vehicles, because they are not carrying the extra weight of engines and generating systems, +may demonstrate higher performances in some of the dynamic events. Design scores should not +be compared, as the engineering challenge between the two classes is different and scored +accordingly. +ARTICLE A3 THE FORMULA HYBRID + ELECTRIC COMPETITION +1A3.1 Open Registration +The Formula Hybrid + Electric Competition has an open registration policy and will accept registrations +by student teams representing universities in any country. +1A3.2 Official Announcements and Competition Information +1A3.2.1 Teams should read any newsletters published by SAE or Formula Hybrid + Electric and to be +familiar with all official announcements concerning the competition and rules interpretations +released by the Formula Hybrid + Electric Rules Committee. +1A3.2.2 Formula Hybrid + Electric posts announcements to the “Announcements” page of the Formula +Hybrid + Electric website at https://www.formula-hybrid.org/announcements +1A3.3 Official Language +The official language of the Formula Hybrid + Electric competition is English. +2 +Provided the team has met the document submission requirements of A9.3(c) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE A4 FORMULA HYBRID + ELECTRIC RULES AND ORGANIZER AUTHORITY +1A4.1 Rules Authority +1A4.1.1 The Formula Hybrid + Electric Rules are the responsibility of the Formula Hybrid + Electric +Rules Committee and are issued under the authority of the SAE Collegiate Design Series +Committee. Official announcements from the Formula Hybrid + Electric Rules Committee are +to be considered part of, and have the same validity as, these rules. +1A4.1.2 Ambiguities or questions concerning the meaning or intent of these rules will be resolved by +the Formula Hybrid + Electric Rules Committee, SAE or by the individual competition +organizers as appropriate. (See ARTICLE A12) +1A4.2 Rules Validity +The Formula Hybrid + Electric Rules posted on the Formula Hybrid + Electric website and dated for the +calendar year of the competition are the rules in effect for the competition. Rule sets dated for +other years are invalid. +1A4.3 Rules Compliance +1A4.3.1 By entering a Formula Hybrid + Electric competition the team, members of the team as +individuals, faculty advisors and other personnel of the entering university agree to comply +with, and be bound by, these rules and all rule interpretations or procedures issued or +announced by SAE, the Formula Hybrid + Electric Rules Committee or the organizers. +1A4.3.2 Any rules or regulations pertaining to the use of the competition site by teams or individuals +and which are posted, announced and/or otherwise publicly available are incorporated into +these rules by reference. As examples, all event site waiver requirements, speed limits, parking +and facility use rules apply to Formula Hybrid + Electric participants. +1A4.3.3 All team members, faculty advisors and other university representatives are required to +cooperate with, and follow all instructions from, competition organizers, officials and judges. +1A4.4 Understanding the Rules +Teams, team members as individuals and faculty advisors, are responsible for reading and understanding +the rules in effect for the competition in which they are participating. +1A4.5 Participating in the Competition +Teams, team members as individuals, faculty advisors and other representatives of a registered university +who are present on-site at a competition are considered to be “participating in the competition” +from the time they arrive at the event site until they depart the site at the conclusion of the +competition or earlier by withdrawing. +1A4.6 Violations of Intent +1A4.6.1 The violation of intent of a rule will be considered a violation of the rule itself. +1A4.6.2 Questions about the intent or meaning of a rule may be addressed to the Formula Hybrid + +Electric Rules Committee or by the individual competition organizers as appropriate. +1A4.7 Right to Impound +SAE and other competition organizing bodies reserve the right to impound any onsite registered vehicles +at any time during a competition for inspection and examination by the organizers, officials and +technical inspectors. The organizers may also impound any equipment deemed hazardous by +the technical inspectors. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A4.8 Restriction on Vehicle Use +Teams are cautioned that the vehicles designed in compliance with these Formula Hybrid + Electric Rules +are intended for competition operation only at the official Formula Hybrid + Electric +competitions. +ARTICLE A5 RULES FORMAT AND USE +1A5.1.1 Definition of Terms +Must - designates a requirement +Must NOT - designates a prohibition or restriction +Should - gives an expectation +May - gives permission, not a requirement and not a recommendation +1A5.1.2 Capitalized Terms +Items or areas which have specific definitions or are covered by specific rules are capitalized. +For example, “Rules Questions” or “Primary Structure”. +1A5.1.3 Headings +The article, section and paragraph headings in these rules are provided only to facilitate +reading: they do not affect the paragraph contents. +1A5.1.4 Applicability +Unless otherwise designated, all rules apply to all vehicles at all times. +1A5.1.5 Figures and Illustrations +Figures and illustrations give clarification or guidance, but are rules only when referred to in +the text of a rule. +1A5.1.6 Change Identification +Any summary of changed rules and/or changed portions marked in the rules themselves are +provided for courtesy, and may or may not include all changes. +1A5.2 General Authority +SAE and the competition organizing bodies reserve the right to revise the schedule of any competition +and/or interpret or modify the competition rules at any time and in any manner that is, in their +sole judgment, required for the efficient operation of the event or the Formula Hybrid + Electric +series as a whole. +1A5.3 SAE Technical Standards Access +1A5.3.1 A cooperative program of SAE International University Programs and Technical Standards +Board is making some of SAE’s Technical Standards available to teams registered for any SAE +International hosted competition at no cost. A list of accessible standards can be found +online www.fsaeonline.com and accessed under the team’s registration online www.sae.org. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +INDIVIDUAL PARTICIPATION REQUIREMENTS +1A5.4 Eligibility Limits +Eligibility is limited to undergraduate and graduate students to ensure that this is an engineering design +competition. +1A5.5 Student Status +1A5.5.1 Team members must be enrolled as degree seeking undergraduate or graduate students in the +college or university of the team with which they are participating. Team members who have +graduated during the twelve (12) month period prior to the competition remain eligible to +participate. +1A5.5.2 Teams which are formed with members from two or more Universities are treated as a single +team. A student at any University making up the team may compete at any event where the +team participates. The multiple Universities are in effect treated as one University with two +campuses and all eligibility requirements are enforced. +1A5.6 Society Membership +1A5.6.1 Team members must be members of at least one of the following societies: +(a) SAE +(b) IEEE +(c) SAE Australasia +(d) SAE Brazil +(e) ATA +(f) IMechE +(g) VDI +1A5.6.2 Proof of membership, such as membership card, is required at the competition. Students who +are members of one of the societies listed above are not required to join any of the other +societies in order to participate in the Formula Hybrid + Electric competition. +1A5.6.3 Students can join +SAE at: http://www.sae.org/students +IEEE at https://www.ieee.org/membership/join/index.html +Note: SAE membership is required to complete the on-line vehicle registration process, so at least one +team member must be a member of SAE. +1A5.7 Age +Team members must be at least eighteen (18) years of age. +1A5.8 Driver’s License +Team members who will drive a competition vehicle at any time during a competition must hold a valid, +government issued driver’s license. All drivers will be required to submit copies of their +driver’s licenses prior to the competition. Additional instructions will be sent to teams 6 weeks +before the competition. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A5.9 Driver Restrictions +Drivers who have driven for a professional racing team in a national or international series at any time +may not drive in any competition event. A “professional racing team” is defined as a team that +provides racing cars and enables drivers to compete in national or international racing series +and employs full time staff in order to achieve this. +1A5.10 Liability Waiver +All on-site participants, including students, faculty, volunteers and guests, are required to sign a liability +waiver upon registering on-site. +1A5.11 Medical Insurance +Individual medical insurance coverage is required and is the sole responsibility of the participant. +ARTICLE A6 INDIVIDUAL REGISTRATION REQUIREMENTS +1A6.1 SAE Student Members +1A6.1.1 If your qualifying professional society membership is with the SAE, you should link yourself to +your respective school, and complete the following information on the SAE website: +(a) Medical insurance (provider, policy/ID number, +telephone number) +(b) Driver’s license (state/country, ID number) +(c) Emergency contact data (point of contact +(parent/guardian, spouse), relationship, and phone +number) +1A6.1.2 To do this you will need to go to “Registration” page under the specific event the team is +registered and then click on the “Register Your Team / Update Team Information” link. At this +point, if you are properly affiliated to the school/college/university, a link will appear with your +team name to select. Once you have selected the link, the registration page will appear. +Selecting the “Add New Member” button will allow individuals to include themselves with the +rest of the team. This can also be completed by team captain and faculty advisor for all team +members. +1A6.1.3 All students, both domestic and international, must affiliate themselves online or submit the +International Student Registration form by March 1, 2025. For additional assistance, please +contact collegiatecompetitions@sae.org +1A6.2 Onsite Registration Requirement +1A6.2.1 Onsite registration is required of all team members and faculty advisors +1A6.2.2 Registration must be completed and the credentials and/or other identification issued by the +organizers properly worn before the car can be unloaded, uncrated or worked upon in any +manner. +1A6.2.3 The following is required at registration: +(a) Government issued driver’s license or passport and +(b) Medical insurance card or documentation +(c) Proof of professional society membership (such as card or member number) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A6.2.4 All international student participants (or unaffiliated faculty advisors) who are not SAE +members are required to complete the International Student Registration form for the entire +team found under “Competition Resources” on the event specific webpage. Upon completion, +email the form to collegiatecompetitions@sae.org +1A6.2.5 All students, both domestic and international, must affiliate themselves online or submit the +International Student Registration form prior to the date shown in the Action Deadlines on the +Formula Hybrid + Electric website. For additional assistance, please contact +collegiatecompetitions@sae.org +NOTE: When your team is registering for a competition, only the student or faculty advisor completing +the registration needs to be linked to the school. All other students and faculty can affiliate +themselves after registration has been completed. +1A6.3 Team Advisor +1A6.3.1 Each team must have a Professional Advisor appointed by the university. The Advisor, or an +official university representative, must accompany the team to the competition and will be +considered by competition officials to be the official university representative. If the appointed +advisor cannot attend the competition, the team must have an alternate college or university +approved adult attend. +1A6.3.2 Advisors are expected to review their team’s Structural Equivalency, Impact Attenuator data +and both ESFs prior to submission. Advisors are not required to certify the accuracy of these +documents, but should perform a “sanity check” and look for omissions. +1A6.3.3 Advisors may advise their teams on general engineering and engineering project management +theory, but must not design any part of the vehicle nor directly participate in the development +of any documentation or presentation. Additionally, Advisors may neither fabricate nor +assemble any components nor assist in the preparation, maintenance, testing or operation of the +vehicle. +In Brief –Advisors must not design, build or repair any part of the car. +1A6.4 Rules and Safety Officer (RSO) +1A6.4.1 Each team must appoint a person to be the “Rules and Safety Officer (RSO)”. +1A6.4.2 The RSO must: +(a) Be present at the entire Formula Hybrid + Electric event. +(b) Be responsible for understanding the Formula Hybrid + Electric rules prior to the +competition and ensuring that competing vehicles comply with all those rules +requirements. +(c) System Documentation – Have vehicle designs, plans, schematics and supporting +documents available for review by the officials as needed. +(d) Component Documentation – Have manufacturer’s documentation and information +available on all components of the electrical system. +(e) Be responsible for team safety while at the event. This includes issues such as: +(i) Use of safety glasses and other safety equipment +(ii) Control of shock hazards such as charging equipment and accessible high +voltage sources + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(iii) Control of fire hazards such as fuel, sources of ignition (grinding, welding +etc.) +(iv) Safe working practices (lock-out/tag-out, clean work area, use of jack stands +etc.) +(f) Be the point of contact between the team and Formula Hybrid + Electric organizers +should rules or safety issues arise. +1A6.4.3 If the RSO is also a driver in a dynamic event, a backup RSO must be appointed who will take +responsibility for sections A6.4.2(e) and A6.4.2(f) (above) while the primary RSO is in the +vehicle. +1A6.4.4 Preferably, the RSO should be the team's faculty advisor or a member of the university's +professional staff, but the position may be held by a student member of the team. +1A6.4.5 Contact information for the primary and backup RSOs (Name, Cell Phone number, etc.) must +be provided to the organizers during registration. +ARTICLE A7 VEHICLE ELIGIBILITY +1A7.1 Student Developed Vehicle +Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained +by the student team members without direct involvement from professional engineers, +automotive engineers, racers, machinists or related professionals. +1A7.2 Information Sources +The student team may use any literature or knowledge related to car design and information from +professionals or from academics as long as the information is given as a discussion of +alternatives with their pros and cons. +1A7.3 Professional Assistance +Professionals may not make design decisions or drawings and the Faculty Advisor may be required to +sign a statement of compliance with this restriction. +1A7.4 Student Fabrication +It is the intent of the SAE Collegiate Design Series competitions to provide direct hands-on experience to +the students. Therefore, students should perform all fabrication tasks whenever possible. +1A7.5 Vehicles Entered for Multiple Years +Formula Hybrid + Electric does not require that teams design and build a new vehicle from scratch each +year. +1A7.5.1 Teams may enter the same vehicle used in previous competitions, provided it complies with all +the Formula Hybrid + Electric rules in effect at the competition in which it is entered. +1A7.5.2 Rules waivers issued to vehicles are valid for only one year. It is assumed that teams will +address the issues requiring a waiver before entering the vehicle in a subsequent year. +NOTE 1: Design judges will look more favorably on vehicles that have clearly documented upgrades and +improvements since last entered in a Formula Hybrid + Electric competition. +NOTE 2: Because the Formula Hybrid + Electric competition emphasizes high-efficiency drive systems, +engineered improvements to the drive train and control systems will be weighted more heavily +by the design judges than updates to the chassis, suspension etc. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A7.6 Entries per University +Universities may enter up to two vehicles per competition. Note that there will be a registration wait +period imposed for a second vehicle. +ARTICLE A8 REGISTRATION +Registration for the Formula Hybrid + Electric competition must be completed on-line. Online +registration must be done by either (a) an SAE member or (b) the official faculty advisor +connected with the registering university and recorded as such in the SAE record system. +Note: It typically takes at least 1 working day between the time you complete an online SAE membership +application and our system recognizes you as eligible to register your team. +1A8.1 Registration Cap +The Formula Hybrid + Electric competition is capped at 35 entries. Registrations received after the entry +cap is reached will be placed on a waiting list. If no slots become available prior to the +competition, the entry fee will be refunded. +Registration Fees +1A8.1.1 Registration fees must be paid to the organizer by the deadline specified on the Formula Hybrid ++Electric website. +1A8.1.2 Registration fees are not refundable. +1A8.2 Withdrawals +Registered teams that find that they will not be able to attend the Formula Hybrid + Electric competition +are requested to officially withdraw by notifying the organizers at the following address not +later than one (1) week before the event: formulahybridcomp@gmail.com +1A8.3 United States Visas +1A8.3.1 Teams requiring visas to enter to the United States are advised to apply at least sixty (60) days +prior to the competition. Although many visa applications go through without an unreasonable +delay, occasionally teams have had difficulties and in several instances visas were not issued +before the competition. +Don’t wait – apply early for your visa. +Note: After your team has registered for the Formula Hybrid + Electric competition, the organizers can +provide an acknowledgement your registration. We do not issue letters of invitation or +participation certificates. +1A8.3.2 Neither SAE staff nor any competition organizers are permitted to give advice on visas, +customs regulations or vehicle shipping regulations concerning the United States or any other +country. +ARTICLE A9 VEHICLE DOCUMENTS, DEADLINES AND PENALTIES +1A9.1 Required Documents +The following documents supporting each vehicle must be submitted by the action deadlines posted on +the Formula Hybrid + Electric website or otherwise published by the organizers. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Document Section +Project Management Plan S2.3 +Electrical System Form (ESF-1) EV13.1 +Change Management Report S2.4 +Structural Equivalency Spreadsheet (SES) T3.8 +Impact Attenuator Data (IA) T3.21 +Program Submission ARTICLE A10(f) +Site Pre-Registration ARTICLE A10(l) +Design Report S3.2.1 +Design Specification Sheet S3.2.2 +Electrical System Form (ESF-2) EV13.2 +Table 3 - Required Documents +1A9.2 Document Submission Policies +Note: Volunteer examiners and judges evaluate all the required submissions and it is essential that they +have enough time to complete their work. There are no exceptions to the document submission +deadlines and late submissions will incur penalties. +1A9.2.1 Document submission penalties or bonus points are factored into a team’s final score. They do +not alter the individual event scores. +1A9.2.2 All documents must be submitted using the following document title, unless otherwise noted in +individual document requirements: Car Number_University_Document_Competition Year +i.e. 000_Oxford University_SES_2025 +Teams are responsible for submitting properly labeled documents and will accrue applicable +penalty points if documents with corrected formatting are late. +1A9.2.3 Teams must submit the required documents online at +https://formulahybridupload.supportsystem.com/ +1A9.2.4 Document submission deadlines are listed in GMT (Greenwich Mean Time) unless otherwise +explicitly stated. This means that deadlines are typically 7:00 PM Eastern Standard Time. +Please use this website for time conversions or https://time.is/GMT . +1A9.2.5 The time and date that the document is uploaded is recorded in GMT (Greenwich Mean Time) +and constitutes the official record for deadline compliance. +1A9.2.6 The official time and date of document receipt will be posted on the Formula Hybrid + Electric +website. +Teams are responsible for ensuring the accuracy of these postings and must notify the organizers within +three days of their submission to report a discrepancy. After three days the submission time and +date will become final. +1A9.3 Late submissions +Documents received after their deadlines will be penalized as follows: +(a) Structural Equivalency Spreadsheet (SES) – The penalty for late SES submission is 10 +points per day and is capped at negative fifty (-50) points. However, teams are advised + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +that the SES’s are evaluated in the order in which they are received and that late +submissions will be reviewed last. Late SES approval could delay the completion of your +vehicle. We strongly recommend you submit your SES as early as possible. +(b) Impact Attenuator Report (IA) - The penalty for late IA submissions is 10 points per +day and is capped at negative fifty (-50) points. +(c) Design Reports – The Design Report and Design Spec Sheet collectively constitute the +“Design Documents”. +(i) Design Report 10 points/day up to 100 points +(ii) Design Spec Sheet 5 points/day up to 50 points +NOTE: The total penalty for late arrival of any design documents will not exceed 100 points. +(d) Program Submissions – There are no penalties for late program submissions. However, +late submissions will not be included in the race program, which can be an important tool +for future team fund raising. +(e) Project Management Project Plan - Late submission or failure to submit the Project +Plan will be penalized at five (5) points per day and is capped at negative fifty-five (-55) +points. +(f) Change Management Report - Late submission or failure to submit the interim report +will be penalized at five (5) points per day and is capped at negative forty (-40) points. +(g) ESF - The penalty for late ESF submissions is 10 points per day and is capped at +negative twenty-five points (-25) per ESF or fifty (-50) points total. +(h) Site Pre-Registration – The penalty for late submission of Site Pre-Registration will be +five (5) points. Teams may submit additional team member information up to one week +prior to the competition, and all drivers must submit a photo of their driver’s license prior to April 26 -th - on the “Document Upload Page”. -1A9.4 Early submissions -In some cases, documents submitted before their deadline can earn a team bonus points as follows: -(a) Structural Equivalency Spreadsheet (SES) -(i) Approved documents that were submitted 30 days or more before the SES deadline -will receive 20 bonus points. -(ii) Approved documents that were submitted between 29 and 15 days before the SES -deadline will receive 10 bonus points. -(b) Electrical System Forms (ESF-1 and ESF-2) -(i) Approved documents that were submitted 30 days or more before each ESF deadline -will receive 10 bonus points. -(ii) Approved documents that were submitted between 29 and 15 days before each ESF -deadline will receive 5 bonus points. -Note 1: The qualifying dates for bonus points will be listed on the Formula Hybrid + Electric website. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note 2: The number of bonus points will be based on the submission date of the document, not on the -approval date. Documents submitted early that are not approved will not qualify for bonus -points. -Note 3: Some bonus point deadlines may occur before the closing date of registration. If a team has not -previously registered for a Formula Hybrid + Electric competition, they may not be listed on -the documents submission page. (A9.2.3) In that case, a team should submit the document via -email to formulahybridcomp@gmail.com - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE A10 FORMS AND DOCUMENTS - The following forms and documents are available on the Formula Hybrid + Electric website: -(a) 2025 Formula Hybrid + Electric Rules (This Document) -(b) Structural Equivalency Spreadsheet (SES) -(c) Impact Attenuator (IA) Data Sheet -(d) Electrical Systems Form (ESF-1) template -(e) Electrical Systems Form (ESF-2) template -(f) Program Information Sheet (Team information for the Event Program) -(g) Mechanical Inspection Sheet (For reference) -(h) Electrical Inspection Sheet (For reference) -(i) Design Specification Sheet -(j) Design Event Judging Form (For reference) -(k) Project Management Judging Form (For reference) -(l) Site pre-registration form -Note: Formula Hybrid + Electric strives to provide student engineering teams with timely and useful -information to assist in the design and construction of their vehicles. Check the Formula Hybrid -+ Electric website often for new or updated advisory publications. -ARTICLE A11 PROTESTS -1A11.1 Protests - General -It is recognized that thousands of hours of work have gone into fielding a vehicle and that teams are -entitled to all the points they can earn. We also recognize that there can be differences in the -interpretation of rules, the application of penalties and the understanding of procedures. The -officials and SAE staff will make every effort to fully review all questions and resolve -problems and discrepancies quickly and equitably -1A11.2 Preliminary Review – Required -If a team has a question about scoring, judging, policies, or any official action it must be brought to the -organizer’s or SAE staff’s attention for an informal preliminary review before a protest can be -filed. -1A11.3 Cause for Protest -A team may protest any rule interpretation, score, or official action (unless specifically excluded from -protest) which they feel has caused some actual, non-trivial, harm to their team, or has had -substantive effect on their score. Teams may not protest rule interpretations or actions that have -not caused them any substantive damage. -1A11.4 Protest Format and Forfeit -All protests must be filed in writing and presented to the organizer or SAE staff by the team captain. In -order to have a protest considered, a team must post a twenty-five (25) point protest bond -which will be forfeited if their protest is rejected. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A11.5 Protest Period -Protests concerning any aspect of the competition must be filed within one-half hour (30 minutes) of the -posting of the scores of the event to which the protest relates. -1A11.6 Decision -The decision of the competition protest committee regarding any protest is final. -ARTICLE A12 QUESTIONS ABOUT THE FORMULA HYBRID + ELECTRIC RULES -1A12.1 Question Publication -By submitting, a question to the Formula Hybrid + Electric Rules Committee or the competition’s -organizing body you and your team agree that both your question and the official answer can be -reproduced and distributed by SAE or Formula Hybrid + Electric, in both complete and edited -versions, in any medium or format anywhere in the world. -1A12.2 Question Types -1A12.2.1 The Committee will answer questions that are not already answered in the rules or FAQs or that -require new or novel rule interpretations. The Committee will not respond to questions that are -already answered in the rules. For example, if a rule specifies a minimum dimension for a part -the Committee will not answer questions asking if a smaller dimension can be used. -1A12.3 Frequently Asked Questions -1A12.3.1 Before submitting a question, check the Frequently Asked Questions section of the Formula -Hybrid + Electric website. -1A12.4 Question Submission -Questions must be submitted on the Formula Hybrid + Electric Support page: -https://formulahybridelectric.supportsystem.com/ - - -Figure 1 - Formula Hybrid + Electric Support Page - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1A12.5 Question Format -The following information is required: -(a) Submitter’s Name -(b) Submitter’s Email -(c) Topic (Select from the pull-down menu) -(d) University Name (Registered teams will find their University name in a pull-down list) -You may type your question into the “Message” box, or upload a document. -You will receive a confirmation email with a link to enable you to check on your question’s status. -1A12.6 Response Time -Please allow a minimum of 3 days for a response. The Rules Committee will respond as quickly as -possible, however, responses to questions presenting new issues, or of unusual complexity, may -take more than one week. -Please do not resend questions. - - - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -PART T1 - GENERAL TECHNICAL REQUIREMENTS -ARTICLE T1 VEHICLE REQUIREMENTS AND RESTRICTIONS *** -1T1.1 Technical Inspection -1T1.1.1 The following requirements and restrictions will be enforced through technical inspection. -Noncompliance must be corrected and the car re-inspected before the car is allowed to -operate under power. -1T1.2 Modifications and Repairs -1T1.2.1 Once the vehicle has been presented for judging in the Design Events, or submitted for -Technical Inspection, and until the vehicle is approved to compete in the dynamic events, i.e. -all the inspection stickers are awarded, the only modifications permitted to the vehicle are -those directed by the Inspector(s) and noted on the Inspection Form. -1T1.2.2 Once the vehicle is approved to compete in the dynamic events, the ONLY modifications -permitted to the vehicle are: -(a) Adjustment of belts, chains and clutches -(b) Adjustment of brake bias -(c) Adjustment of the driver restraint system, head restraint, seat and pedal assembly -(d) Substitution of the head restraint or seat inserts for different drivers -(e) Adjustment to engine operating parameters, e.g. fuel mixture and ignition timing and any -software calibration changes -(f) Adjustment of mirrors -(g) Adjustment of the suspension where no part substitution is required, (except that springs, -sway bars and shims may be changed) -(h) Adjustment of tire pressure -(i) Adjustment of wing angle (but not the location) -(j) Replenishment of fluids -(k) Replacement of worn tires or brake pads The replacement tires and/or brake pads must be -identical in material, composition and size to those presented and approved at Technical -Inspection. -(l) The changing of wheels and tires for “wet” or “damp” conditions as allowed in D3.1 of the -Formula Hybrid + Electric Rules. -(m) Recharging of Grounded Low Voltage (GLV) supplies. -(n) Recharging of Accumulators. (See EV12.2) -(o) Adjustment of motor controller operating parameters. -1T1.2.3 The vehicle must maintain all required specifications, e.g. ride height, suspension travel, -braking capacity, sound level and wing location throughout the competition. -1T1.2.4 Once the vehicle is approved for competition, any damage to the vehicle that requires repair, -e.g. crash damage, electrical or mechanical damage will void the Inspection Approval. Upon - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -the completion of the repair and before re-entering into any dynamic competition, the vehicle -MUST be re-submitted to Technical Inspection for re-approval. -ARTICLE T2 GENERAL DESIGN REQUIREMENTS -1T2.1 Vehicle Configuration -1T2.1.1 The vehicle must be open-wheeled and open-cockpit (a formula style body) with four (4) -wheels that are not in a straight line. -1T2.1.2 Definition of "Open Wheel" – Open Wheel vehicles must satisfy all of the following criteria: -(a) The top 180 degrees of the wheels/tires must be unobstructed when viewed from -vertically above the wheel. -(b) The wheels/tires must be unobstructed when viewed from the side. -(c) No part of the vehicle may enter a keep-out-zone defined by two lines extending -vertically from positions 75 mm in front of and 75 mm behind the outer diameter of the -front and rear tires in side view elevation of the vehicle with the tires steered straight -ahead. This keep-out zone will extend laterally from the outside plane of the wheel/tire to -the inboard plane of the wheel/tire. See Figure 2 below. -Note: The dry tires will be used for all inspections. - - -Figure 2 - Open Wheel Definition -1T2.2 Bodywork -There must be no openings through the bodywork into the driver compartment from the front of -the vehicle back to the roll bar main hoop or firewall other than that required for the cockpit -opening. Minimal openings around the front suspension components are allowed. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T2.3 Wheelbase -The car must have a wheelbase of at least 1524 mm. The wheelbase is measured from the -center of ground contact of the front and rear tires with the wheels pointed straight ahead. -1T2.4 Vehicle Track -The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. -1T2.5 Visible Access -All items on the Inspection Form must be clearly visible to the technical inspectors without -using instruments such as endoscopes or mirrors. Visible access can be provided by removing -body panels or by providing removable access panels. -ARTICLE T3 DRIVER’S CELL -1T3.1 General Requirements -1T3.1.1 Among other requirements, the vehicle’s structure must include two roll hoops that are braced, -a front bulkhead with support system and Impact Attenuator, and side impact structures. -Note: Many teams will be retrofitting Formula SAE cars for Formula Hybrid + Electric. In -most cases these vehicles will be considerably heavier than what the original frame and -suspension was designed to carry. It is important to analyze the structure of the car and to -strengthen it as required to insure that it will handle the additional stresses. -The technical inspectors will also be paying close attention to the mounting of accumulator -systems. These can be very heavy and must be adequately fastened to the main structure of the -vehicle. -1T3.2 Definitions - The following definitions apply throughout the Rules document: -(a) Main Hoop - A roll bar located alongside or just behind the driver’s torso. -(b) Front Hoop - A roll bar located above the driver’s legs, in proximity to the steering wheel. -(c) Roll Hoops – Both the Front Hoop and the Main Hoop are classified as “Roll Hoops” -(d) Roll Hoop Bracing Supports – The structure from the lower end of the Roll Hoop Bracing -back to the Roll Hoop(s). -(e) Frame Member - A minimum representative single piece of uncut, continuous tubing. -(f) Frame - The “Frame” is the fabricated structural assembly that supports all functional -vehicle systems. This assembly may be a single welded structure, multiple welded -structures or a combination of composite and welded structures. -(g) Primary Structure – The Primary Structure is comprised of the following Frame -components: -(i) Main Hoop -(ii) Front Hoop -(iii) Roll Hoop Braces and Supports -(iv) Side Impact Structure - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(v) Front Bulkhead -(vi) Front Bulkhead Support System -(vii) All Frame Members, guides and supports that transfer load from the Driver’s -Restraint System into items (i) through (vi). -(h) Major Structure of the Frame – The portion of the Frame that lies within the envelope -defined by the Primary Structure. The upper portion of the Main Hoop and the Main Hoop -Bracing are not included in defining this envelope. -(i) Front Bulkhead – A planar structure that defines the forward plane of the Major Structure -of the Frame and functions to provide protection for the driver’s feet. -(j) Impact Attenuator – A deformable, energy absorbing device located forward of the Front -Bulkhead. -(k) Side Impact Zone – The area of the side of the car extending from the top of the floor to -350 mm above the ground and from the Front Hoop back to the Main Hoop. -(l) Node-to-node triangulation – An arrangement of frame members projected onto a plane, -where a co-planar load applied in any direction, at any node, results in only tensile or -compressive forces in the frame members. This is also what is meant by “properly -triangulated”. - - -Figure 3 - Triangulation -1T3.3 Minimum Material Requirements -1T3.3.1 Baseline Steel Material - The Primary Structure of the car must be constructed of: - Either: Round, mild or alloy, steel tubing (minimum 0.1% carbon) of the minimum dimensions -specified in Table 4 . - Or: Approved alternatives per Rules T3.3, T3.3.2, T3.5 and T3.6. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - +th +on the “Document Upload Page”. +1A9.4 Early submissions +In some cases, documents submitted before their deadline can earn a team bonus points as follows: +(a) Structural Equivalency Spreadsheet (SES) +(i) Approved documents that were submitted 30 days or more before the SES deadline +will receive 20 bonus points. +(ii) Approved documents that were submitted between 29 and 15 days before the SES +deadline will receive 10 bonus points. +(b) Electrical System Forms (ESF-1 and ESF-2) +(i) Approved documents that were submitted 30 days or more before each ESF deadline +will receive 10 bonus points. +(ii) Approved documents that were submitted between 29 and 15 days before each ESF +deadline will receive 5 bonus points. +Note 1: The qualifying dates for bonus points will be listed on the Formula Hybrid + Electric website. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note 2: The number of bonus points will be based on the submission date of the document, not on the +approval date. Documents submitted early that are not approved will not qualify for bonus +points. +Note 3: Some bonus point deadlines may occur before the closing date of registration. If a team has not +previously registered for a Formula Hybrid + Electric competition, they may not be listed on +the documents submission page. (A9.2.3) In that case, a team should submit the document via +email to formulahybridcomp@gmail.com + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE A10 FORMS AND DOCUMENTS +The following forms and documents are available on the Formula Hybrid + Electric website: +(a) 2025 Formula Hybrid + Electric Rules (This Document) +(b) Structural Equivalency Spreadsheet (SES) +(c) Impact Attenuator (IA) Data Sheet +(d) Electrical Systems Form (ESF-1) template +(e) Electrical Systems Form (ESF-2) template +(f) Program Information Sheet (Team information for the Event Program) +(g) Mechanical Inspection Sheet (For reference) +(h) Electrical Inspection Sheet (For reference) +(i) Design Specification Sheet +(j) Design Event Judging Form (For reference) +(k) Project Management Judging Form (For reference) +(l) Site pre-registration form +Note: Formula Hybrid + Electric strives to provide student engineering teams with timely and useful +information to assist in the design and construction of their vehicles. Check the Formula Hybrid ++ Electric website often for new or updated advisory publications. +ARTICLE A11 PROTESTS +1A11.1 Protests - General +It is recognized that thousands of hours of work have gone into fielding a vehicle and that teams are +entitled to all the points they can earn. We also recognize that there can be differences in the +interpretation of rules, the application of penalties and the understanding of procedures. The +officials and SAE staff will make every effort to fully review all questions and resolve +problems and discrepancies quickly and equitably +1A11.2 Preliminary Review – Required +If a team has a question about scoring, judging, policies, or any official action it must be brought to the +organizer’s or SAE staff’s attention for an informal preliminary review before a protest can be +filed. +1A11.3 Cause for Protest +A team may protest any rule interpretation, score, or official action (unless specifically excluded from +protest) which they feel has caused some actual, non-trivial, harm to their team, or has had +substantive effect on their score. Teams may not protest rule interpretations or actions that have +not caused them any substantive damage. +1A11.4 Protest Format and Forfeit +All protests must be filed in writing and presented to the organizer or SAE staff by the team captain. In +order to have a protest considered, a team must post a twenty-five (25) point protest bond +which will be forfeited if their protest is rejected. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A11.5 Protest Period +Protests concerning any aspect of the competition must be filed within one-half hour (30 minutes) of the +posting of the scores of the event to which the protest relates. +1A11.6 Decision +The decision of the competition protest committee regarding any protest is final. +ARTICLE A12 QUESTIONS ABOUT THE FORMULA HYBRID + ELECTRIC RULES +1A12.1 Question Publication +By submitting, a question to the Formula Hybrid + Electric Rules Committee or the competition’s +organizing body you and your team agree that both your question and the official answer can be +reproduced and distributed by SAE or Formula Hybrid + Electric, in both complete and edited +versions, in any medium or format anywhere in the world. +1A12.2 Question Types +1A12.2.1 The Committee will answer questions that are not already answered in the rules or FAQs or that +require new or novel rule interpretations. The Committee will not respond to questions that are +already answered in the rules. For example, if a rule specifies a minimum dimension for a part +the Committee will not answer questions asking if a smaller dimension can be used. +1A12.3 Frequently Asked Questions +1A12.3.1 Before submitting a question, check the Frequently Asked Questions section of the Formula +Hybrid + Electric website. +1A12.4 Question Submission +Questions must be submitted on the Formula Hybrid + Electric Support page: +https://formulahybridelectric.supportsystem.com/ +Figure 1 - Formula Hybrid + Electric Support Page + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1A12.5 Question Format +The following information is required: +(a) Submitter’s Name +(b) Submitter’s Email +(c) Topic (Select from the pull-down menu) +(d) University Name (Registered teams will find their University name in a pull-down list) +You may type your question into the “Message” box, or upload a document. +You will receive a confirmation email with a link to enable you to check on your question’s status. +1A12.6 Response Time +Please allow a minimum of 3 days for a response. The Rules Committee will respond as quickly as +possible, however, responses to questions presenting new issues, or of unusual complexity, may +take more than one week. +Please do not resend questions. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART T1 - GENERAL TECHNICAL REQUIREMENTS +ARTICLE T1 VEHICLE REQUIREMENTS AND RESTRICTIONS *** +1T1.1 Technical Inspection +1T1.1.1 The following requirements and restrictions will be enforced through technical inspection. +Noncompliance must be corrected and the car re-inspected before the car is allowed to +operate under power. +1T1.2 Modifications and Repairs +1T1.2.1 Once the vehicle has been presented for judging in the Design Events, or submitted for +Technical Inspection, and until the vehicle is approved to compete in the dynamic events, i.e. +all the inspection stickers are awarded, the only modifications permitted to the vehicle are +those directed by the Inspector(s) and noted on the Inspection Form. +1T1.2.2 Once the vehicle is approved to compete in the dynamic events, the ONLY modifications +permitted to the vehicle are: +(a) Adjustment of belts, chains and clutches +(b) Adjustment of brake bias +(c) Adjustment of the driver restraint system, head restraint, seat and pedal assembly +(d) Substitution of the head restraint or seat inserts for different drivers +(e) Adjustment to engine operating parameters, e.g. fuel mixture and ignition timing and any +software calibration changes +(f) Adjustment of mirrors +(g) Adjustment of the suspension where no part substitution is required, (except that springs, +sway bars and shims may be changed) +(h) Adjustment of tire pressure +(i) Adjustment of wing angle (but not the location) +(j) Replenishment of fluids +(k) Replacement of worn tires or brake pads The replacement tires and/or brake pads must be +identical in material, composition and size to those presented and approved at Technical +Inspection. +(l) The changing of wheels and tires for “wet” or “damp” conditions as allowed in D3.1 of the +Formula Hybrid + Electric Rules. +(m) Recharging of Grounded Low Voltage (GLV) supplies. +(n) Recharging of Accumulators. (See EV12.2) +(o) Adjustment of motor controller operating parameters. +1T1.2.3 The vehicle must maintain all required specifications, e.g. ride height, suspension travel, +braking capacity, sound level and wing location throughout the competition. +1T1.2.4 Once the vehicle is approved for competition, any damage to the vehicle that requires repair, +e.g. crash damage, electrical or mechanical damage will void the Inspection Approval. Upon + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +the completion of the repair and before re-entering into any dynamic competition, the vehicle +MUST be re-submitted to Technical Inspection for re-approval. +ARTICLE T2 GENERAL DESIGN REQUIREMENTS +1T2.1 Vehicle Configuration +1T2.1.1 The vehicle must be open-wheeled and open-cockpit (a formula style body) with four (4) +wheels that are not in a straight line. +1T2.1.2 Definition of "Open Wheel" – Open Wheel vehicles must satisfy all of the following criteria: +(a) The top 180 degrees of the wheels/tires must be unobstructed when viewed from +vertically above the wheel. +(b) The wheels/tires must be unobstructed when viewed from the side. +(c) No part of the vehicle may enter a keep-out-zone defined by two lines extending +vertically from positions 75 mm in front of and 75 mm behind the outer diameter of the +front and rear tires in side view elevation of the vehicle with the tires steered straight +ahead. This keep-out zone will extend laterally from the outside plane of the wheel/tire to +the inboard plane of the wheel/tire. See Figure 2 below. +Note: The dry tires will be used for all inspections. +Figure 2 - Open Wheel Definition +1T2.2 Bodywork +There must be no openings through the bodywork into the driver compartment from the front of +the vehicle back to the roll bar main hoop or firewall other than that required for the cockpit +opening. Minimal openings around the front suspension components are allowed. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T2.3 Wheelbase +The car must have a wheelbase of at least 1524 mm. The wheelbase is measured from the +center of ground contact of the front and rear tires with the wheels pointed straight ahead. +1T2.4 Vehicle Track +The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. +1T2.5 Visible Access +All items on the Inspection Form must be clearly visible to the technical inspectors without +using instruments such as endoscopes or mirrors. Visible access can be provided by removing +body panels or by providing removable access panels. +ARTICLE T3 DRIVER’S CELL +1T3.1 General Requirements +1T3.1.1 Among other requirements, the vehicle’s structure must include two roll hoops that are braced, +a front bulkhead with support system and Impact Attenuator, and side impact structures. +Note: Many teams will be retrofitting Formula SAE cars for Formula Hybrid + Electric. In +most cases these vehicles will be considerably heavier than what the original frame and +suspension was designed to carry. It is important to analyze the structure of the car and to +strengthen it as required to insure that it will handle the additional stresses. +The technical inspectors will also be paying close attention to the mounting of accumulator +systems. These can be very heavy and must be adequately fastened to the main structure of the +vehicle. +1T3.2 Definitions +The following definitions apply throughout the Rules document: +(a) Main Hoop - A roll bar located alongside or just behind the driver’s torso. +(b) Front Hoop - A roll bar located above the driver’s legs, in proximity to the steering wheel. +(c) Roll Hoops – Both the Front Hoop and the Main Hoop are classified as “Roll Hoops” +(d) Roll Hoop Bracing Supports – The structure from the lower end of the Roll Hoop Bracing +back to the Roll Hoop(s). +(e) Frame Member - A minimum representative single piece of uncut, continuous tubing. +(f) Frame - The “Frame” is the fabricated structural assembly that supports all functional +vehicle systems. This assembly may be a single welded structure, multiple welded +structures or a combination of composite and welded structures. +(g) Primary Structure – The Primary Structure is comprised of the following Frame +components: +(i) Main Hoop +(ii) Front Hoop +(iii) Roll Hoop Braces and Supports +(iv) Side Impact Structure + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(v) Front Bulkhead +(vi) Front Bulkhead Support System +(vii) All Frame Members, guides and supports that transfer load from the Driver’s +Restraint System into items (i) through (vi). +(h) Major Structure of the Frame – The portion of the Frame that lies within the envelope +defined by the Primary Structure. The upper portion of the Main Hoop and the Main Hoop +Bracing are not included in defining this envelope. +(i) Front Bulkhead – A planar structure that defines the forward plane of the Major Structure +of the Frame and functions to provide protection for the driver’s feet. +(j) Impact Attenuator – A deformable, energy absorbing device located forward of the Front +Bulkhead. +(k) Side Impact Zone – The area of the side of the car extending from the top of the floor to +350 mm above the ground and from the Front Hoop back to the Main Hoop. +(l) Node-to-node triangulation – An arrangement of frame members projected onto a plane, +where a co-planar load applied in any direction, at any node, results in only tensile or +compressive forces in the frame members. This is also what is meant by “properly +triangulated”. +Figure 3 - Triangulation +1T3.3 Minimum Material Requirements +1T3.3.1 Baseline Steel Material +The Primary Structure of the car must be constructed of: +Either: Round, mild or alloy, steel tubing (minimum 0.1% carbon) of the minimum dimensions +specified in Table 4 . +Or: Approved alternatives per Rules T3.3, T3.3.2, T3.5 and T3.6. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Inch + Metric Main & Front Hoops, + Round: 1.0" x 0.095" + Round: 25.0 mm x 2.50 mm Shoulder Harness Mounting Bar - Side Impact Structure + Round: 1.0" x 0.065" + Round: 25.0 mm x 1.75 mm Roll Hoop Bracing + Square: 1.0" x 1.0" x 0.049" + Square: 25.0 mm x 25.0 mm x 1.25 mm Front Bulkhead + Square: 26.0 mm x 26.0 mm x 1.2 mm Main Hoop Bracing Supports + Round: 1.0" x 0.049" + Round: 25.0 mm x 1.5 mm Front Bulkhead Supports + Round: 26.0 mm x 1.2 mm Protection of Tractive System Components OUTSIDE DIMENSION x WALL THICKNESS ITEM or APPLICATION -Driver’s Restraint Harness Attachment +Driver’s Restraint Harness Attachment (except for Shoulder Harness Mounting Bar) - -Table 4 - Baseline Steel -Note 1: The use of alloy steel does not allow the wall thickness to be thinner than that used for -mild steel. -Note 2: For a specific application using tubing of the specified outside diameter but with -greater wall thickness, or of the specified wall thickness and a greater outside diameter, or -replacing round tubing with square tubing of the same or larger size to those listed above, are -NOT rules deviations requiring approval. -Note 3: Except for inspection holes, any holes drilled in any regulated tubing require the -submission of an SES. -Note 4: Baseline steel properties used for calculations to be submitted in an SES may not be -lower than the following: -Bending and buckling strength calculations: - Young’s Modulus (E) = 200 GPa (29,000 ksi) - Yield Strength (S +Table 4 - Baseline Steel +Note 1: The use of alloy steel does not allow the wall thickness to be thinner than that used for +mild steel. +Note 2: For a specific application using tubing of the specified outside diameter but with +greater wall thickness, or of the specified wall thickness and a greater outside diameter, or +replacing round tubing with square tubing of the same or larger size to those listed above, are +NOT rules deviations requiring approval. +Note 3: Except for inspection holes, any holes drilled in any regulated tubing require the +submission of an SES. +Note 4: Baseline steel properties used for calculations to be submitted in an SES may not be +lower than the following: +Bending and buckling strength calculations: +Young’s Modulus (E) = 200 GPa (29,000 ksi) +Yield Strength (S y -) = 305 MPa (44.2 ksi) - Ultimate Strength (S +) = 305 MPa (44.2 ksi) +Ultimate Strength (S u -) = 365 MPa (52.9 ksi) - -Welded monocoque attachment points or welded tube joint calculations: - Yield Strength (S +) = 365 MPa (52.9 ksi) +Welded monocoque attachment points or welded tube joint calculations: +Yield Strength (S y -) = 180 MPa (26 ksi) - Ultimate Strength (S +) = 180 MPa (26 ksi) +Ultimate Strength (S u -) = 300 MPa (43.5 ksi) - -1T3.3.2 When a cutout, or a hole greater in diameter than 3/16 inch (4 mm), is made in a regulated tube, -e.g. to mount the safety harness or suspension and steering components, in order to regain the -baseline, cold rolled strength of the original tubing, the tubing must be reinforced by the use -of a welded insert or other reinforcement. The welded strength figures given above must be -used for the additional material. And the details, including dimensioned drawings, must be -included in the SES. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.4 Alternative Tubing and Material - General -1T3.4.1 Alternative tubing geometry and/or materials may be used except that the Main Roll Hoop and -Main Roll Hoop Bracing must be made from steel, i.e. the use of aluminum or titanium -tubing or composites for these components is prohibited. -1T3.4.2 Titanium or magnesium on which welding has been utilized may not be used for any part of the -Primary Structure. This includes the attachment of brackets to the tubing or the attachment of -the tubing to other components. -1T3.4.3 If a team chooses to use alternative tubing and/or materials they must still submit a “Structural -Equivalency Spreadsheet” per Rule T3.8. The teams must submit calculations for the material -they have chosen, demonstrating equivalence to the minimum requirements found in Section -T3.3.1 for yield and ultimate strengths in bending, buckling and tension, for buckling -modulus and for energy dissipation. -Note: The Buckling Modulus is defined as EI, where, E = modulus of Elasticity, and I = area -moment of inertia about the weakest axis. -1T3.4.4 To be considered as a structural tube in the SES Submission (T3.8) tubing cannot have an -outside dimension less than 25 mm or a wall thickness less than that listed in T3.5 or T3.6. -1T3.4.5 If a bent tube is used anywhere in the primary structure, other than the front and main roll -hoops, an additional tube must be attached to support it. The attachment point must be the -position along the tube where it deviates farthest from a straight line connecting both ends. -The support tube must have the same diameter and thickness as the bent tube. The support -tube must terminate at a node of the chassis. -1T3.4.6 Any chassis design that is a hybrid of the baseline and monocoque rules, must meet all relevant -rules requirements, e.g. a sandwich panel side impact structure in a tube frame chassis must -meet the requirements of rules T3.27, T3.28, T3.29, T3.30 and T3.33. -Note: It is allowable for the properties of tubes and laminates to be combined to prove -equivalence. E.g. in a side-impact structure consisting of one tube as per T3.3 and a laminate -panel, the panel only needs to be equivalent to two side-impact tubes. -1T3.5 Alternative Steel Tubing - Minimum Wall Thickness Allowed: - -MATERIAL & APPLICATION MINIMUM WALL THICKNESS -Front and Main Roll Hoops -Shoulder Harness Mounting Bar -2.0 mm -Roll Hoop Bracing -Roll Hoop Bracing Supports -Side Impact Structure -Front Bulkhead -Front Bulkhead Support -Driver’s Harness Attachment (Except for - Shoulder Harness Mounting Bar - above) -Protection of accumulators -Protection of TSV components -1.2 mm -Table 5 - Steel Tubing Minimum Wall Thicknesses - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - Note 1: All steel is treated equally - there is no allowance for alloy steel tubing, e.g. SAE 4130, -to have a thinner wall thickness than that used with mild steel. - Note 2: To maintain EI with a thinner wall thickness than specified in T3.3.1, the outside -diameter MUST be increased. - Note 3: To maintain the equivalent yield and ultimate tensile strength the same cross-sectional -area of steel as the baseline tubing specified in T3.3.1 must be maintained. -1T3.6 Aluminum Tubing Requirements -1T3.6.1 Minimum Wall Thickness of Aluminum Tubing is 3.0 mm -1T3.6.2 The equivalent yield strength must be considered in the “as-welded” condition, (Reference: -WELDING ALUMINUM (latest Edition) by the Aluminum Association, or THE WELDING -HANDBOOK, Volume 4, 9th Ed., by The American Welding Society), unless the team -demonstrates and shows proof that the frame has been properly solution heat treated and -artificially aged. -1T3.6.3 Should aluminum tubing be solution heat-treated and age hardened to increase its strength after -welding; the team must supply sufficient documentation as to how the process was -performed. This includes, but is not limited to, the heat-treating facility used, the process -applied, and the fixturing used. -1T3.7 Composite Materials -1T3.7.1 If any composite or other material is used, the team must present documentation of material -type, e.g. purchase receipt, shipping document or letter of donation, and of the material -properties. Details of the composite lay-up technique as well as the structural material used -(cloth type, weight, and resin type, number of layers, core material, and skin material if -metal) must also be submitted. The team must submit calculations demonstrating equivalence -of their composite structure to one of similar geometry made to the minimum requirements -found in Section T3.3.1. Equivalency calculations must be submitted for energy dissipation, -yield and ultimate strengths in bending, buckling, and tension. Submit the completed -“Structural Equivalency Spreadsheet” per Section T3.8 -Note: Some composite materials present unique electrical shock hazards, and may require -additional engineering and fabrication effort to minimize those hazards. See: ARTICLE EV8. -1T3.7.2 Composite materials are not allowed for the Main Hoop or the Front Hoop. -1T3.8 Structural Documentation – SES Submission -All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010. -1T3.8.1 All teams must submit a Structural Equivalency Spreadsheet (SES) even if they are not -planning to use alternative materials or tubing sizes to those specified in T3.3.1 Baseline -Steel Materials. -1T3.8.2 The use of alternative materials or tubing sizes to those specified in T3.3.1 “Baseline Steel -Material,” is allowed, provided they have been judged by a technical review to have equal or -superior properties to those specified in T3.3.1. -1T3.8.3 Approval of alternative material or tubing sizes will be based upon the engineering judgment -and experience of the chief technical inspector or their appointee. -1T3.8.4 The technical review is initiated by completing the “Structural Equivalency Spreadsheet” (SES) -which can be downloaded from the Formula Hybrid + Electric website. -1T3.8.5 Structural Equivalency Spreadsheet – Submission - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -SESs must be submitted via the Formula Hybrid + Electric Document Upload page. See -Section A9.2. -Do Not Resubmit SES’s unless instructed to do so. - -1T3.8.6 Vehicles completed under an approved SES must be fabricated in accordance with the materials -and processes described in the SES. -1T3.8.7 Teams must bring a copy of the approved SES with them to Technical Inspection. -Comment - The resubmission of an SES that was written and submitted for a competition in a -previous year is strongly discouraged. Each team is expected to perform their own tests and to -submit SESs based on their original work. Understanding the engineering that justifies the -equivalency is essential to discussing your work with the officials. - -1T3.8.8 An approved SES for a Formula SAE 2024 or 2025 competition may be submitted in place of -the Formula Hybrid + Electric specific SES required by T3.8.4. - -1T3.9 Main and Front Roll Hoops – General Requirements -1T3.9.1 The driver’s head and hands must not contact the ground in any rollover attitude. -1T3.9.2 The Frame must include both a Main Hoop and a Front Hoop as shown in Figures from Top: -4. -1T3.9.3 When seated normally and restrained by the Driver’s Restraint System, the helmet of a 95th -percentile male (anthropometrical data; See Table 6 and Figure 5) and all of the team’s -drivers must: -(a) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to -the top of the front hoop. (Figures from Top: 4a) -(b) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to -the lower end of the main hoop bracing if the bracing extends rearwards. (Figures from -Top: 4b) -(c) Be no further rearwards than the rear surface of the main hoop if the main hoop bracing -extends forwards. (Figures from Top: 4c) - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -A two dimensional template used to represent the 95th percentile male is made to the -following dimensions: -● A circle of diameter 200 mm will represent the hips and buttocks. -● A circle of diameter 200 mm will represent the shoulder/cervical region. -● A circle of diameter 300 mm will represent the head (with helmet). -● A straight line measuring 490 mm will connect the centers of the two 200 mm -circles. -● A straight line measuring 280 mm will connect the centers of the upper 200 -mm circle and the 300 mm head circle. -Table 6 - 95th Percentile Male Template Dimensions - -Figures from Top: 4a, 4b, and 4c- Roll Hoops and Helmet Clearance - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 5 - Percy -- 95th Percentile Male with Helmet - -Figure 6 – 95th Percentile Template Positioning -1T3.9.4 The 95th percentile male template (Percy) will be positioned as follows: (See Figure 6) -(a) The seat will be adjusted to the rearmost position, -(b) The pedals will be placed in the most forward position. -(c) The bottom 200 mm circle will be placed on the seat bottom such that the distance -between the center of this circle and the rearmost face of the pedals is no less than 915 -mm. -(d) The middle 200 mm circle, representing the shoulders, will be positioned on the seat back. -(e) The upper 300 mm circle will be positioned no more than 25.4 mm away from the head -restraint (i.e. where the driver’s helmet would normally be located while driving). - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - +) = 300 MPa (43.5 ksi) +1T3.3.2 When a cutout, or a hole greater in diameter than 3/16 inch (4 mm), is made in a regulated tube, +e.g. to mount the safety harness or suspension and steering components, in order to regain the +baseline, cold rolled strength of the original tubing, the tubing must be reinforced by the use +of a welded insert or other reinforcement. The welded strength figures given above must be +used for the additional material. And the details, including dimensioned drawings, must be +included in the SES. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.4 Alternative Tubing and Material - General +1T3.4.1 Alternative tubing geometry and/or materials may be used except that the Main Roll Hoop and +Main Roll Hoop Bracing must be made from steel, i.e. the use of aluminum or titanium +tubing or composites for these components is prohibited. +1T3.4.2 Titanium or magnesium on which welding has been utilized may not be used for any part of the +Primary Structure. This includes the attachment of brackets to the tubing or the attachment of +the tubing to other components. +1T3.4.3 If a team chooses to use alternative tubing and/or materials they must still submit a “Structural +Equivalency Spreadsheet” per Rule T3.8. The teams must submit calculations for the material +they have chosen, demonstrating equivalence to the minimum requirements found in Section +T3.3.1 for yield and ultimate strengths in bending, buckling and tension, for buckling +modulus and for energy dissipation. +Note: The Buckling Modulus is defined as EI, where, E = modulus of Elasticity, and I = area +moment of inertia about the weakest axis. +1T3.4.4 To be considered as a structural tube in the SES Submission (T3.8) tubing cannot have an +outside dimension less than 25 mm or a wall thickness less than that listed in T3.5 or T3.6. +1T3.4.5 If a bent tube is used anywhere in the primary structure, other than the front and main roll +hoops, an additional tube must be attached to support it. The attachment point must be the +position along the tube where it deviates farthest from a straight line connecting both ends. +The support tube must have the same diameter and thickness as the bent tube. The support +tube must terminate at a node of the chassis. +1T3.4.6 Any chassis design that is a hybrid of the baseline and monocoque rules, must meet all relevant +rules requirements, e.g. a sandwich panel side impact structure in a tube frame chassis must +meet the requirements of rules T3.27, T3.28, T3.29, T3.30 and T3.33. +Note: It is allowable for the properties of tubes and laminates to be combined to prove +equivalence. E.g. in a side-impact structure consisting of one tube as per T3.3 and a laminate +panel, the panel only needs to be equivalent to two side-impact tubes. +1T3.5 Alternative Steel Tubing +Minimum Wall Thickness Allowed: +MATERIAL & APPLICATION MINIMUM WALL THICKNESS +Front and Main Roll Hoops +Shoulder Harness Mounting Bar +2.0 mm +Roll Hoop Bracing +Roll Hoop Bracing Supports +Side Impact Structure +Front Bulkhead +Front Bulkhead Support +Driver’s Harness Attachment (Except for +Shoulder Harness Mounting Bar - above) +Protection of accumulators +Protection of TSV components +1.2 mm +Table 5 - Steel Tubing Minimum Wall Thicknesses + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note 1: All steel is treated equally - there is no allowance for alloy steel tubing, e.g. SAE 4130, +to have a thinner wall thickness than that used with mild steel. +Note 2: To maintain EI with a thinner wall thickness than specified in T3.3.1, the outside +diameter MUST be increased. +Note 3: To maintain the equivalent yield and ultimate tensile strength the same cross-sectional +area of steel as the baseline tubing specified in T3.3.1 must be maintained. +1T3.6 Aluminum Tubing Requirements +1T3.6.1 Minimum Wall Thickness of Aluminum Tubing is 3.0 mm +1T3.6.2 The equivalent yield strength must be considered in the “as-welded” condition, (Reference: +WELDING ALUMINUM (latest Edition) by the Aluminum Association, or THE WELDING +HANDBOOK, Volume 4, 9th Ed., by The American Welding Society), unless the team +demonstrates and shows proof that the frame has been properly solution heat treated and +artificially aged. +1T3.6.3 Should aluminum tubing be solution heat-treated and age hardened to increase its strength after +welding; the team must supply sufficient documentation as to how the process was +performed. This includes, but is not limited to, the heat-treating facility used, the process +applied, and the fixturing used. +1T3.7 Composite Materials +1T3.7.1 If any composite or other material is used, the team must present documentation of material +type, e.g. purchase receipt, shipping document or letter of donation, and of the material +properties. Details of the composite lay-up technique as well as the structural material used +(cloth type, weight, and resin type, number of layers, core material, and skin material if +metal) must also be submitted. The team must submit calculations demonstrating equivalence +of their composite structure to one of similar geometry made to the minimum requirements +found in Section T3.3.1. Equivalency calculations must be submitted for energy dissipation, +yield and ultimate strengths in bending, buckling, and tension. Submit the completed +“Structural Equivalency Spreadsheet” per Section T3.8 +Note: Some composite materials present unique electrical shock hazards, and may require +additional engineering and fabrication effort to minimize those hazards. See: ARTICLE EV8. +1T3.7.2 Composite materials are not allowed for the Main Hoop or the Front Hoop. +1T3.8 Structural Documentation – SES Submission +All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010. +1T3.8.1 All teams must submit a Structural Equivalency Spreadsheet (SES) even if they are not +planning to use alternative materials or tubing sizes to those specified in T3.3.1 Baseline +Steel Materials. +1T3.8.2 The use of alternative materials or tubing sizes to those specified in T3.3.1 “Baseline Steel +Material,” is allowed, provided they have been judged by a technical review to have equal or +superior properties to those specified in T3.3.1. +1T3.8.3 Approval of alternative material or tubing sizes will be based upon the engineering judgment +and experience of the chief technical inspector or their appointee. +1T3.8.4 The technical review is initiated by completing the “Structural Equivalency Spreadsheet” (SES) +which can be downloaded from the Formula Hybrid + Electric website. +1T3.8.5 Structural Equivalency Spreadsheet – Submission + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +SESs must be submitted via the Formula Hybrid + Electric Document Upload page. See +Section A9.2. +Do Not Resubmit SES’s unless instructed to do so. +1T3.8.6 Vehicles completed under an approved SES must be fabricated in accordance with the materials +and processes described in the SES. +1T3.8.7 Teams must bring a copy of the approved SES with them to Technical Inspection. +Comment - The resubmission of an SES that was written and submitted for a competition in a +previous year is strongly discouraged. Each team is expected to perform their own tests and to +submit SESs based on their original work. Understanding the engineering that justifies the +equivalency is essential to discussing your work with the officials. +1T3.8.8 An approved SES for a Formula SAE 2024 or 2025 competition may be submitted in place of +the Formula Hybrid + Electric specific SES required by T3.8.4. +1T3.9 Main and Front Roll Hoops – General Requirements +1T3.9.1 The driver’s head and hands must not contact the ground in any rollover attitude. +1T3.9.2 The Frame must include both a Main Hoop and a Front Hoop as shown in Figures from Top: +4. +1T3.9.3 When seated normally and restrained by the Driver’s Restraint System, the helmet of a 95th +percentile male (anthropometrical data; See Table 6 and Figure 5) and all of the team’s +drivers must: +(a) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to +the top of the front hoop. (Figures from Top: 4a) +(b) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to +the lower end of the main hoop bracing if the bracing extends rearwards. (Figures from +Top: 4b) +(c) Be no further rearwards than the rear surface of the main hoop if the main hoop bracing +extends forwards. (Figures from Top: 4c) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +A two dimensional template used to represent the 95th percentile male is made to the +following dimensions: +● A circle of diameter 200 mm will represent the hips and buttocks. +● A circle of diameter 200 mm will represent the shoulder/cervical region. +● A circle of diameter 300 mm will represent the head (with helmet). +● A straight line measuring 490 mm will connect the centers of the two 200 mm +circles. +● A straight line measuring 280 mm will connect the centers of the upper 200 +mm circle and the 300 mm head circle. +Table 6 - 95th Percentile Male Template Dimensions +Figures from Top: 4a, 4b, and 4c- Roll Hoops and Helmet Clearance + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 5 - Percy -- 95th Percentile Male with Helmet +Figure 6 – 95th Percentile Template Positioning +1T3.9.4 The 95th percentile male template (Percy) will be positioned as follows: (See Figure 6) +(a) The seat will be adjusted to the rearmost position, +(b) The pedals will be placed in the most forward position. +(c) The bottom 200 mm circle will be placed on the seat bottom such that the distance +between the center of this circle and the rearmost face of the pedals is no less than 915 +mm. +(d) The middle 200 mm circle, representing the shoulders, will be positioned on the seat back. +(e) The upper 300 mm circle will be positioned no more than 25.4 mm away from the head +restraint (i.e. where the driver’s helmet would normally be located while driving). + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 IMPORTANT: If the requirements of T3.9.3 are not met with the 95 -th - percentile male -template, the car will not receive a Technical Inspection Sticker and will not be allowed to -compete in the dynamic events. - -1T3.9.5 Drivers who do not meet the helmet clearance requirements of T3.9.3 will not be allowed to -drive in the competition. -1T3.9.6 The minimum radius of any bend, measured at the tube centerline, must be at least three times -the tube outside diameter. Bends must be smooth and continuous with no evidence of -crimping or wall failure. -1T3.9.7 The Main Hoop and Front Hoop must be securely integrated into the Primary Structure using -gussets and/or tube triangulation. -1T3.10 Main Hoop -1T3.10.1 The Main Hoop must be constructed of a single piece of uncut, continuous, closed section -steel tubing per Rule T3.3.1 -1T3.10.2 The use of aluminum alloys, titanium alloys or composite materials for the Main Hoop is -prohibited. -1T3.10.3 The Main Hoop must extend from the lowest Frame Member on one side of the Frame, up, -over and down the lowest Frame Member on the other side of the Frame. -1T3.10.4 In the side view of the vehicle, the portion of the Main Roll Hoop that lies above its -attachment point to the Major Structure of the Frame must be within ten degrees (10°) of the -vertical. -1T3.10.5 In the side view of the vehicle, any bends in the Main Roll Hoop above its attachment point -to the Major Structure of the Frame must be braced to a node of the Main Hoop Bracing -Support structure with tubing meeting the requirements of Roll Hoop Bracing as per Rule -T3.3.1 -1T3.10.6 In the front view of the vehicle, the vertical members of the Main Hoop must be at least 380 -mm apart (inside dimension) at the location where the Main Hoop is attached to the Major -Structure of the Frame. -1T3.11 Front Hoop -1T3.11.1 The Front Hoop must be constructed of closed section metal tubing per Rule T3.3.1. -1T3.11.2 The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, -over and down to the lowest Frame Member on the other side of the Frame. -1T3.11.3 With proper gusseting and/or triangulation, it is permissible to fabricate the Front Hoop from -more than one piece of tubing. -1T3.11.4 The top-most surface of the Front Hoop must be no lower than the top of the steering wheel -in any angular position. -1T3.11.5 The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance -must be measured horizontally, on the vehicle centerline, from the rear surface of the Front +th +percentile male +template, the car will not receive a Technical Inspection Sticker and will not be allowed to +compete in the dynamic events. +1T3.9.5 Drivers who do not meet the helmet clearance requirements of T3.9.3 will not be allowed to +drive in the competition. +1T3.9.6 The minimum radius of any bend, measured at the tube centerline, must be at least three times +the tube outside diameter. Bends must be smooth and continuous with no evidence of +crimping or wall failure. +1T3.9.7 The Main Hoop and Front Hoop must be securely integrated into the Primary Structure using +gussets and/or tube triangulation. +1T3.10 Main Hoop +1T3.10.1 The Main Hoop must be constructed of a single piece of uncut, continuous, closed section +steel tubing per Rule T3.3.1 +1T3.10.2 The use of aluminum alloys, titanium alloys or composite materials for the Main Hoop is +prohibited. +1T3.10.3 The Main Hoop must extend from the lowest Frame Member on one side of the Frame, up, +over and down the lowest Frame Member on the other side of the Frame. +1T3.10.4 In the side view of the vehicle, the portion of the Main Roll Hoop that lies above its +attachment point to the Major Structure of the Frame must be within ten degrees (10°) of the +vertical. +1T3.10.5 In the side view of the vehicle, any bends in the Main Roll Hoop above its attachment point +to the Major Structure of the Frame must be braced to a node of the Main Hoop Bracing +Support structure with tubing meeting the requirements of Roll Hoop Bracing as per Rule +T3.3.1 +1T3.10.6 In the front view of the vehicle, the vertical members of the Main Hoop must be at least 380 +mm apart (inside dimension) at the location where the Main Hoop is attached to the Major +Structure of the Frame. +1T3.11 Front Hoop +1T3.11.1 The Front Hoop must be constructed of closed section metal tubing per Rule T3.3.1. +1T3.11.2 The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, +over and down to the lowest Frame Member on the other side of the Frame. +1T3.11.3 With proper gusseting and/or triangulation, it is permissible to fabricate the Front Hoop from +more than one piece of tubing. +1T3.11.4 The top-most surface of the Front Hoop must be no lower than the top of the steering wheel +in any angular position. +1T3.11.5 The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance +must be measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight- -ahead position. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.11.6 In side view, no part of the Front Hoop can be inclined at more than twenty degrees (20°) -from the vertical. -1T3.12 Main Hoop Bracing -1T3.12.1 Main Hoop braces must be constructed of closed section steel tubing per Rule T3.3.1. -1T3.12.2 The Main Hoop must be supported by two braces extending in the forward or rearward -direction on both the left and right sides of the Main Hoop. -1T3.12.3 In the side view of the Frame, the Main Hoop and the Main Hoop braces must not lie on the -same side of the vertical line through the top of the Main Hoop, i.e. if the Main Hoop leans -forward, the braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, -the braces must be rearward of the Main Hoop. -1T3.12.4 The Main Hoop braces must be attached as near as possible to the top of the Main Hoop but -not more than 160 mm below the top-most surface of the Main Hoop. The included angle -formed by the Main Hoop and the Main Hoop braces must be at least thirty degrees (30°). -See: Figure 7 - - -Figure 7 - Main and Front Hoop Bracing -1T3.12.5 The Main Hoop braces must be straight, i.e. without any bends. -1T3.12.6 The attachment of the Main Hoop braces must be capable of transmitting all loads from the -Main Hoop into the Major Structure of the Frame without failing. From the lower end of the -braces there must be a properly triangulated structure back to the lowest part of the Main -Hoop and the node at which the upper side impact tube meets the Main Hoop. This structure -must meet the minimum requirements for Main Hoop Bracing Supports (see Rule T3.3) or an -SES approved alternative. Bracing loads must not be fed solely into the engine, transmission -or differential, or through suspension components. -1T3.12.7 If any item which is outside the envelope of the Primary Structure is attached to the Main -Hoop braces, then additional bracing must be added to prevent bending loads in the braces in -any rollover attitude. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.13 Front Hoop Bracing -1T3.13.1 Front Hoop braces must be constructed of material per Rule T3.3.1. -1T3.13.2 The Front Hoop must be supported by two braces extending in the forward direction, one on -the left side and one on the right side of the Front Hoop. -1T3.13.3 The Front Hoop braces must be constructed such that they protect the driver’s legs and -should extend to the structure in front of the driver’s feet. -1T3.13.4 The Front Hoop braces must be attached as near as possible to the top of the Front Hoop but -not more than 50.8 mm below the top-most surface of the Front Hoop. See: Figure 7 -1T3.13.5 If the Front Hoop leans rearwards by more than ten degrees (10°) from the vertical, it must be -supported by additional bracing to the rear. This bracing must be constructed of material per -Rule T3.3.1. -1T3.14 Other Bracing Requirements - Where the braces are not welded to steel Frame Members, the braces must be securely attached -to the Frame using 8 mm Metric Grade 8.8 (5/16 in SAE Grade 5), or stronger, bolts. Mounting -plates welded to the Roll Hoop braces must be at least 2.0 mm thick steel. -1T3.15 Other Side Tube Requirements - If there is a Roll Hoop brace or other frame tube alongside the driver, at the height of the neck -of any of the team’s drivers, a metal tube or piece of sheet metal must be firmly attached to the -Frame to prevent the drivers’ shoulders from passing under the roll hoop brace or frame tube, -and his/her neck contacting this brace or tube. -1T3.16 Mechanically Attached Roll Hoop Bracing -1T3.16.1 Roll Hoop bracing may be mechanically attached. -1T3.16.2 Any non-permanent joint at either end must be either a double-lug joint as shown in Figure 8 -and Figure 9 or a sleeved butt joint as shown in Figure 10. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - +ahead position. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.11.6 In side view, no part of the Front Hoop can be inclined at more than twenty degrees (20°) +from the vertical. +1T3.12 Main Hoop Bracing +1T3.12.1 Main Hoop braces must be constructed of closed section steel tubing per Rule T3.3.1. +1T3.12.2 The Main Hoop must be supported by two braces extending in the forward or rearward +direction on both the left and right sides of the Main Hoop. +1T3.12.3 In the side view of the Frame, the Main Hoop and the Main Hoop braces must not lie on the +same side of the vertical line through the top of the Main Hoop, i.e. if the Main Hoop leans +forward, the braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, +the braces must be rearward of the Main Hoop. +1T3.12.4 The Main Hoop braces must be attached as near as possible to the top of the Main Hoop but +not more than 160 mm below the top-most surface of the Main Hoop. The included angle +formed by the Main Hoop and the Main Hoop braces must be at least thirty degrees (30°). +See: Figure 7 +Figure 7 - Main and Front Hoop Bracing +1T3.12.5 The Main Hoop braces must be straight, i.e. without any bends. +1T3.12.6 The attachment of the Main Hoop braces must be capable of transmitting all loads from the +Main Hoop into the Major Structure of the Frame without failing. From the lower end of the +braces there must be a properly triangulated structure back to the lowest part of the Main +Hoop and the node at which the upper side impact tube meets the Main Hoop. This structure +must meet the minimum requirements for Main Hoop Bracing Supports (see Rule T3.3) or an +SES approved alternative. Bracing loads must not be fed solely into the engine, transmission +or differential, or through suspension components. +1T3.12.7 If any item which is outside the envelope of the Primary Structure is attached to the Main +Hoop braces, then additional bracing must be added to prevent bending loads in the braces in +any rollover attitude. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.13 Front Hoop Bracing +1T3.13.1 Front Hoop braces must be constructed of material per Rule T3.3.1. +1T3.13.2 The Front Hoop must be supported by two braces extending in the forward direction, one on +the left side and one on the right side of the Front Hoop. +1T3.13.3 The Front Hoop braces must be constructed such that they protect the driver’s legs and +should extend to the structure in front of the driver’s feet. +1T3.13.4 The Front Hoop braces must be attached as near as possible to the top of the Front Hoop but +not more than 50.8 mm below the top-most surface of the Front Hoop. See: Figure 7 +1T3.13.5 If the Front Hoop leans rearwards by more than ten degrees (10°) from the vertical, it must be +supported by additional bracing to the rear. This bracing must be constructed of material per +Rule T3.3.1. +1T3.14 Other Bracing Requirements +Where the braces are not welded to steel Frame Members, the braces must be securely attached +to the Frame using 8 mm Metric Grade 8.8 (5/16 in SAE Grade 5), or stronger, bolts. Mounting +plates welded to the Roll Hoop braces must be at least 2.0 mm thick steel. +1T3.15 Other Side Tube Requirements +If there is a Roll Hoop brace or other frame tube alongside the driver, at the height of the neck +of any of the team’s drivers, a metal tube or piece of sheet metal must be firmly attached to the +Frame to prevent the drivers’ shoulders from passing under the roll hoop brace or frame tube, +and his/her neck contacting this brace or tube. +1T3.16 Mechanically Attached Roll Hoop Bracing +1T3.16.1 Roll Hoop bracing may be mechanically attached. +1T3.16.2 Any non-permanent joint at either end must be either a double-lug joint as shown in Figure 8 +and Figure 9 or a sleeved butt joint as shown in Figure 10. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 8 – Double-Lug Joint - -Figure 9 – Double Lug Joint - -Figure 10 – Sleeved Butt Joint - -1T3.16.3 The threaded fasteners used to secure non-permanent joints are considered critical fasteners -and must comply with ARTICLE T11. -1T3.16.4 No spherical rod ends are allowed. -1T3.16.5 For double-lug joints, each lug must be at least 4.5 mm thick steel, measure 25 mm minimum -perpendicular to the axis of the bracing and be as short as practical along the axis of the -bracing. -1T3.16.6 All double-lug joints, whether fitted at the top or bottom of the tube, must include a capping -arrangement. (See Figure 8 and Figure 9) -1T3.16.7 In a double-lug joint the pin or bolt must be 10 mm Grade 9.8 or 3/8 inch SAE Grade 8 -minimum. The attachment holes in the lugs and in the attached bracing must be a close fit -with the pin or bolt. -1T3.16.8 For sleeved butt joints (Figure 10), the sleeve must have a minimum length of 76 mm (38 -mm on either side of the joint) and be a close-fit around the base tubes. The wall thickness of -the sleeve must be at least that of the base tubes. The bolts must be 6 mm Grade 9.8 or 1/4 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -inch SAE Grade 8 minimum. The holes in the sleeves and tubes must be a close-fit with the -bolts. -1T3.17 Frontal Impact Structure -1T3.17.1 The driver’s feet and legs must be completely contained within the Major Structure of the -Frame. While the driver’s feet are touching the pedals, in side and front views no part of the -driver’s feet or legs can extend above or outside of the Major Structure of the Frame. -1T3.17.2 Forward of the Front Bulkhead must be an energy-absorbing Impact Attenuator. -1T3.18 Bulkhead -1T3.18.1 The Front Bulkhead must be constructed of closed section tubing per Rule T3.3.1. +Figure 9 – Double Lug Joint +Figure 10 – Sleeved Butt Joint +1T3.16.3 The threaded fasteners used to secure non-permanent joints are considered critical fasteners +and must comply with ARTICLE T11. +1T3.16.4 No spherical rod ends are allowed. +1T3.16.5 For double-lug joints, each lug must be at least 4.5 mm thick steel, measure 25 mm minimum +perpendicular to the axis of the bracing and be as short as practical along the axis of the +bracing. +1T3.16.6 All double-lug joints, whether fitted at the top or bottom of the tube, must include a capping +arrangement. (See Figure 8 and Figure 9) +1T3.16.7 In a double-lug joint the pin or bolt must be 10 mm Grade 9.8 or 3/8 inch SAE Grade 8 +minimum. The attachment holes in the lugs and in the attached bracing must be a close fit +with the pin or bolt. +1T3.16.8 For sleeved butt joints (Figure 10), the sleeve must have a minimum length of 76 mm (38 +mm on either side of the joint) and be a close-fit around the base tubes. The wall thickness of +the sleeve must be at least that of the base tubes. The bolts must be 6 mm Grade 9.8 or 1/4 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +inch SAE Grade 8 minimum. The holes in the sleeves and tubes must be a close-fit with the +bolts. +1T3.17 Frontal Impact Structure +1T3.17.1 The driver’s feet and legs must be completely contained within the Major Structure of the +Frame. While the driver’s feet are touching the pedals, in side and front views no part of the +driver’s feet or legs can extend above or outside of the Major Structure of the Frame. +1T3.17.2 Forward of the Front Bulkhead must be an energy-absorbing Impact Attenuator. +1T3.18 Bulkhead +1T3.18.1 The Front Bulkhead must be constructed of closed section tubing per Rule T3.3.1. 1T3.18.2 Except as allowed byT3.22.2, The Front Bulkhead must be located forward of all non- -crushable objects, e.g. batteries, master cylinders, hydraulic reservoirs. -1T3.18.3 The Front Bulkhead must be located such that the soles of the driver’s feet, when touching -but not applying the pedals, are rearward of the bulkhead plane. (This plane is defined by the -forward-most surface of the tubing.) Adjustable pedals must be in the forward most position. -1T3.19 Front Bulkhead Support -1T3.19.1 The Front Bulkhead must be securely integrated into the Frame. -1T3.19.2 The Front Bulkhead must be supported back to the Front Roll Hoop by a minimum of three -(3) Frame Members on each side of the vehicle with one at the top (within 50.8 mm of its -top-most surface), one (1) at the bottom, and one (1) as a diagonal brace to provide -triangulation. -1T3.19.3 The triangulation must be node-to-node, with triangles being formed by the Front Bulkhead, -the diagonal and one of the other two required Front Bulkhead Support Frame Members. -1T3.19.4 All the Frame Members of the Front Bulkhead Support system listed above must be -constructed of closed section tubing per Section T3.3.1. -1T3.20 Impact Attenuator (IA) -1T3.20.1 On all cars there must be an Impact Attenuator and an Anti-Intrusion Plate forward of the -Front Bulkhead, with the Anti-Intrusion Plate between the Impact Attenuator and the Front -Bulkhead. -All methods of attachment of the IA to the Ant-Intrusion Plate and of the Anti-Intrusion Plate to -the Front Bulkhead must provide adequate load paths for transverse and vertical loads in the -event of off-axis impacts. -1T3.20.2 The Anti-Intrusion Plate must: -(a) Be a 1.5 mm (0.060 in) thick solid steel or 4.0 mm (0.157 in) thick solid aluminum plate. -Monocoques may use an approved alternative as per T3.38. -(b) Be attached securely and directly to the Front Bulkhead. -(c) Have an outer profile that meets the requirements of T3.20.3. -1T3.20.3 Alternative designs of the Anti-Intrusion Plate required by T3.20.2 that do not comply with -the minimum specifications given above require an approved “Structural Equivalency -Spreadsheet”, per T3.8. Equivalency must also be proven for perimeter shear strength of the -proposed design. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.20.4 The requirements for the outside profile of the Anti-Intrusion Plate are dependent on the -method of attachment to the Front Bulkhead: -● For welded joints the profile must extend at least to the centerline of the Front Bulkhead -tubes on all sides. -● For bolted joints the profile must match the outside dimensions of the Front Bulkhead -around the entire periphery. -1T3.20.5 For tube frame cars, the accepted methods of attaching the Anti-Intrusion Plate to the Front -Bulkhead are: -(a) Welding, where the welds are either continuous or interrupted. If interrupted, the -weld/space ratio must be at least 1:1. All weld lengths must be greater than 25 mm (1”). -(b) Bolted joints, using a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) -bolts with positive locking. The distance between any two bolt centers must be at least 50 -mm (2”). -NOTE: Holes in mandated tubes will require appropriate measures to ensure compliance with -T3.3.1 Note 3, and T3.3.2 -1T3.20.6 For monocoque cars, the attachment of the Anti-Intrusion Plate to the monocoque structure -must be documented in the team’s SES submission. This must prove the attachment method -is equivalent to the bolted joints described in T3.20.5 and that the attachment method utilized -will fail before any other part of the monocoque. -1T3.20.7 The Impact Attenuator must be: -(a) At least 200 mm (7.8 in) long, with its length oriented along the fore/aft axis of the Frame. -(b) At least 100 mm (3.9 in) high and 200 mm (7.8 in) wide for a minimum distance of 200 -mm (7.8 in) forward of the Front Bulkhead. -(c) Attached securely to the Anti-Intrusion Plate. -Segmented foam attenuators must have all segments bonded together to prevent sliding or -parallelogramming. -1T3.20.8 The accepted methods of attaching the Impact Attenuator to the Anti-Intrusion Plate are: -(a) Bolted joints, using a minimum of four (4) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) -bolts with positive locking. The distance between any two bolt centers must be at least 50 -mm (2”). -(b) By the use of a structural adhesive. The adhesive must be appropriate for use with both -substrate types. Appropriate adhesive choice, substrate preparation, and equivalency of this -bonded joint to the bolted joint in T3.20.8(a) must be documented in the team’s IAD -Report. -Note: Foam IA’s cannot be attached solely by the bolted method. +crushable objects, e.g. batteries, master cylinders, hydraulic reservoirs. +1T3.18.3 The Front Bulkhead must be located such that the soles of the driver’s feet, when touching +but not applying the pedals, are rearward of the bulkhead plane. (This plane is defined by the +forward-most surface of the tubing.) Adjustable pedals must be in the forward most position. +1T3.19 Front Bulkhead Support +1T3.19.1 The Front Bulkhead must be securely integrated into the Frame. +1T3.19.2 The Front Bulkhead must be supported back to the Front Roll Hoop by a minimum of three +(3) Frame Members on each side of the vehicle with one at the top (within 50.8 mm of its +top-most surface), one (1) at the bottom, and one (1) as a diagonal brace to provide +triangulation. +1T3.19.3 The triangulation must be node-to-node, with triangles being formed by the Front Bulkhead, +the diagonal and one of the other two required Front Bulkhead Support Frame Members. +1T3.19.4 All the Frame Members of the Front Bulkhead Support system listed above must be +constructed of closed section tubing per Section T3.3.1. +1T3.20 Impact Attenuator (IA) +1T3.20.1 On all cars there must be an Impact Attenuator and an Anti-Intrusion Plate forward of the +Front Bulkhead, with the Anti-Intrusion Plate between the Impact Attenuator and the Front +Bulkhead. +All methods of attachment of the IA to the Ant-Intrusion Plate and of the Anti-Intrusion Plate to +the Front Bulkhead must provide adequate load paths for transverse and vertical loads in the +event of off-axis impacts. +1T3.20.2 The Anti-Intrusion Plate must: +(a) Be a 1.5 mm (0.060 in) thick solid steel or 4.0 mm (0.157 in) thick solid aluminum plate. +Monocoques may use an approved alternative as per T3.38. +(b) Be attached securely and directly to the Front Bulkhead. +(c) Have an outer profile that meets the requirements of T3.20.3. +1T3.20.3 Alternative designs of the Anti-Intrusion Plate required by T3.20.2 that do not comply with +the minimum specifications given above require an approved “Structural Equivalency +Spreadsheet”, per T3.8. Equivalency must also be proven for perimeter shear strength of the +proposed design. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.20.4 The requirements for the outside profile of the Anti-Intrusion Plate are dependent on the +method of attachment to the Front Bulkhead: +● For welded joints the profile must extend at least to the centerline of the Front Bulkhead +tubes on all sides. +● For bolted joints the profile must match the outside dimensions of the Front Bulkhead +around the entire periphery. +1T3.20.5 For tube frame cars, the accepted methods of attaching the Anti-Intrusion Plate to the Front +Bulkhead are: +(a) Welding, where the welds are either continuous or interrupted. If interrupted, the +weld/space ratio must be at least 1:1. All weld lengths must be greater than 25 mm (1”). +(b) Bolted joints, using a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) +bolts with positive locking. The distance between any two bolt centers must be at least 50 +mm (2”). +NOTE: Holes in mandated tubes will require appropriate measures to ensure compliance with +T3.3.1 Note 3, and T3.3.2 +1T3.20.6 For monocoque cars, the attachment of the Anti-Intrusion Plate to the monocoque structure +must be documented in the team’s SES submission. This must prove the attachment method +is equivalent to the bolted joints described in T3.20.5 and that the attachment method utilized +will fail before any other part of the monocoque. +1T3.20.7 The Impact Attenuator must be: +(a) At least 200 mm (7.8 in) long, with its length oriented along the fore/aft axis of the Frame. +(b) At least 100 mm (3.9 in) high and 200 mm (7.8 in) wide for a minimum distance of 200 +mm (7.8 in) forward of the Front Bulkhead. +(c) Attached securely to the Anti-Intrusion Plate. +Segmented foam attenuators must have all segments bonded together to prevent sliding or +parallelogramming. +1T3.20.8 The accepted methods of attaching the Impact Attenuator to the Anti-Intrusion Plate are: +(a) Bolted joints, using a minimum of four (4) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) +bolts with positive locking. The distance between any two bolt centers must be at least 50 +mm (2”). +(b) By the use of a structural adhesive. The adhesive must be appropriate for use with both +substrate types. Appropriate adhesive choice, substrate preparation, and equivalency of this +bonded joint to the bolted joint in T3.20.8(a) must be documented in the team’s IAD +Report. +Note: Foam IA’s cannot be attached solely by the bolted method. 1T3.20.9 If a team uses the “standard” FSAE Impact Attenuator 3 , and the outside profile of the Anti- -Intrusion Plate extends beyond the “standard” Impact Attenuator by more than 25 mm (1”) on - -3 - The officially approved “standard” Formula SAE Impact Attenuator may be found here on the Formula SAE -website - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -any side, a diagonal or X-brace made from 1.00” x 0.049” steel tube, or an approved -equivalent per T3.5, must be included in the Front Bulkhead. -1T3.21 Impact Attenuator Test Data Report Requirement -1T3.21.1 Impact Attenuator Test Data Report Requirement -All teams, whether they are using their own design of Impact Attenuator (IA) or the “standard” -FSAE Impact Attenuator, must submit an Impact Attenuator Data Report using the Impact -Attenuator Data (IAD) Template found on the Formula Hybrid + Electric Document page at: -https://www.formula-hybrid.org/documents -1T3.21.2 All teams must submit calculations and/or test data to show that their Impact Attenuator, -when mounted on the front of their vehicle and run into a solid, non-yielding impact barrier -with a velocity of impact of 7.0 meters/second, would give an average deceleration of the -vehicle not to exceed 20 g, with a peak deceleration less than or equal to 40 g's. -NOTE 1: Quasi-static testing is allowed. -NOTE 2: The calculations of how the reported absorbed energy, average deceleration and peak -deceleration figures have been derived from the test data MUST be included in the report and -appended to the report template. -1T3.21.3 Calculations must be based on the actual vehicle mass with a 175 lb. driver, full fluids, and -rounded up to the nearest 100 lb. -Note: Teams may only use the “Standard” FSAE impact attenuator design and data submission -process if their vehicle mass with driver is 300 kgs (661 lbs) or less. -To be eligible to utilize the “Standard” FSAE impact attenuator, teams must either have -previously brought a Formula Hybrid + Electric vehicle that weighs under 300 kgs (661 lbs) -with driver to a Formula Hybrid + Electric competition, or submit a detailed mass measurement -spreadsheet covering all the vehicle’s components as part of the Impact Attenuator Data Report, -showing that the new vehicle meets the above requirements. -1T3.21.4 Teams using a front wing must prove that the combination of the Impact Attenuator and front -wing, when used together, do not exceed the peak deceleration of rule T3.21.2. Teams can -use the following methods to show the design does not exceed the limits given in T3.21.2. -(a) Physical testing of the Impact Attenuator with wing mounts, links, vertical plates, and a -structural representation of the airfoil section to determine the peak force. See -http://formula-hybrid.org/students/tech-support/ FAQs for an example of the structure to -be included in the test. Or -(b) Combine the peak force from physical testing of the Impact Attenuator Assembly with -the wing mount failure load calculated from fastener shear and/or link buckling. Or -(c) If they are using the Standard FSAE Impact Attenuator (see T3.21.3 above), combine the -peak load of 95 kN exerted by the Standard FSAE Impact Attenuator with the wing -mount failure load calculated from fastener shear and/or buckling. -1T3.21.5 When using acceleration data, the average deceleration must be calculated based on the raw -data. The peak deceleration can be assessed based on the raw data, and if peaks above the 40g -limit are apparent in the data, it can then be filtered with a Channel Filter Class (CFC) 60 -(100 Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Tests”, or a -100 Hz, 3rd order, lowpass Butterworth (-3dB at 100 Hz) filter. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.21.6 A schematic of the test method must be supplied along with photos of the attenuator before -and after testing. -1T3.21.7 The test piece must be presented at technical inspection for comparison to the photographs -and the attenuator fitted to the vehicle. -1T3.21.8 The report must be submitted electronically in Adobe Acrobat ® format (*.pdf file) to the -address and by the date provided in the Action Deadlines provided on the Formula Hybrid + -Electric website. This material must be a single file (text, drawings, data or whatever you are -including). -1T3.21.9 The Impact Attenuator Data Report must be named as follows: -carnumber_schoolname_competitioncode_IAD.pdf using the assigned car number, the -complete school name and competition code e.g. -087_University of SAE_FHE_IAD.pdf -1T3.21.10 Teams that submit their Impact Attenuator Data Report after the due date will be -penalized as listed in section A9.2. -1T3.21.11 Impact Attenuator Reports will be evaluated by the organizers and the evaluations will be -passed to the Design Event Captain for consideration in that event. -1T3.21.12 During the test, the attenuator must be attached to the Anti-Intrusion Plate using the -intended vehicle attachment method. The Anti-Intrusion Plate must be spaced at least 50 mm -from any rigid surface. No part of the Anti-Intrusion Plate may permanently deflect more -than 25.4 mm beyond the position of the Anti-Intrusion Plate before the test. -Note: The 25.4 mm spacing represents the front bulkhead support and insures that the plate -does not intrude excessively into the cockpit. -1T3.21.13 Dynamic testing (sled, pendulum, drop tower, etc.) of the impact attenuator may only be -done at a dedicated test facility. The test facility may be part of the University but must be -supervised by professional staff or University faculty. Teams are not allowed to construct -their own dynamic test apparatus. Quasi-static testing may be performed by teams using their -universities facilities/equipment, but teams are advised to exercise due care when performing -all tests. -1T3.22 Non-Crushable Objects -1T3.22.1 Except as allowed by T3.22.2, all non-crushable objects (e.g. batteries, master cylinders, -hydraulic reservoirs) inside the primary structure must have 25 mm (1”) clearance to the rear -face of the Impact Attenuator Anti-Intrusion Plate. -1T3.22.2 The front wing and wing supports may be forward of the Front Bulkhead, but may NOT be -located in or pass through the Impact Attenuator. If the wing supports are in front of the Front -Bulkhead, the supports must be included in the test of the Impact Attenuator. See T3.21. -1T3.23 Front Bodywork -1T3.23.1 Sharp edges on the forward facing bodywork or other protruding components are prohibited. -1T3.23.2 All forward facing edges on the bodywork that could impact people, e.g. the nose, must have -forward facing radii of at least 38 mm. This minimum radius must extend to at least forty-five -degrees (45°) relative to the forward direction, along the top, sides and bottom of all affected -edges. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.24 Side Impact Structure for Tube Frame Cars - The Side Impact Structure must meet the requirements listed below. - -1T3.24.1 The Side Impact Structure for tube frame cars must be comprised of at least three (3) tubular -members located on each side of the driver while seated in the normal driving position, as -shown in Figure 11 - - -Figure 11 – Side Impact Structure -1T3.24.2 The three (3) required tubular members must be constructed of material per Section T3.3. -1T3.24.3 The locations for the three (3) required tubular members are as follows: -(a) The upper Side Impact Structural member must connect the Main Hoop and the Front -Hoop. With a 77 kg driver seated in the normal driving position all of the member must be -at a height between 300 mm and 350 mm above the ground. The upper frame rail may be -used as this member if it meets the height, diameter and thickness requirements. -(b) The lower Side Impact Structural member must connect the bottom of the Main Hoop and -the bottom of the Front Hoop. The lower frame rail/frame member may be this member if -it meets the diameter and wall thickness requirements. -(c) The diagonal Side Impact Structural member must connect the upper and lower Side -Impact Structural members forward of the Main Hoop and rearward of the Front Hoop. - -1T3.24.4 With proper gusseting and/or triangulation, it is permissible to fabricate the Side Impact -Structural members from more than one piece of tubing. -1T3.24.5 Alternative geometry that does not comply with the minimum requirements given above -requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.25 Inspection Holes -1T3.25.1 To allow the verification of tubing wall thicknesses, 4.5 mm inspection holes must be drilled -in a non-critical location of both the Main Hoop and the Front Hoop. -1T3.25.2 In addition, the Technical Inspectors may check the compliance of other tubes that have -minimum dimensions specified in T3.3.1. This may be done by the use of ultra-sonic testing -or by the drilling of additional inspection holes at the inspector’s request. -1T3.25.3 Inspection holes must be located so that the outside diameter can be measured across the -inspection hole with a caliper, i.e. there must be access for the caliper to the inspection hole -and to the outside of the tube one hundred eighty degrees (180°) from the inspection hole. -1T3.26 Composite Tubular Space Frames -1T3.26.1 Composite tubular space frames are not permitted in the Primary Structure of the vehicle (See -T3.2(g)) -1T3.26.2 Composite tubular structures may be used for other tubes regulated under T3.3 provided the -team receives prior approval from the Formula Hybrid + Electric chief technical examiner. -This will require submission of the following data: -(a) Test data on the joints used in the structure. -(b) Static strength testing on all proposed configurations within the frame. -(c) An assessment of the ability of all joints to handle cyclic loading. -(d) The equivalency of the composite tubes to withstand maximum forces and moments -(when compared to baseline materials). -This information must also be included in the structural equivalency submission. -1T3.27 Monocoque General Requirements -1T3.27.1 All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010. -1T3.27.2 All sections of the rules apply to monocoque structures except for the following sections -which supplement or supersede other rule sections. -1T3.27.3 Monocoque construction requires an approved Structural Equivalency Spreadsheet, per -Section T3.8. The form must demonstrate that the design is equivalent to a welded frame in -terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension. -Information must include: material type(s), cloth weights, resin type, fiber orientation, -number of layers, core material, and lay-up technique. The 3 point bend test and shear test -data and pictures must also be included as per T3.30 Monocoque Laminate Testing. The -Structural Equivalency must address each of the items below. Data from the laminate testing -results must be used as the basis for any strength or stiffness calculations. -1T3.27.4 Composite and metallic monocoques have the same requirements. -1T3.27.5 Composite monocoques must meet the materials requirements in Rule T3.7 Composite -Materials. -1T3.28 Monocoque Inspections -1T3.28.1 Due to the monocoque rules and methods of manufacture it is not always possible to inspect -all aspects of a monocoque during technical inspection. For items which cannot be verified -by an inspector it is the responsibility of the team to provide documentation, both visual - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -and/or written, that the requirements have been met. Generally the following items should be -possible to be confirmed by the technical inspector: -(a) Verification of the Main Hoop outer diameter and wall thickness where it protrudes above -the monocoque -(b) Visual verification that the Main Hoop goes to the lowest part of the tub, locally -(c) Verify mechanical attachment of Main Hoop to tub exists and matches the SES, at all -points shown on the SES. -(d) Verify the outside diameter and wall thickness of the Front Hoop by providing access as -required by Rule T3.25.3. -(e) Verify visually or by feel that the Front Hoop is installed. -(f) Verify that the Front Hoop goes to the lowest part of the tub, locally. -(g) Verify mechanical attachment of the Front Hoop (if included) against the SES. -1T3.29 Monocoque Buckling Modulus – Equivalent Flat Panel Calculation - When specified in the rules, the EI of the monocoque must be calculated as the EI of a flat -panel with the same composition as the monocoque about the neutral axis of the laminate. The -curvature of the panel and geometric cross section of the monocoque must be ignored for these -calculations. - Note: Calculations of EI that do not reference T3.29 may take into account the actual geometry -of the monocoque. -1T3.30 Monocoque Laminate Testing -1T3.30.1 Teams must build a representative flat panel section of the monocoque side impact zone -(“zone” is defined in T3.32.2 and T3.2(k)) and perform a 3 point bending test on this panel. -They must prove by physical test that a section 200 mm x 500 mm has at least the same -properties as a baseline steel side impact tube (See T3.3.1 “Baseline Steel Materials”) for -bending stiffness and two side impact tubes for yield and ultimate strength. -The data from these tests and pictures of the test samples must be included in the SES, the test -results will be used to derive strength and stiffness properties used in the SES formulae for all -laminate panels. The test specimen must be presented at technical inspection. If the test -specimen does not meet these requirements then the monocoque side impact zone must be -strengthened appropriately. -Note: Teams are advised to make an equivalent test with the base line steel tubes such that any -compliance in the test rig can be accounted for. -1T3.30.2 If laminates with a lay-up different to that of the side-impact structure are used then -additional physical tests must be completed for any part of the monocoque that forms part of -the primary structure. The material properties derived from these tests must then be used in -the SES for the appropriate equivalency calculations. -Note: A laminate with more or less plies, of the same lay-up as the side-impact structure, does -not constitute a “different lay-up” and the material properties may be scaled accordingly. -1T3.30.3 Perimeter shear tests must be completed by measuring the force required to push or pull a -25 mm diameter flat punch through a flat laminate sample. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -The sample, measuring at least 100 mm x 100 mm must have core and skin thicknesses -identical to those used in the actual monocoque and be manufactured using the same materials -and processes. -The fixture must support the entire sample, except for a 32 mm hole aligned co-axially with the -punch. The sample must not be clamped to the fixture. -The force-displacement data and photos of the test setup must be included in the SES. -The first peak in the load-deflection curve must be used to determine the skin shear strength. -This may be less than the minimum force required by T3.32.3/T3.33.3. -The maximum force recorded must meet the requirements of T3.32.3/T3.33.3. - Note: The edge of the punch and hole in the fixture may include an optional fillet up-to a -maximum radius of 1 mm. -1T3.31 Monocoque Front Bulkhead - See Rule T3.27 for general requirements that apply to all aspects of the monocoque. In -addition, when modeled as an “L” shaped section the EI of the front bulkhead about both -vertical and lateral axis must be equivalent to that of the tubes specified for the front bulkhead -under T3.18. The length of the section perpendicular to the bulkhead may be a maximum of -25.4 mm measured from the rearmost face of the bulkhead. -Furthermore, any front bulkhead which supports the IA plate must have a perimeter shear -strength equivalent to a 1.5 mm thick steel plate. -1T3.32 Monocoque Front Bulkhead Support -1T3.32.1 In addition to proving that the strength of the monocoque is adequate, the monocoque must -have equivalent EI to the sum of the EI of the six (6) baseline steel tubes that it replaces. -1T3.32.2 The EI of the vertical side of the front bulkhead support structure must be equivalent to at -least the EI of one baseline steel tube that it replaces when calculated as per rule T3.29 -Monocoque Buckling Modulus. -1T3.32.3 The perimeter shear strength of the monocoque laminate in the front bulkhead support -structure should be at least 4 kN for a section with a diameter of 25 mm. This must be -proven by a physical test completed as per T3.30.3 and the results include in the SES -1T3.33 Monocoque Side Impact -1T3.33.1 In addition to proving that the strength of the monocoque is adequate, the side of the -monocoque must have equivalent EI to the sum of the EI of the three (3) baseline steel tubes -that it replaces. -1T3.33.2 The side of the monocoque between the upper surface of the floor and 350 mm above the -ground (Side Impact Zone) must have an EI of at least 50% of the sum of the EI of the three -(3) baseline steel tubes that it replaces when calculated as per Rule T3.29 Monocoque -Buckling Modulus. -1T3.33.3 The perimeter shear strength of the monocoque laminate should be at least 7.5 kN for a -section with a diameter of 25 mm. This must be proven by physical test completed as per -T3.30.3 and the results included in the SES. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 12 – Side Impact Zone Definition for a Monocoque -1T3.34 Monocoque Main Hoop -1T3.34.1 The Main Hoop must be constructed of a single piece of uncut, continuous, closed section -steel tubing per T3.3.1 and extend down to the bottom of the monocoque. -1T3.34.2 The Main Hoop must be mechanically attached at the top and bottom of the monocoque and -at intermediate locations as needed to show equivalency. -1T3.34.3 Mounting plates welded to the Roll Hoop must be at least 2.0 mm thick steel. -1T3.34.4 Attachment of the Main Hoop to the monocoque must comply with T3.39. -1T3.35 Monocoque Front Hoop -1T3.35.1 Composite materials are not allowed for the front hoop. See Rule T3.27 for general -requirements that apply to all aspects of the monocoque. -1T3.35.2 Attachment of the Front Hoop to the monocoque must comply with Rule T3.39. -1T3.36 Monocoque Front and Main Hoop Bracing -1T3.36.1 See Rule T3.27 for general requirements that apply to all aspects of the monocoque. -1T3.36.2 Attachment of tubular Front or Main Hoop Bracing to the monocoque must comply with Rule -T3.39. -1T3.37 Monocoque Impact Attenuator and Anti-Intrusion Plate Attachment -The attachment of the Impact Attenuator and Anti-Intrusion Plate to a monocoque structure -requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8 that shows the -equivalency to a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16 inch SAE Grade 5) bolts -for the Anti-Intrusion Plate attachment and a minimum of four (4) bolts to the same minimum -specification for the Impact Attenuator attachment. -1T3.38 Monocoque Impact Attenuator Anti-Intrusion Plate -1T3.38.1 See Rule T3.27 for general requirements that apply to all aspects of the monocoque and Rule -T3.20.3 for alternate Anti-Intrusion Plate designs. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.39 Monocoque Attachments -1T3.39.1 In any direction, each attachment point between the monocoque and the other primary -structure must be able to carry a load of 30 kN. -1T3.39.2 The laminate, mounting plates, backing plates and inserts must have sufficient shear area, -weld area and strength to carry the specified 30 kN load in any direction. Data obtained from -the laminate perimeter shear strength test (T3.33.3) should be used to prove adequate shear -area is provided -1T3.39.3 Each attachment point requires a minimum of two (2) 8 mm Metric Grade 8.8 or 5/16 inch -SAE Grade 5 bolts -1T3.39.4 Each attachment point requires steel backing plates with a minimum thickness of 2.0 mm. -Alternate materials may be used for backing plates if equivalency is approved. -1T3.39.5 The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports only may -use one (1) 10 mm Metric Grade 8.8 or 3/8 inch SAE Grade 5 bolt as an alternative to -T3.39.3 if the bolt is on the centerline of tube similar to the figure below. - - -Figure 13 – Alternate Single Bolt Attachment - -1T3.39.6 No crushing of the core is permitted -1T3.39.7 Main Hoop bracing attached to a monocoque (i.e. not welded to a rear space frame) is always -considered “mechanically attached” and must comply with Rule T3.16. -1T3.40 Monocoque Driver’s Harness Attachment Points -1T3.40.1 The monocoque attachment points for the shoulder and lap belts must support a load of 13 kN -before failure. -1T3.40.2 The monocoque attachment points for the ant-submarine belts must support a load of 6.5 kN -before failure. -1T3.40.3 If the lap belts and anti-submarine belts are attached to the same attachment point, then this -point must support a load of 19.5 kN before failure. -1T3.40.4 The strength of lap belt attachment and shoulder belt attachment must be proven by physical -test where the required load is applied to a representative attachment point where the -proposed layup and attachment bracket is used. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE T4 COCKPIT -1T4.1 Cockpit Opening - -Important Note: Teams are advised that cockpit template and Percy (Figure 5) compliance -will be strictly enforced during mechanical technical inspection. Check the Formula Hybrid + -Electric website for an instructional video on template and Percy inspection procedures. - -1T4.1.1 In order to ensure that the opening giving access to the cockpit is of adequate size, a template -shown in Figure 14 will be inserted downwards into the cockpit opening. It will be held -horizontally and inserted vertically from a height above any Primary Structure or bodywork -that is between the Front Hoop and the Main Hoop until it has passed below the top bar of the -Side Impact Structure (or until it is 350 mm (13.8 inches) above the ground for monocoque -cars). Fore and aft translation of the template (while maintaining its position parallel to the -ground) will be permitted during insertion. - - -Figure 14 – Cockpit Opening Template -1T4.1.2 During this test, the steering wheel, steering column, seat and all padding may be removed. The -shifter or shift mechanism may not be removed unless it is integral with the steering wheel -and is removed with the steering wheel. The firewall may not be moved or removed. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note: As a practical matter, for the checks, the steering column will not be removed. The -technical inspectors will maneuver the template around the steering column shaft, but not the -steering column supports. -1T4.2 Cockpit Internal Cross Section: -1T4.2.1 A free vertical cross section, which allows the template shown in Figure 15 to be passed -horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost -pedal when in the inoperative position, must be maintained over its entire length. If the pedals -are adjustable, they will be put in their most forward position. - - - -Figure 15 – Cockpit Internal Cross Section Template -1T4.2.2 The template, with maximum thickness of 7 mm, will be held vertically and inserted into the -cockpit opening rearward of the rear-most portion of the steering column. -Note: At the discretion of the technical inspectors, the internal cross-section template may be -moved vertically by small increments during fore and aft travel to clear height deviations in the -floor of the vehicle (e.g. those caused by the steering rack, etc.). The template must still fit -through the cross-section at the location of vertical deviation. -A video demonstrating the template procedure can be found on YouTube: -https://youtu.be/azz5kbmiQbw - -1T4.2.3 The only items that may be removed for this test are the steering wheel, and any padding -required by Rule T5.8 “Driver’s Leg Protection” that can be easily removed without the use - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -of tools with the driver in the seat. The seat and any seat insert that may be used by any team -member must remain in the cockpit. -1T4.2.4 Teams whose cars do not comply with T4.1 or T4.2 will not be given a Technical -Inspection Sticker and will not be allowed to compete in the dynamic events. - Note: Cables, wires, hoses, tubes, etc. must not impede the passage of the templates required by -T4.1 and T4.2. -1T4.3 Driver’s Seat -1T4.3.1 In side view the lowest point of the driver’s seat must be no lower than the top surface of the -lower frame rails or by having a longitudinal tube (or tubes) that meets the requirements for -Side Impact tubing, passing underneath the lowest point of the seat. -1T4.3.2 When seated in the normal driving position, adequate heat insulation must be provided to -ensure that the driver will not contact any metal or other materials which may become heated -to a surface temperature above sixty degrees C (60°C). The insulation may be external to the -cockpit or incorporated with the driver’s seat or firewall. The design must show evidence of -addressing all three (3) types of heat transfer, namely conduction, convection and radiation, -with the following between the heat source, e.g. an exhaust pipe or coolant hose/tube and the -panel that the driver could contact, e.g. the seat or floor: -(a) Conduction Isolation by: -(i) No direct contact between the heat source and the panel, or -(ii) a heat resistant, conduction isolation material with a minimum thickness of 8 mm -between the heat source and the panel. -(b) Convection Isolation by a minimum air gap of 25 mm between the heat source and the -panel. -(c) Radiation Isolation by: -(i) A solid metal heat shield with a minimum thickness of 0.4 mm or -(ii) reflective foil or tape when combined with T4.3.2(a)(ii) above. -1T4.4 Floor Close-out - All vehicles must have a floor closeout made of one or more panels, which separate the driver -from the pavement. If multiple panels are used, gaps between panels are not to exceed 3 mm. -The closeout must extend from the foot area to the firewall and prevent track debris from -entering the car. The panels must be made of a solid, non-brittle material. -1T4.5 Firewall -1T4.5.1 Firewall(s) must separate the driver compartment from the following components: -(a) Fuel Tanks. -(b) Accumulators. -(c) All components of the fuel supply. -(d) External engine oil systems including hoses, oil coolers, tanks, etc. -(e) Liquid cooling systems including those for I.C. engine and electrical components. -(f) Lithium-based GLV batteries. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(g) All tractive systems (TS) components -(h) All conductors carrying tractive system voltages (TSV) (Whether contained within conduit -or not.) -1T4.5.2 The firewall(s) must be a rigid, non-permeable surface made from 1.5 mm or thicker aluminum -or proven equivalent. See Appendix H – Firewall Equivalency Test. -1T4.5.3 The firewall(s) must seal completely against the passage of fluids and hot gasses, including at -the sides and the floor of the cockpit, e.g. there can be no holes in a firewall through which -seat belts pass. +Intrusion Plate extends beyond the “standard” Impact Attenuator by more than 25 mm (1”) on +3 +The officially approved “standard” Formula SAE Impact Attenuator may be found here on the Formula SAE +website + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +any side, a diagonal or X-brace made from 1.00” x 0.049” steel tube, or an approved +equivalent per T3.5, must be included in the Front Bulkhead. +1T3.21 Impact Attenuator Test Data Report Requirement +1T3.21.1 Impact Attenuator Test Data Report Requirement +All teams, whether they are using their own design of Impact Attenuator (IA) or the “standard” +FSAE Impact Attenuator, must submit an Impact Attenuator Data Report using the Impact +Attenuator Data (IAD) Template found on the Formula Hybrid + Electric Document page at: +https://www.formula-hybrid.org/documents +1T3.21.2 All teams must submit calculations and/or test data to show that their Impact Attenuator, +when mounted on the front of their vehicle and run into a solid, non-yielding impact barrier +with a velocity of impact of 7.0 meters/second, would give an average deceleration of the +vehicle not to exceed 20 g, with a peak deceleration less than or equal to 40 g's. +NOTE 1: Quasi-static testing is allowed. +NOTE 2: The calculations of how the reported absorbed energy, average deceleration and peak +deceleration figures have been derived from the test data MUST be included in the report and +appended to the report template. +1T3.21.3 Calculations must be based on the actual vehicle mass with a 175 lb. driver, full fluids, and +rounded up to the nearest 100 lb. +Note: Teams may only use the “Standard” FSAE impact attenuator design and data submission +process if their vehicle mass with driver is 300 kgs (661 lbs) or less. +To be eligible to utilize the “Standard” FSAE impact attenuator, teams must either have +previously brought a Formula Hybrid + Electric vehicle that weighs under 300 kgs (661 lbs) +with driver to a Formula Hybrid + Electric competition, or submit a detailed mass measurement +spreadsheet covering all the vehicle’s components as part of the Impact Attenuator Data Report, +showing that the new vehicle meets the above requirements. +1T3.21.4 Teams using a front wing must prove that the combination of the Impact Attenuator and front +wing, when used together, do not exceed the peak deceleration of rule T3.21.2. Teams can +use the following methods to show the design does not exceed the limits given in T3.21.2. +(a) Physical testing of the Impact Attenuator with wing mounts, links, vertical plates, and a +structural representation of the airfoil section to determine the peak force. See +http://formula-hybrid.org/students/tech-support/ FAQs for an example of the structure to +be included in the test. Or +(b) Combine the peak force from physical testing of the Impact Attenuator Assembly with +the wing mount failure load calculated from fastener shear and/or link buckling. Or +(c) If they are using the Standard FSAE Impact Attenuator (see T3.21.3 above), combine the +peak load of 95 kN exerted by the Standard FSAE Impact Attenuator with the wing +mount failure load calculated from fastener shear and/or buckling. +1T3.21.5 When using acceleration data, the average deceleration must be calculated based on the raw +data. The peak deceleration can be assessed based on the raw data, and if peaks above the 40g +limit are apparent in the data, it can then be filtered with a Channel Filter Class (CFC) 60 +(100 Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Tests”, or a +100 Hz, 3rd order, lowpass Butterworth (-3dB at 100 Hz) filter. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.21.6 A schematic of the test method must be supplied along with photos of the attenuator before +and after testing. +1T3.21.7 The test piece must be presented at technical inspection for comparison to the photographs +and the attenuator fitted to the vehicle. +1T3.21.8 The report must be submitted electronically in Adobe Acrobat ® format (*.pdf file) to the +address and by the date provided in the Action Deadlines provided on the Formula Hybrid + +Electric website. This material must be a single file (text, drawings, data or whatever you are +including). +1T3.21.9 The Impact Attenuator Data Report must be named as follows: +carnumber_schoolname_competitioncode_IAD.pdf using the assigned car number, the +complete school name and competition code e.g. +087_University of SAE_FHE_IAD.pdf +1T3.21.10 Teams that submit their Impact Attenuator Data Report after the due date will be +penalized as listed in section A9.2. +1T3.21.11 Impact Attenuator Reports will be evaluated by the organizers and the evaluations will be +passed to the Design Event Captain for consideration in that event. +1T3.21.12 During the test, the attenuator must be attached to the Anti-Intrusion Plate using the +intended vehicle attachment method. The Anti-Intrusion Plate must be spaced at least 50 mm +from any rigid surface. No part of the Anti-Intrusion Plate may permanently deflect more +than 25.4 mm beyond the position of the Anti-Intrusion Plate before the test. +Note: The 25.4 mm spacing represents the front bulkhead support and insures that the plate +does not intrude excessively into the cockpit. +1T3.21.13 Dynamic testing (sled, pendulum, drop tower, etc.) of the impact attenuator may only be +done at a dedicated test facility. The test facility may be part of the University but must be +supervised by professional staff or University faculty. Teams are not allowed to construct +their own dynamic test apparatus. Quasi-static testing may be performed by teams using their +universities facilities/equipment, but teams are advised to exercise due care when performing +all tests. +1T3.22 Non-Crushable Objects +1T3.22.1 Except as allowed by T3.22.2, all non-crushable objects (e.g. batteries, master cylinders, +hydraulic reservoirs) inside the primary structure must have 25 mm (1”) clearance to the rear +face of the Impact Attenuator Anti-Intrusion Plate. +1T3.22.2 The front wing and wing supports may be forward of the Front Bulkhead, but may NOT be +located in or pass through the Impact Attenuator. If the wing supports are in front of the Front +Bulkhead, the supports must be included in the test of the Impact Attenuator. See T3.21. +1T3.23 Front Bodywork +1T3.23.1 Sharp edges on the forward facing bodywork or other protruding components are prohibited. +1T3.23.2 All forward facing edges on the bodywork that could impact people, e.g. the nose, must have +forward facing radii of at least 38 mm. This minimum radius must extend to at least forty-five +degrees (45°) relative to the forward direction, along the top, sides and bottom of all affected +edges. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.24 Side Impact Structure for Tube Frame Cars +The Side Impact Structure must meet the requirements listed below. +1T3.24.1 The Side Impact Structure for tube frame cars must be comprised of at least three (3) tubular +members located on each side of the driver while seated in the normal driving position, as +shown in Figure 11 +Figure 11 – Side Impact Structure +1T3.24.2 The three (3) required tubular members must be constructed of material per Section T3.3. +1T3.24.3 The locations for the three (3) required tubular members are as follows: +(a) The upper Side Impact Structural member must connect the Main Hoop and the Front +Hoop. With a 77 kg driver seated in the normal driving position all of the member must be +at a height between 300 mm and 350 mm above the ground. The upper frame rail may be +used as this member if it meets the height, diameter and thickness requirements. +(b) The lower Side Impact Structural member must connect the bottom of the Main Hoop and +the bottom of the Front Hoop. The lower frame rail/frame member may be this member if +it meets the diameter and wall thickness requirements. +(c) The diagonal Side Impact Structural member must connect the upper and lower Side +Impact Structural members forward of the Main Hoop and rearward of the Front Hoop. +1T3.24.4 With proper gusseting and/or triangulation, it is permissible to fabricate the Side Impact +Structural members from more than one piece of tubing. +1T3.24.5 Alternative geometry that does not comply with the minimum requirements given above +requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.25 Inspection Holes +1T3.25.1 To allow the verification of tubing wall thicknesses, 4.5 mm inspection holes must be drilled +in a non-critical location of both the Main Hoop and the Front Hoop. +1T3.25.2 In addition, the Technical Inspectors may check the compliance of other tubes that have +minimum dimensions specified in T3.3.1. This may be done by the use of ultra-sonic testing +or by the drilling of additional inspection holes at the inspector’s request. +1T3.25.3 Inspection holes must be located so that the outside diameter can be measured across the +inspection hole with a caliper, i.e. there must be access for the caliper to the inspection hole +and to the outside of the tube one hundred eighty degrees (180°) from the inspection hole. +1T3.26 Composite Tubular Space Frames +1T3.26.1 Composite tubular space frames are not permitted in the Primary Structure of the vehicle (See +T3.2(g)) +1T3.26.2 Composite tubular structures may be used for other tubes regulated under T3.3 provided the +team receives prior approval from the Formula Hybrid + Electric chief technical examiner. +This will require submission of the following data: +(a) Test data on the joints used in the structure. +(b) Static strength testing on all proposed configurations within the frame. +(c) An assessment of the ability of all joints to handle cyclic loading. +(d) The equivalency of the composite tubes to withstand maximum forces and moments +(when compared to baseline materials). +This information must also be included in the structural equivalency submission. +1T3.27 Monocoque General Requirements +1T3.27.1 All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010. +1T3.27.2 All sections of the rules apply to monocoque structures except for the following sections +which supplement or supersede other rule sections. +1T3.27.3 Monocoque construction requires an approved Structural Equivalency Spreadsheet, per +Section T3.8. The form must demonstrate that the design is equivalent to a welded frame in +terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension. +Information must include: material type(s), cloth weights, resin type, fiber orientation, +number of layers, core material, and lay-up technique. The 3 point bend test and shear test +data and pictures must also be included as per T3.30 Monocoque Laminate Testing. The +Structural Equivalency must address each of the items below. Data from the laminate testing +results must be used as the basis for any strength or stiffness calculations. +1T3.27.4 Composite and metallic monocoques have the same requirements. +1T3.27.5 Composite monocoques must meet the materials requirements in Rule T3.7 Composite +Materials. +1T3.28 Monocoque Inspections +1T3.28.1 Due to the monocoque rules and methods of manufacture it is not always possible to inspect +all aspects of a monocoque during technical inspection. For items which cannot be verified +by an inspector it is the responsibility of the team to provide documentation, both visual + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +and/or written, that the requirements have been met. Generally the following items should be +possible to be confirmed by the technical inspector: +(a) Verification of the Main Hoop outer diameter and wall thickness where it protrudes above +the monocoque +(b) Visual verification that the Main Hoop goes to the lowest part of the tub, locally +(c) Verify mechanical attachment of Main Hoop to tub exists and matches the SES, at all +points shown on the SES. +(d) Verify the outside diameter and wall thickness of the Front Hoop by providing access as +required by Rule T3.25.3. +(e) Verify visually or by feel that the Front Hoop is installed. +(f) Verify that the Front Hoop goes to the lowest part of the tub, locally. +(g) Verify mechanical attachment of the Front Hoop (if included) against the SES. +1T3.29 Monocoque Buckling Modulus – Equivalent Flat Panel Calculation +When specified in the rules, the EI of the monocoque must be calculated as the EI of a flat +panel with the same composition as the monocoque about the neutral axis of the laminate. The +curvature of the panel and geometric cross section of the monocoque must be ignored for these +calculations. +Note: Calculations of EI that do not reference T3.29 may take into account the actual geometry +of the monocoque. +1T3.30 Monocoque Laminate Testing +1T3.30.1 Teams must build a representative flat panel section of the monocoque side impact zone +(“zone” is defined in T3.32.2 and T3.2(k)) and perform a 3 point bending test on this panel. +They must prove by physical test that a section 200 mm x 500 mm has at least the same +properties as a baseline steel side impact tube (See T3.3.1 “Baseline Steel Materials”) for +bending stiffness and two side impact tubes for yield and ultimate strength. +The data from these tests and pictures of the test samples must be included in the SES, the test +results will be used to derive strength and stiffness properties used in the SES formulae for all +laminate panels. The test specimen must be presented at technical inspection. If the test +specimen does not meet these requirements then the monocoque side impact zone must be +strengthened appropriately. +Note: Teams are advised to make an equivalent test with the base line steel tubes such that any +compliance in the test rig can be accounted for. +1T3.30.2 If laminates with a lay-up different to that of the side-impact structure are used then +additional physical tests must be completed for any part of the monocoque that forms part of +the primary structure. The material properties derived from these tests must then be used in +the SES for the appropriate equivalency calculations. +Note: A laminate with more or less plies, of the same lay-up as the side-impact structure, does +not constitute a “different lay-up” and the material properties may be scaled accordingly. +1T3.30.3 Perimeter shear tests must be completed by measuring the force required to push or pull a +25 mm diameter flat punch through a flat laminate sample. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +The sample, measuring at least 100 mm x 100 mm must have core and skin thicknesses +identical to those used in the actual monocoque and be manufactured using the same materials +and processes. +The fixture must support the entire sample, except for a 32 mm hole aligned co-axially with the +punch. The sample must not be clamped to the fixture. +The force-displacement data and photos of the test setup must be included in the SES. +The first peak in the load-deflection curve must be used to determine the skin shear strength. +This may be less than the minimum force required by T3.32.3/T3.33.3. +The maximum force recorded must meet the requirements of T3.32.3/T3.33.3. +Note: The edge of the punch and hole in the fixture may include an optional fillet up-to a +maximum radius of 1 mm. +1T3.31 Monocoque Front Bulkhead +See Rule T3.27 for general requirements that apply to all aspects of the monocoque. In +addition, when modeled as an “L” shaped section the EI of the front bulkhead about both +vertical and lateral axis must be equivalent to that of the tubes specified for the front bulkhead +under T3.18. The length of the section perpendicular to the bulkhead may be a maximum of +25.4 mm measured from the rearmost face of the bulkhead. +Furthermore, any front bulkhead which supports the IA plate must have a perimeter shear +strength equivalent to a 1.5 mm thick steel plate. +1T3.32 Monocoque Front Bulkhead Support +1T3.32.1 In addition to proving that the strength of the monocoque is adequate, the monocoque must +have equivalent EI to the sum of the EI of the six (6) baseline steel tubes that it replaces. +1T3.32.2 The EI of the vertical side of the front bulkhead support structure must be equivalent to at +least the EI of one baseline steel tube that it replaces when calculated as per rule T3.29 +Monocoque Buckling Modulus. +1T3.32.3 The perimeter shear strength of the monocoque laminate in the front bulkhead support +structure should be at least 4 kN for a section with a diameter of 25 mm. This must be +proven by a physical test completed as per T3.30.3 and the results include in the SES +1T3.33 Monocoque Side Impact +1T3.33.1 In addition to proving that the strength of the monocoque is adequate, the side of the +monocoque must have equivalent EI to the sum of the EI of the three (3) baseline steel tubes +that it replaces. +1T3.33.2 The side of the monocoque between the upper surface of the floor and 350 mm above the +ground (Side Impact Zone) must have an EI of at least 50% of the sum of the EI of the three +(3) baseline steel tubes that it replaces when calculated as per Rule T3.29 Monocoque +Buckling Modulus. +1T3.33.3 The perimeter shear strength of the monocoque laminate should be at least 7.5 kN for a +section with a diameter of 25 mm. This must be proven by physical test completed as per +T3.30.3 and the results included in the SES. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 12 – Side Impact Zone Definition for a Monocoque +1T3.34 Monocoque Main Hoop +1T3.34.1 The Main Hoop must be constructed of a single piece of uncut, continuous, closed section +steel tubing per T3.3.1 and extend down to the bottom of the monocoque. +1T3.34.2 The Main Hoop must be mechanically attached at the top and bottom of the monocoque and +at intermediate locations as needed to show equivalency. +1T3.34.3 Mounting plates welded to the Roll Hoop must be at least 2.0 mm thick steel. +1T3.34.4 Attachment of the Main Hoop to the monocoque must comply with T3.39. +1T3.35 Monocoque Front Hoop +1T3.35.1 Composite materials are not allowed for the front hoop. See Rule T3.27 for general +requirements that apply to all aspects of the monocoque. +1T3.35.2 Attachment of the Front Hoop to the monocoque must comply with Rule T3.39. +1T3.36 Monocoque Front and Main Hoop Bracing +1T3.36.1 See Rule T3.27 for general requirements that apply to all aspects of the monocoque. +1T3.36.2 Attachment of tubular Front or Main Hoop Bracing to the monocoque must comply with Rule +T3.39. +1T3.37 Monocoque Impact Attenuator and Anti-Intrusion Plate Attachment +The attachment of the Impact Attenuator and Anti-Intrusion Plate to a monocoque structure +requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8 that shows the +equivalency to a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16 inch SAE Grade 5) bolts +for the Anti-Intrusion Plate attachment and a minimum of four (4) bolts to the same minimum +specification for the Impact Attenuator attachment. +1T3.38 Monocoque Impact Attenuator Anti-Intrusion Plate +1T3.38.1 See Rule T3.27 for general requirements that apply to all aspects of the monocoque and Rule +T3.20.3 for alternate Anti-Intrusion Plate designs. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.39 Monocoque Attachments +1T3.39.1 In any direction, each attachment point between the monocoque and the other primary +structure must be able to carry a load of 30 kN. +1T3.39.2 The laminate, mounting plates, backing plates and inserts must have sufficient shear area, +weld area and strength to carry the specified 30 kN load in any direction. Data obtained from +the laminate perimeter shear strength test (T3.33.3) should be used to prove adequate shear +area is provided +1T3.39.3 Each attachment point requires a minimum of two (2) 8 mm Metric Grade 8.8 or 5/16 inch +SAE Grade 5 bolts +1T3.39.4 Each attachment point requires steel backing plates with a minimum thickness of 2.0 mm. +Alternate materials may be used for backing plates if equivalency is approved. +1T3.39.5 The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports only may +use one (1) 10 mm Metric Grade 8.8 or 3/8 inch SAE Grade 5 bolt as an alternative to +T3.39.3 if the bolt is on the centerline of tube similar to the figure below. +Figure 13 – Alternate Single Bolt Attachment +1T3.39.6 No crushing of the core is permitted +1T3.39.7 Main Hoop bracing attached to a monocoque (i.e. not welded to a rear space frame) is always +considered “mechanically attached” and must comply with Rule T3.16. +1T3.40 Monocoque Driver’s Harness Attachment Points +1T3.40.1 The monocoque attachment points for the shoulder and lap belts must support a load of 13 kN +before failure. +1T3.40.2 The monocoque attachment points for the ant-submarine belts must support a load of 6.5 kN +before failure. +1T3.40.3 If the lap belts and anti-submarine belts are attached to the same attachment point, then this +point must support a load of 19.5 kN before failure. +1T3.40.4 The strength of lap belt attachment and shoulder belt attachment must be proven by physical +test where the required load is applied to a representative attachment point where the +proposed layup and attachment bracket is used. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE T4 COCKPIT +1T4.1 Cockpit Opening +Important Note: Teams are advised that cockpit template and Percy (Figure 5) compliance +will be strictly enforced during mechanical technical inspection. Check the Formula Hybrid + +Electric website for an instructional video on template and Percy inspection procedures. +1T4.1.1 In order to ensure that the opening giving access to the cockpit is of adequate size, a template +shown in Figure 14 will be inserted downwards into the cockpit opening. It will be held +horizontally and inserted vertically from a height above any Primary Structure or bodywork +that is between the Front Hoop and the Main Hoop until it has passed below the top bar of the +Side Impact Structure (or until it is 350 mm (13.8 inches) above the ground for monocoque +cars). Fore and aft translation of the template (while maintaining its position parallel to the +ground) will be permitted during insertion. +Figure 14 – Cockpit Opening Template +1T4.1.2 During this test, the steering wheel, steering column, seat and all padding may be removed. The +shifter or shift mechanism may not be removed unless it is integral with the steering wheel +and is removed with the steering wheel. The firewall may not be moved or removed. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: As a practical matter, for the checks, the steering column will not be removed. The +technical inspectors will maneuver the template around the steering column shaft, but not the +steering column supports. +1T4.2 Cockpit Internal Cross Section: +1T4.2.1 A free vertical cross section, which allows the template shown in Figure 15 to be passed +horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost +pedal when in the inoperative position, must be maintained over its entire length. If the pedals +are adjustable, they will be put in their most forward position. +Figure 15 – Cockpit Internal Cross Section Template +1T4.2.2 The template, with maximum thickness of 7 mm, will be held vertically and inserted into the +cockpit opening rearward of the rear-most portion of the steering column. +Note: At the discretion of the technical inspectors, the internal cross-section template may be +moved vertically by small increments during fore and aft travel to clear height deviations in the +floor of the vehicle (e.g. those caused by the steering rack, etc.). The template must still fit +through the cross-section at the location of vertical deviation. +A video demonstrating the template procedure can be found on YouTube: +https://youtu.be/azz5kbmiQbw +1T4.2.3 The only items that may be removed for this test are the steering wheel, and any padding +required by Rule T5.8 “Driver’s Leg Protection” that can be easily removed without the use + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +of tools with the driver in the seat. The seat and any seat insert that may be used by any team +member must remain in the cockpit. +1T4.2.4 Teams whose cars do not comply with T4.1 or T4.2 will not be given a Technical +Inspection Sticker and will not be allowed to compete in the dynamic events. +Note: Cables, wires, hoses, tubes, etc. must not impede the passage of the templates required by +T4.1 and T4.2. +1T4.3 Driver’s Seat +1T4.3.1 In side view the lowest point of the driver’s seat must be no lower than the top surface of the +lower frame rails or by having a longitudinal tube (or tubes) that meets the requirements for +Side Impact tubing, passing underneath the lowest point of the seat. +1T4.3.2 When seated in the normal driving position, adequate heat insulation must be provided to +ensure that the driver will not contact any metal or other materials which may become heated +to a surface temperature above sixty degrees C (60°C). The insulation may be external to the +cockpit or incorporated with the driver’s seat or firewall. The design must show evidence of +addressing all three (3) types of heat transfer, namely conduction, convection and radiation, +with the following between the heat source, e.g. an exhaust pipe or coolant hose/tube and the +panel that the driver could contact, e.g. the seat or floor: +(a) Conduction Isolation by: +(i) No direct contact between the heat source and the panel, or +(ii) a heat resistant, conduction isolation material with a minimum thickness of 8 mm +between the heat source and the panel. +(b) Convection Isolation by a minimum air gap of 25 mm between the heat source and the +panel. +(c) Radiation Isolation by: +(i) A solid metal heat shield with a minimum thickness of 0.4 mm or +(ii) reflective foil or tape when combined with T4.3.2(a)(ii) above. +1T4.4 Floor Close-out +All vehicles must have a floor closeout made of one or more panels, which separate the driver +from the pavement. If multiple panels are used, gaps between panels are not to exceed 3 mm. +The closeout must extend from the foot area to the firewall and prevent track debris from +entering the car. The panels must be made of a solid, non-brittle material. +1T4.5 Firewall +1T4.5.1 Firewall(s) must separate the driver compartment from the following components: +(a) Fuel Tanks. +(b) Accumulators. +(c) All components of the fuel supply. +(d) External engine oil systems including hoses, oil coolers, tanks, etc. +(e) Liquid cooling systems including those for I.C. engine and electrical components. +(f) Lithium-based GLV batteries. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(g) All tractive systems (TS) components +(h) All conductors carrying tractive system voltages (TSV) (Whether contained within conduit +or not.) +1T4.5.2 The firewall(s) must be a rigid, non-permeable surface made from 1.5 mm or thicker aluminum +or proven equivalent. See Appendix H – Firewall Equivalency Test. +1T4.5.3 The firewall(s) must seal completely against the passage of fluids and hot gasses, including at +the sides and the floor of the cockpit, e.g. there can be no holes in a firewall through which +seat belts pass. 1T4.5.4 Pass-throughs for GLV wiring, cables, etc. are allowable if grommets are used to seal the pass- -throughs. -Multiple panels may be used to form the firewall but must be mechanically fastened in place -and sealed at the joints. -1T4.5.5 For those components listed in T4.5.1 that are mounted behind the driver, the firewall(s) must -extend sufficiently far upwards and/or rearwards such that a straight line from any part of any -listed component to any part of the tallest driver that is more than 150 mm below the top of -his/her helmet, must pass through the firewall. -1T4.5.6 For those components listed in section T4.5.1 positioned under the driver, the firewall must -extend: -(a) Continuously rearwards the full width of the cockpit from the Front Bulkhead, under and -up behind the driver to a point where the helmet of the 95th percentile male template -(T3.9.4) touches the head restraint, and -(b) Alongside the driver, from the top of the Side Impact Structure down to the lower portion -of the firewall required by T4.5.6(a) and from the rearmost front suspension mounting -point to connect (without holes or gaps) behind the driver with the firewall required by -T4.5.6(a). -See Figure 16(a). -1T4.5.7 For those components listed in section T4.5.1 that are mounted outboard of the Side Impact -System (e.g. in side pods), the firewall(s) must extend from 100 mm forward to 100 mm -rearward of the of the listed components and -(a) alongside the driver at the full height of the listed component, and -(b) cover the top of the listed components and -(c) run either -(i) under the cockpit between the firewall(s) required by T4.5.7(a), or -(ii) extend 100 mm out under the listed components from the firewall(s) that are -required by T4.5.8 -See Figure 16(b&c). -1T4.5.8 For the components listed in section T4.5.1 that are mounted in ways that do not fall clearly -under any of sections T4.5.5, T4.5.6 or T4.5.7, the firewall must be configured to provide -equivalent protection to the driver, and the firewall configuration must be approved by the -Rules Committee. -1T4.5.9 Containers that meet the firewall requirements of T4.5.2, including accumulator containers, -may be accepted as part of the firewall system; redundant barriers are not required. Tractive - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -System wiring and conduit must not be exposed to the driver while seated in or during egress -from the vehicle. -Note: To ensure adequate time for consideration and possible re-designs, applications should -be submitted at least 1 month in advance of the event. - +throughs. +Multiple panels may be used to form the firewall but must be mechanically fastened in place +and sealed at the joints. +1T4.5.5 For those components listed in T4.5.1 that are mounted behind the driver, the firewall(s) must +extend sufficiently far upwards and/or rearwards such that a straight line from any part of any +listed component to any part of the tallest driver that is more than 150 mm below the top of +his/her helmet, must pass through the firewall. +1T4.5.6 For those components listed in section T4.5.1 positioned under the driver, the firewall must +extend: +(a) Continuously rearwards the full width of the cockpit from the Front Bulkhead, under and +up behind the driver to a point where the helmet of the 95th percentile male template +(T3.9.4) touches the head restraint, and +(b) Alongside the driver, from the top of the Side Impact Structure down to the lower portion +of the firewall required by T4.5.6(a) and from the rearmost front suspension mounting +point to connect (without holes or gaps) behind the driver with the firewall required by +T4.5.6(a). +See Figure 16(a). +1T4.5.7 For those components listed in section T4.5.1 that are mounted outboard of the Side Impact +System (e.g. in side pods), the firewall(s) must extend from 100 mm forward to 100 mm +rearward of the of the listed components and +(a) alongside the driver at the full height of the listed component, and +(b) cover the top of the listed components and +(c) run either +(i) under the cockpit between the firewall(s) required by T4.5.7(a), or +(ii) extend 100 mm out under the listed components from the firewall(s) that are +required by T4.5.8 +See Figure 16(b&c). +1T4.5.8 For the components listed in section T4.5.1 that are mounted in ways that do not fall clearly +under any of sections T4.5.5, T4.5.6 or T4.5.7, the firewall must be configured to provide +equivalent protection to the driver, and the firewall configuration must be approved by the +Rules Committee. +1T4.5.9 Containers that meet the firewall requirements of T4.5.2, including accumulator containers, +may be accepted as part of the firewall system; redundant barriers are not required. Tractive + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +System wiring and conduit must not be exposed to the driver while seated in or during egress +from the vehicle. +Note: To ensure adequate time for consideration and possible re-designs, applications should +be submitted at least 1 month in advance of the event. Figure 16 – Examples -4 - of firewall configurations -1T4.6 Accessibility of Controls - All vehicle controls, including the shifter, must be operated from inside the cockpit without any -part of the driver, e.g. hands, arms or elbows, being outside the planes of the Side Impact -Structure defined in Rule T3.24 and T3.33. -1T4.7 Driver Visibility -1T4.7.1 The driver must have adequate visibility to the front and sides of the car. With the driver seated -in a normal driving position he/she must have a minimum field of vision of two hundred -degrees (200°) (a minimum one hundred degrees (100°) to either side of the driver). The -required visibility may be obtained by the driver turning his/her head and/or the use of -mirrors. - -4 - The firewalls shown in red in Figure 16 are examples only and are not meant to imply that a firewall must lie -outside the frame rails. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T4.7.2 If mirrors are required to meet Rule T4.7.1, they must remain in place and adjusted to enable -the required visibility throughout all dynamic events. -1T4.8 Driver Egress - All drivers must be able to exit to the side of the vehicle in no more than 5 seconds. Egress time -begins with the driver in the fully seated position, hands in driving position on the connected -steering wheel and wearing the required driver equipment. Egress time will stop when the -driver has both feet on the pavement. -1T4.9 Emergency Shut Down Test -1T4.9.1 With their vision obscured, all drivers must be able to operate the cockpit Big Red Button -(BRB) in less than one second. -Time begins with the driver in the fully seated position, hands in driving position on the -connected steering wheel, and wearing the required driver equipment. -ARTICLE T5 DRIVER’S EQUIPMENT (BELTS AND COCKPIT PADDING) -1T5.1 Belts - General -1T5.1.1 Definitions (Note: Belt dimensions listed are nominal widths.) -(a) 5-point system – consists of a lap belt, two (2) shoulder straps and a single anti-submarine -strap. +4 +of firewall configurations +1T4.6 Accessibility of Controls +All vehicle controls, including the shifter, must be operated from inside the cockpit without any +part of the driver, e.g. hands, arms or elbows, being outside the planes of the Side Impact +Structure defined in Rule T3.24 and T3.33. +1T4.7 Driver Visibility +1T4.7.1 The driver must have adequate visibility to the front and sides of the car. With the driver seated +in a normal driving position he/she must have a minimum field of vision of two hundred +degrees (200°) (a minimum one hundred degrees (100°) to either side of the driver). The +required visibility may be obtained by the driver turning his/her head and/or the use of +mirrors. +4 +The firewalls shown in red in Figure 16 are examples only and are not meant to imply that a firewall must lie +outside the frame rails. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T4.7.2 If mirrors are required to meet Rule T4.7.1, they must remain in place and adjusted to enable +the required visibility throughout all dynamic events. +1T4.8 Driver Egress +All drivers must be able to exit to the side of the vehicle in no more than 5 seconds. Egress time +begins with the driver in the fully seated position, hands in driving position on the connected +steering wheel and wearing the required driver equipment. Egress time will stop when the +driver has both feet on the pavement. +1T4.9 Emergency Shut Down Test +1T4.9.1 With their vision obscured, all drivers must be able to operate the cockpit Big Red Button +(BRB) in less than one second. +Time begins with the driver in the fully seated position, hands in driving position on the +connected steering wheel, and wearing the required driver equipment. +ARTICLE T5 DRIVER’S EQUIPMENT (BELTS AND COCKPIT PADDING) +1T5.1 Belts - General +1T5.1.1 Definitions (Note: Belt dimensions listed are nominal widths.) +(a) 5-point system – consists of a lap belt, two (2) shoulder straps and a single anti-submarine +strap. (b) 6-point system – consists of a lap belt, two (2) shoulder straps and two (2) leg or anti- -submarine straps. -(c) 7-point system – system is the same as the 6-point except it has three (3) anti-submarine -straps, two (2) from the 6-point system and one (1) from the 5-point system. -(d) Upright driving position - is defined as one with a seat back angled at thirty degrees -(30°) or less from the vertical as measured along the line joining the two 200 mm circles -of the template of the 95th percentile male as defined in Table 6 and positioned per -T3.9.4. -(e) Reclined driving position - is defined as one with a seat back angled at more than thirty -degrees (30°) from the vertical as measured along the line joining the two 200 mm circles -of the template of the 95th percentile male as defined in Table 6 and positioned per -T3.9.4. -(f) Chest-groin line - is the straight line that in side view follows the line of the shoulder -belts from the chest to the release buckle. -1T5.1.2 Harness Requirements -All drivers must use a 5, 6 or 7 point restraint harness meeting the following specifications: -(a) SFI Specification 16.1, SFI Specification 16.5, SFI Specification 16.6, or FIA -specification 8853/98 or FIA specification 8853-2016. -Note: FIA harnesses with 44 mm (“2 inch”) shoulder straps meeting T5.1.2 and T5.1.3 -are approved for use at FH+E -(b) To accommodate drivers of differing builds, all lap belts must incorporate a tilt lock -adjuster (“quick adjuster”). - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note: Lap belts with “pull-up” adjusters are recommended over “pull-down” adjusters -and a tilt lock adjuster in each portion of the lap belt is highly recommended. -(c) Cars with a “reclined driving position” (see T5.1.1(e) above) must have either a 6 point -or 7-point harness, AND have either anti-submarine belts with tilt lock adjusters (“quick -adjusters”) or have two (2) sets of anti-submarine belts installed. -(d) The shoulder harness must be the over-the-shoulder type. Only separate shoulder straps -are permitted (i.e. “Y”-type shoulder straps are not allowed). The “H”-type configuration -is allowed. -(e) The belts must bear the appropriate dated labels. -(f) The material of all straps must be in perfect condition. +submarine straps. +(c) 7-point system – system is the same as the 6-point except it has three (3) anti-submarine +straps, two (2) from the 6-point system and one (1) from the 5-point system. +(d) Upright driving position - is defined as one with a seat back angled at thirty degrees +(30°) or less from the vertical as measured along the line joining the two 200 mm circles +of the template of the 95th percentile male as defined in Table 6 and positioned per +T3.9.4. +(e) Reclined driving position - is defined as one with a seat back angled at more than thirty +degrees (30°) from the vertical as measured along the line joining the two 200 mm circles +of the template of the 95th percentile male as defined in Table 6 and positioned per +T3.9.4. +(f) Chest-groin line - is the straight line that in side view follows the line of the shoulder +belts from the chest to the release buckle. +1T5.1.2 Harness Requirements +All drivers must use a 5, 6 or 7 point restraint harness meeting the following specifications: +(a) SFI Specification 16.1, SFI Specification 16.5, SFI Specification 16.6, or FIA +specification 8853/98 or FIA specification 8853-2016. +Note: FIA harnesses with 44 mm (“2 inch”) shoulder straps meeting T5.1.2 and T5.1.3 +are approved for use at FH+E +(b) To accommodate drivers of differing builds, all lap belts must incorporate a tilt lock +adjuster (“quick adjuster”). + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Lap belts with “pull-up” adjusters are recommended over “pull-down” adjusters +and a tilt lock adjuster in each portion of the lap belt is highly recommended. +(c) Cars with a “reclined driving position” (see T5.1.1(e) above) must have either a 6 point +or 7-point harness, AND have either anti-submarine belts with tilt lock adjusters (“quick +adjusters”) or have two (2) sets of anti-submarine belts installed. +(d) The shoulder harness must be the over-the-shoulder type. Only separate shoulder straps +are permitted (i.e. “Y”-type shoulder straps are not allowed). The “H”-type configuration +is allowed. +(e) The belts must bear the appropriate dated labels. +(f) The material of all straps must be in perfect condition. 1T5.1.3 Harness Replacement - Harnesses must be replaced following December 31 -st - of the year of the -expiration date shown on the label. (Note: SFI belts are normally certified for two (2) years -from the date of manufacture while FIA belts are normally certified for five (5) years from -the date of manufacture.) -1T5.1.4 The restraint system must be worn tightly at all times. -1T5.2 Belt, Strap and Harness Installation - General -1T5.2.1 The lap belt, shoulder harness and anti-submarine strap(s) must be securely mounted to the -Primary Structure. Such structure and any guide or support for the belts must meet the -minimum requirements of T3.3.1. -Note: Rule T3.4.5 applies to these tubes as well so a non-straight shoulder harness bar would -require support per T3.4.5 -1T5.2.2 The tab or bracket to which any harness is attached must fulfill the following requirements: -(a) Have a minimum cross sectional area of 60 sq. mm (0.093 sq. in) of steel to be sheared or -failed in tension at any point of the tab, and -(b) Have a minimum thickness of 1.6 mm (0.063 inch). -(c) Where lap belts and anti-submarine belts use the same attachment point, there must be a -minimum cross sectional area of 90 sq. mm (0.140 sq. in) of steel to be sheared or failed -in tension at any point of the tab. -(d) Where brackets are fastened to the chassis, two 6mm Metric Grade 8.8 (1/4 inch SAE -Grade 5) fasteners or stronger must be used to attach the bracket to the chassis. -(e) Where a single shear tab is welded to the chassis, the tab to tube welding must be on both -sides of the base of the tab. -(f) The bracket or tab should be aligned such that it is not put in bending when that portion -of the harness is put under load. -NOTE: Double shear attachments are preferred. Where possible, the tabs and brackets for -double shear mounts should also be welded on both sides. -1T5.2.3 Harnesses, belts and straps must not pass through a firewall, i.e. all harness attachment points -must be on the driver’s side of any firewall. -1T5.2.4 The attachment of the Driver’s Restraint System to a monocoque structure requires an approved -Structural Equivalency Spreadsheet per Rule T3.8. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T5.2.5 All adjusters must be threaded in accordance with manufacturer’s instructions. Examples are -given in Figure 17. - - -Figure 17 - Seat Belt Threading Examples -1T5.2.6 The restraint system installation is subject to approval of the Chief Technical Inspector. -1T5.3 Lap Belt Mounting -1T5.3.1 The lap belt must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip -bones). -1T5.3.2 The lap belts must not be routed over the sides of the seat. The lap belts must come through the -seat at the bottom of the sides of the seat to maximize the wrap of the pelvic surface and -continue in a straight line to the anchorage point. -1T5.3.3 Where the belts or harness pass through a hole in the seat, the seat must be rolled or grommeted -to prevent chafing of the belts. -1T5.3.4 To fit drivers of differing statures correctly, in side view, the lap belt must be capable of -pivoting freely by using either a shouldered bolt or an eye bolt attachment, i.e. mounting lap -belts by wrapping them around frame tubes is no longer acceptable. -1T5.3.5 With an “upright driving position”, in side view the lap belt must be at an angle of between -forty-five degrees (45°) and sixty-five degrees (65°) to the horizontal. This means that the -centerline of the lap belt at the seat bottom should be between 0 – 76 mm forward of the seat -back to seat bottom junction. (See Figure 18) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - - -Figure 18 – Lap Belt Angles with Upright Driver -1T5.3.6 With a “reclined driving position”, in side view the lap belt must be between an angle of sixty -degrees (60°) and eighty degrees (80°) to the horizontal. -1T5.3.7 Any bolt used to attach a lap belt, either directly to the chassis or to an intermediate bracket, -must be a minimum of either: -(a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR -(b) The bolt diameter specified by the harness manufacturer. -1T5.4 Shoulder Harness -1T5.4.1 The shoulder harness must be mounted behind the driver to structure that meets the -requirements of T3.3.1. However, it cannot be mounted to the Main Roll Hoop Bracing or -attendant structure without additional bracing to prevent loads being transferred into the Main -Hoop Bracing. -1T5.4.2 If the harness is mounted to a tube that is not straight, the joints between this tube and the -structure to which it is mounted must be reinforced in side view by gussets or triangulation -tubes to prevent torsional rotation of the harness mounting tube. -1T5.4.3 The shoulder harness mounting points must be between 178 mm and 229 mm apart. (See -Figure 19) - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 19 – Shoulder Harness Mounting – Top View -1T5.4.4 From the driver’s shoulders rearwards to the mounting point or structural guide, the shoulder -harness must be between ten degrees (10°) above the horizontal and twenty degrees (20°) -below the horizontal. (See Figure 20). - - -Figure 20 - Shoulder Harness Mounting – Side View -1T5.4.5 Any bolt used to attach a shoulder harness belt, either directly to the chassis or to an -intermediate bracket, must be must be a minimum of either: -(a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR -(b) The bolt diameter specified by the harness manufacturer. -1T5.5 Anti-Submarine Belt Mounting -1T5.5.1 The anti-submarine belt of a 5-point harness must be mounted so that the mounting point is in -line with, or angled slightly forward (up to twenty degrees (20°)) of, the driver’s chest-groin -line. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - - -1T5.5.2 The anti-submarine belts of a 6 point harness must be mounted either: -(a) With the belts going vertically down from the groin, or angled up to twenty degrees (20°) -rearwards. The anchorage points should be approximately 100 mm apart. Or - - - -(b) With the anchorage points on the Primary Structure at or near the lap belt anchorages, the -driver sitting on the anti-submarine belts, and the belts coming up around the groin to the -release buckle. - - - -1T5.5.3 All anti-submarine belts must be installed so that they go in a straight line from the anchorage -point(s) to: -● Either the harness release buckle for the 5-point mounting per T5.5.1, - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -● Or the first point where the belts touch the driver’s body for the 6-point mounting per -T5.5.2(a) or T5.5.2(b). -without touching any hole in the seat or any other intermediate structure. -1T5.5.4 Any bolt used to attach an anti-submarine belt, either directly to the chassis or to an -intermediate bracket, must be a must be a minimum of either: -(a) 8mm Metric Grade 8.8 (5/16 inch SAE Grade 5) OR -(b) The bolt diameter specified by the belt manufacturer. -1T5.6 Head Restraint -1T5.6.1 A head restraint must be provided on the car to limit the rearward motion of the driver’s head. -1T5.6.2 The restraint must: -(a) Be vertical or near vertical in side view. -(b) Be padded with a minimum thickness of 38 mm (1.5 inches) of an energy absorbing -material that meets either SFI Standard 45.2, or is listed on the FIA Technical List No. +st +of the year of the +expiration date shown on the label. (Note: SFI belts are normally certified for two (2) years +from the date of manufacture while FIA belts are normally certified for five (5) years from +the date of manufacture.) +1T5.1.4 The restraint system must be worn tightly at all times. +1T5.2 Belt, Strap and Harness Installation - General +1T5.2.1 The lap belt, shoulder harness and anti-submarine strap(s) must be securely mounted to the +Primary Structure. Such structure and any guide or support for the belts must meet the +minimum requirements of T3.3.1. +Note: Rule T3.4.5 applies to these tubes as well so a non-straight shoulder harness bar would +require support per T3.4.5 +1T5.2.2 The tab or bracket to which any harness is attached must fulfill the following requirements: +(a) Have a minimum cross sectional area of 60 sq. mm (0.093 sq. in) of steel to be sheared or +failed in tension at any point of the tab, and +(b) Have a minimum thickness of 1.6 mm (0.063 inch). +(c) Where lap belts and anti-submarine belts use the same attachment point, there must be a +minimum cross sectional area of 90 sq. mm (0.140 sq. in) of steel to be sheared or failed +in tension at any point of the tab. +(d) Where brackets are fastened to the chassis, two 6mm Metric Grade 8.8 (1/4 inch SAE +Grade 5) fasteners or stronger must be used to attach the bracket to the chassis. +(e) Where a single shear tab is welded to the chassis, the tab to tube welding must be on both +sides of the base of the tab. +(f) The bracket or tab should be aligned such that it is not put in bending when that portion +of the harness is put under load. +NOTE: Double shear attachments are preferred. Where possible, the tabs and brackets for +double shear mounts should also be welded on both sides. +1T5.2.3 Harnesses, belts and straps must not pass through a firewall, i.e. all harness attachment points +must be on the driver’s side of any firewall. +1T5.2.4 The attachment of the Driver’s Restraint System to a monocoque structure requires an approved +Structural Equivalency Spreadsheet per Rule T3.8. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T5.2.5 All adjusters must be threaded in accordance with manufacturer’s instructions. Examples are +given in Figure 17. +Figure 17 - Seat Belt Threading Examples +1T5.2.6 The restraint system installation is subject to approval of the Chief Technical Inspector. +1T5.3 Lap Belt Mounting +1T5.3.1 The lap belt must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip +bones). +1T5.3.2 The lap belts must not be routed over the sides of the seat. The lap belts must come through the +seat at the bottom of the sides of the seat to maximize the wrap of the pelvic surface and +continue in a straight line to the anchorage point. +1T5.3.3 Where the belts or harness pass through a hole in the seat, the seat must be rolled or grommeted +to prevent chafing of the belts. +1T5.3.4 To fit drivers of differing statures correctly, in side view, the lap belt must be capable of +pivoting freely by using either a shouldered bolt or an eye bolt attachment, i.e. mounting lap +belts by wrapping them around frame tubes is no longer acceptable. +1T5.3.5 With an “upright driving position”, in side view the lap belt must be at an angle of between +forty-five degrees (45°) and sixty-five degrees (65°) to the horizontal. This means that the +centerline of the lap belt at the seat bottom should be between 0 – 76 mm forward of the seat +back to seat bottom junction. (See Figure 18) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 18 – Lap Belt Angles with Upright Driver +1T5.3.6 With a “reclined driving position”, in side view the lap belt must be between an angle of sixty +degrees (60°) and eighty degrees (80°) to the horizontal. +1T5.3.7 Any bolt used to attach a lap belt, either directly to the chassis or to an intermediate bracket, +must be a minimum of either: +(a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR +(b) The bolt diameter specified by the harness manufacturer. +1T5.4 Shoulder Harness +1T5.4.1 The shoulder harness must be mounted behind the driver to structure that meets the +requirements of T3.3.1. However, it cannot be mounted to the Main Roll Hoop Bracing or +attendant structure without additional bracing to prevent loads being transferred into the Main +Hoop Bracing. +1T5.4.2 If the harness is mounted to a tube that is not straight, the joints between this tube and the +structure to which it is mounted must be reinforced in side view by gussets or triangulation +tubes to prevent torsional rotation of the harness mounting tube. +1T5.4.3 The shoulder harness mounting points must be between 178 mm and 229 mm apart. (See +Figure 19) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 19 – Shoulder Harness Mounting – Top View +1T5.4.4 From the driver’s shoulders rearwards to the mounting point or structural guide, the shoulder +harness must be between ten degrees (10°) above the horizontal and twenty degrees (20°) +below the horizontal. (See Figure 20). +Figure 20 - Shoulder Harness Mounting – Side View +1T5.4.5 Any bolt used to attach a shoulder harness belt, either directly to the chassis or to an +intermediate bracket, must be must be a minimum of either: +(a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR +(b) The bolt diameter specified by the harness manufacturer. +1T5.5 Anti-Submarine Belt Mounting +1T5.5.1 The anti-submarine belt of a 5-point harness must be mounted so that the mounting point is in +line with, or angled slightly forward (up to twenty degrees (20°)) of, the driver’s chest-groin +line. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T5.5.2 The anti-submarine belts of a 6 point harness must be mounted either: +(a) With the belts going vertically down from the groin, or angled up to twenty degrees (20°) +rearwards. The anchorage points should be approximately 100 mm apart. Or +(b) With the anchorage points on the Primary Structure at or near the lap belt anchorages, the +driver sitting on the anti-submarine belts, and the belts coming up around the groin to the +release buckle. +1T5.5.3 All anti-submarine belts must be installed so that they go in a straight line from the anchorage +point(s) to: +● Either the harness release buckle for the 5-point mounting per T5.5.1, + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +● Or the first point where the belts touch the driver’s body for the 6-point mounting per +T5.5.2(a) or T5.5.2(b). +without touching any hole in the seat or any other intermediate structure. +1T5.5.4 Any bolt used to attach an anti-submarine belt, either directly to the chassis or to an +intermediate bracket, must be a must be a minimum of either: +(a) 8mm Metric Grade 8.8 (5/16 inch SAE Grade 5) OR +(b) The bolt diameter specified by the belt manufacturer. +1T5.6 Head Restraint +1T5.6.1 A head restraint must be provided on the car to limit the rearward motion of the driver’s head. +1T5.6.2 The restraint must: +(a) Be vertical or near vertical in side view. +(b) Be padded with a minimum thickness of 38 mm (1.5 inches) of an energy absorbing +material that meets either SFI Standard 45.2, or is listed on the FIA Technical List No. 17 as a “Type A or a Type B Material for single seater cars”, i.e. CONFOR™ foam CF- -42AC (pink) or CF-42M (pink) or CF45 (blue) or CF45M (blue) . -(c) Have a minimum width of 15 cm (6 inches). -(d) Have a minimum area of 235 sq. cms (36 sq. inches) AND have a minimum height -adjustment of 17.5 cm (7 inches), OR have a minimum height of 28 cm (11 inches). -(e) Be covered in a thin, flexible cover with a hole with a minimum dimeter of 20 mm in a -surface other than the front surface, through which the energy absorbing material can be -seen. -(f) Be located so that for each driver: -(i) The restraint is no more than 25 mm (1 inch) away from the back of the driver’s -helmet, with the driver in their normal driving position. -(ii) The contact point of the back of the driver’s helmet on the head restraint is no less -than 50 mm (2 inches) from any edge of the head restraint. -Note 1: Head restraints may be changed to accommodate different drivers (See T1.2.2(d)). -Note 2: The above requirements must be met for all drivers. -Note 3: Approximately 100 mm (4 inches) longitudinal adjustment is required to accommodate -5th to 95th Percentile drivers. This is not a specific rules requirement, but teams must have -sufficient longitudinal adjustment and/or alternative thickness head restraints available, such -that the above requirements are met by all their drivers. -1T5.6.3 The restraint, its attachment and mounting must be strong enough to withstand a force of 890 -Newtons applied in a rearward direction. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T5.7 Roll Bar Padding - Any portion of the roll bar, roll bar bracing or frame which might be contacted by the driver’s -helmet must be covered with a minimum thickness of 12 mm (0.5 inches) of padding which -meets SFI spec 45.1 or FIA 8857-2001. -1T5.8 Driver’s Leg Protection -1T5.8.1 To keep the driver’s legs away from moving or sharp components, all moving suspension and -steering components, and other sharp edges inside the cockpit between the front roll hoop and -a vertical plane 100 mm rearward of the pedals, must be shielded with a shield made of a -solid material. Moving components include, but are not limited to springs, shock absorbers, -rocker arms, anti-roll/sway bars, steering racks and steering column CV joints. -1T5.8.2 Covers over suspension and steering components must be removable to allow inspection of the -mounting points. -ARTICLE T6 GENERAL CHASSIS RULES -1T6.1 Suspension -1T6.1.1 The car must be equipped with a fully operational suspension system with shock absorbers, -front and rear, with usable wheel travel of at least 50.8 mm, 25.4 mm jounce and 25.4 mm -rebound, with driver seated. The judges reserve the right to disqualify cars which do not -represent a serious attempt at an operational suspension system or which demonstrate -handling inappropriate for an autocross circuit. -1T6.1.2 All suspension mounting points must be visible at Technical Inspection, either by direct view or -by removing any covers. -1T6.2 Ground Clearance -The ground clearance must be sufficient to prevent any portion of the car (other than tires) from -touching the ground during track events, and with the driver aboard there must be a minimum -of 25.4 mm of static ground clearance under the complete car at all times. -1T6.3 Wheels -1T6.3.1 The wheels of the car must be 8 inches (203.2 mm) or more in diameter. -1T6.3.2 Any wheel mounting system that uses a single retaining nut must incorporate a device to retain -the nut and the wheel in the event that the nut loosens. A second nut (“jam nut”) does not -meet these requirements. -1T6.3.3 Standard wheel lug bolts are considered engineering fasteners and any modification will be -subject to extra scrutiny during technical inspection. Teams using modified lug bolts or -custom designs will be required to provide proof that good engineering practices have been -followed in their design. -1T6.3.4 Aluminum wheel nuts may be used, but they must be hard anodized and in pristine condition. -1T6.4 Tires -1T6.4.1 Vehicles may have two types of tires as follows: -(a) Dry Tires – The tires on the vehicle when it is presented for technical inspection are -defined as its “Dry Tires”. The dry tires may be any size or type. They may be slicks or -treaded. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(b) Rain Tires – Rain tires may be any size or type of treaded or grooved tire provided: -(i) The tread pattern or grooves were molded in by the tire manufacturer, or were cut by -the tire manufacturer or his appointed agent. Any grooves that have been cut must -have documentary proof that it was done in accordance with these rules. -(ii) There is a minimum tread depth of 2.4 mm. -Note: Hand cutting, grooving or modification of the tires by the teams is specifically -prohibited. -1T6.4.2 Within each tire set, the tire compound or size, or wheel type or size may not be changed after -static judging has begun. Tire warmers are not allowed. No traction enhancers may be applied -to the tires after the static judging has begun. -1T6.5 Steering -1T6.5.1 The steering wheel must be mechanically connected to the wheels, i.e. “steer-by-wire” or -electrically actuated steering is prohibited. -1T6.5.2 The steering system must have positive steering stops that prevent the steering linkages from -locking up (the inversion of a four-bar linkage at one of the pivots). The stops may be placed -on the uprights or on the rack and must prevent the tires from contacting suspension, body, or -frame members during the track events. -1T6.5.3 Allowable steering system free play is limited to seven degrees (7°) total measured at the -steering wheel. -1T6.5.4 The steering wheel must be attached to the column with a quick disconnect. The driver must be -able to operate the quick disconnect while in the normal driving position with gloves on. -1T6.5.5 Rear wheel steering, which can be electrically actuated, is permitted but only if mechanical -stops limit the range of angular movement of the rear wheels to a maximum of six degrees -(6°). This must be demonstrated with a driver in the car and the team must provide the facility -for the steering angle range to be verified at Technical Inspection. -1T6.5.6 The steering wheel must have a continuous perimeter that is near circular or near oval, i.e. the -outer perimeter profile can have some straight sections, but no concave sections. “H”, “Figure -8”, or cutout wheels are not allowed. -1T6.5.7 In any angular position, the top of the steering wheel must be no higher than the top-most -surface of the Front Hoop. See Figure 7. -1T6.5.8 Steering systems using cables for actuation are not prohibited by T6.5.1 but additional -documentation must be submitted. The team must submit a failure modes and effects -analysis report with design details of the proposed system as part of the structural -equivalency spreadsheet (SES). -The report must outline the analysis that was done to show the steering system will function -properly, potential failure modes and the effects of each failure mode and finally failure -mitigation strategies used by the team. The organizing committee will review the submission -and advise the team if the design is approved. If not approved, a non-cable based steering -system must be used instead. -1T6.5.9 The steering rack must be mechanically attached to the frame. If fasteners are used they must -be compliant with ARTICLE T11. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T6.5.10 Joints between all components attaching the steering wheel to the steering rack must be -mechanical and be visible at Technical Inspection. Bonded joints without a mechanical -backup are not permitted. -1T6.6 Jacking Point -1T6.6.1 A jacking point, which is capable of supporting the car’s weight and of engaging the -organizers’ “quick jacks”, must be provided at the rear of the car. -1T6.6.2 The jacking point is required to be: -(a) Visible to a person standing 1 meter behind the car. -(b) Painted orange. -(c) Oriented horizontally and perpendicular to the centerline of the car -(d) Made from round, 25–29 mm O.D. aluminum or steel tube -(e) A minimum of 300 mm long -(f) Exposed around the lower 180 degrees (180°) of its circumference over a minimum length -of 280 mm -(g) The height of the tube is required to be such that: -(i) There is a minimum of 75 mm clearance from the bottom of the tube to the ground -measured at tech inspection. -(ii) With the bottom of the tube 200 mm above ground, the wheels do not touch the -ground when they are in full rebound. - Comment on Disabled Cars – The organizers and the Rules Committee remind teams that cars -disabled on course must be removed as quickly as possible. A variety of tools may be used to -move disabled cars including quick jacks, dollies of different types, tow ropes and occasionally -even boards. We expect cars to be strong enough to be easily moved without damage. Speed is -important in clearing the course and although the course crew exercises due care, parts of a -vehicle can be damaged during removal. The organizers are not responsible for damage that -occurs when moving disabled vehicles. Removal/recovery workers will jack, lift, carry or tow -the car at whatever points they find easiest to access. Accordingly, we advise teams to consider -the strength and location of all obvious jacking, lifting and towing points during the design -process. -1T6.7 Rollover Stability -1T6.7.1 The track and center of gravity of the car must combine to provide adequate rollover stability. -1T6.7.2 Rollover stability will be evaluated on a tilt table using a pass/fail test. The vehicle must not roll -when tilted at an angle of sixty degrees (60°) to the horizontal in either direction, -corresponding to 1.7 G’s. The tilt test will be conducted with the tallest driver in the normal -driving position. -ARTICLE T7 BRAKE SYSTEM -1T7.1 Brake System - General -1T7.1.1 The car must be equipped with a braking system that acts on all four wheels and is operated by -a single control. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T7.1.2 It must have two (2) independent hydraulic circuits such that in the case of a leak or failure at -any point in the system, effective braking power is maintained on at least two (2) wheels. -Each hydraulic circuit must have its own fluid reserve, either by the use of separate reservoirs -or by the use of a dammed, OEM-style reservoir. -1T7.1.3 A single brake acting on a limited-slip differential is acceptable. -1T7.1.4 The brake system must be capable of locking all four (4) wheels during the test specified in -section T7.2. -1T7.1.5 “Brake-by-wire” systems are prohibited. -1T7.1.6 Unarmored plastic brake lines are prohibited. -1T7.1.7 The braking systems must be protected with scatter shields from failure of the drive train (see -T8.4) or from minor collisions. -1T7.1.8 In side view no portion of the brake system that is mounted on the sprung part of the car can -project below the lower surface of the frame or the monocoque, whichever is applicable. -1T7.1.9 The brake pedal must be designed to withstand a force of 2000 N without any failure of the -brake system or pedal box. This may be tested by pressing the pedal with the maximum -force that can be exerted by any official when seated normally. -1T7.1.10 The brake pedal must be fabricated from steel or aluminum or machined from steel, -aluminum or titanium. -1T7.1.11 The first 50% of the brake pedal travel may be used to control regeneration without -necessarily actuating the hydraulic brake system. - The remaining brake pedal travel must directly actuate the hydraulic brake system, but brake -energy regeneration may remain active. - - Note: Any strategy to regenerate energy while coasting or braking must be covered by the ESF. -1T7.2 Brake Test -1T7.2.1 The brake system will be dynamically tested and must demonstrate the capability -of locking all four (4) wheels and stopping the vehicle in a straight line at the end of an +42AC (pink) or CF-42M (pink) or CF45 (blue) or CF45M (blue) . +(c) Have a minimum width of 15 cm (6 inches). +(d) Have a minimum area of 235 sq. cms (36 sq. inches) AND have a minimum height +adjustment of 17.5 cm (7 inches), OR have a minimum height of 28 cm (11 inches). +(e) Be covered in a thin, flexible cover with a hole with a minimum dimeter of 20 mm in a +surface other than the front surface, through which the energy absorbing material can be +seen. +(f) Be located so that for each driver: +(i) The restraint is no more than 25 mm (1 inch) away from the back of the driver’s +helmet, with the driver in their normal driving position. +(ii) The contact point of the back of the driver’s helmet on the head restraint is no less +than 50 mm (2 inches) from any edge of the head restraint. +Note 1: Head restraints may be changed to accommodate different drivers (See T1.2.2(d)). +Note 2: The above requirements must be met for all drivers. +Note 3: Approximately 100 mm (4 inches) longitudinal adjustment is required to accommodate +5th to 95th Percentile drivers. This is not a specific rules requirement, but teams must have +sufficient longitudinal adjustment and/or alternative thickness head restraints available, such +that the above requirements are met by all their drivers. +1T5.6.3 The restraint, its attachment and mounting must be strong enough to withstand a force of 890 +Newtons applied in a rearward direction. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T5.7 Roll Bar Padding +Any portion of the roll bar, roll bar bracing or frame which might be contacted by the driver’s +helmet must be covered with a minimum thickness of 12 mm (0.5 inches) of padding which +meets SFI spec 45.1 or FIA 8857-2001. +1T5.8 Driver’s Leg Protection +1T5.8.1 To keep the driver’s legs away from moving or sharp components, all moving suspension and +steering components, and other sharp edges inside the cockpit between the front roll hoop and +a vertical plane 100 mm rearward of the pedals, must be shielded with a shield made of a +solid material. Moving components include, but are not limited to springs, shock absorbers, +rocker arms, anti-roll/sway bars, steering racks and steering column CV joints. +1T5.8.2 Covers over suspension and steering components must be removable to allow inspection of the +mounting points. +ARTICLE T6 GENERAL CHASSIS RULES +1T6.1 Suspension +1T6.1.1 The car must be equipped with a fully operational suspension system with shock absorbers, +front and rear, with usable wheel travel of at least 50.8 mm, 25.4 mm jounce and 25.4 mm +rebound, with driver seated. The judges reserve the right to disqualify cars which do not +represent a serious attempt at an operational suspension system or which demonstrate +handling inappropriate for an autocross circuit. +1T6.1.2 All suspension mounting points must be visible at Technical Inspection, either by direct view or +by removing any covers. +1T6.2 Ground Clearance +The ground clearance must be sufficient to prevent any portion of the car (other than tires) from +touching the ground during track events, and with the driver aboard there must be a minimum +of 25.4 mm of static ground clearance under the complete car at all times. +1T6.3 Wheels +1T6.3.1 The wheels of the car must be 8 inches (203.2 mm) or more in diameter. +1T6.3.2 Any wheel mounting system that uses a single retaining nut must incorporate a device to retain +the nut and the wheel in the event that the nut loosens. A second nut (“jam nut”) does not +meet these requirements. +1T6.3.3 Standard wheel lug bolts are considered engineering fasteners and any modification will be +subject to extra scrutiny during technical inspection. Teams using modified lug bolts or +custom designs will be required to provide proof that good engineering practices have been +followed in their design. +1T6.3.4 Aluminum wheel nuts may be used, but they must be hard anodized and in pristine condition. +1T6.4 Tires +1T6.4.1 Vehicles may have two types of tires as follows: +(a) Dry Tires – The tires on the vehicle when it is presented for technical inspection are +defined as its “Dry Tires”. The dry tires may be any size or type. They may be slicks or +treaded. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(b) Rain Tires – Rain tires may be any size or type of treaded or grooved tire provided: +(i) The tread pattern or grooves were molded in by the tire manufacturer, or were cut by +the tire manufacturer or his appointed agent. Any grooves that have been cut must +have documentary proof that it was done in accordance with these rules. +(ii) There is a minimum tread depth of 2.4 mm. +Note: Hand cutting, grooving or modification of the tires by the teams is specifically +prohibited. +1T6.4.2 Within each tire set, the tire compound or size, or wheel type or size may not be changed after +static judging has begun. Tire warmers are not allowed. No traction enhancers may be applied +to the tires after the static judging has begun. +1T6.5 Steering +1T6.5.1 The steering wheel must be mechanically connected to the wheels, i.e. “steer-by-wire” or +electrically actuated steering is prohibited. +1T6.5.2 The steering system must have positive steering stops that prevent the steering linkages from +locking up (the inversion of a four-bar linkage at one of the pivots). The stops may be placed +on the uprights or on the rack and must prevent the tires from contacting suspension, body, or +frame members during the track events. +1T6.5.3 Allowable steering system free play is limited to seven degrees (7°) total measured at the +steering wheel. +1T6.5.4 The steering wheel must be attached to the column with a quick disconnect. The driver must be +able to operate the quick disconnect while in the normal driving position with gloves on. +1T6.5.5 Rear wheel steering, which can be electrically actuated, is permitted but only if mechanical +stops limit the range of angular movement of the rear wheels to a maximum of six degrees +(6°). This must be demonstrated with a driver in the car and the team must provide the facility +for the steering angle range to be verified at Technical Inspection. +1T6.5.6 The steering wheel must have a continuous perimeter that is near circular or near oval, i.e. the +outer perimeter profile can have some straight sections, but no concave sections. “H”, “Figure +8”, or cutout wheels are not allowed. +1T6.5.7 In any angular position, the top of the steering wheel must be no higher than the top-most +surface of the Front Hoop. See Figure 7. +1T6.5.8 Steering systems using cables for actuation are not prohibited by T6.5.1 but additional +documentation must be submitted. The team must submit a failure modes and effects +analysis report with design details of the proposed system as part of the structural +equivalency spreadsheet (SES). +The report must outline the analysis that was done to show the steering system will function +properly, potential failure modes and the effects of each failure mode and finally failure +mitigation strategies used by the team. The organizing committee will review the submission +and advise the team if the design is approved. If not approved, a non-cable based steering +system must be used instead. +1T6.5.9 The steering rack must be mechanically attached to the frame. If fasteners are used they must +be compliant with ARTICLE T11. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T6.5.10 Joints between all components attaching the steering wheel to the steering rack must be +mechanical and be visible at Technical Inspection. Bonded joints without a mechanical +backup are not permitted. +1T6.6 Jacking Point +1T6.6.1 A jacking point, which is capable of supporting the car’s weight and of engaging the +organizers’ “quick jacks”, must be provided at the rear of the car. +1T6.6.2 The jacking point is required to be: +(a) Visible to a person standing 1 meter behind the car. +(b) Painted orange. +(c) Oriented horizontally and perpendicular to the centerline of the car +(d) Made from round, 25–29 mm O.D. aluminum or steel tube +(e) A minimum of 300 mm long +(f) Exposed around the lower 180 degrees (180°) of its circumference over a minimum length +of 280 mm +(g) The height of the tube is required to be such that: +(i) There is a minimum of 75 mm clearance from the bottom of the tube to the ground +measured at tech inspection. +(ii) With the bottom of the tube 200 mm above ground, the wheels do not touch the +ground when they are in full rebound. +Comment on Disabled Cars – The organizers and the Rules Committee remind teams that cars +disabled on course must be removed as quickly as possible. A variety of tools may be used to +move disabled cars including quick jacks, dollies of different types, tow ropes and occasionally +even boards. We expect cars to be strong enough to be easily moved without damage. Speed is +important in clearing the course and although the course crew exercises due care, parts of a +vehicle can be damaged during removal. The organizers are not responsible for damage that +occurs when moving disabled vehicles. Removal/recovery workers will jack, lift, carry or tow +the car at whatever points they find easiest to access. Accordingly, we advise teams to consider +the strength and location of all obvious jacking, lifting and towing points during the design +process. +1T6.7 Rollover Stability +1T6.7.1 The track and center of gravity of the car must combine to provide adequate rollover stability. +1T6.7.2 Rollover stability will be evaluated on a tilt table using a pass/fail test. The vehicle must not roll +when tilted at an angle of sixty degrees (60°) to the horizontal in either direction, +corresponding to 1.7 G’s. The tilt test will be conducted with the tallest driver in the normal +driving position. +ARTICLE T7 BRAKE SYSTEM +1T7.1 Brake System - General +1T7.1.1 The car must be equipped with a braking system that acts on all four wheels and is operated by +a single control. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T7.1.2 It must have two (2) independent hydraulic circuits such that in the case of a leak or failure at +any point in the system, effective braking power is maintained on at least two (2) wheels. +Each hydraulic circuit must have its own fluid reserve, either by the use of separate reservoirs +or by the use of a dammed, OEM-style reservoir. +1T7.1.3 A single brake acting on a limited-slip differential is acceptable. +1T7.1.4 The brake system must be capable of locking all four (4) wheels during the test specified in +section T7.2. +1T7.1.5 “Brake-by-wire” systems are prohibited. +1T7.1.6 Unarmored plastic brake lines are prohibited. +1T7.1.7 The braking systems must be protected with scatter shields from failure of the drive train (see +T8.4) or from minor collisions. +1T7.1.8 In side view no portion of the brake system that is mounted on the sprung part of the car can +project below the lower surface of the frame or the monocoque, whichever is applicable. +1T7.1.9 The brake pedal must be designed to withstand a force of 2000 N without any failure of the +brake system or pedal box. This may be tested by pressing the pedal with the maximum +force that can be exerted by any official when seated normally. +1T7.1.10 The brake pedal must be fabricated from steel or aluminum or machined from steel, +aluminum or titanium. +1T7.1.11 The first 50% of the brake pedal travel may be used to control regeneration without +necessarily actuating the hydraulic brake system. +The remaining brake pedal travel must directly actuate the hydraulic brake system, but brake +energy regeneration may remain active. +Note: Any strategy to regenerate energy while coasting or braking must be covered by the ESF. +1T7.2 Brake Test +1T7.2.1 The brake system will be dynamically tested and must demonstrate the capability +of locking all four (4) wheels and stopping the vehicle in a straight line at the end of an acceleration run specified by the brake inspectors 5 -. -1T7.2.2 After accelerating, the tractive system must be switched off by the driver and the driver has to -lock all four wheels of the vehicle by braking. The brake test is passed if all four wheels -simultaneously lock while the tractive system is shut down. -Note: It is acceptable if the Tractive System Active Light switches off shortly after the vehicle -has come to a complete stop as the reduction of the system voltage may take up to 5 seconds. -1T7.3 Brake Over-Travel Switch -1T7.3.1 A brake pedal over-travel switch must be installed on the car as part of the shutdown system -and wired in series with the shutdown buttons (EV7.1). This switch must be installed so that -in the event of brake system failure such that the brake pedal over travels it will result in the -shutdown system being activated. - -5 - It is a persistent source of mystery to the organizers, how a small percentage of teams, after passing all the required -inspections, appear to have never checked to see if they can lock all four wheels. Check this early! - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T7.3.2 Repeated actuation of the switch must not restore power to these components, and it must be -designed so that the driver cannot reset it. -1T7.3.3 The brake over-travel switch must not be used as a mechanical stop for the brake pedal and -must be installed in such a way that it and its mounting will remain intact and operational -when actuated. -1T7.3.4 The switch must be implemented directly. i.e. It may not operate through programmable logic -controllers, engine control units, or digital controllers -1T7.3.5 The Brake Over-Travel switch must be a mechanical single pole, single throw (commonly -known as a two-position) switch (push-pull or flip type) as shown below. - - -Figure 21 – Over-travel Switches -1T7.4 Brake Light -1T7.4.1 The car must be equipped with a red brake light. -1T7.4.2 The brake light itself must have a black background and a rectangular, triangular or near round +. +1T7.2.2 After accelerating, the tractive system must be switched off by the driver and the driver has to +lock all four wheels of the vehicle by braking. The brake test is passed if all four wheels +simultaneously lock while the tractive system is shut down. +Note: It is acceptable if the Tractive System Active Light switches off shortly after the vehicle +has come to a complete stop as the reduction of the system voltage may take up to 5 seconds. +1T7.3 Brake Over-Travel Switch +1T7.3.1 A brake pedal over-travel switch must be installed on the car as part of the shutdown system +and wired in series with the shutdown buttons (EV7.1). This switch must be installed so that +in the event of brake system failure such that the brake pedal over travels it will result in the +shutdown system being activated. +5 +It is a persistent source of mystery to the organizers, how a small percentage of teams, after passing all the required +inspections, appear to have never checked to see if they can lock all four wheels. Check this early! + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T7.3.2 Repeated actuation of the switch must not restore power to these components, and it must be +designed so that the driver cannot reset it. +1T7.3.3 The brake over-travel switch must not be used as a mechanical stop for the brake pedal and +must be installed in such a way that it and its mounting will remain intact and operational +when actuated. +1T7.3.4 The switch must be implemented directly. i.e. It may not operate through programmable logic +controllers, engine control units, or digital controllers +1T7.3.5 The Brake Over-Travel switch must be a mechanical single pole, single throw (commonly +known as a two-position) switch (push-pull or flip type) as shown below. +Figure 21 – Over-travel Switches +1T7.4 Brake Light +1T7.4.1 The car must be equipped with a red brake light. +1T7.4.2 The brake light itself must have a black background and a rectangular, triangular or near round shape with a minimum shining surface of at least 15 cm 2 -. -1T7.4.3 The brake light must be clearly visible from the rear in bright sunlight. -1T7.4.4 When LED lights are used without an optical diffuser, they may not be more than 20 mm apart. -If a single line of LEDs is used, the minimum length is 150 mm. -1T7.4.5 The light must be mounted between the wheel centerline and driver’s shoulder level vertically -and approximately on vehicle centerline laterally. -ARTICLE T8 POWERTRAIN -1T8.1 Coolant Fluid Limitations -1T8.1.1 Water-cooled engines must use only plain water. Glycol-based antifreeze, “water wetter”, water -pump lubricants of any kind, or any other additives are strictly prohibited. +. +1T7.4.3 The brake light must be clearly visible from the rear in bright sunlight. +1T7.4.4 When LED lights are used without an optical diffuser, they may not be more than 20 mm apart. +If a single line of LEDs is used, the minimum length is 150 mm. +1T7.4.5 The light must be mounted between the wheel centerline and driver’s shoulder level vertically +and approximately on vehicle centerline laterally. +ARTICLE T8 POWERTRAIN +1T8.1 Coolant Fluid Limitations +1T8.1.1 Water-cooled engines must use only plain water. Glycol-based antifreeze, “water wetter”, water +pump lubricants of any kind, or any other additives are strictly prohibited. 1T8.1.2 Electric motors, accumulators or electronics must use plain water or approved -6 - fluids as the -coolant. - -6 - “Opticool” (http://dsiventures.com/electronics-cooling/opticool-a-fluid/) is permitted. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T8.2 System Sealing -1T8.2.1 Any cooling or lubrication system must be sealed to prevent leakage. -1T8.2.2 Any vent on a cooling or lubrication system must employ a catch-can to retain any fluid that is -expelled. A separate catch-can is required for each vent. -1T8.2.3 Each catch-can on a cooling or lubrication system must have a minimum volume of ten (10) -percent of the fluid being contained, or 0.9 liter whichever is greater. -1T8.2.4 Any vent on other systems containing liquid lubricant, e.g. a differential or gearbox, etc., must -have a catch-can with a minimum volume of ten (10) percent of the fluid being contained or -0.5 liter, whichever is greater. -1T8.2.5 Catch-cans must be capable of containing liquids at temperatures in excess of 100 deg. C -without deformation, be shielded by a firewall, be below the driver’s shoulder level, and be -positively retained, i.e. no tie-wraps or tape as the primary method of retention. -1T8.2.6 Any catch-can for a cooling system must vent through a hose with a minimum internal diameter -of 3 mm down to the bottom levels of the Frame. -1T8.3 Transmission and Drive - Any transmission may be used. -1T8.4 Drive Train Shields and Guards -1T8.4.1 Exposed high-speed final drivetrain equipment such as Continuously Variable Transmissions -(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives and clutch drives, -must be fitted with scatter shields in case of failure. The final drivetrain shield must cover the -chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley. The -final drivetrain shield must start and end parallel to the lowest point of the chain -wheel/belt/pulley. (See Figure 22) Body panels or other existing covers are not acceptable -unless constructed from approved materials per T8.4.3 or T8.4.4. - -Note: If equipped, the engine drive sprocket cover may be used as part of the scatter shield -system. - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 22 - Final Drive Scatter Shield Example - Comment: Scatter shields are intended to contain drivetrain parts which might separate from -the car. - -1T8.4.2 Perforated material may not be used for the construction of scatter shields. -1T8.4.3 Chain Drive - Scatter shields for chains must be made of at least 2.6 mm steel or stainless steel -(no alternatives are allowed), and have a minimum width equal to three (3) times the width of -the chain. The guard must be centered on the center line of the chain and remain aligned with -the chain under all conditions. -1T8.4.4 Non-metallic Belt Drive - Scatter shields for belts must be made from at least 3.0 mm -Aluminum Alloy 6061-T6, and have a minimum width that is equal to 1.7 times the width of -the belt. -1T8.4.5 The guard must be centered on the center line of the belt and remain aligned with the belt under -all conditions. -1T8.4.6 Attachment Fasteners - All fasteners attaching scatter shields and guards must be a minimum -6mm Metric Grade 8.8 or 1/4 inch SAE Grade 5 or stronger. -1T8.4.7 Finger Guards – Finger guards are required to cover any drivetrain parts that spin while the -car is stationary with the engine running. Finger guards may be made of lighter material, -sufficient to resist finger forces. Mesh or perforated material may be used but must prevent -the passage of a 12 mm diameter object through the guard. - Comment: Finger guards are intended to prevent finger intrusion into rotating equipment while -the vehicle is at rest. -1T8.5 Integrity of systems carrying fluids – Tilt Test -1T8.5.1 During technical inspection, the car must be capable of being tilted to a forty-five degree (45°) -angle without leaking fluid of any type. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T8.5.2 The tilt test will be conducted on hybrid cars with the fuel tank filled with either 3.7 litres of -fuel or to 50 mm below the top of the filler neck (whichever is less), and on all cars with all -other vehicle systems that contain fluids filled to their normal maximum capacity. -ARTICLE T9 AERODYNAMIC DEVICES -1T9.1 Aero Dynamics and Ground Effects - General - All aerodynamic devices must satisfy the following requirements: -1T9.2 Location -In plan view, no part of any aerodynamic device, wing, under tray or splitter can be: -(a) Further forward than 460 mm forward of the fronts of the front tires -(b) No further rearward than the rear of the rear tires. -(c) No wider than the outside of the front tires or rear tires measured at the height of the hubs, -whichever is wider. -1T9.3 Wing Edges - Minimum Radii -All wing leading edges must have a minimum radius 12.7 mm. Wing leading edges must be as -blunt or blunter than the required radii for an arc of plus or minus 45 degrees (± 45°) centered -on a plane parallel to the ground or similar reference plane for all incidence angles which lie -within the range of adjustment of the wing or wing element. If leading edge slats or slots are -used, both the fronts of the slats or slots and of the main body of the wings must meet the -minimum radius rules. -1T9.4 Other Edge Radii Limitations -All wing edges, end plates, Gurney flaps, wicker bills, splitters undertrays and any other wing -accessories must have minimum edge radii of at least 3 mm i.e., this means at least a 6 mm -thick edge. -1T9.5 Ground Effect Devices -No power device may be used to move or remove air from under the vehicle except fans -designed exclusively for cooling. Power ground effects are prohibited. -1T9.6 Driver Egress Requirements -1T9.6.1 Egress from the vehicle within the time set in Rule T4.8 “Driver Egress,” must not require any -movement of the wing or wings or their mountings. -1T9.6.2 The wing or wings must be mounted in such positions, and sturdily enough, that any accident is -unlikely to deform the wings or their mountings in such a way to block the driver’s egress. -ARTICLE T10 COMPRESSED GAS SYSTEMS AND HIGH PRESSURE HYDRAULICS -1T10.1 Compressed Gas Cylinders and Lines - Any system on the vehicle that uses a compressed gas as an actuating medium must comply -with the following requirements: -(a) Working Gas -The working gas must be nonflammable, e.g. air, nitrogen, carbon dioxide. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(b) Cylinder Certification - The gas cylinder/tank must be of proprietary manufacture, -designed and built for the pressure being used, certified by an accredited testing laboratory -in the country of its origin, and labeled or stamped appropriately. -(c) Pressure Regulation -The pressure regulator must be mounted directly onto the gas -cylinder/tank. -(d) Protection – The gas cylinder/tank and lines must be protected from rollover, collision -from any direction, or damage resulting from the failure of rotating equipment. -(e) Cylinder Location - The gas cylinder/tank and the pressure regulator must be located -either rearward of the Main Roll Hoop and within the envelope defined by the Main Roll -Hoop and the Frame (See T3.2), or in a structural side-pod. In either case it must be -protected by structure that meets the requirements of T3.24 or T3.33. It must not be -located in the cockpit. -(f) Cylinder Mounting - The gas cylinder/tank must be securely mounted to the Frame, engine -or transmission. -(g) Cylinder Axis - The axis of the gas cylinder/tank must not point at the driver. -(h) Insulation - The gas cylinder/tank must be insulated from any heat sources, e.g. the -exhaust system. -(i) Lines and Fittings - The gas lines and fittings must be appropriate for the maximum -possible operating pressure of the system. -1T10.2 High Pressure Hydraulic Pumps and Lines -The driver and anyone standing outside the car must be shielded from any hydraulic pumps and -lines with line pressures of 300 psi (2100 kPa) or higher. The shields must be steel or -aluminum with a minimum thickness of 1 mm. - Note: Brake and hydraulic clutch lines are not classified as “hydraulic pump lines” and as such, -are excluded from T10.2. -ARTICLE T11 FASTENERS -1T11.1 Fastener Grade Requirements -1T11.1.1 All threaded fasteners utilized in the driver’s cell structure, plus the steering, braking, driver’s -harness and suspension systems must meet or exceed, SAE Grade 5, Metric Grade 8.8 and/or -AN/MS specifications. -1T11.1.2 The use of button head cap, pan head, flat head, round head or countersunk -screws or bolts in ANY location in the following systems is prohibited: -(a) Driver’s cell structure, -(b) Impact attenuator attachment -(c) Driver’s harness attachment -(d) Steering system -(e) Brake system -(f) Suspension system. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note: Hexagonal recessed drive screws or bolts (sometimes called Socket head cap screws or -Allen screws/bolts) are permitted. -1T11.2 Securing Fasteners -1T11.2.1 All critical bolt, nuts, and other fasteners on the steering, braking, driver’s -harness, and suspension must be secured from unintentional loosening by the use of positive -locking mechanisms. -Positive locking mechanisms are defined as those that: -(a) The Technical Inspectors (and the team members) are able to see that the device/system is -in place, i.e. it is visible, AND -(b) The “positive locking mechanism” does not rely on the clamping force to apply the -“locking” or anti-vibration feature. In other words, if it loosens a bit, it still prevents the -nut or bolt from coming completely loose. - See Figure 23 -Positive locking mechanisms include: -(a) Correctly installed safety wiring -(b) Cotter pins +6 +fluids as the +coolant. +6 +“Opticool” (http://dsiventures.com/electronics-cooling/opticool-a-fluid/) is permitted. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T8.2 System Sealing +1T8.2.1 Any cooling or lubrication system must be sealed to prevent leakage. +1T8.2.2 Any vent on a cooling or lubrication system must employ a catch-can to retain any fluid that is +expelled. A separate catch-can is required for each vent. +1T8.2.3 Each catch-can on a cooling or lubrication system must have a minimum volume of ten (10) +percent of the fluid being contained, or 0.9 liter whichever is greater. +1T8.2.4 Any vent on other systems containing liquid lubricant, e.g. a differential or gearbox, etc., must +have a catch-can with a minimum volume of ten (10) percent of the fluid being contained or +0.5 liter, whichever is greater. +1T8.2.5 Catch-cans must be capable of containing liquids at temperatures in excess of 100 deg. C +without deformation, be shielded by a firewall, be below the driver’s shoulder level, and be +positively retained, i.e. no tie-wraps or tape as the primary method of retention. +1T8.2.6 Any catch-can for a cooling system must vent through a hose with a minimum internal diameter +of 3 mm down to the bottom levels of the Frame. +1T8.3 Transmission and Drive +Any transmission may be used. +1T8.4 Drive Train Shields and Guards +1T8.4.1 Exposed high-speed final drivetrain equipment such as Continuously Variable Transmissions +(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives and clutch drives, +must be fitted with scatter shields in case of failure. The final drivetrain shield must cover the +chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley. The +final drivetrain shield must start and end parallel to the lowest point of the chain +wheel/belt/pulley. (See Figure 22) Body panels or other existing covers are not acceptable +unless constructed from approved materials per T8.4.3 or T8.4.4. +Note: If equipped, the engine drive sprocket cover may be used as part of the scatter shield +system. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 22 - Final Drive Scatter Shield Example +Comment: Scatter shields are intended to contain drivetrain parts which might separate from +the car. +1T8.4.2 Perforated material may not be used for the construction of scatter shields. +1T8.4.3 Chain Drive - Scatter shields for chains must be made of at least 2.6 mm steel or stainless steel +(no alternatives are allowed), and have a minimum width equal to three (3) times the width of +the chain. The guard must be centered on the center line of the chain and remain aligned with +the chain under all conditions. +1T8.4.4 Non-metallic Belt Drive - Scatter shields for belts must be made from at least 3.0 mm +Aluminum Alloy 6061-T6, and have a minimum width that is equal to 1.7 times the width of +the belt. +1T8.4.5 The guard must be centered on the center line of the belt and remain aligned with the belt under +all conditions. +1T8.4.6 Attachment Fasteners - All fasteners attaching scatter shields and guards must be a minimum +6mm Metric Grade 8.8 or 1/4 inch SAE Grade 5 or stronger. +1T8.4.7 Finger Guards – Finger guards are required to cover any drivetrain parts that spin while the +car is stationary with the engine running. Finger guards may be made of lighter material, +sufficient to resist finger forces. Mesh or perforated material may be used but must prevent +the passage of a 12 mm diameter object through the guard. +Comment: Finger guards are intended to prevent finger intrusion into rotating equipment while +the vehicle is at rest. +1T8.5 Integrity of systems carrying fluids – Tilt Test +1T8.5.1 During technical inspection, the car must be capable of being tilted to a forty-five degree (45°) +angle without leaking fluid of any type. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T8.5.2 The tilt test will be conducted on hybrid cars with the fuel tank filled with either 3.7 litres of +fuel or to 50 mm below the top of the filler neck (whichever is less), and on all cars with all +other vehicle systems that contain fluids filled to their normal maximum capacity. +ARTICLE T9 AERODYNAMIC DEVICES +1T9.1 Aero Dynamics and Ground Effects - General +All aerodynamic devices must satisfy the following requirements: +1T9.2 Location +In plan view, no part of any aerodynamic device, wing, under tray or splitter can be: +(a) Further forward than 460 mm forward of the fronts of the front tires +(b) No further rearward than the rear of the rear tires. +(c) No wider than the outside of the front tires or rear tires measured at the height of the hubs, +whichever is wider. +1T9.3 Wing Edges - Minimum Radii +All wing leading edges must have a minimum radius 12.7 mm. Wing leading edges must be as +blunt or blunter than the required radii for an arc of plus or minus 45 degrees (± 45°) centered +on a plane parallel to the ground or similar reference plane for all incidence angles which lie +within the range of adjustment of the wing or wing element. If leading edge slats or slots are +used, both the fronts of the slats or slots and of the main body of the wings must meet the +minimum radius rules. +1T9.4 Other Edge Radii Limitations +All wing edges, end plates, Gurney flaps, wicker bills, splitters undertrays and any other wing +accessories must have minimum edge radii of at least 3 mm i.e., this means at least a 6 mm +thick edge. +1T9.5 Ground Effect Devices +No power device may be used to move or remove air from under the vehicle except fans +designed exclusively for cooling. Power ground effects are prohibited. +1T9.6 Driver Egress Requirements +1T9.6.1 Egress from the vehicle within the time set in Rule T4.8 “Driver Egress,” must not require any +movement of the wing or wings or their mountings. +1T9.6.2 The wing or wings must be mounted in such positions, and sturdily enough, that any accident is +unlikely to deform the wings or their mountings in such a way to block the driver’s egress. +ARTICLE T10 COMPRESSED GAS SYSTEMS AND HIGH PRESSURE HYDRAULICS +1T10.1 Compressed Gas Cylinders and Lines +Any system on the vehicle that uses a compressed gas as an actuating medium must comply +with the following requirements: +(a) Working Gas -The working gas must be nonflammable, e.g. air, nitrogen, carbon dioxide. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(b) Cylinder Certification - The gas cylinder/tank must be of proprietary manufacture, +designed and built for the pressure being used, certified by an accredited testing laboratory +in the country of its origin, and labeled or stamped appropriately. +(c) Pressure Regulation -The pressure regulator must be mounted directly onto the gas +cylinder/tank. +(d) Protection – The gas cylinder/tank and lines must be protected from rollover, collision +from any direction, or damage resulting from the failure of rotating equipment. +(e) Cylinder Location - The gas cylinder/tank and the pressure regulator must be located +either rearward of the Main Roll Hoop and within the envelope defined by the Main Roll +Hoop and the Frame (See T3.2), or in a structural side-pod. In either case it must be +protected by structure that meets the requirements of T3.24 or T3.33. It must not be +located in the cockpit. +(f) Cylinder Mounting - The gas cylinder/tank must be securely mounted to the Frame, engine +or transmission. +(g) Cylinder Axis - The axis of the gas cylinder/tank must not point at the driver. +(h) Insulation - The gas cylinder/tank must be insulated from any heat sources, e.g. the +exhaust system. +(i) Lines and Fittings - The gas lines and fittings must be appropriate for the maximum +possible operating pressure of the system. +1T10.2 High Pressure Hydraulic Pumps and Lines +The driver and anyone standing outside the car must be shielded from any hydraulic pumps and +lines with line pressures of 300 psi (2100 kPa) or higher. The shields must be steel or +aluminum with a minimum thickness of 1 mm. +Note: Brake and hydraulic clutch lines are not classified as “hydraulic pump lines” and as such, +are excluded from T10.2. +ARTICLE T11 FASTENERS +1T11.1 Fastener Grade Requirements +1T11.1.1 All threaded fasteners utilized in the driver’s cell structure, plus the steering, braking, driver’s +harness and suspension systems must meet or exceed, SAE Grade 5, Metric Grade 8.8 and/or +AN/MS specifications. +1T11.1.2 The use of button head cap, pan head, flat head, round head or countersunk +screws or bolts in ANY location in the following systems is prohibited: +(a) Driver’s cell structure, +(b) Impact attenuator attachment +(c) Driver’s harness attachment +(d) Steering system +(e) Brake system +(f) Suspension system. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Hexagonal recessed drive screws or bolts (sometimes called Socket head cap screws or +Allen screws/bolts) are permitted. +1T11.2 Securing Fasteners +1T11.2.1 All critical bolt, nuts, and other fasteners on the steering, braking, driver’s +harness, and suspension must be secured from unintentional loosening by the use of positive +locking mechanisms. +Positive locking mechanisms are defined as those that: +(a) The Technical Inspectors (and the team members) are able to see that the device/system is +in place, i.e. it is visible, AND +(b) The “positive locking mechanism” does not rely on the clamping force to apply the +“locking” or anti-vibration feature. In other words, if it loosens a bit, it still prevents the +nut or bolt from coming completely loose. +See Figure 23 +Positive locking mechanisms include: +(a) Correctly installed safety wiring +(b) Cotter pins (c) Nylon lock nuts (where the temperature does not exceed 80 O -C) -(d) Prevailing torque lock nuts -Note: Lock washers, bolts with nylon patches, and thread locking compounds, e.g. Loctite®, -DO NOT meet the positive locking requirement. - -Figure 23 - Examples of positive locking nuts -1T1.1.2 There must be a minimum of two (2) full threads projecting from any lock nut. -1T1.1.3 All spherical rod ends and spherical bearings on the steering or suspension must be in double -shear or captured by having a screw/bolt head or washer with an O.D. that is larger than -spherical bearing housing I.D. -1T1.1.4 Adjustable tie-rod ends must be constrained with a jam nut to prevent loosening. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE T2 TRANSPONDERS -1T2.1 Transponders -1T2.1.1 Transponders will be used as part of the timing system for the Formula Hybrid + Electric -competition. -1T2.1.2 Each team is responsible for having a functional, properly mounted transponder of the specified -type on their vehicle. Vehicles without a specified transponder will not be allowed to -compete in any event for which a transponder is used for timing and scoring. -1T2.1.3 All vehicles must be equipped with at least one MYLAPS Car/Bike Rechargeable Power +C) +(d) Prevailing torque lock nuts +Note: Lock washers, bolts with nylon patches, and thread locking compounds, e.g. Loctite®, +DO NOT meet the positive locking requirement. +Figure 23 - Examples of positive locking nuts +1T1.1.2 There must be a minimum of two (2) full threads projecting from any lock nut. +1T1.1.3 All spherical rod ends and spherical bearings on the steering or suspension must be in double +shear or captured by having a screw/bolt head or washer with an O.D. that is larger than +spherical bearing housing I.D. +1T1.1.4 Adjustable tie-rod ends must be constrained with a jam nut to prevent loosening. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE T2 TRANSPONDERS +1T2.1 Transponders +1T2.1.1 Transponders will be used as part of the timing system for the Formula Hybrid + Electric +competition. +1T2.1.2 Each team is responsible for having a functional, properly mounted transponder of the specified +type on their vehicle. Vehicles without a specified transponder will not be allowed to +compete in any event for which a transponder is used for timing and scoring. +1T2.1.3 All vehicles must be equipped with at least one MYLAPS Car/Bike Rechargeable Power Transponder or MYLAPS Car/Bike Direct Power Transponder 7 -. - Note 1: Except for their name, AMB TranX260 transponders are identical to MYLAPS -Car/Bike Transponders and comply with this rule. If you own a functional AMB TranX260 it -does not need to be replaced. - - Note 2: It is the responsibility of the team to ensure that electrical interference from their -vehicle does not stop the transponder from functioning correctly - - -1T2.2 Transponder Mounting – All Events - The transponder mounting requirements are: - -(a) Orientation – The transponder must be mounted vertically and orientated so the number -can be read “right-side up”. -(b) Location – The transponder must be mounted on the driver’s right side of the car forward -of the front roll hoop. The transponder must be no more than 60 cm above the track. -(c) Obstructions – There must be an open, unobstructed line between the antenna on the -bottom of the transponder and the ground. Metal and carbon fiber may interrupt the -transponder signal. The signal will normally transmit through fiberglass and plastic. If the -signal will be obstructed by metal or carbon fiber, a 10.2 cm diameter opening can be cut, -the transponder mounted flush with the opening, and the opening covered with a material -transparent to the signal. -(d) Protection – Mount the transponder where it will be protected from obstacles. - -7 - Transponders are usually available for loan at the competition. Please ask the organizers well in advance to -confirm availability. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE T3 VEHICLE IDENTIFICATION -1T3.1 Car Number -1T3.1.1 Each car will be assigned a number at the time of its entry into a competition. -1T3.1.2 Car numbers must appear on the vehicle as follows: -(a) Locations: In three (3) locations: the front and both sides; -(b) Height: At least 15.24 cm high; -(c) Font: Block numbers (i.e. sans-serif characters). Italic, outline, serif, shadow, or cursive -numbers are prohibited. -(d) Stroke Width and Spacing between Numbers: At least 2.0 cm. -(e) Color: Either white numbers on a black background or black numbers on a white -background. No other color combinations will be approved. -(f) Background shape: The number background must be one of the following: round, oval, -square or rectangular. There must be at least 2.5 cm between the edge of the numbers and -the edge of the background. -(g) Clear: The numbers must not be obscured by parts of the car, e.g. wheels, side pods, -exhaust system, etc. -1T3.1.3 While car numbers for teams registered for Formula Hybrid + Electric can be found on the -“Registered Teams” section of the SAE Collegiate Design Series website, please be sure to -check with Formula Hybrid +Electric officials to ensure these numbers are correct. -Comment: Car numbers must be quickly read by course marshals when your car is moving at -speed. Make your numbers easy to see and easy to read. - - -Figure 24 - Example Car Number -1T3.2 School Name -1T3.2.1 Each car must clearly display the school name (or initials – if unique and generally recognized) -in roman characters at least 5 cm high on both sides of the vehicle. The characters must be -placed on a high contrast background in an easily visible location. -1T3.2.2 The school name may also appear in non-roman characters, but the roman character version -must be uppermost on the sides. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T3.3 SAE & IEEE Logos -1T3.3.1 SAE and IEEE logos must be prominently displayed on the front and/or both sides of the -vehicle. Each logo must be at least 7 cm x 20 cm. The organizers will provide the following -decals at the competition: -(a) SAE, 7.6 cm x 20.3 cm in either White or Black. -(b) IEEE, 11.4 cm x 30.5 cm (Blue only). -Actual-size JPEGs may be downloaded from the Formula Hybrid + Electric website. -1T3.4 Technical Inspection Sticker Space -Technical inspection stickers will be placed on the upper nose of the vehicle. Cars must have a -clear and unobstructed area at least 25.4 cm wide x 20.3cm high on the upper front surface of -the nose along the vehicle centerline. -ARTICLE T4 EQUIPMENT REQUIREMENTS -1T4.1 Driver’s Equipment - The equipment specified below must be worn by the driver anytime he or she is in the cockpit -with the engine running or with the tractive system energized. -1T4.2 Helmet -1T4.2.1 A well-fitting, closed face helmet that meets one of the following certifications and is labeled as -such: -(a) Snell K2010, K2015, K2020, M2010, M2015, M2020, SA2010, SAH2010, SA2015, -SA2020, EA2016 -(b) SFI 31.1/2020, SFI 41.1/2020 -(c) FIA 8859-2015, FIA 8860-2004, FIA 8860-2010, FIA 8860-2016, FIA 8860-2018. Open -faced helmets and off-road/motocross helmets (helmets without integrated face shields) are not -approved. -1T4.2.2 All helmets to be used in the competition must be presented during Technical Inspection where -approved helmets will be stickered. The organizer reserves the right to impound all non- -approved helmets until the end of the competition. -1T4.3 Balaclava -A balaclava which covers the driver’s head, hair and neck, made from acceptable fire resistant -material as defined in T14.12, or a full helmet skirt of acceptable fire resistant material. The -balaclava requirement applies to drivers of either gender, with any hair length. -1T4.4 Eye Protection -An impact resistant face shield, made from approved impact resistant materials. The face -shields supplied with approved helmets (See T14.2 above) meet this requirement. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T4.5 Suit - A fire-resistant suit that covers the body from the neck down to the ankles and the wrists. One -(1) piece suits are required. The suit must be in good condition, i.e. it must have no tears or -open seams, or oil stains that could compromise its fire-resistant capability. - The suit must be certified to one of the following standards and be labeled as such: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Table 7 – SFI / FIA Standards Logos -Note: An SFI 3-2A/1 or 3.4/1 (single layer) suit is ONLY allowed WITH fire resistant underwear. - - --FIA 8856-2018 - --SFI 3.4/5 - --FIA Standard 8856-1986 - - --SFI 3-2A/1 but only when used with -fire resistant, e.g. Nomex, underwear -that covers the body from wrist to ankles. --SFI 3-2A/5 (or higher) - -- FIA Standard 8856-2000 - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - - -1T4.6 Underclothing -All drivers should wear fire resistant underwear (long pants and long sleeve top) under their -approved driving suit. This fire resistant underwear must be made from acceptable fire resistant -material and cover the driver’s body completely from the neck down to the ankles and wrists. -Note: If drivers do not wear fire resistant long underwear, they should wear cotton underwear -under the approved driving suit. Tee-shirts, or other undergarments made from Nylon or any -other synthetic materials may melt when exposed to high heat. -1T4.7 Socks -Socks made from an accepted fire resistant material, e.g. Nomex, which cover the bare skin -between the driver’s suit and the boots or shoes. Socks made from wool or cotton are -acceptable. Socks of nylon or polyester are not acceptable. -1T4.8 Shoes -Shoes of durable fire resistant material and which are in good condition (no holes worn in the -soles or uppers). -1T4.9 Gloves -Fire resistant gloves made from made from acceptable fire resistant material as defined in -T14.12.Gloves of all leather construction or fire resistant gloves constructed using -leather palms with no insulating fire resisting material underneath are not acceptable. -1T4.10 Arm Restraints -Arm restraints certified and labeled to SF1 standard 3.3, or a commercially manufactured -equivalent, must be worn such that the driver can release them and exit the vehicle unassisted -regardless of the vehicle’s position. -1T4.11 Driver’s Equipment Condition - All driving apparel covered by ARTICLE T14 must be in good condition. Specifically, -driving apparel must not have any tears, rips, open seams, areas of significant wear or abrasion -or stains which might compromise fire resistant performance. -1T4.12 Fire Resistant Material - For the purpose of this section some, but not all, of the approved fire resistant materials are: -Carbon X, Indura, Nomex, Polybenzimidazole (commonly known as PBI) and Proban. -1T4.13 Synthetic Material – Prohibited - T-shirts, socks or other undergarments (not to be confused with FR underwear) made from -nylon or any other synthetic material which will melt when exposed to high heat are prohibited. -ARTICLE T5 OTHER REQUIRED EQUIPMENT -1T5.1 Fire Extinguishers -1T5.1.1 Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire -extinguishers. -1T5.1.2 Extinguishers of larger capacity (higher numerical ratings) are acceptable. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1T5.1.3 All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that -shows “FULL”. -1T5.2 Special Requirements -Teams must identify any fire hazards specific to their vehicle’s components and if fire -extinguisher/fire extinguisher material other than those required in section T15.1 are needed to -suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb or -equivalent) of the required type must be procured and accompany the car at all times. -As recommendations vary, teams are advised to consult the rules committee before purchasing -expensive extinguishers that may not be necessary. -1T5.3 Chemical Spill Absorbent -Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This -material must be presented at technical inspection. -1T5.4 Insulated Gloves -Insulated gloves are required, rated for at least the voltage in the TSV system, with protective -over-gloves. -1T5.4.1 Electrical gloves require testing by a qualified company and must have a test date printed on -them that is within 14 months of the competition. -1T5.5 Safety Glasses -Safety glasses must be worn as specified in section D10.7 -1T5.6 MSDS Sheets -Materials Safety Data Sheets (MSDS) for the accumulator devices are required and must be -included in the ESF. -1T5.7 Additional -Any special safety equipment called for in the MSDS, for example correct gloves -recommended for handling any electrolyte material in the accumulator. -ARTICLE T6 ON-BOARD CAMERAS -1T6.1 Mounts -The mounts for video/photographic cameras must be of a safe and secure design. -1T6.1.1 All camera installations must be approved at Technical Inspection. -1T6.1.2 Helmet mounted cameras are prohibited. -1T6.1.3 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a -minimum of 2 points on different sides of the camera body. Plastic or elastic attachments are -not permitted. If a tether is used to restrain the camera, the tether length must be limited so -that the camera cannot contact the driver. - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1PART IC - INTERNAL COMBUSTION ENGINE -ARTICLE IC1 INTERNAL COMBUSTION ENGINE -IC1.1 Engine Limitation -Engines must be Internal Combustion, four-stroke piston engines, with a maximum -displacement of 250cc for spark ignition engines and 310cc for diesel engines and be either: -(a) Modified or custom fabricated. (See section IC1.2) -OR -(b) Stock – defined as: -(i) Any single cylinder engine, -OR -(ii) Any twin cylinder engine from a motorcycle approved for licensed use on public -roads, -OR -(iii) Any commercially available “industrial” IC engine meeting the above displacement -limits. -Note: If you are not sure whether or not your engine qualifies as “stock”, contact the -organizers. -IC1.2 Permitted modifications to a stock engine are: -(a) Modification or removal of the clutch, primary drive and/or transmission. -(b) Changes to fuel mixture, ignition or cam timings. -(c) Replacement of camshaft. (Any lobe profile may be used.) -(d) Replacement or modification of any exhaust system component. -(e) Replacement or modification of any intake system component; i.e., components upstream -of (but NOT including) the cylinder head. The addition of forced induction will move the -engine into the modified category. -(f) Modifications to the engine casings. (This does not include the cylinders or cylinder head). -(g) Replacement or modification of crankshafts for the purpose of simplifying mechanical -connections. (Stroke must remain stock.) -IC1.3 Engine Inspection -The organizers reserve the right to tear down any number of engines to confirm conformance to -the rules. The initial measurement will be made externally with a measurement accuracy of one -(1) percent. When installed to and coaxially with spark plug hole, the measurement tool has -dimensions of 381 mm long and 30 mm diameter. Teams may choose to design in access space -for this tool above each spark plug hole to reduce time should their vehicle be inspected. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -IC1.4 Starter -Each car must be equipped with an on-board starter or equivalent, and must be able to move -without any outside assistance at any time during the competition. Specifically, push starts are -not permitted. -IC1.4.1 A hybrid may use the forward motion of the vehicle derived from the electric drive to start the -I.C. engine, except that this starting technique may not be used until after the car receives the -“green flag” in any event. -IC1.4.2 A manual starting system operable by the driver while belted in is permissible. -IC1.5 Air Intake System -IC1.5.1 Air Intake System Location -All parts of the engine air and fuel control systems (including the throttle or carburetor, and the -complete air intake system, including the air cleaner and any air boxes) must lie within the -surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25) - - -Figure 25- Surface Envelope -IC1.5.2 Any portion of the air intake system that is less than 350 mm above the ground must be -shielded from side or rear impact collisions by structure built to Rule T3.24 or T3.33 as -applicable. -IC1.5.3 Intake Manifold -If an intake manifold is used, it must be securely attached to the engine crankcase, cylinder, or -cylinder head with brackets and mechanical fasteners. This precludes the use of hose clamps, -plastic ties, or safety wires. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Original equipment rubber parts that bolt or clamp to the cylinder head and to the throttle body -or carburetor are acceptable. -Note: These rubber parts are referred to by various names by the engine manufacturers; e.g., -“insulators” by Honda, “joints” by Yamaha, and “holders” by Kawasaki. -Other than such original equipment parts the use of rubber hose is not considered a structural -attachment. Intake systems with significant mass or cantilever from the cylinder head must be -supported to prevent stress to the intake system. -Supports to the engine must be rigid. -Supports to the frame or chassis must incorporate some isolation to allow for engine movement -and chassis flex. -IC1.5.4 Air boxes and filters -Large air boxes must be securely mounted to the frame or engine and connections between the -air box and throttle must be flexible. Small air cleaners designed for mounting to the carburetor -or throttle body may be cantilevered from the throttle body. -IC1.6 Accelerator and Accelerator Actuation -IC1.6.1 Carburetor/Throttle Body -All spark ignition engines must be equipped with a carburetor or throttle body. The carburetor -or throttle body may be of any size or design. -IC1.6.2 Accelerator Actuation - General -All systems that transmit the driver’s control of the speed of the vehicle, commonly called -“Accelerator systems”, must be designed and constructed as “fail safe” systems, so that the -failure of any one component, be it mechanical, electrical or electronic, will not result in an -uncontrolled acceleration of the vehicle. This applies to both IC engines and to electric motors -that power the vehicle. -The Accelerator control may be actuated mechanically, electrically or electronically, i.e. -electrical Accelerator control (ETC) or “drive-by-wire” is acceptable. -Drive-by-wire controls of the electric motor controller must comply with TS isolation -requirements. See EV5.1.1 -Any Accelerator pedal must have a positive pedal stop incorporated on the Accelerator pedal to -prevent over stressing the Accelerator cable or any part of the actuation system. -IC1.6.3 Mechanical Accelerator Actuation -If mechanical Accelerator actuation is used, the Accelerator cable or rod must have smooth -operation, and must not have the possibility of binding or sticking. -The Accelerator actuation system must use at least two (2) return springs located at the throttle -body, so that the failure of any component of the Accelerator system will not prevent the -Accelerator returning to the closed position. -Note: Springs in Throttle Position Sensors (TPS) are NOT acceptable as return springs. -Accelerator cables must be at least 50 mm from any exhaust system component and out of the -exhaust stream. -Any Accelerator pedal cable must be protected from being bent or kinked by the driver’s foot -when it is operated by the driver or when the driver enters or exits the vehicle. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -If the Accelerator system contains any mechanism that could become jammed, for example a -gear mechanism, then this must be covered to prevent ingress of any debris. -The use of a push-pull type Accelerator cable with an Accelerator pedal that is capable of -forcing the Accelerator closed (e.g. toe strap) is recommended. -Electrical actuation of a mechanical throttle is permissible, provided releasing the Accelerator -pedal will override the electrical system and cause the throttle to close. -IC1.6.4 Electrical Accelerator Actuation -When electrical or electronic throttle actuation is used, the throttle actuation system must be of -a fail-safe design to assure that any single failure in the mechanical or electrical components of -the Accelerator actuation system will result in the engine returning to idle (IC engine) or having -zero torque output (electric motor). -Teams should use commercially available electrical Accelerator actuation systems. -The methodology used to ensure fail-safe operation must be included as a required appendix to -the Design Report. -IC1.7 Intake System Restrictor -IC1.7.1 Non-stock engines (See IC1.1) must be fitted with an air inlet restrictor as listed below. All the -air entering the engine must pass through the restrictor which must be located downstream of -any engine throttling device. -IC1.7.2 The restrictor must be circular with a maximum diameter of: -(a) Gasoline fueled cars – 12.90 mm -IC1.7.3 The restrictor must be located to facilitate measurement during the inspection process. -IC1.7.4 The circular restricting cross section may NOT be movable or flexible in any way, e.g. the -restrictor may not be part of the movable portion of a barrel throttle body. -IC1.7.5 Any device that has the ability to throttle the engine downstream of the restrictor is prohibited. -IC1.7.6 If more than one engine is used, the intake air for all engines must pass through the one -restrictor. -Note: Section IC1.7 applies only to those engines that are not on the approved stock engine list, -or that have been modified beyond the limits specified in IC1.2. -IC1.8 Turbochargers & Superchargers -Turbochargers or superchargers are permitted. The compressor must be located downstream of -the inlet restrictor. The addition of a Turbo or Supercharger will move the engine into the -Modified category. -IC1.9 Fuel Lines -IC1.9.1 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. -IC1.9.2 If rubber fuel line or hose is used, the components over which the hose is clamped must have -annular bulb or barbed fittings to retain the hose. Also, clamps specifically designed for fuel -lines must be used. These clamps have three (3) important features; (See Figure 26) -(a) A full 360 degree (360°) wrap, -(b) a nut and bolt system for tightening, and -(c) rolled edges to prevent the clamp cutting into the hose. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Worm-gear type hose clamps are not approved for use on any fuel line. - -Figure 26 – Hose Clamps -IC1.9.3 Fuel lines must be securely attached to the vehicle and/or engine. -IC1.9.4 All fuel lines must be shielded from possible rotating equipment failure or collision damage. -IC1.10 Fuel Injection System Requirements -IC1.10.1 Fuel Lines – Flexible fuel lines must be either -(a) Metal braided hose with either crimped-on or reusable, threaded fittings, OR -(b) Reinforced rubber hose with some form of abrasion resistant protection with fuel line -clamps per IC1.9.2. -Note: Hose clamps over metal braided hose will not be accepted. -IC1.10.2 Fuel Rail – If used, a fuel rail must be securely attached to the engine cylinder block, cylinder -head, or intake manifold with brackets and mechanical fasteners. This precludes the use of -hose clamps, plastic ties, or safety wire. -IC1.11 Crankcase / Engine lubrication venting -IC1.11.1 Any crankcase or engine lubrication vent lines routed to the intake system must be connected -upstream of the intake system restrictor, if fitted. -IC1.11.2 Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum -devices that connect directly to the exhaust system, are prohibited. -ARTICLE IC2 FUEL AND FUEL SYSTEM -IC2.1 Fuel -IC2.1.1 All fuel at the Formula Hybrid + Electric Competition will be provided by the organizer. -IC2.1.2 During all performance events the cars must be operated with the fuels provided by the -organizer. -IC2.1.3 The fuels provided at the Formula Hybrid + Electric Competition are: -(a) Gasoline (Sunoco Optima) - Note: More information including the fuel energy equivalencies, and a link for the Sunoco fuel -specifications are given in Appendix A - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -IC2.2 Fuel Additives - Prohibited -IC2.2.1 Nothing may be added to the provided fuels. This prohibition includes nitrous oxide or any -other oxidizing agent. -IC2.2.2 No agents other than fuel and air may be induced into the combustion chamber. Non-adherence -to this rule will be reason for disqualification. -IC2.2.3 Officials have the right to inspect the oil. -IC2.3 Fuel Temperature Changes - Prohibited - The temperature of fuel introduced into the fuel system may not be changed with the intent to -improve calculated fuel efficiency. -IC2.4 Fuel Tanks -IC2.4.1 The fuel tank is defined as that part of the fuel containment device that is in contact with the -fuel. It may be made of a rigid material or a flexible material. -IC2.4.2 Fuel tanks made of a rigid material cannot be used to carry structural loads, e.g. from roll -hoops, suspension, engine or gearbox mounts, and must be securely attached to the vehicle -structure with mountings that allow some flexibility such that chassis flex cannot -unintentionally load the fuel tank. -IC2.4.3 Any fuel tank that is made from a flexible material, for example a bladder fuel cell or a bag -tank, must be enclosed within a rigid fuel tank container which is securely attached to the -vehicle structure. Fuel tank containers (containing a bladder fuel cell or bag tank) may be load -carrying. -IC2.4.4 Any size fuel tank may be used. -IC2.4.5 The fuel system must have a drain fitting for emptying the fuel tank. The drain must be at the -lowest point of the tank and be easily accessible. It must not protrude below the lowest plane of -the vehicle frame, and must have provision for safety wiring. -IC2.5 Fuel System Location Requirements -IC2.5.1 All parts of the fuel storage and supply system must lie within the surface defined by the top of -the roll bar and the outside edge of the four tires. (See Figure 25). -IC2.5.2 All fuel tanks must be shielded from side or rear impact collisions. Any fuel tank which is -located outside the Side Impact Structure required by T3.24 or T3.33 must be shielded by -structure built to T3.24 or T3.33. -IC2.5.3 A firewall must separate the fuel tank from the driver, per T4.5. -IC2.6 Fuel Tank Filler Neck +. +Note 1: Except for their name, AMB TranX260 transponders are identical to MYLAPS +Car/Bike Transponders and comply with this rule. If you own a functional AMB TranX260 it +does not need to be replaced. +Note 2: It is the responsibility of the team to ensure that electrical interference from their +vehicle does not stop the transponder from functioning correctly +1T2.2 Transponder Mounting – All Events +The transponder mounting requirements are: +(a) Orientation – The transponder must be mounted vertically and orientated so the number +can be read “right-side up”. +(b) Location – The transponder must be mounted on the driver’s right side of the car forward +of the front roll hoop. The transponder must be no more than 60 cm above the track. +(c) Obstructions – There must be an open, unobstructed line between the antenna on the +bottom of the transponder and the ground. Metal and carbon fiber may interrupt the +transponder signal. The signal will normally transmit through fiberglass and plastic. If the +signal will be obstructed by metal or carbon fiber, a 10.2 cm diameter opening can be cut, +the transponder mounted flush with the opening, and the opening covered with a material +transparent to the signal. +(d) Protection – Mount the transponder where it will be protected from obstacles. +7 +Transponders are usually available for loan at the competition. Please ask the organizers well in advance to +confirm availability. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE T3 VEHICLE IDENTIFICATION +1T3.1 Car Number +1T3.1.1 Each car will be assigned a number at the time of its entry into a competition. +1T3.1.2 Car numbers must appear on the vehicle as follows: +(a) Locations: In three (3) locations: the front and both sides; +(b) Height: At least 15.24 cm high; +(c) Font: Block numbers (i.e. sans-serif characters). Italic, outline, serif, shadow, or cursive +numbers are prohibited. +(d) Stroke Width and Spacing between Numbers: At least 2.0 cm. +(e) Color: Either white numbers on a black background or black numbers on a white +background. No other color combinations will be approved. +(f) Background shape: The number background must be one of the following: round, oval, +square or rectangular. There must be at least 2.5 cm between the edge of the numbers and +the edge of the background. +(g) Clear: The numbers must not be obscured by parts of the car, e.g. wheels, side pods, +exhaust system, etc. +1T3.1.3 While car numbers for teams registered for Formula Hybrid + Electric can be found on the +“Registered Teams” section of the SAE Collegiate Design Series website, please be sure to +check with Formula Hybrid +Electric officials to ensure these numbers are correct. +Comment: Car numbers must be quickly read by course marshals when your car is moving at +speed. Make your numbers easy to see and easy to read. +Figure 24 - Example Car Number +1T3.2 School Name +1T3.2.1 Each car must clearly display the school name (or initials – if unique and generally recognized) +in roman characters at least 5 cm high on both sides of the vehicle. The characters must be +placed on a high contrast background in an easily visible location. +1T3.2.2 The school name may also appear in non-roman characters, but the roman character version +must be uppermost on the sides. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T3.3 SAE & IEEE Logos +1T3.3.1 SAE and IEEE logos must be prominently displayed on the front and/or both sides of the +vehicle. Each logo must be at least 7 cm x 20 cm. The organizers will provide the following +decals at the competition: +(a) SAE, 7.6 cm x 20.3 cm in either White or Black. +(b) IEEE, 11.4 cm x 30.5 cm (Blue only). +Actual-size JPEGs may be downloaded from the Formula Hybrid + Electric website. +1T3.4 Technical Inspection Sticker Space +Technical inspection stickers will be placed on the upper nose of the vehicle. Cars must have a +clear and unobstructed area at least 25.4 cm wide x 20.3cm high on the upper front surface of +the nose along the vehicle centerline. +ARTICLE T4 EQUIPMENT REQUIREMENTS +1T4.1 Driver’s Equipment +The equipment specified below must be worn by the driver anytime he or she is in the cockpit +with the engine running or with the tractive system energized. +1T4.2 Helmet +1T4.2.1 A well-fitting, closed face helmet that meets one of the following certifications and is labeled as +such: +(a) Snell K2010, K2015, K2020, M2010, M2015, M2020, SA2010, SAH2010, SA2015, +SA2020, EA2016 +(b) SFI 31.1/2020, SFI 41.1/2020 +(c) FIA 8859-2015, FIA 8860-2004, FIA 8860-2010, FIA 8860-2016, FIA 8860-2018. Open +faced helmets and off-road/motocross helmets (helmets without integrated face shields) are not +approved. +1T4.2.2 All helmets to be used in the competition must be presented during Technical Inspection where +approved helmets will be stickered. The organizer reserves the right to impound all non- +approved helmets until the end of the competition. +1T4.3 Balaclava +A balaclava which covers the driver’s head, hair and neck, made from acceptable fire resistant +material as defined in T14.12, or a full helmet skirt of acceptable fire resistant material. The +balaclava requirement applies to drivers of either gender, with any hair length. +1T4.4 Eye Protection +An impact resistant face shield, made from approved impact resistant materials. The face +shields supplied with approved helmets (See T14.2 above) meet this requirement. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T4.5 Suit +A fire-resistant suit that covers the body from the neck down to the ankles and the wrists. One +(1) piece suits are required. The suit must be in good condition, i.e. it must have no tears or +open seams, or oil stains that could compromise its fire-resistant capability. +The suit must be certified to one of the following standards and be labeled as such: +Table 7 – SFI / FIA Standards Logos +Note: An SFI 3-2A/1 or 3.4/1 (single layer) suit is ONLY allowed WITH fire resistant underwear. +-FIA 8856-2018 +-SFI 3.4/5 +-FIA Standard 8856-1986 +-SFI 3-2A/1 but only when used with +fire resistant, e.g. Nomex, underwear +that covers the body from wrist to ankles. +-SFI 3-2A/5 (or higher) +- FIA Standard 8856-2000 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T4.6 Underclothing +All drivers should wear fire resistant underwear (long pants and long sleeve top) under their +approved driving suit. This fire resistant underwear must be made from acceptable fire resistant +material and cover the driver’s body completely from the neck down to the ankles and wrists. +Note: If drivers do not wear fire resistant long underwear, they should wear cotton underwear +under the approved driving suit. Tee-shirts, or other undergarments made from Nylon or any +other synthetic materials may melt when exposed to high heat. +1T4.7 Socks +Socks made from an accepted fire resistant material, e.g. Nomex, which cover the bare skin +between the driver’s suit and the boots or shoes. Socks made from wool or cotton are +acceptable. Socks of nylon or polyester are not acceptable. +1T4.8 Shoes +Shoes of durable fire resistant material and which are in good condition (no holes worn in the +soles or uppers). +1T4.9 Gloves +Fire resistant gloves made from made from acceptable fire resistant material as defined in +T14.12.Gloves of all leather construction or fire resistant gloves constructed using +leather palms with no insulating fire resisting material underneath are not acceptable. +1T4.10 Arm Restraints +Arm restraints certified and labeled to SF1 standard 3.3, or a commercially manufactured +equivalent, must be worn such that the driver can release them and exit the vehicle unassisted +regardless of the vehicle’s position. +1T4.11 Driver’s Equipment Condition +All driving apparel covered by ARTICLE T14 must be in good condition. Specifically, +driving apparel must not have any tears, rips, open seams, areas of significant wear or abrasion +or stains which might compromise fire resistant performance. +1T4.12 Fire Resistant Material +For the purpose of this section some, but not all, of the approved fire resistant materials are: +Carbon X, Indura, Nomex, Polybenzimidazole (commonly known as PBI) and Proban. +1T4.13 Synthetic Material – Prohibited +T-shirts, socks or other undergarments (not to be confused with FR underwear) made from +nylon or any other synthetic material which will melt when exposed to high heat are prohibited. +ARTICLE T5 OTHER REQUIRED EQUIPMENT +1T5.1 Fire Extinguishers +1T5.1.1 Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire +extinguishers. +1T5.1.2 Extinguishers of larger capacity (higher numerical ratings) are acceptable. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1T5.1.3 All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that +shows “FULL”. +1T5.2 Special Requirements +Teams must identify any fire hazards specific to their vehicle’s components and if fire +extinguisher/fire extinguisher material other than those required in section T15.1 are needed to +suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb or +equivalent) of the required type must be procured and accompany the car at all times. +As recommendations vary, teams are advised to consult the rules committee before purchasing +expensive extinguishers that may not be necessary. +1T5.3 Chemical Spill Absorbent +Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This +material must be presented at technical inspection. +1T5.4 Insulated Gloves +Insulated gloves are required, rated for at least the voltage in the TSV system, with protective +over-gloves. +1T5.4.1 Electrical gloves require testing by a qualified company and must have a test date printed on +them that is within 14 months of the competition. +1T5.5 Safety Glasses +Safety glasses must be worn as specified in section D10.7 +1T5.6 MSDS Sheets +Materials Safety Data Sheets (MSDS) for the accumulator devices are required and must be +included in the ESF. +1T5.7 Additional +Any special safety equipment called for in the MSDS, for example correct gloves +recommended for handling any electrolyte material in the accumulator. +ARTICLE T6 ON-BOARD CAMERAS +1T6.1 Mounts +The mounts for video/photographic cameras must be of a safe and secure design. +1T6.1.1 All camera installations must be approved at Technical Inspection. +1T6.1.2 Helmet mounted cameras are prohibited. +1T6.1.3 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a +minimum of 2 points on different sides of the camera body. Plastic or elastic attachments are +not permitted. If a tether is used to restrain the camera, the tether length must be limited so +that the camera cannot contact the driver. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1PART IC - INTERNAL COMBUSTION ENGINE +ARTICLE IC1 INTERNAL COMBUSTION ENGINE +IC1.1 Engine Limitation +Engines must be Internal Combustion, four-stroke piston engines, with a maximum +displacement of 250cc for spark ignition engines and 310cc for diesel engines and be either: +(a) Modified or custom fabricated. (See section IC1.2) +OR +(b) Stock – defined as: +(i) Any single cylinder engine, +OR +(ii) Any twin cylinder engine from a motorcycle approved for licensed use on public +roads, +OR +(iii) Any commercially available “industrial” IC engine meeting the above displacement +limits. +Note: If you are not sure whether or not your engine qualifies as “stock”, contact the +organizers. +IC1.2 Permitted modifications to a stock engine are: +(a) Modification or removal of the clutch, primary drive and/or transmission. +(b) Changes to fuel mixture, ignition or cam timings. +(c) Replacement of camshaft. (Any lobe profile may be used.) +(d) Replacement or modification of any exhaust system component. +(e) Replacement or modification of any intake system component; i.e., components upstream +of (but NOT including) the cylinder head. The addition of forced induction will move the +engine into the modified category. +(f) Modifications to the engine casings. (This does not include the cylinders or cylinder head). +(g) Replacement or modification of crankshafts for the purpose of simplifying mechanical +connections. (Stroke must remain stock.) +IC1.3 Engine Inspection +The organizers reserve the right to tear down any number of engines to confirm conformance to +the rules. The initial measurement will be made externally with a measurement accuracy of one +(1) percent. When installed to and coaxially with spark plug hole, the measurement tool has +dimensions of 381 mm long and 30 mm diameter. Teams may choose to design in access space +for this tool above each spark plug hole to reduce time should their vehicle be inspected. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +IC1.4 Starter +Each car must be equipped with an on-board starter or equivalent, and must be able to move +without any outside assistance at any time during the competition. Specifically, push starts are +not permitted. +IC1.4.1 A hybrid may use the forward motion of the vehicle derived from the electric drive to start the +I.C. engine, except that this starting technique may not be used until after the car receives the +“green flag” in any event. +IC1.4.2 A manual starting system operable by the driver while belted in is permissible. +IC1.5 Air Intake System +IC1.5.1 Air Intake System Location +All parts of the engine air and fuel control systems (including the throttle or carburetor, and the +complete air intake system, including the air cleaner and any air boxes) must lie within the +surface defined by the top of the roll bar and the outside edge of the four tires. (See Figure 25) +Figure 25- Surface Envelope +IC1.5.2 Any portion of the air intake system that is less than 350 mm above the ground must be +shielded from side or rear impact collisions by structure built to Rule T3.24 or T3.33 as +applicable. +IC1.5.3 Intake Manifold +If an intake manifold is used, it must be securely attached to the engine crankcase, cylinder, or +cylinder head with brackets and mechanical fasteners. This precludes the use of hose clamps, +plastic ties, or safety wires. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Original equipment rubber parts that bolt or clamp to the cylinder head and to the throttle body +or carburetor are acceptable. +Note: These rubber parts are referred to by various names by the engine manufacturers; e.g., +“insulators” by Honda, “joints” by Yamaha, and “holders” by Kawasaki. +Other than such original equipment parts the use of rubber hose is not considered a structural +attachment. Intake systems with significant mass or cantilever from the cylinder head must be +supported to prevent stress to the intake system. +Supports to the engine must be rigid. +Supports to the frame or chassis must incorporate some isolation to allow for engine movement +and chassis flex. +IC1.5.4 Air boxes and filters +Large air boxes must be securely mounted to the frame or engine and connections between the +air box and throttle must be flexible. Small air cleaners designed for mounting to the carburetor +or throttle body may be cantilevered from the throttle body. +IC1.6 Accelerator and Accelerator Actuation +IC1.6.1 Carburetor/Throttle Body +All spark ignition engines must be equipped with a carburetor or throttle body. The carburetor +or throttle body may be of any size or design. +IC1.6.2 Accelerator Actuation - General +All systems that transmit the driver’s control of the speed of the vehicle, commonly called +“Accelerator systems”, must be designed and constructed as “fail safe” systems, so that the +failure of any one component, be it mechanical, electrical or electronic, will not result in an +uncontrolled acceleration of the vehicle. This applies to both IC engines and to electric motors +that power the vehicle. +The Accelerator control may be actuated mechanically, electrically or electronically, i.e. +electrical Accelerator control (ETC) or “drive-by-wire” is acceptable. +Drive-by-wire controls of the electric motor controller must comply with TS isolation +requirements. See EV5.1.1 +Any Accelerator pedal must have a positive pedal stop incorporated on the Accelerator pedal to +prevent over stressing the Accelerator cable or any part of the actuation system. +IC1.6.3 Mechanical Accelerator Actuation +If mechanical Accelerator actuation is used, the Accelerator cable or rod must have smooth +operation, and must not have the possibility of binding or sticking. +The Accelerator actuation system must use at least two (2) return springs located at the throttle +body, so that the failure of any component of the Accelerator system will not prevent the +Accelerator returning to the closed position. +Note: Springs in Throttle Position Sensors (TPS) are NOT acceptable as return springs. +Accelerator cables must be at least 50 mm from any exhaust system component and out of the +exhaust stream. +Any Accelerator pedal cable must be protected from being bent or kinked by the driver’s foot +when it is operated by the driver or when the driver enters or exits the vehicle. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +If the Accelerator system contains any mechanism that could become jammed, for example a +gear mechanism, then this must be covered to prevent ingress of any debris. +The use of a push-pull type Accelerator cable with an Accelerator pedal that is capable of +forcing the Accelerator closed (e.g. toe strap) is recommended. +Electrical actuation of a mechanical throttle is permissible, provided releasing the Accelerator +pedal will override the electrical system and cause the throttle to close. +IC1.6.4 Electrical Accelerator Actuation +When electrical or electronic throttle actuation is used, the throttle actuation system must be of +a fail-safe design to assure that any single failure in the mechanical or electrical components of +the Accelerator actuation system will result in the engine returning to idle (IC engine) or having +zero torque output (electric motor). +Teams should use commercially available electrical Accelerator actuation systems. +The methodology used to ensure fail-safe operation must be included as a required appendix to +the Design Report. +IC1.7 Intake System Restrictor +IC1.7.1 Non-stock engines (See IC1.1) must be fitted with an air inlet restrictor as listed below. All the +air entering the engine must pass through the restrictor which must be located downstream of +any engine throttling device. +IC1.7.2 The restrictor must be circular with a maximum diameter of: +(a) Gasoline fueled cars – 12.90 mm +IC1.7.3 The restrictor must be located to facilitate measurement during the inspection process. +IC1.7.4 The circular restricting cross section may NOT be movable or flexible in any way, e.g. the +restrictor may not be part of the movable portion of a barrel throttle body. +IC1.7.5 Any device that has the ability to throttle the engine downstream of the restrictor is prohibited. +IC1.7.6 If more than one engine is used, the intake air for all engines must pass through the one +restrictor. +Note: Section IC1.7 applies only to those engines that are not on the approved stock engine list, +or that have been modified beyond the limits specified in IC1.2. +IC1.8 Turbochargers & Superchargers +Turbochargers or superchargers are permitted. The compressor must be located downstream of +the inlet restrictor. The addition of a Turbo or Supercharger will move the engine into the +Modified category. +IC1.9 Fuel Lines +IC1.9.1 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. +IC1.9.2 If rubber fuel line or hose is used, the components over which the hose is clamped must have +annular bulb or barbed fittings to retain the hose. Also, clamps specifically designed for fuel +lines must be used. These clamps have three (3) important features; (See Figure 26) +(a) A full 360 degree (360°) wrap, +(b) a nut and bolt system for tightening, and +(c) rolled edges to prevent the clamp cutting into the hose. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Worm-gear type hose clamps are not approved for use on any fuel line. +Figure 26 – Hose Clamps +IC1.9.3 Fuel lines must be securely attached to the vehicle and/or engine. +IC1.9.4 All fuel lines must be shielded from possible rotating equipment failure or collision damage. +IC1.10 Fuel Injection System Requirements +IC1.10.1 Fuel Lines – Flexible fuel lines must be either +(a) Metal braided hose with either crimped-on or reusable, threaded fittings, OR +(b) Reinforced rubber hose with some form of abrasion resistant protection with fuel line +clamps per IC1.9.2. +Note: Hose clamps over metal braided hose will not be accepted. +IC1.10.2 Fuel Rail – If used, a fuel rail must be securely attached to the engine cylinder block, cylinder +head, or intake manifold with brackets and mechanical fasteners. This precludes the use of +hose clamps, plastic ties, or safety wire. +IC1.11 Crankcase / Engine lubrication venting +IC1.11.1 Any crankcase or engine lubrication vent lines routed to the intake system must be connected +upstream of the intake system restrictor, if fitted. +IC1.11.2 Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum +devices that connect directly to the exhaust system, are prohibited. +ARTICLE IC2 FUEL AND FUEL SYSTEM +IC2.1 Fuel +IC2.1.1 All fuel at the Formula Hybrid + Electric Competition will be provided by the organizer. +IC2.1.2 During all performance events the cars must be operated with the fuels provided by the +organizer. +IC2.1.3 The fuels provided at the Formula Hybrid + Electric Competition are: +(a) Gasoline (Sunoco Optima) +Note: More information including the fuel energy equivalencies, and a link for the Sunoco fuel +specifications are given in Appendix A + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +IC2.2 Fuel Additives - Prohibited +IC2.2.1 Nothing may be added to the provided fuels. This prohibition includes nitrous oxide or any +other oxidizing agent. +IC2.2.2 No agents other than fuel and air may be induced into the combustion chamber. Non-adherence +to this rule will be reason for disqualification. +IC2.2.3 Officials have the right to inspect the oil. +IC2.3 Fuel Temperature Changes - Prohibited +The temperature of fuel introduced into the fuel system may not be changed with the intent to +improve calculated fuel efficiency. +IC2.4 Fuel Tanks +IC2.4.1 The fuel tank is defined as that part of the fuel containment device that is in contact with the +fuel. It may be made of a rigid material or a flexible material. +IC2.4.2 Fuel tanks made of a rigid material cannot be used to carry structural loads, e.g. from roll +hoops, suspension, engine or gearbox mounts, and must be securely attached to the vehicle +structure with mountings that allow some flexibility such that chassis flex cannot +unintentionally load the fuel tank. +IC2.4.3 Any fuel tank that is made from a flexible material, for example a bladder fuel cell or a bag +tank, must be enclosed within a rigid fuel tank container which is securely attached to the +vehicle structure. Fuel tank containers (containing a bladder fuel cell or bag tank) may be load +carrying. +IC2.4.4 Any size fuel tank may be used. +IC2.4.5 The fuel system must have a drain fitting for emptying the fuel tank. The drain must be at the +lowest point of the tank and be easily accessible. It must not protrude below the lowest plane of +the vehicle frame, and must have provision for safety wiring. +IC2.5 Fuel System Location Requirements +IC2.5.1 All parts of the fuel storage and supply system must lie within the surface defined by the top of +the roll bar and the outside edge of the four tires. (See Figure 25). +IC2.5.2 All fuel tanks must be shielded from side or rear impact collisions. Any fuel tank which is +located outside the Side Impact Structure required by T3.24 or T3.33 must be shielded by +structure built to T3.24 or T3.33. +IC2.5.3 A firewall must separate the fuel tank from the driver, per T4.5. +IC2.6 Fuel Tank Filler Neck IC2.6.1 All fuel tanks must have a filler neck 8 -: -(a) With a minimum inside diameter of 38 mm -(b) That is vertical (with a horizontal filler cap) or angled at no more than forty-five degrees -(45º) from the vertical. -IC2.6.2 If a sight tube is fitted, it may not run below the top surface of the fuel tank. - - -8 - Some flush fillers may be approved by contacting the Formula Hybrid + Electric rules committee. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 27 - Filler Neck -IC2.7 Tank Filling Requirement -IC2.7.1 The tank must be capable of being filled to capacity without manipulating the tank or vehicle in -any way (shaking vehicle, etc.). -IC2.7.2 The fuel system must be designed such that the spillage during refueling cannot contact the -driver position, exhaust system, hot engine parts, or the ignition system. -IC2.7.3 Belly pans must be vented to prevent accumulation of fuel. -IC2.8 Venting Systems -IC2.8.1 The fuel tank and carburetor venting systems must be designed such that fuel cannot spill -during hard cornering or acceleration. This is a concern since motorcycle carburetors normally -are not designed for lateral accelerations. -IC2.8.2 All fuel vent lines must be equipped with a check valve to prevent fuel leakage when the tank is -inverted. All fuel vent lines must exit outside the bodywork. -ARTICLE IC3 EXHAUST SYSTEM AND NOISE CONTROL -IC3.1 Exhaust System General -IC3.1.1 Exhaust Outlet -The exhaust must be routed so that the driver is not subjected to fumes at any speed considering -the draft of the car. -IC3.1.2 The exhaust outlet(s) must not extend more than 45 cm behind the centerline of the rear wheels, -and must be no more than 60 cm above the ground. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -IC3.1.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in -front of the main roll hoop must be shielded to prevent contact by persons approaching the car -or a driver exiting the car. -IC3.1.4 The application of fibrous material, e.g. “header wrap”, to the outside of an exhaust manifold or -exhaust system is prohibited. -IC3.2 Noise Measuring Procedure +: +(a) With a minimum inside diameter of 38 mm +(b) That is vertical (with a horizontal filler cap) or angled at no more than forty-five degrees +(45º) from the vertical. +IC2.6.2 If a sight tube is fitted, it may not run below the top surface of the fuel tank. +8 +Some flush fillers may be approved by contacting the Formula Hybrid + Electric rules committee. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 27 - Filler Neck +IC2.7 Tank Filling Requirement +IC2.7.1 The tank must be capable of being filled to capacity without manipulating the tank or vehicle in +any way (shaking vehicle, etc.). +IC2.7.2 The fuel system must be designed such that the spillage during refueling cannot contact the +driver position, exhaust system, hot engine parts, or the ignition system. +IC2.7.3 Belly pans must be vented to prevent accumulation of fuel. +IC2.8 Venting Systems +IC2.8.1 The fuel tank and carburetor venting systems must be designed such that fuel cannot spill +during hard cornering or acceleration. This is a concern since motorcycle carburetors normally +are not designed for lateral accelerations. +IC2.8.2 All fuel vent lines must be equipped with a check valve to prevent fuel leakage when the tank is +inverted. All fuel vent lines must exit outside the bodywork. +ARTICLE IC3 EXHAUST SYSTEM AND NOISE CONTROL +IC3.1 Exhaust System General +IC3.1.1 Exhaust Outlet +The exhaust must be routed so that the driver is not subjected to fumes at any speed considering +the draft of the car. +IC3.1.2 The exhaust outlet(s) must not extend more than 45 cm behind the centerline of the rear wheels, +and must be no more than 60 cm above the ground. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +IC3.1.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in +front of the main roll hoop must be shielded to prevent contact by persons approaching the car +or a driver exiting the car. +IC3.1.4 The application of fibrous material, e.g. “header wrap”, to the outside of an exhaust manifold or +exhaust system is prohibited. +IC3.2 Noise Measuring Procedure IC3.2.1 The sound level will be measured during a static test. Measurements will be made with a free- -field microphone placed free from obstructions at the exhaust outlet level, 0.5 m from the end -of the exhaust outlet, at an angle of forty-five degrees (45°) with the outlet in the horizontal -plane. The test will be run with the gearbox in neutral at the engine speed defined below. -Where more than one exhaust outlet is present, the test will be repeated for each exhaust and -the highest reading will be used. -Vehicles that do not have manual throttle control must provide some means for running the -engine at the test RPM. -IC3.2.2 The car must be compliant at all engine speeds up to the test speed defined below. -IC3.2.3 If the exhaust has any form of movable tuning or throttling device or system, it must be -compliant with the device or system in all positions. The position of the device must be visible -to the officials for the noise test and must be manually operable by the officials during the noise -test. -IC3.2.4 Test Speeds -The test speed for a given engine will be the engine speed that corresponds to an average piston -speed of 914.4 m/min for automotive or motorcycle engines, and 731.5 m/min for Diesels and -“Industrial” engines. The calculated speed will be rounded to the nearest 500 rpm. The test -speeds for typical engines will be published by the organizers. -IC3.2.5 An “industrial engine” is defined as an engine which, according to the manufacturers’ -specifications and without the required restrictor, is not capable of producing more than 5 hp -per 100cc. To have an engine classified as “an industrial engine”, approval must be obtained -from organizers prior to the Competition. -IC3.2.6 Vehicles not equipped with engine tachometers must provide some external means for -measuring RPM, such as a hand-held meter or lap top computer. -Note: Teams that do not provide the means to measure engine speed will not pass the noise test, -will not receive the sticker and hence will not be eligible to compete in any dynamic event. -IC3.2.7 Engines with mechanical, closed loop speed control will be tested at their maximum (governed) -speed. -IC3.3 Maximum Sound Level - The maximum permitted sound level is 110 dB A, fast weighting. -IC3.4 Noise Level Re-testing - At the option of the officials, noise can be measured at any time during the competition. If a car +field microphone placed free from obstructions at the exhaust outlet level, 0.5 m from the end +of the exhaust outlet, at an angle of forty-five degrees (45°) with the outlet in the horizontal +plane. The test will be run with the gearbox in neutral at the engine speed defined below. +Where more than one exhaust outlet is present, the test will be repeated for each exhaust and +the highest reading will be used. +Vehicles that do not have manual throttle control must provide some means for running the +engine at the test RPM. +IC3.2.2 The car must be compliant at all engine speeds up to the test speed defined below. +IC3.2.3 If the exhaust has any form of movable tuning or throttling device or system, it must be +compliant with the device or system in all positions. The position of the device must be visible +to the officials for the noise test and must be manually operable by the officials during the noise +test. +IC3.2.4 Test Speeds +The test speed for a given engine will be the engine speed that corresponds to an average piston +speed of 914.4 m/min for automotive or motorcycle engines, and 731.5 m/min for Diesels and +“Industrial” engines. The calculated speed will be rounded to the nearest 500 rpm. The test +speeds for typical engines will be published by the organizers. +IC3.2.5 An “industrial engine” is defined as an engine which, according to the manufacturers’ +specifications and without the required restrictor, is not capable of producing more than 5 hp +per 100cc. To have an engine classified as “an industrial engine”, approval must be obtained +from organizers prior to the Competition. +IC3.2.6 Vehicles not equipped with engine tachometers must provide some external means for +measuring RPM, such as a hand-held meter or lap top computer. +Note: Teams that do not provide the means to measure engine speed will not pass the noise test, +will not receive the sticker and hence will not be eligible to compete in any dynamic event. +IC3.2.7 Engines with mechanical, closed loop speed control will be tested at their maximum (governed) +speed. +IC3.3 Maximum Sound Level +The maximum permitted sound level is 110 dB A, fast weighting. +IC3.4 Noise Level Re-testing +At the option of the officials, noise can be measured at any time during the competition. If a car fails the noise test, it will be withheld from the competition until it has been modified and re- -passes the noise test. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -PART EV - ELECTRICAL POWERTRAINS AND SYSTEMS - -ARTICLE EV1 ELECTRICAL SYSTEMS OVERVIEW -EV1.1 Definitions -● Accumulator - Batteries and/or capacitors that store the electrical energy to be used by -the tractive system. This term includes both electrochemical batteries and ultracapacitor -devices. -● Accumulator Container - A housing that encloses the accumulator devices, isolating -them both physically and electrically from the rest of the vehicle. -● Accumulator Segment - A subgroup of accumulator devices that must adhere to the -voltage and energy limits listed in Table 8. -● AMS – Accumulator Monitoring System. EV9.6 -● Barrier – A material, usually rigid, that resists a flow of charge. Most often used to -provide a structural barrier and/or increase the creepage distance between two -conductors. See Figure 36. -● BRB – Big Red Button. EV7.5 and EV7.6 -● Creepage Distance - The shortest distance measured along the surface of the insulating -material between two conductors. See Figure 36. -● Enclosure – An insulated housing containing electrical circuitry. -● GLV Grounded Low Voltage system - Every conductive part that is not part of the -tractive system. (This includes the GLV electrical system, frame, conductive housings, -carbon-fiber components etc.) -● GLVMS – Grounded Low Voltage Master Switch. EV7.3 -● IMD – Insulation Monitoring Device. EV9.4 -● Insulation – A material that physically resists a flow of charge. May be rigid or flexible. -● Isolation - Electrical, or “Galvanic” isolation between two or more electrical conductors -such that if a voltage potential exists between them, no current will flow. -● Region – A design/construction methodology wherein enclosures are divided by -insulating barriers and/or spacing into TS and GLV sections, simplifying the electrical -isolation of the two systems. -● Separation – A physical distance (“spacing”) maintained between conductors. -● SMD – Segment Maintenance Disconnect. EV2.7 -● ESOK – Electrical Systems OK. EV9.3 -● Tractive System (TS) - The drive motors, the accumulators and every part that is -electrically connected to either of those components. -● Tractive System Enclosure - A housing that contains TS components other than -accumulator devices. -● TSAL – Tractive System Active Lamp. EV9.1 -● TS/GLV – The relationship between two electrical conductors; one being part of the TS -system and the other GLV. -● TS/TS – The relationship between two TS conductors. This designation implies that they -are at different potentials and/or polarities. -● TSMP – Tractive System Measuring Points. EV10.3 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -● TSMS – Tractive System Master Switch. EV7.4 - -EV1.2 Maximum System Voltages -EV1.1.1 The maximum permitted operating voltage and energy limits are listed in Table 8 below. - -Formula Hybrid + Electric voltage and energy limits +passes the noise test. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART EV - ELECTRICAL POWERTRAINS AND SYSTEMS +ARTICLE EV1 ELECTRICAL SYSTEMS OVERVIEW +EV1.1 Definitions +● Accumulator - Batteries and/or capacitors that store the electrical energy to be used by +the tractive system. This term includes both electrochemical batteries and ultracapacitor +devices. +● Accumulator Container - A housing that encloses the accumulator devices, isolating +them both physically and electrically from the rest of the vehicle. +● Accumulator Segment - A subgroup of accumulator devices that must adhere to the +voltage and energy limits listed in Table 8. +● AMS – Accumulator Monitoring System. EV9.6 +● Barrier – A material, usually rigid, that resists a flow of charge. Most often used to +provide a structural barrier and/or increase the creepage distance between two +conductors. See Figure 36. +● BRB – Big Red Button. EV7.5 and EV7.6 +● Creepage Distance - The shortest distance measured along the surface of the insulating +material between two conductors. See Figure 36. +● Enclosure – An insulated housing containing electrical circuitry. +● GLV Grounded Low Voltage system - Every conductive part that is not part of the +tractive system. (This includes the GLV electrical system, frame, conductive housings, +carbon-fiber components etc.) +● GLVMS – Grounded Low Voltage Master Switch. EV7.3 +● IMD – Insulation Monitoring Device. EV9.4 +● Insulation – A material that physically resists a flow of charge. May be rigid or flexible. +● Isolation - Electrical, or “Galvanic” isolation between two or more electrical conductors +such that if a voltage potential exists between them, no current will flow. +● Region – A design/construction methodology wherein enclosures are divided by +insulating barriers and/or spacing into TS and GLV sections, simplifying the electrical +isolation of the two systems. +● Separation – A physical distance (“spacing”) maintained between conductors. +● SMD – Segment Maintenance Disconnect. EV2.7 +● ESOK – Electrical Systems OK. EV9.3 +● Tractive System (TS) - The drive motors, the accumulators and every part that is +electrically connected to either of those components. +● Tractive System Enclosure - A housing that contains TS components other than +accumulator devices. +● TSAL – Tractive System Active Lamp. EV9.1 +● TS/GLV – The relationship between two electrical conductors; one being part of the TS +system and the other GLV. +● TS/TS – The relationship between two TS conductors. This designation implies that they +are at different potentials and/or polarities. +● TSMP – Tractive System Measuring Points. EV10.3 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +● TSMS – Tractive System Master Switch. EV7.4 +EV1.2 Maximum System Voltages +EV1.1.1 The maximum permitted operating voltage and energy limits are listed in Table 8 below. +Formula Hybrid + Electric voltage and energy limits Maximum operating voltage for Hybrid 9 - (TSV) -300 V -Maximum operating voltage for EV 600V -Maximum GLV 60 VDC or 50 VAC -Maximum accumulator segment voltage 120 V +300 V +Maximum operating voltage for EV 600V +Maximum GLV 60 VDC or 50 VAC +Maximum accumulator segment voltage 120 V Maximum accumulator segment energy -10 - 6 MJ -Table 8 - Voltage and Energy Limits -EV1.1.2 Maximum operating voltage for hybrid vehicles above those shown in Table 8 may be -permitted via a request for a special allowance to the FH+E rules committee. Teams requesting -such an allowance must demonstrate an appropriate level of electrical engineering knowledge -and experience. -EV1.1.3 Vehicles with a maximum operating voltage over 300V will be required to complete a form -demonstrating electrical safety competency including: -● Written vehicle electrical safety procedures -● A list of electrical safety team members -● Review of team experience and competency in high-voltage electrical -systems -● Acceptance of this document is a requirement for participation in the -event. - -9 - The maximum operating voltage is defined as the maximum measured accumulator voltage during normal -charging conditions. (A maximum capacity accumulator will require at least three segments.) -10 - Segment energy is calculated as Energy (MJ) = (V • Ah • 3600) / 1e +10 +6 MJ +Table 8 - Voltage and Energy Limits +EV1.1.2 Maximum operating voltage for hybrid vehicles above those shown in Table 8 may be +permitted via a request for a special allowance to the FH+E rules committee. Teams requesting +such an allowance must demonstrate an appropriate level of electrical engineering knowledge +and experience. +EV1.1.3 Vehicles with a maximum operating voltage over 300V will be required to complete a form +demonstrating electrical safety competency including: +● Written vehicle electrical safety procedures +● A list of electrical safety team members +● Review of team experience and competency in high-voltage electrical +systems +● Acceptance of this document is a requirement for participation in the +event. +9 +The maximum operating voltage is defined as the maximum measured accumulator voltage during normal +charging conditions. (A maximum capacity accumulator will require at least three segments.) +10 +Segment energy is calculated as Energy (MJ) = (V • Ah • 3600) / 1e 6 -. (Note that this is different from the fuel -allocation energy in Appendix A). - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV2 ENERGY STORAGE (ACCUMULATORS) -EV2.1 Permitted Devices -EV1.1.4 The following accumulator devices are acceptable: batteries (e.g. lithium-ion, NiMH, lead acid -and similar battery chemistries) and capacitors, such as super caps or ultracaps. -The following accumulator devices are not permitted: molten salt batteries, thermal batteries, -fuel cells, mechanical storage such as flywheels or hydraulic accumulators. -EV1.1.5 Accumulator systems using pouch-type lithium-ion cells must be commercially constructed and -specifically approved by the Formula Hybrid + Electric rules committee or must comply with -the requirements detailed in ARTICLE EV11. -EV1.1.6 Manufacturers data sheets showing the rated specification of the accumulator cell(s) which are -used must be provided in the ESF along with their number and configurations. -EV2.2 Accumulator Segments -EV1.1.7 The accumulator segments must be separated so that the segment limits in Table 8 are met by -an electrically insulating barrier meeting the TS/GLV requirements in EV5.4. For all lithium -based cell chemistries, these barriers must also be fire resistant (according to UL94-V0, FAR25 -or equivalent). -EV1.1.8 The barrier must be non-conducting, fire retardant (UL94V0) and provide a complete barrier to -the spread of arc or fire. It must have a fire resistance equal to 1/8" FR4 fiberglass, such as +. (Note that this is different from the fuel +allocation energy in Appendix A). + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV2 ENERGY STORAGE (ACCUMULATORS) +EV2.1 Permitted Devices +EV1.1.4 The following accumulator devices are acceptable: batteries (e.g. lithium-ion, NiMH, lead acid +and similar battery chemistries) and capacitors, such as super caps or ultracaps. +The following accumulator devices are not permitted: molten salt batteries, thermal batteries, +fuel cells, mechanical storage such as flywheels or hydraulic accumulators. +EV1.1.5 Accumulator systems using pouch-type lithium-ion cells must be commercially constructed and +specifically approved by the Formula Hybrid + Electric rules committee or must comply with +the requirements detailed in ARTICLE EV11. +EV1.1.6 Manufacturers data sheets showing the rated specification of the accumulator cell(s) which are +used must be provided in the ESF along with their number and configurations. +EV2.2 Accumulator Segments +EV1.1.7 The accumulator segments must be separated so that the segment limits in Table 8 are met by +an electrically insulating barrier meeting the TS/GLV requirements in EV5.4. For all lithium +based cell chemistries, these barriers must also be fire resistant (according to UL94-V0, FAR25 +or equivalent). +EV1.1.8 The barrier must be non-conducting, fire retardant (UL94V0) and provide a complete barrier to +the spread of arc or fire. It must have a fire resistance equal to 1/8" FR4 fiberglass, such as Garolite G-9 11 -. -EV2.3 Accumulator Containers -EV1.1.9 All devices which store the tractive system energy must be enclosed in (an) accumulator -container(s). -EV1.1.10 Each accumulator container must be labeled with the words “ACCUMULATOR – ALWAYS -ENERGIZED”. (This is in addition to the TSV label requirements in EV3.1.5). -Labels must be 3 inches by 9 inches with bold red lettering on a white background and be -clearly visible on all sides of the accumulator container that could be exposed during operation -and/or maintenance of the car and at least one such label must be visible with the bodywork in +. +EV2.3 Accumulator Containers +EV1.1.9 All devices which store the tractive system energy must be enclosed in (an) accumulator +container(s). +EV1.1.10 Each accumulator container must be labeled with the words “ACCUMULATOR – ALWAYS +ENERGIZED”. (This is in addition to the TSV label requirements in EV3.1.5). +Labels must be 3 inches by 9 inches with bold red lettering on a white background and be +clearly visible on all sides of the accumulator container that could be exposed during operation +and/or maintenance of the car and at least one such label must be visible with the bodywork in place 12 -. -Figure 28 - Accumulator Sticker - -11 - https://www.mcmaster.com/grade-g-9-garolite/ -12 - Self-adhesive stickers are available from the organizers on request. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV1.1.11 If the accumulator container(s) is not easily accessible during Electrical Tech Inspection, -detailed pictures of the internals taken during assembly must be provided. If the pictures do not -adequately depict the accumulator, it may be necessary to disassemble the accumulator to pass -Electrical Tech Inspection. -EV1.1.12 The accumulator container may not contain circuitry or components other than the +. +Figure 28 - Accumulator Sticker +11 +https://www.mcmaster.com/grade-g-9-garolite/ +12 +Self-adhesive stickers are available from the organizers on request. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV1.1.11 If the accumulator container(s) is not easily accessible during Electrical Tech Inspection, +detailed pictures of the internals taken during assembly must be provided. If the pictures do not +adequately depict the accumulator, it may be necessary to disassemble the accumulator to pass +Electrical Tech Inspection. +EV1.1.12 The accumulator container may not contain circuitry or components other than the accumulator itself and necessary supporting circuitry such as the AIRs, AMS, IMD and pre- -charge circuitry. -For example, the accumulator container may not contain the motor controller, TSV or any -GLV circuits other than those required for necessary accumulator functions. -Note 1: The purpose of this requirement is to allow work on other parts of the tractive system -without opening the accumulator container and exposing (always-live) high voltage. - Note 2: It is possible to meet this requirement by dividing a large box into an accumulator -section and a non-accumulator section, with an insulating barrier between them. In this case, it -must be possible to open the non-accumulator section while keeping the accumulator section -closed, meeting the requirements of the “finger probe” test. See: EV3.1.3. -EV1.1.13 If spare accumulators are to be used then they all must be of the same size, weight and type as -those that are replaced. Spare accumulator packs must be presented at Electrical Tech -Inspection. -EV2.4 Accumulator Container –Construction -EV1.1.14 The accumulator container(s) must be built of mechanically robust material. -EV1.1.15 The container material must be fire resistant according to UL94-V0, FAR25 or equivalent. -EV1.1.16 If any part of the accumulator container is made of electrically conductive material, an -insulating barrier meeting the TS/GLV requirements in EV5.4 must be affixed to the inside -wall of the accumulator container such that the barrier provides 100% coverage of all -electrically conductive container components. -EV1.1.17 All conductive penetrations (mounting hardware, hinges, latches etc.) must be covered on the -inside of the accumulator container by an insulating material meeting EV5.4. -EV1.1.18 All conductive surfaces on the outside of the container must have a low-resistance connection -to the GLV system ground. (See EV8.1.1) -EV1.1.19 The cells and/or segments must be appropriately secured against loosening inside the container. -Internal structural elements must be either non-thermoplastic or have a melting temperature of -greater than 150 degrees C. -EV1.1.20 All accumulator devices must be attached to the accumulator container(s) with mechanical -fasteners. -EV1.1.21 Holes in the container are only allowed for the wiring-harness, ventilation, cooling or -fasteners. All wiring harness holes must be sealed according to EV3.3.1. Openings for -ventilation must be designed to prevent water entry from rain or road spray, and to minimize -spread of fire. Completely open side pods are not allowed. -EV1.1.22 Any accumulator that may vent an explosive gas must have a ventilation system or pressure -relief valve to prevent the vented gas from reaching an explosive concentration. -EV1.1.23 Every accumulator container which is completely sealed must have a pressure relief valve to -prevent high-pressure in the container. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV1.1.24 An Accumulator Container that is built to an approved 2023 or 2024 FSAE Structural -Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with -Formula Hybrid + Electric Rules EV2.4.1-EV2.4.7. -EV2.5 Accumulator Container – Mounting -EV1.1.25 All accumulator containers must lie within the surface envelope as defined by IC1.5.1 -EV1.1.26 All accumulator containers must be rigidly mounted to the chassis to prevent the containers -from loosening during the dynamic events or possible accidents. -EV1.1.27 The mounting system for the accumulator container must be designed to withstand forces from -a 40g deceleration in the horizontal plane and 20 g deceleration in the vertical plane. The -calculations/tests proving this must be part of the SES. -EV1.1.28 For tube frame cars, each accumulator container must be attached to the Frame by a minimum -of four (4) 8 mm Metric Grade 8.8 or 5/16 inch Grade 5 bolts. -EV1.1.29 For monocoques: -1. Each accumulator container must be attached to the Frame at a minimum of four (4) -points, each capable of carrying a load in any direction of 400 Newtons x the mass of -the accumulator in kgs, i.e. if the accumulator has a mass of 50 kgs, each attachment -point must be able to carry a load of 20kN in any direction. -2. The laminate, mounting plates, backing plates and inserts must have sufficient shear -area, weld area and strength to carry the specified load in any direction. Data obtained -from the laminate perimeter shear strength test (T3.30) should be used to prove adequate -shear area is provided*** -3. Each attachment point requires a minimum of one (1) 8 mm Metric Grade 8.8 or 5/16 -inch SAE Grade 5 bolt. -4. Each attachment point requires steel backing plates with a minimum thickness of 2 mm. -Alternate materials may be used for backing plates if equivalency is approved. -5. The calculations/tests must be included in the SES. -EV2.5.6 An Accumulator Mounting system that is built to an approved 2023 or 2024 FSAE Structural -Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with -Formula Hybrid + Electric Rules EV2.5, and the FSAE SES may be submitted in place of the -Formula Hybrid + Electric specific SES required by EV2.5.3. -EV2.6 Accumulator Fusing -EV1.1.30 Every accumulator container must contain at least one fuse in the high-current TS path, -located on the same side of the AIRs as the battery or capacitor. These fuses must comply with -EV5.5.4. -EV1.1.31 All details and documentation for fuse, fusible link and/or internal over current protection -must be included in the ESF. - -EV1.1.32 Parallel then Series (nPmS) connections. -If more than one battery cell or capacitor is used to form a set of cells in parallel and those -parallel groups are then combined in series (Figure 29) then either: - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -a) Each cell must be protected with a fuse or fusible link with a current rating less than or -equal to 50% of the calculated short-circuit current (Isc) of the cell or capacitor, where -Isc = Vnom / IR(Ω). (The nominal cell voltage divided by its dc internal resistance).. The -fuse or fusible link must be rated for the full tractive system voltage, unless the special -conditions in EV2.6.5 (Fuse Voltage Ratings) are met. -OR -b) Manufacturer’s documentation must be provided that certifies that it is acceptable to use -this number of single cells in parallel without fusing. This certification must be included -in the ESF. (Commercially assembled packs or modules installed per manufacturer's -instructions may be exempt from this requirement upon application to the rules -committee.) - -Note: if option (a) is used, fuse j in Figure 27 may be omitted if all conductors carrying the -entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for -n fuses in parallel, each with current rating i, the conductors must be sized for a total current +charge circuitry. +For example, the accumulator container may not contain the motor controller, TSV or any +GLV circuits other than those required for necessary accumulator functions. +Note 1: The purpose of this requirement is to allow work on other parts of the tractive system +without opening the accumulator container and exposing (always-live) high voltage. +Note 2: It is possible to meet this requirement by dividing a large box into an accumulator +section and a non-accumulator section, with an insulating barrier between them. In this case, it +must be possible to open the non-accumulator section while keeping the accumulator section +closed, meeting the requirements of the “finger probe” test. See: EV3.1.3. +EV1.1.13 If spare accumulators are to be used then they all must be of the same size, weight and type as +those that are replaced. Spare accumulator packs must be presented at Electrical Tech +Inspection. +EV2.4 Accumulator Container –Construction +EV1.1.14 The accumulator container(s) must be built of mechanically robust material. +EV1.1.15 The container material must be fire resistant according to UL94-V0, FAR25 or equivalent. +EV1.1.16 If any part of the accumulator container is made of electrically conductive material, an +insulating barrier meeting the TS/GLV requirements in EV5.4 must be affixed to the inside +wall of the accumulator container such that the barrier provides 100% coverage of all +electrically conductive container components. +EV1.1.17 All conductive penetrations (mounting hardware, hinges, latches etc.) must be covered on the +inside of the accumulator container by an insulating material meeting EV5.4. +EV1.1.18 All conductive surfaces on the outside of the container must have a low-resistance connection +to the GLV system ground. (See EV8.1.1) +EV1.1.19 The cells and/or segments must be appropriately secured against loosening inside the container. +Internal structural elements must be either non-thermoplastic or have a melting temperature of +greater than 150 degrees C. +EV1.1.20 All accumulator devices must be attached to the accumulator container(s) with mechanical +fasteners. +EV1.1.21 Holes in the container are only allowed for the wiring-harness, ventilation, cooling or +fasteners. All wiring harness holes must be sealed according to EV3.3.1. Openings for +ventilation must be designed to prevent water entry from rain or road spray, and to minimize +spread of fire. Completely open side pods are not allowed. +EV1.1.22 Any accumulator that may vent an explosive gas must have a ventilation system or pressure +relief valve to prevent the vented gas from reaching an explosive concentration. +EV1.1.23 Every accumulator container which is completely sealed must have a pressure relief valve to +prevent high-pressure in the container. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV1.1.24 An Accumulator Container that is built to an approved 2023 or 2024 FSAE Structural +Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with +Formula Hybrid + Electric Rules EV2.4.1-EV2.4.7. +EV2.5 Accumulator Container – Mounting +EV1.1.25 All accumulator containers must lie within the surface envelope as defined by IC1.5.1 +EV1.1.26 All accumulator containers must be rigidly mounted to the chassis to prevent the containers +from loosening during the dynamic events or possible accidents. +EV1.1.27 The mounting system for the accumulator container must be designed to withstand forces from +a 40g deceleration in the horizontal plane and 20 g deceleration in the vertical plane. The +calculations/tests proving this must be part of the SES. +EV1.1.28 For tube frame cars, each accumulator container must be attached to the Frame by a minimum +of four (4) 8 mm Metric Grade 8.8 or 5/16 inch Grade 5 bolts. +EV1.1.29 For monocoques: +1. Each accumulator container must be attached to the Frame at a minimum of four (4) +points, each capable of carrying a load in any direction of 400 Newtons x the mass of +the accumulator in kgs, i.e. if the accumulator has a mass of 50 kgs, each attachment +point must be able to carry a load of 20kN in any direction. +2. The laminate, mounting plates, backing plates and inserts must have sufficient shear +area, weld area and strength to carry the specified load in any direction. Data obtained +from the laminate perimeter shear strength test (T3.30) should be used to prove adequate +shear area is provided*** +3. Each attachment point requires a minimum of one (1) 8 mm Metric Grade 8.8 or 5/16 +inch SAE Grade 5 bolt. +4. Each attachment point requires steel backing plates with a minimum thickness of 2 mm. +Alternate materials may be used for backing plates if equivalency is approved. +5. The calculations/tests must be included in the SES. +EV2.5.6 An Accumulator Mounting system that is built to an approved 2023 or 2024 FSAE Structural +Equivalency EV-HV Enclosure Spreadsheet will be considered to be in compliance with +Formula Hybrid + Electric Rules EV2.5, and the FSAE SES may be submitted in place of the +Formula Hybrid + Electric specific SES required by EV2.5.3. +EV2.6 Accumulator Fusing +EV1.1.30 Every accumulator container must contain at least one fuse in the high-current TS path, +located on the same side of the AIRs as the battery or capacitor. These fuses must comply with +EV5.5.4. +EV1.1.31 All details and documentation for fuse, fusible link and/or internal over current protection +must be included in the ESF. +EV1.1.32 Parallel then Series (nPmS) connections. +If more than one battery cell or capacitor is used to form a set of cells in parallel and those +parallel groups are then combined in series (Figure 29) then either: + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +a) Each cell must be protected with a fuse or fusible link with a current rating less than or +equal to 50% of the calculated short-circuit current (Isc) of the cell or capacitor, where +Isc = Vnom / IR(Ω). (The nominal cell voltage divided by its dc internal resistance).. The +fuse or fusible link must be rated for the full tractive system voltage, unless the special +conditions in EV2.6.5 (Fuse Voltage Ratings) are met. +OR +b) Manufacturer’s documentation must be provided that certifies that it is acceptable to use +this number of single cells in parallel without fusing. This certification must be included +in the ESF. (Commercially assembled packs or modules installed per manufacturer's +instructions may be exempt from this requirement upon application to the rules +committee.) +Note: if option (a) is used, fuse j in Figure 27 may be omitted if all conductors carrying the +entire pack current are adequately sized for the sum of the parallel fuse current ratings (i.e. for +n fuses in parallel, each with current rating i, the conductors must be sized for a total current i -total - = n·i) - - -Figure 29 - Example nP3S Configuration -EV1.1.33 Series then Parallel (nSmP) connections. -If strings of batteries or capacitors in series are then combined in parallel (Figure 30) then -each string must be individually fused per EV5.5.4. -Fuse j in Figure 30 may be omitted if all conductors carrying the entire pack current are -adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, -each with current rating i, the conductors must be sized for a total current 푖 -푡표푡푎푙 - = 푛· -푖 without fuse j, or may be sized for a lower current j if fuse j is included.) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -All fuses used in nSmP configurations must be rated for the full tractive system voltage. - - -Figure 30 – Example 5S4P Configuration -EV1.1.34 Fuse Voltage Ratings. -Although fuses in the tractive system must normally be rated for the full tractive system -voltage, under certain conditions an exception can be made for fuses or fusible links for -individual cells or capacitors. These conditions, defined in EV2.6.1, apply to fuses or fusible -links used to meet EV2.6.3and to any fusible links that are included in the accumulator -construction. These requirements are intended to ensure coordination between cell fuses -and pack master fuses. - The following conditions must be met to allow reduced voltage ratings: -The series fuse used to satisfy EV2.6.1 is rated at a current less than or equal to one half -of the sum of the parallel low-voltage fuses or fusible links, AND -1. fuse or fusible link current rating is specified in manufacturer’s data -OR -2. suitable team generated test data is provided, demonstrating the ability to: -(i) Carry full rated current for at least 10 minutes with less than 50° C -temperature rise. -(ii) Trip at 300% of rated current. -(iii) Interrupt current equal to the maximum short circuit current expected without -producing heat, sparks, or flames that might damage nearby cells. -For example, in Figure 29, this requirement is met if 푗 ≤ 푛· -푖 +total += n·i) +Figure 29 - Example nP3S Configuration +EV1.1.33 Series then Parallel (nSmP) connections. +If strings of batteries or capacitors in series are then combined in parallel (Figure 30) then +each string must be individually fused per EV5.5.4. +Fuse j in Figure 30 may be omitted if all conductors carrying the entire pack current are +adequately sized for the sum of the parallel fuse current ratings (i.e. for n fuses in parallel, +each with current rating i, the conductors must be sized for a total current 𝑖 +𝑡𝑜𝑡𝑎𝑙 += 𝑛 · +𝑖 without fuse j, or may be sized for a lower current j if fuse j is included.) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +All fuses used in nSmP configurations must be rated for the full tractive system voltage. +Figure 30 – Example 5S4P Configuration +EV1.1.34 Fuse Voltage Ratings. +Although fuses in the tractive system must normally be rated for the full tractive system +voltage, under certain conditions an exception can be made for fuses or fusible links for +individual cells or capacitors. These conditions, defined in EV2.6.1, apply to fuses or fusible +links used to meet EV2.6.3and to any fusible links that are included in the accumulator +construction. These requirements are intended to ensure coordination between cell fuses +and pack master fuses. +The following conditions must be met to allow reduced voltage ratings: +The series fuse used to satisfy EV2.6.1 is rated at a current less than or equal to one half +of the sum of the parallel low-voltage fuses or fusible links, AND +1. fuse or fusible link current rating is specified in manufacturer’s data +OR +2. suitable team generated test data is provided, demonstrating the ability to: +(i) Carry full rated current for at least 10 minutes with less than 50° C +temperature rise. +(ii) Trip at 300% of rated current. +(iii) Interrupt current equal to the maximum short circuit current expected without +producing heat, sparks, or flames that might damage nearby cells. +For example, in Figure 29, this requirement is met if 𝑗 ≤ 𝑛 · +𝑖 3 -, where i is the cell fuse or link -rating, n is the number of cells in parallel and j is the master series fuse rating. -EV2.7 Accumulator - Segment Maintenance Disconnect -EV1.1.35 A Segment Maintenance Disconnect (SMD) must be installed between each accumulator -segment See EV2.2). The SMD must be used whenever the accumulator containers are opened -for maintenance and whenever accumulator segments are removed from the container. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note: If the high-voltage disconnect (HVD, section EV2.9) is located between segments, it -satisfies the requirement for an SMD between those segments. -EV1.1.36 The SMD may be implemented with a switch or a removable maintenance plug. Devices -capable of remote operation such as relays or contactors may not be used. There must be a -positive means of securing the SMD in the disconnected state; for example, a lockable switch -can be secured with a zip-tie or a clip. -EV1.1.37 SMD methods requiring tools to isolate the segments are not permitted. -EV1.1.38 If the SMD is operated with the accumulator container open, any removable part used with the -SMD (e.g., a removable plug or clip) must be non-conductive on its external surfaces. i.e. it will -not cause a short if dropped into the accumulator. This requirement may be waived on -application to the rules committee if connection to battery terminals is prevented by -barriers or location. -EV1.1.39 Devices used for SMDs must be rated for the expected battery current and voltages -EV2.8 Accumulator - Isolation Relays -EV1.1.40 At least two isolation relays (AIRs) must be installed in every accumulator container, or in the -accumulator section of a segmented container (See EV2.3.4 Note 2) such that no TS voltage -will be present outside the accumulator or accumulator section when the TS is shut down. -Note: AIRs must be before TSMPs, such that TSMPs de-energize when AIRs are open. -EV1.1.41 The accumulator isolation relays must be of a normally open (N.O.) type which are held in the -closed position by the current flowing through the shutdown loop (EV7.1). When this flow of -current is interrupted, the AIRs must disconnect both poles of the accumulator such that no TS -voltage is present outside of the accumulator container(s). -EV1.1.42 When the AIRs are opened, the voltage in the tractive system must drop to under 60 VDC (or -42 VAC RMS) in less than five seconds. -EV1.1.43 The AIR contacts must be protected by Pre-Charge and Discharge circuitry, See EV2.10. -EV1.1.44 If the AIR coils are not equipped with transient suppression by the manufacturer then +, where i is the cell fuse or link +rating, n is the number of cells in parallel and j is the master series fuse rating. +EV2.7 Accumulator - Segment Maintenance Disconnect +EV1.1.35 A Segment Maintenance Disconnect (SMD) must be installed between each accumulator +segment See EV2.2). The SMD must be used whenever the accumulator containers are opened +for maintenance and whenever accumulator segments are removed from the container. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: If the high-voltage disconnect (HVD, section EV2.9) is located between segments, it +satisfies the requirement for an SMD between those segments. +EV1.1.36 The SMD may be implemented with a switch or a removable maintenance plug. Devices +capable of remote operation such as relays or contactors may not be used. There must be a +positive means of securing the SMD in the disconnected state; for example, a lockable switch +can be secured with a zip-tie or a clip. +EV1.1.37 SMD methods requiring tools to isolate the segments are not permitted. +EV1.1.38 If the SMD is operated with the accumulator container open, any removable part used with the +SMD (e.g., a removable plug or clip) must be non-conductive on its external surfaces. i.e. it will +not cause a short if dropped into the accumulator. This requirement may be waived on +application to the rules committee if connection to battery terminals is prevented by +barriers or location. +EV1.1.39 Devices used for SMDs must be rated for the expected battery current and voltages +EV2.8 Accumulator - Isolation Relays +EV1.1.40 At least two isolation relays (AIRs) must be installed in every accumulator container, or in the +accumulator section of a segmented container (See EV2.3.4 Note 2) such that no TS voltage +will be present outside the accumulator or accumulator section when the TS is shut down. +Note: AIRs must be before TSMPs, such that TSMPs de-energize when AIRs are open. +EV1.1.41 The accumulator isolation relays must be of a normally open (N.O.) type which are held in the +closed position by the current flowing through the shutdown loop (EV7.1). When this flow of +current is interrupted, the AIRs must disconnect both poles of the accumulator such that no TS +voltage is present outside of the accumulator container(s). +EV1.1.42 When the AIRs are opened, the voltage in the tractive system must drop to under 60 VDC (or +42 VAC RMS) in less than five seconds. +EV1.1.43 The AIR contacts must be protected by Pre-Charge and Discharge circuitry, See EV2.10. +EV1.1.44 If the AIR coils are not equipped with transient suppression by the manufacturer then Transient suppressors -13 - must be added in parallel with the AIR coils. -EV1.1.45 AIRs containing mercury are not permitted. - - -13 - Transient suppressors protect the circuitry in the shutdown loop from di/dt voltage spikes. One acceptable device -is Littelfuse 5KP43CA. (Mouser Part number 576-5KP43CA.) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 31 - Example Accumulator Segmenting -EV2.9 Accumulator - High Voltage Disconnect -EV1.1.46 Each vehicle must be fitted with a High Voltage Disconnect (HVD) making it possible to -quickly and positively break the current path of the tractive system accumulator. This can be -accomplished by turning off a disconnect switch, disconnecting the main connector or -removing an accessible element such as a fuse. A contactor or AIR device may not be used -as an HVD. -EV1.1.47 The HVD must be operable without the use of tools. -EV1.1.48 It must be possible to disconnect the HVD within 10 seconds in ready-to-race condition. -Note: Ready-to-race means that the car is fully assembled, including having all body panels in -position, with a driver seated in the vehicle and without the car jacked up. -EV1.1.49 The team must demonstrate this during Electrical Tech Inspection. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV1.1.50 The disconnect must be clearly marked with "HVD". Multiple disconnects must be marked -“HVD n of m”, such as “HVD 1 of 3”, HVD 2 of 3”, etc. -EV1.1.51 There must be a positive means of securing the HVD in the disconnected state; for example, a -lockable switch can be secured with a zip-tie or a clip. -Note: A removable plug will meet this requirement if the plug is secured or fully removed -such that it cannot accidentally reconnect. -EV1.1.52 The HVD must be opened as part of the Lockout/Tagout procedure. See EV12.1.1. -EV1.1.53 The recommended electrical location for the HVD is near the middle of the accumulator string. -In this case, it can serve as one of the SMDs. (See Figure 31). -Note: The HVD must be prior to TSMPs such that TSMPs are de-energized when the HVD is -open. -EV2.10 Accumulator - Pre-Charge and Discharge Circuits -One particularly dangerous failure mode in an electric vehicle is AIR contacts that have -welded shut. When the current through the AIR coils is interrupted, the AIRs should open, -isolating the potentially lethal voltages within the accumulator container. -If the AIRs are welded shut, these voltages will be present outside the accumulator even -though the system is presumably shut down. -Welding is caused by high instantaneous currents across the contacts. This can be avoided by -a correctly functioning pre-charge circuit. -EV1.1.54 Precharge -The AIR contacts must be protected by a circuit that will pre-charge the intermediate circuit to -at least 90% of the rated accumulator voltage before completing the intermediate circuit by -closing the second AIR. -The pre-charge circuit must be disabled if the shutdown circuit is deactivated; see EV7.1. i.e. -the pre-charge circuit must not be able to pre-charge the system if the shutdown circuit is -open. -EV1.1.55 It is allowed to pre-charge the intermediate circuit for a conservatively calculated time before -closing the second AIR. Monitoring the intermediate circuit voltage is not required. -EV1.1.56 The pre-charge circuit must operate regardless of the sequence of operations used to energize -the vehicle, including, for example, restarting after being automatically shut down by a safety -circuit. -EV1.1.57 Discharge -If a discharge circuit is needed to meet the requirements of EV2.8.3, it must be designed to -handle the maximum expected discharge current for at least 15 seconds. The calculations -determining the component values must be part of the ESF. -EV1.1.58 The discharge circuit must be fail-safe. i.e. wired in a way that it is always active whenever -the shutdown circuit is open or de-energized. -EV1.1.59 For always-on discharge circuits and other circuits that dissipate significant power for extended -time periods, calculations of the maximum operating temperature of the power dissipating -components (e.g., resistors) must be included in the ESF. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note: Resistors operating at their rated power level often operate at 200° C or more. Insulating -materials in proximity to resistors require care to ensure that they are not overheated. -Resistors that dissipate more than 50% of their power rating and resistors that dissipate -significant power without much open space around them will require additional care to ensure -they are safe. -It is recommended that teams use resistors rated for at least double the maximum predicted -power dissipation, document these design details in the ESF, and mount them that such that -heat dissipation is not impeded. -Note also that some resistors require external heat sinks in order to dissipate their rated power. -Using these resistors for significant power dissipation will require additional documentation of -the heat sink design or testing. -EV1.1.60 Fuses in the accumulator pre-charge or discharge current paths are not permitted. -EV2.11 Accumulator – Accumulator Management System (AMS) -EV1.1.61 Each accumulator must be monitored by an accumulator management system (AMS) -whenever the tractive system is active or the accumulator is connected to a charger. -Note: Some parts of EV2.11 may be waived for commercially manufactured accumulator -assemblies. Requests must be submitted to the Formula Hybrid + Electric rules committee at -least one month before the competition. -EV1.1.62 The AMS must monitor all critical voltages and temperatures in the accumulator as well the -integrity of all its voltage and temperature inputs. If an out-of-range or a malfunction is -detected, it must shut down the electrical systems, open the AIRs and shut down the I.C. drive +13 +must be added in parallel with the AIR coils. +EV1.1.45 AIRs containing mercury are not permitted. +13 +Transient suppressors protect the circuitry in the shutdown loop from di/dt voltage spikes. One acceptable device +is Littelfuse 5KP43CA. (Mouser Part number 576-5KP43CA.) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 31 - Example Accumulator Segmenting +EV2.9 Accumulator - High Voltage Disconnect +EV1.1.46 Each vehicle must be fitted with a High Voltage Disconnect (HVD) making it possible to +quickly and positively break the current path of the tractive system accumulator. This can be +accomplished by turning off a disconnect switch, disconnecting the main connector or +removing an accessible element such as a fuse. A contactor or AIR device may not be used +as an HVD. +EV1.1.47 The HVD must be operable without the use of tools. +EV1.1.48 It must be possible to disconnect the HVD within 10 seconds in ready-to-race condition. +Note: Ready-to-race means that the car is fully assembled, including having all body panels in +position, with a driver seated in the vehicle and without the car jacked up. +EV1.1.49 The team must demonstrate this during Electrical Tech Inspection. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV1.1.50 The disconnect must be clearly marked with "HVD". Multiple disconnects must be marked +“HVD n of m”, such as “HVD 1 of 3”, HVD 2 of 3”, etc. +EV1.1.51 There must be a positive means of securing the HVD in the disconnected state; for example, a +lockable switch can be secured with a zip-tie or a clip. +Note: A removable plug will meet this requirement if the plug is secured or fully removed +such that it cannot accidentally reconnect. +EV1.1.52 The HVD must be opened as part of the Lockout/Tagout procedure. See EV12.1.1. +EV1.1.53 The recommended electrical location for the HVD is near the middle of the accumulator string. +In this case, it can serve as one of the SMDs. (See Figure 31). +Note: The HVD must be prior to TSMPs such that TSMPs are de-energized when the HVD is +open. +EV2.10 Accumulator - Pre-Charge and Discharge Circuits +One particularly dangerous failure mode in an electric vehicle is AIR contacts that have +welded shut. When the current through the AIR coils is interrupted, the AIRs should open, +isolating the potentially lethal voltages within the accumulator container. +If the AIRs are welded shut, these voltages will be present outside the accumulator even +though the system is presumably shut down. +Welding is caused by high instantaneous currents across the contacts. This can be avoided by +a correctly functioning pre-charge circuit. +EV1.1.54 Precharge +The AIR contacts must be protected by a circuit that will pre-charge the intermediate circuit to +at least 90% of the rated accumulator voltage before completing the intermediate circuit by +closing the second AIR. +The pre-charge circuit must be disabled if the shutdown circuit is deactivated; see EV7.1. i.e. +the pre-charge circuit must not be able to pre-charge the system if the shutdown circuit is +open. +EV1.1.55 It is allowed to pre-charge the intermediate circuit for a conservatively calculated time before +closing the second AIR. Monitoring the intermediate circuit voltage is not required. +EV1.1.56 The pre-charge circuit must operate regardless of the sequence of operations used to energize +the vehicle, including, for example, restarting after being automatically shut down by a safety +circuit. +EV1.1.57 Discharge +If a discharge circuit is needed to meet the requirements of EV2.8.3, it must be designed to +handle the maximum expected discharge current for at least 15 seconds. The calculations +determining the component values must be part of the ESF. +EV1.1.58 The discharge circuit must be fail-safe. i.e. wired in a way that it is always active whenever +the shutdown circuit is open or de-energized. +EV1.1.59 For always-on discharge circuits and other circuits that dissipate significant power for extended +time periods, calculations of the maximum operating temperature of the power dissipating +components (e.g., resistors) must be included in the ESF. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Resistors operating at their rated power level often operate at 200° C or more. Insulating +materials in proximity to resistors require care to ensure that they are not overheated. +Resistors that dissipate more than 50% of their power rating and resistors that dissipate +significant power without much open space around them will require additional care to ensure +they are safe. +It is recommended that teams use resistors rated for at least double the maximum predicted +power dissipation, document these design details in the ESF, and mount them that such that +heat dissipation is not impeded. +Note also that some resistors require external heat sinks in order to dissipate their rated power. +Using these resistors for significant power dissipation will require additional documentation of +the heat sink design or testing. +EV1.1.60 Fuses in the accumulator pre-charge or discharge current paths are not permitted. +EV2.11 Accumulator – Accumulator Management System (AMS) +EV1.1.61 Each accumulator must be monitored by an accumulator management system (AMS) +whenever the tractive system is active or the accumulator is connected to a charger. +Note: Some parts of EV2.11 may be waived for commercially manufactured accumulator +assemblies. Requests must be submitted to the Formula Hybrid + Electric rules committee at +least one month before the competition. +EV1.1.62 The AMS must monitor all critical voltages and temperatures in the accumulator as well the +integrity of all its voltage and temperature inputs. If an out-of-range or a malfunction is +detected, it must shut down the electrical systems, open the AIRs and shut down the I.C. drive system within 60 seconds. -14 - (Some GLV systems may remain energized – See Figure 37) -EV1.1.63 The tractive system must remain disabled until manually reset by a person other than the -driver. It must not be possible for the driver to re-activate the tractive system from within the -car in case of an AMS fault. AMS faults must be latched using a mechanical relay circuit (see -Appendix G). Digital logic or microcontrollers may not be used for this function. -EV1.1.64 The AMS must continuously measure cell voltages in order to keep those voltages inside the -allowed minimum and maximums stated in the cell data-sheet. (See Table 9) -Notes: -1. If individual cells are directly connected in parallel, only one voltage measurement is -required for that group. (Measured at the parallel connections, outside of the cell fuses. -(See Figure 29) -2. Exemptions may be granted for commercial accumulator assemblies that do not meet these -requirements. - - -14 - Teams may wish to also use the AMS to detect a low voltage or high temperature before these cross the critical -threshold, and to alert the driver and/or decrease the power drawn from the accumulator, so as to mitigate the -problem before the vehicle must be shut down. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +14 +(Some GLV systems may remain energized – See Figure 37) +EV1.1.63 The tractive system must remain disabled until manually reset by a person other than the +driver. It must not be possible for the driver to re-activate the tractive system from within the +car in case of an AMS fault. AMS faults must be latched using a mechanical relay circuit (see +Appendix G). Digital logic or microcontrollers may not be used for this function. +EV1.1.64 The AMS must continuously measure cell voltages in order to keep those voltages inside the +allowed minimum and maximums stated in the cell data-sheet. (See Table 9) +Notes: +1. If individual cells are directly connected in parallel, only one voltage measurement is +required for that group. (Measured at the parallel connections, outside of the cell fuses. +(See Figure 29) +2. Exemptions may be granted for commercial accumulator assemblies that do not meet these +requirements. +14 +Teams may wish to also use the AMS to detect a low voltage or high temperature before these cross the critical +threshold, and to alert the driver and/or decrease the power drawn from the accumulator, so as to mitigate the +problem before the vehicle must be shut down. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Chemistry -Maximum number of cells per -voltage measurement -PbAcid 6 -NiMh 6 -Lithium based 1 -Table 9 - AMS Voltage Monitoring -EV1.1.65 The AMS must monitor the temperature of the minimum number of cells in the accumulator as -specified in Table 10 below. The monitored cells must be equally distributed over the -accumulator container(s). - -Chemistry Cells monitored -PbAcid 5% -UltraCap 10% -NiMh 10% -Li-Ion 30% -Table 10 – AMS Temperature Monitoring -NOTE: It is acceptable to monitor multiple cells with one sensor if this sensor has direct -contact to all monitored cells. It is also acceptable to use maximum-temperature detection -schemes such as diode-paralleled thermisters or zener diodes to monitor multiple cells on a -single circuit. -NOTE: Teams should monitor the temperature of all cells. -NOTE: AMS temperature monitoring at levels less than the requirements in Table 10 may be -permitted, on application to the tech committee, for commercial accumulator modules contain -integrated temperature sensors. -EV1.1.66 All voltage sense wires to the AMS must be protected by fuses or resistors (located as close as -possible to the energy source) so that they cannot exceed their current carrying capacity in the -event of a short circuit. -Note: If the AMS monitoring board is directly connected to the cell, it is acceptable to have a -fuse or resistor integrated into the monitoring board. -EV1.1.67 Input channels of the AMS used for different segments of the accumulator must be isolated -from one another with isolation rated for at least the maximum tractive system voltage. This -isolation is also required between channels or sections of the AMS that are connected to -different sides of a SMD, HVD, fuse, or AIR. -EV1.1.68 Any GLV connection to the AMS must be galvanically isolated from the TSV. This isolation -must be documented in the ESF. -Note: Per EV2.8.2, AMS connections that are not isolated, such as cell sense wires, cannot -exit the accumulator container, unless they are isolated by additional relays when the AIRs are - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -off. This requirement should be considered in the selection of an AMS system for a vehicle -that uses more than one accumulator container. The need for additional isolation relays may -also be avoided by utilizing a virtual accumulator. See EV2.12 - -EV1.1.69 Team-Designed Accumulator Management Systems. -Teams may design and build their own Accumulator Management Systems. However, -microprocessor-based accumulator management systems are subject to the following -restrictions: -1. The processor must be dedicated to the AMS function only. However, it may -communicate with other systems through shared peripherals or other physical links. -2. The AMS circuit board must include a watchdog timer. It is strongly recommended that -teams include the ability to test the watchdog function in their designs. -EV1.1.70 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that -is easily visible even in bright sunlight. This indicator must show the latched fault rather than -instantaneous status of the AMS. Other indication methods may be used upon application for a -variance with the rules committee -EV2.12 Virtual Accumulators. -In many cases, difficulties can be encountered when multiple accumulator containers are -monitored by a single AMS. Therefore, a vehicle may use a single AMS with more than one -accumulator container by defining a ‘Virtual Accumulator’ as provided below. See: Figure 32. -EV1.1.71 Each housing of the virtual accumulator container must be permanently installed in the -vehicle. i.e. not designed to be removed for charging or exchange. -EV1.1.72 The conduit(s) connecting accumulator housings must be flexible metallic liquid-tight steel -electrical conduit (NEC type LFMC) securely fastened at each end with fittings rated for -metallic LFMC. -EV1.1.73 Connectors between the interconnecting conduit and the housings containing the -accumulators, and along the length of the interconnecting conduit must be rated for LFMC -conduit. +Maximum number of cells per +voltage measurement +PbAcid 6 +NiMh 6 +Lithium based 1 +Table 9 - AMS Voltage Monitoring +EV1.1.65 The AMS must monitor the temperature of the minimum number of cells in the accumulator as +specified in Table 10 below. The monitored cells must be equally distributed over the +accumulator container(s). +Chemistry Cells monitored +PbAcid 5% +UltraCap 10% +NiMh 10% +Li-Ion 30% +Table 10 – AMS Temperature Monitoring +NOTE: It is acceptable to monitor multiple cells with one sensor if this sensor has direct +contact to all monitored cells. It is also acceptable to use maximum-temperature detection +schemes such as diode-paralleled thermisters or zener diodes to monitor multiple cells on a +single circuit. +NOTE: Teams should monitor the temperature of all cells. +NOTE: AMS temperature monitoring at levels less than the requirements in Table 10 may be +permitted, on application to the tech committee, for commercial accumulator modules contain +integrated temperature sensors. +EV1.1.66 All voltage sense wires to the AMS must be protected by fuses or resistors (located as close as +possible to the energy source) so that they cannot exceed their current carrying capacity in the +event of a short circuit. +Note: If the AMS monitoring board is directly connected to the cell, it is acceptable to have a +fuse or resistor integrated into the monitoring board. +EV1.1.67 Input channels of the AMS used for different segments of the accumulator must be isolated +from one another with isolation rated for at least the maximum tractive system voltage. This +isolation is also required between channels or sections of the AMS that are connected to +different sides of a SMD, HVD, fuse, or AIR. +EV1.1.68 Any GLV connection to the AMS must be galvanically isolated from the TSV. This isolation +must be documented in the ESF. +Note: Per EV2.8.2, AMS connections that are not isolated, such as cell sense wires, cannot +exit the accumulator container, unless they are isolated by additional relays when the AIRs are + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +off. This requirement should be considered in the selection of an AMS system for a vehicle +that uses more than one accumulator container. The need for additional isolation relays may +also be avoided by utilizing a virtual accumulator. See EV2.12 +EV1.1.69 Team-Designed Accumulator Management Systems. +Teams may design and build their own Accumulator Management Systems. However, +microprocessor-based accumulator management systems are subject to the following +restrictions: +1. The processor must be dedicated to the AMS function only. However, it may +communicate with other systems through shared peripherals or other physical links. +2. The AMS circuit board must include a watchdog timer. It is strongly recommended that +teams include the ability to test the watchdog function in their designs. +EV1.1.70 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that +is easily visible even in bright sunlight. This indicator must show the latched fault rather than +instantaneous status of the AMS. Other indication methods may be used upon application for a +variance with the rules committee +EV2.12 Virtual Accumulators. +In many cases, difficulties can be encountered when multiple accumulator containers are +monitored by a single AMS. Therefore, a vehicle may use a single AMS with more than one +accumulator container by defining a ‘Virtual Accumulator’ as provided below. See: Figure 32. +EV1.1.71 Each housing of the virtual accumulator container must be permanently installed in the +vehicle. i.e. not designed to be removed for charging or exchange. +EV1.1.72 The conduit(s) connecting accumulator housings must be flexible metallic liquid-tight steel +electrical conduit (NEC type LFMC) securely fastened at each end with fittings rated for +metallic LFMC. +EV1.1.73 Connectors between the interconnecting conduit and the housings containing the +accumulators, and along the length of the interconnecting conduit must be rated for LFMC +conduit. EV1.1.74 The conduit must be red, or painted red 15 -. -EV1.1.75 Any unsupported length of the interconnect conduit may be no greater than 150 mm. i.e. it -must be physically supported at least every 150 mm to ensure that it cannot droop or be -snagged by something on the track. The interconnect conduit must be contained entirely within -the chassis structure. -EV1.1.76 Separate conduits must be provided between housings for: -1. Individual tractive System conductors. (Only one high-current TS conductor may pass -through any one conduit.) -2. AMS wiring such as cell voltage sense wires that are at TS potential. -Note: GLV wiring may be run in its own conduit or outside of conduit. - -15 - LFMC conduit is available with a red jacket - see for example: http://www.afcweb.com/liquid-tuff-conduit/ul- -liquidtight-flexible-steel-conduit-type-lfmc/ - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV1.1.77 All rules relating to accumulator housings (including, but not limited to firewalls, location -etc.) also apply to the interconnect conduit. -EV1.1.78 If the interconnect conduit is the lowest point in the virtual housing it must have a 3-5 mm -drain hole in its lowest point to allow accumulated fluids to drain. -EV1.1.79 Segmentation requirements must be met considering the housings individually, and as an -interconnected system. For example, AMS wires must be grouped according to segment and -must maintain that grouping through to the AMS. -EV1.1.80 Each individual housing must comply with TS fusing requirements. (See EV2.6) i.e., there -must be at least one TS fuse in each container (See Figure 32). -EV1.1.81 A High Voltage Disconnect (HVD) can be installed in the conductors connecting accumulator -housings if mounted in a suitable enclosure. In this case, the accumulator boundary extends to -include conduit and the HVD enclosure. - - - - -Figure 32 - Virtual Accumulator example - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV2 TRACTIVE SYSTEM WIRING AND CONSTRUCTION -EV2.13 Positioning of tractive system parts -EV2.1.1 Housings and/or covers must prevent inadvertent human contact with any part of the tractive -system circuitry. This includes people working on or inside the vehicle. Covers must be secure -and adequately rigid. - Body panels that must be removed to access other components, etc. are not a substitute for -enclosing tractive system conductors. -EV2.1.2 Tractive system components and wiring must be physically protected from damage by rotating -and/or moving parts and must be isolated from fuel system components. -EV2.1.3 Finger Probe Test: Inspectors must not be able to touch any tractive system electrical -connection using a 10 cm long, 0.6 cm diameter non-conductive test probe. - - -Figure 33 - Finger Probe -EV2.1.4 Housings constructed of electrically conductive material must have a minimum-resistance -connection to GLV system ground. (See: ARTICLE EV8). -EV2.1.5 Every housing or enclosure containing parts of the tractive system must be labeled with the -words “Danger”, “High Voltage” and a black lightning bolt on a yellow background. The label -must be at least 4 x 6 cm. (See Figure 34 below.) - - -Figure 34 - High Voltage Label - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV2.1.6 All parts belonging to the tractive system including conduit, cables and wiring must be -contained within the Surface Envelope of the vehicle (See Figure 25) such that they are -protected against being damaged in case of a crash or roll-over situation or being caught -(snagged) by road hazards. -EV2.1.7 If tractive system parts are mounted in a position where damage could occur from a rear or -side impact (below 350 mm from the ground), such as side mounted accumulators -or rear mounted motors, they must be protected by a fully triangulated structure meeting the -requirements of T3.3, or approved equivalent per T3.3.2 or T3.7. -EV2.1.8 Drive motors that are not located fully within the frame, must be protected by an interlock. This -interlock must be configured such that the Shutdown Circuit, EV7.1, will be opened if any part -of the driven wheel assembly is dislocated from the frame. Drive motors located outside the -frame must still comply with EV7.1.3 -EV2.1.9 No part of the tractive-system may project below the lower surface of the frame or the -monocoque in either side or front view. -EV2.1.10 Tractive systems and containers must be protected from moisture in the form of rain or -puddles. -EV2.1.11 Electric motors, accumulators or electronics that use fluid coolants must comply with T8.1 and -T8.2. -EV2.14 TS wiring and conduit -EV2.1.12 All tractive system wiring must be done to professional standards with adequate strain relief -and protection from loosening due to vibration etc. -EV2.1.13 Soldering in the high current path is prohibited. Exception: surface-mount fuses and similar -components that are designed for soldering and the rated current. -1. Fuses must be mechanically supported by a PCB or equivalent, following manufacturer's -instructions (e.g. recommended footprint). Free-hanging fuses connected by wires are not -allowed. -2. Team must submit a design document showing that PCB traces on these boards are properly -designed for the current carried on all circuits. The battery design must still comply with -EV2.6, Accumulator Fusing. -EV2.1.14 All wires, terminals and other conductors used in the tractive system must be sized -appropriately for the continuous rating of the fuse which protects them. Wire size must comply -with the table in Appendix E or alternately, with cable manufacturer's published current rating, -if greater. Wires must be marked with wire gauge, temperature rating and insulation voltage +. +EV1.1.75 Any unsupported length of the interconnect conduit may be no greater than 150 mm. i.e. it +must be physically supported at least every 150 mm to ensure that it cannot droop or be +snagged by something on the track. The interconnect conduit must be contained entirely within +the chassis structure. +EV1.1.76 Separate conduits must be provided between housings for: +1. Individual tractive System conductors. (Only one high-current TS conductor may pass +through any one conduit.) +2. AMS wiring such as cell voltage sense wires that are at TS potential. +Note: GLV wiring may be run in its own conduit or outside of conduit. +15 +LFMC conduit is available with a red jacket - see for example: http://www.afcweb.com/liquid-tuff-conduit/ul- +liquidtight-flexible-steel-conduit-type-lfmc/ + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV1.1.77 All rules relating to accumulator housings (including, but not limited to firewalls, location +etc.) also apply to the interconnect conduit. +EV1.1.78 If the interconnect conduit is the lowest point in the virtual housing it must have a 3-5 mm +drain hole in its lowest point to allow accumulated fluids to drain. +EV1.1.79 Segmentation requirements must be met considering the housings individually, and as an +interconnected system. For example, AMS wires must be grouped according to segment and +must maintain that grouping through to the AMS. +EV1.1.80 Each individual housing must comply with TS fusing requirements. (See EV2.6) i.e., there +must be at least one TS fuse in each container (See Figure 32). +EV1.1.81 A High Voltage Disconnect (HVD) can be installed in the conductors connecting accumulator +housings if mounted in a suitable enclosure. In this case, the accumulator boundary extends to +include conduit and the HVD enclosure. +Figure 32 - Virtual Accumulator example + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV2 TRACTIVE SYSTEM WIRING AND CONSTRUCTION +EV2.13 Positioning of tractive system parts +EV2.1.1 Housings and/or covers must prevent inadvertent human contact with any part of the tractive +system circuitry. This includes people working on or inside the vehicle. Covers must be secure +and adequately rigid. +Body panels that must be removed to access other components, etc. are not a substitute for +enclosing tractive system conductors. +EV2.1.2 Tractive system components and wiring must be physically protected from damage by rotating +and/or moving parts and must be isolated from fuel system components. +EV2.1.3 Finger Probe Test: Inspectors must not be able to touch any tractive system electrical +connection using a 10 cm long, 0.6 cm diameter non-conductive test probe. +Figure 33 - Finger Probe +EV2.1.4 Housings constructed of electrically conductive material must have a minimum-resistance +connection to GLV system ground. (See: ARTICLE EV8). +EV2.1.5 Every housing or enclosure containing parts of the tractive system must be labeled with the +words “Danger”, “High Voltage” and a black lightning bolt on a yellow background. The label +must be at least 4 x 6 cm. (See Figure 34 below.) +Figure 34 - High Voltage Label + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV2.1.6 All parts belonging to the tractive system including conduit, cables and wiring must be +contained within the Surface Envelope of the vehicle (See Figure 25) such that they are +protected against being damaged in case of a crash or roll-over situation or being caught +(snagged) by road hazards. +EV2.1.7 If tractive system parts are mounted in a position where damage could occur from a rear or +side impact (below 350 mm from the ground), such as side mounted accumulators +or rear mounted motors, they must be protected by a fully triangulated structure meeting the +requirements of T3.3, or approved equivalent per T3.3.2 or T3.7. +EV2.1.8 Drive motors that are not located fully within the frame, must be protected by an interlock. This +interlock must be configured such that the Shutdown Circuit, EV7.1, will be opened if any part +of the driven wheel assembly is dislocated from the frame. Drive motors located outside the +frame must still comply with EV7.1.3 +EV2.1.9 No part of the tractive-system may project below the lower surface of the frame or the +monocoque in either side or front view. +EV2.1.10 Tractive systems and containers must be protected from moisture in the form of rain or +puddles. +EV2.1.11 Electric motors, accumulators or electronics that use fluid coolants must comply with T8.1 and +T8.2. +EV2.14 TS wiring and conduit +EV2.1.12 All tractive system wiring must be done to professional standards with adequate strain relief +and protection from loosening due to vibration etc. +EV2.1.13 Soldering in the high current path is prohibited. Exception: surface-mount fuses and similar +components that are designed for soldering and the rated current. +1. Fuses must be mechanically supported by a PCB or equivalent, following manufacturer's +instructions (e.g. recommended footprint). Free-hanging fuses connected by wires are not +allowed. +2. Team must submit a design document showing that PCB traces on these boards are properly +designed for the current carried on all circuits. The battery design must still comply with +EV2.6, Accumulator Fusing. +EV2.1.14 All wires, terminals and other conductors used in the tractive system must be sized +appropriately for the continuous rating of the fuse which protects them. Wire size must comply +with the table in Appendix E or alternately, with cable manufacturer's published current rating, +if greater. Wires must be marked with wire gauge, temperature rating and insulation voltage rating 16 -. -EV2.1.15 The minimum acceptable temperature rating for TS wiring is 90°C. This requirement applies -to wire and cable; it does not apply to conduit. -EV2.1.16 All tractive system wiring that runs outside of electrical enclosures must be either: -1. Orange shielded, dual-insulated cable rated for automotive application, at least 5 mm -overall cable diameter - -16 - Alternatively a manufacturer’s part number printed on the wire will be sufficient if this number can be referenced -to a manufacturer’s data sheet. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -OR -2. Enclosed in ORANGE non-conductive conduit (except for Virtual Accumulator systems -which must use RED conduit. (See EV2.12) -Note: UL Listed Conduit of other colors may be painted or wrapped with colored tape. +. +EV2.1.15 The minimum acceptable temperature rating for TS wiring is 90°C. This requirement applies +to wire and cable; it does not apply to conduit. +EV2.1.16 All tractive system wiring that runs outside of electrical enclosures must be either: +1. Orange shielded, dual-insulated cable rated for automotive application, at least 5 mm +overall cable diameter +16 +Alternatively a manufacturer’s part number printed on the wire will be sufficient if this number can be referenced +to a manufacturer’s data sheet. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +OR +2. Enclosed in ORANGE non-conductive conduit (except for Virtual Accumulator systems +which must use RED conduit. (See EV2.12) +Note: UL Listed Conduit of other colors may be painted or wrapped with colored tape. EV2.1.17 Conduit must be non-metallic and UL Listed -17 - as: -1. Conduit under UL1660, UL651 or UL651A -OR -2. Non-Metallic Protective Tubing (NMPT) under UL1696. -EV2.1.18 Conduit runs must be one piece. Conduit splices and/or transitions between conduit and -shielded, dual-insulated cable may only occur within an enclosure and must comply with -section EV3.3. -EV2.1.19 Wiring to outboard wheel motors may be in conduit or may use shielded dual insulated cables. -All other tractive system wiring that runs outside the vehicle frame (but within the roll -envelope) must be within conduit. -EV2.1.20 When shielded dual-insulated cable is used, the shield must be grounded at both ends of the -cable. -EV2.1.21 Wiring from motor controller to motor does not require fusing but must be sized for the -controller maximum continuous output current, or per manufacturers instructions. -EV2.15 TS Cable Strain Relief -EV2.1.22 Cable or conduit exiting or entering a tractive system enclosure or the drive motor must use a -liquid-tight fitting proving strain relief to the cable or conduit such that it will withstand a force +17 +as: +1. Conduit under UL1660, UL651 or UL651A +OR +2. Non-Metallic Protective Tubing (NMPT) under UL1696. +EV2.1.18 Conduit runs must be one piece. Conduit splices and/or transitions between conduit and +shielded, dual-insulated cable may only occur within an enclosure and must comply with +section EV3.3. +EV2.1.19 Wiring to outboard wheel motors may be in conduit or may use shielded dual insulated cables. +All other tractive system wiring that runs outside the vehicle frame (but within the roll +envelope) must be within conduit. +EV2.1.20 When shielded dual-insulated cable is used, the shield must be grounded at both ends of the +cable. +EV2.1.21 Wiring from motor controller to motor does not require fusing but must be sized for the +controller maximum continuous output current, or per manufacturers instructions. +EV2.15 TS Cable Strain Relief +EV2.1.22 Cable or conduit exiting or entering a tractive system enclosure or the drive motor must use a +liquid-tight fitting proving strain relief to the cable or conduit such that it will withstand a force of 200N without straining the cable 18 -. -The fitting must be one of the following: -1. For conduit: A conduit fitting rated for use with the conduit used. -2. For shielded, dual insulated cable: -(i) A cable gland rated for use with the cable used -OR -(ii) A connector rated for use with the cable used. The connector must provide -termination of the shield to ground and latch in place securely enough to meet the -strain-relief requirements listed above. Both portions of the connector must meet or -exceed IEC standards IP53 (mated) and IP20 (unmated). -EV2.1.23 Connections to drive motors that do not have provision for conduit connection are allowed to -separate the strain-relief and insulation requirements. Specifically: -1. Cable strain relief must be capable of withstanding a 200N force, and must be within 15 -cm of the motor terminals. - -17 - "UL Recognized" is not the same as "UL Listed". -18 - This will be tested during the electrical tech inspection by pulling on the conduit using a spring scale. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note: Conventional cable strain relief fittings, mechanical clamps or saddles may be -used, however the integrity of the cable insulation must be protected. -AND -2. the TS wiring must pass EV3.1.3 (finger probe test) -For example, a motor with stud terminals for power input could use a 3D printed plastic cover -on the terminals and suitable cable clamps within 15 cm to provide strain relief. -EV2.16 TS Electrical Connections -EV2.1.24 Tractive system connections must be designed so that they use intentional current paths +. +The fitting must be one of the following: +1. For conduit: A conduit fitting rated for use with the conduit used. +2. For shielded, dual insulated cable: +(i) A cable gland rated for use with the cable used +OR +(ii) A connector rated for use with the cable used. The connector must provide +termination of the shield to ground and latch in place securely enough to meet the +strain-relief requirements listed above. Both portions of the connector must meet or +exceed IEC standards IP53 (mated) and IP20 (unmated). +EV2.1.23 Connections to drive motors that do not have provision for conduit connection are allowed to +separate the strain-relief and insulation requirements. Specifically: +1. Cable strain relief must be capable of withstanding a 200N force, and must be within 15 +cm of the motor terminals. +17 +"UL Recognized" is not the same as "UL Listed". +18 +This will be tested during the electrical tech inspection by pulling on the conduit using a spring scale. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Conventional cable strain relief fittings, mechanical clamps or saddles may be +used, however the integrity of the cable insulation must be protected. +AND +2. the TS wiring must pass EV3.1.3 (finger probe test) +For example, a motor with stud terminals for power input could use a 3D printed plastic cover +on the terminals and suitable cable clamps within 15 cm to provide strain relief. +EV2.16 TS Electrical Connections +EV2.1.24 Tractive system connections must be designed so that they use intentional current paths through conductors such as copper or aluminum 19 -. Steel is not permitted. -EV2.1.25 Tractive system connections must not include compressible material such as plastic or -phenolic in the stack-up. (i.e. components identified as #1 in Figure 35) - -Figure 35 - Connection Stack-up -Note: The bolt shown in Figure 35 can be steel since it is not the primary conductor. However -the washer (#2), if used, must not be steel, since it is in the primary conduction path. If -possible, no washer should be used in this location, so that the two primary conductors are -directly clamped together. -EV2.1.26 Conductors and terminals must not be modified from their original size/shape and must be -appropriate for the connection being made. -EV2.1.27 Bolts with nylon inserts (Nylocks, etc.) and thread-locking compounds (Loctite, etc.) are not -permitted. -EV2.1.28 All bolted or threaded connections must be torqued properly. The use of a contrasting indicator +. Steel is not permitted. +EV2.1.25 Tractive system connections must not include compressible material such as plastic or +phenolic in the stack-up. (i.e. components identified as #1 in Figure 35) +Figure 35 - Connection Stack-up +Note: The bolt shown in Figure 35 can be steel since it is not the primary conductor. However +the washer (#2), if used, must not be steel, since it is in the primary conduction path. If +possible, no washer should be used in this location, so that the two primary conductors are +directly clamped together. +EV2.1.26 Conductors and terminals must not be modified from their original size/shape and must be +appropriate for the connection being made. +EV2.1.27 Bolts with nylon inserts (Nylocks, etc.) and thread-locking compounds (Loctite, etc.) are not +permitted. +EV2.1.28 All bolted or threaded connections must be torqued properly. The use of a contrasting indicator paste -20 - is strongly recommended to indicate completion of proper torqueing procedures. - - -19 - Aluminum conductors may be used, but require specific approval from the Formula Hybrid + Electric rules -committee. -20 - Such as DYKEM® Cross-Check Torque Seal®. See: https://www.youtube.com/watch?v=W80C4XfyCQE - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Recommended TS Connection Fasteners -Fasteners specified and/or supplied by the component manufacturer. -Bolts with Belleville (conical) metal locking washers. -All-metal positive locking nuts. (See Figure 23) -Table 11 - Recommended TS Connection Fasteners -EV2.17 Motor Controllers -Note: Commercially available motor controllers containing boost converters that have internal -voltages greater than 300 VDC may be used provided the unit is approved in writing by the -rules committee. -EV2.1.29 The tractive system motor(s) must be connected to the accumulator through a motor controller. -Bypassing the control system and connecting the tractive system accumulator directly to the -motor(s) is prohibited. -EV2.1.30 The accelerator control must be a right-foot-operated foot pedal. Refer to IC1.6 for specific -requirements of the accelerator control -EV2.1.31 The foot pedal must return to its original, rearward position when released. The foot pedal -must have positive stops at both ends of its travel, preventing its sensors from being damaged -or overstressed. -EV2.1.32 All acceleration control signals (between the accelerator pedal and the motor controller) must -have error checking. -For analog acceleration control signals, this error checking must detect open circuit, short to -ground and short to sensor power -For digital acceleration control signals, this error checking must detect a loss of -communication. -EV2.1.33 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control -signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, -must be galvanically isolated and referenced to GLV ground. -Note: If these capabilities are built into the motor controller, then no additional error-checking -circuitry is required. -EV2.1.34 The accelerator signal limit shutoff may be tested during electrical tech inspection by -replicating any of the fault conditions listed in EV3.5.4 -EV2.1.35 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control -signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, +20 +is strongly recommended to indicate completion of proper torqueing procedures. +19 +Aluminum conductors may be used, but require specific approval from the Formula Hybrid + Electric rules +committee. +20 +Such as DYKEM® Cross-Check Torque Seal®. See: https://www.youtube.com/watch?v=W80C4XfyCQE + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Recommended TS Connection Fasteners +Fasteners specified and/or supplied by the component manufacturer. +Bolts with Belleville (conical) metal locking washers. +All-metal positive locking nuts. (See Figure 23) +Table 11 - Recommended TS Connection Fasteners +EV2.17 Motor Controllers +Note: Commercially available motor controllers containing boost converters that have internal +voltages greater than 300 VDC may be used provided the unit is approved in writing by the +rules committee. +EV2.1.29 The tractive system motor(s) must be connected to the accumulator through a motor controller. +Bypassing the control system and connecting the tractive system accumulator directly to the +motor(s) is prohibited. +EV2.1.30 The accelerator control must be a right-foot-operated foot pedal. Refer to IC1.6 for specific +requirements of the accelerator control +EV2.1.31 The foot pedal must return to its original, rearward position when released. The foot pedal +must have positive stops at both ends of its travel, preventing its sensors from being damaged +or overstressed. +EV2.1.32 All acceleration control signals (between the accelerator pedal and the motor controller) must +have error checking. +For analog acceleration control signals, this error checking must detect open circuit, short to +ground and short to sensor power +For digital acceleration control signals, this error checking must detect a loss of +communication. +EV2.1.33 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control +signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, +must be galvanically isolated and referenced to GLV ground. +Note: If these capabilities are built into the motor controller, then no additional error-checking +circuitry is required. +EV2.1.34 The accelerator signal limit shutoff may be tested during electrical tech inspection by +replicating any of the fault conditions listed in EV3.5.4 +EV2.1.35 TS circuitry, even at low voltage or current levels, is not allowed in the cockpit. All control +signals that are referenced to TS and not GLV, such as non-isolated motor controller inputs, must be galvanically isolated and referenced to GLV ground.. 21 -. -EV2.1.36 Motor controller inputs that are galvanically isolated from the TSV may be run throughout the -vehicle, but must be positively bonded to GLV ground. - -21 - For commercial controllers that do not provide isolated throttle inputs, a remote throttle actuator can be fabricated -with a (grounded) Bowden cable and non-conductive linkages. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV2.1.37 TS drive motors must spin freely when the TS system is in deactivated state, and when -transitioned to a deactivated state. -EV2.18 Energy Meter -EV2.1.38 Vehicles with accumulator energy capacities in excess of the limits in Table 1 must be fitted -with an Energy Meter provided by the organizer to compete in the endurance event. -EV2.1.39 All power flowing between the accumulator and the Tractive System must pass through the -Energy Meter. -EV2.1.40 FH+E does not impose POWER limits and so the only function of the energy meter is to -determine valid laps for the endurance event. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV3 GROUNDED LOW VOLTAGE SYSTEM -EV2.19 Grounded Low Voltage System (GLV) -EV3.1.1 The GLV system may not have a voltage greater than that listed in Table 8. -EV3.1.2 All GLV batteries must be attached securely to the frame. -EV3.1.3 The hot (ungrounded) terminal of the battery must be insulated. -EV3.1.4 One terminal of the GLV battery or other GLV power source must be connected to the chassis -by a stranded ground wire or flexible strap, with a minimum size of 12 AWG or equivalent -cross-section. For vehicles without metal chassis members, the GLV system must be connected -to conductive parts to meet the grounding requirements in EV8.1.2. -EV3.1.5 The ground wire must run directly from the battery to the nearest frame ground and must be -properly secured at both ends. -Note: Through-bolting a ring terminal to a gusset plate or dedicated tab welded to the frame is -highly recommended. -EV3.1.6 Any wet-cell battery located in the driver compartment must be enclosed in a nonconductive -marine-type container or equivalent and include a layer of 1.5 mm aluminum or equivalent -between the container and driver. -EV3.1.7 GLV Battery Pack -1. Team-constructed GLV batteries are allowed. -(i) GLV batteries up to 16.8V (4s LiIon) may be used without a battery management system. -(ii) GLV batteries 16.8V< MaxV<60V must measure the voltage of all series cells and the -temperature of 30% of cells. -2. The GLV battery shall have appropriate over-current circuit protection. -3. Cells wired in parallel must have branch-level overcurrent protection. -4. Team-constructed GLV batteries shall be housed in a container meeting min. firewall rules -(1.6mm aluminum baseline) with a vent/pressure relief path directed away from the driver. -5. GLV / TSV isolation rules still apply. -EV3.1.8 Orange wire and/or conduit may not be used in GLV wiring. Exception: multi-conductor -telecom-type cables containing orange color-coded wires may be used. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV4 TRACTIVE SYSTEM VOLTAGE ISOLATION -Most Formula Hybrid + Electric vehicles contain voltages that could cause injury or death if -they came in contact with a human body. In addition, all Formula Hybrid + Electric -accumulator systems are capable of storing enough energy to cause injury, blindness or death -if that energy is released unintentionally. -To minimize these risks, all tractive system components and wiring must at a minimum -comply with the following rules. -EV2.20 Isolation Requirements -EV4.1.1 All TS wiring and components must be galvanically (electrically) isolated from GLV by -separation and/or insulation. -EV4.1.2 All interaction between TS and GLV must be by means of galvanically isolated devices such as -opto-couplers, transformers, digital isolators or isolated dc-dc converters. -EV4.1.3 All connections from external devices such as laptops to a tractive system component must be -galvanically isolated, and include a connection between the external device ground and the -vehicle frame ground. -EV4.1.4 All isolation devices must be rated for an isolation voltage of at least twice the maximum TS -voltage. -EV2.21 General -EV4.1.5 Tractive system and GLV conductors must not run through the same conduit. -EV4.1.6 Tractive system and GLV wiring must not both be present in one connector. Connectors with -an integral interlock such as the Amphenol SurLok Plus are exempted from this requirement. -EV4.1.7 TS wiring must be separated from the driver's compartment by a firewall. -EV4.1.8 TS wiring must not be present behind the instrument panel. TS wiring must not be present in -the cockpit unless enclosed in conduit and separated from the driver by a firewall. TS potential -must not be present on accelerator pedal or other controls in the cockpit. -EV2.22 Insulation, Spacing and Segregation +. +EV2.1.36 Motor controller inputs that are galvanically isolated from the TSV may be run throughout the +vehicle, but must be positively bonded to GLV ground. +21 +For commercial controllers that do not provide isolated throttle inputs, a remote throttle actuator can be fabricated +with a (grounded) Bowden cable and non-conductive linkages. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV2.1.37 TS drive motors must spin freely when the TS system is in deactivated state, and when +transitioned to a deactivated state. +EV2.18 Energy Meter +EV2.1.38 Vehicles with accumulator energy capacities in excess of the limits in Table 1 must be fitted +with an Energy Meter provided by the organizer to compete in the endurance event. +EV2.1.39 All power flowing between the accumulator and the Tractive System must pass through the +Energy Meter. +EV2.1.40 FH+E does not impose POWER limits and so the only function of the energy meter is to +determine valid laps for the endurance event. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV3 GROUNDED LOW VOLTAGE SYSTEM +EV2.19 Grounded Low Voltage System (GLV) +EV3.1.1 The GLV system may not have a voltage greater than that listed in Table 8. +EV3.1.2 All GLV batteries must be attached securely to the frame. +EV3.1.3 The hot (ungrounded) terminal of the battery must be insulated. +EV3.1.4 One terminal of the GLV battery or other GLV power source must be connected to the chassis +by a stranded ground wire or flexible strap, with a minimum size of 12 AWG or equivalent +cross-section. For vehicles without metal chassis members, the GLV system must be connected +to conductive parts to meet the grounding requirements in EV8.1.2. +EV3.1.5 The ground wire must run directly from the battery to the nearest frame ground and must be +properly secured at both ends. +Note: Through-bolting a ring terminal to a gusset plate or dedicated tab welded to the frame is +highly recommended. +EV3.1.6 Any wet-cell battery located in the driver compartment must be enclosed in a nonconductive +marine-type container or equivalent and include a layer of 1.5 mm aluminum or equivalent +between the container and driver. +EV3.1.7 GLV Battery Pack +1. Team-constructed GLV batteries are allowed. +(i) GLV batteries up to 16.8V (4s LiIon) may be used without a battery management system. +(ii) GLV batteries 16.8V< MaxV<60V must measure the voltage of all series cells and the +temperature of 30% of cells. +2. The GLV battery shall have appropriate over-current circuit protection. +3. Cells wired in parallel must have branch-level overcurrent protection. +4. Team-constructed GLV batteries shall be housed in a container meeting min. firewall rules +(1.6mm aluminum baseline) with a vent/pressure relief path directed away from the driver. +5. GLV / TSV isolation rules still apply. +EV3.1.8 Orange wire and/or conduit may not be used in GLV wiring. Exception: multi-conductor +telecom-type cables containing orange color-coded wires may be used. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV4 TRACTIVE SYSTEM VOLTAGE ISOLATION +Most Formula Hybrid + Electric vehicles contain voltages that could cause injury or death if +they came in contact with a human body. In addition, all Formula Hybrid + Electric +accumulator systems are capable of storing enough energy to cause injury, blindness or death +if that energy is released unintentionally. +To minimize these risks, all tractive system components and wiring must at a minimum +comply with the following rules. +EV2.20 Isolation Requirements +EV4.1.1 All TS wiring and components must be galvanically (electrically) isolated from GLV by +separation and/or insulation. +EV4.1.2 All interaction between TS and GLV must be by means of galvanically isolated devices such as +opto-couplers, transformers, digital isolators or isolated dc-dc converters. +EV4.1.3 All connections from external devices such as laptops to a tractive system component must be +galvanically isolated, and include a connection between the external device ground and the +vehicle frame ground. +EV4.1.4 All isolation devices must be rated for an isolation voltage of at least twice the maximum TS +voltage. +EV2.21 General +EV4.1.5 Tractive system and GLV conductors must not run through the same conduit. +EV4.1.6 Tractive system and GLV wiring must not both be present in one connector. Connectors with +an integral interlock such as the Amphenol SurLok Plus are exempted from this requirement. +EV4.1.7 TS wiring must be separated from the driver's compartment by a firewall. +EV4.1.8 TS wiring must not be present behind the instrument panel. TS wiring must not be present in +the cockpit unless enclosed in conduit and separated from the driver by a firewall. TS potential +must not be present on accelerator pedal or other controls in the cockpit. +EV2.22 Insulation, Spacing and Segregation EV4.1.9 Tractive system main current path wiring and any TS circuits that are not protected by over- -current devices must be constructed using spacing, insulation, or both, in order to prevent short -circuits between TS conductors. Minimum spacings are listed in Table 12. Insulation used to -meet this requirement must adhere to EV5.4. -EV4.1.10 Where GLV and TS circuits are present in the same enclosure, they must be segregated (in -addition to any insulating covering on the wire) by: -1. at least the distance specified in Table 12 -OR -2. a barrier material meeting the TS/GLV requirements of EV5.4 -EV4.1.11 All required spacings must be clearly defined. Components and cables must be securely -restrained to prevent movement and maintain spacing. -Note: Grouping TS and GLV wiring into separate regions of an enclosure makes it easier to -implement spacing or barriers to meet EV5.3.2 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Maximum Vehicle -TS Voltage -TS/TS +current devices must be constructed using spacing, insulation, or both, in order to prevent short +circuits between TS conductors. Minimum spacings are listed in Table 12. Insulation used to +meet this requirement must adhere to EV5.4. +EV4.1.10 Where GLV and TS circuits are present in the same enclosure, they must be segregated (in +addition to any insulating covering on the wire) by: +1. at least the distance specified in Table 12 +OR +2. a barrier material meeting the TS/GLV requirements of EV5.4 +EV4.1.11 All required spacings must be clearly defined. Components and cables must be securely +restrained to prevent movement and maintain spacing. +Note: Grouping TS and GLV wiring into separate regions of an enclosure makes it easier to +implement spacing or barriers to meet EV5.3.2 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Maximum Vehicle +TS Voltage +TS/TS Within Accumulator Container 22 - -TS/GLV -Over Surface -(Creepage) Through Air -V < 100 VDC 5.3 mm 2.1 mm 10.0 mm -100 VDC < V < 200 VDC 7.5 mm 4.3 mm 20.0 mm -V > 200 VDC 9.6 mm 6.4 mm 30.0 mm +TS/GLV +Over Surface +(Creepage) Through Air +V < 100 VDC 5.3 mm 2.1 mm 10.0 mm +100 VDC < V < 200 VDC 7.5 mm 4.3 mm 20.0 mm +V > 200 VDC 9.6 mm 6.4 mm 30.0 mm Table 12 – Minimum Spacings 23 - -EV2.23 Insulation. -EV4.1.12 All electrical insulating material must be appropriate and adequately robust for the application -in which it is used. -EV4.1.13 Insulating materials used for TS insulation or TS/GLV segregation must: +EV2.23 Insulation. +EV4.1.12 All electrical insulating material must be appropriate and adequately robust for the application +in which it is used. +EV4.1.13 Insulating materials used for TS insulation or TS/GLV segregation must: 1. Be UL recognized (i.e., have an Underwriters Laboratories -24 - or equivalent rating and -certification). -2. Must be rated for the maximum expected operating temperatures at the location of use, or -the temperatures listed in Table 13 (whichever is greater). -3. Must meet the minimum thickness requirements listed in Table 13 -4. The TS/GLV requirement also applies to TS to chassis ground insulation. - - -Minimum +24 +or equivalent rating and +certification). +2. Must be rated for the maximum expected operating temperatures at the location of use, or +the temperatures listed in Table 13 (whichever is greater). +3. Must meet the minimum thickness requirements listed in Table 13 +4. The TS/GLV requirement also applies to TS to chassis ground insulation. +Minimum Temperature -Minimum Thickness -TS / GLV +Minimum Thickness +TS / GLV (see Note below) -150º C 0.25 mm -TS / TS -TS/Chassis -Ground +150º C 0.25 mm +TS / TS +TS/Chassis +Ground 90º C -As required to be rated for -the full TS voltage -Table 13 - Insulating Material - Minimum Temperatures and Thicknesses -Note: For TS/GLV isolation, insulating material must be used in addition to any insulating -covering provided by the wire manufacturer. -EV4.1.14 Insulating materials must extend far enough at the edges to meet spacing and creepage -requirements between conductors. - -22 - Outside of the accumulator container TS/TS spacing should comply with standard industry practice. -23 - Teams that have pre-existing systems built to comply with Table 10 in the 2016 rules will be permitted -24 - http://www.ul.com - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.1.15 Thermoplastic materials such as vinyl insulation tape may not be used. Thermoset materials -such as heat-shrink and self-fusing tapes (typically silicone) are acceptable. - -Figure 36 – Creepage Distance Example -EV2.24 Printed circuit board (PCB) isolation -Printed circuit boards designed and/or fabricated by teams must comply with the following: -EV4.1.16 If tractive system circuits and GLV circuits are on the same circuit board they must be on -separate, clearly defined areas of the board. Furthermore, the tractive system and GLV areas -must be clearly marked on the PCB. -EV4.1.17 Prototyping boards having plated holes and/or generic conductor patterns may not be used for -applications where both GLV and TS circuits are present on the same board. Bare perforated -board may be used if the spacing and marking requirements in EV5.5.3 and EV5.5.1 are met, -and if the board is removable for inspection. -EV4.1.18 Required spacings between TS and GLV conductors are shown in Table 14. If a -cut or hole in the PC board is used to allow the “through air” spacing, the cut must not be plated -with metal, and the distance around the cut must satisfy the “over surface” spacing requirement. -Spacings between TS and GLV conductors on inner layers of PCBs may be reduced to the -“through air” spacings. - -Maximum Vehicle TS Voltage -Spacing +As required to be rated for +the full TS voltage +Table 13 - Insulating Material - Minimum Temperatures and Thicknesses +Note: For TS/GLV isolation, insulating material must be used in addition to any insulating +covering provided by the wire manufacturer. +EV4.1.14 Insulating materials must extend far enough at the edges to meet spacing and creepage +requirements between conductors. +22 +Outside of the accumulator container TS/TS spacing should comply with standard industry practice. +23 +Teams that have pre-existing systems built to comply with Table 10 in the 2016 rules will be permitted +24 +http://www.ul.com + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.1.15 Thermoplastic materials such as vinyl insulation tape may not be used. Thermoset materials +such as heat-shrink and self-fusing tapes (typically silicone) are acceptable. +Figure 36 – Creepage Distance Example +EV2.24 Printed circuit board (PCB) isolation +Printed circuit boards designed and/or fabricated by teams must comply with the following: +EV4.1.16 If tractive system circuits and GLV circuits are on the same circuit board they must be on +separate, clearly defined areas of the board. Furthermore, the tractive system and GLV areas +must be clearly marked on the PCB. +EV4.1.17 Prototyping boards having plated holes and/or generic conductor patterns may not be used for +applications where both GLV and TS circuits are present on the same board. Bare perforated +board may be used if the spacing and marking requirements in EV5.5.3 and EV5.5.1 are met, +and if the board is removable for inspection. +EV4.1.18 Required spacings between TS and GLV conductors are shown in Table 14. If a +cut or hole in the PC board is used to allow the “through air” spacing, the cut must not be plated +with metal, and the distance around the cut must satisfy the “over surface” spacing requirement. +Spacings between TS and GLV conductors on inner layers of PCBs may be reduced to the +“through air” spacings. +Maximum Vehicle TS Voltage +Spacing Over surface Through air -Under -Conformal -Coating - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -0-50 V 1.6 mm 1.6 mm 1 mm -50-150 V 6.4 mm 3.2 mm 2 mm -150-300 V 8.5 mm 6.4 mm 3mm -301-600V 12.7 mm 9.5 mm 4 mm -Table 14 – PCB TS/GLV Spacings -Note: Teams must be prepared to demonstrate spacings on team-built equipment. Information +Under +Conformal +Coating + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +0-50 V 1.6 mm 1.6 mm 1 mm +50-150 V 6.4 mm 3.2 mm 2 mm +150-300 V 8.5 mm 6.4 mm 3mm +301-600V 12.7 mm 9.5 mm 4 mm +Table 14 – PCB TS/GLV Spacings +Note: Teams must be prepared to demonstrate spacings on team-built equipment. Information on this must be included in the ESF (EV13.1). If integrated circuits are used such as opto- -couplers which are rated for the respective maximum tractive system voltage, but do not fulfill -the required spacing, then they may still be used and the given spacing do not apply. This applies -to the pin-to-pin through air and the pin-to-pin spacing over the package surface, but does not -exempt the need to slot the board where pads would otherwise be too close. - +couplers which are rated for the respective maximum tractive system voltage, but do not fulfill +the required spacing, then they may still be used and the given spacing do not apply. This applies +to the pin-to-pin through air and the pin-to-pin spacing over the package surface, but does not +exempt the need to slot the board where pads would otherwise be too close. 1. Teams must supply high resolution (min. 300 dpi at 1:1) digital photographs of team- -designed boards showing: -(i) All layers of unpopulated boards (inner layers or top/bottom layers that don’t -photograph well can be provided as copies of artwork files.) -(ii) Both top and bottom of fully populated and soldered boards. -EV4.1.19 If dimensional information is not obvious (i.e. 0.1 in x 0.1 in spacing) then a dimensional -reference must be included in the photo. Spare boards should be made available for inspection. -Teams should also be prepared to remove boards for direct inspection if asked to do so during -the technical inspection. -EV4.1.20 Printed circuit boards located inside the accumulator container and having tractive system -connections on them must be fused to limited the power on the board to 600 watt or less, with -the exception of precharge and discharge circuits. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV3 FUSING - GENERAL -EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging -system) must be appropriately fused. -EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating -of any electrical component that it protects. This includes wires, bus bars, battery cells or other -conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current -rating may be used for TS wiring if greater than the Appendix E value. -Note: Many fuses have a peak current capability significantly higher than their continuous -current capability. Using such a fuse allows using a relatively small wire for a high peak -current, because the rules only require the wire to be sized for the continuous current rating of -the fuse. -EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. -EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating +designed boards showing: +(i) All layers of unpopulated boards (inner layers or top/bottom layers that don’t +photograph well can be provided as copies of artwork files.) +(ii) Both top and bottom of fully populated and soldered boards. +EV4.1.19 If dimensional information is not obvious (i.e. 0.1 in x 0.1 in spacing) then a dimensional +reference must be included in the photo. Spare boards should be made available for inspection. +Teams should also be prepared to remove boards for direct inspection if asked to do so during +the technical inspection. +EV4.1.20 Printed circuit boards located inside the accumulator container and having tractive system +connections on them must be fused to limited the power on the board to 600 watt or less, with +the exception of precharge and discharge circuits. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV3 FUSING - GENERAL +EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging +system) must be appropriately fused. +EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating +of any electrical component that it protects. This includes wires, bus bars, battery cells or other +conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current +rating may be used for TS wiring if greater than the Appendix E value. +Note: Many fuses have a peak current capability significantly higher than their continuous +current capability. Using such a fuse allows using a relatively small wire for a high peak +current, because the rules only require the wire to be sized for the continuous current rating of +the fuse. +EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. +EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating equal to or greater than the maximum voltage of the system in which they are used 25 -. -EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit -current of the system that it protects. -EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an -uncontrolled energy source (e.g., a battery). -Note: For this rule, a battery is considered an energy source even for wiring intended for -charging the battery, because current could flow in the opposite direction in a fault scenario. -EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current -limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at -the branching point, if the branch wire is too small to be protected by the main fuse for the -circuit. -Note: For further guidance on fusing, see the Fusing Tutorial found here: -https://drive.google.com/drive/u/0/search?q=fusing%20tutorial - - -25 - Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating -must be specifically called out in order for the fuse to be accepted as DC rated. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV4 SHUTDOWN CIRCUIT AND SYSTEMS -EV4.1 Shutdown Circuit -The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. -It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the -flow of current through this loop is interrupted, the AIRs will open, disconnecting the -vehicle’s high voltage systems from the source of that voltage within the accumulator -container. -Shutdown may be initiated by several devices having different priorities as shown in the -following table. - -Figure 37 - Priority of shutdown sources -EV4.1.28 The shutdown circuit must consist of at least: -1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 -2. Tractive System Master Switch (TSMS) See: EV7.4 -3. Two side mounted shutdown buttons (BRBs) See: EV7.5 -4. Cockpit-mounted shutdown button. See: EV7.6 -5. Brake over-travel switch. See: T7.3 -6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: -EV7.9 and Figure 38. -7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). -See: EV2.11 and Figure 38. -8. All required interlocks. -9. Both IMD and AMS must use mechanical latching means as described in Appendix G. -Latch reset must be by manual push button. Logic-controlled reset is not allowed. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -10. If CAN communication are used for safety functions, a relay controlled by an -independent CAN watchdog device that opens if relevant CAN messages are not -received. This relay is not required to be latching. -EV4.1.29 Any failure causing the GLV system to shut down must immediately deactivate the tractive -system as well. -EV4.1.30 The safety shutdown loop must be implemented as a series connection (logical AND) of all -devices included in EV7.1.1. Digital logic or microcontrollers may not be used for this -function. Normally open auxiliary relays may be used to power high-current devices such as -fans, pumps etc. The AIRs must be powered directly by the current flowing through the loop. -EV4.1.31 All components in the shutdown circuit must be rated for the maximum continuous current in -the circuit (i.e. AIR and relay current). -Note: A normally-open relay may be used to control AIR coils upon application to the rules -committee. -EV4.1.32 In the event of an AMS, IMD or Brake over-travel fault, it must not be possible for the driver to -re-activate the tractive system from within the cockpit. This includes “cycling power” through -the use of the cockpit shutdown button. -Note: Resetting or re-activating the tractive system by operating controls which cannot be +. +EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit +current of the system that it protects. +EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an +uncontrolled energy source (e.g., a battery). +Note: For this rule, a battery is considered an energy source even for wiring intended for +charging the battery, because current could flow in the opposite direction in a fault scenario. +EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current +limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at +the branching point, if the branch wire is too small to be protected by the main fuse for the +circuit. +Note: For further guidance on fusing, see the Fusing Tutorial found here: +https://drive.google.com/drive/u/0/search?q=fusing%20tutorial +25 +Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating +must be specifically called out in order for the fuse to be accepted as DC rated. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV4 SHUTDOWN CIRCUIT AND SYSTEMS +EV4.1 Shutdown Circuit +The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. +It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the +flow of current through this loop is interrupted, the AIRs will open, disconnecting the +vehicle’s high voltage systems from the source of that voltage within the accumulator +container. +Shutdown may be initiated by several devices having different priorities as shown in the +following table. +Figure 37 - Priority of shutdown sources +EV4.1.28 The shutdown circuit must consist of at least: +1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 +2. Tractive System Master Switch (TSMS) See: EV7.4 +3. Two side mounted shutdown buttons (BRBs) See: EV7.5 +4. Cockpit-mounted shutdown button. See: EV7.6 +5. Brake over-travel switch. See: T7.3 +6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: +EV7.9 and Figure 38. +7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). +See: EV2.11 and Figure 38. +8. All required interlocks. +9. Both IMD and AMS must use mechanical latching means as described in Appendix G. +Latch reset must be by manual push button. Logic-controlled reset is not allowed. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +10. If CAN communication are used for safety functions, a relay controlled by an +independent CAN watchdog device that opens if relevant CAN messages are not +received. This relay is not required to be latching. +EV4.1.29 Any failure causing the GLV system to shut down must immediately deactivate the tractive +system as well. +EV4.1.30 The safety shutdown loop must be implemented as a series connection (logical AND) of all +devices included in EV7.1.1. Digital logic or microcontrollers may not be used for this +function. Normally open auxiliary relays may be used to power high-current devices such as +fans, pumps etc. The AIRs must be powered directly by the current flowing through the loop. +EV4.1.31 All components in the shutdown circuit must be rated for the maximum continuous current in +the circuit (i.e. AIR and relay current). +Note: A normally-open relay may be used to control AIR coils upon application to the rules +committee. +EV4.1.32 In the event of an AMS, IMD or Brake over-travel fault, it must not be possible for the driver to +re-activate the tractive system from within the cockpit. This includes “cycling power” through +the use of the cockpit shutdown button. +Note: Resetting or re-activating the tractive system by operating controls which cannot be reached by the driver -26 - is considered to be working on the car. -EV4.1.33 Electronic systems that contain internal energy storage must be prevented from feeding power -back into the vehicle GLV circuits in the event of GLV shutdown. - - -26 - This would include the use of a wireless link remote from the vehicle. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -*GLV fuse to comply with EV6.1.7 -Figure 38 - Example Master Switch and Shutdown Circuit Configuration -EV4.2 Master Switches -EV4.1.34 Each vehicle must have two Master Switches: -1. Grounded Low Voltage Master Switch (GLVMS) -2. Tractive System Master Switch (TSMS). -EV4.1.35 Both master switches must be located on the right side of the vehicle, in proximity to the Main -Hoop, at the driver’s shoulder height and be easily actuated from outside the car. -EV4.1.36 Both master switches must be of the rotary type, with a red, removable key, similar to the one -shown in Figure 39. -EV4.1.37 Both master switches must be direct acting. i.e. they may not operate through a relay. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.1.38 Removable master switches are not allowed, e.g. mounted onto removable body work. -EV4.1.39 The function of each switch must be clearly marked with “GLV” and “TSV”. -EV4.1.40 The “ON” position of both switches must be parallel to the fore-aft axis of the vehicle -EV4.3 Grounded Low Voltage Master Switch (GLVMS) -EV4.1.41 The GLVMS is the highest priority shutdown and must disable power to all GLV electrical -circuits. This includes the alternator, lights, fuel pump(s), I.C. engine ignition and electrical -controls. -EV4.1.42 All GLV current must flow through the GLVMS. -EV4.1.43 Vehicles with GLV charging systems such as alternators or DC/DC converters must use a +26 +is considered to be working on the car. +EV4.1.33 Electronic systems that contain internal energy storage must be prevented from feeding power +back into the vehicle GLV circuits in the event of GLV shutdown. +26 +This would include the use of a wireless link remote from the vehicle. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +*GLV fuse to comply with EV6.1.7 +Figure 38 - Example Master Switch and Shutdown Circuit Configuration +EV4.2 Master Switches +EV4.1.34 Each vehicle must have two Master Switches: +1. Grounded Low Voltage Master Switch (GLVMS) +2. Tractive System Master Switch (TSMS). +EV4.1.35 Both master switches must be located on the right side of the vehicle, in proximity to the Main +Hoop, at the driver’s shoulder height and be easily actuated from outside the car. +EV4.1.36 Both master switches must be of the rotary type, with a red, removable key, similar to the one +shown in Figure 39. +EV4.1.37 Both master switches must be direct acting. i.e. they may not operate through a relay. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.1.38 Removable master switches are not allowed, e.g. mounted onto removable body work. +EV4.1.39 The function of each switch must be clearly marked with “GLV” and “TSV”. +EV4.1.40 The “ON” position of both switches must be parallel to the fore-aft axis of the vehicle +EV4.3 Grounded Low Voltage Master Switch (GLVMS) +EV4.1.41 The GLVMS is the highest priority shutdown and must disable power to all GLV electrical +circuits. This includes the alternator, lights, fuel pump(s), I.C. engine ignition and electrical +controls. +EV4.1.42 All GLV current must flow through the GLVMS. +EV4.1.43 Vehicles with GLV charging systems such as alternators or DC/DC converters must use a multi-pole switch to isolate the charging source from the GLV as illustrated in Figure 38 27 -. -EV4.1.44 The GLVMS must be identified with a label with a red lightning bolt in a blue triangle. (See -Figure 40) -EV4.4 Tractive System Master Switch (TSMS) -EV4.1.45 The TSMS must open the Tractive System shutdown circuit. -EV4.1.46 The TSMS must be the last switch in the loop carrying the holding current to the AIRs. (See -Figure 38) - - - - -Figure 39 - Typical Master Switch - -27 - https://www.pegasusautoracing.com/productdetails.asp?RecID=1464 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 40 - International Kill Switch Symbol -EV4.5 Side-mounted Shutdown Buttons (BRB) -The side-mounted shutdown buttons (Big Red Buttons – or BRBs) are the first line of defense -for a vehicle that is malfunctioning or in trouble. Corner and safety workers are instructed to -push the BRB first when responding to an emergency. -EV4.1.47 One button must be located on each side of the vehicle behind the driver’s compartment at -approximately the level of the driver’s head. They must be installed facing outward and be -easily visible from the sides of the car. -EV4.1.48 The side-mounted BRBs must be red and a minimum of 38 mm. in diameter. -EV4.1.49 The side-mounted shut-down buttons must be a push-pull or push-rotate emergency switch -where pushing the button opens the shutdown circuit. -EV4.1.50 The side-mounted shutdown buttons must shut down all electrical systems with the exception -of the high-current connection to the engine starter motor. -EV4.1.51 The shut-down buttons may not act through logic such as a micro-controller or relays. -EV4.1.52 The shutdown buttons may not be easily removable, e.g. they may not be mounted onto -removable body work. -EV4.1.53 The Side-mounted BRBs must be identified with a label with a red lightning bolt in a blue -triangle. (See Figure 40) -EV4.6 Cockpit Shutdown Button (BRB) -EV4.1.54 One shutdown button must be mounted in the cockpit and be easily accessible by the driver -while fully belted in and with the steering wheel in any position. -EV4.1.55 The cockpit shut-down button must be a push-pull or push-rotate emergency switch where -pushing the button opens the shutdown circuit. The cockpit shutdown button must be red and at -least 24 mm in diameter. -EV4.1.56 Pushing the cockpit mounted button must open the AIRs and shut down the I.C. engine. (See: -Figure 37) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.1.57 The cockpit shutdown button must be driver resettable. i.e. if the driver disables the system by -pressing the cockpit-mounted shutdown button, the driver must then be able to restore system -operation by pulling the button back out. -Note: There must still be one additional action by the driver after pulling the button back out -to reactivate the motor controller per EV7.7.2. -EV4.1.58 The cockpit shut-down buttons may not act through logic such as a micro-controller or relays. -EV4.7 Vehicle Start button -EV4.1.59 The GLV system must be powered up before it is possible to activate the tractive system -shutdown loop. -EV4.1.60 After enabling the shutdown circuit, at least one action, such as pressing a “start” button must -be performed by the driver before the vehicle is “ready to drive”. i.e. it will respond to any -accelerator input. -EV4.1.61 The “start” action must be configured such that it cannot inadvertently be left in the “on” -position after system shutdown. -EV4.8 Shutdown system sequencing -EV4.1.62 A recommended sequence of operation for the shutdown circuit and related systems is shown -in the form of a state diagram in Figure 41. -EV4.1.63 Teams must: -1. Demonstrate that their vehicle operates according to this state diagram, -OR -2. Obtain approval for an alternative state diagram by submitting an electrical rules query -on or before the ESF submission deadline, and demonstrate that the vehicle operates -according to the approved alternative state diagram. - -IMPORTANT NOTE: If during technical inspection, it is found that the shutdown -circuit operates differently from the standard or approved alternative state diagram, the -car will be considered to have failed inspection. - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 41 - Example Shutdown State Diagram -EV4.9 Insulation Monitoring Device (IMD) -EV4.1.64 Every car must have an insulation monitoring device installed in the tractive system. -EV4.1.65 The IMD must be designed for Electric Vehicle use and meet the following criteria: robustness -to vibration, operating temperature range, availability of a direct output, a self-test function, and -must not be powered by the system that is monitored. The IMD must be a stand-alone unit. -IMD functionality integrated in an AMS is not acceptable (Bender A-ISOMETER ® iso-F1 -IR155-3203, IR155-3204, and Iso175C-32-SS are recommended examples). -EV4.1.66 The response value of the IMD needs to be set to no less than 500 ohm/volt, related to the -maximum tractive system operation voltage. -EV4.1.67 In case of an insulation failure or an IMD failure, the IMD must shut down all the electrical -systems, open the AIRs and shut down the I.C. drive system. (Some GLV systems such as -accumulator cooling pumps and fans, may remain energized – See Figure 37) -EV4.1.68 The tractive system must remain disabled until manually reset by a person other than the -driver. It must not be possible for the driver to re-activate the tractive system from within the -car in case of an IMD-related fault. -EV4.1.69 Latching circuitry added by teams to comply with EV7.9.5 must be implemented using -electro-mechanical relays. (See Appendix G – Example Relay Latch Circuits.) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.1.70 The status of the IMD must be displayed to the driver by a red indicator light in the cockpit. -(See EV9.4). The indicator must show the latched fault and not the instantaneous status of the -IMD. -Note: The electrical inspectors will test the IMD by applying a test resistor between tractive -system (positive or negative) and GLV system ground. This must deactivate the system. -Disconnecting the test resistor may not re-activate the system. i.e. the tractive system must -remain inactive until it is manually reset. -EV4.1.71 The IMD high voltage sense connections may be unfused if wiring is less than 30 cm in -length, is less than or equal to #16 wire gauge, has an insulation voltage rating of at least 600V, -and is “double insulated” (e.g. has additional sleeving on both conductors). If any of these -conditions is not met, the IMD HV sense connections must be fused in accordance with -EV3.2.3 and ARTICLE EV6. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV5 GROUNDING -EV4.10 General -EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a -resistance below 300 mΩ to GLV system ground. - Accessible parts are defined as those that are exposed in the normal driving configuration or -when the vehicle is partially disassembled for maintenance or charging. -EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon -fiber parts, etc.) that could potentially become energized (including post collision or accident), -no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system -ground. -NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or -similar modifications to keep the ground resistance below 100 ohms. -EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV -system ground. -EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 -AWG and be stranded. -Note: For GLV system grounding conductor size see EV4.1.4. -EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the -vehicle which is likely to be conductive, for example the driver's harness attachment bolts. -Where no convenient conductive point is available then an area of coating may be removed. -Note: If the resistance measurement displayed by a conventional two-wire meter is slightly -higher than the requirement, a four-terminal measurement technique may be used. If the four- -terminal measurement (which is more accurate) meets the requirement, then the vehicle passes -the test. -See: https://en.wikipedia.org/wiki/Four-terminal_sensing -EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS -communication) will be required to document and demonstrate shutdown equivalent to BRB -operation if CAN communication is interrupted. A solution to this requirement may be a -separate device with relay output that monitors CAN traffic. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV6 SYSTEM STATUS INDICATORS -EV4.11 Tractive System Active Lamp (TSAL) -EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop -which must be lit and clearly visible any time the AIR coils are energized. -EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green -for TS not present are also acceptable. -EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. -EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. -EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles -which are covered by the main roll hoop) even in very bright sunlight. -EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The -person's minimum eye height is 1.6 m. -NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily -visible during track operations the team may not be allowed to compete in any dynamic event -before the problem is solved. -EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. -EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator -containers is above a threshold calculated as the higher value of 60V or 50% of the nominal -accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at -voltages below 20V. The TSAL system must be powered entirely by the tractive system and -must be directly controlled by voltage being present at the output of the accumulator (no -software control is permitted). -EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. -Note: This requirement may be met by locating an isolated dc-dc converter inside a TS -enclosure, and connecting the output of the dc-dc converter to the lamp. -(Because the voltage driving the lamp is considered GLV, one side of the voltage driving the -lamps must be ground-referenced by connecting it to the frame in order to comply with -EV4.1.4.) -EV4.12 Ready-to-Drive Sound -EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 -seconds, when it is ready to drive. (See EV7.7) -Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque -encoder / accelerator pedal. -EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum +. +EV4.1.44 The GLVMS must be identified with a label with a red lightning bolt in a blue triangle. (See +Figure 40) +EV4.4 Tractive System Master Switch (TSMS) +EV4.1.45 The TSMS must open the Tractive System shutdown circuit. +EV4.1.46 The TSMS must be the last switch in the loop carrying the holding current to the AIRs. (See +Figure 38) +Figure 39 - Typical Master Switch +27 +https://www.pegasusautoracing.com/productdetails.asp?RecID=1464 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 40 - International Kill Switch Symbol +EV4.5 Side-mounted Shutdown Buttons (BRB) +The side-mounted shutdown buttons (Big Red Buttons – or BRBs) are the first line of defense +for a vehicle that is malfunctioning or in trouble. Corner and safety workers are instructed to +push the BRB first when responding to an emergency. +EV4.1.47 One button must be located on each side of the vehicle behind the driver’s compartment at +approximately the level of the driver’s head. They must be installed facing outward and be +easily visible from the sides of the car. +EV4.1.48 The side-mounted BRBs must be red and a minimum of 38 mm. in diameter. +EV4.1.49 The side-mounted shut-down buttons must be a push-pull or push-rotate emergency switch +where pushing the button opens the shutdown circuit. +EV4.1.50 The side-mounted shutdown buttons must shut down all electrical systems with the exception +of the high-current connection to the engine starter motor. +EV4.1.51 The shut-down buttons may not act through logic such as a micro-controller or relays. +EV4.1.52 The shutdown buttons may not be easily removable, e.g. they may not be mounted onto +removable body work. +EV4.1.53 The Side-mounted BRBs must be identified with a label with a red lightning bolt in a blue +triangle. (See Figure 40) +EV4.6 Cockpit Shutdown Button (BRB) +EV4.1.54 One shutdown button must be mounted in the cockpit and be easily accessible by the driver +while fully belted in and with the steering wheel in any position. +EV4.1.55 The cockpit shut-down button must be a push-pull or push-rotate emergency switch where +pushing the button opens the shutdown circuit. The cockpit shutdown button must be red and at +least 24 mm in diameter. +EV4.1.56 Pushing the cockpit mounted button must open the AIRs and shut down the I.C. engine. (See: +Figure 37) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.1.57 The cockpit shutdown button must be driver resettable. i.e. if the driver disables the system by +pressing the cockpit-mounted shutdown button, the driver must then be able to restore system +operation by pulling the button back out. +Note: There must still be one additional action by the driver after pulling the button back out +to reactivate the motor controller per EV7.7.2. +EV4.1.58 The cockpit shut-down buttons may not act through logic such as a micro-controller or relays. +EV4.7 Vehicle Start button +EV4.1.59 The GLV system must be powered up before it is possible to activate the tractive system +shutdown loop. +EV4.1.60 After enabling the shutdown circuit, at least one action, such as pressing a “start” button must +be performed by the driver before the vehicle is “ready to drive”. i.e. it will respond to any +accelerator input. +EV4.1.61 The “start” action must be configured such that it cannot inadvertently be left in the “on” +position after system shutdown. +EV4.8 Shutdown system sequencing +EV4.1.62 A recommended sequence of operation for the shutdown circuit and related systems is shown +in the form of a state diagram in Figure 41. +EV4.1.63 Teams must: +1. Demonstrate that their vehicle operates according to this state diagram, +OR +2. Obtain approval for an alternative state diagram by submitting an electrical rules query +on or before the ESF submission deadline, and demonstrate that the vehicle operates +according to the approved alternative state diagram. +IMPORTANT NOTE: If during technical inspection, it is found that the shutdown +circuit operates differently from the standard or approved alternative state diagram, the +car will be considered to have failed inspection. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 41 - Example Shutdown State Diagram +EV4.9 Insulation Monitoring Device (IMD) +EV4.1.64 Every car must have an insulation monitoring device installed in the tractive system. +EV4.1.65 The IMD must be designed for Electric Vehicle use and meet the following criteria: robustness +to vibration, operating temperature range, availability of a direct output, a self-test function, and +must not be powered by the system that is monitored. The IMD must be a stand-alone unit. +IMD functionality integrated in an AMS is not acceptable (Bender A-ISOMETER ® iso-F1 +IR155-3203, IR155-3204, and Iso175C-32-SS are recommended examples). +EV4.1.66 The response value of the IMD needs to be set to no less than 500 ohm/volt, related to the +maximum tractive system operation voltage. +EV4.1.67 In case of an insulation failure or an IMD failure, the IMD must shut down all the electrical +systems, open the AIRs and shut down the I.C. drive system. (Some GLV systems such as +accumulator cooling pumps and fans, may remain energized – See Figure 37) +EV4.1.68 The tractive system must remain disabled until manually reset by a person other than the +driver. It must not be possible for the driver to re-activate the tractive system from within the +car in case of an IMD-related fault. +EV4.1.69 Latching circuitry added by teams to comply with EV7.9.5 must be implemented using +electro-mechanical relays. (See Appendix G – Example Relay Latch Circuits.) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.1.70 The status of the IMD must be displayed to the driver by a red indicator light in the cockpit. +(See EV9.4). The indicator must show the latched fault and not the instantaneous status of the +IMD. +Note: The electrical inspectors will test the IMD by applying a test resistor between tractive +system (positive or negative) and GLV system ground. This must deactivate the system. +Disconnecting the test resistor may not re-activate the system. i.e. the tractive system must +remain inactive until it is manually reset. +EV4.1.71 The IMD high voltage sense connections may be unfused if wiring is less than 30 cm in +length, is less than or equal to #16 wire gauge, has an insulation voltage rating of at least 600V, +and is “double insulated” (e.g. has additional sleeving on both conductors). If any of these +conditions is not met, the IMD HV sense connections must be fused in accordance with +EV3.2.3 and ARTICLE EV6. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV5 GROUNDING +EV4.10 General +EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a +resistance below 300 mΩ to GLV system ground. +Accessible parts are defined as those that are exposed in the normal driving configuration or +when the vehicle is partially disassembled for maintenance or charging. +EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon +fiber parts, etc.) that could potentially become energized (including post collision or accident), +no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system +ground. +NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or +similar modifications to keep the ground resistance below 100 ohms. +EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV +system ground. +EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 +AWG and be stranded. +Note: For GLV system grounding conductor size see EV4.1.4. +EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the +vehicle which is likely to be conductive, for example the driver's harness attachment bolts. +Where no convenient conductive point is available then an area of coating may be removed. +Note: If the resistance measurement displayed by a conventional two-wire meter is slightly +higher than the requirement, a four-terminal measurement technique may be used. If the four- +terminal measurement (which is more accurate) meets the requirement, then the vehicle passes +the test. +See: https://en.wikipedia.org/wiki/Four-terminal_sensing +EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS +communication) will be required to document and demonstrate shutdown equivalent to BRB +operation if CAN communication is interrupted. A solution to this requirement may be a +separate device with relay output that monitors CAN traffic. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV6 SYSTEM STATUS INDICATORS +EV4.11 Tractive System Active Lamp (TSAL) +EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop +which must be lit and clearly visible any time the AIR coils are energized. +EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green +for TS not present are also acceptable. +EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. +EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. +EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles +which are covered by the main roll hoop) even in very bright sunlight. +EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The +person's minimum eye height is 1.6 m. +NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily +visible during track operations the team may not be allowed to compete in any dynamic event +before the problem is solved. +EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. +EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator +containers is above a threshold calculated as the higher value of 60V or 50% of the nominal +accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at +voltages below 20V. The TSAL system must be powered entirely by the tractive system and +must be directly controlled by voltage being present at the output of the accumulator (no +software control is permitted). +EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. +Note: This requirement may be met by locating an isolated dc-dc converter inside a TS +enclosure, and connecting the output of the dc-dc converter to the lamp. +(Because the voltage driving the lamp is considered GLV, one side of the voltage driving the +lamps must be ground-referenced by connecting it to the frame in order to comply with +EV4.1.4.) +EV4.12 Ready-to-Drive Sound +EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 +seconds, when it is ready to drive. (See EV7.7) +Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque +encoder / accelerator pedal. +EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter 28 -. -EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one -in the front, and one from each side of the vehicle. - -28 - Some compliant devices can be found here: https://www.mspindy.com/ - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV6.1.13 The vehicle must not make any other sounds similar to the Ready-to-Drive sound. -EV4.13 Electrical Systems OK Lamps (ESOK) -ESOK indicator lamps are required for hybrid and hybrid-in-progress vehicles. They are not -required for electric-only vehicles. -The purpose of the ESOK indicators is to ensure that a hybrid vehicle is operating with the -electric traction system engaged, and to prevent IC-only operation in dynamic events. -This requirement is in addition to TSAL indicators which are required for all vehicle classes. -EV6.1.14 Hybrid vehicles must have two ESOK lamps. One mounted on each side of the roll bar in the -vicinity of the side-mounted shutdown buttons (EV7.5) that can easily be seen from the sides of -the vehicle.The indicators must be Amber, complying with DOT FMVSS 108 for trailer -clearance lamps -29 -. See Figure 42. They must be clearly labeled “ESOK”. -EV6.1.15 The ESOK indicators must be powered from the circuit feeding the AIR (contactor) coils. If -there is an electrical system fault, or a “BRB” is pressed, or the TS master switch is opened, the ESOK -indicators must extinguish. See Figure 38 for an example of ESOK lamp wiring. -See Figure 38 for an example of ESOK lamp wiring. - - -Figure 42 – Typical ESOK Lamp -EV4.14 Insulation Monitoring Device (IMD) -EV6.1.16 The status of the IMD must be shown to the driver by a red indicator light in the cockpit that is -easily visible even in bright sunlight. This indicator must light up if the IMD detects an -insulation failure or if the IMD detects a failure in its own operation e.g. when it loses reference -ground. -EV6.1.17 The IMD indicator light must be clearly marked with the lettering “IMD” or “GFD” (Ground -Fault Detector). -EV4.15 Accumulator Voltage Indicator -EV6.1.18 Any removable accumulator container must have a prominent indicator, such as an LED, that -is visible through a closed container that will illuminate whenever a voltage greater than 60 -VDC is present at the vehicle side of the AIRs. -EV6.1.19 The accumulator voltage indicator must be directly controlled by voltage present at the -container connectors using analog electronics. No software control is permitted. - -29 - https://www.ecfr.gov/cgi-bin/text-idx?node=se49.6.571_1108 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.16 Accumulator Monitoring System (AMS) -EV6.1.20 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that -is easily visible even in bright sunlight. This indicator must light up if the AMS detects an -accumulator failure or if the AMS detects a failure in its own operation. -EV6.1.21 The AMS indicator light must be clearly marked with the lettering “AMS”. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV5 ELECTRICAL SYSTEM TESTS -Note: During electrical tech inspection, these tests will normally be done in the following -order: IMD test, insulation measurement, AMS function then Rain test. -EV5.1 Insulation Monitoring Device (IMD) Test -EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done -by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive -vehicle parts while the tractive system is active, as shown in the example below. -EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault -resistance of 250 ohm/volt (50% below the response value). -Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. -EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the -first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take -part in any dynamic event if any of the seals are broken until the IMD test is successfully -passed again. - - -Figure 43 – Insulation Monitoring Device Test -EV5.2 Insulation Measurement Test -EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive -system and control system ground. The available measurement voltages are 250 V, 500 V and -750 V DC. - All cars will be measured with the next available voltage level. For example, a 175 V system -will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V -system will be measured with 750 V etc. -EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least -500 ohm/volt related to the maximum nominal tractive system operation voltage. -EV5.3 Tractive System Measuring Points (TSMP) -The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, -EV2.8.3. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -They may also be used to ensure the isolation of the tractive system of the vehicle during -possible rescue operations after an accident or when work on the vehicle is to be done. -EV6.1.27 Two tractive system voltage measuring points must be installed in an easily accessible -30 - well -marked location. Access must not require the removal of body panels. The TSMP jacks must be -marked "Gnd", "TS+" and "TS-". -EV6.1.28 The TSMPs must be protected by a non-conductive housing that can be opened without tools. -EV6.1.29 Shrouded 4 mm banana jacks that accept shrouded (sheathed) banana plugs with non- -retractable shrouds must be used for the TSMPs and the system ground measuring point -(EV10.3.6). - See Figure 44 for examples of the correct jacks and of jacks that are not permitted because they -do not accept the required plugs (also shown). -EV6.1.30 The TSMPs must be connected, via current limiting resistors, to the positive and negative -motor controller/inverter supply lines. (See Figure 38) The TSMP must measure motor -controller input voltage even if segmenting or TSMS switches are opened. -EV6.1.31 The wiring to each TSMP must be protected with a current limiting resistor sized per Table 15. -(Fuses or other forms of overcurrent protection are not permitted). The resistor must be located -as close to the voltage source as practical and must have a power rating of: -Maximum TS Voltage Resistor Value -<= 200 V** 5 kΩ -201 – 400 V 10 kΩ -401 – 600 V 15 kΩ -Table 15-TSMP Resistor Values -31 - - The resistor must be located as close to the voltage source as practical and must have a -power rating of: - 2( -푇푆푉 -푚푎푥 -2 -푅 -) - -but not less than 5 W. -EV6.1.32 A GLV system ground measuring point must be installed next to the TSMPs. This measuring -point must be connected to the GLV system ground, must be a 4 mm shrouded banana jack and -marked "GND". - - -30 - It should be possible to insert a connector with one hand while standing next to the car. -31 - Teams with vehicles with Maximum TS Voltage of 200 V or less may use existing 10 kΩ resistor values upon -application to the rules committee - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 44 - -EV5.4 Accumulator Monitoring System (AMS) Test -EV6.1.33 The AMS will be tested in one of two ways: -1. By varying AMS software setpoints so that actual cell voltage is above or below the trip limit. -2.The AMS may be tested by varying simulated cell voltage to the AMS test connector, following -open accumulator safety procedures, to make the actual cell voltage above or below the -trip limit. -EV6.1.34 The requirement for an AMS test port for commercial accumulator assemblies may be waived, -or alternate tests may be substituted, upon application to the rules committee. - -EV5.5 Rain test -EV6.1.35 Vehicles that pass the rain test will receive a “Rain Certified” sticker and may be operated in -damp or wet conditions. See: ARTICLE D3 - If a vehicle does not pass the rain test, or if the team chooses to forego the rain test, then the -vehicle is not rain certified and will not be allowed to operate in damp or wet conditions. -EV6.1.36 During the rain test: -1. The tractive system must be active. -2. It is not allowed to have anyone seated in the car. -3. The vehicle must be on stands such that none of the driven wheels touch the ground. -EV6.1.37 Water will be sprayed at the car from any possible direction for 120 seconds. The water spray -will be rain-like. There will be no high-pressure water jet directed at the car. -EV6.1.38 The test is passed if the IMD does not trip while water is sprayed at the car and for 120 -seconds after the water spray has stopped. Therefore, the total time of the rain test is 240 -seconds, 120 seconds with water-spray and 120 seconds without. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV6.1.39 Teams must ensure that water cannot accumulate anywhere in the chassis. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV1 POUCH TYPE LITHIUM-ION CELLS - -Important Note: Designing an accumulator system utilizing pouch cells is a substantial -engineering undertaking, which may be avoided by using prismatic or cylindrical cells. - -EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion -and compression requirements, mechanical constraint, and tab connections. -EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, -for review, in their ESF1 and ESF2 submissions. - - - - - - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV6 HIGH VOLTAGE PROCEDURES & TOOLS - -The following rules relate to procedures that must be followed during the Formula Hybrid + -Electric competition. It is strongly recommended that these or similar rules be instituted at the -team's home institutions. -It is also important that all team members view the Formula Hybrid + Electric electrical safety -lecture, which can be found here: -https://www.youtube.com/watch?v=f_zLdzp1egI&feature=youtu.be - -EV6.1 Working on Tractive Systems or accumulators -EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and -that all team members know and follow. -EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated -by using the maintenance plugs. (See EV2.7). -EV6.1.42 If the organizers have provided a “Designated Charging Area”, then opening of or working on -accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical -Tech Inspection. -EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. -EV6.1.44 Whenever the accumulator is open or being worked on, a “Danger High Voltage” sign (or -other warning device provided by the organizers) must be displayed. -Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. -EV6.2 Charging -EV6.1.45 If the organizers have provided a “Designated Charging Area”, then charging tractive system -accumulators is only allowed inside this area. -EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a -(minimum) 16 AWG green wire during charging. -Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the -competition site. -EV6.1.47 If the organizers have provided “High Voltage” signs and/or beacons, these must be displayed -prominently while charging. -EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable -accumulator container. -EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the -accumulators are charged externally or internally) must have a prominent sign with the -following data: -1. Team name -2. RSO Name with cell phone number(s). -EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV6.1.51 All connections of the charger(s) must be isolated and covered, with intact strain relief and no -fraying of wires. -EV6.1.52 No work is allowed on any of the car’s systems during charging if the accumulators are -charging inside of or connected to the car. -EV6.1.53 No grinding, drilling, or any other activity that could produce either sparks or conductive -debris is allowed in the charging area. -EV6.1.54 At least one team member who has knowledge of the charging process must stay with the -accumulator(s) / car during charging. -EV6.1.55 Moving accumulator cells and/or stack(s) around at the event site is only allowed inside a -completely closed accumulator container. -EV6.1.56 High Voltage wiring in an offboard charger does not require conduit; however, it must be a -UL listed flexible cable that complies with NEC Article 400; jacketed. -EV6.1.57 The vehicle charging connection must be appropriately fused for the rating of its connector -and cabling in accordance with EV6.1.1. -EV6.1.58 The vehicle charging port must only be energized when the tractive system is energized and -the TSAL is flashing. -i.e. there must be no voltage present on the charging port when the tractive system is de- -energized. -EV6.1.59 If charging on the vehicle, AMS and IMD systems must be active during charging. The -external charging system must shut down if there is an AMS or IMD fault, or if one of the -shutdown buttons (See EV7.5) is pressed. If charging off the vehicle, equivalent AMS and IMD -protection must be provided. If charging off the vehicle, the charging cart and any exposed -metal must be connected to ac-power ground. -EV6.3 Accumulator Container Hand Cart -EV6.1.60 In case removable accumulator containers are used in order to accommodate charging, a hand -cart to transport the accumulators must be presented at Electrical Tech Inspection. -EV6.1.61 The hand cart must have a brake such that it can only be released using a dead man's switch, -i.e. the brake is always on except when someone releases it by pushing a handle for example. -EV6.1.62 The brake must be capable to stop the fully loaded accumulator container hand cart. -EV6.1.63 The hand cart must be able to carry the load of the accumulator container(s). -EV6.1.64 The hand cart(s) must be used whenever the accumulator container(s) are transported on the -event site. -EV6.4 Required Equipment -Each team must have the following equipment accessible at all times during the event. The -equipment must be in good condition, and must be presented during technical inspection. (See -also Appendix F) -1. Multimeter rated for CAT III use with UL approval. (Must accept shrouded banana -leads.) -2. Multimeter leads rated for CAT III use with shrouded banana leads at one end and -probes at the other end. The probes must have finger guards and no more than 3 mm of - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -exposed metal. (Heat shrink tubing may be used to cover additional exposed metal on -probes.) -3. Multimeter leads rated for CAT III use with shrouded banana plugs at both ends. -4. Insulated tools. (i.e. screwdrivers, wrenches etc. compatible with all fasteners used -inside the accumulator housing.) -5. Face shield which meets ANSI Z87.1-2003 -6. HV insulating gloves (tested within the last14 Months) plus protective outer gloves. -7. HV insulating blanket(s) of sufficient size and quantity to cover the vehicle’s -accumulator(s). -8. Safety glasses with side shields (ANSI Z87.1-2003 compliant) for all team members. - -Note: All electrical safety items must be rated for at least the maximum tractive system -voltage. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV7 REQUIRED ELECTRICAL DOCUMENTATION -EV7.1 Electrical System Form – Part 1 -Part 1 of the ESF requests preliminary design information. This is so that the technical -reviewers can identify areas of concern early and provide feedback to the teams. -EV7.2 Electrical System Form – Part 2 -Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. -This information must be reentered in Part 2. However it is not expected that the fields will -contain identical information, since many aspects of a design will change as a project evolves. -EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the -voltage level, the topology, the wiring in the car and the construction and build of the -accumulator(s). -EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and -show that none of these ratings are exceeded (including wiring components). This includes -stress caused by the environment e.g. high temperatures, vibration, etc. -EV6.1.67 A template containing the required structure for the ESF will be made available online. -EV6.1.68 The ESF must be submitted as a Microsoft Word format file. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV7 - ACRONYMS -AC Alternating Current -AIR Accumulator Isolation Relay -AMS Accumulator Management System -BRB Big Red Buttons (Emergency shutdown switches) -ESF Electrical System Form -ESOK Electrical Systems OK Lamp -GLV Grounded Low Voltage -GLVMS Grounded Low Voltage Master Switch -HVD High Voltage Disconnect -IMD Insulation Monitoring Device -PCB Printed Circuit Board -SMD Segment Maintenance Disconnect -TS Tractive System -TSMP Tractive System Measuring Point -TSMS Tractive System Master Switch -TSV Tractive System Voltage -TSAL Tractive System Active Lamp - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -PART S1 - STATIC EVENTS -Presentation 150 points -Design 200 points -Total 350 points -Table 15 – Static Event Maximum Scores - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE S1 TECHNICAL INSPECTION -1S1.1 Objective -1S1.1.1 The objective of technical inspection is to determine if the vehicle meets the FH+E rules -requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules. -1S1.1.2 For purposes of interpretation and inspection the violation of the intent of a rule is considered a -violation of the rule itself. -1S1.1.3 Technical inspection is a non-scored activity. -1S1.2 Inspection & Testing Requirement -1S1.2.1 Each vehicle must pass all parts of technical inspection and testing, and bear the inspection -stickers, before it is permitted to participate in any dynamic event or to run on the practice -track. The exact procedures and instruments employed for inspection and testing are entirely at -the discretion of the Chief Technical Inspector. -1S1.2.2 Technical inspection will examine all items included on the Inspection Form found on the -Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) -plus any other items the inspectors may wish to examine to ensure conformance with the Rules. -1S1.2.3 All items on the Inspection Form must be clearly visible to the technical inspectors. -1S1.2.4 Visible access can be provided by removing body panels or by providing removable access -panels. -1S1.2.5 Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification -and Repairs, it must remain in the “As-approved” condition throughout the competition and -must not be modified. -1S1.2.6 Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final -and are not permitted to be appealed. -1S1.2.7 Technical inspection is conducted only to determine if the vehicle complies with the -requirements and restrictions of the Formula Hybrid + Electric rules. -1S1.2.8 Technical approval is valid only for the duration of the specific Formula Hybrid + Electric -competition during which the inspection is conducted. -1S1.3 Inspection Condition -Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, -complete and ready-to-run. Technical inspectors will not inspect any vehicle presented -for inspection in an unfinished state. -This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). -Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished. -1S1.4 Inspection Process -Vehicle inspection will consist of five separate parts as follows: -(a) Part 1: Preliminary Electrical Inspection -Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed -to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the -Preliminary Electrical Inspection. -(b) Part 2: Scrutineering - Mechanical - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Each vehicle will be inspected to determine if it complies with the mechanical and structural -requirements of the rules. This inspection will include examination of the driver’s -equipment (ARTICLE T5) a test of the emergency shutdown response time (Rule T4.9) -and a test of the driver egress time (Rule T4.8). -The vehicle will be weighed, and the weight placed on a sticker affixed to the vehicle for reference -during the Design event. -(c) Part 3: Scrutineering – Electrical -Each vehicle will be inspected for compliance with the electrical portions of the rules. -Note: This is an extensive and detailed inspection. Teams that arrive well-prepared can reduce the -time spent in electrical inspection considerably. -The electrical inspection will include all the tests listed in EV9.5.1. -Note: In addition to the electrical rules contained in this document, the electrical inspectors will use -SAE Standard J1673 “High Voltage Automotive Wiring Assembly Design” as the -definitive reference for sound wiring practices. -Note: Parts 1, 2 and 3 must be passed before a vehicle may apply for Part 4 or Part 5 inspection. -(d) Part 4: Tilt Table Tests -Each vehicle will be tested to insure it satisfies both the 45 degree (45°) fuel and fluid tilt -requirement (Rule T8.5.1) and the 60 degree (60°) stability requirement (Rule T6.7). -(e) Part 5: Noise, Master Switch, and Brake Tests. -Noise will be tested by the specified method (Rule IC3.2). If the vehicle passes the noise test then -its master switches (EV7.2) will be tested. -Once the vehicle has passed the noise and master switch tests, its brakes will be tested by the -specified method (see Rule T7.2). -1S1.5 Correction and Re-inspection -1S1.5.1 If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, -then the team must correct the problem and have the car re-inspected. -1S1.5.2 The judges and inspectors have the right to re-inspect any vehicle at any time during the -competition and require correction of non-compliance. -1S1.6 Inspection Stickers -Inspection stickers issued following the completion of any part of technical inspection must be placed on -the upper nose of the vehicle as specified in T13.4 “Technical Inspection Sticker Space”. -Inspection stickers are issued contingent on the vehicle remaining in the required condition -throughout the competition. Inspection stickers may be removed from vehicles that are not in -compliance with the rules or which are required to be re-inspected. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE S2 PROJECT MANAGEMENT -1S2.1 Project Management Objective -The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team’s -ability to structure and execute a project management plan that helps the team define and meet -its goals. -A well written project management plan will not only aid each team in producing a functional, rules -compliant race car on-time, it will make it much easier to create the Change Management -Report and Final Presentation components of the Project Management Event. -Several resources are available to guide work in these areas. They can be found in Appendix C. -No team should begin developing its project management plan without FIRST: -(a) Reviewing “Application of the Project Management Method to Formula Hybrid + -Electric”, by Dr. Edward March, former Formula Hybrid + Electric Chief Project -Management Judge. -(b) Viewing in its entirety Dr. March’s 12-part video series”Formula Hybrid + Electric -Project Management”. -(c) Reading “Formula Hybrid + Electric Project Management Event Scoring Criteria”, found -in Appendix C of the Formula Hybrid + Electric Rules. -(d) Watching an example of a “perfect score” presentation, from a previous competiton. -1S2.2 Project Management Segments -The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of -a written project plan (2) a written change management report, and, (3) an oral final -presentation assessing the overall project management experience to be delivered before a -review board at the competition. - -Segment Points -Project Plan Report 55 -Change Management -Report -40 -Presentation 55 -Total 150 -Table 16 - Project Management Scoring -1S2.3 Submission 1 -- Project Plan Report -1S2.3.1 Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that -reflects its goals and objectives for the upcoming competition, the management structure, the -tasks that will be required to accomplish these objectives, and the time schedule over which -these tasks will be performed. The topics covered in the Project Plan Report should include: -(a) Scope: What will be accomplished, “SMART” goals and objectives (see Appendix C for -more information), major deliverables and milestones. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(b) Operations: Organization of the project team, Work Breakdown Structure, project -timeline, and a budget and funding strategy. -(c) Risk Management: tasks expected to be particularly difficult for the team, but whose -completion is essential for achieving team goals and having a functional car ready before -shipment to the track; contingency plans to mitigate these risks if problems arise during -project execution. -(d) Expected Results: Team goals and objectives quantified into “measure of success”. -These attributes are useful for assigning task priorities and allocating resources during -project execution. They are also used to determine the extent to which the goals have -been achieved. -(e) Change Management Process: The system designed by the team for administering -project change and maintaining communication across all team members. -1S2.3.2 This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of -text. Appendices with supporting information may be attached to the back of the Project Plan. -Note 1: Title pages, appendices and table-of-contents do not count as “pages”. -Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + -Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact -due date. -Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project -Management judges a one half hour online review session may be made available to each team. - -1S2.4 Submission 2 – Change Management Report - -1S2.4.1 Following completion and acceptance of the formal project plan by student team members, the -project team begins the execution phase. During this phase, members of the student team and -other stakeholders must be updated on progress being made and on issues identified that put the -project schedule at risk. The ability of the team to change direction or “pivot” in the face of -risks is often a key factor in a team’s successful completion of the project. Changes to the plan -are adopted and formally communicated through a change management report. Each team must -submit one change management report. See the Formula Hybrid + Electric rules and deadlines -page at: https://www.formula-hybrid.org/deadlines for the exact due date. -1S2.4.2 These reports are not lengthy but are intended to clearly and concisely communicate the -documented changes to the project scope and plan to the team that have been approved using -the Change Management Process. See Appendix C for details on scoring criteria for this report. -The topics covered in the progress report should include: -A) Change Management Process: Detail the Change Management processes and -platforms used by the team. At a minimum, the report is expected to cover: -a. what triggers the process -b. how does information flow through the process -c. how are final decisions transmitted to all team members -d. team-created process flow diagram - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -B) Implementation of the Change Management Process: Teams are expected to -review in detail how the Change Management Process has been used to modify at -least one of their project’s main components (Scope or Goals, Operational Plan, Risk -Management, and Expected Results). The report is expected to cover an example -from start to finish in the process and should also detail the final impact to the -project. -C) Effectiveness of and Improvements to the Change Management Process: At the -end of the project lifecycle, the team is expected to perform an assessment on the -effectiveness of their Change Management Process. Through this assessment, the -team should identify at least two areas of opportunity to improve the process and -include the plans/details to implement those changes. - - -1S2.4.3 The Change Management Report must not exceed two (2) pages. Appendices may be included -with the Report -Note 1: Appendix content does not count as “pages”. -Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- -hybrid.org/deadlines for the due date of the Change Management Report. -1S2.5 Submission Formats -1S2.5.1 The Project Plan and Change Management Report must be submitted electronically in separate -Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, -drawings, and optional content). -1S2.5.2 These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) -and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + -Electric assigned car number and the complete school name, e.g.: - -999_University of SAE_Project Plan.doc(x) -999_University of SAE_ChangeManagement.doc(x) - -1S2.6 Submission Deadlines -The Project Plan and Change Management Report must be submitted by the date and time shown in the -Action Deadlines. Submission instructions are in section A9.2. -See section A9.3 for late submission penalties. -1S2.7 Presentation -1S2.7.1 Objective: Teams must convince a review board that the team’s project has been carefully -planned and effectively and dynamically executed. -1S2.7.2 The Project Management presentation will be made on the static events day. Presentation times -will be scheduled by the organizers and either posted in advance on the competition website or -released during on-site registration (or both). -Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable. -1S2.7.3 Teams that fail to make their presentation during their assigned time period will receive zero -(0) points for that section of the event. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note: Teams are encouraged to arrive fifteen (15) minutes prior to their scheduled presentation time to -deal with unexpected technical difficulties. -The scoring of the event is based on the average of the presentation judging forms. -1S2.8 Presentation Format -The presentation judges should be regarded as a project management or executive review board. -1S2.8.1 Evaluation Criteria - Project Management presentations will be evaluated based on team’s -accomplishments in project planning, execution, change management, and succession planning. -Presentation organization and quality of visual aids as well as the presenters’ delivery, timing -and the team’s response to questions will also be factors in the evaluation. -1S2.8.2 One or more team members will give the presentation to the judges. It is strongly suggested, -although not required, that the project manager accompany the presentation team. All team -members who will give any part of the presentation, or who will respond to the judge’s -questions, must be in the podium area when the presentation starts and must be introduced to -the judges. Team members who are part of this “presentation group” may answer the judge’s -questions even if they did not speak during the presentation itself. -1S2.8.3 Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, -posters, etc. to convey information relevant to their project management case that cannot be -contained within a 12-minute presentation. -1S2.8.4 The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt -the presentation itself. -1S2.8.5 Feedback on presentations will take place immediately following the eight (8) minute question -and answer session. Judges and any team members present may ask questions. The maximum -feedback time for each team is eight (8) minutes. -1S2.8.6 Formula Hybrid + Electric may record a team’s presentation for publication or educational -purposes. Students have the right to opt out of being recorded - however they must notify the -chief presentation judge in writing prior to the beginning of their presentation. -1S2.9 Data Projection Equipment -Projection equipment is provided by the organizers. However, teams are advised to bring their own -computer equipment in the event the organizer’s equipment malfunctions or is not compatible -with their presentation software. -1S2.10 Scoring Formula -The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change -Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is -then normalized as follows: - -퐹퐼푁퐴퐿 푃푅푂퐽퐸퐶푇 푀퐴푁퐴퐺퐸푀퐸푁푇 푆퐶푂푅퐸 = 150 * (푃 -푦표푢푟 -/푃 -푚푎푥 -) - -Where: -P -max -is the highest point score awarded to any team -P -your - is the point score awarded to your team. - - -Notes: - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -1. It is intended that the scores will range from near zero (0) to one hundred and fifty (150) -points, providing a good separation range. -2. The Project Management Presentation Captain may at her/his discretion normalize the -scores of different presentation judging teams for consistency in scoring. -3. Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are -applied after the scores are normalized up to a maximum of the team’s normalized -Project Management Score. - -ARTICLE S3 DESIGN EVENT -1S3.1 Design Event Objective -The concept of the design event is to evaluate the engineering effort that went into the design of the car -(or the substantial modifications to a prior year car), and how the engineering meets the intent -of the market. The car that illustrates the best use of engineering to meet the design goals and -the best understanding of the design by the team members will win the design event. -Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and -that in the Design event, teams are evaluated on their design. Components and systems that are -incorporated into the design as finished items are not evaluated as a student designed unit, but -are only assessed on the team’s selection and application of that unit. For example, teams that -design and fabricate their own shocks are evaluated on the shock design itself as well as the -shock’s application within the suspension system. Teams using commercially available shocks -are evaluated only on selection and application within the suspension system. -1S3.2 Submission Requirements -1S3.2.1 Design Report - Judging will start with a Design Review before the event. -The principal document submitted for the Design Review is a Design Report. This report must not exceed -ten (10) pages, consisting drawings (see S3.4, “Vehicle Drawings”) and content to be defined -by the team (photos, graphs, etc...). -This document should contain a brief description of the vehicle and each category listed in Appendix D -with the majority of the report specifically addressing the engineering, design features, and -vehicle concepts new for this year's event. Include a list of different analysis and testing -techniques (FEA, dynamometer testing, etc.). -Evidence of this analysis and back-up data should be brought to the competition and be available, on -request, for review by the judges. These documents will be used by the judges to sort teams into -the appropriate design groups based on the quality of their review. -Comment: Consider your Design Report to be the “resume of your car”. -1S3.2.2 Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec -Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the -FH+E website. (Do not alter or re-format the template prior to submission.) -Note: The design judges realize that final design refinements and vehicle development may cause the -submitted figures to diverge slightly from those of the completed vehicle. For specifications -that are subject to tuning, an anticipated range of values may be appropriate. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -The Design Report and the Design Spec Sheet, while related documents, must stand alone and be -considered two (2) separate submissions. Two separate file submissions are required. -1S3.3 Sustainability Requirement -1S3.3.1 Instead of a Sustainability Report please add a Sustainability section to the Design Report -answering both of the following prompts: -(a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and -competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each -dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How -have you improved these quantities compared to previous year vehicles? How might you -improve this in your next vehicle? What components or design decisions are the biggest -contributors to the emissions or efficiency, positively or negatively? -(b) How does the vehicle's design and construction contribute to the recyclability and re-use of your -vehicle, especially when it comes to accumulator storage? -1S3.4 Vehicle Drawings -1S3.4.1 The Design report must include all of the following drawings: -(a) One set of 3 view drawings showing the vehicle from the front, top, and side. -(b) A schematic of the high voltage wiring showing the wiring between the major -components. (See section EV13.1) -(c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all -major high voltage components and the routing of high voltage wiring. The components -shown must (at a minimum) include all those listed in the major sections of the ESF (See -section EV13.1) -1S3.5 Submission Formats -1S3.5.1 The Design Report must be submitted electronically in Adobe Acrobat™ Format files (*.pdf -file). These documents must each be a single file (text, drawings, and optional content). These -Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E -assigned car number and the complete school name, e.g.: - 999_University of SAE_Design.pdf - - -1S3.5.2 Design Spec Sheets must be submitted electronically in Microsoft Excel™ Format. The format -of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet -file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula -Hybrid + Electric assigned car number and the complete school name, e.g. - 999_University of SAE_Specs.xls (or) - - 999_University of SAE_Specs.xlsx - -WARNING – Failure to exactly follow the above submission requirements may result in exclusion from -the Design Event. If your files are not submitted in the required format or are not properly -named then they cannot be included in the documents provided to the design judges and your -team will be excluded from the event. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1S3.6 Excess Size Design Reports -If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read -and evaluated by the judges. -Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text -information on them will be scored. -1S3.7 Submission Deadlines -The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the -Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the -event website once report is reviewed for accuracy. Teams should have a printed copy of this -reply available at the competition as proof of submission in the event of discrepancy. -1S3.8 Penalty for Late Submission or Non-Submission -See section A9.3 for late submission penalties. -1S3.9 Penalty for Unsatisfactory Submissions -1S3.9.1 Teams that submit a Design Report or a Design Spec Sheet which is deemed to be -unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. -They may be allowed to compete, but receive a penalty of up to seventy five (75) points. -Failure to fully document the changes made for the current year’s event to a vehicle used in -prior FH+E events, or reuse of any part of a prior year design report, are just two examples of -Unsatisfactory Submissions -1S3.10 Vehicle Condition -1S3.10.1 With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See -A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, -complete and ready-to-run. The judges will not evaluate any car that is presented at the design -event in what they consider to be an unfinished state. -Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be -assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. -Note: Cars can be presented for design judging without having passed technical inspection, or if final -tuning and setup is still in progress. -1S3.11 Judging Criteria -The design judges will evaluate the engineering effort based upon the team’s Design Report, Spec Sheet, -responses to questions and an inspection of the car. The design judges will inspect the car to -determine if the design concepts are adequate and appropriate for the application (relative to the -objectives set forth in the rules). It is the responsibility of the judges to deduct points on the -design judging form, as given in Appendix D if the team cannot adequately explain the -engineering and construction of the car. -1S3.12 Judging Sequence -The actual format of the design event may change from year to year as determined by the organizing -body. In general, the design event includes a brief overview presentation in front of the physical -vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the -majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve -two parts: -(a) Initial judging of all vehicles - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(b) Final judging ranking the top 2 to 4 vehicles. -1S3.13 Scoring Formula -The scoring of the event is based on either the average of the scores from the Design Judging Forms (see -Appendix C) or the consensus of the judging team. - -퐷퐸푆퐼퐺푁 푆퐶푂푅퐸 = 200 -푃 -푦표푢푟 -푃 -푚푎푥 - - -Where: P -max - is the highest point score awarded to any team in your vehicle category -P -your - is the point score awarded to your team - -Notes: -It is intended that the scores will range from near zero (0) to two hundred (200) to provide good -separation. -● The Lead Design Judge may, at his/her discretion, normalize the scores of different judging -teams. -● Penalties applied during the Design Event (see Appendix D “Design Judging Form - -Miscellaneous”) are applied before the scores are normalized. -● Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are -applied after the scores are normalized up to a maximum of the teams normalized Design -Score. - -1S3.14 Support Materials -Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example -components or other materials that they believe are needed to support the presentation of the -vehicle and the discussion of their development process. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -PART 1D - DYNAMIC EVENTS -ARTICLE D1 DYNAMIC EVENTS GENERAL -1D1.1 Maximum Scores -Event -Acceleration 100 Points -Autocross 200 Points -Endurance 350 Points -Total 650 Points -Table 17 - Dynamic Event Maximum Scores -1D1.2 Driving Behavior -During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event -Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to -an official, worker, spectator or other driver, will result in a penalty. -Depending on the potential consequences of the behavior, the penalty will range from an admonishment, -to disqualification of that driver from all events, to disqualification of the team from that event, -to exclusion of the team from the Competition. -1D1.3 Safety Procedures -1D1.3.1 Drivers must properly use all required safety equipment at all times while staged for an event, -while running the event, and while stopped on track during an event. Required safety -equipment includes all drivers gear and all restraint harnesses. -1D1.3.2 In the event it is necessary to stop on track during an event the driver must attempt to position -the vehicle in a safe position off of the racing line. -1D1.3.3 Drivers must not exit a vehicle stopped on track during an event until directed to do so by an -event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or -electrical problems. -1D1.4 Vehicle Integrity and Disqualification -1D1.4.1 During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be -maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged -suspension, brakes or steering components, electrical tractive system fault, or any condition that -could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid -reason for exclusion by the officials. -1D1.4.2 The safety systems monitoring the electrical tractive system must be functional as indicated by -an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event. -1D1.4.3 If vehicle integrity is compromised during the Endurance Event, scoring for that segment will -be terminated as of the last completed lap. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE D2 WEATHER CONDITIONS -The organizer reserves the right to alter the conduct and scoring of the competition based on weather -conditions. -ARTICLE D3 RUNNING IN RAIN -A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See -EV10.5) -1D3.1 Operating Conditions -The following operating conditions will be recognized at Formula Hybrid + Electric: -(a) Dry – Overall the track surface is dry. -(b) Damp – Significant sections of the track surface are damp. -(c) Wet – The entire track surface is wet and there may be puddles of water. -(d) Weather Delay/Cancellation – Any situation in which all, or part, of an event is delayed, -rescheduled or canceled in response to weather conditions. -1D3.2 Decision on Operating Conditions -The operating condition in effect at any time during the competition will be decided by the competition -officials. -1D3.3 Notification -If the competition officials declare the track(s) to be "Damp" or "Wet", -(a) This decision will be announced over the public address system, and -(b) A sign with either "Damp" or "Wet" will be prominently displayed at both the starting -line(s) and the start-finish line of the event(s), and the entry gate to the "hot" area. -1D3.4 Tire Requirements -The operating conditions will determine the type of tires a car may run as follows: -(a) Dry – Cars must run their Dry Tires, except as covered in D3.8. -(b) Damp – Cars may run either their Dry Tires or Rain Tires, at each team’s option. -(c) Wet – Cars must run their Rain Tires. -1D3.5 Event Rules -All event rules remain in effect. -1D3.6 Penalties -All penalties remain in effect. -1D3.7 Scoring -No adjustments will be made to teams' times for running in "Damp" or "Wet" conditions. The minimum -performance levels to score points may be adjusted if deemed appropriate by the officials. -1D3.8 Tire Changing -1D3.8.1 During the Acceleration or Autocross Events: - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Within the provisions of D3.4 above, teams may change from Dry Tires to Rain Tires or vice versa at any -time during those events at their own discretion. -1D3.8.2 During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any -time while their car is in the staging area inside the "hot" area. -All tire changes after a car has received the "green flag" to start the Endurance Event must take place in -the Driver Change Area. -(a) If the track was "Dry" and is declared "Damp": -(i) Teams may start on either Dry or Rain Tires at their option. -(ii) Teams that are on the track when it is declared "Damp", may elect, at their option, to -pit in the Driver Change Area and change to Rain Tires under the terms spelled out -below in "Tire Changes in the Driver Change Area". -(b) If the track is declared "Wet": -(i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver -Change Area. -(ii) Those cars that are already fitted with "Rain" tires will be allowed restart without delay -subject to the discretion of the Event Captain/Clerk of the Course. -(iii)Those cars without "Rain" tires will be required to fit them under the terms spelled out -below in "Tire Changes in the Driver Change Area". They will then be allowed to re- -start at the discretion of the Event Captain/Clerk of the Course. -(c) If the track is declared "Dry" after being "Damp" or "Wet": -The teams will NOT be required to change back to “Dry” tires. -(d) Tire Changes at Team's Option: -(i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to -change tires at their option. -(ii) If a team elects to change from “Dry” to “Rain” tires, the time to make the change will -NOT be included in the team’s total time. -(iii) If a team elects to change from “Rain” tires back to “Dry” tires, the time taken to -make the change WILL be included in the team’s total time for the event, i.e. it will -not be subtracted from the total elapsed time. However, a change from “Rain” tires -back to “Dry” tires will not be permitted during the driver change. -(iv) To make such a change, the following procedure must be followed: -1. Team makes the decision -2. Team has tires and equipment ready near Driver Change Area -3. The team informs the Event Captain/Clerk of the Course they wish their car to be -brought in for a tire change -4. Officials inform the driver by means of a sign or flag at the checker flag station -5. Driver exits the track and enters the Driver Change Area in the normal manner. -(e) Tire Changes in the Driver Change Area: - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(i) Per Rule D7.13.2 no more than three people for each team may be present in the -Driver Change Area during any tire change, e.g. a driver and two crew or two drivers -and one crew member. -(ii) No other work may be performed on the cars during a tire change. -(iii) Teams changing from "Dry" to "Rain" tires will be allowed a maximum of ten (10) -minutes to make the change. -(iv) If a team elects to change from "Dry" to "Rain" tires during their scheduled driver -change, they may do so, and the total allowed time in the Driver Change Area will be -increased without penalty by ten (10) minutes. -(v) The time spent in the driver change area of less than 10 minutes without driver change -will not be counted in the team's total time for the event. Any time in excess of these -times will be counted in the team's total time for the event. -ARTICLE D4 DRIVER LIMITATIONS -1D4.1 Two Event Limit -1D4.1.1 An individual team member may not drive in more than two (2) events. -Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum -of four (4) drivers is required to participate in all possible runs in all of the dynamic events. -1D4.1.2 It is the team’s option to participate in any event. The team may forfeit any runs in any -performance event. -1D4.1.3 In order to drive in the endurance event, a driver must have attended the mandatory drivers -meeting and walked the endurance track with an official. -1D4.1.4 The time and location of the meeting and walk-around will be announced at the event. -ARTICLE D5 ACCELERATION EVENT -1D5.1 Acceleration Objective -The acceleration event evaluates the car’s acceleration in a straight line on flat pavement. -1D5.2 Acceleration Procedure -The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The -foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be -used to indicate the approval to begin, however, time starts only after the vehicle crosses the -start line. There will be no particular order of the cars in the event. A driver has the option to -take a second run immediately after the first. -1D5.3 Acceleration Event -1D5.3.1 All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the -acceleration runs. -1D5.3.2 Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during -any of their acceleration runs. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D5.4 Tire Traction – Limitations -Special agents that increase traction may not be added to the tires or track surface and “burnouts” are not -allowed. -1D5.5 Acceleration Scoring -The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the -time the car crosses the starting line until it crosses the finish line. -1D5.6 Acceleration Penalties -1D5.6.1 Cones Down Or Out (DOO) -A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred -on that particular run to give the corrected elapsed time. -1D5.6.2 Off Course -An Off Course (OC) will result in a DNF for that run. -1D5.7 Did Not Attempt -The organizer will determine the allowable windows for each event and retains the right to adjust for -weather or technical delays. Cars that have not run by the end of the event will be scored as a -Did Not Finish (DNF). -1D5.8 Acceleration Scoring Formula -The equation below is used to determine the scores for the Acceleration Event. The first term represents -the “Start Points”, the second term the “Participation Points” and the last term the -“Performance Points”. -1D5.8.1 A team is awarded “Start Points” for crossing the start line under its own power. A team is -awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded -“Performance Points” based on its corrected elapsed time relative to the time of the best team in -its class. - -퐴퐶퐶퐸퐿퐸푅퐴푇퐼푂푁 푆퐶푂푅퐸=10 +15+ (75 × -푇 -푚푖푛 -푇 -푦표푢푟 -) - -Where: -T -your - is the lowest corrected elapsed time (including penalties) recorded by your team. -T -min - is the lowest corrected elapsed time (including penalties) recorded by the fastest team -in your vehicle category. -Note: A Did Not Start (DNS) will score (0) points for the event -ARTICLE D6 AUTOCROSS EVENT -1D6.1 Autocross Objective -The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a -tight course without the hindrance of competing cars. The autocross course will combine the -performance features of acceleration, braking, and cornering into one event. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D6.2 Autocross Procedure -1D6.2.1 There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) -timed laps will be run (weather and time permitting) by each driver and the best lap time will -stand as the time for that heat. -1D6.2.2 The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. -The timer starts only after the car crosses the start line. -1D6.2.3 There will be no particular order of the cars to run each heat, but a driver has the option to take -a second run immediately after the first. -1D6.2.4 The organizer will determine the allowable windows for each event and retains the right to -adjust for weather or technical delays. Cars that have not run by the end of the event will be -scored as a Did Not Start (DNS). -1D6.3 Autocross Course Specifications & Speeds -1D6.3.1 The following specifications will suggest the maximum speeds that will be encountered on the -course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). -(a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 -m (150 feet) with wide turns on the ends. -(b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. -(c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). -(d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. -(e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track -width will be 3.5 m (11.5 feet). -1D6.3.2 The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete -a specified number of runs. -1D6.4 Autocross Penalties -The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed -time: -1D6.4.1 Cone Down or Out (DOO) -Two (2) seconds per cone, including any after the finish line. -1D6.4.2 Off Course -Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be -assessed. Penalties will not be assessed for accident avoidance or other reasons deemed -sufficient by the track officials. -If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off -the paved surface will count as an "off course". Two (2) wheels off will not incur an immediate -penalty; however, consistent driving of this type may be penalized at the discretion of the event -officials. -1D6.4.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one "off-course" per occurrence. Each -occurrence will incur a twenty (20) second penalty. -1D6.4.4 Stalled & Disabled Vehicles - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -If a car stalls and cannot restart without external assistance, the car will be deemed disabled. Cars deemed -disabled will be cleared from the track by the track workers. At the direction of the track -officials team members may be instructed to retrieve the vehicle. Vehicle recovery may only be -done under the control of the track officials. -1D6.5 Corrected Elapsed Time -The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time. -1D6.6 Best Run Scored -The time required to complete each run will be recorded and the team’s best corrected elapsed time will -be used to determine the score. -1D6.7 Autocross Scoring Formula -The equation below is used to determine the scores for the Autocross Event. The first term represents the -“Start Points”, the second term the “Participation Points” and the last term the “Performance -Points”. A team is awarded “Start Points” for crossing the start line under its own power. A -team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is -awarded “Performance Points” based on its corrected elapsed time relative to the time of the -best team in its vehicle category. -퐴푈푇푂퐶푅푂푆푆 푆퐶푂푅퐸=20+30+ (150× -푇 -푚푖푛 -푇 -푦표푢푟 -) - -Where: -T -min - is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your -vehicle category over their four heats. -T -your - is the lowest corrected elapsed time (including penalties) recorded by your team over the four -heats. - -Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event. -ARTICLE D7 ENDURANCE EVENT -1D7.1 Right to Change Procedure -The following are general guidelines for conducting the endurance event. The organizers reserve the right -to establish procedures specific to the conduct of the event at the site. All such procedures will -be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or -on the official bulletin board at the event. -1D7.2 Endurance Objective -The endurance event is designed to evaluate the vehicle’s overall performance, reliability and efficiency. -Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the -least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated -distance on a fixed amount of energy in the least amount of time. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D7.3 Endurance General Procedure -1D7.3.1 In general, the team completing the most laps in the shortest time will earn the maximum points -available for this event. Formula Hybrid + Electric uses an endurance scoring formula that -rewards both speed and distance traveled. (See D7.18) -1D7.3.2 The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 -mile) segments. -1D7.3.3 Driver changes will be made between each segment. -1D7.3.4 Wheel to wheel racing is prohibited. -1D7.3.5 Passing another vehicle may only be done in an established passing zone or under the control of -a course marshal. -1D7.4 Endurance Course Specifications & Speeds -Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr -(29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). -Endurance courses will be configured, where possible, in a manner which maximizes the -advantage of regenerative braking. -(a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than -61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several -locations. -(b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. -(c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). -(d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. -(e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). -(f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius -turns, elevation changes, etc. -1D7.5 Energy -1D7.5.1 All vehicles competing in the endurance event must complete the event using only the energy -stored on board the vehicle at the start of the event plus any energy reclaimed through -regenerative braking during the event. Alternatively, vehicles may compete in the endurance -event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E -approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy -value will not be counted towards the endurance score. If energy meter data is missing or -appears inaccurate, the vehicle may receive start and performance points as appropriate, but -“performance points” may be forfeited at organizers discretion. -1D7.5.2 Prior to the beginning of the endurance event, all competitors may charge their electric -accumulators from any approved power source they wish. -1D7.5.3 Once a vehicle has begun the endurance event, recharging accumulators from an off-board -source is not permitted. -1D7.6 Hybrid Vehicles -1D7.6.1 All Hybrid vehicles will begin the endurance event with the defined amount of energy on -board. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D7.6.2 The amount of energy allotted to each team is determined by the Formula Hybrid + Electric -Rules Committee and is listed in Table 1 – 2024 Energy and Accumulator Limits -1D7.6.3 The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by -an amount equal to the stated energy capacity of the vehicle’s accumulator(s). -1D7.6.4 There will be no extra points given for fuel remaining at the end of the endurance event. -1D7.7 Fueling - Hybrid Vehicles -1D7.7.1 Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel -accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will -then be added to the tank by the organizers and the filler will be sealed. -1D7.7.2 Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and -supporting the vehicle to facilitate draining the fuel tank. -1D7.7.3 Once fueled, the vehicle must proceed directly to the endurance staging area. -1D7.8 Charging - Electric Vehicles -Each Electric vehicle will begin the endurance event with whatever energy can be stored in its -accumulator(s). -1D7.9 Endurance Run Order -Endurance run order will be determined by the team’s corrected elapsed time in the autocross. Teams with -the best autocross corrected elapsed time will run first. If a team did not score in the autocross -event, the run order will then continue based on acceleration event times, followed by any -vehicles that may not have completed either previous dynamic event. Endurance run order will -be published at least one hour before the endurance event is run. -1D7.10 Entering the Track -At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter -based on traffic conditions. -1D7.11 Endurance Vehicle Restarting -1D7.11.1 The vehicle must be capable of restarting without external assistance at all times once the -vehicle has begun the event. -1D7.11.2 If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following -it (approximately one (1) minute) to restart. -1D7.11.3 At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the -electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8). -1D7.11.4 If restarts are not accomplished within the above times, the vehicle will be deemed disabled and -scored as a DNF for the event. -1D7.12 Breakdowns & Stalls -1D7.12.1 If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter -the course. -1D7.12.2 If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course -where it went off, but no work may be performed on the vehicle -1D7.12.3 If a vehicle stops on track and cannot be restarted without external assistance, the track workers -will push the vehicle clear of the track. At the discretion of event officials, two (2) team -members may retrieve the vehicle under direction of the track workers. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D7.13 Endurance Driver Change Procedure -1D7.13.1 There must be a minimum of two (2) drivers for the endurance event, with a maximum of four -(4) drivers. One driver may not drive in two consecutive segments. -1D7.13.2 Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the -driver change area. If a driver elects to come into driver change before the end of their 11km -segment, they will not be allowed to make up the laps remaining in that segment. -1D7.13.3 Only three (3) team members, including the driver or drivers, will be allowed in the driver -change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers -and/or change tires will be carried into this area (no tool chests, electronic test equipment, -computers, etc.). -Extra people entering the driver change area will result in a twenty (20) point penalty to the final -endurance score for each extra person entering the area. -Note: Teams are permitted to “tag-team” in and out of the driver change area as long as there are no more -than three (3) team members present at any one time. -1D7.13.4 The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. -These systems must remain shut down until the new driver is in place. (See D7.13.8) -1D7.13.5 The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit -the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be -secured in the vehicle. -1D7.13.6 Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle -comes to a halt in the driver change area and stops when the correct adjustment of the driver -restraints and safety equipment has been verified by the driver change area official. Any time -taken over the allowed time will incur a penalty. (See D7.17.2(k)) -1D7.13.7 During the driver change, teams are not permitted to do any work on, or make any adjustments -to the vehicle with the following exceptions: -(a) Changes required to accommodate each driver -(b) Tire changing as covered by D3.8 “Tire Changing”, -(c) Actuation of the following buttons/switches to assist the driver with re-energizing the -electrical tractive system -(i) Ground Low Voltage Master Switch -(ii) Tractive System Master Switch -(iii) Side Mounted BRBs -(iv) IMD Reset (Button/Switch must be clearly marked “IMD RESET”) -(v) AMS Reset (Button/Switch must be clearly marked “AMS RESET”) - -1D7.13.8 Once the new driver is in place and an official has verified the correct adjustment of the driver -restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the -electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive -system (IC engine, electrical tractive system, or both) and begin moving out of the driver -change area. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -The ESOK indicator must be illuminated and verified by the driver change area official prior to -the vehicle being released out of the driver change area. - -1D7.13.9 The process given in Error! Reference source not found. through D7.13.8 will be repeated for -each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km -(27.34 miles) distance or until the endurance event track closing time, at which point the -vehicle will be signaled off the course. -1D7.13.10 The driver change area will be placed such that the timing system will see the driver -change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this -extra-long lap will not count into a team’s final time. If a driver change takes longer than three -minutes, the extra time will be added to the team’s final time. -1D7.13.11 Once the vehicle has begun the event, electronic adjustment to the vehicle may only be -made by the driver using driver-accessible controls. -1D7.14 Endurance Lap Timing -1D7.14.1 Each lap of the endurance event will be individually timed either by electronic means, or by -hand. -1D7.14.2 Each team is required to time their vehicle during the endurance event as a backup in case of a -timing equipment malfunction. An area will be provided where a maximum of two team -members can perform this function. All laps, including the extra-long laps must be recorded -legibly and turned in to the organizers at the end of the endurance event. Standardized lap -timing forms will be provided by the organizers. -1D7.15 Exiting the Course -1D7.15.1 Timing will stop when the vehicle crosses the start/finish line. -1D7.15.2 Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter -the driver change area before coming to a stop. There will be no “cool down” laps. -1D7.15.3 The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be -penalized. -1D7.16 Endurance Minimum Speed Requirement -1D7.16.1 A car's allotted number of laps, including driver’s changes, must be completed in a maximum -of 120 minutes elapsed time from the start of that car's first lap. -Cars that are unable to comply will be flagged off the course and their actual completed laps tallied. -1D7.16.2 If a vehicle’s lap time becomes greater than Max Average Lap Time (See: D7.18) it may be -declared “out of energy”, and flagged off the course. The vehicle will be deemed disabled and -scored as a DNF for the event. -Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring -formulas. Attempting to complete additional laps at too low a speed can cost a team points. -1D7.17 Endurance Penalties -1D7.17.1 Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the -track official. -1D7.17.2 The penalties in effect during the endurance event are listed below. -(a) Cone down or out (DOO) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - Two (2) seconds per cone. This includes cones before the start line and after the finish line. -(b) Off Course (OC) - For an OC, the driver must re-enter the track at or prior to the missed gate or a twenty (20) -second penalty will be assessed. - If a paved surface edged by grass or dirt is being used as the track, e.g. a go kart track, four -(4) wheels off the paved surface will count as an "off course". Two (2) wheels off will not -incur an immediate penalty. However, consistent driving of this type may be penalized at -the discretion of the event officials. -(c) Missed Slalom - Missing one or more gates of a given slalom will incur a twenty (20) second penalty. -(d) Failure to obey a flag - Penalty: 1 minute -(e) Over Driving (After a closed black flag) - Penalty: 1 Minute -(f) Vehicle to Vehicle Contact - Penalty: DISQUALIFIED -(g) Running Out of Order - Penalty: 2 Minutes -(h) Mechanical Black Flag -See D7.23.3(b). No time penalty. The time taken for mechanical or electrical inspection under a -“mechanical black flag” is considered officials’ time and is not included in the team’s total -time. However, if the inspection reveals a mechanical or electrical integrity problem the -vehicle may be deemed disabled and scored as a DNF for the event. -(i) Reckless or Aggressive Driving - Any reckless or aggressive driving behavior (such as forcing another vehicle off the track, -refusal to allow passing, or close driving that would cause the likelihood of vehicle contact) -will result in a black flag for that driver. - When a driver receives a black flag signal, he/she must proceed to the penalty box to listen -to a reprimand for his/her driving behavior. - The amount of time spent in the penalty box will vary from one (1) to four (4) minutes -depending upon the severity of the offense. - If it is impossible to impose a penalty by a stop under a black flag, e.g. not enough laps left, -the event officials may add an appropriate time penalty to the team’s elapsed time. -(j) Inexperienced Driver - The Event Captain or Clerk of the Course may disqualify a driver if the driver is too slow, -too aggressive, or driving in a manner that, in the sole opinion of the event officials, -demonstrates an inability to properly control their vehicle. This will result in a DNF for the -event. -(k) Driver Change - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - Driver changes taking longer than three (3) minutes will be penalized. -1D7.18 Endurance Scoring Formula -The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time -for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, -etc.), plus any penalty time and penalty points assessed against all drivers and team members. -Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the -DNF. -1D7.18.1 The equation below is used to determine the scores for the Endurance Event. The first term -represents the “Start Points”, the second term the “Participation Points” and the last term the -“Performance Points”. -A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded -“Participation Points” if it completes a minimum of one (1) lap. A team is awarded -“Performance Points” based on the number of laps it completes relative to the best team in its -vehicle category (distance factor) and its corrected average lap time relative to the event -standard time and the time of the best team in its vehicle category (speed factor). - -퐸푁퐷푈푅퐴푁퐶퐸 푆퐶푂푅퐸 = 35+52.5+ 262.5 +. +EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one +in the front, and one from each side of the vehicle. +28 +Some compliant devices can be found here: https://www.mspindy.com/ + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV6.1.13 The vehicle must not make any other sounds similar to the Ready-to-Drive sound. +EV4.13 Electrical Systems OK Lamps (ESOK) +ESOK indicator lamps are required for hybrid and hybrid-in-progress vehicles. They are not +required for electric-only vehicles. +The purpose of the ESOK indicators is to ensure that a hybrid vehicle is operating with the +electric traction system engaged, and to prevent IC-only operation in dynamic events. +This requirement is in addition to TSAL indicators which are required for all vehicle classes. +EV6.1.14 Hybrid vehicles must have two ESOK lamps. One mounted on each side of the roll bar in the +vicinity of the side-mounted shutdown buttons (EV7.5) that can easily be seen from the sides of +the vehicle.The indicators must be Amber, complying with DOT FMVSS 108 for trailer +clearance lamps +29 +. See Figure 42. They must be clearly labeled “ESOK”. +EV6.1.15 The ESOK indicators must be powered from the circuit feeding the AIR (contactor) coils. If +there is an electrical system fault, or a “BRB” is pressed, or the TS master switch is opened, the ESOK +indicators must extinguish. See Figure 38 for an example of ESOK lamp wiring. +See Figure 38 for an example of ESOK lamp wiring. +Figure 42 – Typical ESOK Lamp +EV4.14 Insulation Monitoring Device (IMD) +EV6.1.16 The status of the IMD must be shown to the driver by a red indicator light in the cockpit that is +easily visible even in bright sunlight. This indicator must light up if the IMD detects an +insulation failure or if the IMD detects a failure in its own operation e.g. when it loses reference +ground. +EV6.1.17 The IMD indicator light must be clearly marked with the lettering “IMD” or “GFD” (Ground +Fault Detector). +EV4.15 Accumulator Voltage Indicator +EV6.1.18 Any removable accumulator container must have a prominent indicator, such as an LED, that +is visible through a closed container that will illuminate whenever a voltage greater than 60 +VDC is present at the vehicle side of the AIRs. +EV6.1.19 The accumulator voltage indicator must be directly controlled by voltage present at the +container connectors using analog electronics. No software control is permitted. +29 +https://www.ecfr.gov/cgi-bin/text-idx?node=se49.6.571_1108 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV4.16 Accumulator Monitoring System (AMS) +EV6.1.20 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that +is easily visible even in bright sunlight. This indicator must light up if the AMS detects an +accumulator failure or if the AMS detects a failure in its own operation. +EV6.1.21 The AMS indicator light must be clearly marked with the lettering “AMS”. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV5 ELECTRICAL SYSTEM TESTS +Note: During electrical tech inspection, these tests will normally be done in the following +order: IMD test, insulation measurement, AMS function then Rain test. +EV5.1 Insulation Monitoring Device (IMD) Test +EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done +by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive +vehicle parts while the tractive system is active, as shown in the example below. +EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault +resistance of 250 ohm/volt (50% below the response value). +Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. +EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the +first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take +part in any dynamic event if any of the seals are broken until the IMD test is successfully +passed again. +Figure 43 – Insulation Monitoring Device Test +EV5.2 Insulation Measurement Test +EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive +system and control system ground. The available measurement voltages are 250 V, 500 V and +750 V DC. +All cars will be measured with the next available voltage level. For example, a 175 V system +will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V +system will be measured with 750 V etc. +EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least +500 ohm/volt related to the maximum nominal tractive system operation voltage. +EV5.3 Tractive System Measuring Points (TSMP) +The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, +EV2.8.3. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +They may also be used to ensure the isolation of the tractive system of the vehicle during +possible rescue operations after an accident or when work on the vehicle is to be done. +EV6.1.27 Two tractive system voltage measuring points must be installed in an easily accessible +30 +well +marked location. Access must not require the removal of body panels. The TSMP jacks must be +marked "Gnd", "TS+" and "TS-". +EV6.1.28 The TSMPs must be protected by a non-conductive housing that can be opened without tools. +EV6.1.29 Shrouded 4 mm banana jacks that accept shrouded (sheathed) banana plugs with non- +retractable shrouds must be used for the TSMPs and the system ground measuring point +(EV10.3.6). +See Figure 44 for examples of the correct jacks and of jacks that are not permitted because they +do not accept the required plugs (also shown). +EV6.1.30 The TSMPs must be connected, via current limiting resistors, to the positive and negative +motor controller/inverter supply lines. (See Figure 38) The TSMP must measure motor +controller input voltage even if segmenting or TSMS switches are opened. +EV6.1.31 The wiring to each TSMP must be protected with a current limiting resistor sized per Table 15. +(Fuses or other forms of overcurrent protection are not permitted). The resistor must be located +as close to the voltage source as practical and must have a power rating of: +Maximum TS Voltage Resistor Value +<= 200 V** 5 kΩ +201 – 400 V 10 kΩ +401 – 600 V 15 kΩ +Table 15-TSMP Resistor Values +31 +The resistor must be located as close to the voltage source as practical and must have a +power rating of: +2 ( +𝑇𝑆𝑉 +𝑚𝑎𝑥 +2 +𝑅 +) +but not less than 5 W. +EV6.1.32 A GLV system ground measuring point must be installed next to the TSMPs. This measuring +point must be connected to the GLV system ground, must be a 4 mm shrouded banana jack and +marked "GND". +30 +It should be possible to insert a connector with one hand while standing next to the car. +31 +Teams with vehicles with Maximum TS Voltage of 200 V or less may use existing 10 kΩ resistor values upon +application to the rules committee + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 44 +EV5.4 Accumulator Monitoring System (AMS) Test +EV6.1.33 The AMS will be tested in one of two ways: +1. By varying AMS software setpoints so that actual cell voltage is above or below the trip limit. +2.The AMS may be tested by varying simulated cell voltage to the AMS test connector, following +open accumulator safety procedures, to make the actual cell voltage above or below the +trip limit. +EV6.1.34 The requirement for an AMS test port for commercial accumulator assemblies may be waived, +or alternate tests may be substituted, upon application to the rules committee. +EV5.5 Rain test +EV6.1.35 Vehicles that pass the rain test will receive a “Rain Certified” sticker and may be operated in +damp or wet conditions. See: ARTICLE D3 +If a vehicle does not pass the rain test, or if the team chooses to forego the rain test, then the +vehicle is not rain certified and will not be allowed to operate in damp or wet conditions. +EV6.1.36 During the rain test: +1. The tractive system must be active. +2. It is not allowed to have anyone seated in the car. +3. The vehicle must be on stands such that none of the driven wheels touch the ground. +EV6.1.37 Water will be sprayed at the car from any possible direction for 120 seconds. The water spray +will be rain-like. There will be no high-pressure water jet directed at the car. +EV6.1.38 The test is passed if the IMD does not trip while water is sprayed at the car and for 120 +seconds after the water spray has stopped. Therefore, the total time of the rain test is 240 +seconds, 120 seconds with water-spray and 120 seconds without. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV6.1.39 Teams must ensure that water cannot accumulate anywhere in the chassis. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV1 POUCH TYPE LITHIUM-ION CELLS +Important Note: Designing an accumulator system utilizing pouch cells is a substantial +engineering undertaking, which may be avoided by using prismatic or cylindrical cells. +EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion +and compression requirements, mechanical constraint, and tab connections. +EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, +for review, in their ESF1 and ESF2 submissions. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV6 HIGH VOLTAGE PROCEDURES & TOOLS +The following rules relate to procedures that must be followed during the Formula Hybrid + +Electric competition. It is strongly recommended that these or similar rules be instituted at the +team's home institutions. +It is also important that all team members view the Formula Hybrid + Electric electrical safety +lecture, which can be found here: +https://www.youtube.com/watch?v=f_zLdzp1egI&feature=youtu.be +EV6.1 Working on Tractive Systems or accumulators +EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and +that all team members know and follow. +EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated +by using the maintenance plugs. (See EV2.7). +EV6.1.42 If the organizers have provided a “Designated Charging Area”, then opening of or working on +accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical +Tech Inspection. +EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. +EV6.1.44 Whenever the accumulator is open or being worked on, a “Danger High Voltage” sign (or +other warning device provided by the organizers) must be displayed. +Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. +EV6.2 Charging +EV6.1.45 If the organizers have provided a “Designated Charging Area”, then charging tractive system +accumulators is only allowed inside this area. +EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a +(minimum) 16 AWG green wire during charging. +Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the +competition site. +EV6.1.47 If the organizers have provided “High Voltage” signs and/or beacons, these must be displayed +prominently while charging. +EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable +accumulator container. +EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the +accumulators are charged externally or internally) must have a prominent sign with the +following data: +1. Team name +2. RSO Name with cell phone number(s). +EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +EV6.1.51 All connections of the charger(s) must be isolated and covered, with intact strain relief and no +fraying of wires. +EV6.1.52 No work is allowed on any of the car’s systems during charging if the accumulators are +charging inside of or connected to the car. +EV6.1.53 No grinding, drilling, or any other activity that could produce either sparks or conductive +debris is allowed in the charging area. +EV6.1.54 At least one team member who has knowledge of the charging process must stay with the +accumulator(s) / car during charging. +EV6.1.55 Moving accumulator cells and/or stack(s) around at the event site is only allowed inside a +completely closed accumulator container. +EV6.1.56 High Voltage wiring in an offboard charger does not require conduit; however, it must be a +UL listed flexible cable that complies with NEC Article 400; jacketed. +EV6.1.57 The vehicle charging connection must be appropriately fused for the rating of its connector +and cabling in accordance with EV6.1.1. +EV6.1.58 The vehicle charging port must only be energized when the tractive system is energized and +the TSAL is flashing. +i.e. there must be no voltage present on the charging port when the tractive system is de- +energized. +EV6.1.59 If charging on the vehicle, AMS and IMD systems must be active during charging. The +external charging system must shut down if there is an AMS or IMD fault, or if one of the +shutdown buttons (See EV7.5) is pressed. If charging off the vehicle, equivalent AMS and IMD +protection must be provided. If charging off the vehicle, the charging cart and any exposed +metal must be connected to ac-power ground. +EV6.3 Accumulator Container Hand Cart +EV6.1.60 In case removable accumulator containers are used in order to accommodate charging, a hand +cart to transport the accumulators must be presented at Electrical Tech Inspection. +EV6.1.61 The hand cart must have a brake such that it can only be released using a dead man's switch, +i.e. the brake is always on except when someone releases it by pushing a handle for example. +EV6.1.62 The brake must be capable to stop the fully loaded accumulator container hand cart. +EV6.1.63 The hand cart must be able to carry the load of the accumulator container(s). +EV6.1.64 The hand cart(s) must be used whenever the accumulator container(s) are transported on the +event site. +EV6.4 Required Equipment +Each team must have the following equipment accessible at all times during the event. The +equipment must be in good condition, and must be presented during technical inspection. (See +also Appendix F) +1. Multimeter rated for CAT III use with UL approval. (Must accept shrouded banana +leads.) +2. Multimeter leads rated for CAT III use with shrouded banana leads at one end and +probes at the other end. The probes must have finger guards and no more than 3 mm of + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +exposed metal. (Heat shrink tubing may be used to cover additional exposed metal on +probes.) +3. Multimeter leads rated for CAT III use with shrouded banana plugs at both ends. +4. Insulated tools. (i.e. screwdrivers, wrenches etc. compatible with all fasteners used +inside the accumulator housing.) +5. Face shield which meets ANSI Z87.1-2003 +6. HV insulating gloves (tested within the last14 Months) plus protective outer gloves. +7. HV insulating blanket(s) of sufficient size and quantity to cover the vehicle’s +accumulator(s). +8. Safety glasses with side shields (ANSI Z87.1-2003 compliant) for all team members. +Note: All electrical safety items must be rated for at least the maximum tractive system +voltage. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV7 REQUIRED ELECTRICAL DOCUMENTATION +EV7.1 Electrical System Form – Part 1 +Part 1 of the ESF requests preliminary design information. This is so that the technical +reviewers can identify areas of concern early and provide feedback to the teams. +EV7.2 Electrical System Form – Part 2 +Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. +This information must be reentered in Part 2. However it is not expected that the fields will +contain identical information, since many aspects of a design will change as a project evolves. +EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the +voltage level, the topology, the wiring in the car and the construction and build of the +accumulator(s). +EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and +show that none of these ratings are exceeded (including wiring components). This includes +stress caused by the environment e.g. high temperatures, vibration, etc. +EV6.1.67 A template containing the required structure for the ESF will be made available online. +EV6.1.68 The ESF must be submitted as a Microsoft Word format file. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE EV7 - ACRONYMS +AC Alternating Current +AIR Accumulator Isolation Relay +AMS Accumulator Management System +BRB Big Red Buttons (Emergency shutdown switches) +ESF Electrical System Form +ESOK Electrical Systems OK Lamp +GLV Grounded Low Voltage +GLVMS Grounded Low Voltage Master Switch +HVD High Voltage Disconnect +IMD Insulation Monitoring Device +PCB Printed Circuit Board +SMD Segment Maintenance Disconnect +TS Tractive System +TSMP Tractive System Measuring Point +TSMS Tractive System Master Switch +TSV Tractive System Voltage +TSAL Tractive System Active Lamp + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART S1 - STATIC EVENTS +Presentation 150 points +Design 200 points +Total 350 points +Table 15 – Static Event Maximum Scores + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE S1 TECHNICAL INSPECTION +1S1.1 Objective +1S1.1.1 The objective of technical inspection is to determine if the vehicle meets the FH+E rules +requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules. +1S1.1.2 For purposes of interpretation and inspection the violation of the intent of a rule is considered a +violation of the rule itself. +1S1.1.3 Technical inspection is a non-scored activity. +1S1.2 Inspection & Testing Requirement +1S1.2.1 Each vehicle must pass all parts of technical inspection and testing, and bear the inspection +stickers, before it is permitted to participate in any dynamic event or to run on the practice +track. The exact procedures and instruments employed for inspection and testing are entirely at +the discretion of the Chief Technical Inspector. +1S1.2.2 Technical inspection will examine all items included on the Inspection Form found on the +Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) +plus any other items the inspectors may wish to examine to ensure conformance with the Rules. +1S1.2.3 All items on the Inspection Form must be clearly visible to the technical inspectors. +1S1.2.4 Visible access can be provided by removing body panels or by providing removable access +panels. +1S1.2.5 Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification +and Repairs, it must remain in the “As-approved” condition throughout the competition and +must not be modified. +1S1.2.6 Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final +and are not permitted to be appealed. +1S1.2.7 Technical inspection is conducted only to determine if the vehicle complies with the +requirements and restrictions of the Formula Hybrid + Electric rules. +1S1.2.8 Technical approval is valid only for the duration of the specific Formula Hybrid + Electric +competition during which the inspection is conducted. +1S1.3 Inspection Condition +Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, +complete and ready-to-run. Technical inspectors will not inspect any vehicle presented +for inspection in an unfinished state. +This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). +Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished. +1S1.4 Inspection Process +Vehicle inspection will consist of five separate parts as follows: +(a) Part 1: Preliminary Electrical Inspection +Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed +to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the +Preliminary Electrical Inspection. +(b) Part 2: Scrutineering - Mechanical + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Each vehicle will be inspected to determine if it complies with the mechanical and structural +requirements of the rules. This inspection will include examination of the driver’s +equipment (ARTICLE T5) a test of the emergency shutdown response time (Rule T4.9) +and a test of the driver egress time (Rule T4.8). +The vehicle will be weighed, and the weight placed on a sticker affixed to the vehicle for reference +during the Design event. +(c) Part 3: Scrutineering – Electrical +Each vehicle will be inspected for compliance with the electrical portions of the rules. +Note: This is an extensive and detailed inspection. Teams that arrive well-prepared can reduce the +time spent in electrical inspection considerably. +The electrical inspection will include all the tests listed in EV9.5.1. +Note: In addition to the electrical rules contained in this document, the electrical inspectors will use +SAE Standard J1673 “High Voltage Automotive Wiring Assembly Design” as the +definitive reference for sound wiring practices. +Note: Parts 1, 2 and 3 must be passed before a vehicle may apply for Part 4 or Part 5 inspection. +(d) Part 4: Tilt Table Tests +Each vehicle will be tested to insure it satisfies both the 45 degree (45°) fuel and fluid tilt +requirement (Rule T8.5.1) and the 60 degree (60°) stability requirement (Rule T6.7). +(e) Part 5: Noise, Master Switch, and Brake Tests. +Noise will be tested by the specified method (Rule IC3.2). If the vehicle passes the noise test then +its master switches (EV7.2) will be tested. +Once the vehicle has passed the noise and master switch tests, its brakes will be tested by the +specified method (see Rule T7.2). +1S1.5 Correction and Re-inspection +1S1.5.1 If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, +then the team must correct the problem and have the car re-inspected. +1S1.5.2 The judges and inspectors have the right to re-inspect any vehicle at any time during the +competition and require correction of non-compliance. +1S1.6 Inspection Stickers +Inspection stickers issued following the completion of any part of technical inspection must be placed on +the upper nose of the vehicle as specified in T13.4 “Technical Inspection Sticker Space”. +Inspection stickers are issued contingent on the vehicle remaining in the required condition +throughout the competition. Inspection stickers may be removed from vehicles that are not in +compliance with the rules or which are required to be re-inspected. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE S2 PROJECT MANAGEMENT +1S2.1 Project Management Objective +The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team’s +ability to structure and execute a project management plan that helps the team define and meet +its goals. +A well written project management plan will not only aid each team in producing a functional, rules +compliant race car on-time, it will make it much easier to create the Change Management +Report and Final Presentation components of the Project Management Event. +Several resources are available to guide work in these areas. They can be found in Appendix C. +No team should begin developing its project management plan without FIRST: +(a) Reviewing “Application of the Project Management Method to Formula Hybrid + +Electric”, by Dr. Edward March, former Formula Hybrid + Electric Chief Project +Management Judge. +(b) Viewing in its entirety Dr. March’s 12-part video series”Formula Hybrid + Electric +Project Management”. +(c) Reading “Formula Hybrid + Electric Project Management Event Scoring Criteria”, found +in Appendix C of the Formula Hybrid + Electric Rules. +(d) Watching an example of a “perfect score” presentation, from a previous competiton. +1S2.2 Project Management Segments +The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of +a written project plan (2) a written change management report, and, (3) an oral final +presentation assessing the overall project management experience to be delivered before a +review board at the competition. +Segment Points +Project Plan Report 55 +Change Management +Report +40 +Presentation 55 +Total 150 +Table 16 - Project Management Scoring +1S2.3 Submission 1 -- Project Plan Report +1S2.3.1 Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that +reflects its goals and objectives for the upcoming competition, the management structure, the +tasks that will be required to accomplish these objectives, and the time schedule over which +these tasks will be performed. The topics covered in the Project Plan Report should include: +(a) Scope: What will be accomplished, “SMART” goals and objectives (see Appendix C for +more information), major deliverables and milestones. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(b) Operations: Organization of the project team, Work Breakdown Structure, project +timeline, and a budget and funding strategy. +(c) Risk Management: tasks expected to be particularly difficult for the team, but whose +completion is essential for achieving team goals and having a functional car ready before +shipment to the track; contingency plans to mitigate these risks if problems arise during +project execution. +(d) Expected Results: Team goals and objectives quantified into “measure of success”. +These attributes are useful for assigning task priorities and allocating resources during +project execution. They are also used to determine the extent to which the goals have +been achieved. +(e) Change Management Process: The system designed by the team for administering +project change and maintaining communication across all team members. +1S2.3.2 This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of +text. Appendices with supporting information may be attached to the back of the Project Plan. +Note 1: Title pages, appendices and table-of-contents do not count as “pages”. +Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + +Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact +due date. +Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project +Management judges a one half hour online review session may be made available to each team. +1S2.4 Submission 2 – Change Management Report +1S2.4.1 Following completion and acceptance of the formal project plan by student team members, the +project team begins the execution phase. During this phase, members of the student team and +other stakeholders must be updated on progress being made and on issues identified that put the +project schedule at risk. The ability of the team to change direction or “pivot” in the face of +risks is often a key factor in a team’s successful completion of the project. Changes to the plan +are adopted and formally communicated through a change management report. Each team must +submit one change management report. See the Formula Hybrid + Electric rules and deadlines +page at: https://www.formula-hybrid.org/deadlines for the exact due date. +1S2.4.2 These reports are not lengthy but are intended to clearly and concisely communicate the +documented changes to the project scope and plan to the team that have been approved using +the Change Management Process. See Appendix C for details on scoring criteria for this report. +The topics covered in the progress report should include: +A) Change Management Process: Detail the Change Management processes and +platforms used by the team. At a minimum, the report is expected to cover: +a. what triggers the process +b. how does information flow through the process +c. how are final decisions transmitted to all team members +d. team-created process flow diagram + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +B) Implementation of the Change Management Process: Teams are expected to +review in detail how the Change Management Process has been used to modify at +least one of their project’s main components (Scope or Goals, Operational Plan, Risk +Management, and Expected Results). The report is expected to cover an example +from start to finish in the process and should also detail the final impact to the +project. +C) Effectiveness of and Improvements to the Change Management Process: At the +end of the project lifecycle, the team is expected to perform an assessment on the +effectiveness of their Change Management Process. Through this assessment, the +team should identify at least two areas of opportunity to improve the process and +include the plans/details to implement those changes. +1S2.4.3 The Change Management Report must not exceed two (2) pages. Appendices may be included +with the Report +Note 1: Appendix content does not count as “pages”. +Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- +hybrid.org/deadlines for the due date of the Change Management Report. +1S2.5 Submission Formats +1S2.5.1 The Project Plan and Change Management Report must be submitted electronically in separate +Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, +drawings, and optional content). +1S2.5.2 These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) +and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + +Electric assigned car number and the complete school name, e.g.: +999_University of SAE_Project Plan.doc(x) +999_University of SAE_ChangeManagement.doc(x) +1S2.6 Submission Deadlines +The Project Plan and Change Management Report must be submitted by the date and time shown in the +Action Deadlines. Submission instructions are in section A9.2. +See section A9.3 for late submission penalties. +1S2.7 Presentation +1S2.7.1 Objective: Teams must convince a review board that the team’s project has been carefully +planned and effectively and dynamically executed. +1S2.7.2 The Project Management presentation will be made on the static events day. Presentation times +will be scheduled by the organizers and either posted in advance on the competition website or +released during on-site registration (or both). +Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable. +1S2.7.3 Teams that fail to make their presentation during their assigned time period will receive zero +(0) points for that section of the event. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Note: Teams are encouraged to arrive fifteen (15) minutes prior to their scheduled presentation time to +deal with unexpected technical difficulties. +The scoring of the event is based on the average of the presentation judging forms. +1S2.8 Presentation Format +The presentation judges should be regarded as a project management or executive review board. +1S2.8.1 Evaluation Criteria - Project Management presentations will be evaluated based on team’s +accomplishments in project planning, execution, change management, and succession planning. +Presentation organization and quality of visual aids as well as the presenters’ delivery, timing +and the team’s response to questions will also be factors in the evaluation. +1S2.8.2 One or more team members will give the presentation to the judges. It is strongly suggested, +although not required, that the project manager accompany the presentation team. All team +members who will give any part of the presentation, or who will respond to the judge’s +questions, must be in the podium area when the presentation starts and must be introduced to +the judges. Team members who are part of this “presentation group” may answer the judge’s +questions even if they did not speak during the presentation itself. +1S2.8.3 Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, +posters, etc. to convey information relevant to their project management case that cannot be +contained within a 12-minute presentation. +1S2.8.4 The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt +the presentation itself. +1S2.8.5 Feedback on presentations will take place immediately following the eight (8) minute question +and answer session. Judges and any team members present may ask questions. The maximum +feedback time for each team is eight (8) minutes. +1S2.8.6 Formula Hybrid + Electric may record a team’s presentation for publication or educational +purposes. Students have the right to opt out of being recorded - however they must notify the +chief presentation judge in writing prior to the beginning of their presentation. +1S2.9 Data Projection Equipment +Projection equipment is provided by the organizers. However, teams are advised to bring their own +computer equipment in the event the organizer’s equipment malfunctions or is not compatible +with their presentation software. +1S2.10 Scoring Formula +The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change +Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is +then normalized as follows: +𝐹𝐼𝑁𝐴𝐿 𝑃𝑅𝑂𝐽𝐸𝐶𝑇 𝑀𝐴𝑁𝐴𝐺𝐸𝑀𝐸𝑁𝑇 𝑆𝐶𝑂𝑅𝐸 = 150 * (𝑃 +𝑦𝑜𝑢𝑟 +/𝑃 +𝑚𝑎𝑥 +) +Where: +P +max +is the highest point score awarded to any team +P +your +is the point score awarded to your team. +Notes: + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1. It is intended that the scores will range from near zero (0) to one hundred and fifty (150) +points, providing a good separation range. +2. The Project Management Presentation Captain may at her/his discretion normalize the +scores of different presentation judging teams for consistency in scoring. +3. Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are +applied after the scores are normalized up to a maximum of the team’s normalized +Project Management Score. +ARTICLE S3 DESIGN EVENT +1S3.1 Design Event Objective +The concept of the design event is to evaluate the engineering effort that went into the design of the car +(or the substantial modifications to a prior year car), and how the engineering meets the intent +of the market. The car that illustrates the best use of engineering to meet the design goals and +the best understanding of the design by the team members will win the design event. +Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and +that in the Design event, teams are evaluated on their design. Components and systems that are +incorporated into the design as finished items are not evaluated as a student designed unit, but +are only assessed on the team’s selection and application of that unit. For example, teams that +design and fabricate their own shocks are evaluated on the shock design itself as well as the +shock’s application within the suspension system. Teams using commercially available shocks +are evaluated only on selection and application within the suspension system. +1S3.2 Submission Requirements +1S3.2.1 Design Report - Judging will start with a Design Review before the event. +The principal document submitted for the Design Review is a Design Report. This report must not exceed +ten (10) pages, consisting drawings (see S3.4, “Vehicle Drawings”) and content to be defined +by the team (photos, graphs, etc…). +This document should contain a brief description of the vehicle and each category listed in Appendix D +with the majority of the report specifically addressing the engineering, design features, and +vehicle concepts new for this year's event. Include a list of different analysis and testing +techniques (FEA, dynamometer testing, etc.). +Evidence of this analysis and back-up data should be brought to the competition and be available, on +request, for review by the judges. These documents will be used by the judges to sort teams into +the appropriate design groups based on the quality of their review. +Comment: Consider your Design Report to be the “resume of your car”. +1S3.2.2 Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec +Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the +FH+E website. (Do not alter or re-format the template prior to submission.) +Note: The design judges realize that final design refinements and vehicle development may cause the +submitted figures to diverge slightly from those of the completed vehicle. For specifications +that are subject to tuning, an anticipated range of values may be appropriate. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +The Design Report and the Design Spec Sheet, while related documents, must stand alone and be +considered two (2) separate submissions. Two separate file submissions are required. +1S3.3 Sustainability Requirement +1S3.3.1 Instead of a Sustainability Report please add a Sustainability section to the Design Report +answering both of the following prompts: +(a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and +competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each +dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How +have you improved these quantities compared to previous year vehicles? How might you +improve this in your next vehicle? What components or design decisions are the biggest +contributors to the emissions or efficiency, positively or negatively? +(b) How does the vehicle's design and construction contribute to the recyclability and re-use of your +vehicle, especially when it comes to accumulator storage? +1S3.4 Vehicle Drawings +1S3.4.1 The Design report must include all of the following drawings: +(a) One set of 3 view drawings showing the vehicle from the front, top, and side. +(b) A schematic of the high voltage wiring showing the wiring between the major +components. (See section EV13.1) +(c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all +major high voltage components and the routing of high voltage wiring. The components +shown must (at a minimum) include all those listed in the major sections of the ESF (See +section EV13.1) +1S3.5 Submission Formats +1S3.5.1 The Design Report must be submitted electronically in Adobe Acrobat™ Format files (*.pdf +file). These documents must each be a single file (text, drawings, and optional content). These +Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E +assigned car number and the complete school name, e.g.: +999_University of SAE_Design.pdf +1S3.5.2 Design Spec Sheets must be submitted electronically in Microsoft Excel™ Format. The format +of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet +file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula +Hybrid + Electric assigned car number and the complete school name, e.g. +999_University of SAE_Specs.xls (or) +999_University of SAE_Specs.xlsx +WARNING – Failure to exactly follow the above submission requirements may result in exclusion from +the Design Event. If your files are not submitted in the required format or are not properly +named then they cannot be included in the documents provided to the design judges and your +team will be excluded from the event. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1S3.6 Excess Size Design Reports +If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read +and evaluated by the judges. +Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text +information on them will be scored. +1S3.7 Submission Deadlines +The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the +Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the +event website once report is reviewed for accuracy. Teams should have a printed copy of this +reply available at the competition as proof of submission in the event of discrepancy. +1S3.8 Penalty for Late Submission or Non-Submission +See section A9.3 for late submission penalties. +1S3.9 Penalty for Unsatisfactory Submissions +1S3.9.1 Teams that submit a Design Report or a Design Spec Sheet which is deemed to be +unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. +They may be allowed to compete, but receive a penalty of up to seventy five (75) points. +Failure to fully document the changes made for the current year’s event to a vehicle used in +prior FH+E events, or reuse of any part of a prior year design report, are just two examples of +Unsatisfactory Submissions +1S3.10 Vehicle Condition +1S3.10.1 With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See +A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, +complete and ready-to-run. The judges will not evaluate any car that is presented at the design +event in what they consider to be an unfinished state. +Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be +assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. +Note: Cars can be presented for design judging without having passed technical inspection, or if final +tuning and setup is still in progress. +1S3.11 Judging Criteria +The design judges will evaluate the engineering effort based upon the team’s Design Report, Spec Sheet, +responses to questions and an inspection of the car. The design judges will inspect the car to +determine if the design concepts are adequate and appropriate for the application (relative to the +objectives set forth in the rules). It is the responsibility of the judges to deduct points on the +design judging form, as given in Appendix D if the team cannot adequately explain the +engineering and construction of the car. +1S3.12 Judging Sequence +The actual format of the design event may change from year to year as determined by the organizing +body. In general, the design event includes a brief overview presentation in front of the physical +vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the +majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve +two parts: +(a) Initial judging of all vehicles + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(b) Final judging ranking the top 2 to 4 vehicles. +1S3.13 Scoring Formula +The scoring of the event is based on either the average of the scores from the Design Judging Forms (see +Appendix C) or the consensus of the judging team. +𝐷𝐸𝑆𝐼𝐺𝑁 𝑆𝐶𝑂𝑅𝐸 = 200 +𝑃 +𝑦𝑜𝑢𝑟 +𝑃 +𝑚𝑎𝑥 +Where: P +max +is the highest point score awarded to any team in your vehicle category +P +your +is the point score awarded to your team +Notes: +It is intended that the scores will range from near zero (0) to two hundred (200) to provide good +separation. +● The Lead Design Judge may, at his/her discretion, normalize the scores of different judging +teams. +● Penalties applied during the Design Event (see Appendix D “Design Judging Form - +Miscellaneous”) are applied before the scores are normalized. +● Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are +applied after the scores are normalized up to a maximum of the teams normalized Design +Score. +1S3.14 Support Materials +Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example +components or other materials that they believe are needed to support the presentation of the +vehicle and the discussion of their development process. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +PART 1D - DYNAMIC EVENTS +ARTICLE D1 DYNAMIC EVENTS GENERAL +1D1.1 Maximum Scores +Event +Acceleration 100 Points +Autocross 200 Points +Endurance 350 Points +Total 650 Points +Table 17 - Dynamic Event Maximum Scores +1D1.2 Driving Behavior +During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event +Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to +an official, worker, spectator or other driver, will result in a penalty. +Depending on the potential consequences of the behavior, the penalty will range from an admonishment, +to disqualification of that driver from all events, to disqualification of the team from that event, +to exclusion of the team from the Competition. +1D1.3 Safety Procedures +1D1.3.1 Drivers must properly use all required safety equipment at all times while staged for an event, +while running the event, and while stopped on track during an event. Required safety +equipment includes all drivers gear and all restraint harnesses. +1D1.3.2 In the event it is necessary to stop on track during an event the driver must attempt to position +the vehicle in a safe position off of the racing line. +1D1.3.3 Drivers must not exit a vehicle stopped on track during an event until directed to do so by an +event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or +electrical problems. +1D1.4 Vehicle Integrity and Disqualification +1D1.4.1 During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be +maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged +suspension, brakes or steering components, electrical tractive system fault, or any condition that +could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid +reason for exclusion by the officials. +1D1.4.2 The safety systems monitoring the electrical tractive system must be functional as indicated by +an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event. +1D1.4.3 If vehicle integrity is compromised during the Endurance Event, scoring for that segment will +be terminated as of the last completed lap. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE D2 WEATHER CONDITIONS +The organizer reserves the right to alter the conduct and scoring of the competition based on weather +conditions. +ARTICLE D3 RUNNING IN RAIN +A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See +EV10.5) +1D3.1 Operating Conditions +The following operating conditions will be recognized at Formula Hybrid + Electric: +(a) Dry – Overall the track surface is dry. +(b) Damp – Significant sections of the track surface are damp. +(c) Wet – The entire track surface is wet and there may be puddles of water. +(d) Weather Delay/Cancellation – Any situation in which all, or part, of an event is delayed, +rescheduled or canceled in response to weather conditions. +1D3.2 Decision on Operating Conditions +The operating condition in effect at any time during the competition will be decided by the competition +officials. +1D3.3 Notification +If the competition officials declare the track(s) to be "Damp" or "Wet", +(a) This decision will be announced over the public address system, and +(b) A sign with either "Damp" or "Wet" will be prominently displayed at both the starting +line(s) and the start-finish line of the event(s), and the entry gate to the "hot" area. +1D3.4 Tire Requirements +The operating conditions will determine the type of tires a car may run as follows: +(a) Dry – Cars must run their Dry Tires, except as covered in D3.8. +(b) Damp – Cars may run either their Dry Tires or Rain Tires, at each team’s option. +(c) Wet – Cars must run their Rain Tires. +1D3.5 Event Rules +All event rules remain in effect. +1D3.6 Penalties +All penalties remain in effect. +1D3.7 Scoring +No adjustments will be made to teams' times for running in "Damp" or "Wet" conditions. The minimum +performance levels to score points may be adjusted if deemed appropriate by the officials. +1D3.8 Tire Changing +1D3.8.1 During the Acceleration or Autocross Events: + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Within the provisions of D3.4 above, teams may change from Dry Tires to Rain Tires or vice versa at any +time during those events at their own discretion. +1D3.8.2 During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any +time while their car is in the staging area inside the "hot" area. +All tire changes after a car has received the "green flag" to start the Endurance Event must take place in +the Driver Change Area. +(a) If the track was "Dry" and is declared "Damp": +(i) Teams may start on either Dry or Rain Tires at their option. +(ii) Teams that are on the track when it is declared "Damp", may elect, at their option, to +pit in the Driver Change Area and change to Rain Tires under the terms spelled out +below in "Tire Changes in the Driver Change Area". +(b) If the track is declared "Wet": +(i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver +Change Area. +(ii) Those cars that are already fitted with "Rain" tires will be allowed restart without delay +subject to the discretion of the Event Captain/Clerk of the Course. +(iii)Those cars without "Rain" tires will be required to fit them under the terms spelled out +below in "Tire Changes in the Driver Change Area". They will then be allowed to re- +start at the discretion of the Event Captain/Clerk of the Course. +(c) If the track is declared "Dry" after being "Damp" or "Wet": +The teams will NOT be required to change back to “Dry” tires. +(d) Tire Changes at Team's Option: +(i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to +change tires at their option. +(ii) If a team elects to change from “Dry” to “Rain” tires, the time to make the change will +NOT be included in the team’s total time. +(iii) If a team elects to change from “Rain” tires back to “Dry” tires, the time taken to +make the change WILL be included in the team’s total time for the event, i.e. it will +not be subtracted from the total elapsed time. However, a change from “Rain” tires +back to “Dry” tires will not be permitted during the driver change. +(iv) To make such a change, the following procedure must be followed: +1. Team makes the decision +2. Team has tires and equipment ready near Driver Change Area +3. The team informs the Event Captain/Clerk of the Course they wish their car to be +brought in for a tire change +4. Officials inform the driver by means of a sign or flag at the checker flag station +5. Driver exits the track and enters the Driver Change Area in the normal manner. +(e) Tire Changes in the Driver Change Area: + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(i) Per Rule D7.13.2 no more than three people for each team may be present in the +Driver Change Area during any tire change, e.g. a driver and two crew or two drivers +and one crew member. +(ii) No other work may be performed on the cars during a tire change. +(iii) Teams changing from "Dry" to "Rain" tires will be allowed a maximum of ten (10) +minutes to make the change. +(iv) If a team elects to change from "Dry" to "Rain" tires during their scheduled driver +change, they may do so, and the total allowed time in the Driver Change Area will be +increased without penalty by ten (10) minutes. +(v) The time spent in the driver change area of less than 10 minutes without driver change +will not be counted in the team's total time for the event. Any time in excess of these +times will be counted in the team's total time for the event. +ARTICLE D4 DRIVER LIMITATIONS +1D4.1 Two Event Limit +1D4.1.1 An individual team member may not drive in more than two (2) events. +Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum +of four (4) drivers is required to participate in all possible runs in all of the dynamic events. +1D4.1.2 It is the team’s option to participate in any event. The team may forfeit any runs in any +performance event. +1D4.1.3 In order to drive in the endurance event, a driver must have attended the mandatory drivers +meeting and walked the endurance track with an official. +1D4.1.4 The time and location of the meeting and walk-around will be announced at the event. +ARTICLE D5 ACCELERATION EVENT +1D5.1 Acceleration Objective +The acceleration event evaluates the car’s acceleration in a straight line on flat pavement. +1D5.2 Acceleration Procedure +The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The +foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be +used to indicate the approval to begin, however, time starts only after the vehicle crosses the +start line. There will be no particular order of the cars in the event. A driver has the option to +take a second run immediately after the first. +1D5.3 Acceleration Event +1D5.3.1 All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the +acceleration runs. +1D5.3.2 Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during +any of their acceleration runs. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D5.4 Tire Traction – Limitations +Special agents that increase traction may not be added to the tires or track surface and “burnouts” are not +allowed. +1D5.5 Acceleration Scoring +The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the +time the car crosses the starting line until it crosses the finish line. +1D5.6 Acceleration Penalties +1D5.6.1 Cones Down Or Out (DOO) +A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred +on that particular run to give the corrected elapsed time. +1D5.6.2 Off Course +An Off Course (OC) will result in a DNF for that run. +1D5.7 Did Not Attempt +The organizer will determine the allowable windows for each event and retains the right to adjust for +weather or technical delays. Cars that have not run by the end of the event will be scored as a +Did Not Finish (DNF). +1D5.8 Acceleration Scoring Formula +The equation below is used to determine the scores for the Acceleration Event. The first term represents +the “Start Points”, the second term the “Participation Points” and the last term the +“Performance Points”. +1D5.8.1 A team is awarded “Start Points” for crossing the start line under its own power. A team is +awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded +“Performance Points” based on its corrected elapsed time relative to the time of the best team in +its class. +𝐴𝐶𝐶𝐸𝐿𝐸𝑅𝐴𝑇𝐼𝑂𝑁 𝑆𝐶𝑂𝑅𝐸 = 10 + 15 + (75 × +𝑇 +𝑚𝑖𝑛 +𝑇 +𝑦𝑜𝑢𝑟 +) +Where: +T +your +is the lowest corrected elapsed time (including penalties) recorded by your team. +T +min +is the lowest corrected elapsed time (including penalties) recorded by the fastest team +in your vehicle category. +Note: A Did Not Start (DNS) will score (0) points for the event +ARTICLE D6 AUTOCROSS EVENT +1D6.1 Autocross Objective +The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a +tight course without the hindrance of competing cars. The autocross course will combine the +performance features of acceleration, braking, and cornering into one event. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D6.2 Autocross Procedure +1D6.2.1 There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) +timed laps will be run (weather and time permitting) by each driver and the best lap time will +stand as the time for that heat. +1D6.2.2 The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. +The timer starts only after the car crosses the start line. +1D6.2.3 There will be no particular order of the cars to run each heat, but a driver has the option to take +a second run immediately after the first. +1D6.2.4 The organizer will determine the allowable windows for each event and retains the right to +adjust for weather or technical delays. Cars that have not run by the end of the event will be +scored as a Did Not Start (DNS). +1D6.3 Autocross Course Specifications & Speeds +1D6.3.1 The following specifications will suggest the maximum speeds that will be encountered on the +course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). +(a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 +m (150 feet) with wide turns on the ends. +(b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. +(c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). +(d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. +(e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track +width will be 3.5 m (11.5 feet). +1D6.3.2 The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete +a specified number of runs. +1D6.4 Autocross Penalties +The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed +time: +1D6.4.1 Cone Down or Out (DOO) +Two (2) seconds per cone, including any after the finish line. +1D6.4.2 Off Course +Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be +assessed. Penalties will not be assessed for accident avoidance or other reasons deemed +sufficient by the track officials. +If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off +the paved surface will count as an "off course". Two (2) wheels off will not incur an immediate +penalty; however, consistent driving of this type may be penalized at the discretion of the event +officials. +1D6.4.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one "off-course" per occurrence. Each +occurrence will incur a twenty (20) second penalty. +1D6.4.4 Stalled & Disabled Vehicles + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +If a car stalls and cannot restart without external assistance, the car will be deemed disabled. Cars deemed +disabled will be cleared from the track by the track workers. At the direction of the track +officials team members may be instructed to retrieve the vehicle. Vehicle recovery may only be +done under the control of the track officials. +1D6.5 Corrected Elapsed Time +The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time. +1D6.6 Best Run Scored +The time required to complete each run will be recorded and the team’s best corrected elapsed time will +be used to determine the score. +1D6.7 Autocross Scoring Formula +The equation below is used to determine the scores for the Autocross Event. The first term represents the +“Start Points”, the second term the “Participation Points” and the last term the “Performance +Points”. A team is awarded “Start Points” for crossing the start line under its own power. A +team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is +awarded “Performance Points” based on its corrected elapsed time relative to the time of the +best team in its vehicle category. +𝐴𝑈𝑇𝑂𝐶𝑅𝑂𝑆𝑆 𝑆𝐶𝑂𝑅𝐸 = 20 + 30 + (150 × +𝑇 +𝑚𝑖𝑛 +𝑇 +𝑦𝑜𝑢𝑟 +) +Where: +T +min +is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your +vehicle category over their four heats. +T +your +is the lowest corrected elapsed time (including penalties) recorded by your team over the four +heats. +Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event. +ARTICLE D7 ENDURANCE EVENT +1D7.1 Right to Change Procedure +The following are general guidelines for conducting the endurance event. The organizers reserve the right +to establish procedures specific to the conduct of the event at the site. All such procedures will +be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or +on the official bulletin board at the event. +1D7.2 Endurance Objective +The endurance event is designed to evaluate the vehicle’s overall performance, reliability and efficiency. +Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the +least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated +distance on a fixed amount of energy in the least amount of time. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D7.3 Endurance General Procedure +1D7.3.1 In general, the team completing the most laps in the shortest time will earn the maximum points +available for this event. Formula Hybrid + Electric uses an endurance scoring formula that +rewards both speed and distance traveled. (See D7.18) +1D7.3.2 The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 +mile) segments. +1D7.3.3 Driver changes will be made between each segment. +1D7.3.4 Wheel to wheel racing is prohibited. +1D7.3.5 Passing another vehicle may only be done in an established passing zone or under the control of +a course marshal. +1D7.4 Endurance Course Specifications & Speeds +Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr +(29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). +Endurance courses will be configured, where possible, in a manner which maximizes the +advantage of regenerative braking. +(a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than +61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several +locations. +(b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. +(c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). +(d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. +(e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). +(f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius +turns, elevation changes, etc. +1D7.5 Energy +1D7.5.1 All vehicles competing in the endurance event must complete the event using only the energy +stored on board the vehicle at the start of the event plus any energy reclaimed through +regenerative braking during the event. Alternatively, vehicles may compete in the endurance +event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E +approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy +value will not be counted towards the endurance score. If energy meter data is missing or +appears inaccurate, the vehicle may receive start and performance points as appropriate, but +“performance points” may be forfeited at organizers discretion. +1D7.5.2 Prior to the beginning of the endurance event, all competitors may charge their electric +accumulators from any approved power source they wish. +1D7.5.3 Once a vehicle has begun the endurance event, recharging accumulators from an off-board +source is not permitted. +1D7.6 Hybrid Vehicles +1D7.6.1 All Hybrid vehicles will begin the endurance event with the defined amount of energy on +board. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D7.6.2 The amount of energy allotted to each team is determined by the Formula Hybrid + Electric +Rules Committee and is listed in Table 1 – 2024 Energy and Accumulator Limits +1D7.6.3 The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by +an amount equal to the stated energy capacity of the vehicle’s accumulator(s). +1D7.6.4 There will be no extra points given for fuel remaining at the end of the endurance event. +1D7.7 Fueling - Hybrid Vehicles +1D7.7.1 Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel +accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will +then be added to the tank by the organizers and the filler will be sealed. +1D7.7.2 Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and +supporting the vehicle to facilitate draining the fuel tank. +1D7.7.3 Once fueled, the vehicle must proceed directly to the endurance staging area. +1D7.8 Charging - Electric Vehicles +Each Electric vehicle will begin the endurance event with whatever energy can be stored in its +accumulator(s). +1D7.9 Endurance Run Order +Endurance run order will be determined by the team’s corrected elapsed time in the autocross. Teams with +the best autocross corrected elapsed time will run first. If a team did not score in the autocross +event, the run order will then continue based on acceleration event times, followed by any +vehicles that may not have completed either previous dynamic event. Endurance run order will +be published at least one hour before the endurance event is run. +1D7.10 Entering the Track +At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter +based on traffic conditions. +1D7.11 Endurance Vehicle Restarting +1D7.11.1 The vehicle must be capable of restarting without external assistance at all times once the +vehicle has begun the event. +1D7.11.2 If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following +it (approximately one (1) minute) to restart. +1D7.11.3 At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the +electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8). +1D7.11.4 If restarts are not accomplished within the above times, the vehicle will be deemed disabled and +scored as a DNF for the event. +1D7.12 Breakdowns & Stalls +1D7.12.1 If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter +the course. +1D7.12.2 If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course +where it went off, but no work may be performed on the vehicle +1D7.12.3 If a vehicle stops on track and cannot be restarted without external assistance, the track workers +will push the vehicle clear of the track. At the discretion of event officials, two (2) team +members may retrieve the vehicle under direction of the track workers. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D7.13 Endurance Driver Change Procedure +1D7.13.1 There must be a minimum of two (2) drivers for the endurance event, with a maximum of four +(4) drivers. One driver may not drive in two consecutive segments. +1D7.13.2 Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the +driver change area. If a driver elects to come into driver change before the end of their 11km +segment, they will not be allowed to make up the laps remaining in that segment. +1D7.13.3 Only three (3) team members, including the driver or drivers, will be allowed in the driver +change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers +and/or change tires will be carried into this area (no tool chests, electronic test equipment, +computers, etc.). +Extra people entering the driver change area will result in a twenty (20) point penalty to the final +endurance score for each extra person entering the area. +Note: Teams are permitted to “tag-team” in and out of the driver change area as long as there are no more +than three (3) team members present at any one time. +1D7.13.4 The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. +These systems must remain shut down until the new driver is in place. (See D7.13.8) +1D7.13.5 The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit +the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be +secured in the vehicle. +1D7.13.6 Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle +comes to a halt in the driver change area and stops when the correct adjustment of the driver +restraints and safety equipment has been verified by the driver change area official. Any time +taken over the allowed time will incur a penalty. (See D7.17.2(k)) +1D7.13.7 During the driver change, teams are not permitted to do any work on, or make any adjustments +to the vehicle with the following exceptions: +(a) Changes required to accommodate each driver +(b) Tire changing as covered by D3.8 “Tire Changing”, +(c) Actuation of the following buttons/switches to assist the driver with re-energizing the +electrical tractive system +(i) Ground Low Voltage Master Switch +(ii) Tractive System Master Switch +(iii) Side Mounted BRBs +(iv) IMD Reset (Button/Switch must be clearly marked “IMD RESET”) +(v) AMS Reset (Button/Switch must be clearly marked “AMS RESET”) +1D7.13.8 Once the new driver is in place and an official has verified the correct adjustment of the driver +restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the +electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive +system (IC engine, electrical tractive system, or both) and begin moving out of the driver +change area. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +The ESOK indicator must be illuminated and verified by the driver change area official prior to +the vehicle being released out of the driver change area. +1D7.13.9 The process given in Error! Reference source not found. through D7.13.8 will be repeated for +each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km +(27.34 miles) distance or until the endurance event track closing time, at which point the +vehicle will be signaled off the course. +1D7.13.10 The driver change area will be placed such that the timing system will see the driver +change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this +extra-long lap will not count into a team’s final time. If a driver change takes longer than three +minutes, the extra time will be added to the team’s final time. +1D7.13.11 Once the vehicle has begun the event, electronic adjustment to the vehicle may only be +made by the driver using driver-accessible controls. +1D7.14 Endurance Lap Timing +1D7.14.1 Each lap of the endurance event will be individually timed either by electronic means, or by +hand. +1D7.14.2 Each team is required to time their vehicle during the endurance event as a backup in case of a +timing equipment malfunction. An area will be provided where a maximum of two team +members can perform this function. All laps, including the extra-long laps must be recorded +legibly and turned in to the organizers at the end of the endurance event. Standardized lap +timing forms will be provided by the organizers. +1D7.15 Exiting the Course +1D7.15.1 Timing will stop when the vehicle crosses the start/finish line. +1D7.15.2 Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter +the driver change area before coming to a stop. There will be no “cool down” laps. +1D7.15.3 The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be +penalized. +1D7.16 Endurance Minimum Speed Requirement +1D7.16.1 A car's allotted number of laps, including driver’s changes, must be completed in a maximum +of 120 minutes elapsed time from the start of that car's first lap. +Cars that are unable to comply will be flagged off the course and their actual completed laps tallied. +1D7.16.2 If a vehicle’s lap time becomes greater than Max Average Lap Time (See: D7.18) it may be +declared “out of energy”, and flagged off the course. The vehicle will be deemed disabled and +scored as a DNF for the event. +Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring +formulas. Attempting to complete additional laps at too low a speed can cost a team points. +1D7.17 Endurance Penalties +1D7.17.1 Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the +track official. +1D7.17.2 The penalties in effect during the endurance event are listed below. +(a) Cone down or out (DOO) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Two (2) seconds per cone. This includes cones before the start line and after the finish line. +(b) Off Course (OC) +For an OC, the driver must re-enter the track at or prior to the missed gate or a twenty (20) +second penalty will be assessed. +If a paved surface edged by grass or dirt is being used as the track, e.g. a go kart track, four +(4) wheels off the paved surface will count as an "off course". Two (2) wheels off will not +incur an immediate penalty. However, consistent driving of this type may be penalized at +the discretion of the event officials. +(c) Missed Slalom +Missing one or more gates of a given slalom will incur a twenty (20) second penalty. +(d) Failure to obey a flag +Penalty: 1 minute +(e) Over Driving (After a closed black flag) +Penalty: 1 Minute +(f) Vehicle to Vehicle Contact +Penalty: DISQUALIFIED +(g) Running Out of Order +Penalty: 2 Minutes +(h) Mechanical Black Flag +See D7.23.3(b). No time penalty. The time taken for mechanical or electrical inspection under a +“mechanical black flag” is considered officials’ time and is not included in the team’s total +time. However, if the inspection reveals a mechanical or electrical integrity problem the +vehicle may be deemed disabled and scored as a DNF for the event. +(i) Reckless or Aggressive Driving +Any reckless or aggressive driving behavior (such as forcing another vehicle off the track, +refusal to allow passing, or close driving that would cause the likelihood of vehicle contact) +will result in a black flag for that driver. +When a driver receives a black flag signal, he/she must proceed to the penalty box to listen +to a reprimand for his/her driving behavior. +The amount of time spent in the penalty box will vary from one (1) to four (4) minutes +depending upon the severity of the offense. +If it is impossible to impose a penalty by a stop under a black flag, e.g. not enough laps left, +the event officials may add an appropriate time penalty to the team’s elapsed time. +(j) Inexperienced Driver +The Event Captain or Clerk of the Course may disqualify a driver if the driver is too slow, +too aggressive, or driving in a manner that, in the sole opinion of the event officials, +demonstrates an inability to properly control their vehicle. This will result in a DNF for the +event. +(k) Driver Change + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Driver changes taking longer than three (3) minutes will be penalized. +1D7.18 Endurance Scoring Formula +The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time +for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, +etc.), plus any penalty time and penalty points assessed against all drivers and team members. +Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the +DNF. +1D7.18.1 The equation below is used to determine the scores for the Endurance Event. The first term +represents the “Start Points”, the second term the “Participation Points” and the last term the +“Performance Points”. +A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded +“Participation Points” if it completes a minimum of one (1) lap. A team is awarded +“Performance Points” based on the number of laps it completes relative to the best team in its +vehicle category (distance factor) and its corrected average lap time relative to the event +standard time and the time of the best team in its vehicle category (speed factor). +𝐸𝑁𝐷𝑈𝑅𝐴𝑁𝐶𝐸 𝑆𝐶𝑂𝑅𝐸 = 35 + 52.5 + 262.5 ( -퐿푎푝푆푢푚 +𝐿𝑎𝑝𝑆𝑢𝑚 ( -푛 +𝑛 ) -푦표푢푟 -퐿푎푝푆푢푚 +𝑦𝑜𝑢𝑟 +𝐿𝑎𝑝𝑆𝑢𝑚 ( -푛 +𝑛 ) -푚푎푥 +𝑚𝑎𝑥 ) ( -푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 -푇 -푦표푢푟 -)−1 +𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 +𝑇 +𝑦𝑜𝑢𝑟 +) − 1 ( -푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 -푇 -푚푖푛 -) -−1 - - -Where: - Max Average Lap Time is the event standard time in minutes and is calculated as - - 푀푎푥 퐴푣푒푟푎푔푒 퐿푎푝 푇푖푚푒 = +𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 +𝑇 +𝑚𝑖𝑛 +) +− 1 +Where: +Max Average Lap Time is the event standard time in minutes and is calculated as +𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 = 105 -푡ℎ푒 푛푢푚푏푒푟 표푓 푙푎푝푠 푟푒푞푢푖푟푒푑 푡표 푐표푚푝푙푒푡푒 44 푘푚 - - +𝑡ℎ𝑒 𝑛𝑢𝑚𝑏𝑒𝑟 𝑜𝑓 𝑙𝑎𝑝𝑠 𝑟𝑒𝑞𝑢𝑖𝑟𝑒𝑑 𝑡𝑜 𝑐𝑜𝑚𝑝𝑙𝑒𝑡𝑒 44 𝑘𝑚 T min -= the lowest corrected average lap time (including penalties) recorded by the fastest team in -your vehicle category over their completed laps. += the lowest corrected average lap time (including penalties) recorded by the fastest team in +your vehicle category over their completed laps. T -your - = the corrected average lap time (including penalties) recorded by your team over your -completed laps. +your += the corrected average lap time (including penalties) recorded by your team over your +completed laps. LapSum(n) -max - = The value of LapSum corresponding to number of complete laps credited to the -team in your vehicle category that covered the greatest distance. +max += The value of LapSum corresponding to number of complete laps credited to the +team in your vehicle category that covered the greatest distance. LapSum(n) -your - = The value of LapSum corresponding to the number of complete laps credited to -your team - -Notes: +your += The value of LapSum corresponding to the number of complete laps credited to +your team +Notes: (a) If your team completes all of the required laps, then LapSum(n) -your - will equal the -maximum possible value of LapSum(n). (990 for a 44 lap event). +your +will equal the +maximum possible value of LapSum(n). (990 for a 44 lap event). (b) If your team does not complete the required number of laps, then LapSum(n) -your - will be -based on the number of laps completed. See Appendix B for LapSum(n) calculation -methodology. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(c) Negative “performance points” will not be given. -(d) A Did Not Start (DNS) will score (0) points for the event - -1D7.18.2 Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their -results truncated at the last lap completed within the 120 minute limit. -1D7.19 Post Event Engine and Energy Check -The organizer reserves the right to impound any vehicle immediately after the event to check accumulator -capacity, engine displacement (method to be determined by the organizer) and restrictor size (if -fitted). -1D7.20 Endurance Event – Driving -1D7.20.1 During the endurance event when multiple vehicles are running on the course it is paramount -that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, -failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion -in the penalty box with course officials. The amount of time spent in the penalty box is at the -discretion of the officials and is included in the run time. Penalty box time serves as a -reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware -that contact between open wheel racers is especially dangerous because tires touching can -throw one vehicle into the air. -1D7.20.2 Endurance is a timed event in which drivers compete only against the clock not against other -vehicles. Aggressive driving is unnecessary. -1D7.21 Endurance Event – Passing -1D7.21.1 Passing during the endurance event may only be done in the designated passing zones and -under the control of the track officials. Passing zones have two parallel lanes – a slow lane for -the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On -approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the -slow lane and decelerate. The following faster vehicle will continue in the fast lane and make -the pass. The vehicle that had been passed may reenter traffic only under the control of the -passing zone exit marshal. -The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on -the design of the specific course. -1D7.21.2 These passing rules do not apply to vehicles that are passing disabled vehicles on the course or -vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it -is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in -the area. -1D7.21.3 Under normal driving conditions when not being passed all vehicles use the fast lane. -1D7.22 Endurance Event – Driver’s Course Walk -The endurance course will be available for walk by drivers prior to the event. All endurance drivers -should walk the course before the event starts. -1D7.23 Flags -1D7.23.1 The flag signals convey the commands described below, and must be obeyed immediately and -without question. -1D7.23.2 There are two kinds of flags for the competition: Command Flags and Informational Flags. -Command Flags are just that, flags that send a message to the competitor that the competitor - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -must obey without question. Informational Flags, on the other hand, require no action from the -driver, but should be used as added information to help him or her maximize performance. -What follows is a brief description of the flags used at the competitions in North America and -what each flag means. -Note: Not all of these flags are used at all competitions and some alternate designs are occasionally -displayed. Any variations from this list will be explained at the drivers meetings. - - -Table 18 - Flags -1D7.23.3 Command Flags -(a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations -or other official concerning an incident. A time penalty may be assessed for such -incident. -(b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) (“Meatball”) - Pull into -the penalty box for a mechanical inspection of your vehicle, something has been observed -that needs closer inspection. -(c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor -or competitors. Obey the course marshal’s hand or flag signals at the end of the passing -zone to merge into competition. -(d) CHECKER FLAG - Your segment has been completed. Exit the course at the first -opportunity after crossing the finish line. -(e) GREEN FLAG - Your segment has started, enter the course under direction of the -starter. NOTE: If you are unable to enter the course when directed, await another green -flag as the opening in traffic may have closed. -(f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side -of the course as much as possible to keep the course open. Follow course marshal’s -directions. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(g) YELLOW FLAG (Stationary) - Danger, SLOW DOWN, be prepared to take evasive -action, something has happened beyond the flag station. NO PASSING unless directed by -the course marshals. -(h) YELLOW FLAG (Waved) - Great Danger, SLOW DOWN, evasive action is most -likely required, BE PREPARED TO STOP, something has happened beyond the flag -station, NO PASSING unless directed by the course marshals. -1D7.23.4 Informational Flags -(a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that -should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course -marshals may be able to point out what and where it is located, but do not expect it.) -(b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than -you are. Be prepared to approach it at a cautious rate. -ARTICLE D8 RULES OF CONDUCT -1D8.1 Competition Objective – A Reminder -The Formula Hybrid + Electric event is a design engineering competition that requires performance -demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized -that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. -It is also recognized that this event is an “engineering educational experience” but that it often -times becomes confused with a high stakes race. In the heat of competition, emotions peak and -disputes arise. Our officials are trained volunteers and maximum human effort will be made to -settle problems in an equitable, professional manner. -1D8.2 Unsportsmanlike Conduct -In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second -violation will result in expulsion of the team from the competition. -1D8.3 Official Instructions -Failure of a team member to follow an instruction or command directed specifically to that team or team -member will result in a twenty five (25) point penalty. -Note: This penalty can be individually applied to all members of a team. -1D8.4 Arguments with Officials -Argument with, or disobedience to, any official may result in the team being eliminated from the -competition. All members of the team may be immediately escorted from the grounds. -1D8.5 Alcohol and Illegal Material -Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the -competition. This rule will be in effect during the entire competition. Any violation of this rule -by a team member will cause the expulsion of the entire team. This applies to both team -members and faculty advisors. Any use of drugs, or the use of alcohol by an underage -individual, will be reported to the local authorities for prosecution. -1D8.6 Parties -Disruptive parties either on or off-site must be prevented by the Faculty Advisor. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D8.7 Trash Clean-up -1D8.7.1 Cleanup of trash and debris is the responsibility of the teams. The team’s work area should be -kept uncluttered. At the end of the day, each team must clean all debris from their area and help -with maintaining a clean paddock. -1D8.7.2 Teams are required to remove all of their material and trash when leaving the site at the end of -the competition. Teams that abandon furniture, or that leave a paddock that requires special -cleaning, will be billed for removal and/or cleanup costs. -1D8.7.3 All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, -capped containers and left at the hazardous waste collection building. The track must be -notified as soon as the material is deposited by calling the phone number posted on the -building. See the map in the registration packet for the building location. -ARTICLE D9 GENERAL RULES -1D9.1 Dynamometer Usage -1D9.1.1 If a dynamometer is available, it may be used by any competing team. Vehicles to be -dynamometer tested must have passed all parts of technical inspection. -1D9.1.2 Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer. -1D9.2 Problem Resolution -Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric -management team and the decision will be final. -1D9.3 Forfeit for Non-Appearance -It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready -to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups -for missed appearances. -1D9.4 Safety Class – Attendance Required -An electrical safety class is required for all team members. The time and location will be provided in the -team’s registration packet. -1D9.5 Drivers Meetings – Attendance Required -All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event -will be disqualified if he/she does not attend the driver meeting for the event. -1D9.6 Personal Vehicles -1D9.6.1 Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E -competition vehicles will be allowed in the track areas. -All vehicles and trailers must be parked behind the white “Fire Lane” lines. -1D9.6.2 Some self-powered transport such as bicycles and skate boards are permitted, subject to -restrictions posted in the event guide -1D9.6.3 The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any -part of the competition site, including the paddocks, is prohibited. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D9.7 Exam Proctoring -1D9.7.1 Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for -students attending the competition. The team Advisor, or designated representative (A6.3.1) -attending the competition will be responsible for communicating with college and university -officials, administering exams, and ensuring all exam materials are returned to the college and -university. Students who need to take exams during the competition may use designated spaces -provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to -the Officials. -ARTICLE D10 PIT/PADDOCK/GARAGE RULES -1D10.1 Vehicle Movement -1D10.1.1 Vehicles may not move under their own power anywhere outside of an officially designated -dynamic area. -1D10.1.2 When being moved outside the dynamic area: -(a) The vehicle TSV must be deactivated. -(b) The vehicle must be pushed at a normal walking pace by means of a “Push Bar” (D10.2). -(c) The vehicle’s steering and braking must be functional. -(d) A team member must be sitting in the cockpit and must be able to operate the steering and -braking in a normal manner. -(e) A team member must be walking beside the car. -(f) The team has the option to move the car either with -(i) all four (4) wheels on the ground OR -(ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that -the external wheels supporting the rear of the car are non-pivoting such that the -vehicle will travel only where the front wheels are steered. -1D10.1.3 Cars with wings are required to have two team members walking on either side of the vehicle -whenever the vehicle is being pushed. -NOTE: During performance events when the excitement is high, it is particularly important that the car -be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of -twenty-five (25) points will be assessed for each violation. -1D10.2 Push Bar -Each car must have a removable device that attaches to the rear of the car that allows two (2) people, -standing erect behind the vehicle, to push the car around the event site. This device must also -be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by -pulling it rearwards. It must be presented with the car at Technical Inspection. -1D10.3 Smoking – Prohibited -Smoking is prohibited in all competition areas. -1D10.4 Fueling and Refueling -Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and -no other activities (including any mechanical or electrical work) are allowed while refueling. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D10.5 Energized Vehicles in the Paddock or Garage Area -Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the -drive wheels must be removed or properly supported clear of the ground. -1D10.6 Engine Running in the Paddock -Engines may be run in the paddock provided: -(a) The car has passed all technical inspections. -AND -(b) The drive wheels are removed or properly supported clear of the ground. -1D10.7 Safety Glasses -Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 -meters) of a vehicle that is being worked on. -1D10.8 Curfews -A curfew period may be imposed on working in the garages. Be sure to check the event guide for further -information -ARTICLE D11 DRIVING RULES -1D11.1 Driving Under Power -1D11.1.1 Cars may only be driven under power: -(a) When running in an event. -(b) When on the practice track. -(c) During the brake test. -(d) During any powered vehicle movement specified and authorized by the organizers. -1D11.1.2 For all other movements cars must be pushed at a normal walking pace using a push bar. -1D11.1.3 Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred -(200) point penalty for the first violation and expulsion of the team for a second violation. -1D11.2 Driving Off-Site - Prohibited -Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location -during the period of the competition will be disqualified from the competition. -1D11.3 Practice Track -1D11.3.1 A practice track for testing and tuning cars may be available at the discretion of the organizers. -The practice area will be controlled and may only be used during the scheduled practice times. -1D11.3.2 Practice or testing at any location other than the practice track is absolutely forbidden. -1D11.3.3 Cars using the practice track must have passed all parts of the technical inspection. -1D11.4 Situational Awareness -Drivers must maintain a high state of situational awareness at all times and be ready to respond to the -track conditions and incidents. Flag signals and hand signals from course marshals and officials -must be immediately obeyed. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE D12 DEFINITIONS -DOO - A cone is “Down or Out”—if the cone has been knocked over or the entire base of the cone lies -outside the box marked around the cone in its undisturbed position. -DNF- Did Not Finish -Gate - The path between two cones through which the car must pass. Two cones, one on each side of the -course define a gate: Two sequential cones in a slalom define a gate. -Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter -the course. -Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit -the course. -Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about -to start. -OC - A car is Off Course if it does not pass through a gate in the required direction. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix A -Accumulator Rating & Fuel -Equivalency - -Each accumulator device will be assigned an energy rating and fuel equivalency based on -the following: - -Battery capacities are based on nominal (data sheet values). Ultracap capacities are based on the -maximum operating voltage (Vpeak) and the effective capacitance in Farads (Nparallel x C / -Nseries). -Batteries: Energy (Wh) = Vnom x Inom x Total Number of Cells x 80% -Capacitors: - +your +will be +based on the number of laps completed. See Appendix B for LapSum(n) calculation +methodology. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(c) Negative “performance points” will not be given. +(d) A Did Not Start (DNS) will score (0) points for the event +1D7.18.2 Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their +results truncated at the last lap completed within the 120 minute limit. +1D7.19 Post Event Engine and Energy Check +The organizer reserves the right to impound any vehicle immediately after the event to check accumulator +capacity, engine displacement (method to be determined by the organizer) and restrictor size (if +fitted). +1D7.20 Endurance Event – Driving +1D7.20.1 During the endurance event when multiple vehicles are running on the course it is paramount +that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, +failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion +in the penalty box with course officials. The amount of time spent in the penalty box is at the +discretion of the officials and is included in the run time. Penalty box time serves as a +reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware +that contact between open wheel racers is especially dangerous because tires touching can +throw one vehicle into the air. +1D7.20.2 Endurance is a timed event in which drivers compete only against the clock not against other +vehicles. Aggressive driving is unnecessary. +1D7.21 Endurance Event – Passing +1D7.21.1 Passing during the endurance event may only be done in the designated passing zones and +under the control of the track officials. Passing zones have two parallel lanes – a slow lane for +the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On +approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the +slow lane and decelerate. The following faster vehicle will continue in the fast lane and make +the pass. The vehicle that had been passed may reenter traffic only under the control of the +passing zone exit marshal. +The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on +the design of the specific course. +1D7.21.2 These passing rules do not apply to vehicles that are passing disabled vehicles on the course or +vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it +is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in +the area. +1D7.21.3 Under normal driving conditions when not being passed all vehicles use the fast lane. +1D7.22 Endurance Event – Driver’s Course Walk +The endurance course will be available for walk by drivers prior to the event. All endurance drivers +should walk the course before the event starts. +1D7.23 Flags +1D7.23.1 The flag signals convey the commands described below, and must be obeyed immediately and +without question. +1D7.23.2 There are two kinds of flags for the competition: Command Flags and Informational Flags. +Command Flags are just that, flags that send a message to the competitor that the competitor + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +must obey without question. Informational Flags, on the other hand, require no action from the +driver, but should be used as added information to help him or her maximize performance. +What follows is a brief description of the flags used at the competitions in North America and +what each flag means. +Note: Not all of these flags are used at all competitions and some alternate designs are occasionally +displayed. Any variations from this list will be explained at the drivers meetings. +Table 18 - Flags +1D7.23.3 Command Flags +(a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations +or other official concerning an incident. A time penalty may be assessed for such +incident. +(b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) (“Meatball”) - Pull into +the penalty box for a mechanical inspection of your vehicle, something has been observed +that needs closer inspection. +(c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor +or competitors. Obey the course marshal’s hand or flag signals at the end of the passing +zone to merge into competition. +(d) CHECKER FLAG - Your segment has been completed. Exit the course at the first +opportunity after crossing the finish line. +(e) GREEN FLAG - Your segment has started, enter the course under direction of the +starter. NOTE: If you are unable to enter the course when directed, await another green +flag as the opening in traffic may have closed. +(f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side +of the course as much as possible to keep the course open. Follow course marshal’s +directions. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +(g) YELLOW FLAG (Stationary) - Danger, SLOW DOWN, be prepared to take evasive +action, something has happened beyond the flag station. NO PASSING unless directed by +the course marshals. +(h) YELLOW FLAG (Waved) - Great Danger, SLOW DOWN, evasive action is most +likely required, BE PREPARED TO STOP, something has happened beyond the flag +station, NO PASSING unless directed by the course marshals. +1D7.23.4 Informational Flags +(a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that +should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course +marshals may be able to point out what and where it is located, but do not expect it.) +(b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than +you are. Be prepared to approach it at a cautious rate. +ARTICLE D8 RULES OF CONDUCT +1D8.1 Competition Objective – A Reminder +The Formula Hybrid + Electric event is a design engineering competition that requires performance +demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized +that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. +It is also recognized that this event is an “engineering educational experience” but that it often +times becomes confused with a high stakes race. In the heat of competition, emotions peak and +disputes arise. Our officials are trained volunteers and maximum human effort will be made to +settle problems in an equitable, professional manner. +1D8.2 Unsportsmanlike Conduct +In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second +violation will result in expulsion of the team from the competition. +1D8.3 Official Instructions +Failure of a team member to follow an instruction or command directed specifically to that team or team +member will result in a twenty five (25) point penalty. +Note: This penalty can be individually applied to all members of a team. +1D8.4 Arguments with Officials +Argument with, or disobedience to, any official may result in the team being eliminated from the +competition. All members of the team may be immediately escorted from the grounds. +1D8.5 Alcohol and Illegal Material +Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the +competition. This rule will be in effect during the entire competition. Any violation of this rule +by a team member will cause the expulsion of the entire team. This applies to both team +members and faculty advisors. Any use of drugs, or the use of alcohol by an underage +individual, will be reported to the local authorities for prosecution. +1D8.6 Parties +Disruptive parties either on or off-site must be prevented by the Faculty Advisor. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D8.7 Trash Clean-up +1D8.7.1 Cleanup of trash and debris is the responsibility of the teams. The team’s work area should be +kept uncluttered. At the end of the day, each team must clean all debris from their area and help +with maintaining a clean paddock. +1D8.7.2 Teams are required to remove all of their material and trash when leaving the site at the end of +the competition. Teams that abandon furniture, or that leave a paddock that requires special +cleaning, will be billed for removal and/or cleanup costs. +1D8.7.3 All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, +capped containers and left at the hazardous waste collection building. The track must be +notified as soon as the material is deposited by calling the phone number posted on the +building. See the map in the registration packet for the building location. +ARTICLE D9 GENERAL RULES +1D9.1 Dynamometer Usage +1D9.1.1 If a dynamometer is available, it may be used by any competing team. Vehicles to be +dynamometer tested must have passed all parts of technical inspection. +1D9.1.2 Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer. +1D9.2 Problem Resolution +Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric +management team and the decision will be final. +1D9.3 Forfeit for Non-Appearance +It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready +to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups +for missed appearances. +1D9.4 Safety Class – Attendance Required +An electrical safety class is required for all team members. The time and location will be provided in the +team’s registration packet. +1D9.5 Drivers Meetings – Attendance Required +All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event +will be disqualified if he/she does not attend the driver meeting for the event. +1D9.6 Personal Vehicles +1D9.6.1 Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E +competition vehicles will be allowed in the track areas. +All vehicles and trailers must be parked behind the white “Fire Lane” lines. +1D9.6.2 Some self-powered transport such as bicycles and skate boards are permitted, subject to +restrictions posted in the event guide +1D9.6.3 The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any +part of the competition site, including the paddocks, is prohibited. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D9.7 Exam Proctoring +1D9.7.1 Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for +students attending the competition. The team Advisor, or designated representative (A6.3.1) +attending the competition will be responsible for communicating with college and university +officials, administering exams, and ensuring all exam materials are returned to the college and +university. Students who need to take exams during the competition may use designated spaces +provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to +the Officials. +ARTICLE D10 PIT/PADDOCK/GARAGE RULES +1D10.1 Vehicle Movement +1D10.1.1 Vehicles may not move under their own power anywhere outside of an officially designated +dynamic area. +1D10.1.2 When being moved outside the dynamic area: +(a) The vehicle TSV must be deactivated. +(b) The vehicle must be pushed at a normal walking pace by means of a “Push Bar” (D10.2). +(c) The vehicle’s steering and braking must be functional. +(d) A team member must be sitting in the cockpit and must be able to operate the steering and +braking in a normal manner. +(e) A team member must be walking beside the car. +(f) The team has the option to move the car either with +(i) all four (4) wheels on the ground OR +(ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that +the external wheels supporting the rear of the car are non-pivoting such that the +vehicle will travel only where the front wheels are steered. +1D10.1.3 Cars with wings are required to have two team members walking on either side of the vehicle +whenever the vehicle is being pushed. +NOTE: During performance events when the excitement is high, it is particularly important that the car +be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of +twenty-five (25) points will be assessed for each violation. +1D10.2 Push Bar +Each car must have a removable device that attaches to the rear of the car that allows two (2) people, +standing erect behind the vehicle, to push the car around the event site. This device must also +be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by +pulling it rearwards. It must be presented with the car at Technical Inspection. +1D10.3 Smoking – Prohibited +Smoking is prohibited in all competition areas. +1D10.4 Fueling and Refueling +Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and +no other activities (including any mechanical or electrical work) are allowed while refueling. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +1D10.5 Energized Vehicles in the Paddock or Garage Area +Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the +drive wheels must be removed or properly supported clear of the ground. +1D10.6 Engine Running in the Paddock +Engines may be run in the paddock provided: +(a) The car has passed all technical inspections. +AND +(b) The drive wheels are removed or properly supported clear of the ground. +1D10.7 Safety Glasses +Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 +meters) of a vehicle that is being worked on. +1D10.8 Curfews +A curfew period may be imposed on working in the garages. Be sure to check the event guide for further +information +ARTICLE D11 DRIVING RULES +1D11.1 Driving Under Power +1D11.1.1 Cars may only be driven under power: +(a) When running in an event. +(b) When on the practice track. +(c) During the brake test. +(d) During any powered vehicle movement specified and authorized by the organizers. +1D11.1.2 For all other movements cars must be pushed at a normal walking pace using a push bar. +1D11.1.3 Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred +(200) point penalty for the first violation and expulsion of the team for a second violation. +1D11.2 Driving Off-Site - Prohibited +Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location +during the period of the competition will be disqualified from the competition. +1D11.3 Practice Track +1D11.3.1 A practice track for testing and tuning cars may be available at the discretion of the organizers. +The practice area will be controlled and may only be used during the scheduled practice times. +1D11.3.2 Practice or testing at any location other than the practice track is absolutely forbidden. +1D11.3.3 Cars using the practice track must have passed all parts of the technical inspection. +1D11.4 Situational Awareness +Drivers must maintain a high state of situational awareness at all times and be ready to respond to the +track conditions and incidents. Flag signals and hand signals from course marshals and officials +must be immediately obeyed. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +ARTICLE D12 DEFINITIONS +DOO - A cone is “Down or Out”—if the cone has been knocked over or the entire base of the cone lies +outside the box marked around the cone in its undisturbed position. +DNF- Did Not Finish +Gate - The path between two cones through which the car must pass. Two cones, one on each side of the +course define a gate: Two sequential cones in a slalom define a gate. +Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter +the course. +Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit +the course. +Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about +to start. +OC - A car is Off Course if it does not pass through a gate in the required direction. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix A +Accumulator Rating & Fuel +Equivalency +Each accumulator device will be assigned an energy rating and fuel equivalency based on +the following: +Battery capacities are based on nominal (data sheet values). Ultracap capacities are based on the +maximum operating voltage (Vpeak) and the effective capacitance in Farads (Nparallel x C / +Nseries). +Batteries: Energy (Wh) = Vnom x Inom x Total Number of Cells x 80% +Capacitors: where V -min - is assumed to be 10% of V +min +is assumed to be 10% of V peak. - -Table 19 - Accumulator Device Energy Calculations +Table 19 - Accumulator Device Energy Calculations Liquid Fuels Wh / Liter 32 - Gasoline (Sunoco -33 - Optima) 2,343 -Table 20 - Fuel Energy Equivalencies -Examples: - -A battery with an energy rating of 3110 Wh has a fuel equivalency of 1.327 liters. - -If using 89 Maxell MC 2600 ultracaps in series (2600 F/89 = 29.2 F, 2.7 x 89 = 240 V), the fuel -equivalency is 231.9 Wh resulting in a 99cc reduction of gasoline. - -32 - Formula Hybrid + Electric assumes a mechanical efficiency of 27% -33 - Full specifications for Sunoco racing fuels may be found at: https://www.sunocoracefuels.com/ - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix B - -Determination of LapSum(n) -Values - -The parameter LapSum(n) is used in the calculation of the scores for the endurance event. It is a function -of the number of laps (n) completed by a team during the endurance event. It is calculated by summing -the lap numbers from 1 to (n), the number of laps completed. This gives increasing weight to each -additional lap completed during the endurance event. - -For example: -If your team is credited with completing five (5) laps of the endurance event, the value of LapSum(n)your -used in compute your endurance score would be the following: - +33 +Optima) 2,343 +Table 20 - Fuel Energy Equivalencies +Examples: +A battery with an energy rating of 3110 Wh has a fuel equivalency of 1.327 liters. +If using 89 Maxell MC 2600 ultracaps in series (2600 F/89 = 29.2 F, 2.7 x 89 = 240 V), the fuel +equivalency is 231.9 Wh resulting in a 99cc reduction of gasoline. +32 +Formula Hybrid + Electric assumes a mechanical efficiency of 27% +33 +Full specifications for Sunoco racing fuels may be found at: https://www.sunocoracefuels.com/ + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix B +Determination of LapSum(n) +Values +The parameter LapSum(n) is used in the calculation of the scores for the endurance event. It is a function +of the number of laps (n) completed by a team during the endurance event. It is calculated by summing +the lap numbers from 1 to (n), the number of laps completed. This gives increasing weight to each +additional lap completed during the endurance event. +For example: +If your team is credited with completing five (5) laps of the endurance event, the value of LapSum(n)your +used in compute your endurance score would be the following: LapSum(5) -your - = 1 + 2 + 3 + 4 + 5 = 15 - - -Number of Laps -Completed (n) -LapSum(n) -Number of Laps +your += 1 + 2 + 3 + 4 + 5 = 15 +Number of Laps Completed (n) LapSum(n) -0 0 23 276 -1 1 24 300 -2 3 25 325 -3 6 26 351 -4 10 27 378 -5 15 28 406 -6 21 29 435 -7 28 30 465 -8 36 31 496 -9 45 32 528 -10 55 33 561 -11 66 34 595 -12 78 35 630 -13 91 36 666 -14 105 37 703 -15 120 38 741 -16 136 39 780 -17 153 40 820 -18 171 41 861 -19 190 42 903 -20 210 43 946 -21 231 44 990 -22 253 - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Table 21 - Example of LapSum(n) calculation for a 44-lap Endurance event - - -Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event +Number of Laps +Completed (n) +LapSum(n) +0 0 23 276 +1 1 24 300 +2 3 25 325 +3 6 26 351 +4 10 27 378 +5 15 28 406 +6 21 29 435 +7 28 30 465 +8 36 31 496 +9 45 32 528 +10 55 33 561 +11 66 34 595 +12 78 35 630 +13 91 36 666 +14 105 37 703 +15 120 38 741 +16 136 39 780 +17 153 40 820 +18 171 41 861 +19 190 42 903 +20 210 43 946 +21 231 44 990 +22 253 + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Table 21 - Example of LapSum(n) calculation for a 44-lap Endurance event +Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event 0 100 200 @@ -6870,556 +6012,418 @@ Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event 800 900 1000 -051015202530354045 +0 5 10 15 20 25 30 35 40 45 LapSum(n) Laps Completed LapSum(n) vs. Number of Laps Completed - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix C -Formula Hybrid + Electric -Project Management -Event Scoring Criteria - - -INTRODUCTION -The Formula Hybrid + Electric Project Management Event is comprised of three components: -Project Plan Report -Change Management Report -Final Presentation. -These components cover the entire life cycle of the Formula Hybrid + Electric Project from design of the -vehicle through fabrication and performance verification, culminating in Formula Hybrid + -Electric competition at the track. The Project Management Event includes both written reports -and an oral presentation, providing project team members the opportunity to develop further -their communications skills in the context of a challenging automotive engineering team -experience. -Design, construction, and performance testing of a hybrid or electric race car are complex activities that -require a structured effort to increase the probability of success. The Project Management -Event is included in the Formula Hybrid + Electric competition to encourage each team to -create this structure specific to their set of circumstances and goals. Comments each team -receives from judges relative to their project plan and change management report, offer -guidance directed at project execution. Verbal comments made by judges following the -presentation component offer suggestions to improve performance in future competitions. -In scoring the Project Management Event judges assess (1) if a well-thought-out project plan has been -developed, (2) that the plan was executed effectively while addressing challenges encountered -and managing change and (3) the significance of lessons learned by team members from this -experience and quality of recommendations proposed to improve future team performance. -Basic Areas Evaluated -Five categories of effort are evaluated across the three components of Formula Hybrid + Electric -Project Management, but the scoring criteria differ for each, reflecting the phase of the project -life-cycle that is being assessed. The criteria includes: (1) Scope (2) Operations (3) Risk -Management (4) Expected Results (5) Change Management. Each is briefly defined below. - -1. Scope: A brief introduction of the project documenting what will be accomplished: team goals -and objectives beyond simply winning the competition, known as “secondary goals”, major -deliverables such as critical sub-systems, innovative designs, or new technologies, and milestones -for achieving the goals. Overall, this information is called the Statement of Work. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -2. Operations: How the project team is structured, usually shown with an organizational chart; -Work Breakdown Structure, a cascading representation of tasks that will be completed; a project -schedule for completing these tasks, usually this is depicted in a Gantt chart that shows the -timeline and interdependencies among different activities; also included are the approved budget -for the project and plan for obtaining these funds. - -3. Risk Management: Arriving at the track with a completed, rules compliant race car increases the -probability of full participation in all events during the competition. Even though numerous tasks -are involved in the design, build, and test of a hybrid race car, there is a smaller subset of tasks -that present a high risk to completing the car on schedule. These are high risk tasks because the -team may lack knowledge, experience, or sufficient resources necessary for completing them -successfully. However, to achieve the team goals, these tasks must be done. Identify the high risk -tasks along with contingency plans for advancing the project forward if they become barriers to -progress. - -4. Expected Results: In general, project teams are expected to deliver what is defined in the scope -statement, on time according to project schedule, and within the budget constraint. Goals and -objectives are more specifically defined by “measures of success”, quantified attributes that give -numerical targets for each goal. These “measures” are of value throughout project execution for -setting priorities and making resource decisions. At project completion, they are used to -determine the extent to which the team’s goals and objectives have been accomplished. - -5. Change Management: The need for change is a normal occurrence during project execution. -Change is good because it refocuses the team when new information is obtained or unexpected -challenges are encountered. But if it is not managed correctly change can become a destructive -element to the project. - -Change Management is a process designed by the team for administering project change and -managing uncertainty. The process includes built-in controls to ensure that change is managed in -a disciplined way, adequately documented and clearly communicated to all team members. -SCORING GUIDELINES -The guidelines used by judges for scoring the three components of the Project Management Event are -given in the following sections: (1) Project Plan Report, (2) Change Management Report, and -(3) Project Management Presentation at the competition. -1. Project Plan Report -Each Formula Hybrid + Electric team is required to submit a formal Project Plan that reflects team goals -and objectives for the upcoming competition, the management structure and tasks that will be -completed to accomplish these objectives, and the time schedule over which these tasks will be -performed. In addition, the formal process for managing change must be defined. A maximum -of fifty-five (55) points is awarded for the Project Plan. -Quality of the Written Document: The plan should look and read like a professional document. The -flow of information is expected to be logical; the content should be clear and concise. The -reader should be able to understand the plan that will be executed. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -The Project Plan must consist of at least one (1) page and not exceed three (3) pages of text. Appendices -may be attached to the Project Plan and do not count as “pages”, but they must be relevant and -referenced in the body of the report. - “SMART” Goals -Projects are initiated to achieve predetermined goals, which are identified in the Scope statement. The -project plan is a “roadmap” for effectively deploying team resources to accomplish these goals. -Overall, the requirements of the Project Plan incorporate the basic principles of “SMART” -goals. These goals have the following characteristics: -● Specific: Sufficient detail is provided to clearly identify the targeted objectives; goals are -specifically stated so that all individual project team members understand what the team must -accomplish. -● Measurable: The objectives are quantified so that progress toward the goals can be measured; -“measures of success” are defined for this purpose. -● Assignable: The person or group responsible for achieving the goals is identified; each task, -milestone, and deliverable has an owner, someone responsible for seeing that each is completed. -● Realistic: The goals can actually be achieved given the resources and time available. Along with -realistic goals, a team might define “stretch goals” which are more aggressive objectives that -challenge the team. If the “stretch goals” become barriers to progress during project execution, -the change management process is used to pull back “stretch goals”, re-focusing the team on -more realistic objectives. -● Time-Related: Deadlines are set for achieving each goal, milestone, or deliverable. These -deadlines are consistent with the overall project schedule and can be extracted from the project -timeline. -Characteristics of an Excellent Project Plan Report Submission -● Scope: A brief overview is included covering the team’s past performance and recommendations -received from previous teams for improvement. Achievable primary and secondary goals for this -year’s team are clearly stated. These goals are more than simply winning the competition. -Milestones, with due dates, and major deliverables that support accomplishing the goals are -listed. -● Operations: An organizational chart showing the structure of the team and Work Breakdown -Structure showing the cascading linkage of tasks comprising the project are included. The -timeframe and interdependencies of each task are shown in a Gantt chart timeline. The project -budget is specified and a brief overview of how these funds will be obtained is given. -● Risk Management: Careful thought is demonstrated to understand the weakest areas of the -project plan. Several “High Risk” tasks are identified that might have a significant impact on a -functional car being produced on time. A contingency plan is described to mitigate these risks if -they become barriers during project execution. -● Expected Results: All teams are expected to complete the project on schedule, within budget, -and to deliver a functional, rules complaint race car to the track. But each team has a set of -primary and secondary goals specific to its project plan. Additional depth is given to these goals -by quantifying them, defining measurable targets helpful for directing team efforts. At least two -“measures of success” are defined that are related to the team’s specific performance goals. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -● Change Management: A process for administering changes has been carefully thought-out; it is -briefly described and shown schematically in terms of: (1) what triggers the process, (2) how -information flows through the process, (3) how decision making is handled, and (4) how changes -are communicated to the team. A process flow diagram may be included in the Appendix to save -space, however is referenced in the body of the report. At a minimum, the diagram shows the -“trigger”, information flow, decision making tasks and responsibilities, and communication tasks. -The diagram is specific to and created by the team. There are sufficient controls in place to -prevent un-managed changes. The team has an effective communication plan in place to keep all -team members informed throughout project duration. -Applying the Project Plan Report Scoring Guidelines -The guidelines for awarding points in each Project Plan Report category are given in Figure 46. Four -performance designations are also specified: Excellent, Good, Marginal, and Deficient. A range -of points is suggested for each designation to give reviewers flexibility in evaluating the quality -and completeness of the submitted plans. -While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component -must be summarized in the body of the report to receive full credit. Any diagram or table (or -other appropriate figure type) must be referenced and linked appropriately to the correct content -in the Appendix. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix C +Formula Hybrid + Electric +Project Management +Event Scoring Criteria +INTRODUCTION +The Formula Hybrid + Electric Project Management Event is comprised of three components: +Project Plan Report +Change Management Report +Final Presentation. +These components cover the entire life cycle of the Formula Hybrid + Electric Project from design of the +vehicle through fabrication and performance verification, culminating in Formula Hybrid + +Electric competition at the track. The Project Management Event includes both written reports +and an oral presentation, providing project team members the opportunity to develop further +their communications skills in the context of a challenging automotive engineering team +experience. +Design, construction, and performance testing of a hybrid or electric race car are complex activities that +require a structured effort to increase the probability of success. The Project Management +Event is included in the Formula Hybrid + Electric competition to encourage each team to +create this structure specific to their set of circumstances and goals. Comments each team +receives from judges relative to their project plan and change management report, offer +guidance directed at project execution. Verbal comments made by judges following the +presentation component offer suggestions to improve performance in future competitions. +In scoring the Project Management Event judges assess (1) if a well-thought-out project plan has been +developed, (2) that the plan was executed effectively while addressing challenges encountered +and managing change and (3) the significance of lessons learned by team members from this +experience and quality of recommendations proposed to improve future team performance. +Basic Areas Evaluated +Five categories of effort are evaluated across the three components of Formula Hybrid + Electric +Project Management, but the scoring criteria differ for each, reflecting the phase of the project +life-cycle that is being assessed. The criteria includes: (1) Scope (2) Operations (3) Risk +Management (4) Expected Results (5) Change Management. Each is briefly defined below. +1. Scope: A brief introduction of the project documenting what will be accomplished: team goals +and objectives beyond simply winning the competition, known as “secondary goals”, major +deliverables such as critical sub-systems, innovative designs, or new technologies, and milestones +for achieving the goals. Overall, this information is called the Statement of Work. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +2. Operations: How the project team is structured, usually shown with an organizational chart; +Work Breakdown Structure, a cascading representation of tasks that will be completed; a project +schedule for completing these tasks, usually this is depicted in a Gantt chart that shows the +timeline and interdependencies among different activities; also included are the approved budget +for the project and plan for obtaining these funds. +3. Risk Management: Arriving at the track with a completed, rules compliant race car increases the +probability of full participation in all events during the competition. Even though numerous tasks +are involved in the design, build, and test of a hybrid race car, there is a smaller subset of tasks +that present a high risk to completing the car on schedule. These are high risk tasks because the +team may lack knowledge, experience, or sufficient resources necessary for completing them +successfully. However, to achieve the team goals, these tasks must be done. Identify the high risk +tasks along with contingency plans for advancing the project forward if they become barriers to +progress. +4. Expected Results: In general, project teams are expected to deliver what is defined in the scope +statement, on time according to project schedule, and within the budget constraint. Goals and +objectives are more specifically defined by “measures of success”, quantified attributes that give +numerical targets for each goal. These “measures” are of value throughout project execution for +setting priorities and making resource decisions. At project completion, they are used to +determine the extent to which the team’s goals and objectives have been accomplished. +5. Change Management: The need for change is a normal occurrence during project execution. +Change is good because it refocuses the team when new information is obtained or unexpected +challenges are encountered. But if it is not managed correctly change can become a destructive +element to the project. +Change Management is a process designed by the team for administering project change and +managing uncertainty. The process includes built-in controls to ensure that change is managed in +a disciplined way, adequately documented and clearly communicated to all team members. +SCORING GUIDELINES +The guidelines used by judges for scoring the three components of the Project Management Event are +given in the following sections: (1) Project Plan Report, (2) Change Management Report, and +(3) Project Management Presentation at the competition. +1. Project Plan Report +Each Formula Hybrid + Electric team is required to submit a formal Project Plan that reflects team goals +and objectives for the upcoming competition, the management structure and tasks that will be +completed to accomplish these objectives, and the time schedule over which these tasks will be +performed. In addition, the formal process for managing change must be defined. A maximum +of fifty-five (55) points is awarded for the Project Plan. +Quality of the Written Document: The plan should look and read like a professional document. The +flow of information is expected to be logical; the content should be clear and concise. The +reader should be able to understand the plan that will be executed. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +The Project Plan must consist of at least one (1) page and not exceed three (3) pages of text. Appendices +may be attached to the Project Plan and do not count as “pages”, but they must be relevant and +referenced in the body of the report. +“SMART” Goals +Projects are initiated to achieve predetermined goals, which are identified in the Scope statement. The +project plan is a “roadmap” for effectively deploying team resources to accomplish these goals. +Overall, the requirements of the Project Plan incorporate the basic principles of “SMART” +goals. These goals have the following characteristics: +● Specific: Sufficient detail is provided to clearly identify the targeted objectives; goals are +specifically stated so that all individual project team members understand what the team must +accomplish. +● Measurable: The objectives are quantified so that progress toward the goals can be measured; +“measures of success” are defined for this purpose. +● Assignable: The person or group responsible for achieving the goals is identified; each task, +milestone, and deliverable has an owner, someone responsible for seeing that each is completed. +● Realistic: The goals can actually be achieved given the resources and time available. Along with +realistic goals, a team might define “stretch goals” which are more aggressive objectives that +challenge the team. If the “stretch goals” become barriers to progress during project execution, +the change management process is used to pull back “stretch goals”, re-focusing the team on +more realistic objectives. +● Time-Related: Deadlines are set for achieving each goal, milestone, or deliverable. These +deadlines are consistent with the overall project schedule and can be extracted from the project +timeline. +Characteristics of an Excellent Project Plan Report Submission +● Scope: A brief overview is included covering the team’s past performance and recommendations +received from previous teams for improvement. Achievable primary and secondary goals for this +year’s team are clearly stated. These goals are more than simply winning the competition. +Milestones, with due dates, and major deliverables that support accomplishing the goals are +listed. +● Operations: An organizational chart showing the structure of the team and Work Breakdown +Structure showing the cascading linkage of tasks comprising the project are included. The +timeframe and interdependencies of each task are shown in a Gantt chart timeline. The project +budget is specified and a brief overview of how these funds will be obtained is given. +● Risk Management: Careful thought is demonstrated to understand the weakest areas of the +project plan. Several “High Risk” tasks are identified that might have a significant impact on a +functional car being produced on time. A contingency plan is described to mitigate these risks if +they become barriers during project execution. +● Expected Results: All teams are expected to complete the project on schedule, within budget, +and to deliver a functional, rules complaint race car to the track. But each team has a set of +primary and secondary goals specific to its project plan. Additional depth is given to these goals +by quantifying them, defining measurable targets helpful for directing team efforts. At least two +“measures of success” are defined that are related to the team’s specific performance goals. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +● Change Management: A process for administering changes has been carefully thought-out; it is +briefly described and shown schematically in terms of: (1) what triggers the process, (2) how +information flows through the process, (3) how decision making is handled, and (4) how changes +are communicated to the team. A process flow diagram may be included in the Appendix to save +space, however is referenced in the body of the report. At a minimum, the diagram shows the +“trigger”, information flow, decision making tasks and responsibilities, and communication tasks. +The diagram is specific to and created by the team. There are sufficient controls in place to +prevent un-managed changes. The team has an effective communication plan in place to keep all +team members informed throughout project duration. +Applying the Project Plan Report Scoring Guidelines +The guidelines for awarding points in each Project Plan Report category are given in Figure 46. Four +performance designations are also specified: Excellent, Good, Marginal, and Deficient. A range +of points is suggested for each designation to give reviewers flexibility in evaluating the quality +and completeness of the submitted plans. +While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component +must be summarized in the body of the report to receive full credit. Any diagram or table (or +other appropriate figure type) must be referenced and linked appropriately to the correct content +in the Appendix. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 Figure 46 - Scoring Guidelines: Project Plan Component 34 - - - - -34 - This score sheet is available on the Formula Hybrid+Electric website in the Project Management Resources -folder. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -2. Change Management Report -The purpose of the Change Management Report is to give each judge a sense of the team’s ability to deal -with issues that will put the project schedule at risk. -Frequently, as the project progresses or as problems arise, changes may be required to vehicle -specifications or the plan for completing the project. This is an area that many teams find -difficult to manage. Of particular interest to judges are barriers encountered and creative -actions taken by the team to overcome these challenges and advance the project forward. -The Change Management Report is a maximum two (2) page summary, clearly communicating the -documented changes to the project scope and plan that have been approved using the change -management process. Appendices may be included with supporting information; they do not -have a page limit but the content is expected to be supportive of the information covered in the -main body of the report. -A maximum of forty (40) points is awarded for the Change Management Report. The content of the report -is evaluated in three broad areas: (1) Explanation of the Change Management Process (2) -Example of the Implementation of the Change Management Process, and (3) Evaluation of the -Effectiveness and Areas of Improvement for the Change Management Process. Additionally, a -final area evaluated is the quality of the overall report document. -Characteristics of an Excellent Change Management Report Submission -● Change Management Process: In the body of the report, the team provides a thorough and -clear explanation of their Change Management Process, including the following characteristics: -• What triggers/initiates the process? -• How does information flow through the process? -• How are decisions made, and who makes those decisions? -• How are final decisions communicated to the team? -• Process flow diagram (see below) -● A process flow diagram may be included in the Appendix to save space; however, it is referenced -in the body of the report. At a minimum, the diagram shows the “trigger”, information flow, -decision making tasks and responsibilities, and communication tasks. The diagram is specific to -and created by the team. -● Implementation of the Change Management Process: In the body of the report, the team -provides a single thorough and clear example of the implementation of the Change Management -Process. The example provided addresses all stages of the process from start to finish, including -the overall impact to the project. -● Effectiveness of and Improvements to the Change Management Process: In the body of the -report, the team provides their own assessment of the effectiveness of their Change Management -Process, primarily based upon the example provided. This includes the effectiveness of each stage -of the process (trigger, information flow, decision making, and communication) as well as an -overall assessment. Based on their assessment, the team provides two areas of opportunity to -improve the Change Management Process, including what stage of the process is impacted and -why this change is being made. The team addresses plans for what the team must do to make the -proposed changes, timing of changes, and a definition of how to measure the effectiveness of the -changes for the following year. - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -● Proper Use of Appendix: While the Appendix may be used to refer to diagrams, tables, etc., a -brief explanation for each component must be summarized in the body of the report to receive full -credit. Any diagram or table (or other appropriate figure type) must be referenced and linked -appropriately to the correct content in the Appendix. - -Applying the Change Management Scoring Guidelines -The guidelines for awarding points in each Change Management Report evaluation category are given in -Figure 47. Similar to the Project Plan guidelines, four performance designations are specified: -Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation -to give reviewers flexibility in weighing quality and completeness of information for each -category. - - -Figure 47: Change Management Report Scoring Guidelines - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - - -While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component -must be summarized in the body of the report to receive full credit. Any diagram or table (or -other appropriate figure type) must be referenced and linked appropriately to the correct content -in the Appendix. -3. Project Management Presentation at the Competition -The Presentation component gives teams the opportunity to briefly explain their project plans, assess how -well their project management process worked, and identify recommendations for improving -their team’s project management process in the future. In addition, the Presentation component -enables team leaders to enhance their communication skills in presenting a complex topic -clearly and concisely. -The Presentation component is the culmination of the project management experience, which included -submission by each team of a project plan and change management report. Scoring of each -presentation is based on how well project management practices were used by the team in the -planning, execution, and change management aspects of the project. Of particular interest are -innovative approaches used by each team in dealing with challenges and how lessons learned -from the current competition will be used to foster continuous improvement in the design, -development, and testing of their cars for future competitions. -Project Management presentations are made on the Static Events Day during the competition. Each -presentation is limited to a maximum of twelve (12) minutes. An eight (8) minute question and -answer period will follow along with a feedback discussion with judges lasting no longer than -five (5) minutes. -This format will give each team an opportunity to critique their project management performance, clarify -major points, and have a discussion with judges on areas that can be improved or strengths that -can be built upon for next year’s competition. Only the team members present who are -introduced at the start of the presentation will be allowed to speak and/or respond to questions -and comments. -Scoring the Project Management Presentation -In awarding points, each judge must determine if the team demonstrated an understanding of project -management, if the described accomplishments are credible, and if the approaches used to -manage the project were effective. These judgements are formed after listening to each -presentation and probing the teams for clarity and additional details during the questioning -period afterward. Presentation quality and communications skills of team members are -extremely important for establishing a positive impression. -A chart summarizing the evaluation criteria for the Presentation component is given in Figure 48 – -Evaluation Criteria. This provides more detailed guidelines used by the judging review team -for evaluating each project management presentation. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 - -Figure 48 – Evaluation Criteria -Characteristics on an Excellent Project Management Presentation -● Scope: The primary and secondary goals defined in the project plan are addressed; the degree -to which each has been accomplished is explained. Where applicable, the “Measures of Success” -are used to support the stated level of accomplishment. If the original goals have been changed, -the reasons for modification are explained. -● Operations: Was this project a success? This conclusion is supported by Team performance -against the budget, project schedule, and deliverables produced. The effectiveness of the team’s -structure is explained. If the operation was disorderly or inefficient during project execution, an -overview of corrective actions taken to fix the problem is given. -● Risk Management: The team’s success to correctly anticipate risk in the original project plan -and effectiveness of the risk mitigation plan are described. An overview of unanticipated risks -that were encountered during project execution and approaches to overcome these barriers are -explained. -● Change Management: A need for change occurs naturally in almost every project; it is -anticipated that every Formula Hybrid + Electric team will have experienced some type of change -during project execution. Change management strives to align the efforts of all team members -working in the dynamic project environment. The effectiveness of the overall change -management process in dealing with needed modifications is described. This is supported with - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -statistics on the number of changes approved and rejected. The effectiveness of the team’s -communication methods, both written and verbal, is explained. Areas of opportunity for -improvement to the change management process are briefly described as well as their status of -implementation for next year. -● Lessons Learned: When a project is completed, the team should conduct an assessment of -overall performance to determine what worked well and what failed. The strengths and -weaknesses of the team are described. This evaluation is used to propose recommendations for -improving the performance of next year’s team. Also, a plan for conveying this information to the -new leadership team is described. A leadership succession plan is briefly described. -● “SMART” Goals: Team’s demonstrated understanding and application of “SMART” goals. -● Communications Skills: The team establishes credibility by demonstrating that it has taken the -time necessary to carefully plan and create the presentation. The presentation is well organized, -content is relevant to the purpose of the presentation. Charts have a professional appearance and -are informative. Without the speaker rushing through the material, a large amount of information -is conveyed within the allowed time limit. Tables, diagrams, and graphs are used effectively. -Team members demonstrate mutual accountability with shared responses to questions. Answers are -conveyed in a manner that instills confidence in the team’s ability to plan and execute a complex -project like Formula Hybrid + Electric. - - - -Figure 49 - Project Management Scoring Sheet - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix D +34 +This score sheet is available on the Formula Hybrid+Electric website in the Project Management Resources +folder. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +2. Change Management Report +The purpose of the Change Management Report is to give each judge a sense of the team’s ability to deal +with issues that will put the project schedule at risk. +Frequently, as the project progresses or as problems arise, changes may be required to vehicle +specifications or the plan for completing the project. This is an area that many teams find +difficult to manage. Of particular interest to judges are barriers encountered and creative +actions taken by the team to overcome these challenges and advance the project forward. +The Change Management Report is a maximum two (2) page summary, clearly communicating the +documented changes to the project scope and plan that have been approved using the change +management process. Appendices may be included with supporting information; they do not +have a page limit but the content is expected to be supportive of the information covered in the +main body of the report. +A maximum of forty (40) points is awarded for the Change Management Report. The content of the report +is evaluated in three broad areas: (1) Explanation of the Change Management Process (2) +Example of the Implementation of the Change Management Process, and (3) Evaluation of the +Effectiveness and Areas of Improvement for the Change Management Process. Additionally, a +final area evaluated is the quality of the overall report document. +Characteristics of an Excellent Change Management Report Submission +● Change Management Process: In the body of the report, the team provides a thorough and +clear explanation of their Change Management Process, including the following characteristics: +• What triggers/initiates the process? +• How does information flow through the process? +• How are decisions made, and who makes those decisions? +• How are final decisions communicated to the team? +• Process flow diagram (see below) +● A process flow diagram may be included in the Appendix to save space; however, it is referenced +in the body of the report. At a minimum, the diagram shows the “trigger”, information flow, +decision making tasks and responsibilities, and communication tasks. The diagram is specific to +and created by the team. +● Implementation of the Change Management Process: In the body of the report, the team +provides a single thorough and clear example of the implementation of the Change Management +Process. The example provided addresses all stages of the process from start to finish, including +the overall impact to the project. +● Effectiveness of and Improvements to the Change Management Process: In the body of the +report, the team provides their own assessment of the effectiveness of their Change Management +Process, primarily based upon the example provided. This includes the effectiveness of each stage +of the process (trigger, information flow, decision making, and communication) as well as an +overall assessment. Based on their assessment, the team provides two areas of opportunity to +improve the Change Management Process, including what stage of the process is impacted and +why this change is being made. The team addresses plans for what the team must do to make the +proposed changes, timing of changes, and a definition of how to measure the effectiveness of the +changes for the following year. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +● Proper Use of Appendix: While the Appendix may be used to refer to diagrams, tables, etc., a +brief explanation for each component must be summarized in the body of the report to receive full +credit. Any diagram or table (or other appropriate figure type) must be referenced and linked +appropriately to the correct content in the Appendix. +Applying the Change Management Scoring Guidelines +The guidelines for awarding points in each Change Management Report evaluation category are given in +Figure 47. Similar to the Project Plan guidelines, four performance designations are specified: +Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation +to give reviewers flexibility in weighing quality and completeness of information for each +category. +Figure 47: Change Management Report Scoring Guidelines + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component +must be summarized in the body of the report to receive full credit. Any diagram or table (or +other appropriate figure type) must be referenced and linked appropriately to the correct content +in the Appendix. +3. Project Management Presentation at the Competition +The Presentation component gives teams the opportunity to briefly explain their project plans, assess how +well their project management process worked, and identify recommendations for improving +their team’s project management process in the future. In addition, the Presentation component +enables team leaders to enhance their communication skills in presenting a complex topic +clearly and concisely. +The Presentation component is the culmination of the project management experience, which included +submission by each team of a project plan and change management report. Scoring of each +presentation is based on how well project management practices were used by the team in the +planning, execution, and change management aspects of the project. Of particular interest are +innovative approaches used by each team in dealing with challenges and how lessons learned +from the current competition will be used to foster continuous improvement in the design, +development, and testing of their cars for future competitions. +Project Management presentations are made on the Static Events Day during the competition. Each +presentation is limited to a maximum of twelve (12) minutes. An eight (8) minute question and +answer period will follow along with a feedback discussion with judges lasting no longer than +five (5) minutes. +This format will give each team an opportunity to critique their project management performance, clarify +major points, and have a discussion with judges on areas that can be improved or strengths that +can be built upon for next year’s competition. Only the team members present who are +introduced at the start of the presentation will be allowed to speak and/or respond to questions +and comments. +Scoring the Project Management Presentation +In awarding points, each judge must determine if the team demonstrated an understanding of project +management, if the described accomplishments are credible, and if the approaches used to +manage the project were effective. These judgements are formed after listening to each +presentation and probing the teams for clarity and additional details during the questioning +period afterward. Presentation quality and communications skills of team members are +extremely important for establishing a positive impression. +A chart summarizing the evaluation criteria for the Presentation component is given in Figure 48 – +Evaluation Criteria. This provides more detailed guidelines used by the judging review team +for evaluating each project management presentation. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Figure 48 – Evaluation Criteria +Characteristics on an Excellent Project Management Presentation +● Scope: The primary and secondary goals defined in the project plan are addressed; the degree +to which each has been accomplished is explained. Where applicable, the “Measures of Success” +are used to support the stated level of accomplishment. If the original goals have been changed, +the reasons for modification are explained. +● Operations: Was this project a success? This conclusion is supported by Team performance +against the budget, project schedule, and deliverables produced. The effectiveness of the team’s +structure is explained. If the operation was disorderly or inefficient during project execution, an +overview of corrective actions taken to fix the problem is given. +● Risk Management: The team’s success to correctly anticipate risk in the original project plan +and effectiveness of the risk mitigation plan are described. An overview of unanticipated risks +that were encountered during project execution and approaches to overcome these barriers are +explained. +● Change Management: A need for change occurs naturally in almost every project; it is +anticipated that every Formula Hybrid + Electric team will have experienced some type of change +during project execution. Change management strives to align the efforts of all team members +working in the dynamic project environment. The effectiveness of the overall change +management process in dealing with needed modifications is described. This is supported with + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +statistics on the number of changes approved and rejected. The effectiveness of the team’s +communication methods, both written and verbal, is explained. Areas of opportunity for +improvement to the change management process are briefly described as well as their status of +implementation for next year. +● Lessons Learned: When a project is completed, the team should conduct an assessment of +overall performance to determine what worked well and what failed. The strengths and +weaknesses of the team are described. This evaluation is used to propose recommendations for +improving the performance of next year’s team. Also, a plan for conveying this information to the +new leadership team is described. A leadership succession plan is briefly described. +● “SMART” Goals: Team’s demonstrated understanding and application of “SMART” goals. +● Communications Skills: The team establishes credibility by demonstrating that it has taken the +time necessary to carefully plan and create the presentation. The presentation is well organized, +content is relevant to the purpose of the presentation. Charts have a professional appearance and +are informative. Without the speaker rushing through the material, a large amount of information +is conveyed within the allowed time limit. Tables, diagrams, and graphs are used effectively. +Team members demonstrate mutual accountability with shared responses to questions. Answers are +conveyed in a manner that instills confidence in the team’s ability to plan and execute a complex +project like Formula Hybrid + Electric. +Figure 49 - Project Management Scoring Sheet + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix D Design Judging Form 35 - - - -35 - This form is for informational use only – the actual form used may differ. Check the Formula Hybrid + Electric -website prior to the competition for the latest Design judging form. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix E -Wire Current Capacity (DC) - - -Wire Gauge -Copper -AWG -Conductor +35 +This form is for informational use only – the actual form used may differ. Check the Formula Hybrid + Electric +website prior to the competition for the latest Design judging form. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix E +Wire Current Capacity (DC) +Wire Gauge +Copper +AWG +Conductor Area mm 2 - -Max. -Continuous -Fuse Rating -(A) - -Standard -Metric Wire +Max. +Continuous +Fuse Rating +(A) +Standard +Metric Wire Size mm 2 - -Max. -Continuous -Fuse Rating -(A) -24 0.20 5 0.50 10 -22 0.33 7 0.75 12.5 -20 0.52 10 1.0 15 -18 0.82 14 1.5 20 -16 1.31 20 2.5 30 -14 2.08 28 4.0 40 -12 3.31 40 6.0 60 -10 5.26 55 10 90 -8 8.37 80 16 130 -6 13.3 105 25 150 -4 21.2 140 35 200 -3 26.7 165 50 250 -2 33.6 190 70 300 -1 42.4 220 95 375 -0 53.5 260 120 425 -2/0 67.4 300 150 500 -3/0 85.0 350 185 550 -4/0 107 405 240 650 -250 MCM 127 455 300 800 -300 MCM 152 505 -350 MCM 177 570 -400 MCM 203 615 -500 MCM 253 700 -Table 22 – Wire Current Capacity (single conductor in air) -Reference: US National Electrical Code Table 400.5(A)(2), 90C Column D1 (Copper wire only) - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix F -Required Equipment - -□ Fire Extinguishers -Minimum Requirements -Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers - -Extinguishers of larger capacity (higher numerical ratings) are acceptable. -All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows -“FULL”. - -Special Requirements -Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire -extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at -least two (2) additional extinguishers/material (at least 5 lb. or equivalent) of the required type must be -procured and accompany the car at all times. As recommendations vary, teams are advised to consult the -rules committee before purchasing expensive extinguishers that may not be necessary. -□ Chemical Spill Absorbent -Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must -be presented at technical inspection. -□ Insulated Gloves -Insulated gloves, rated for at least the voltage in the TS system, with protective over-gloves. Electrical -gloves require testing by a qualified company. The testing is valid for 14 months after the date of the test. -All gloves must have the test date printed on them. -□ Safety Glasses -Safety glasses must be worn as specified in section D10.7 -□ Additional -Any special safety equipment required for dealing with accumulator mishaps, for example correct gloves -recommended for handling any electrolyte material in the accumulator. - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix G -Example Relay Latch Circuits - - -The diagrams below are examples of relay-based latch circuits that can be used to latch the momentary -output of the Bender IMD (either high-true or low-true) such that it will comply with Formula Hybrid + -Electric rule EV7.1. Circuits such as these can also be used to latch AMS faults in accordance -with EV2.1.3. It is highly recommended that IMD and AMS latching circuits be separate and -independent to aid fault identification during the event. - -Note: It is important to confirm by checking the data sheets, that the output pin of the IMD can power the +Max. +Continuous +Fuse Rating +(A) +24 0.20 5 0.50 10 +22 0.33 7 0.75 12.5 +20 0.52 10 1.0 15 +18 0.82 14 1.5 20 +16 1.31 20 2.5 30 +14 2.08 28 4.0 40 +12 3.31 40 6.0 60 +10 5.26 55 10 90 +8 8.37 80 16 130 +6 13.3 105 25 150 +4 21.2 140 35 200 +3 26.7 165 50 250 +2 33.6 190 70 300 +1 42.4 220 95 375 +0 53.5 260 120 425 +2/0 67.4 300 150 500 +3/0 85.0 350 185 550 +4/0 107 405 240 650 +250 MCM 127 455 300 800 +300 MCM 152 505 +350 MCM 177 570 +400 MCM 203 615 +500 MCM 253 700 +Table 22 – Wire Current Capacity (single conductor in air) +Reference: US National Electrical Code Table 400.5(A)(2), 90C Column D1 (Copper wire only) + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix F +Required Equipment +□ Fire Extinguishers +Minimum Requirements +Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers +Extinguishers of larger capacity (higher numerical ratings) are acceptable. +All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows +“FULL”. +Special Requirements +Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire +extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at +least two (2) additional extinguishers/material (at least 5 lb. or equivalent) of the required type must be +procured and accompany the car at all times. As recommendations vary, teams are advised to consult the +rules committee before purchasing expensive extinguishers that may not be necessary. +□ Chemical Spill Absorbent +Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must +be presented at technical inspection. +□ Insulated Gloves +Insulated gloves, rated for at least the voltage in the TS system, with protective over-gloves. Electrical +gloves require testing by a qualified company. The testing is valid for 14 months after the date of the test. +All gloves must have the test date printed on them. +□ Safety Glasses +Safety glasses must be worn as specified in section D10.7 +□ Additional +Any special safety equipment required for dealing with accumulator mishaps, for example correct gloves +recommended for handling any electrolyte material in the accumulator. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix G +Example Relay Latch Circuits +The diagrams below are examples of relay-based latch circuits that can be used to latch the momentary +output of the Bender IMD (either high-true or low-true) such that it will comply with Formula Hybrid + +Electric rule EV7.1. Circuits such as these can also be used to latch AMS faults in accordance +with EV2.1.3. It is highly recommended that IMD and AMS latching circuits be separate and +independent to aid fault identification during the event. +Note: It is important to confirm by checking the data sheets, that the output pin of the IMD can power the relay directly. If not, an amplification device will be required 36 - - - - - -. - - Figure 50 - Latching for Active-High output Figure 51 - Latching for Active-Low output - - - - -36 - An example relay is the Omron LY3-DC12: -http://www.ia.omron.com/product/item/6403/ - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix H -Firewall Equivalency Test - -To demonstrate equivalence to the aluminum sheet specified in rule T4.5.2, teams should submit -a video, showing a torch test of their proposed firewall material. - -Camera angle, etc. should be similar to the video found here: - - -https://www.youtube.com/watch?v=Qw6kzG97ZtY - -A propane plumber’s torch should be held at a distance from the test piece such that the hottest -part of the flame (the tip of the inner cone) is just touching the test piece. - -The video must show two sequential tests and be contiguous and unedited (except for trimming -the irrelevant leading and trailing portions). - -The first part of the video should show the torch applied to a piece of Aluminum of the thickness -called for in T4.5.2, and held long enough to burn through the aluminum. The torch should then -be moved directly to a similarly sized test piece of the proposed material without changing any -settings, and held for at least as long as the burn-through time for the Aluminum. - -There must be no penetration of the test piece. The equivalent firewall construction must have -similar mechanical strength to the aluminum barrier called for in T4.5.2. This can be -demonstrated by equivalent resistance to deformation or puncturing. - - - - - - - - - - - - - - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix I Virtual Racing -Challenge - -The Virtual Racing Challenge will be held in 2025. - - - - - - - - - - - - - - - - - - - - - -END \ No newline at end of file +. +Figure 50 - Latching for Active-High output Figure 51 - Latching for Active-Low output +36 +An example relay is the Omron LY3-DC12: +http://www.ia.omron.com/product/item/6403/ + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix H +Firewall Equivalency Test +To demonstrate equivalence to the aluminum sheet specified in rule T4.5.2, teams should submit +a video, showing a torch test of their proposed firewall material. +Camera angle, etc. should be similar to the video found here: +https://www.youtube.com/watch?v=Qw6kzG97ZtY +A propane plumber’s torch should be held at a distance from the test piece such that the hottest +part of the flame (the tip of the inner cone) is just touching the test piece. +The video must show two sequential tests and be contiguous and unedited (except for trimming +the irrelevant leading and trailing portions). +The first part of the video should show the torch applied to a piece of Aluminum of the thickness +called for in T4.5.2, and held long enough to burn through the aluminum. The torch should then +be moved directly to a similarly sized test piece of the proposed material without changing any +settings, and held for at least as long as the burn-through time for the Aluminum. +There must be no penetration of the test piece. The equivalent firewall construction must have +similar mechanical strength to the aluminum barrier called for in T4.5.2. This can be +demonstrated by equivalent resistance to deformation or puncturing. + +2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 +Appendix I Virtual Racing +Challenge +The Virtual Racing Challenge will be held in 2025. +END \ No newline at end of file diff --git a/scripts/document-parser/txtVersions/FSAE.txt b/scripts/document-parser/txtVersions/FSAE.txt index 1374af51bc..4455df950f 100644 --- a/scripts/document-parser/txtVersions/FSAE.txt +++ b/scripts/document-parser/txtVersions/FSAE.txt @@ -1,4303 +1,3967 @@ - -Formula SAE® Rules 2025 © 2024 SAE International Page 1 of 143 -Version 1.0 31 Aug 2024 - - - - - -Rules 2025 - - - - -Version 1.0 -31 Aug 2024 - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 2 of 143 -Version 1.0 31 Aug 2024 -TABLE OF CONTENTS -GR - General Regulations ....................................................................................................................5 -GR.1 Formula SAE Competition Objective .................................................................................................... 5 -GR.2 Organizer Authority .............................................................................................................................. 6 -GR.3 Team Responsibility ............................................................................................................................. 6 -GR.4 Rules Authority and Issue ..................................................................................................................... 7 -GR.5 Rules of Conduct .................................................................................................................................. 7 -GR.6 Rules Format and Use .......................................................................................................................... 8 -GR.7 Rules Questions .................................................................................................................................... 9 -GR.8 Protests ................................................................................................................................................ 9 -GR.9 Vehicle Eligibility ................................................................................................................................ 10 -AD - Administrative Regulations ....................................................................................................... 11 -AD.1 The Formula SAE Series ...................................................................................................................... 11 -AD.2 Official Information Sources .............................................................................................................. 11 -AD.3 Individual Participation Requirements ............................................................................................... 11 -AD.4 Individual Registration Requirements ................................................................................................ 12 -AD.5 Team Advisors and Officers................................................................................................................ 12 -AD.6 Competition Registration ................................................................................................................... 13 -AD.7 Competition Site ................................................................................................................................ 14 -DR - Document Requirements .......................................................................................................... 16 -DR.1 Documentation .................................................................................................................................. 16 -DR.2 Submission Details ............................................................................................................................. 16 -DR.3 Submission Penalties .......................................................................................................................... 17 -V - Vehicle Requirements ................................................................................................................. 19 -V.1 Configuration ..................................................................................................................................... 19 -V.2 Driver .................................................................................................................................................. 20 -V.3 Suspension and Steering .................................................................................................................... 20 -V.4 Wheels and Tires ................................................................................................................................ 21 -F - Chassis and Structural .................................................................................................................. 23 -F.1 Definitions .......................................................................................................................................... 23 -F.2 Documentation .................................................................................................................................. 25 -F.3 Tubing and Material ........................................................................................................................... 25 -F.4 Composite and Other Materials ......................................................................................................... 28 -F.5 Chassis Requirements ........................................................................................................................ 30 -F.6 Tube Frames ....................................................................................................................................... 37 -F.7 Monocoque ........................................................................................................................................ 39 -F.8 Front Chassis Protection .................................................................................................................... 43 -F.9 Fuel System (IC Only) ......................................................................................................................... 48 -F.10 Accumulator Container (EV Only) ...................................................................................................... 49 -F.11 Tractive System (EV Only) .................................................................................................................. 52 -T - Technical Aspects ........................................................................................................................ 54 -T.1 Cockpit................................................................................................................................................ 54 -T.2 Driver Accommodation ...................................................................................................................... 58 -T.3 Brakes ................................................................................................................................................. 63 -T.4 Electronic Throttle Components ........................................................................................................ 64 -T.5 Powertrain .......................................................................................................................................... 66 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 3 of 143 -Version 1.0 31 Aug 2024 -T.6 Pressurized Systems ........................................................................................................................... 68 -T.7 Bodywork and Aerodynamic Devices ................................................................................................. 69 -T.8 Fasteners ............................................................................................................................................ 71 -T.9 Electrical Equipment .......................................................................................................................... 72 -VE - Vehicle and Driver Equipment ................................................................................................... 75 -VE.1 Vehicle Identification ......................................................................................................................... 75 -VE.2 Vehicle Equipment ............................................................................................................................. 75 -VE.3 Driver Equipment ............................................................................................................................... 77 -IC - Internal Combustion Engine Vehicles .......................................................................................... 79 -IC.1 General Requirements ....................................................................................................................... 79 -IC.2 Air Intake System ............................................................................................................................... 79 -IC.3 Throttle .............................................................................................................................................. 80 -IC.4 Electronic Throttle Control ................................................................................................................. 81 -IC.5 Fuel and Fuel System ......................................................................................................................... 84 -IC.6 Fuel Injection ...................................................................................................................................... 86 -IC.7 Exhaust and Noise Control ................................................................................................................. 87 -IC.8 Electrical ............................................................................................................................................. 88 -IC.9 Shutdown System............................................................................................................................... 88 -EV - Electric Vehicles ........................................................................................................................ 90 -EV.1 Definitions .......................................................................................................................................... 90 -EV.2 Documentation .................................................................................................................................. 90 -EV.3 Electrical Limitations .......................................................................................................................... 90 -EV.4 Components ....................................................................................................................................... 91 -EV.5 Energy Storage ................................................................................................................................... 94 -EV.6 Electrical System ................................................................................................................................ 98 -EV.7 Shutdown System............................................................................................................................. 102 -EV.8 Charger Requirements ..................................................................................................................... 107 -EV.9 Vehicle Operations ........................................................................................................................... 108 -EV.10 Event Site Activities .......................................................................................................................... 109 -EV.11 Work Practices ................................................................................................................................. 109 -IN - Technical Inspection ................................................................................................................ 112 -IN.1 Inspection Requirements ................................................................................................................. 112 -IN.2 Inspection Conduct .......................................................................................................................... 112 -IN.3 Initial Inspection ............................................................................................................................... 113 -IN.4 Electrical Technical Inspection (EV Only) ......................................................................................... 113 -IN.5 Driver Cockpit Checks ....................................................................................................................... 114 -IN.6 Driver Template Inspections ............................................................................................................ 115 -IN.7 Cockpit Template Inspections .......................................................................................................... 115 -IN.8 Mechanical Technical Inspection ..................................................................................................... 115 -IN.9 Tilt Test ............................................................................................................................................. 116 -IN.10 Noise and Switch Test (IC Only) ....................................................................................................... 117 -IN.11 Rain Test (EV Only) ........................................................................................................................... 118 -IN.12 Brake Test ......................................................................................................................................... 118 -IN.13 Inspection Approval ......................................................................................................................... 119 -IN.14 Modifications and Repairs ............................................................................................................... 119 -IN.15 Reinspection ..................................................................................................................................... 120 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 4 of 143 -Version 1.0 31 Aug 2024 -S - Static Events .............................................................................................................................. 121 -S.1 General Static ................................................................................................................................... 121 -S.2 Presentation Event ........................................................................................................................... 121 -S.3 Cost and Manufacturing Event ......................................................................................................... 122 -S.4 Design Event ..................................................................................................................................... 126 -D - Dynamic Events ........................................................................................................................ 128 -D.1 General Dynamic .............................................................................................................................. 128 -D.2 Pit and Paddock ................................................................................................................................ 128 -D.3 Driving .............................................................................................................................................. 129 -D.4 Flags ................................................................................................................................................. 130 -D.5 Weather Conditions ......................................................................................................................... 130 -D.6 Tires and Tire Changes ..................................................................................................................... 131 -D.7 Driver Limitations ............................................................................................................................. 132 -D.8 Definitions ........................................................................................................................................ 132 -D.9 Acceleration Event ........................................................................................................................... 132 -D.10 Skidpad Event ................................................................................................................................... 133 -D.11 Autocross Event ............................................................................................................................... 135 -D.12 Endurance Event .............................................................................................................................. 137 -D.13 Efficiency Event ................................................................................................................................ 141 -D.14 Post Endurance ................................................................................................................................ 143 - -Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com -REVISION SUMMARY -Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 -1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 -Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 -Allowance for Late Submissions DR.3.3.1 -Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, -EV.5.9, EV.7.8.4 - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 5 of 143 -Version 1.0 31 Aug 2024 -GR - GENERAL REGULATIONS -GR.1 FORMULA SAE COMPETITION OBJECTIVE -GR.1.1 Collegiate Design Series -SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and +Formula SAE® Rules 2025 © 2024 SAE International Page 1 of 143 +Version 1.0 31 Aug 2024 +Rules 2025 +Version 1.0 +31 Aug 2024 + +Formula SAE® Rules 2025 © 2024 SAE International Page 2 of 143 +Version 1.0 31 Aug 2024 +TABLE OF CONTENTS +GR - General Regulations....................................................................................................................5 +GR.1 Formula SAE Competition Objective .................................................................................................... 5 +GR.2 Organizer Authority.............................................................................................................................. 6 +GR.3 Team Responsibility ............................................................................................................................. 6 +GR.4 Rules Authority and Issue..................................................................................................................... 7 +GR.5 Rules of Conduct .................................................................................................................................. 7 +GR.6 Rules Format and Use .......................................................................................................................... 8 +GR.7 Rules Questions.................................................................................................................................... 9 +GR.8 Protests ................................................................................................................................................ 9 +GR.9 Vehicle Eligibility ................................................................................................................................ 10 +AD - Administrative Regulations ....................................................................................................... 11 +AD.1 The Formula SAE Series ...................................................................................................................... 11 +AD.2 Official Information Sources .............................................................................................................. 11 +AD.3 Individual Participation Requirements............................................................................................... 11 +AD.4 Individual Registration Requirements ................................................................................................ 12 +AD.5 Team Advisors and Officers................................................................................................................ 12 +AD.6 Competition Registration ................................................................................................................... 13 +AD.7 Competition Site ................................................................................................................................ 14 +DR - Document Requirements .......................................................................................................... 16 +DR.1 Documentation .................................................................................................................................. 16 +DR.2 Submission Details ............................................................................................................................. 16 +DR.3 Submission Penalties.......................................................................................................................... 17 +V - Vehicle Requirements ................................................................................................................. 19 +V.1 Configuration ..................................................................................................................................... 19 +V.2 Driver.................................................................................................................................................. 20 +V.3 Suspension and Steering .................................................................................................................... 20 +V.4 Wheels and Tires ................................................................................................................................ 21 +F - Chassis and Structural.................................................................................................................. 23 +F.1 Definitions .......................................................................................................................................... 23 +F.2 Documentation .................................................................................................................................. 25 +F.3 Tubing and Material ........................................................................................................................... 25 +F.4 Composite and Other Materials ......................................................................................................... 28 +F.5 Chassis Requirements ........................................................................................................................ 30 +F.6 Tube Frames ....................................................................................................................................... 37 +F.7 Monocoque ........................................................................................................................................ 39 +F.8 Front Chassis Protection .................................................................................................................... 43 +F.9 Fuel System (IC Only) ......................................................................................................................... 48 +F.10 Accumulator Container (EV Only) ...................................................................................................... 49 +F.11 Tractive System (EV Only) .................................................................................................................. 52 +T - Technical Aspects ........................................................................................................................ 54 +T.1 Cockpit................................................................................................................................................ 54 +T.2 Driver Accommodation ...................................................................................................................... 58 +T.3 Brakes ................................................................................................................................................. 63 +T.4 Electronic Throttle Components ........................................................................................................ 64 +T.5 Powertrain.......................................................................................................................................... 66 + +Formula SAE® Rules 2025 © 2024 SAE International Page 3 of 143 +Version 1.0 31 Aug 2024 +T.6 Pressurized Systems ........................................................................................................................... 68 +T.7 Bodywork and Aerodynamic Devices ................................................................................................. 69 +T.8 Fasteners ............................................................................................................................................ 71 +T.9 Electrical Equipment .......................................................................................................................... 72 +VE - Vehicle and Driver Equipment ................................................................................................... 75 +VE.1 Vehicle Identification ......................................................................................................................... 75 +VE.2 Vehicle Equipment ............................................................................................................................. 75 +VE.3 Driver Equipment ............................................................................................................................... 77 +IC - Internal Combustion Engine Vehicles .......................................................................................... 79 +IC.1 General Requirements ....................................................................................................................... 79 +IC.2 Air Intake System ............................................................................................................................... 79 +IC.3 Throttle .............................................................................................................................................. 80 +IC.4 Electronic Throttle Control................................................................................................................. 81 +IC.5 Fuel and Fuel System ......................................................................................................................... 84 +IC.6 Fuel Injection ...................................................................................................................................... 86 +IC.7 Exhaust and Noise Control ................................................................................................................. 87 +IC.8 Electrical ............................................................................................................................................. 88 +IC.9 Shutdown System............................................................................................................................... 88 +EV - Electric Vehicles ........................................................................................................................ 90 +EV.1 Definitions .......................................................................................................................................... 90 +EV.2 Documentation .................................................................................................................................. 90 +EV.3 Electrical Limitations .......................................................................................................................... 90 +EV.4 Components ....................................................................................................................................... 91 +EV.5 Energy Storage ................................................................................................................................... 94 +EV.6 Electrical System ................................................................................................................................ 98 +EV.7 Shutdown System............................................................................................................................. 102 +EV.8 Charger Requirements ..................................................................................................................... 107 +EV.9 Vehicle Operations ........................................................................................................................... 108 +EV.10 Event Site Activities .......................................................................................................................... 109 +EV.11 Work Practices ................................................................................................................................. 109 +IN - Technical Inspection ................................................................................................................ 112 +IN.1 Inspection Requirements ................................................................................................................. 112 +IN.2 Inspection Conduct .......................................................................................................................... 112 +IN.3 Initial Inspection ............................................................................................................................... 113 +IN.4 Electrical Technical Inspection (EV Only) ......................................................................................... 113 +IN.5 Driver Cockpit Checks....................................................................................................................... 114 +IN.6 Driver Template Inspections ............................................................................................................ 115 +IN.7 Cockpit Template Inspections .......................................................................................................... 115 +IN.8 Mechanical Technical Inspection ..................................................................................................... 115 +IN.9 Tilt Test ............................................................................................................................................. 116 +IN.10 Noise and Switch Test (IC Only) ....................................................................................................... 117 +IN.11 Rain Test (EV Only) ........................................................................................................................... 118 +IN.12 Brake Test......................................................................................................................................... 118 +IN.13 Inspection Approval ......................................................................................................................... 119 +IN.14 Modifications and Repairs ............................................................................................................... 119 +IN.15 Reinspection ..................................................................................................................................... 120 + +Formula SAE® Rules 2025 © 2024 SAE International Page 4 of 143 +Version 1.0 31 Aug 2024 +S - Static Events.............................................................................................................................. 121 +S.1 General Static ................................................................................................................................... 121 +S.2 Presentation Event ........................................................................................................................... 121 +S.3 Cost and Manufacturing Event......................................................................................................... 122 +S.4 Design Event..................................................................................................................................... 126 +D - Dynamic Events ........................................................................................................................ 128 +D.1 General Dynamic .............................................................................................................................. 128 +D.2 Pit and Paddock................................................................................................................................ 128 +D.3 Driving .............................................................................................................................................. 129 +D.4 Flags ................................................................................................................................................. 130 +D.5 Weather Conditions ......................................................................................................................... 130 +D.6 Tires and Tire Changes ..................................................................................................................... 131 +D.7 Driver Limitations ............................................................................................................................. 132 +D.8 Definitions ........................................................................................................................................ 132 +D.9 Acceleration Event ........................................................................................................................... 132 +D.10 Skidpad Event ................................................................................................................................... 133 +D.11 Autocross Event ............................................................................................................................... 135 +D.12 Endurance Event .............................................................................................................................. 137 +D.13 Efficiency Event ................................................................................................................................ 141 +D.14 Post Endurance ................................................................................................................................ 143 +Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com +REVISION SUMMARY +Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 +1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 +Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 +Allowance for Late Submissions DR.3.3.1 +Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, +EV.5.9, EV.7.8.4 + +Formula SAE® Rules 2025 © 2024 SAE International Page 5 of 143 +Version 1.0 31 Aug 2024 +GR - GENERAL REGULATIONS +GR.1 FORMULA SAE COMPETITION OBJECTIVE +GR.1.1 Collegiate Design Series +SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and graduate engineering students in a variety of disciplines for future employment in mobility- -related industries by challenging them with a real world, engineering application. -Through the Engineering Design Process, experiences may include but are not limited to: -• Project management, budgeting, communication, and resource management skills -• Team collaboration -• Applying industry rules and regulations -• Design, build, and test the performance of a real vehicle -• Interact and compete with other students from around the globe -• Develop and prepare technical documentation -Students also gain valuable exposure to and engagement with industry professionals to -enhance 21st century learning skills, to build their own network and help prepare them for the -workforce after graduation. -GR.1.2 Formula SAE Concept -The Formula SAE® competitions challenge teams of university undergraduate and graduate -students to conceive, design, fabricate, develop and compete with small, formula style -vehicles. -GR.1.3 Engineering Competition -Formula SAE® is an engineering education competition that requires performance -demonstration of vehicles in a series of events, off track and on track against the clock. -Each competition gives teams the chance to demonstrate their creativity and engineering -skills in comparison to teams from other universities around the world. -GR.1.4 Vehicle Design Objectives -GR.1.4.1 Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and -demonstrate a prototype vehicle -GR.1.4.2 The vehicle should have high performance and be sufficiently durable to successfully complete -all the events at the Formula SAE competitions. -GR.1.4.3 Additional design factors include: aesthetics, cost, ergonomics, maintainability, and -manufacturability. -GR.1.4.4 Each design will be judged and evaluated against other competing designs in a series of Static -and Dynamic events to determine the vehicle that best meets the design goals and may be -profitably built and marketed. -GR.1.5 Good Engineering Practices -Vehicles entered into Formula SAE competitions should be designed and fabricated in -accordance with good engineering practices. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 6 of 143 -Version 1.0 31 Aug 2024 -GR.2 ORGANIZER AUTHORITY -GR.2.1 General Authority -SAE International and the competition organizing bodies reserve the right to revise the -schedule of any competition and/or interpret or modify the competition rules at any time and -in any manner that is, in their sole judgment, required for the efficient operation of the event -or the Formula SAE series as a whole. -GR.2.2 Right to Impound -GR.2.2.1 SAE International and other competition organizing bodies may impound any onsite vehicle or -part of the vehicle at any time during a competition. -GR.2.2.2 Team access to the vehicle or impound may be restricted. -GR.2.3 Problem Resolution -Any problems that arise during the competition will be resolved through the onsite organizers -and the decision will be final. -GR.2.4 Restriction on Vehicle Use -SAE International, competition organizer(s) and officials are not responsible for use of vehicles -designed in compliance with these Formula SAE Rules outside of the official Formula SAE -competitions. -GR.3 TEAM RESPONSIBILITY -GR.3.1 Rules Compliance -By registering for a Formula SAE competition, the team, members of the team as individuals, -faculty advisors and other personnel of the entering university agree to comply with, and be -bound by, these rules and all rule interpretations or procedures issued or announced by SAE -International, the Formula SAE Rules Committee and the other organizing bodies. -GR.3.2 Student Project -By registering for any university program, the University registered assumes liability of the -student project. -GR.3.3 Understanding the Rules -Teams, team members as individuals and faculty advisors, are responsible for reading and -understanding the rules in effect for the competition in which they are participating. -GR.3.4 Participating in the Competition -GR.3.4.1 Teams, individual team members, faculty advisors and other representatives of a registered -university who are present onsite at a competition are “participating in the competition” from -the time they arrive at the competition site until they depart the site at the conclusion of the -competition or earlier by withdrawing. -GR.3.4.2 All team members, faculty advisors and other university representatives must cooperate with, -and follow all instructions from, competition organizers, officials and judges. -GR.3.5 Forfeit for Non Appearance -GR.3.5.1 It is the responsibility of each team to be in the right location at the right time. -GR.3.5.2 If a team is not present and ready to compete at the scheduled time, they forfeit their attempt -at that event. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 7 of 143 -Version 1.0 31 Aug 2024 -GR.3.5.3 There are no makeups for missed appearances. -GR.4 RULES AUTHORITY AND ISSUE -GR.4.1 Rules Authority -The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are -issued under the authority of the SAE International Collegiate Design Series. -GR.4.2 Rules Validity -GR.4.2.1 The Formula SAE Rules posted on the website and dated for the calendar year of the -competition are the rules in effect for the competition. -GR.4.2.2 Rules appendices or supplements may be posted on the website and incorporated into the -rules by reference. -GR.4.2.3 Additional guidance or reference documents may be posted on the website. -GR.4.2.4 Any rules, questions, or resolutions from previous years are not valid for the current -competition year. -GR.4.3 Rules Alterations -GR.4.3.1 The Formula SAE rules may be revised, updated, or amended at any time -GR.4.3.2 Official designated communications from the Formula SAE Rules Committee, SAE International -or the other organizing bodies are to be considered part of, and have the same validity as, -these rules -GR.4.3.3 Draft rules or proposals may be issued for comments, however they are a courtesy, are not -valid for any competitions, and may or may not be implemented in whole or in part. -GR.4.4 Rules Compliance -GR.4.4.1 All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE -Online Website to verify the current version. -GR.4.4.2 Teams and team members must comply with the general rules and any specific rules for each -competition they enter. -GR.4.4.3 Any regulations pertaining to the use of the competition site by teams or individuals and -which are posted, announced and/or otherwise publicly available are incorporated into the -Formula SAE Rules by reference. -As examples, all competition site waiver requirements, speed limits, parking and facility use -rules apply to Formula SAE participants. -GR.4.5 Violations on Intent -The violation of the intent of a rule will be considered a violation of the rule itself. -GR.5 RULES OF CONDUCT -GR.5.1 Unsportsmanlike Conduct -If unsportsmanlike conduct occurs, the team gets a warning from an official. -A second violation will result in expulsion of the team from the competition. -GR.5.2 Official Instructions -Failure of a team member to follow an instruction or command directed specifically to that -team or team member will result in a 25 point penalty. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 8 of 143 -Version 1.0 31 Aug 2024 -GR.5.3 Arguments with Officials -Argument with, or disobedience of, any official may result in the team being eliminated from -the competition. -All members of the team may be immediately escorted from the grounds. -GR.5.4 Alcohol and Illegal Material -GR.5.4.1 Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site -during the entire competition. -GR.5.4.2 Any violation of this rule by any team member or faculty advisor will cause immediate -disqualification and expulsion of the entire team. -GR.5.4.3 Any use of drugs, or the use of alcohol by an underage individual will be reported to the local -authorities. -GR.5.5 Smoking – Prohibited -Smoking and e-cigarette use is prohibited in all competition areas. -GR.6 RULES FORMAT AND USE -GR.6.1 Definition of Terms -• Must - designates a requirement -• Must NOT - designates a prohibition or restriction -• Should - gives an expectation -• May - gives permission, not a requirement and not a recommendation -GR.6.2 Capitalized Terms -Items or areas which have specific definitions or have specific rules are capitalized. -For example, “Rules Questions” or “Primary Structure” -GR.6.3 Headings -The article, section and paragraph headings in these rules are provided only to facilitate -reading: they do not affect the paragraph contents. -GR.6.4 Applicability -GR.6.4.1 Unless otherwise specified, all rules apply to all vehicles at all times -GR.6.4.2 Rules specific to vehicles based on their powertrain will be specified as such in the rule text: -• Internal Combustion “IC” or “IC Only” -• Electric Vehicle “EV” or “EV Only” -GR.6.5 Figures and Illustrations -Figures and illustrations give clarification or guidance, but are Rules only when referred to in -the text of a rule -GR.6.6 Change Identification -Any summary of changed rules and/or changed portions marked in the rules themselves are -provided for courtesy, and may or may not include all changes. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 9 of 143 -Version 1.0 31 Aug 2024 -GR.7 RULES QUESTIONS -GR.7.1 Question Types -Designated officials will answer questions that are not already answered in the rules or FAQs -or that require new or novel rule interpretations. -Rules Questions may also be used to request approval, as specified in these rules. -GR.7.2 Question Format -GR.7.2.1 All Rules Questions must include: -• Full name and contact information of the person submitting the question -• University name – no abbreviations -• The specific competition your team has, or is planning to, enter -• Number of the applicable rule(s) -GR.7.2.2 Response Time -• Please allow a minimum of two weeks for a response -• Do not resubmit questions -GR.7.2.3 Submission Addresses -a. Teams entering Formula SAE competitions: Follow the link and instructions published on -the FSAE Online Website to "Submit a Rules Question" -b. Teams entering other competitions please visit those respective competition websites -for further instructions. -GR.7.3 Question Publication -Any submitted question and the official answer may be reproduced and freely distributed, in -complete and edited versions. -GR.8 PROTESTS -GR.8.1 Cause for Protest -A team may protest any rule interpretation, score or official action (unless specifically -excluded from Protest) which they feel has caused some actual, non trivial, harm to their -team, or has had a substantive effect on their score. -GR.8.2 Preliminary Review – Required -Questions about scoring, judging, policies or any official action must be brought to the -attention of the organizer or SAE International staff for an informal preliminary review before -a protest may be filed. -GR.8.3 Protest Format -• All protests must be filed in writing -• The completed protest must be presented to the organizer or SAE International staff by -the team captain. -• Team video or data acquisition will not be reviewed as part of a protest. -GR.8.4 Protest Point Bond -A team must post a 25 point protest bond which will be forfeited if their protest is rejected. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 10 of 143 -Version 1.0 31 Aug 2024 -GR.8.5 Protest Period -Protests concerning any aspect of the competition must be filed in the protest period -announced by the competition organizers or 30 minutes of the posting of the scores of the -event to which the protest relates. -GR.8.6 Decision -The decision regarding any protest is final. -GR.9 VEHICLE ELIGIBILITY -GR.9.1 Student Developed Vehicle -GR.9.1.1 Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and -maintained by the student team members without direct involvement from professional -engineers, automotive engineers, racers, machinists or related professionals. -GR.9.1.2 Information Sources -The student team may use any literature or knowledge related to design and information from -professionals or from academics as long as the information is given as a discussion of -alternatives with their pros and cons. -GR.9.1.3 Professional Assistance -Professionals must not make design decisions or drawings. The Faculty Advisor may be -required to sign a statement of compliance with this restriction. -GR.9.1.4 Student Fabrication -Students should do all fabrication tasks -GR.9.2 Definitions -GR.9.2.1 Competition Year -The period beginning at the event of the Formula SAE series where the vehicle first competes -and continuing until the start of the corresponding event held approximately 12 months later. -GR.9.2.2 First Year Vehicle -A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year -GR.9.2.3 Second Year Vehicle -A vehicle which has competed in a previous Competition Year -GR.9.2.4 Third Year Vehicle -A vehicle which has competed in more than one previous Competition Year -GR.9.3 Formula SAE Competition Eligibility -GR.9.3.1 Only First Year Vehicles may enter the Formula SAE Competitions -a. If there is any question about the status as a First Year Vehicle, the team must provide -additional information and/or evidence. -GR.9.3.2 Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the -organizer of the specific competition. -The Formula SAE and Formula SAE Electric events in North America do not allow Second Year -Vehicles -GR.9.3.3 Third Year Vehicles must not enter any Formula SAE Competitions - - -Formula SAE® Rules 2025 © 2024 SAE International Page 11 of 143 -Version 1.0 31 Aug 2024 -AD - ADMINISTRATIVE REGULATIONS -AD.1 THE FORMULA SAE SERIES -AD.1.1 Rule Variations -All competitions in the Formula SAE Series may post rule variations specific to the operation of -the events in their countries. Vehicle design requirements and restrictions will remain -unchanged. Any rule variations will be posted on the websites specific to those competitions. -AD.1.2 Official Announcements and Competition Information -Teams must read the published announcements by SAE International and the other organizing -bodies and be familiar with all official announcements concerning the competitions and any -released rules interpretations. -AD.1.3 Official Languages -The official language of the Formula SAE series is English. -Document submissions, presentations and discussions in English are acceptable at all -competitions in the series. -AD.2 OFFICIAL INFORMATION SOURCES -These websites are referenced in these rules. Refer to the websites for additional information -and resources. -AD.2.1 Event Website -The Event Website for Formula SAE is specific to each competition, refer to: -https://www.sae.org/attend/student-events -AD.2.2 FSAE Online Website -The FSAE Online website is at: http://fsaeonline.com/ -AD.2.2.1 Documents, forms, and information are accessed from the “Series Resources” link -AD.2.2.2 Each registered team must have an account on the FSAE Online Website. -AD.2.2.3 Each team must have one or more persons as Team Captain. The Team Captain must accept -Team Members. -AD.2.2.4 Only persons designated Team Members or Team Captains are able to upload documents to -the website. -AD.2.3 Contacts -Contact collegiatecompetitions@sae.org with any problems/comments/concerns -Consult the specific website for the other competitions requirements. -AD.3 INDIVIDUAL PARTICIPATION REQUIREMENTS -AD.3.1 Eligibility -AD.3.1.1 Team members must be enrolled as degree seeking undergraduate or graduate students in -the college or university of the team with which they are participating. -AD.3.1.2 Team members who have graduated during the seven month period prior to the competition -remain eligible to participate. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 12 of 143 -Version 1.0 31 Aug 2024 -AD.3.1.3 Teams which are formed with members from two or more universities are treated as a single -team. A student at any university making up the team may compete at any competition -where the team participates. The multiple universities are treated as one university with the -same eligibility requirements. -AD.3.1.4 Each team member may participate at a competition for only one team. This includes -competitions where the University enters both IC and EV teams. -AD.3.2 Age -Team members must be minimum 18 years of age. -AD.3.3 Driver’s License -Team members who will drive a competition vehicle at any time during a competition must -hold a valid, government issued driver’s license. -AD.3.4 Society Membership -Team members must be members of SAE International -Proof of membership, such as membership card, is required at the competition. -AD.3.5 Medical Insurance -Individual medical insurance coverage is required and is the sole responsibility of the -participant. -AD.3.6 Disabled Accessibility -Team members who require accessibility for areas outside of ADA Compliance must contact -organizers at collegiatecompetitions@sae.org prior to start of competition. -AD.4 INDIVIDUAL REGISTRATION REQUIREMENTS -AD.4.1 Preliminary Registration -AD.4.1.1 All students and faculty must be affiliated to your respective school /college/university on the -Event Website before the deadline shown on the Event Website -AD.4.1.2 International student participants (or unaffiliated Faculty Advisors) who are not SAE -International members must create a free customer account profile on www.sae.org. Upon -completion, please email collegiatecompetitions@sae.org the assigned customer number -stating also the event and university affiliation. -AD.4.2 Onsite Registration -AD.4.2.1 All team members and faculty advisors must register at the competition site -AD.4.2.2 All onsite participants, including students, faculty and volunteers, must sign a liability waiver -upon registering onsite. -AD.4.2.3 Onsite registration must be completed before the vehicle may be unloaded, uncrated or -worked upon in any manner. -AD.5 TEAM ADVISORS AND OFFICERS -AD.5.1 Faculty Advisor -AD.5.1.1 Each team must have a Faculty Advisor appointed by their university. -AD.5.1.2 The Faculty Advisor should accompany the team to the competition and will be considered by -the officials to be the official university representative. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 13 of 143 -Version 1.0 31 Aug 2024 -AD.5.1.3 Faculty Advisors: -a. May advise their teams on general engineering and engineering project management -theory -b. Must not design, build or repair any part of the vehicle -c. Must not develop any documentation or presentation -AD.5.2 Electrical System Officer (EV Only) -The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle -during the event -AD.5.2.1 Each participating team must appoint one or more ESO for the event -AD.5.2.2 The ESO must be: -a. A valid team member, see AD.3 Individual Participation Requirements -b. One or more ESO must not be a driver -c. Certified or has received appropriate practical training whether formal or informal for -working with High Voltage systems in automotive vehicles -Give details of the training on the ESO/ESA form -AD.5.2.3 Duties of the ESO - see EV.11.1.1 -AD.5.3 Electric System Advisor (EV Only) -AD.5.3.1 The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated -by the team who can advise on the electrical and control systems that will be integrated into -the vehicle. The faculty advisor may also be the ESA if all the requirements below are met. -AD.5.3.2 The ESA must supply details of their experience of electrical and/or control systems -engineering as used in the vehicle on the ESO/ESA form -AD.5.3.3 The ESA must be sufficiently qualified to advise the team on their proposed electrical and -control system designs based on significant experience of the technology being developed and -its implementation into vehicles or other safety critical systems. More than one person may -be needed. -AD.5.3.4 The ESA must advise the team on the merits of any relevant engineering solutions. Solutions -should be discussed, questioned and approved before they are implemented into the final -vehicle design. -AD.5.3.5 The ESA should advise the students on any required training to work with the systems on the -vehicle. -AD.5.3.6 The ESA must review the Electrical System Form and to confirm that in principle the vehicle -has been designed using good engineering practices. -AD.5.3.7 The ESA must make sure that the team communicates any unusual aspects of the design to -reduce the risk of exclusion or significant changes being required to pass Technical Inspection. -AD.6 COMPETITION REGISTRATION -AD.6.1 General Information -AD.6.1.1 Registration for Formula SAE competitions must be completed on the Event Website. -AD.6.1.2 Refer to the individual competition websites for registration requirements for other -competitions - - -Formula SAE® Rules 2025 © 2024 SAE International Page 14 of 143 -Version 1.0 31 Aug 2024 -AD.6.2 Registration Details -AD.6.2.1 Refer to the Event Website for specific registration requirements and details. -• Registration limits and Waitlist limits will be posted on the Event Website. -• Registration will open at the date and time posted on the Event Website. -• Registration(s) may have limitations -AD.6.2.2 Once a competition reaches the registration limit, a Waitlist will open. -AD.6.2.3 Beginning on the date and time posted on the Event Website, any remaining slots will be -available to any team on a first come, first serve basis. -AD.6.2.4 Registration and the Waitlist will close at the date and time posted on the Event Website or -when all available slots have been taken, whichever occurs first. -AD.6.3 Registration Fees -AD.6.3.1 Registration fees must be paid by the deadline specified on the respective competition -website -AD.6.3.2 Registration fees are not refundable and not transferrable to any other competition. -AD.6.4 Waitlist -AD.6.4.1 Waitlisted teams must submit all documents by the same deadlines as registered teams to -remain on the Waitlist. -AD.6.4.2 Once a team withdraws from the competition, the organizer will inform the next team on the -Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the -registered list has opened. -AD.6.4.3 The team will then have 24 hours to accept or reject the position and an additional 24 hours -to have the registration payment completed or in process. -AD.6.5 Withdrawals -Registered teams that will not attend the competition must inform SAE International or the -organizer, as posted on the Event Website -AD.7 COMPETITION SITE -AD.7.1 Personal Vehicles -Personal cars and trailers must be parked in designated areas only. Only authorized vehicles -will be allowed in the track areas. -AD.7.2 Motorcycles, Bicycles, Rollerblades, etc. - Prohibited +related industries by challenging them with a real world, engineering application. +Through the Engineering Design Process, experiences may include but are not limited to: +• Project management, budgeting, communication, and resource management skills +• Team collaboration +• Applying industry rules and regulations +• Design, build, and test the performance of a real vehicle +• Interact and compete with other students from around the globe +• Develop and prepare technical documentation +Students also gain valuable exposure to and engagement with industry professionals to +enhance 21st century learning skills, to build their own network and help prepare them for the +workforce after graduation. +GR.1.2 Formula SAE Concept +The Formula SAE® competitions challenge teams of university undergraduate and graduate +students to conceive, design, fabricate, develop and compete with small, formula style +vehicles. +GR.1.3 Engineering Competition +Formula SAE® is an engineering education competition that requires performance +demonstration of vehicles in a series of events, off track and on track against the clock. +Each competition gives teams the chance to demonstrate their creativity and engineering +skills in comparison to teams from other universities around the world. +GR.1.4 Vehicle Design Objectives +GR.1.4.1 Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and +demonstrate a prototype vehicle +GR.1.4.2 The vehicle should have high performance and be sufficiently durable to successfully complete +all the events at the Formula SAE competitions. +GR.1.4.3 Additional design factors include: aesthetics, cost, ergonomics, maintainability, and +manufacturability. +GR.1.4.4 Each design will be judged and evaluated against other competing designs in a series of Static +and Dynamic events to determine the vehicle that best meets the design goals and may be +profitably built and marketed. +GR.1.5 Good Engineering Practices +Vehicles entered into Formula SAE competitions should be designed and fabricated in +accordance with good engineering practices. + +Formula SAE® Rules 2025 © 2024 SAE International Page 6 of 143 +Version 1.0 31 Aug 2024 +GR.2 ORGANIZER AUTHORITY +GR.2.1 General Authority +SAE International and the competition organizing bodies reserve the right to revise the +schedule of any competition and/or interpret or modify the competition rules at any time and +in any manner that is, in their sole judgment, required for the efficient operation of the event +or the Formula SAE series as a whole. +GR.2.2 Right to Impound +GR.2.2.1 SAE International and other competition organizing bodies may impound any onsite vehicle or +part of the vehicle at any time during a competition. +GR.2.2.2 Team access to the vehicle or impound may be restricted. +GR.2.3 Problem Resolution +Any problems that arise during the competition will be resolved through the onsite organizers +and the decision will be final. +GR.2.4 Restriction on Vehicle Use +SAE International, competition organizer(s) and officials are not responsible for use of vehicles +designed in compliance with these Formula SAE Rules outside of the official Formula SAE +competitions. +GR.3 TEAM RESPONSIBILITY +GR.3.1 Rules Compliance +By registering for a Formula SAE competition, the team, members of the team as individuals, +faculty advisors and other personnel of the entering university agree to comply with, and be +bound by, these rules and all rule interpretations or procedures issued or announced by SAE +International, the Formula SAE Rules Committee and the other organizing bodies. +GR.3.2 Student Project +By registering for any university program, the University registered assumes liability of the +student project. +GR.3.3 Understanding the Rules +Teams, team members as individuals and faculty advisors, are responsible for reading and +understanding the rules in effect for the competition in which they are participating. +GR.3.4 Participating in the Competition +GR.3.4.1 Teams, individual team members, faculty advisors and other representatives of a registered +university who are present onsite at a competition are “participating in the competition” from +the time they arrive at the competition site until they depart the site at the conclusion of the +competition or earlier by withdrawing. +GR.3.4.2 All team members, faculty advisors and other university representatives must cooperate with, +and follow all instructions from, competition organizers, officials and judges. +GR.3.5 Forfeit for Non Appearance +GR.3.5.1 It is the responsibility of each team to be in the right location at the right time. +GR.3.5.2 If a team is not present and ready to compete at the scheduled time, they forfeit their attempt +at that event. + +Formula SAE® Rules 2025 © 2024 SAE International Page 7 of 143 +Version 1.0 31 Aug 2024 +GR.3.5.3 There are no makeups for missed appearances. +GR.4 RULES AUTHORITY AND ISSUE +GR.4.1 Rules Authority +The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are +issued under the authority of the SAE International Collegiate Design Series. +GR.4.2 Rules Validity +GR.4.2.1 The Formula SAE Rules posted on the website and dated for the calendar year of the +competition are the rules in effect for the competition. +GR.4.2.2 Rules appendices or supplements may be posted on the website and incorporated into the +rules by reference. +GR.4.2.3 Additional guidance or reference documents may be posted on the website. +GR.4.2.4 Any rules, questions, or resolutions from previous years are not valid for the current +competition year. +GR.4.3 Rules Alterations +GR.4.3.1 The Formula SAE rules may be revised, updated, or amended at any time +GR.4.3.2 Official designated communications from the Formula SAE Rules Committee, SAE International +or the other organizing bodies are to be considered part of, and have the same validity as, +these rules +GR.4.3.3 Draft rules or proposals may be issued for comments, however they are a courtesy, are not +valid for any competitions, and may or may not be implemented in whole or in part. +GR.4.4 Rules Compliance +GR.4.4.1 All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE +Online Website to verify the current version. +GR.4.4.2 Teams and team members must comply with the general rules and any specific rules for each +competition they enter. +GR.4.4.3 Any regulations pertaining to the use of the competition site by teams or individuals and +which are posted, announced and/or otherwise publicly available are incorporated into the +Formula SAE Rules by reference. +As examples, all competition site waiver requirements, speed limits, parking and facility use +rules apply to Formula SAE participants. +GR.4.5 Violations on Intent +The violation of the intent of a rule will be considered a violation of the rule itself. +GR.5 RULES OF CONDUCT +GR.5.1 Unsportsmanlike Conduct +If unsportsmanlike conduct occurs, the team gets a warning from an official. +A second violation will result in expulsion of the team from the competition. +GR.5.2 Official Instructions +Failure of a team member to follow an instruction or command directed specifically to that +team or team member will result in a 25 point penalty. + +Formula SAE® Rules 2025 © 2024 SAE International Page 8 of 143 +Version 1.0 31 Aug 2024 +GR.5.3 Arguments with Officials +Argument with, or disobedience of, any official may result in the team being eliminated from +the competition. +All members of the team may be immediately escorted from the grounds. +GR.5.4 Alcohol and Illegal Material +GR.5.4.1 Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site +during the entire competition. +GR.5.4.2 Any violation of this rule by any team member or faculty advisor will cause immediate +disqualification and expulsion of the entire team. +GR.5.4.3 Any use of drugs, or the use of alcohol by an underage individual will be reported to the local +authorities. +GR.5.5 Smoking – Prohibited +Smoking and e-cigarette use is prohibited in all competition areas. +GR.6 RULES FORMAT AND USE +GR.6.1 Definition of Terms +• Must - designates a requirement +• Must NOT - designates a prohibition or restriction +• Should - gives an expectation +• May - gives permission, not a requirement and not a recommendation +GR.6.2 Capitalized Terms +Items or areas which have specific definitions or have specific rules are capitalized. +For example, “Rules Questions” or “Primary Structure” +GR.6.3 Headings +The article, section and paragraph headings in these rules are provided only to facilitate +reading: they do not affect the paragraph contents. +GR.6.4 Applicability +GR.6.4.1 Unless otherwise specified, all rules apply to all vehicles at all times +GR.6.4.2 Rules specific to vehicles based on their powertrain will be specified as such in the rule text: +• Internal Combustion “IC” or “IC Only” +• Electric Vehicle “EV” or “EV Only” +GR.6.5 Figures and Illustrations +Figures and illustrations give clarification or guidance, but are Rules only when referred to in +the text of a rule +GR.6.6 Change Identification +Any summary of changed rules and/or changed portions marked in the rules themselves are +provided for courtesy, and may or may not include all changes. + +Formula SAE® Rules 2025 © 2024 SAE International Page 9 of 143 +Version 1.0 31 Aug 2024 +GR.7 RULES QUESTIONS +GR.7.1 Question Types +Designated officials will answer questions that are not already answered in the rules or FAQs +or that require new or novel rule interpretations. +Rules Questions may also be used to request approval, as specified in these rules. +GR.7.2 Question Format +GR.7.2.1 All Rules Questions must include: +• Full name and contact information of the person submitting the question +• University name – no abbreviations +• The specific competition your team has, or is planning to, enter +• Number of the applicable rule(s) +GR.7.2.2 Response Time +• Please allow a minimum of two weeks for a response +• Do not resubmit questions +GR.7.2.3 Submission Addresses +a. Teams entering Formula SAE competitions: Follow the link and instructions published on +the FSAE Online Website to "Submit a Rules Question" +b. Teams entering other competitions please visit those respective competition websites +for further instructions. +GR.7.3 Question Publication +Any submitted question and the official answer may be reproduced and freely distributed, in +complete and edited versions. +GR.8 PROTESTS +GR.8.1 Cause for Protest +A team may protest any rule interpretation, score or official action (unless specifically +excluded from Protest) which they feel has caused some actual, non trivial, harm to their +team, or has had a substantive effect on their score. +GR.8.2 Preliminary Review – Required +Questions about scoring, judging, policies or any official action must be brought to the +attention of the organizer or SAE International staff for an informal preliminary review before +a protest may be filed. +GR.8.3 Protest Format +• All protests must be filed in writing +• The completed protest must be presented to the organizer or SAE International staff by +the team captain. +• Team video or data acquisition will not be reviewed as part of a protest. +GR.8.4 Protest Point Bond +A team must post a 25 point protest bond which will be forfeited if their protest is rejected. + +Formula SAE® Rules 2025 © 2024 SAE International Page 10 of 143 +Version 1.0 31 Aug 2024 +GR.8.5 Protest Period +Protests concerning any aspect of the competition must be filed in the protest period +announced by the competition organizers or 30 minutes of the posting of the scores of the +event to which the protest relates. +GR.8.6 Decision +The decision regarding any protest is final. +GR.9 VEHICLE ELIGIBILITY +GR.9.1 Student Developed Vehicle +GR.9.1.1 Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and +maintained by the student team members without direct involvement from professional +engineers, automotive engineers, racers, machinists or related professionals. +GR.9.1.2 Information Sources +The student team may use any literature or knowledge related to design and information from +professionals or from academics as long as the information is given as a discussion of +alternatives with their pros and cons. +GR.9.1.3 Professional Assistance +Professionals must not make design decisions or drawings. The Faculty Advisor may be +required to sign a statement of compliance with this restriction. +GR.9.1.4 Student Fabrication +Students should do all fabrication tasks +GR.9.2 Definitions +GR.9.2.1 Competition Year +The period beginning at the event of the Formula SAE series where the vehicle first competes +and continuing until the start of the corresponding event held approximately 12 months later. +GR.9.2.2 First Year Vehicle +A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year +GR.9.2.3 Second Year Vehicle +A vehicle which has competed in a previous Competition Year +GR.9.2.4 Third Year Vehicle +A vehicle which has competed in more than one previous Competition Year +GR.9.3 Formula SAE Competition Eligibility +GR.9.3.1 Only First Year Vehicles may enter the Formula SAE Competitions +a. If there is any question about the status as a First Year Vehicle, the team must provide +additional information and/or evidence. +GR.9.3.2 Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the +organizer of the specific competition. +The Formula SAE and Formula SAE Electric events in North America do not allow Second Year +Vehicles +GR.9.3.3 Third Year Vehicles must not enter any Formula SAE Competitions + +Formula SAE® Rules 2025 © 2024 SAE International Page 11 of 143 +Version 1.0 31 Aug 2024 +AD - ADMINISTRATIVE REGULATIONS +AD.1 THE FORMULA SAE SERIES +AD.1.1 Rule Variations +All competitions in the Formula SAE Series may post rule variations specific to the operation of +the events in their countries. Vehicle design requirements and restrictions will remain +unchanged. Any rule variations will be posted on the websites specific to those competitions. +AD.1.2 Official Announcements and Competition Information +Teams must read the published announcements by SAE International and the other organizing +bodies and be familiar with all official announcements concerning the competitions and any +released rules interpretations. +AD.1.3 Official Languages +The official language of the Formula SAE series is English. +Document submissions, presentations and discussions in English are acceptable at all +competitions in the series. +AD.2 OFFICIAL INFORMATION SOURCES +These websites are referenced in these rules. Refer to the websites for additional information +and resources. +AD.2.1 Event Website +The Event Website for Formula SAE is specific to each competition, refer to: +https://www.sae.org/attend/student-events +AD.2.2 FSAE Online Website +The FSAE Online website is at: http://fsaeonline.com/ +AD.2.2.1 Documents, forms, and information are accessed from the “Series Resources” link +AD.2.2.2 Each registered team must have an account on the FSAE Online Website. +AD.2.2.3 Each team must have one or more persons as Team Captain. The Team Captain must accept +Team Members. +AD.2.2.4 Only persons designated Team Members or Team Captains are able to upload documents to +the website. +AD.2.3 Contacts +Contact collegiatecompetitions@sae.org with any problems/comments/concerns +Consult the specific website for the other competitions requirements. +AD.3 INDIVIDUAL PARTICIPATION REQUIREMENTS +AD.3.1 Eligibility +AD.3.1.1 Team members must be enrolled as degree seeking undergraduate or graduate students in +the college or university of the team with which they are participating. +AD.3.1.2 Team members who have graduated during the seven month period prior to the competition +remain eligible to participate. + +Formula SAE® Rules 2025 © 2024 SAE International Page 12 of 143 +Version 1.0 31 Aug 2024 +AD.3.1.3 Teams which are formed with members from two or more universities are treated as a single +team. A student at any university making up the team may compete at any competition +where the team participates. The multiple universities are treated as one university with the +same eligibility requirements. +AD.3.1.4 Each team member may participate at a competition for only one team. This includes +competitions where the University enters both IC and EV teams. +AD.3.2 Age +Team members must be minimum 18 years of age. +AD.3.3 Driver’s License +Team members who will drive a competition vehicle at any time during a competition must +hold a valid, government issued driver’s license. +AD.3.4 Society Membership +Team members must be members of SAE International +Proof of membership, such as membership card, is required at the competition. +AD.3.5 Medical Insurance +Individual medical insurance coverage is required and is the sole responsibility of the +participant. +AD.3.6 Disabled Accessibility +Team members who require accessibility for areas outside of ADA Compliance must contact +organizers at collegiatecompetitions@sae.org prior to start of competition. +AD.4 INDIVIDUAL REGISTRATION REQUIREMENTS +AD.4.1 Preliminary Registration +AD.4.1.1 All students and faculty must be affiliated to your respective school /college/university on the +Event Website before the deadline shown on the Event Website +AD.4.1.2 International student participants (or unaffiliated Faculty Advisors) who are not SAE +International members must create a free customer account profile on www.sae.org. Upon +completion, please email collegiatecompetitions@sae.org the assigned customer number +stating also the event and university affiliation. +AD.4.2 Onsite Registration +AD.4.2.1 All team members and faculty advisors must register at the competition site +AD.4.2.2 All onsite participants, including students, faculty and volunteers, must sign a liability waiver +upon registering onsite. +AD.4.2.3 Onsite registration must be completed before the vehicle may be unloaded, uncrated or +worked upon in any manner. +AD.5 TEAM ADVISORS AND OFFICERS +AD.5.1 Faculty Advisor +AD.5.1.1 Each team must have a Faculty Advisor appointed by their university. +AD.5.1.2 The Faculty Advisor should accompany the team to the competition and will be considered by +the officials to be the official university representative. + +Formula SAE® Rules 2025 © 2024 SAE International Page 13 of 143 +Version 1.0 31 Aug 2024 +AD.5.1.3 Faculty Advisors: +a. May advise their teams on general engineering and engineering project management +theory +b. Must not design, build or repair any part of the vehicle +c. Must not develop any documentation or presentation +AD.5.2 Electrical System Officer (EV Only) +The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle +during the event +AD.5.2.1 Each participating team must appoint one or more ESO for the event +AD.5.2.2 The ESO must be: +a. A valid team member, see AD.3 Individual Participation Requirements +b. One or more ESO must not be a driver +c. Certified or has received appropriate practical training whether formal or informal for +working with High Voltage systems in automotive vehicles +Give details of the training on the ESO/ESA form +AD.5.2.3 Duties of the ESO - see EV.11.1.1 +AD.5.3 Electric System Advisor (EV Only) +AD.5.3.1 The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated +by the team who can advise on the electrical and control systems that will be integrated into +the vehicle. The faculty advisor may also be the ESA if all the requirements below are met. +AD.5.3.2 The ESA must supply details of their experience of electrical and/or control systems +engineering as used in the vehicle on the ESO/ESA form +AD.5.3.3 The ESA must be sufficiently qualified to advise the team on their proposed electrical and +control system designs based on significant experience of the technology being developed and +its implementation into vehicles or other safety critical systems. More than one person may +be needed. +AD.5.3.4 The ESA must advise the team on the merits of any relevant engineering solutions. Solutions +should be discussed, questioned and approved before they are implemented into the final +vehicle design. +AD.5.3.5 The ESA should advise the students on any required training to work with the systems on the +vehicle. +AD.5.3.6 The ESA must review the Electrical System Form and to confirm that in principle the vehicle +has been designed using good engineering practices. +AD.5.3.7 The ESA must make sure that the team communicates any unusual aspects of the design to +reduce the risk of exclusion or significant changes being required to pass Technical Inspection. +AD.6 COMPETITION REGISTRATION +AD.6.1 General Information +AD.6.1.1 Registration for Formula SAE competitions must be completed on the Event Website. +AD.6.1.2 Refer to the individual competition websites for registration requirements for other +competitions + +Formula SAE® Rules 2025 © 2024 SAE International Page 14 of 143 +Version 1.0 31 Aug 2024 +AD.6.2 Registration Details +AD.6.2.1 Refer to the Event Website for specific registration requirements and details. +• Registration limits and Waitlist limits will be posted on the Event Website. +• Registration will open at the date and time posted on the Event Website. +• Registration(s) may have limitations +AD.6.2.2 Once a competition reaches the registration limit, a Waitlist will open. +AD.6.2.3 Beginning on the date and time posted on the Event Website, any remaining slots will be +available to any team on a first come, first serve basis. +AD.6.2.4 Registration and the Waitlist will close at the date and time posted on the Event Website or +when all available slots have been taken, whichever occurs first. +AD.6.3 Registration Fees +AD.6.3.1 Registration fees must be paid by the deadline specified on the respective competition +website +AD.6.3.2 Registration fees are not refundable and not transferrable to any other competition. +AD.6.4 Waitlist +AD.6.4.1 Waitlisted teams must submit all documents by the same deadlines as registered teams to +remain on the Waitlist. +AD.6.4.2 Once a team withdraws from the competition, the organizer will inform the next team on the +Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the +registered list has opened. +AD.6.4.3 The team will then have 24 hours to accept or reject the position and an additional 24 hours +to have the registration payment completed or in process. +AD.6.5 Withdrawals +Registered teams that will not attend the competition must inform SAE International or the +organizer, as posted on the Event Website +AD.7 COMPETITION SITE +AD.7.1 Personal Vehicles +Personal cars and trailers must be parked in designated areas only. Only authorized vehicles +will be allowed in the track areas. +AD.7.2 Motorcycles, Bicycles, Rollerblades, etc. - Prohibited The use of motorcycles, quads, bicycles, scooters, skateboards, rollerblades or similar person- -carrying devices by team members and spectators in any part of the competition area, -including the paddocks, is prohibited. -AD.7.3 Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited -The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any -part of the competition site, including the paddocks, is prohibited. -AD.7.4 Trash Cleanup -AD.7.4.1 Cleanup of trash and debris is the responsibility of the teams. -• The team’s work area should be kept uncluttered - - -Formula SAE® Rules 2025 © 2024 SAE International Page 15 of 143 -Version 1.0 31 Aug 2024 -• At the end of the day, each team must clean all debris from their area and help with -maintaining a clean paddock -AD.7.4.2 Teams must remove all of their material and trash when leaving the site at the end of the -competition. -AD.7.4.3 Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be -billed for removal and/or cleanup costs. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 16 of 143 -Version 1.0 31 Aug 2024 -DR - DOCUMENT REQUIREMENTS -DR.1 DOCUMENTATION -DR.1.1 Requirements -DR.1.1.1 The documents supporting each vehicle must be submitted before the deadlines posted on -the Event Website or otherwise published by the organizer. -DR.1.1.2 The procedures for submitting documents are published on the Event Website or otherwise -identified by the organizer. -DR.1.2 Definitions -DR.1.2.1 Submission Date -The date and time of upload to the website -DR.1.2.2 Submission Deadline -The date and time by which the document must be uploaded or submitted -DR.1.2.3 No Submissions Accepted After -The last date and time that documents may be uploaded or submitted -DR.1.2.4 Late Submission -• Uploaded after the Submission Deadline and prior to No Submissions Accepted After -• Submitted largely incomplete prior to or after the Submission Deadline -DR.1.2.5 Not Submitted -• Not uploaded prior to No Submissions Accepted After -• Not in the specified form or format -DR.1.2.6 Amount Late -The number of days between the Submission Deadline and the Submission Date. -Any partial day is rounded up to a full day. -Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late -would be two days penalty -DR.1.2.7 Grounds for Removal -A designated document that if Not Submitted may cause Removal of Team Entry -DR.1.2.8 Reviewer -A designated event official who is assigned to review and accept a Submission -DR.2 SUBMISSION DETAILS -DR.2.1 Submission Location -Teams entering Formula SAE competitions in North America must upload the required -documents to the team account on the FSAE Online Website, see AD.2.2 -DR.2.2 Submission Format Requirements -Refer to Table DR-1 Submission Information -DR.2.2.1 Template files with the required format must be used when specified in Table DR-1 -DR.2.2.2 Template files are available on the FSAE Online Website, see AD.2.2.1 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 17 of 143 -Version 1.0 31 Aug 2024 -DR.2.2.3 Do Not alter the format of any provided template files -DR.2.2.4 Each submission must be one single file in the specified format (PDF - Portable Document File, -XLSX - Microsoft Excel Worksheet File) -DR.3 SUBMISSION PENALTIES -DR.3.1 Submissions -DR.3.1.1 Each team is responsible for confirming that their documents have been properly uploaded or -submitted and that the deadlines have been met -DR.3.1.2 Prior to the Submission Deadline: -a. Documents may be uploaded at any time -b. Uploads may be replaced with new uploads without penalty -DR.3.1.3 If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline -for the revised document may apply -DR.3.1.4 Teams will not be notified if a document is submitted incorrectly -DR.3.2 Penalty Detail -DR.3.2.1 Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion. -DR.3.2.2 Additional penalties will apply if Not Submitted, subject to official discretion -DR.3.2.3 Penalties up to and including Removal of Team Entry may apply based on document reviews, -subject to official discretion -DR.3.3 Removal of Team Entry -DR.3.3.1 The organizer may remove the team entry when a: -a. Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. -Removals will occur after each Document Submission deadline -b. Team does not respond to Reviewer requests or organizer communications -DR.3.3.2 When a team entry will be removed: -a. The team will be notified prior to cancelling registration -b. No refund of entry fees will be given -DR.3.4 Specific Penalties -DR.3.4.1 Electronic Throttle Control (ETC) (IC Only) -a. There is no point penalty for ETC documents -b. The team will not be allowed to run ETC on their vehicle and must use mechanical -throttle operation when: -• The ETC Notice of Intent is Not Submitted -• The ETC Systems Form is Not Submitted, or is not accepted -DR.3.4.2 Fuel Type IC.5.1 -There is no point penalty for a late fuel type order. Once the deadline has passed, the team -will be allocated the basic fuel type. -DR.3.4.3 Program Submissions -Please submit material requested for the Event Program by the published deadlines - - -Formula SAE® Rules 2025 © 2024 SAE International Page 18 of 143 -Version 1.0 31 Aug 2024 -Table DR-1 Submission Information +carrying devices by team members and spectators in any part of the competition area, +including the paddocks, is prohibited. +AD.7.3 Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited +The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any +part of the competition site, including the paddocks, is prohibited. +AD.7.4 Trash Cleanup +AD.7.4.1 Cleanup of trash and debris is the responsibility of the teams. +• The team’s work area should be kept uncluttered + +Formula SAE® Rules 2025 © 2024 SAE International Page 15 of 143 +Version 1.0 31 Aug 2024 +• At the end of the day, each team must clean all debris from their area and help with +maintaining a clean paddock +AD.7.4.2 Teams must remove all of their material and trash when leaving the site at the end of the +competition. +AD.7.4.3 Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be +billed for removal and/or cleanup costs. + +Formula SAE® Rules 2025 © 2024 SAE International Page 16 of 143 +Version 1.0 31 Aug 2024 +DR - DOCUMENT REQUIREMENTS +DR.1 DOCUMENTATION +DR.1.1 Requirements +DR.1.1.1 The documents supporting each vehicle must be submitted before the deadlines posted on +the Event Website or otherwise published by the organizer. +DR.1.1.2 The procedures for submitting documents are published on the Event Website or otherwise +identified by the organizer. +DR.1.2 Definitions +DR.1.2.1 Submission Date +The date and time of upload to the website +DR.1.2.2 Submission Deadline +The date and time by which the document must be uploaded or submitted +DR.1.2.3 No Submissions Accepted After +The last date and time that documents may be uploaded or submitted +DR.1.2.4 Late Submission +• Uploaded after the Submission Deadline and prior to No Submissions Accepted After +• Submitted largely incomplete prior to or after the Submission Deadline +DR.1.2.5 Not Submitted +• Not uploaded prior to No Submissions Accepted After +• Not in the specified form or format +DR.1.2.6 Amount Late +The number of days between the Submission Deadline and the Submission Date. +Any partial day is rounded up to a full day. +Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late +would be two days penalty +DR.1.2.7 Grounds for Removal +A designated document that if Not Submitted may cause Removal of Team Entry +DR.1.2.8 Reviewer +A designated event official who is assigned to review and accept a Submission +DR.2 SUBMISSION DETAILS +DR.2.1 Submission Location +Teams entering Formula SAE competitions in North America must upload the required +documents to the team account on the FSAE Online Website, see AD.2.2 +DR.2.2 Submission Format Requirements +Refer to Table DR-1 Submission Information +DR.2.2.1 Template files with the required format must be used when specified in Table DR-1 +DR.2.2.2 Template files are available on the FSAE Online Website, see AD.2.2.1 + +Formula SAE® Rules 2025 © 2024 SAE International Page 17 of 143 +Version 1.0 31 Aug 2024 +DR.2.2.3 Do Not alter the format of any provided template files +DR.2.2.4 Each submission must be one single file in the specified format (PDF - Portable Document File, +XLSX - Microsoft Excel Worksheet File) +DR.3 SUBMISSION PENALTIES +DR.3.1 Submissions +DR.3.1.1 Each team is responsible for confirming that their documents have been properly uploaded or +submitted and that the deadlines have been met +DR.3.1.2 Prior to the Submission Deadline: +a. Documents may be uploaded at any time +b. Uploads may be replaced with new uploads without penalty +DR.3.1.3 If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline +for the revised document may apply +DR.3.1.4 Teams will not be notified if a document is submitted incorrectly +DR.3.2 Penalty Detail +DR.3.2.1 Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion. +DR.3.2.2 Additional penalties will apply if Not Submitted, subject to official discretion +DR.3.2.3 Penalties up to and including Removal of Team Entry may apply based on document reviews, +subject to official discretion +DR.3.3 Removal of Team Entry +DR.3.3.1 The organizer may remove the team entry when a: +a. Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. +Removals will occur after each Document Submission deadline +b. Team does not respond to Reviewer requests or organizer communications +DR.3.3.2 When a team entry will be removed: +a. The team will be notified prior to cancelling registration +b. No refund of entry fees will be given +DR.3.4 Specific Penalties +DR.3.4.1 Electronic Throttle Control (ETC) (IC Only) +a. There is no point penalty for ETC documents +b. The team will not be allowed to run ETC on their vehicle and must use mechanical +throttle operation when: +• The ETC Notice of Intent is Not Submitted +• The ETC Systems Form is Not Submitted, or is not accepted +DR.3.4.2 Fuel Type IC.5.1 +There is no point penalty for a late fuel type order. Once the deadline has passed, the team +will be allocated the basic fuel type. +DR.3.4.3 Program Submissions +Please submit material requested for the Event Program by the published deadlines + +Formula SAE® Rules 2025 © 2024 SAE International Page 18 of 143 +Version 1.0 31 Aug 2024 +Table DR-1 Submission Information Submission -Refer -to: -Required -Format: -Submit in -File Format: -Penalty -Group - -Structural Equivalency Spreadsheet -(SES) -as applicable to your design -F.2.1 see below XLSX Tech - -ETC - Notice of Intent IC.4.3 see below PDF ETC -ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC -EV – Electrical Systems Officer and -Electrical Systems Advisor Form -AD.5.2, +Refer +to: +Required +Format: +Submit in +File Format: +Penalty +Group +Structural Equivalency Spreadsheet +(SES) +as applicable to your design +F.2.1 see below XLSX Tech +ETC - Notice of Intent IC.4.3 see below PDF ETC +ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC +EV – Electrical Systems Officer and +Electrical Systems Advisor Form +AD.5.2, AD.5.3 -see below PDF Tech - -EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech -Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other -Cost Report S.3.4 see S.3.4.2 (1) Other -Cost Addendum S.3.7 see below see S.3.7 none -Design Briefing S.4.3 see below PDF Other -Vehicle Drawings S.4.4 see S.4.4.1 PDF Other -Design Spec Sheet S.4.5 see below XLSX Other - -Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 -Note (1): Refer to the FSAE Online website for submission requirements -Table DR-2 Submission Penalty Information +see below PDF Tech +EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech +Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other +Cost Report S.3.4 see S.3.4.2 (1) Other +Cost Addendum S.3.7 see below see S.3.7 none +Design Briefing S.4.3 see below PDF Other +Vehicle Drawings S.4.4 see S.4.4.1 PDF Other +Design Spec Sheet S.4.5 see below XLSX Other +Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 +Note (1): Refer to the FSAE Online website for submission requirements +Table DR-2 Submission Penalty Information Penalty Group -Penalty Points +Penalty Points per 24 Hours -Not Submitted after the Deadline - -ETC none Not Approved to use ETC - see DR.3.4.1 - -Tech -20 Grounds for Removal - see DR.3.3 - +Not Submitted after the Deadline +ETC none Not Approved to use ETC - see DR.3.4.1 +Tech -20 Grounds for Removal - see DR.3.3 Other -10 -Removed from Cost/Design/Presentation -Event and Score 0 points – see DR.3.2.2 - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 19 of 143 -Version 1.0 31 Aug 2024 -V - VEHICLE REQUIREMENTS -V.1 CONFIGURATION -The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels -that are not in a straight line. -V.1.1 Open Wheel -Open Wheel vehicles must satisfy all of these criteria: -a. The top 180° of the wheels/tires must be unobstructed when viewed from vertically -above the wheel. -b. The wheels/tires must be unobstructed when viewed from the side. -c. No part of the vehicle may enter a keep out zone defined by two lines extending -vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the -front and rear tires in the side view elevation of the vehicle, with tires steered straight -ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire -to the inboard plane of the wheel/tire. - -V.1.2 Wheelbase -The vehicle must have a minimum wheelbase of 1525 mm -V.1.3 Vehicle Track -V.1.3.1 The track and center of gravity must combine to provide sufficient rollover stability. See -IN.9.2 -V.1.3.2 The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 20 of 143 -Version 1.0 31 Aug 2024 -V.1.4 Ground Clearance -V.1.4.1 Ground clearance must be sufficient to prevent any portion of the vehicle except the tires -from touching the ground during dynamic events -V.1.4.2 The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its -lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less. -a. There must be an opening for measuring the ride height at that point without removing -aerodynamic devices -V.1.4.3 Intentional or excessive ground contact of any portion of the vehicle other than the tires will -forfeit a run or an entire dynamic event -The intent is that sliding skirts or other devices that by design, fabrication or as a consequence -of moving, contact the track surface are prohibited and any unintended contact with the -ground which causes damage, or in the opinion of the Dynamic Event Officials could result in -damage to the track, will result in forfeit of a run or an entire dynamic event -V.2 DRIVER -V.2.1 Accommodation -V.2.1.1 The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female -up to 95th percentile male. -• Accommodation includes driver position, driver controls, and driver equipment -• Anthropometric data may be found on the FSAE Online Website -V.2.1.2 The driver’s head and hands must not contact the ground in any rollover attitude -V.2.2 Visibility -a. The driver must have sufficient visibility to the front and sides of the vehicle -b. When seated in a normal driving position, the driver must have a minimum field of vision -of 100° to the left and the right sides -c. If mirrors are required for this rule, they must remain in position and adjusted to enable -the required visibility throughout all Dynamic Events -V.3 SUSPENSION AND STEERING -V.3.1 Suspension -V.3.1.1 The vehicle must have a fully operational suspension system with shock absorbers, front and -rear, with usable minimum wheel travel of 50 mm, with a driver seated. -V.3.1.2 Officials may disqualify vehicles which do not represent a serious attempt at an operational -suspension system, or which demonstrate handling inappropriate for an autocross circuit. -V.3.1.3 All suspension mounting points must be visible at Technical Inspection by direct view or by -removing any covers. -V.3.1.4 Fasteners in the Suspension system are Critical Fasteners, see T.8.2 -V.3.1.5 All spherical rod ends and spherical bearings on the suspension and steering must be one of: -• Mounted in double shear -• Captured by having a screw/bolt head or washer with an outside diameter that is larger -than spherical bearing housing inside diameter. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 21 of 143 -Version 1.0 31 Aug 2024 -V.3.2 Steering -V.3.2.1 The Steering Wheel must be mechanically connected to the front wheels -V.3.2.2 Electrically operated steering of the front wheels is prohibited -V.3.2.3 Steering systems must use a rigid mechanical linkage capable of tension and compression -loads for operation -V.3.2.4 The steering system must have positive steering stops that prevent the steering linkages from -locking up (the inversion of a four bar linkage at one of the pivots). The stops: -a. Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis -during the track events -b. May be put on the uprights or on the rack -V.3.2.5 Allowable steering system free play is limited to seven degrees (7°) total measured at the -steering wheel. -V.3.2.6 The steering rack must be mechanically attached to the Chassis F.5.14 -V.3.2.7 Joints between all components attaching the Steering Wheel to the steering rack must be -mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup -are not permitted. -V.3.2.8 Fasteners in the steering system are Critical Fasteners, see T.8.2 -V.3.2.9 Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above -V.3.2.10 Rear wheel steering may be used. -a. Rear wheel steering must incorporate mechanical stops to limit the range of angular -movement of the rear wheels to a maximum of six degrees (6°) -b. The team must provide the ability for the steering angle range to be verified at Technical -Inspection with a driver in the vehicle -c. Rear wheel steering may be electrically operated -V.3.3 Steering Wheel -V.3.3.1 In any angular position, the Steering Wheel must meet T.1.4.4 -V.3.3.2 The Steering Wheel must be attached to the column with a quick disconnect. -V.3.3.3 The driver must be able to operate the quick disconnect while in the normal driving position -with gloves on. -V.3.3.4 The Steering Wheel must have a continuous perimeter that is near circular or near oval. -The outer perimeter profile may have some straight sections, but no concave sections. “H”, -“Figure 8”, or cutout wheels are not allowed. -V.4 WHEELS AND TIRES -V.4.1 Wheel Size -Wheels must be 203.2 mm (8.0 inches) or more in diameter. -V.4.2 Wheel Attachment -V.4.2.1 Any wheel mounting system that uses a single retaining nut must incorporate a device to -retain the nut and the wheel if the nut loosens. -A second nut (jam nut) does not meet this requirement - - -Formula SAE® Rules 2025 © 2024 SAE International Page 22 of 143 -Version 1.0 31 Aug 2024 -V.4.2.2 Teams using modified lug bolts or custom designs must provide proof that Good Engineering -Practices have been followed in their design. -V.4.2.3 If used, aluminum wheel nuts must be hard anodized and in pristine condition. -V.4.3 Tires -Vehicles may have two types of tires, Dry and Wet -V.4.3.1 Dry Tires -a. The tires on the vehicle when it is presented for Technical Inspection. -b. May be any size or type, slicks or treaded. -V.4.3.2 Wet Tires -Any size or type of treaded or grooved tire where: -• The tread pattern or grooves were molded in by the tire manufacturer, or were cut by -the tire manufacturer or appointed agent. -Any grooves that have been cut must have documented proof that this rule was met -• There is a minimum tread depth of 2.4 mm -V.4.3.3 Tire Set -a. All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be -identical. -b. Once each tire set has been presented for Technical Inspection, any tire compound or -size, or wheel type or size must not be changed. -V.4.3.4 Tire Pressure -a. Tire Pressure must be in the range allowed by the manufacturer at all times. -b. Tire Pressure may be inspected at any time -V.4.3.5 Requirements for All Tires -a. Teams must not do any hand cutting, grooving or modification of the tires. -b. Tire warmers are not allowed. -c. No traction enhancers may be applied to the tires at any time onsite at the competition. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 23 of 143 -Version 1.0 31 Aug 2024 -F - CHASSIS AND STRUCTURAL -F.1 DEFINITIONS -F.1.1 Chassis -The fabricated structural assembly that supports all functional vehicle systems. -This assembly may be a single fabricated structure, multiple fabricated structures or a -combination of composite and welded structures. -F.1.2 Frame Member -A minimum representative single piece of uncut, continuous tubing. -F.1.3 Monocoque -A type of Chassis where loads are supported by the external panels -F.1.4 Main Hoop -A roll bar located alongside or immediately aft of the driver’s torso. -F.1.5 Front Hoop -A roll bar located above the driver’s legs, in proximity to the steering wheel. -F.1.6 Roll Hoop(s) -Referring to the Front Hoop AND the Main Hoop -F.1.7 Roll Hoop Bracing Supports -The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). -F.1.8 Front Bulkhead -A planar structure that provides protection for the driver’s feet. -F.1.9 Impact Attenuator -A deformable, energy absorbing device located forward of the Front Bulkhead. -F.1.10 Primary Structure -The combination of these components: -• Front Bulkhead and Front Bulkhead Support -• Front Hoop, Main Hoop, Roll Hoop Braces and Supports -• Side Impact Structure -• (EV Only) Tractive System Protection and Rear Impact Protection -• Any Frame Members, guides, or supports that transfer load from the Driver Restraint -System -F.1.11 Primary Structure Envelope -A volume enclosed by multiple tangent planes, each of which follows the exact outline of the -Primary Structure Frame Members -F.1.12 Major Structure -The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main -Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of -the Upper Side Impact Member or top of the Side Impact Zone. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 24 of 143 -Version 1.0 31 Aug 2024 -F.1.13 Rollover Protection Envelope -The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front -Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural -tube, or monocoque equivalent. -* If there are no Triangulated Structural members aft of the Main Hoop, the Rollover -Protection Envelope ends at the rear plane of the Main Hoop - -F.1.14 Tire Surface Envelope -The volume enclosed by tangent lines between the Main Hoop and the outside edge of each -of the four tires. - -F.1.15 Component Envelope -The area that is inside a plane from the top of the Main Hoop to the top of the Front -Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural -tube, or monocoque equivalent. * see note in step F.1.13 above - -F.1.16 Buckling Modulus (EI) -Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the -weakest axis -F.1.17 Triangulation -An arrangement of Frame Members where all members and segments of members between -bends or nodes with Structural tubes form a structure composed entirely of triangles. -a. This is generally required between an upper member and a lower member, each may -have multiple segments requiring a diagonal to form multiple triangles. -b. This is also what is meant by “properly triangulated” - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 25 of 143 -Version 1.0 31 Aug 2024 - -F.1.18 Nonflammable Material -Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent -F.2 DOCUMENTATION -F.2.1 Structural Equivalency Spreadsheet - SES -F.2.1.1 The SES is a supplement to the Formula SAE Rules and may provide guidance or further details -in addition to those of the Formula SAE Rules. -F.2.1.2 The SES provides the means to: -a. Document the Primary Structure and show compliance with the Formula SAE Rules -b. Determine Equivalence to Formula SAE Rules using an accepted basis -F.2.2 Structural Documentation -F.2.2.1 All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR - -Document Requirements -F.2.3 Equivalence -F.2.3.1 Equivalency in the structural context is determined and documented with the methods in the -SES -F.2.3.2 Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same -application -F.2.3.3 The properties of tubes and laminates may be combined to prove Equivalence. -For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate -panel, the panel only needs to be Equivalent to two Side Impact Tubes. -F.2.4 Tolerance -Tolerance on dimensions given in the rules is allowed and is addressed in the SES. -F.2.5 Fabrication -Vehicles must be fabricated in accordance with the design, materials, and processes described -in the SES. -F.3 TUBING AND MATERIAL -F.3.1 Dimensions -Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for -commonly available tubing. - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 26 of 143 -Version 1.0 31 Aug 2024 -F.3.2 Tubing Requirements -F.3.2.1 Requirements by Application - Application -Steel Tube Must -Meet Size per -F.3.4: -Alternative Tubing -Material Permitted -per F.3.5 ? - -a. Front Bulkhead Size B Yes -b. Front Bulkhead Support Size C Yes -c. Front Hoop Size A Yes -d. Front Hoop Bracing Size B Yes -e. Side Impact Structure Size B Yes -f. Bent / Multi Upper Side Impact Member Size D Yes -g. Main Hoop Size A NO - -h. Main Hoop Bracing Size B NO -i. Main Hoop Bracing Supports Size C Yes -j. Driver Restraint Harness Attachment Size B Yes -k. Shoulder Harness Mounting Bar Size A NO -l. Shoulder Harness Mounting Bar Bracing Size C Yes -m. Accumulator Mounting and Protection Size B Yes -n. Component Protection Size C Yes -o. Structural Tubing Size C Yes -F.3.3 Non Structural Tubing -F.3.3.1 Definition -Any tubing which does NOT meet F.3.2.1.o Structural Tubing -F.3.3.2 Applicability -Non Structural Tubing is ignored when assessing compliance to any rule -F.3.4 Steel Tubing and Material -F.3.4.1 Minimum Requirements for Steel Tubing -A tube must have all four minimum requirements for each Size specified: - Tube -Minimum -Area -Moment of -Inertia -Minimum -Cross -Sectional -Area -Minimum -Outside -Diameter or -Square Width -Minimum -Wall -Thickness -Example Sizes of -Round Tube - +Removed from Cost/Design/Presentation +Event and Score 0 points – see DR.3.2.2 + +Formula SAE® Rules 2025 © 2024 SAE International Page 19 of 143 +Version 1.0 31 Aug 2024 +V - VEHICLE REQUIREMENTS +V.1 CONFIGURATION +The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels +that are not in a straight line. +V.1.1 Open Wheel +Open Wheel vehicles must satisfy all of these criteria: +a. The top 180° of the wheels/tires must be unobstructed when viewed from vertically +above the wheel. +b. The wheels/tires must be unobstructed when viewed from the side. +c. No part of the vehicle may enter a keep out zone defined by two lines extending +vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the +front and rear tires in the side view elevation of the vehicle, with tires steered straight +ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire +to the inboard plane of the wheel/tire. +V.1.2 Wheelbase +The vehicle must have a minimum wheelbase of 1525 mm +V.1.3 Vehicle Track +V.1.3.1 The track and center of gravity must combine to provide sufficient rollover stability. See +IN.9.2 +V.1.3.2 The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. + +Formula SAE® Rules 2025 © 2024 SAE International Page 20 of 143 +Version 1.0 31 Aug 2024 +V.1.4 Ground Clearance +V.1.4.1 Ground clearance must be sufficient to prevent any portion of the vehicle except the tires +from touching the ground during dynamic events +V.1.4.2 The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its +lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less. +a. There must be an opening for measuring the ride height at that point without removing +aerodynamic devices +V.1.4.3 Intentional or excessive ground contact of any portion of the vehicle other than the tires will +forfeit a run or an entire dynamic event +The intent is that sliding skirts or other devices that by design, fabrication or as a consequence +of moving, contact the track surface are prohibited and any unintended contact with the +ground which causes damage, or in the opinion of the Dynamic Event Officials could result in +damage to the track, will result in forfeit of a run or an entire dynamic event +V.2 DRIVER +V.2.1 Accommodation +V.2.1.1 The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female +up to 95th percentile male. +• Accommodation includes driver position, driver controls, and driver equipment +• Anthropometric data may be found on the FSAE Online Website +V.2.1.2 The driver’s head and hands must not contact the ground in any rollover attitude +V.2.2 Visibility +a. The driver must have sufficient visibility to the front and sides of the vehicle +b. When seated in a normal driving position, the driver must have a minimum field of vision +of 100° to the left and the right sides +c. If mirrors are required for this rule, they must remain in position and adjusted to enable +the required visibility throughout all Dynamic Events +V.3 SUSPENSION AND STEERING +V.3.1 Suspension +V.3.1.1 The vehicle must have a fully operational suspension system with shock absorbers, front and +rear, with usable minimum wheel travel of 50 mm, with a driver seated. +V.3.1.2 Officials may disqualify vehicles which do not represent a serious attempt at an operational +suspension system, or which demonstrate handling inappropriate for an autocross circuit. +V.3.1.3 All suspension mounting points must be visible at Technical Inspection by direct view or by +removing any covers. +V.3.1.4 Fasteners in the Suspension system are Critical Fasteners, see T.8.2 +V.3.1.5 All spherical rod ends and spherical bearings on the suspension and steering must be one of: +• Mounted in double shear +• Captured by having a screw/bolt head or washer with an outside diameter that is larger +than spherical bearing housing inside diameter. + +Formula SAE® Rules 2025 © 2024 SAE International Page 21 of 143 +Version 1.0 31 Aug 2024 +V.3.2 Steering +V.3.2.1 The Steering Wheel must be mechanically connected to the front wheels +V.3.2.2 Electrically operated steering of the front wheels is prohibited +V.3.2.3 Steering systems must use a rigid mechanical linkage capable of tension and compression +loads for operation +V.3.2.4 The steering system must have positive steering stops that prevent the steering linkages from +locking up (the inversion of a four bar linkage at one of the pivots). The stops: +a. Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis +during the track events +b. May be put on the uprights or on the rack +V.3.2.5 Allowable steering system free play is limited to seven degrees (7°) total measured at the +steering wheel. +V.3.2.6 The steering rack must be mechanically attached to the Chassis F.5.14 +V.3.2.7 Joints between all components attaching the Steering Wheel to the steering rack must be +mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup +are not permitted. +V.3.2.8 Fasteners in the steering system are Critical Fasteners, see T.8.2 +V.3.2.9 Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above +V.3.2.10 Rear wheel steering may be used. +a. Rear wheel steering must incorporate mechanical stops to limit the range of angular +movement of the rear wheels to a maximum of six degrees (6°) +b. The team must provide the ability for the steering angle range to be verified at Technical +Inspection with a driver in the vehicle +c. Rear wheel steering may be electrically operated +V.3.3 Steering Wheel +V.3.3.1 In any angular position, the Steering Wheel must meet T.1.4.4 +V.3.3.2 The Steering Wheel must be attached to the column with a quick disconnect. +V.3.3.3 The driver must be able to operate the quick disconnect while in the normal driving position +with gloves on. +V.3.3.4 The Steering Wheel must have a continuous perimeter that is near circular or near oval. +The outer perimeter profile may have some straight sections, but no concave sections. “H”, +“Figure 8”, or cutout wheels are not allowed. +V.4 WHEELS AND TIRES +V.4.1 Wheel Size +Wheels must be 203.2 mm (8.0 inches) or more in diameter. +V.4.2 Wheel Attachment +V.4.2.1 Any wheel mounting system that uses a single retaining nut must incorporate a device to +retain the nut and the wheel if the nut loosens. +A second nut (jam nut) does not meet this requirement + +Formula SAE® Rules 2025 © 2024 SAE International Page 22 of 143 +Version 1.0 31 Aug 2024 +V.4.2.2 Teams using modified lug bolts or custom designs must provide proof that Good Engineering +Practices have been followed in their design. +V.4.2.3 If used, aluminum wheel nuts must be hard anodized and in pristine condition. +V.4.3 Tires +Vehicles may have two types of tires, Dry and Wet +V.4.3.1 Dry Tires +a. The tires on the vehicle when it is presented for Technical Inspection. +b. May be any size or type, slicks or treaded. +V.4.3.2 Wet Tires +Any size or type of treaded or grooved tire where: +• The tread pattern or grooves were molded in by the tire manufacturer, or were cut by +the tire manufacturer or appointed agent. +Any grooves that have been cut must have documented proof that this rule was met +• There is a minimum tread depth of 2.4 mm +V.4.3.3 Tire Set +a. All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be +identical. +b. Once each tire set has been presented for Technical Inspection, any tire compound or +size, or wheel type or size must not be changed. +V.4.3.4 Tire Pressure +a. Tire Pressure must be in the range allowed by the manufacturer at all times. +b. Tire Pressure may be inspected at any time +V.4.3.5 Requirements for All Tires +a. Teams must not do any hand cutting, grooving or modification of the tires. +b. Tire warmers are not allowed. +c. No traction enhancers may be applied to the tires at any time onsite at the competition. + +Formula SAE® Rules 2025 © 2024 SAE International Page 23 of 143 +Version 1.0 31 Aug 2024 +F - CHASSIS AND STRUCTURAL +F.1 DEFINITIONS +F.1.1 Chassis +The fabricated structural assembly that supports all functional vehicle systems. +This assembly may be a single fabricated structure, multiple fabricated structures or a +combination of composite and welded structures. +F.1.2 Frame Member +A minimum representative single piece of uncut, continuous tubing. +F.1.3 Monocoque +A type of Chassis where loads are supported by the external panels +F.1.4 Main Hoop +A roll bar located alongside or immediately aft of the driver’s torso. +F.1.5 Front Hoop +A roll bar located above the driver’s legs, in proximity to the steering wheel. +F.1.6 Roll Hoop(s) +Referring to the Front Hoop AND the Main Hoop +F.1.7 Roll Hoop Bracing Supports +The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). +F.1.8 Front Bulkhead +A planar structure that provides protection for the driver’s feet. +F.1.9 Impact Attenuator +A deformable, energy absorbing device located forward of the Front Bulkhead. +F.1.10 Primary Structure +The combination of these components: +• Front Bulkhead and Front Bulkhead Support +• Front Hoop, Main Hoop, Roll Hoop Braces and Supports +• Side Impact Structure +• (EV Only) Tractive System Protection and Rear Impact Protection +• Any Frame Members, guides, or supports that transfer load from the Driver Restraint +System +F.1.11 Primary Structure Envelope +A volume enclosed by multiple tangent planes, each of which follows the exact outline of the +Primary Structure Frame Members +F.1.12 Major Structure +The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main +Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of +the Upper Side Impact Member or top of the Side Impact Zone. + +Formula SAE® Rules 2025 © 2024 SAE International Page 24 of 143 +Version 1.0 31 Aug 2024 +F.1.13 Rollover Protection Envelope +The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front +Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural +tube, or monocoque equivalent. +* If there are no Triangulated Structural members aft of the Main Hoop, the Rollover +Protection Envelope ends at the rear plane of the Main Hoop +F.1.14 Tire Surface Envelope +The volume enclosed by tangent lines between the Main Hoop and the outside edge of each +of the four tires. +F.1.15 Component Envelope +The area that is inside a plane from the top of the Main Hoop to the top of the Front +Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural +tube, or monocoque equivalent. * see note in step F.1.13 above +F.1.16 Buckling Modulus (EI) +Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the +weakest axis +F.1.17 Triangulation +An arrangement of Frame Members where all members and segments of members between +bends or nodes with Structural tubes form a structure composed entirely of triangles. +a. This is generally required between an upper member and a lower member, each may +have multiple segments requiring a diagonal to form multiple triangles. +b. This is also what is meant by “properly triangulated” + +Formula SAE® Rules 2025 © 2024 SAE International Page 25 of 143 +Version 1.0 31 Aug 2024 +F.1.18 Nonflammable Material +Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent +F.2 DOCUMENTATION +F.2.1 Structural Equivalency Spreadsheet - SES +F.2.1.1 The SES is a supplement to the Formula SAE Rules and may provide guidance or further details +in addition to those of the Formula SAE Rules. +F.2.1.2 The SES provides the means to: +a. Document the Primary Structure and show compliance with the Formula SAE Rules +b. Determine Equivalence to Formula SAE Rules using an accepted basis +F.2.2 Structural Documentation +F.2.2.1 All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR - +Document Requirements +F.2.3 Equivalence +F.2.3.1 Equivalency in the structural context is determined and documented with the methods in the +SES +F.2.3.2 Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same +application +F.2.3.3 The properties of tubes and laminates may be combined to prove Equivalence. +For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate +panel, the panel only needs to be Equivalent to two Side Impact Tubes. +F.2.4 Tolerance +Tolerance on dimensions given in the rules is allowed and is addressed in the SES. +F.2.5 Fabrication +Vehicles must be fabricated in accordance with the design, materials, and processes described +in the SES. +F.3 TUBING AND MATERIAL +F.3.1 Dimensions +Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for +commonly available tubing. + +Formula SAE® Rules 2025 © 2024 SAE International Page 26 of 143 +Version 1.0 31 Aug 2024 +F.3.2 Tubing Requirements +F.3.2.1 Requirements by Application +Application +Steel Tube Must +Meet Size per +F.3.4: +Alternative Tubing +Material Permitted +per F.3.5 ? +a. Front Bulkhead Size B Yes +b. Front Bulkhead Support Size C Yes +c. Front Hoop Size A Yes +d. Front Hoop Bracing Size B Yes +e. Side Impact Structure Size B Yes +f. Bent / Multi Upper Side Impact Member Size D Yes +g. Main Hoop Size A NO +h. Main Hoop Bracing Size B NO +i. Main Hoop Bracing Supports Size C Yes +j. Driver Restraint Harness Attachment Size B Yes +k. Shoulder Harness Mounting Bar Size A NO +l. Shoulder Harness Mounting Bar Bracing Size C Yes +m. Accumulator Mounting and Protection Size B Yes +n. Component Protection Size C Yes +o. Structural Tubing Size C Yes +F.3.3 Non Structural Tubing +F.3.3.1 Definition +Any tubing which does NOT meet F.3.2.1.o Structural Tubing +F.3.3.2 Applicability +Non Structural Tubing is ignored when assessing compliance to any rule +F.3.4 Steel Tubing and Material +F.3.4.1 Minimum Requirements for Steel Tubing +A tube must have all four minimum requirements for each Size specified: +Tube +Minimum +Area +Moment of +Inertia +Minimum +Cross +Sectional +Area +Minimum +Outside +Diameter or +Square Width +Minimum +Wall +Thickness +Example Sizes of +Round Tube a. Size A 11320 mm -4 - 173 mm -2 - 25.0 mm 2.0 mm -1.0” x 0.095” -25 x 2.5 mm - +4 +173 mm +2 +25.0 mm 2.0 mm +1.0” x 0.095” +25 x 2.5 mm b. Size B 8509 mm -4 - 114 mm -2 - 25.0 mm 1.2 mm -1.0” x 0.065” -25.4 x 1.6 mm - +4 +114 mm +2 +25.0 mm 1.2 mm +1.0” x 0.065” +25.4 x 1.6 mm c. Size C 6695 mm -4 - 91 mm -2 - 25.0 mm 1.2 mm -1.0” x 0.049” -25.4 x 1.2 mm - +4 +91 mm +2 +25.0 mm 1.2 mm +1.0” x 0.049” +25.4 x 1.2 mm d. Size D 18015 mm -4 - 126 mm -2 - 35.0 mm 1.2 mm -1.375” x 0.049” -35 x 1.2 mm - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 27 of 143 -Version 1.0 31 Aug 2024 -F.3.4.2 Properties for ANY steel material for calculations submitted in an SES must be: -a. Non Welded Properties for continuous material calculations: -Young’s Modulus (E) = 200 GPa (29,000 ksi) -Yield Strength (Sy) = 305 MPa (44.2 ksi) -Ultimate Strength (Su) = 365 MPa (52.9 ksi) -b. Welded Properties for discontinuous material such as joint calculations: -Yield Strength (Sy) = 180 MPa (26 ksi) -Ultimate Strength (Su) = 300 MPa (43.5 ksi) -F.3.4.3 Where Welded tubing reinforcements are required (such as inserts for bolt holes or material -to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be -shown to the original Non Welded tube in the SES -F.3.5 Alternative Tubing Materials -F.3.5.1 Alternative Materials may be used for applications shown as permitted in F.3.2.1 -F.3.5.2 If any Alternative Materials are used, the SES must contain: -a. Documentation of material type, (purchase receipt, shipping document or letter of -donation) and the material properties. -b. Calculations that show equivalent to or better than the minimum requirements for steel -tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the -Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for -buckling modulus and for energy dissipation -c. Details of the manufacturing technique and process -F.3.5.3 Aluminum Tubing -a. Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm -Welded 3.0 mm -b. Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: -Young’s Modulus (E) 69 GPa (10,000 ksi) -Yield Strength (Sy) 240 MPa (34.8 ksi) -Ultimate Strength (Su) 290 MPa (42.1 ksi) -c. Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: -Yield Strength (Sy) 115 MPa (16.7 ksi) -Ultimate Strength (Su) 175 MPa (25.4 ksi) -d. If welding is used on a regulated aluminum structure, the equivalent yield strength must -be considered in the “as welded” condition for the alloy used unless the team provides -detailed proof that the frame or component has been properly solution heat treated, -artificially aged, and not subject to heating during team manufacturing. -e. If aluminum was solution heat treated and age hardened to increase its strength after -welding, the team must supply evidence of the process. -This includes, but is not limited to, the heat treating facility used, the process applied, -and the fixturing used. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 28 of 143 -Version 1.0 31 Aug 2024 -F.4 COMPOSITE AND OTHER MATERIALS -F.4.1 Requirements -If any composite or other material is used, the SES must contain: -F.4.1.1 Documentation of material type, (purchase receipt, shipping document or letter of donation) -and the material properties. -F.4.1.2 Details of the manufacturing technique and/or composite layup technique as well as the -structural material used (examples - cloth type, weight, and resin type, number of layers, core -material, and skin material if metal). -F.4.1.3 Calculations that show equivalence of the structure to one of similar geometry made to meet -the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency -calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, -buckling, and tension. -F.4.1.4 Construction dates of the test panel(s) and monocoque, and approximate age(s) of the -materials used. -F.4.2 Laminate and Material Testing -F.4.2.1 Testing Requirements -a. Any tested samples must be engraved with the full date of construction and sample -name -b. The same set of test results must not be used for different monocoques in different -years. -The intent is for the test panel to use the same material batch, material age, material storage, -and student layup quality as the monocoque. -F.4.2.2 Primary Structure Laminate Testing -Teams must build new representative test panels for each ply schedule used in the regulated -regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer -to F.4.2.4 -a. Test panels must: -• Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm -• Be supported by a span distance of 400 mm -• Have equal surface area for the top and bottom skin -• Have bare edges, without skin material -b. The SES must include: -• Data from the 3 point bending tests -• Pictures of the test samples -• A picture of the test sample and test setup showing a measurement documenting -the supported span distance used in the SES -c. Test panel results must be used to derive stiffness, yield strength, ultimate strength and -absorbed energy properties by the SES formula and limits for the purpose of calculating -laminate panels equivalency corresponding to Primary Structure regions of the chassis. -d. Test panels must use the thickest core associated with each skin layup - - -Formula SAE® Rules 2025 © 2024 SAE International Page 29 of 143 -Version 1.0 31 Aug 2024 -Designs may use core thickness that is 50% - 100% of the test panel core thickness -associated with each skin layup -e. Calculation of derived properties must use the part of test data where deflection is 50 -mm or less -f. Calculation of absorbed energy must use the integral of force times displacement -F.4.2.3 Comparison Test -Teams must make an equivalent test that will determine any compliance in the test rig and -establish an absorbed energy value of the baseline tubes. -a. The comparison test must use two Side Impact steel tubes (F.3.2.1.e) -b. The steel tubes must be tested to a minimum displacement of 19.0 mm -c. The calculation of absorbed energy must use the integral of force times displacement -from the initiation of load to a displacement of 19.0 mm -F.4.2.4 Test Conduct -a. The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture -b. The load applicator used to test any panel/tubes as required in this section F.4.2 must -be: -• Metallic -• Radius 50 mm -c. The load applicator must overhang the test piece to prevent edge loading -d. Any other material must not be put between the load applicator and the items on test - -F.4.2.5 Perimeter Shear Test -a. The Perimeter Shear Test must be completed by measuring the force required to push or -pull a 25 mm diameter flat punch through a flat laminate sample. -b. The sample must: -• Measure 100 mm x 100 mm minimum -• Have core and skin thicknesses identical to those used in the actual application -• Be manufactured using the same materials and processes -c. The fixture must support the entire sample, except for a 32 mm hole aligned coaxially -with the punch. -d. The sample must not be clamped to the fixture -e. The edge of the punch and hole in the fixture may include an optional fillet up to a -maximum radius of 1 mm. -f. The SES must include force and displacement data and photos of the test setup. - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 30 of 143 -Version 1.0 31 Aug 2024 -g. The first peak in the load-deflection curve must be used to determine the skin shear -strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5 -h. The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5 -F.4.2.6 Lap Joint Test -The Lap Joint Test measures the force required to pull apart a joint of two laminate samples -that are bonded together -a. A joint design with two perpendicular bond areas may show equivalence using the shear -performance of the smaller of the two areas -b. A joint design with a single bond area must have two separate pull tests with different -orientations of the adhesive joint: -• Parallel to the pull direction, with the adhesive joint in pure shear -• T peel normal to the pull direction, with the adhesive joint in peel -c. The samples used must: -• Have skin thicknesses identical to those used in the actual monocoque -• Be manufactured using the same materials and processes -The intent is to perform a test of the actual bond overlap, and fail the skin before the bond -d. The force and displacement data and photos of the test setup must be included in the -SES. -e. The shear strength * normal area of the bond must be more than the UTS * cross -sectional area of the skin -F.4.3 Use of Laminates -F.4.3.1 Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the -nearest plies to core material. -F.4.3.2 The monocoque must have the tested layup direction normal to the cross sections used for -Equivalence in the SES, with allowance for taper of the monocoque normal to the cross -section. -F.4.3.3 Results from the 3 point bending test will be assigned to the 0 layup direction. -F.4.3.4 All material properties in the directions designated by the SES must be 50% or more of those -in the tested “0” direction as calculated by the SES -F.4.4 Equivalent Flat Panel Calculation -F.4.4.1 When specified, the Equivalence of the chassis must be calculated as a flat panel with the -same composition as the chassis about the neutral axis of the laminate. -F.4.4.2 The curvature of the panel and geometric cross section of the chassis must be ignored for -these calculations. -F.4.4.3 Calculations of Equivalence that do not reference this section F.4.3 may use the actual -geometry of the chassis. -F.5 CHASSIS REQUIREMENTS -This section applies to all Chassis, regardless of material or construction - - -Formula SAE® Rules 2025 © 2024 SAE International Page 31 of 143 -Version 1.0 31 Aug 2024 -F.5.1 Primary Structure -F.5.1.1 The Primary Structure must be constructed from one or a combination of: -• Steel Tubing and Material F.3.2 F.3.4 -• Alternative Tubing Materials F.3.2 F.3.5 -• Composite Material F.4 -F.5.1.2 Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite -types must: -a. Meet all relevant requirements F.5.1.1 -b. Show Equivalence F.2.3, as applicable -c. Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent. -F.5.2 Bent Tubes or Multiple Tubes -F.5.2.1 The minimum radius of any bend, measured at the tube centerline, must be three or more -times the tube outside diameter (3 x OD). -F.5.2.2 Bends must be smooth and continuous with no evidence of crimping or wall failure. -F.5.2.3 If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere -in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be -attached to support it. -a. The support tube attachment point must be at the position along the bent tube where it -deviates farthest from a straight line connecting the two ends -b. The support tube must terminate at a node of the chassis -c. The support tube for any bent tube (other than the Upper Side Impact Member or -Shoulder Harness Mounting Bar) must be: -• The same diameter and thickness as the bent tube -• Angled no more than 30° from the plane of the bent tube -F.5.3 Holes and Openings in Regulated Tubing -F.5.3.1 Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES. -F.5.3.2 Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic -testing or by the drilling of inspection holes on request. -F.5.3.3 Regulated tubing other than the open lower ends of Roll Hoops must have any open ends -closed by a welded cap or inserted metal plug. -F.5.4 Fasteners in Primary Structure -F.5.4.1 Bolted connections in the Primary Structure must use a removable bolt and nut. -Bonded fasteners and blind nuts and bolts do not meet this requirement -F.5.4.2 Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2 -F.5.4.3 Bolted connections in the Primary Structure using tabs or brackets must have an edge -distance ratio “e/D” of 1.5 or higher -“D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest -free edge -Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” - - -Formula SAE® Rules 2025 © 2024 SAE International Page 32 of 143 -Version 1.0 31 Aug 2024 -F.5.5 Bonding in Regulated Structure -F.5.5.1 Adhesive used and referenced bonding strength must be correct for the two substrate types -F.5.5.2 Document the adhesive choice, age and expiration date, substrate preparation, and the -equivalency of the bonded joint in the SES -F.5.5.3 The SES will reduce any referenced or tested adhesive values by 50% -F.5.6 Roll Hoops -F.5.6.1 The Chassis must include a Main Hoop and a Front Hoop -F.5.6.2 The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with -Structural Tubing -F.5.6.3 Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of -the two: -a. Triangulated at a side view node -b. Less than 25 mm from an Attachment point F.7.8 -F.5.6.4 Roll Hoop and Driver Position -When seated normally and restrained by the Driver Restraint System, the helmet of a 95th -percentile male (see V.2.1.1) and all of the team’s drivers must: -a. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to -the top of the Front Hoop. -b. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to -the lower end of the Main Hoop Bracing if the bracing extends rearwards. -c. Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing -extends forwards. - -F.5.6.5 Driver Template -A two dimensional template used to represent the 95th percentile male is made to these -dimensions (see figure below): -• A circle of diameter 200 mm will represent the hips and buttocks. -• A circle of diameter 200 mm will represent the shoulder/cervical region. -• A circle of diameter 300 mm will represent the head (with helmet). -• A straight line measuring 490 mm will connect the centers of the two 200 mm circles. -• A straight line measuring 280 mm will connect the centers of the upper 200 mm circle -and the 300 mm head circle. - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 33 of 143 -Version 1.0 31 Aug 2024 -F.5.6.6 Driver Template Position -The Driver Template will be positioned as follows: -• The seat will be adjusted to the rearmost position -• The pedals will be put in the most forward position -• The bottom 200 mm circle will be put on the seat bottom where the distance between -the center of this circle and the rearmost face of the pedals is no less than 915 mm -• The middle 200 mm circle, representing the shoulders, will be positioned on the seat -back -• The upper 300 mm circle will be positioned no more than 25 mm away from the head -restraint (where the driver’s helmet would normally be located while driving) - -F.5.7 Front Hoop -F.5.7.1 The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c -F.5.7.2 With proper Triangulation, the Front Hoop may be fabricated from more than one piece of -tubing -F.5.7.3 The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, -over and down to the lowest Frame Member on the other side of the Frame. -F.5.7.4 The top-most surface of the Front Hoop must be no lower than the top of the steering wheel -in any angular position. See figure after F.5.9.6 below -F.5.7.5 The Front Hoop must be no more than 250 mm forward of the steering wheel. -This distance is measured horizontally, on the vehicle centerline, from the rear surface of the -Front Hoop to the forward most surface of the steering wheel rim with the steering in the -straight ahead position. -F.5.7.6 In side view, any part of the Front Hoop above the Upper Side Impact Structure must be -inclined less than 20° from the vertical. -F.5.7.7 A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during -Technical Inspection -F.5.8 Main Hoop -F.5.8.1 The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing -meeting F.3.2.1.g - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 34 of 143 -Version 1.0 31 Aug 2024 -F.5.8.2 The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one -side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque -on the other side of the Frame. -F.5.8.3 In the side view of the vehicle, -a. The part of the Main Hoop that lies above its attachment point to the upper Side Impact -Tube must be less than 10° from vertical. -b. The part of the Main Hoop below the Upper Side Impact Member attachment: -• May be forward at any angle -• Must not be rearward more than 10° from vertical -F.5.8.4 In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 -mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom -tubes of the Major Structure of the Chassis. -F.5.9 Main Hoop Braces -F.5.9.1 Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h -F.5.9.2 The Main Hoop must be supported by two Braces extending in the forward or rearward -direction, one on each of the left and right sides of the Main Hoop. -F.5.9.3 In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the -same side of the vertical line through the top of the Main Hoop. -(If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the -Main Hoop leans rearward, the Braces must be rearward of the Main Hoop) -F.5.9.4 The Main Hoop Braces must be attached 160 mm or less below the top most surface of the -Main Hoop. -The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop -F.5.9.5 The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more. -F.5.9.6 The Main Hoop Braces must be straight, without any bends. - -F.5.9.7 The Main Hoop Braces must be: -a. Securely integrated into the Frame -b. Capable of transmitting all loads from the Main Hoop into the Major Structure of the -Chassis without failing - - -Formula SAE® Rules 2025 © 2024 SAE International Page 35 of 143 -Version 1.0 31 Aug 2024 -F.5.10 Head Restraint Protection -An additional frame member may be added to meet T.2.8.3.b -F.5.10.1 If used, the Head Restraint Protection frame member must: -a. Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop -b. Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting -F.3.2.1.h -c. Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3) -F.5.10.2 The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection -F.5.11 External Items -F.5.11.1 Definition - items outside the exact outline of the part of the Primary Structure Envelope -F.1.11 defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other -tube nodes or composite attachments -F.5.11.2 External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if -the mount is one of the two: -a. Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis -b. Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will -fail below the allowable load as calculated by the SES -F.5.11.3 If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may -attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above: -a. Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service -Disconnect, Master Switches or Shutdown Buttons -b. Lightweight mounts for items inside the Main Hoop Braces -F.5.11.4 Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the -Main Hoop Braces or Main Hoop above other tube nodes or composite attachments -F.5.11.5 Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must -be longitudinally offset to avoid point loading in a rollover -F.5.11.6 External Items should not point at the driver -F.5.12 Mechanically Attached Roll Hoop Bracing -F.5.12.1 When Roll Hoop Bracing is mechanically attached: -a. The threaded fasteners used to secure non permanent joints are Critical Fasteners, see -T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7 -b. No spherical rod ends are allowed -c. The attachment holes in the lugs, the attached bracing and the sleeves and tubes must -be a close fit with the pin or bolt -F.5.12.2 Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint - - -Formula SAE® Rules 2025 © 2024 SAE International Page 36 of 143 -Version 1.0 31 Aug 2024 -Figure – Double Lug Joint - -F.5.12.3 For Double Lug Joints, each lug must: -a. Be minimum 4.5 mm (0.177 in) thickness steel -b. Measure 25 mm minimum perpendicular to the axis of the bracing -c. Be as short as practical along the axis of the bracing. -F.5.12.4 All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must -include a capping arrangement -F.5.12.5 In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 -minimum diameter and grade. See F.5.12.1 above -Figure – Sleeved Butt Joint - -F.5.12.6 For Sleeved Butt Joints, the sleeve must: -a. Have a minimum length of 75 mm; 37.5 mm to each side of the joint -b. Be external to the base tubes, with a close fit around the base tubes. -c. Have a wall thickness of 2.0 mm or more -F.5.12.7 In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 -minimum diameter and grade. See F.5.12.1 above -F.5.13 Other Bracing Requirements -F.5.13.1 Where the braces are not welded to steel Frame Members, the braces must be securely -attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2 -F.5.13.2 Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness -steel. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 37 of 143 -Version 1.0 31 Aug 2024 -F.5.14 Steering Protection -Steering system racks or mounting components that are external (vertically above or below) -to the Primary Structure must be protected from frontal impact. -The protective structure must: -a. Be F.3.2.1.n or Equivalent -b. Extend to the vertical limit of the steering component(s) -c. Extend to the local width of the Chassis -d. Meet F.7.8 if not welded to the Chassis -F.5.15 Other Side Tube Requirements -If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck -of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the -Frame -This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or -frame tube, and the driver’s neck contacting this brace or tube. -F.5.16 Component Protection -When specified in the rules, components must be protected by one or two of: -a. Fully Triangulated structure with tubes meeting F.3.2.1.n -b. Structure Equivalent to the above, as determined per F.4.1.3 -F.6 TUBE FRAMES -F.6.1 Front Bulkhead -The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a -F.6.2 Front Bulkhead Support -F.6.2.1 Frame Members of the Front Bulkhead Support system must be constructed of closed section -tubing meeting F.3.2.1.b -F.6.2.2 The Front Bulkhead must be securely integrated into the Frame. -F.6.2.3 The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame -Members on each side of the vehicle; an upper member; lower member and diagonal brace to -provide Triangulation. -a. The top of the upper support member must be attached 50 mm or less from the top -surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 -mm above and 50 mm below the Upper Side Impact member. -b. If the upper support member is further than 100 mm above the top of the Upper Side -Impact member, then properly Triangulated bracing is required to transfer load to the -Main Hoop by one of: -• the Upper Side Impact member -• an additional member transmitting load from the junction of the Upper Support -Member with the Front Hoop -c. The lower support member must be attached to the base of the Front Bulkhead and the -base of the Front Hoop -d. The diagonal brace must properly Triangulate the upper and lower support members - - -Formula SAE® Rules 2025 © 2024 SAE International Page 38 of 143 -Version 1.0 31 Aug 2024 -F.6.2.4 Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 -are met -F.6.2.5 Examples of acceptable configurations of members may be found in the SES -F.6.3 Front Hoop Bracing -F.6.3.1 Front Hoop Braces must be constructed of material meeting F.3.2.1.d -F.6.3.2 The Front Hoop must be supported by two Braces extending in the forward direction, one on -each of the left and right sides of the Front Hoop. -F.6.3.3 The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to -the structure in front of the driver’s feet. -F.6.3.4 The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but -not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 -above -F.6.3.5 If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° -from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully -Triangulated structural node. -F.6.3.6 The Front Hoop Braces must be straight, without any bends -F.6.4 Side Impact Structure -F.6.4.1 Frame Members of the Side Impact Structure must be constructed of closed section tubing -meeting F.3.2.1.e or F.3.2.1.f, as applicable -F.6.4.2 With proper Triangulation, Side Impact Structure members may be fabricated from more than -one piece of tubing. -F.6.4.3 The Side Impact Structure must include three or more tubular members located on each side -of the driver while seated in the normal driving position - -F.6.4.4 The Upper Side Impact Member must: -a. Connect the Main Hoop and the Front Hoop. -b. Have its top edge entirely in a zone that is parallel to the ground between 265 mm and -320 mm above the lowest point of the top surface of the Lower Side Impact Member -F.6.4.5 The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the -bottom of the Front Hoop. - - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 39 of 143 -Version 1.0 31 Aug 2024 -F.6.4.6 The Diagonal Side Impact Member must: -a. Connect the Upper Side Impact Member and Lower Side Impact Member forward of the -Main Hoop and rearward of the Front Hoop -b. Completely Triangulate the bays created by the Upper and Lower Side Impact Members. -F.6.5 Shoulder Harness Mounting -F.6.5.1 The Shoulder Harness Mounting Bar must: -a. Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k -b. Attach to the Main Hoop on the left and right sides of the chassis -F.6.5.2 Bent Shoulder Harness Mounting Bars must: -a. Meet F.5.2.1 and F.5.2.2 -b. Have bracing members attached at the bend(s) and to the Main Hoop. -• Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l -• The included angle in side view between the Shoulder Harness Bar and the braces -must be no less than 30°. -F.6.5.3 The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness -The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar -F.6.6 Main Hoop Bracing Supports -F.6.6.1 Frame Members of the Main Hoop Bracing Support system must be constructed of closed -section tubing meeting F.3.2.1.i -F.6.6.2 The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a -minimum of two Frame Members on each side of the vehicle: an upper member and a lower -member in a properly Triangulated configuration. -a. The upper support member must attach to the node where the upper Side Impact -Member attaches to the Main Hoop. -b. The lower support member must attach to the node where the lower Side Impact -Member attaches to the Main Hoop. -c. Each of the above members may be multiple or bent tubes provided the requirements of -F.5.2 are met. -d. Examples of acceptable configurations of members may be found in the SES. -F.7 MONOCOQUE -F.7.1 General Requirements -F.7.1.1 The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded -frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and -tension -F.7.1.2 Composite and metallic monocoques have the same requirements -F.7.1.3 Corners between panels used for structural equivalence must contain core -F.7.1.4 An inspection hole approximately 4mm in diameter must be drilled through a low stress -location of each monocoque section regulated by the Structural Equivalency Spreadsheet -This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b - - -Formula SAE® Rules 2025 © 2024 SAE International Page 40 of 143 -Version 1.0 31 Aug 2024 -F.7.1.5 Composite monocoques must: -a. Meet the materials requirements in F.4 Composite and Other Materials -b. Use data from the laminate testing results as the basis for any strength or stiffness -calculations -F.7.2 Front Bulkhead -F.7.2.1 When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral -axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1 -F.7.2.2 The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm -measured from the rearmost face of the Front Bulkhead -F.7.2.3 Any Front Bulkhead which supports the IA plate must have a perimeter shear strength -equivalent to a 1.5 mm thick steel plate -F.7.3 Front Bulkhead Support -F.7.3.1 In addition to proving that the strength of the monocoque is sufficient, the monocoque must -have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces. -F.7.3.2 The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or -more than the EI of one steel tube that it replaces when calculated as per F.4.3 -F.7.3.3 The perimeter shear strength of the monocoque laminate in the Front Bulkhead support -structure must be 4 kN or more for a section with a diameter of 25 mm. -This must be proven by a physical test completed per F.4.2.5 and the results included in the -SES. -F.7.4 Front Hoop Attachment -F.7.4.1 The Front Hoop must be mechanically attached to the monocoque -a. Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c -b. The Front Hoop tube must be mechanically connected to the Mounting Plate with -Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop -tube along the two sides of the mounting plate -F.7.4.2 Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any -bends and nodes that are not at the top center of the Front Hoop -F.7.4.3 The Front Hoop may be fully laminated into the monocoque if: -a. The Front Hoop has core fit tightly around its entire circumference. Expanding foam is -not permitted -b. Equivalence to six or more mounts compliant with F.7.8 must show in the SES -c. A small gap in the laminate (approximately 25 mm) exists for inspection of the Front -Hoop F.5.7.7 -F.7.4.4 Adhesive must not be the sole method of attaching the Front Hoop to the monocoque - - -Formula SAE® Rules 2025 © 2024 SAE International Page 41 of 143 -Version 1.0 31 Aug 2024 -F.7.5 Side Impact Structure -F.7.5.1 Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front -Hoop consisting of the combination of a vertical section minimum 290 mm in height from the -bottom surface of the floor of the monocoque and half the horizontal floor - -F.7.5.2 The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it -replaces -F.7.5.3 The portion of the Side Impact Zone that is vertically between the upper surface of the floor -and 320 mm above the lowest point of the upper surface of the floor (see figure above) must -have: -a. Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3 -b. No openings in Side View between the Front Hoop and Main Hoop -F.7.5.4 Horizontal floor Equivalence must be calculated per F.4.3 -F.7.5.5 The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a -section with a diameter of 25 mm. -This must be proven by physical test completed per F.4.2.5 and the results included in the SES. -F.7.6 Main Hoop Attachment -F.7.6.1 The Main Hoop must be mechanically attached to the monocoque -a. Main Hoop mounting plates must be 2.0 mm minimum thickness steel -b. The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 -mm minimum thickness steel plates parallel to the two sides of the tube, with gussets -from the Main Hoop tube along the two sides of the mounting plate -F.7.6.2 Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and -nodes that are below the top of the monocoque -F.7.7 Roll Hoop Bracing Attachment -Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8. -F.7.8 Attachments -F.7.8.1 Each attachment point between the monocoque or composite panels and the other Primary -Structure must be able to carry a minimum load of 30 kN in any direction. -a. When a Roll Hoop attaches in three locations on each side, the attachments must be -located at the bottom, top, and a location near the midpoint - - - - - - - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 42 of 143 -Version 1.0 31 Aug 2024 -b. When a Roll Hoop attaches at only the bottom and a point between the top and the -midpoint on each side, each of the four attachments must show load strength of 45 kN in -all directions -F.7.8.2 If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must -obey one of the two: -a. Parallel brackets attached to the two sides of the Main Hoop and the two sides of the -Side Impact Structure -b. Two mostly perpendicular brackets attached to the Main Hoop and the side and back of -the monocoque -F.7.8.3 The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, -bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. -Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient -shear area is provided. -F.7.8.4 Proof that the brackets are sufficiently stiff must be documented in the SES. -F.7.8.5 Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical -Fasteners, see T.8.2 -F.7.8.6 Each attachment point requires backing plates which meet one of: -• Steel with a minimum thickness of 2 mm -• Alternate materials if Equivalency is approved -F.7.8.7 The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only -one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 -above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in -bending, similar to the figure below. - -F.7.8.8 Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the -two: -a. A solid insert that is fully enclosed by the inner and outer skin -b. Local elimination of any gap between inner and outer skin, with or without repeating -skin layups -F.7.9 Driver Harness Attachment -F.7.9.1 Required Loads -a. Each attachment point for the Shoulder Belts must support a minimum load of 15 kN -before failure with a required load of 30 kN distributed across the two belt attachments -b. Each attachment point for the Lap Belts must support a minimum load of 15 kN before -failure. - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 43 of 143 -Version 1.0 31 Aug 2024 -c. Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 -kN before failure. -d. If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or -are attached to the same attachment point, then each mounting point must support a -minimum load of 30 kN before failure. -F.7.9.2 Load Testing -The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven -by physical tests where the required load is applied to a representative attachment point -where the proposed layup and attachment bracket are used. -a. Edges of the test fixture supporting the sample must be a minimum of 125 mm from the -load application point (load vector intersecting a plane) -b. Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 -degrees) to the plane of the test sample -c. Shoulder Belt Test Load application must meet: - Installed Shoulder Belt Angle: Test Load Application Angle must be: should be: - +4 +126 mm +2 +35.0 mm 1.2 mm +1.375” x 0.049” +35 x 1.2 mm + +Formula SAE® Rules 2025 © 2024 SAE International Page 27 of 143 +Version 1.0 31 Aug 2024 +F.3.4.2 Properties for ANY steel material for calculations submitted in an SES must be: +a. Non Welded Properties for continuous material calculations: +Young’s Modulus (E) = 200 GPa (29,000 ksi) +Yield Strength (Sy) = 305 MPa (44.2 ksi) +Ultimate Strength (Su) = 365 MPa (52.9 ksi) +b. Welded Properties for discontinuous material such as joint calculations: +Yield Strength (Sy) = 180 MPa (26 ksi) +Ultimate Strength (Su) = 300 MPa (43.5 ksi) +F.3.4.3 Where Welded tubing reinforcements are required (such as inserts for bolt holes or material +to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be +shown to the original Non Welded tube in the SES +F.3.5 Alternative Tubing Materials +F.3.5.1 Alternative Materials may be used for applications shown as permitted in F.3.2.1 +F.3.5.2 If any Alternative Materials are used, the SES must contain: +a. Documentation of material type, (purchase receipt, shipping document or letter of +donation) and the material properties. +b. Calculations that show equivalent to or better than the minimum requirements for steel +tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the +Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for +buckling modulus and for energy dissipation +c. Details of the manufacturing technique and process +F.3.5.3 Aluminum Tubing +a. Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm +Welded 3.0 mm +b. Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: +Young’s Modulus (E) 69 GPa (10,000 ksi) +Yield Strength (Sy) 240 MPa (34.8 ksi) +Ultimate Strength (Su) 290 MPa (42.1 ksi) +c. Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: +Yield Strength (Sy) 115 MPa (16.7 ksi) +Ultimate Strength (Su) 175 MPa (25.4 ksi) +d. If welding is used on a regulated aluminum structure, the equivalent yield strength must +be considered in the “as welded” condition for the alloy used unless the team provides +detailed proof that the frame or component has been properly solution heat treated, +artificially aged, and not subject to heating during team manufacturing. +e. If aluminum was solution heat treated and age hardened to increase its strength after +welding, the team must supply evidence of the process. +This includes, but is not limited to, the heat treating facility used, the process applied, +and the fixturing used. + +Formula SAE® Rules 2025 © 2024 SAE International Page 28 of 143 +Version 1.0 31 Aug 2024 +F.4 COMPOSITE AND OTHER MATERIALS +F.4.1 Requirements +If any composite or other material is used, the SES must contain: +F.4.1.1 Documentation of material type, (purchase receipt, shipping document or letter of donation) +and the material properties. +F.4.1.2 Details of the manufacturing technique and/or composite layup technique as well as the +structural material used (examples - cloth type, weight, and resin type, number of layers, core +material, and skin material if metal). +F.4.1.3 Calculations that show equivalence of the structure to one of similar geometry made to meet +the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency +calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, +buckling, and tension. +F.4.1.4 Construction dates of the test panel(s) and monocoque, and approximate age(s) of the +materials used. +F.4.2 Laminate and Material Testing +F.4.2.1 Testing Requirements +a. Any tested samples must be engraved with the full date of construction and sample +name +b. The same set of test results must not be used for different monocoques in different +years. +The intent is for the test panel to use the same material batch, material age, material storage, +and student layup quality as the monocoque. +F.4.2.2 Primary Structure Laminate Testing +Teams must build new representative test panels for each ply schedule used in the regulated +regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer +to F.4.2.4 +a. Test panels must: +• Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm +• Be supported by a span distance of 400 mm +• Have equal surface area for the top and bottom skin +• Have bare edges, without skin material +b. The SES must include: +• Data from the 3 point bending tests +• Pictures of the test samples +• A picture of the test sample and test setup showing a measurement documenting +the supported span distance used in the SES +c. Test panel results must be used to derive stiffness, yield strength, ultimate strength and +absorbed energy properties by the SES formula and limits for the purpose of calculating +laminate panels equivalency corresponding to Primary Structure regions of the chassis. +d. Test panels must use the thickest core associated with each skin layup + +Formula SAE® Rules 2025 © 2024 SAE International Page 29 of 143 +Version 1.0 31 Aug 2024 +Designs may use core thickness that is 50% - 100% of the test panel core thickness +associated with each skin layup +e. Calculation of derived properties must use the part of test data where deflection is 50 +mm or less +f. Calculation of absorbed energy must use the integral of force times displacement +F.4.2.3 Comparison Test +Teams must make an equivalent test that will determine any compliance in the test rig and +establish an absorbed energy value of the baseline tubes. +a. The comparison test must use two Side Impact steel tubes (F.3.2.1.e) +b. The steel tubes must be tested to a minimum displacement of 19.0 mm +c. The calculation of absorbed energy must use the integral of force times displacement +from the initiation of load to a displacement of 19.0 mm +F.4.2.4 Test Conduct +a. The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture +b. The load applicator used to test any panel/tubes as required in this section F.4.2 must +be: +• Metallic +• Radius 50 mm +c. The load applicator must overhang the test piece to prevent edge loading +d. Any other material must not be put between the load applicator and the items on test +F.4.2.5 Perimeter Shear Test +a. The Perimeter Shear Test must be completed by measuring the force required to push or +pull a 25 mm diameter flat punch through a flat laminate sample. +b. The sample must: +• Measure 100 mm x 100 mm minimum +• Have core and skin thicknesses identical to those used in the actual application +• Be manufactured using the same materials and processes +c. The fixture must support the entire sample, except for a 32 mm hole aligned coaxially +with the punch. +d. The sample must not be clamped to the fixture +e. The edge of the punch and hole in the fixture may include an optional fillet up to a +maximum radius of 1 mm. +f. The SES must include force and displacement data and photos of the test setup. + +Formula SAE® Rules 2025 © 2024 SAE International Page 30 of 143 +Version 1.0 31 Aug 2024 +g. The first peak in the load-deflection curve must be used to determine the skin shear +strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5 +h. The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5 +F.4.2.6 Lap Joint Test +The Lap Joint Test measures the force required to pull apart a joint of two laminate samples +that are bonded together +a. A joint design with two perpendicular bond areas may show equivalence using the shear +performance of the smaller of the two areas +b. A joint design with a single bond area must have two separate pull tests with different +orientations of the adhesive joint: +• Parallel to the pull direction, with the adhesive joint in pure shear +• T peel normal to the pull direction, with the adhesive joint in peel +c. The samples used must: +• Have skin thicknesses identical to those used in the actual monocoque +• Be manufactured using the same materials and processes +The intent is to perform a test of the actual bond overlap, and fail the skin before the bond +d. The force and displacement data and photos of the test setup must be included in the +SES. +e. The shear strength * normal area of the bond must be more than the UTS * cross +sectional area of the skin +F.4.3 Use of Laminates +F.4.3.1 Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the +nearest plies to core material. +F.4.3.2 The monocoque must have the tested layup direction normal to the cross sections used for +Equivalence in the SES, with allowance for taper of the monocoque normal to the cross +section. +F.4.3.3 Results from the 3 point bending test will be assigned to the 0 layup direction. +F.4.3.4 All material properties in the directions designated by the SES must be 50% or more of those +in the tested “0” direction as calculated by the SES +F.4.4 Equivalent Flat Panel Calculation +F.4.4.1 When specified, the Equivalence of the chassis must be calculated as a flat panel with the +same composition as the chassis about the neutral axis of the laminate. +F.4.4.2 The curvature of the panel and geometric cross section of the chassis must be ignored for +these calculations. +F.4.4.3 Calculations of Equivalence that do not reference this section F.4.3 may use the actual +geometry of the chassis. +F.5 CHASSIS REQUIREMENTS +This section applies to all Chassis, regardless of material or construction + +Formula SAE® Rules 2025 © 2024 SAE International Page 31 of 143 +Version 1.0 31 Aug 2024 +F.5.1 Primary Structure +F.5.1.1 The Primary Structure must be constructed from one or a combination of: +• Steel Tubing and Material F.3.2 F.3.4 +• Alternative Tubing Materials F.3.2 F.3.5 +• Composite Material F.4 +F.5.1.2 Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite +types must: +a. Meet all relevant requirements F.5.1.1 +b. Show Equivalence F.2.3, as applicable +c. Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent. +F.5.2 Bent Tubes or Multiple Tubes +F.5.2.1 The minimum radius of any bend, measured at the tube centerline, must be three or more +times the tube outside diameter (3 x OD). +F.5.2.2 Bends must be smooth and continuous with no evidence of crimping or wall failure. +F.5.2.3 If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere +in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be +attached to support it. +a. The support tube attachment point must be at the position along the bent tube where it +deviates farthest from a straight line connecting the two ends +b. The support tube must terminate at a node of the chassis +c. The support tube for any bent tube (other than the Upper Side Impact Member or +Shoulder Harness Mounting Bar) must be: +• The same diameter and thickness as the bent tube +• Angled no more than 30° from the plane of the bent tube +F.5.3 Holes and Openings in Regulated Tubing +F.5.3.1 Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES. +F.5.3.2 Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic +testing or by the drilling of inspection holes on request. +F.5.3.3 Regulated tubing other than the open lower ends of Roll Hoops must have any open ends +closed by a welded cap or inserted metal plug. +F.5.4 Fasteners in Primary Structure +F.5.4.1 Bolted connections in the Primary Structure must use a removable bolt and nut. +Bonded fasteners and blind nuts and bolts do not meet this requirement +F.5.4.2 Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2 +F.5.4.3 Bolted connections in the Primary Structure using tabs or brackets must have an edge +distance ratio “e/D” of 1.5 or higher +“D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest +free edge +Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” + +Formula SAE® Rules 2025 © 2024 SAE International Page 32 of 143 +Version 1.0 31 Aug 2024 +F.5.5 Bonding in Regulated Structure +F.5.5.1 Adhesive used and referenced bonding strength must be correct for the two substrate types +F.5.5.2 Document the adhesive choice, age and expiration date, substrate preparation, and the +equivalency of the bonded joint in the SES +F.5.5.3 The SES will reduce any referenced or tested adhesive values by 50% +F.5.6 Roll Hoops +F.5.6.1 The Chassis must include a Main Hoop and a Front Hoop +F.5.6.2 The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with +Structural Tubing +F.5.6.3 Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of +the two: +a. Triangulated at a side view node +b. Less than 25 mm from an Attachment point F.7.8 +F.5.6.4 Roll Hoop and Driver Position +When seated normally and restrained by the Driver Restraint System, the helmet of a 95th +percentile male (see V.2.1.1) and all of the team’s drivers must: +a. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to +the top of the Front Hoop. +b. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to +the lower end of the Main Hoop Bracing if the bracing extends rearwards. +c. Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing +extends forwards. +F.5.6.5 Driver Template +A two dimensional template used to represent the 95th percentile male is made to these +dimensions (see figure below): +• A circle of diameter 200 mm will represent the hips and buttocks. +• A circle of diameter 200 mm will represent the shoulder/cervical region. +• A circle of diameter 300 mm will represent the head (with helmet). +• A straight line measuring 490 mm will connect the centers of the two 200 mm circles. +• A straight line measuring 280 mm will connect the centers of the upper 200 mm circle +and the 300 mm head circle. + +Formula SAE® Rules 2025 © 2024 SAE International Page 33 of 143 +Version 1.0 31 Aug 2024 +F.5.6.6 Driver Template Position +The Driver Template will be positioned as follows: +• The seat will be adjusted to the rearmost position +• The pedals will be put in the most forward position +• The bottom 200 mm circle will be put on the seat bottom where the distance between +the center of this circle and the rearmost face of the pedals is no less than 915 mm +• The middle 200 mm circle, representing the shoulders, will be positioned on the seat +back +• The upper 300 mm circle will be positioned no more than 25 mm away from the head +restraint (where the driver’s helmet would normally be located while driving) +F.5.7 Front Hoop +F.5.7.1 The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c +F.5.7.2 With proper Triangulation, the Front Hoop may be fabricated from more than one piece of +tubing +F.5.7.3 The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, +over and down to the lowest Frame Member on the other side of the Frame. +F.5.7.4 The top-most surface of the Front Hoop must be no lower than the top of the steering wheel +in any angular position. See figure after F.5.9.6 below +F.5.7.5 The Front Hoop must be no more than 250 mm forward of the steering wheel. +This distance is measured horizontally, on the vehicle centerline, from the rear surface of the +Front Hoop to the forward most surface of the steering wheel rim with the steering in the +straight ahead position. +F.5.7.6 In side view, any part of the Front Hoop above the Upper Side Impact Structure must be +inclined less than 20° from the vertical. +F.5.7.7 A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during +Technical Inspection +F.5.8 Main Hoop +F.5.8.1 The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing +meeting F.3.2.1.g + +Formula SAE® Rules 2025 © 2024 SAE International Page 34 of 143 +Version 1.0 31 Aug 2024 +F.5.8.2 The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one +side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque +on the other side of the Frame. +F.5.8.3 In the side view of the vehicle, +a. The part of the Main Hoop that lies above its attachment point to the upper Side Impact +Tube must be less than 10° from vertical. +b. The part of the Main Hoop below the Upper Side Impact Member attachment: +• May be forward at any angle +• Must not be rearward more than 10° from vertical +F.5.8.4 In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 +mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom +tubes of the Major Structure of the Chassis. +F.5.9 Main Hoop Braces +F.5.9.1 Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h +F.5.9.2 The Main Hoop must be supported by two Braces extending in the forward or rearward +direction, one on each of the left and right sides of the Main Hoop. +F.5.9.3 In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the +same side of the vertical line through the top of the Main Hoop. +(If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the +Main Hoop leans rearward, the Braces must be rearward of the Main Hoop) +F.5.9.4 The Main Hoop Braces must be attached 160 mm or less below the top most surface of the +Main Hoop. +The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop +F.5.9.5 The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more. +F.5.9.6 The Main Hoop Braces must be straight, without any bends. +F.5.9.7 The Main Hoop Braces must be: +a. Securely integrated into the Frame +b. Capable of transmitting all loads from the Main Hoop into the Major Structure of the +Chassis without failing + +Formula SAE® Rules 2025 © 2024 SAE International Page 35 of 143 +Version 1.0 31 Aug 2024 +F.5.10 Head Restraint Protection +An additional frame member may be added to meet T.2.8.3.b +F.5.10.1 If used, the Head Restraint Protection frame member must: +a. Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop +b. Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting +F.3.2.1.h +c. Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3) +F.5.10.2 The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection +F.5.11 External Items +F.5.11.1 Definition - items outside the exact outline of the part of the Primary Structure Envelope +F.1.11 defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other +tube nodes or composite attachments +F.5.11.2 External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if +the mount is one of the two: +a. Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis +b. Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will +fail below the allowable load as calculated by the SES +F.5.11.3 If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may +attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above: +a. Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service +Disconnect, Master Switches or Shutdown Buttons +b. Lightweight mounts for items inside the Main Hoop Braces +F.5.11.4 Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the +Main Hoop Braces or Main Hoop above other tube nodes or composite attachments +F.5.11.5 Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must +be longitudinally offset to avoid point loading in a rollover +F.5.11.6 External Items should not point at the driver +F.5.12 Mechanically Attached Roll Hoop Bracing +F.5.12.1 When Roll Hoop Bracing is mechanically attached: +a. The threaded fasteners used to secure non permanent joints are Critical Fasteners, see +T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7 +b. No spherical rod ends are allowed +c. The attachment holes in the lugs, the attached bracing and the sleeves and tubes must +be a close fit with the pin or bolt +F.5.12.2 Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint + +Formula SAE® Rules 2025 © 2024 SAE International Page 36 of 143 +Version 1.0 31 Aug 2024 +Figure – Double Lug Joint +F.5.12.3 For Double Lug Joints, each lug must: +a. Be minimum 4.5 mm (0.177 in) thickness steel +b. Measure 25 mm minimum perpendicular to the axis of the bracing +c. Be as short as practical along the axis of the bracing. +F.5.12.4 All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must +include a capping arrangement +F.5.12.5 In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 +minimum diameter and grade. See F.5.12.1 above +Figure – Sleeved Butt Joint +F.5.12.6 For Sleeved Butt Joints, the sleeve must: +a. Have a minimum length of 75 mm; 37.5 mm to each side of the joint +b. Be external to the base tubes, with a close fit around the base tubes. +c. Have a wall thickness of 2.0 mm or more +F.5.12.7 In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 +minimum diameter and grade. See F.5.12.1 above +F.5.13 Other Bracing Requirements +F.5.13.1 Where the braces are not welded to steel Frame Members, the braces must be securely +attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2 +F.5.13.2 Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness +steel. + +Formula SAE® Rules 2025 © 2024 SAE International Page 37 of 143 +Version 1.0 31 Aug 2024 +F.5.14 Steering Protection +Steering system racks or mounting components that are external (vertically above or below) +to the Primary Structure must be protected from frontal impact. +The protective structure must: +a. Be F.3.2.1.n or Equivalent +b. Extend to the vertical limit of the steering component(s) +c. Extend to the local width of the Chassis +d. Meet F.7.8 if not welded to the Chassis +F.5.15 Other Side Tube Requirements +If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck +of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the +Frame +This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or +frame tube, and the driver’s neck contacting this brace or tube. +F.5.16 Component Protection +When specified in the rules, components must be protected by one or two of: +a. Fully Triangulated structure with tubes meeting F.3.2.1.n +b. Structure Equivalent to the above, as determined per F.4.1.3 +F.6 TUBE FRAMES +F.6.1 Front Bulkhead +The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a +F.6.2 Front Bulkhead Support +F.6.2.1 Frame Members of the Front Bulkhead Support system must be constructed of closed section +tubing meeting F.3.2.1.b +F.6.2.2 The Front Bulkhead must be securely integrated into the Frame. +F.6.2.3 The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame +Members on each side of the vehicle; an upper member; lower member and diagonal brace to +provide Triangulation. +a. The top of the upper support member must be attached 50 mm or less from the top +surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 +mm above and 50 mm below the Upper Side Impact member. +b. If the upper support member is further than 100 mm above the top of the Upper Side +Impact member, then properly Triangulated bracing is required to transfer load to the +Main Hoop by one of: +• the Upper Side Impact member +• an additional member transmitting load from the junction of the Upper Support +Member with the Front Hoop +c. The lower support member must be attached to the base of the Front Bulkhead and the +base of the Front Hoop +d. The diagonal brace must properly Triangulate the upper and lower support members + +Formula SAE® Rules 2025 © 2024 SAE International Page 38 of 143 +Version 1.0 31 Aug 2024 +F.6.2.4 Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 +are met +F.6.2.5 Examples of acceptable configurations of members may be found in the SES +F.6.3 Front Hoop Bracing +F.6.3.1 Front Hoop Braces must be constructed of material meeting F.3.2.1.d +F.6.3.2 The Front Hoop must be supported by two Braces extending in the forward direction, one on +each of the left and right sides of the Front Hoop. +F.6.3.3 The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to +the structure in front of the driver’s feet. +F.6.3.4 The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but +not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 +above +F.6.3.5 If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° +from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully +Triangulated structural node. +F.6.3.6 The Front Hoop Braces must be straight, without any bends +F.6.4 Side Impact Structure +F.6.4.1 Frame Members of the Side Impact Structure must be constructed of closed section tubing +meeting F.3.2.1.e or F.3.2.1.f, as applicable +F.6.4.2 With proper Triangulation, Side Impact Structure members may be fabricated from more than +one piece of tubing. +F.6.4.3 The Side Impact Structure must include three or more tubular members located on each side +of the driver while seated in the normal driving position +F.6.4.4 The Upper Side Impact Member must: +a. Connect the Main Hoop and the Front Hoop. +b. Have its top edge entirely in a zone that is parallel to the ground between 265 mm and +320 mm above the lowest point of the top surface of the Lower Side Impact Member +F.6.4.5 The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the +bottom of the Front Hoop. + +Formula SAE® Rules 2025 © 2024 SAE International Page 39 of 143 +Version 1.0 31 Aug 2024 +F.6.4.6 The Diagonal Side Impact Member must: +a. Connect the Upper Side Impact Member and Lower Side Impact Member forward of the +Main Hoop and rearward of the Front Hoop +b. Completely Triangulate the bays created by the Upper and Lower Side Impact Members. +F.6.5 Shoulder Harness Mounting +F.6.5.1 The Shoulder Harness Mounting Bar must: +a. Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k +b. Attach to the Main Hoop on the left and right sides of the chassis +F.6.5.2 Bent Shoulder Harness Mounting Bars must: +a. Meet F.5.2.1 and F.5.2.2 +b. Have bracing members attached at the bend(s) and to the Main Hoop. +• Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l +• The included angle in side view between the Shoulder Harness Bar and the braces +must be no less than 30°. +F.6.5.3 The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness +The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar +F.6.6 Main Hoop Bracing Supports +F.6.6.1 Frame Members of the Main Hoop Bracing Support system must be constructed of closed +section tubing meeting F.3.2.1.i +F.6.6.2 The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a +minimum of two Frame Members on each side of the vehicle: an upper member and a lower +member in a properly Triangulated configuration. +a. The upper support member must attach to the node where the upper Side Impact +Member attaches to the Main Hoop. +b. The lower support member must attach to the node where the lower Side Impact +Member attaches to the Main Hoop. +c. Each of the above members may be multiple or bent tubes provided the requirements of +F.5.2 are met. +d. Examples of acceptable configurations of members may be found in the SES. +F.7 MONOCOQUE +F.7.1 General Requirements +F.7.1.1 The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded +frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and +tension +F.7.1.2 Composite and metallic monocoques have the same requirements +F.7.1.3 Corners between panels used for structural equivalence must contain core +F.7.1.4 An inspection hole approximately 4mm in diameter must be drilled through a low stress +location of each monocoque section regulated by the Structural Equivalency Spreadsheet +This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b + +Formula SAE® Rules 2025 © 2024 SAE International Page 40 of 143 +Version 1.0 31 Aug 2024 +F.7.1.5 Composite monocoques must: +a. Meet the materials requirements in F.4 Composite and Other Materials +b. Use data from the laminate testing results as the basis for any strength or stiffness +calculations +F.7.2 Front Bulkhead +F.7.2.1 When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral +axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1 +F.7.2.2 The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm +measured from the rearmost face of the Front Bulkhead +F.7.2.3 Any Front Bulkhead which supports the IA plate must have a perimeter shear strength +equivalent to a 1.5 mm thick steel plate +F.7.3 Front Bulkhead Support +F.7.3.1 In addition to proving that the strength of the monocoque is sufficient, the monocoque must +have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces. +F.7.3.2 The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or +more than the EI of one steel tube that it replaces when calculated as per F.4.3 +F.7.3.3 The perimeter shear strength of the monocoque laminate in the Front Bulkhead support +structure must be 4 kN or more for a section with a diameter of 25 mm. +This must be proven by a physical test completed per F.4.2.5 and the results included in the +SES. +F.7.4 Front Hoop Attachment +F.7.4.1 The Front Hoop must be mechanically attached to the monocoque +a. Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c +b. The Front Hoop tube must be mechanically connected to the Mounting Plate with +Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop +tube along the two sides of the mounting plate +F.7.4.2 Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any +bends and nodes that are not at the top center of the Front Hoop +F.7.4.3 The Front Hoop may be fully laminated into the monocoque if: +a. The Front Hoop has core fit tightly around its entire circumference. Expanding foam is +not permitted +b. Equivalence to six or more mounts compliant with F.7.8 must show in the SES +c. A small gap in the laminate (approximately 25 mm) exists for inspection of the Front +Hoop F.5.7.7 +F.7.4.4 Adhesive must not be the sole method of attaching the Front Hoop to the monocoque + +Formula SAE® Rules 2025 © 2024 SAE International Page 41 of 143 +Version 1.0 31 Aug 2024 +F.7.5 Side Impact Structure +F.7.5.1 Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front +Hoop consisting of the combination of a vertical section minimum 290 mm in height from the +bottom surface of the floor of the monocoque and half the horizontal floor +F.7.5.2 The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it +replaces +F.7.5.3 The portion of the Side Impact Zone that is vertically between the upper surface of the floor +and 320 mm above the lowest point of the upper surface of the floor (see figure above) must +have: +a. Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3 +b. No openings in Side View between the Front Hoop and Main Hoop +F.7.5.4 Horizontal floor Equivalence must be calculated per F.4.3 +F.7.5.5 The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a +section with a diameter of 25 mm. +This must be proven by physical test completed per F.4.2.5 and the results included in the SES. +F.7.6 Main Hoop Attachment +F.7.6.1 The Main Hoop must be mechanically attached to the monocoque +a. Main Hoop mounting plates must be 2.0 mm minimum thickness steel +b. The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 +mm minimum thickness steel plates parallel to the two sides of the tube, with gussets +from the Main Hoop tube along the two sides of the mounting plate +F.7.6.2 Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and +nodes that are below the top of the monocoque +F.7.7 Roll Hoop Bracing Attachment +Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8. +F.7.8 Attachments +F.7.8.1 Each attachment point between the monocoque or composite panels and the other Primary +Structure must be able to carry a minimum load of 30 kN in any direction. +a. When a Roll Hoop attaches in three locations on each side, the attachments must be +located at the bottom, top, and a location near the midpoint + +Formula SAE® Rules 2025 © 2024 SAE International Page 42 of 143 +Version 1.0 31 Aug 2024 +b. When a Roll Hoop attaches at only the bottom and a point between the top and the +midpoint on each side, each of the four attachments must show load strength of 45 kN in +all directions +F.7.8.2 If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must +obey one of the two: +a. Parallel brackets attached to the two sides of the Main Hoop and the two sides of the +Side Impact Structure +b. Two mostly perpendicular brackets attached to the Main Hoop and the side and back of +the monocoque +F.7.8.3 The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, +bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. +Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient +shear area is provided. +F.7.8.4 Proof that the brackets are sufficiently stiff must be documented in the SES. +F.7.8.5 Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical +Fasteners, see T.8.2 +F.7.8.6 Each attachment point requires backing plates which meet one of: +• Steel with a minimum thickness of 2 mm +• Alternate materials if Equivalency is approved +F.7.8.7 The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only +one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 +above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in +bending, similar to the figure below. +F.7.8.8 Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the +two: +a. A solid insert that is fully enclosed by the inner and outer skin +b. Local elimination of any gap between inner and outer skin, with or without repeating +skin layups +F.7.9 Driver Harness Attachment +F.7.9.1 Required Loads +a. Each attachment point for the Shoulder Belts must support a minimum load of 15 kN +before failure with a required load of 30 kN distributed across the two belt attachments +b. Each attachment point for the Lap Belts must support a minimum load of 15 kN before +failure. + +Formula SAE® Rules 2025 © 2024 SAE International Page 43 of 143 +Version 1.0 31 Aug 2024 +c. Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 +kN before failure. +d. If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or +are attached to the same attachment point, then each mounting point must support a +minimum load of 30 kN before failure. +F.7.9.2 Load Testing +The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven +by physical tests where the required load is applied to a representative attachment point +where the proposed layup and attachment bracket are used. +a. Edges of the test fixture supporting the sample must be a minimum of 125 mm from the +load application point (load vector intersecting a plane) +b. Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 +degrees) to the plane of the test sample +c. Shoulder Belt Test Load application must meet: +Installed Shoulder Belt Angle: Test Load Application Angle must be: should be: Between 90° and 45° -Between 90° and the installed +Between 90° and the installed Shoulder Belt Angle -90° - - Between 45° and 0° -Between 90° and 45° 90° - -The angles are measured from the plane of the Test Sample (90° is normal to the Test -Sample and 0° is parallel to the Test Sample) -d. The Shoulder Harness test sample must not be any larger than the section of the -monocoque as built -e. The width of the Shoulder Harness test sample must not be any wider than the Shoulder -Harness "panel height" (see Structural Equivalency Spreadsheet) used to show -equivalency for the Shoulder Harness mounting bar -f. Designs with attachments near a free edge must not support the free edge during the -test -The intent is that the test specimen, to the best extent possible, represents the vehicle as -driven at competition. Teams are expected to test a panel that is manufactured in as close a -configuration to what is built in the vehicle as possible -F.8 FRONT CHASSIS PROTECTION -F.8.1 Requirements -F.8.1.1 Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion -Plate between the Impact Attenuator and the Front Bulkhead. -F.8.1.2 All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the -Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse -and vertical loads if off-axis impacts occur. -F.8.2 Anti Intrusion Plate - AIP -F.8.2.1 The Anti Intrusion Plate must be one of the three: -a. 1.5 mm minimum thickness solid steel -b. 4.0 mm minimum thickness solid aluminum plate - - -Formula SAE® Rules 2025 © 2024 SAE International Page 44 of 143 -Version 1.0 31 Aug 2024 -c. Composite material per F.8.3 -F.8.2.2 The outside profile requirement of the Anti Intrusion Plate depends on the method of -attachment to the Front Bulkhead: -a. Welded joints: the profile must align with or be more than the centerline of the Front -Bulkhead tubes on all sides -b. Bolted joints, bonding, laminating: the profile must align with or be more than the -outside dimensions of the Front Bulkhead around the entire periphery -F.8.2.3 Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in -the team’s SES submission. The accepted methods of attachment are: -a. Welding -• All weld lengths must be 25 mm or longer -• If interrupted, the weld/space ratio must be 1:1 or higher -b. Bolted joints -• Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. -• The distance between any two bolt centers must be 50 mm minimum. -• Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN -c. Bonding -• The Front Bulkhead must have no openings -• The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel -strength higher than 120 kN -d. Laminating -• The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead -• The lamination must fully enclose the Anti Intrusion Plate and have shear capability -higher than 120 kN -F.8.3 Composite Anti Intrusion Plate -F.8.3.1 Composite Anti Intrusion Plates: -a. Must not fail in a frontal impact -b. Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm -minimum Impact Attenuator area -F.8.3.2 Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods: -a. Physical testing of the AIP attached to a structurally representative section of the -intended chassis -• The test fixture must have equivalent strength and stiffness to a baseline front -bulkhead or must be the same as the first 50 mm of the Chassis -• Test data is valid for only one Competition Year -b. Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending -and perimeter shear - - -Formula SAE® Rules 2025 © 2024 SAE International Page 45 of 143 -Version 1.0 31 Aug 2024 -F.8.4 Impact Attenuator - IA -F.8.4.1 Teams must do one of: -• Use an approved Standard Impact Attenuator from the FSAE Online Website -• Build and test a Custom Impact Attenuator of their own design F.8.8 -F.8.4.2 The Custom Impact Attenuator must meet these: -a. Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis. -b. Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm -(parallel to the ground) for a minimum distance of 200 mm forward of the Front -Bulkhead. -c. Segmented foam attenuators must have all segments bonded together to prevent sliding -or parallelogramming. -d. Honeycomb attenuators made of multiple segments must have a continuous panel -between each segment. -F.8.4.3 If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses -the Standard Honeycomb Impact Attenuator, and then one of the two must be met: -a. The Front Bulkhead must include an additional support that is a diagonal or X-brace that -meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 -• The structure must go across the entire Front Bulkhead opening on the diagonal -• Attachment points at each end must carry a minimum load of 30 kN in any direction -b. Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion -Plate does not permanently deflect more than 25 mm. -F.8.5 Impact Attenuator Attachment -F.8.5.1 The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must -be documented in the SES submission -F.8.5.2 The Impact Attenuator must attach with an approved method: - Impact Attenuator Type Construction Attachment Method(s): - a. Standard or Custom Foam, Honeycomb Bonding - b. Custom other Bonding, Welding, Bolting - -F.8.5.3 If the Impact Attenuator is attached by bonding: -a. Bonding must meet F.5.5 -b. The shear strength of the bond must be higher than: -• 95 kN for foam Impact Attenuators -• 38.5 kN for honeycomb Impact Attenuators -• The maximum compressive force for custom Impact Attenuators -c. The entire surface of a foam Impact Attenuator must be bonded -d. Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond -equivalence -F.8.5.4 If the Impact Attenuator is attached by welding: -a. Welds may be continuous or interrupted -b. If interrupted, the weld/space ratio must be 1:1 or higher - - -Formula SAE® Rules 2025 © 2024 SAE International Page 46 of 143 -Version 1.0 31 Aug 2024 -c. All weld lengths must be more than 25 mm -F.8.5.5 If the Impact Attenuator is attached by bolting: -a. Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2 -b. The distance between any two bolt centers must be 50 mm minimum -c. Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN -d. Must be bolted directly to the Primary Structure -F.8.5.6 Impact Attenuator Position -a. All Impact Attenuators must mount with the bottom leading edge 150 mm or less above -the lowest point on the top of the Lower Side Impact Structure -b. A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 -mm or more wide that intersects a plane parallel to the ground that is 150 mm or less -above the lowest point on the top of the Lower Side Impact Structure -F.8.5.7 Impact Attenuator Orientation -a. The Impact Attenuator must be centered laterally on the Front Bulkhead -b. Standard Honeycomb must be mounted 200mm width x 100mm height -c. Standard Foam may be mounted laterally or vertically -F.8.6 Front Impact Objects -F.8.6.1 The only items allowed forward of the Anti Intrusion Plate in front view are the Impact -Attenuator, fastener heads, and light bodywork / nosecones -Fasteners should be oriented with the nuts rearwards -F.8.6.2 Front Wing and Bodywork Attachment -a. The front wing and front wing mounts must be able to move completely aft of the Anti -Intrusion Plate and not touch the front bulkhead during a frontal impact -b. The attachment points for the front wing and bodywork mounts should be aft of the Anti -Intrusion Plate -c. Tabs for wing and bodywork attachment must not extend more than 25 mm forward of -the Anti Intrusion Plate -F.8.6.3 Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the: -a. Rear face of the Anti Intrusion Plate -b. All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3 -c. All Non Crushable Items inside the Primary Structure -Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic -reservoirs -F.8.7 Front Impact Verification -F.8.7.1 The combination of the Impact Attenuator assembly and the force to crush or detach all other -items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in -F.8.8.2 -Ignore light bodywork, light nosecones, and outboard wheel assemblies - - -Formula SAE® Rules 2025 © 2024 SAE International Page 47 of 143 -Version 1.0 31 Aug 2024 -F.8.7.2 The peak load for the type of Impact Attenuator: -• Standard Foam Impact Attenuator 95 kN -• Standard Honeycomb Impact Attenuator 60 kN -• Tested Impact Attenuator peak as measured -F.8.7.3 Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement -F.8.7.4 Test Method -Get the peak force from physical testing of the Impact Attenuator and any Non Crushable -Object(s) as one of the two: -a. Tested together with the Impact Attenuator -b. Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2 -F.8.7.5 Calculation Method -a. Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener -shear, tearout, and/or link buckling -b. Add the peak attenuator load from F.8.7.2 -F.8.8 Impact Attenuator Data - IAD -F.8.8.1 All teams must include an Impact Attenuator Data (IAD) report as part of the SES. -F.8.8.2 Impact Attenuator Functional Requirements -These are not test requirements -a. Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak -b. Energy absorbed must be more than 7350 J -When: -• Total mass of Vehicle is 300 kg -• Impact velocity is 7.0 m/s -F.8.8.3 When using the Standard Impact Attenuator, the SES must meet these: -a. Test data will not be submitted -b. All other requirements of this section must be included. -c. Photos of the actual attenuator must be included -d. Evidence that the Standard IA meets the design criteria provided in the Standard Impact -Attenuator specification must be included with the SES. This may be a receipt or packing -slip from the supplier. -F.8.8.4 The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must -include: -a. Test data that proves that the Impact Attenuator Assembly meets the Functional -Requirements F.8.8.2 -b. Calculations showing how the reported absorbed energy and decelerations have been -derived. -c. A schematic of the test method. -d. Photos of the attenuator, annotated with the height of the attenuator before and after -testing. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 48 of 143 -Version 1.0 31 Aug 2024 -F.8.8.5 The Impact Attenuator Test is valid for only one Competition Year -F.8.8.6 Impact Attenuator Test Setup -a. During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using -the intended vehicle attachment method. -b. The Impact Attenuator Assembly must be attached to a structurally representative -section of the intended chassis. -The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. -A solid block of material in the shape of the front bulkhead is not “structurally -representative”. -c. There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the -test fixture. -d. No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond -the position of the Anti Intrusion Plate before the test. -The 25 mm spacing represents the front bulkhead support and insures that the plate does not -intrude excessively into the cockpit. -F.8.8.7 Test Conduct -a. Composite Impact Attenuators must be Dynamic Tested. -Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested -b. Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be -conducted at a dedicated test facility. This facility may be part of the University, but must -be supervised by professional staff or the University faculty. Teams must not construct -their own dynamic test apparatus. -c. Quasi-Static Testing may be done by teams using their University’s facilities/equipment, -but teams are advised to exercise due care -F.8.8.8 Test Analysis -a. When using acceleration data from the dynamic test, the average deceleration must be -calculated based on the raw unfiltered data. -b. If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 -(100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or -a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied. -F.9 FUEL SYSTEM (IC ONLY) -Fuel System Location and Protection are subject to approval during SES review and Technical -Inspection. -F.9.1 Location -F.9.1.1 These components must be inside the Primary Structure (F.1.10): -a. Any part of the Fuel System that is below the Upper Side Impact Structure -b. Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper -Side Impact Structure IC.1.2 -F.9.1.2 In side view, any portion of the Fuel System must not project below the lower surface of the -chassis - - -Formula SAE® Rules 2025 © 2024 SAE International Page 49 of 143 -Version 1.0 31 Aug 2024 -F.9.2 Protection -All Fuel Tanks must be shielded from side or rear impact -F.10 ACCUMULATOR CONTAINER (EV ONLY) -F.10.1 General Requirements -F.10.1.1 All Accumulator Containers must be: -a. Designed to withstand forces from deceleration in all directions -b. Made from a Nonflammable Material ( F.1.18 ) -F.10.1.2 Design of the Accumulator Container must be documented in the SES. -Documentation includes materials used, drawings/images, fastener locations, cell/segment -weight and cell/segment position. -F.10.1.3 The Accumulator Containers and mounting systems are subject to approval during SES review -and Technical Inspection -F.10.1.4 If the Accumulator Container is not constructed from steel or aluminum, the material -properties should be established at a temperature of 60°C -F.10.1.5 If adhesives are used for credited bonding, the bond properties should be established for a -temperature of 60°C -F.10.2 Structure -F.10.2.1 The Floor or Bottom must be made from one of the three: -a. Steel 1.25 mm minimum thickness -b. Aluminum 3.2 mm minimum thickness -c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) -F.10.2.2 Walls, Covers and Lids must be made from one of the three: -a. Steel 0.9 mm minimum thickness -b. Aluminum 2.3 mm minimum thickness -c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) -F.10.2.3 Internal Vertical Walls: -a. Must surround and separate each Accumulator Segment EV.5.1.2 -b. Must have minimum height of the full height of the Accumulator Segments -The Internal Walls should extend to the lid above any Segment -c. Must surround no more than 12 kg on each side -The intent is to have each Segment fully enclosed in its own six sided box -F.10.2.4 If segments are arranged vertically above other segments, each layer of segments must have a -load path to the Chassis attachments that does not pass through another layer of segments -F.10.2.5 Floors and all Wall sections must be joined on each side -The accepted methods of joining walls to walls and walls to floor are: -a. Welding -• Welds may be continuous or interrupted. -• If interrupted, the weld/space ratio must be 1:1 or higher - - -Formula SAE® Rules 2025 © 2024 SAE International Page 50 of 143 -Version 1.0 31 Aug 2024 -• All weld lengths must be more than 25 mm -b. Fasteners -Combined strength of the fasteners must be Equivalent to the strength of the welded -joint ( F.10.2.5.a above ) -c. Bonding -• Bonding must meet F.5.5 -• Strength of the bonded joint must be Equivalent to the strength of the welded joint -( F.10.2.5.a above ) -• Bonds must run the entire length of the joint -Folding or bending plate material to create flanges or to eliminate joints between walls is -recommended. -F.10.2.6 Covers and Lids must be mechanically attached and include Positive Locking Mechanisms -F.10.3 Cells and Segments -F.10.3.1 The structure of the Segments (without the structure of the Accumulator Container and -without the structure of the cells) must prevent cells from being crushed in any direction -under the following accelerations: -a. 40 g in the longitudinal direction (forward/aft) -b. 40 g in the lateral direction (left/right) -c. 20 g in the vertical direction (up/down) -F.10.3.2 Segments must be held by one of the two: -a. Mechanical Cover and Lid attachments must show equivalence to the strength of a -welded joint F.10.2.5.a -b. Mechanical Segment attachments to the container must show they can support the -acceleration loads F.10.3.1 above in the direction of removal -F.10.3.3 Calculations and/or tests proving these requirements are met must be included in the SES -F.10.4 Holes and Openings -F.10.4.1 The Accumulator Container(s) exterior or interior walls may contain holes or openings, see -EV.4.3.4 -F.10.4.2 Any Holes and Openings must be the minimum area necessary -F.10.4.3 Exterior and interior walls must cover a minimum of 75% of each face of the battery segments -F.10.4.4 Holes and Openings for airflow: -a. Must be round. Slots are prohibited -b. Should be maximum 10 mm diameter -c. Must not have line of sight to the driver, with the Firewall installed or removed -F.10.5 Attachment -F.10.5.1 Attachment of the Accumulator Container must be documented in the SES -F.10.5.2 Accumulator Containers must: -a. Attach to the Major Structure of the chassis - - -Formula SAE® Rules 2025 © 2024 SAE International Page 51 of 143 -Version 1.0 31 Aug 2024 -A maximum of two attachment points may be on a chassis tube between two -triangulated nodes. -b. Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing -F.10.5.3 Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2 -F.10.5.4 Each fastened attachment point to a composite Accumulator Container requires backing -plates that are one of the two: -a. Steel with a thickness of 2 mm minimum -b. Alternate materials Equivalent to 2 mm thickness steel -F.10.5.5 Teams must justify the Accumulator Container attachment using one of the two methods: -• Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 -• Load Based Analysis per F.10.5.7 and F.10.5.8 -F.10.5.6 Accumulator Attachment – Corner Attachments -a. Eight or more attachments are required for any configuration. -• One attachment for each corner of a rectangular structure of multiple Accumulator -Segments -• More than the minimum number of fasteners may be required for non rectangular -arrangements -Examples: If not filled in with additional structure, an extruded L shape would require -attachments at 10 convex corners (the corners at the inside of the L are not convex); -an extruded hexagon would require 12 attachments -b. The mechanical connections at each corner must be 50 mm or less from the corner of -the Segment -c. Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass -of the container accelerating at 40 g -F.10.5.7 Accumulator Attachment – Load Based -a. The minimum number of attachment points depends on the total mass of the container: - Accumulator Weight Minimum Attachment Points - < 20 kg 4 - 20 – 30 kg 6 - 30 – 40 kg 8 - > 40 kg 10 -b. Each attachment point, including any brackets, backing plates and inserts, must be able -to withstand 15 kN minimum in any direction -F.10.5.8 Accumulator Attachment – All Types -a. Each fastener must withstand the Test Load in pure shear, using the minor diameter if -any threads are in shear -b. Each Accumulator bracket, chassis bracket, or monocoque attachment point must -withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if -welded, and pure bond shear and pure bond tensile if bonded. -c. Monocoque attachment points must meet F.7.8.8 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 52 of 143 -Version 1.0 31 Aug 2024 -d. Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment -points -F.11 TRACTIVE SYSTEM (EV ONLY) -Tractive System Location and Protection are subject to approval during SES review and -Technical Inspection. -F.11.1 Location -F.11.1.1 All Accumulator Containers must lie inside the Primary Structure (F.1.10). -F.11.1.2 Motors mounted to a suspension upright and their connections must meet EV.4.1.3 -F.11.1.3 Tractive System (EV.1.1) components including Motors, cables and wiring other than those in -F.11.1.2 above must be contained inside one or two of: -• The Rollover Protection Envelope F.1.13 -• Structure meeting F.5.16 Component Protection -F.11.2 Side Impact Protection -F.11.2.1 All Accumulator Containers must be protected from side impact by structure Equivalent to -Side Impact Structure (F.6.4, F.7.5) -F.11.2.2 The Accumulator Container must not be part of the Equivalent structure. -F.11.2.3 Accumulator Container side impact protection must go to a minimum height that is the lower -of the two: -• The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 -• The top of the Accumulator Container at that point -F.11.2.4 Tractive System components other than Accumulator Containers in a position below 350 mm -from the ground must be protected from side impact by structure that meets F.5.16 -Component Protection -F.11.3 Rear Impact Protection -F.11.3.1 All Tractive System components must be protected from rear impact by a Rear Bulkhead -a. When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure -must be Equivalent to Side Impact Structure (F.6.4, F.7.5) -b. When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the -structure must meet F.5.16 Component Protection -c. The Accumulator Container must not be part of the Equivalent structure -F.11.3.2 The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side -Impact Structure F.6.4.4 / F.7.5.1 -F.11.3.3 The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead -F.11.3.4 The Rear Bulkhead Support must have: -a. A structural and triangulated load path from the top of the Rear Impact Protection to the -Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop -b. A structural and triangulated load path from the bottom of the Rear Impact Protection to -the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop - - -Formula SAE® Rules 2025 © 2024 SAE International Page 53 of 143 -Version 1.0 31 Aug 2024 -F.11.3.5 In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal -structure or X brace that meets F.11.3.1 above -a. Differential mounts, two vertical tubes with similar spacing, a metal plate, or an -Equivalent composite panel may replace a diagonal -If used, the mounts, plate, or panel must: -• Be aft of the upper and lower Rear Bulkhead structures -• Overlap at least 25 mm vertically at the top and the bottom -b. A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. -If used, the plate must: -• Fully overlap the Rear Bulkhead Support F.11.3.3 above -• Attach by one of the two, as determined by the SES: -- Fully laminated to the Rear Bulkhead or Rear Bulkhead Support -- Attachment strength greater than 120 kN -F.11.4 Clearance and Non Crushable Items -F.11.4.1 Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself -Accumulator mounts do not require clearance -F.11.4.2 The Accumulator Container should have a minimum 25 mm total clearance to each of the -front, side, and rear impact structures -The clearance may be put together on either side of any Non Crushable items around the -accumulator -F.11.4.3 Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through -the Rear Bulkhead - - -Formula SAE® Rules 2025 © 2024 SAE International Page 54 of 143 -Version 1.0 31 Aug 2024 -T - TECHNICAL ASPECTS -T.1 COCKPIT -T.1.1 Cockpit Opening -T.1.1.1 The template shown below must pass through the cockpit opening - -T.1.1.2 The template will be held horizontally, parallel to the ground, and inserted vertically from a -height above any Primary Structure or bodywork that is between the Front Hoop and the -Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 ) -a. Has passed 25 mm below the lowest point of the top of the Side Impact Structure -b. Is less than or equal to 320 mm above the lowest point inside the cockpit -T.1.1.3 Fore and aft translation of the template is permitted during insertion. -T.1.1.4 During this test: -a. The steering wheel, steering column, seat and all padding may be removed -b. The shifter, shift mechanism, or clutch mechanism must not be removed unless it is -integral with the steering wheel and is removed with the steering wheel -c. The firewall must not be moved or removed -d. Cables, wires, hoses, tubes, etc. must not block movement of the template -During inspection, the steering column, for practical purposes, will not be removed. The -template may be maneuvered around the steering column, but not any fixed supports. -For ease of use, the template may contain a slot at the front center that the steering column -may pass through. - - - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 55 of 143 -Version 1.0 31 Aug 2024 -T.1.2 Internal Cross Section -T.1.2.1 Requirement: -a. The cockpit must have a free internal cross section -b. The template shown below must pass through the cockpit - -Template maximum thickness: 7 mm -T.1.2.2 Conduct of the test. The template: -a. Will be held vertically and inserted into the cockpit opening rearward of the rearmost -portion of the steering column. -b. Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the -face of the rearmost pedal when in the inoperative position -c. May be moved vertically inside the cockpit -T.1.2.3 During this test: -a. If the pedals are adjustable, they must be in their most forward position. -b. The steering wheel may be removed -c. Padding may be removed if it can be easily removed without the use of tools with the -driver in the seat -d. The seat and any seat insert(s) that may be used must stay in the cockpit -e. Cables, wires, hoses, tubes, etc. must not block movement of the template -f. The steering column and associated components may pass through the 50 mm wide -center band of the template. -For ease of use, the template may contain a full or partial slot in the shaded area shown on the -figure -T.1.3 Driver Protection -T.1.3.1 The driver’s feet and legs must be completely contained inside the Major Structure of the -Chassis. - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 56 of 143 -Version 1.0 31 Aug 2024 -T.1.3.2 While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s -feet or legs must not extend above or outside of the Major Structure of the Chassis. -T.1.3.3 All moving suspension and steering components and other sharp edges inside the cockpit -between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered -by a shield made of a solid material. +90° +Between 45° and 0° +Between 90° and 45° 90° +The angles are measured from the plane of the Test Sample (90° is normal to the Test +Sample and 0° is parallel to the Test Sample) +d. The Shoulder Harness test sample must not be any larger than the section of the +monocoque as built +e. The width of the Shoulder Harness test sample must not be any wider than the Shoulder +Harness "panel height" (see Structural Equivalency Spreadsheet) used to show +equivalency for the Shoulder Harness mounting bar +f. Designs with attachments near a free edge must not support the free edge during the +test +The intent is that the test specimen, to the best extent possible, represents the vehicle as +driven at competition. Teams are expected to test a panel that is manufactured in as close a +configuration to what is built in the vehicle as possible +F.8 FRONT CHASSIS PROTECTION +F.8.1 Requirements +F.8.1.1 Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion +Plate between the Impact Attenuator and the Front Bulkhead. +F.8.1.2 All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the +Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse +and vertical loads if off-axis impacts occur. +F.8.2 Anti Intrusion Plate - AIP +F.8.2.1 The Anti Intrusion Plate must be one of the three: +a. 1.5 mm minimum thickness solid steel +b. 4.0 mm minimum thickness solid aluminum plate + +Formula SAE® Rules 2025 © 2024 SAE International Page 44 of 143 +Version 1.0 31 Aug 2024 +c. Composite material per F.8.3 +F.8.2.2 The outside profile requirement of the Anti Intrusion Plate depends on the method of +attachment to the Front Bulkhead: +a. Welded joints: the profile must align with or be more than the centerline of the Front +Bulkhead tubes on all sides +b. Bolted joints, bonding, laminating: the profile must align with or be more than the +outside dimensions of the Front Bulkhead around the entire periphery +F.8.2.3 Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in +the team’s SES submission. The accepted methods of attachment are: +a. Welding +• All weld lengths must be 25 mm or longer +• If interrupted, the weld/space ratio must be 1:1 or higher +b. Bolted joints +• Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. +• The distance between any two bolt centers must be 50 mm minimum. +• Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN +c. Bonding +• The Front Bulkhead must have no openings +• The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel +strength higher than 120 kN +d. Laminating +• The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead +• The lamination must fully enclose the Anti Intrusion Plate and have shear capability +higher than 120 kN +F.8.3 Composite Anti Intrusion Plate +F.8.3.1 Composite Anti Intrusion Plates: +a. Must not fail in a frontal impact +b. Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm +minimum Impact Attenuator area +F.8.3.2 Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods: +a. Physical testing of the AIP attached to a structurally representative section of the +intended chassis +• The test fixture must have equivalent strength and stiffness to a baseline front +bulkhead or must be the same as the first 50 mm of the Chassis +• Test data is valid for only one Competition Year +b. Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending +and perimeter shear + +Formula SAE® Rules 2025 © 2024 SAE International Page 45 of 143 +Version 1.0 31 Aug 2024 +F.8.4 Impact Attenuator - IA +F.8.4.1 Teams must do one of: +• Use an approved Standard Impact Attenuator from the FSAE Online Website +• Build and test a Custom Impact Attenuator of their own design F.8.8 +F.8.4.2 The Custom Impact Attenuator must meet these: +a. Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis. +b. Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm +(parallel to the ground) for a minimum distance of 200 mm forward of the Front +Bulkhead. +c. Segmented foam attenuators must have all segments bonded together to prevent sliding +or parallelogramming. +d. Honeycomb attenuators made of multiple segments must have a continuous panel +between each segment. +F.8.4.3 If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses +the Standard Honeycomb Impact Attenuator, and then one of the two must be met: +a. The Front Bulkhead must include an additional support that is a diagonal or X-brace that +meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 +• The structure must go across the entire Front Bulkhead opening on the diagonal +• Attachment points at each end must carry a minimum load of 30 kN in any direction +b. Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion +Plate does not permanently deflect more than 25 mm. +F.8.5 Impact Attenuator Attachment +F.8.5.1 The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must +be documented in the SES submission +F.8.5.2 The Impact Attenuator must attach with an approved method: +Impact Attenuator Type Construction Attachment Method(s): +a. Standard or Custom Foam, Honeycomb Bonding +b. Custom other Bonding, Welding, Bolting +F.8.5.3 If the Impact Attenuator is attached by bonding: +a. Bonding must meet F.5.5 +b. The shear strength of the bond must be higher than: +• 95 kN for foam Impact Attenuators +• 38.5 kN for honeycomb Impact Attenuators +• The maximum compressive force for custom Impact Attenuators +c. The entire surface of a foam Impact Attenuator must be bonded +d. Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond +equivalence +F.8.5.4 If the Impact Attenuator is attached by welding: +a. Welds may be continuous or interrupted +b. If interrupted, the weld/space ratio must be 1:1 or higher + +Formula SAE® Rules 2025 © 2024 SAE International Page 46 of 143 +Version 1.0 31 Aug 2024 +c. All weld lengths must be more than 25 mm +F.8.5.5 If the Impact Attenuator is attached by bolting: +a. Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2 +b. The distance between any two bolt centers must be 50 mm minimum +c. Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN +d. Must be bolted directly to the Primary Structure +F.8.5.6 Impact Attenuator Position +a. All Impact Attenuators must mount with the bottom leading edge 150 mm or less above +the lowest point on the top of the Lower Side Impact Structure +b. A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 +mm or more wide that intersects a plane parallel to the ground that is 150 mm or less +above the lowest point on the top of the Lower Side Impact Structure +F.8.5.7 Impact Attenuator Orientation +a. The Impact Attenuator must be centered laterally on the Front Bulkhead +b. Standard Honeycomb must be mounted 200mm width x 100mm height +c. Standard Foam may be mounted laterally or vertically +F.8.6 Front Impact Objects +F.8.6.1 The only items allowed forward of the Anti Intrusion Plate in front view are the Impact +Attenuator, fastener heads, and light bodywork / nosecones +Fasteners should be oriented with the nuts rearwards +F.8.6.2 Front Wing and Bodywork Attachment +a. The front wing and front wing mounts must be able to move completely aft of the Anti +Intrusion Plate and not touch the front bulkhead during a frontal impact +b. The attachment points for the front wing and bodywork mounts should be aft of the Anti +Intrusion Plate +c. Tabs for wing and bodywork attachment must not extend more than 25 mm forward of +the Anti Intrusion Plate +F.8.6.3 Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the: +a. Rear face of the Anti Intrusion Plate +b. All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3 +c. All Non Crushable Items inside the Primary Structure +Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic +reservoirs +F.8.7 Front Impact Verification +F.8.7.1 The combination of the Impact Attenuator assembly and the force to crush or detach all other +items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in +F.8.8.2 +Ignore light bodywork, light nosecones, and outboard wheel assemblies + +Formula SAE® Rules 2025 © 2024 SAE International Page 47 of 143 +Version 1.0 31 Aug 2024 +F.8.7.2 The peak load for the type of Impact Attenuator: +• Standard Foam Impact Attenuator 95 kN +• Standard Honeycomb Impact Attenuator 60 kN +• Tested Impact Attenuator peak as measured +F.8.7.3 Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement +F.8.7.4 Test Method +Get the peak force from physical testing of the Impact Attenuator and any Non Crushable +Object(s) as one of the two: +a. Tested together with the Impact Attenuator +b. Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2 +F.8.7.5 Calculation Method +a. Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener +shear, tearout, and/or link buckling +b. Add the peak attenuator load from F.8.7.2 +F.8.8 Impact Attenuator Data - IAD +F.8.8.1 All teams must include an Impact Attenuator Data (IAD) report as part of the SES. +F.8.8.2 Impact Attenuator Functional Requirements +These are not test requirements +a. Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak +b. Energy absorbed must be more than 7350 J +When: +• Total mass of Vehicle is 300 kg +• Impact velocity is 7.0 m/s +F.8.8.3 When using the Standard Impact Attenuator, the SES must meet these: +a. Test data will not be submitted +b. All other requirements of this section must be included. +c. Photos of the actual attenuator must be included +d. Evidence that the Standard IA meets the design criteria provided in the Standard Impact +Attenuator specification must be included with the SES. This may be a receipt or packing +slip from the supplier. +F.8.8.4 The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must +include: +a. Test data that proves that the Impact Attenuator Assembly meets the Functional +Requirements F.8.8.2 +b. Calculations showing how the reported absorbed energy and decelerations have been +derived. +c. A schematic of the test method. +d. Photos of the attenuator, annotated with the height of the attenuator before and after +testing. + +Formula SAE® Rules 2025 © 2024 SAE International Page 48 of 143 +Version 1.0 31 Aug 2024 +F.8.8.5 The Impact Attenuator Test is valid for only one Competition Year +F.8.8.6 Impact Attenuator Test Setup +a. During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using +the intended vehicle attachment method. +b. The Impact Attenuator Assembly must be attached to a structurally representative +section of the intended chassis. +The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. +A solid block of material in the shape of the front bulkhead is not “structurally +representative”. +c. There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the +test fixture. +d. No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond +the position of the Anti Intrusion Plate before the test. +The 25 mm spacing represents the front bulkhead support and insures that the plate does not +intrude excessively into the cockpit. +F.8.8.7 Test Conduct +a. Composite Impact Attenuators must be Dynamic Tested. +Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested +b. Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be +conducted at a dedicated test facility. This facility may be part of the University, but must +be supervised by professional staff or the University faculty. Teams must not construct +their own dynamic test apparatus. +c. Quasi-Static Testing may be done by teams using their University’s facilities/equipment, +but teams are advised to exercise due care +F.8.8.8 Test Analysis +a. When using acceleration data from the dynamic test, the average deceleration must be +calculated based on the raw unfiltered data. +b. If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 +(100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or +a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied. +F.9 FUEL SYSTEM (IC ONLY) +Fuel System Location and Protection are subject to approval during SES review and Technical +Inspection. +F.9.1 Location +F.9.1.1 These components must be inside the Primary Structure (F.1.10): +a. Any part of the Fuel System that is below the Upper Side Impact Structure +b. Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper +Side Impact Structure IC.1.2 +F.9.1.2 In side view, any portion of the Fuel System must not project below the lower surface of the +chassis + +Formula SAE® Rules 2025 © 2024 SAE International Page 49 of 143 +Version 1.0 31 Aug 2024 +F.9.2 Protection +All Fuel Tanks must be shielded from side or rear impact +F.10 ACCUMULATOR CONTAINER (EV ONLY) +F.10.1 General Requirements +F.10.1.1 All Accumulator Containers must be: +a. Designed to withstand forces from deceleration in all directions +b. Made from a Nonflammable Material ( F.1.18 ) +F.10.1.2 Design of the Accumulator Container must be documented in the SES. +Documentation includes materials used, drawings/images, fastener locations, cell/segment +weight and cell/segment position. +F.10.1.3 The Accumulator Containers and mounting systems are subject to approval during SES review +and Technical Inspection +F.10.1.4 If the Accumulator Container is not constructed from steel or aluminum, the material +properties should be established at a temperature of 60°C +F.10.1.5 If adhesives are used for credited bonding, the bond properties should be established for a +temperature of 60°C +F.10.2 Structure +F.10.2.1 The Floor or Bottom must be made from one of the three: +a. Steel 1.25 mm minimum thickness +b. Aluminum 3.2 mm minimum thickness +c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) +F.10.2.2 Walls, Covers and Lids must be made from one of the three: +a. Steel 0.9 mm minimum thickness +b. Aluminum 2.3 mm minimum thickness +c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) +F.10.2.3 Internal Vertical Walls: +a. Must surround and separate each Accumulator Segment EV.5.1.2 +b. Must have minimum height of the full height of the Accumulator Segments +The Internal Walls should extend to the lid above any Segment +c. Must surround no more than 12 kg on each side +The intent is to have each Segment fully enclosed in its own six sided box +F.10.2.4 If segments are arranged vertically above other segments, each layer of segments must have a +load path to the Chassis attachments that does not pass through another layer of segments +F.10.2.5 Floors and all Wall sections must be joined on each side +The accepted methods of joining walls to walls and walls to floor are: +a. Welding +• Welds may be continuous or interrupted. +• If interrupted, the weld/space ratio must be 1:1 or higher + +Formula SAE® Rules 2025 © 2024 SAE International Page 50 of 143 +Version 1.0 31 Aug 2024 +• All weld lengths must be more than 25 mm +b. Fasteners +Combined strength of the fasteners must be Equivalent to the strength of the welded +joint ( F.10.2.5.a above ) +c. Bonding +• Bonding must meet F.5.5 +• Strength of the bonded joint must be Equivalent to the strength of the welded joint +( F.10.2.5.a above ) +• Bonds must run the entire length of the joint +Folding or bending plate material to create flanges or to eliminate joints between walls is +recommended. +F.10.2.6 Covers and Lids must be mechanically attached and include Positive Locking Mechanisms +F.10.3 Cells and Segments +F.10.3.1 The structure of the Segments (without the structure of the Accumulator Container and +without the structure of the cells) must prevent cells from being crushed in any direction +under the following accelerations: +a. 40 g in the longitudinal direction (forward/aft) +b. 40 g in the lateral direction (left/right) +c. 20 g in the vertical direction (up/down) +F.10.3.2 Segments must be held by one of the two: +a. Mechanical Cover and Lid attachments must show equivalence to the strength of a +welded joint F.10.2.5.a +b. Mechanical Segment attachments to the container must show they can support the +acceleration loads F.10.3.1 above in the direction of removal +F.10.3.3 Calculations and/or tests proving these requirements are met must be included in the SES +F.10.4 Holes and Openings +F.10.4.1 The Accumulator Container(s) exterior or interior walls may contain holes or openings, see +EV.4.3.4 +F.10.4.2 Any Holes and Openings must be the minimum area necessary +F.10.4.3 Exterior and interior walls must cover a minimum of 75% of each face of the battery segments +F.10.4.4 Holes and Openings for airflow: +a. Must be round. Slots are prohibited +b. Should be maximum 10 mm diameter +c. Must not have line of sight to the driver, with the Firewall installed or removed +F.10.5 Attachment +F.10.5.1 Attachment of the Accumulator Container must be documented in the SES +F.10.5.2 Accumulator Containers must: +a. Attach to the Major Structure of the chassis + +Formula SAE® Rules 2025 © 2024 SAE International Page 51 of 143 +Version 1.0 31 Aug 2024 +A maximum of two attachment points may be on a chassis tube between two +triangulated nodes. +b. Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing +F.10.5.3 Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2 +F.10.5.4 Each fastened attachment point to a composite Accumulator Container requires backing +plates that are one of the two: +a. Steel with a thickness of 2 mm minimum +b. Alternate materials Equivalent to 2 mm thickness steel +F.10.5.5 Teams must justify the Accumulator Container attachment using one of the two methods: +• Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 +• Load Based Analysis per F.10.5.7 and F.10.5.8 +F.10.5.6 Accumulator Attachment – Corner Attachments +a. Eight or more attachments are required for any configuration. +• One attachment for each corner of a rectangular structure of multiple Accumulator +Segments +• More than the minimum number of fasteners may be required for non rectangular +arrangements +Examples: If not filled in with additional structure, an extruded L shape would require +attachments at 10 convex corners (the corners at the inside of the L are not convex); +an extruded hexagon would require 12 attachments +b. The mechanical connections at each corner must be 50 mm or less from the corner of +the Segment +c. Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass +of the container accelerating at 40 g +F.10.5.7 Accumulator Attachment – Load Based +a. The minimum number of attachment points depends on the total mass of the container: +Accumulator Weight Minimum Attachment Points +< 20 kg 4 +20 – 30 kg 6 +30 – 40 kg 8 +> 40 kg 10 +b. Each attachment point, including any brackets, backing plates and inserts, must be able +to withstand 15 kN minimum in any direction +F.10.5.8 Accumulator Attachment – All Types +a. Each fastener must withstand the Test Load in pure shear, using the minor diameter if +any threads are in shear +b. Each Accumulator bracket, chassis bracket, or monocoque attachment point must +withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if +welded, and pure bond shear and pure bond tensile if bonded. +c. Monocoque attachment points must meet F.7.8.8 + +Formula SAE® Rules 2025 © 2024 SAE International Page 52 of 143 +Version 1.0 31 Aug 2024 +d. Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment +points +F.11 TRACTIVE SYSTEM (EV ONLY) +Tractive System Location and Protection are subject to approval during SES review and +Technical Inspection. +F.11.1 Location +F.11.1.1 All Accumulator Containers must lie inside the Primary Structure (F.1.10). +F.11.1.2 Motors mounted to a suspension upright and their connections must meet EV.4.1.3 +F.11.1.3 Tractive System (EV.1.1) components including Motors, cables and wiring other than those in +F.11.1.2 above must be contained inside one or two of: +• The Rollover Protection Envelope F.1.13 +• Structure meeting F.5.16 Component Protection +F.11.2 Side Impact Protection +F.11.2.1 All Accumulator Containers must be protected from side impact by structure Equivalent to +Side Impact Structure (F.6.4, F.7.5) +F.11.2.2 The Accumulator Container must not be part of the Equivalent structure. +F.11.2.3 Accumulator Container side impact protection must go to a minimum height that is the lower +of the two: +• The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 +• The top of the Accumulator Container at that point +F.11.2.4 Tractive System components other than Accumulator Containers in a position below 350 mm +from the ground must be protected from side impact by structure that meets F.5.16 +Component Protection +F.11.3 Rear Impact Protection +F.11.3.1 All Tractive System components must be protected from rear impact by a Rear Bulkhead +a. When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure +must be Equivalent to Side Impact Structure (F.6.4, F.7.5) +b. When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the +structure must meet F.5.16 Component Protection +c. The Accumulator Container must not be part of the Equivalent structure +F.11.3.2 The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side +Impact Structure F.6.4.4 / F.7.5.1 +F.11.3.3 The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead +F.11.3.4 The Rear Bulkhead Support must have: +a. A structural and triangulated load path from the top of the Rear Impact Protection to the +Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop +b. A structural and triangulated load path from the bottom of the Rear Impact Protection to +the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop + +Formula SAE® Rules 2025 © 2024 SAE International Page 53 of 143 +Version 1.0 31 Aug 2024 +F.11.3.5 In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal +structure or X brace that meets F.11.3.1 above +a. Differential mounts, two vertical tubes with similar spacing, a metal plate, or an +Equivalent composite panel may replace a diagonal +If used, the mounts, plate, or panel must: +• Be aft of the upper and lower Rear Bulkhead structures +• Overlap at least 25 mm vertically at the top and the bottom +b. A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. +If used, the plate must: +• Fully overlap the Rear Bulkhead Support F.11.3.3 above +• Attach by one of the two, as determined by the SES: +- Fully laminated to the Rear Bulkhead or Rear Bulkhead Support +- Attachment strength greater than 120 kN +F.11.4 Clearance and Non Crushable Items +F.11.4.1 Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself +Accumulator mounts do not require clearance +F.11.4.2 The Accumulator Container should have a minimum 25 mm total clearance to each of the +front, side, and rear impact structures +The clearance may be put together on either side of any Non Crushable items around the +accumulator +F.11.4.3 Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through +the Rear Bulkhead + +Formula SAE® Rules 2025 © 2024 SAE International Page 54 of 143 +Version 1.0 31 Aug 2024 +T - TECHNICAL ASPECTS +T.1 COCKPIT +T.1.1 Cockpit Opening +T.1.1.1 The template shown below must pass through the cockpit opening +T.1.1.2 The template will be held horizontally, parallel to the ground, and inserted vertically from a +height above any Primary Structure or bodywork that is between the Front Hoop and the +Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 ) +a. Has passed 25 mm below the lowest point of the top of the Side Impact Structure +b. Is less than or equal to 320 mm above the lowest point inside the cockpit +T.1.1.3 Fore and aft translation of the template is permitted during insertion. +T.1.1.4 During this test: +a. The steering wheel, steering column, seat and all padding may be removed +b. The shifter, shift mechanism, or clutch mechanism must not be removed unless it is +integral with the steering wheel and is removed with the steering wheel +c. The firewall must not be moved or removed +d. Cables, wires, hoses, tubes, etc. must not block movement of the template +During inspection, the steering column, for practical purposes, will not be removed. The +template may be maneuvered around the steering column, but not any fixed supports. +For ease of use, the template may contain a slot at the front center that the steering column +may pass through. + +Formula SAE® Rules 2025 © 2024 SAE International Page 55 of 143 +Version 1.0 31 Aug 2024 +T.1.2 Internal Cross Section +T.1.2.1 Requirement: +a. The cockpit must have a free internal cross section +b. The template shown below must pass through the cockpit +Template maximum thickness: 7 mm +T.1.2.2 Conduct of the test. The template: +a. Will be held vertically and inserted into the cockpit opening rearward of the rearmost +portion of the steering column. +b. Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the +face of the rearmost pedal when in the inoperative position +c. May be moved vertically inside the cockpit +T.1.2.3 During this test: +a. If the pedals are adjustable, they must be in their most forward position. +b. The steering wheel may be removed +c. Padding may be removed if it can be easily removed without the use of tools with the +driver in the seat +d. The seat and any seat insert(s) that may be used must stay in the cockpit +e. Cables, wires, hoses, tubes, etc. must not block movement of the template +f. The steering column and associated components may pass through the 50 mm wide +center band of the template. +For ease of use, the template may contain a full or partial slot in the shaded area shown on the +figure +T.1.3 Driver Protection +T.1.3.1 The driver’s feet and legs must be completely contained inside the Major Structure of the +Chassis. + +Formula SAE® Rules 2025 © 2024 SAE International Page 56 of 143 +Version 1.0 31 Aug 2024 +T.1.3.2 While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s +feet or legs must not extend above or outside of the Major Structure of the Chassis. +T.1.3.3 All moving suspension and steering components and other sharp edges inside the cockpit +between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered +by a shield made of a solid material. Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti- -roll/sway bars, steering racks and steering column CV joints. -T.1.3.4 Covers over suspension and steering components must be removable to allow inspection of -the mounting points -T.1.4 Vehicle Controls -T.1.4.1 Accelerator Pedal -a. An Accelerator Pedal must control the Powertrain output -b. Pedal Travel is the percent of travel from a fully released position to a fully applied -position. 0% is fully released and 100% is fully applied. -c. The Accelerator Pedal must: -• Return to 0% Pedal Travel when not pushed -• Have a positive stop to prevent any cable, actuation system or sensor from damage -or overstress -T.1.4.2 Any mechanism in the throttle system that could become jammed must be covered. -This is to prevent debris or interference and includes but is not limited to a gear mechanism -T.1.4.3 All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) -must be operated from inside the cockpit without any part of the driver, including hands, arms -or elbows, being outside of: -a. The Side Impact Structure defined in F.6.4 / F.7.5 -b. Two longitudinal vertical planes parallel to the centerline of the chassis touching the -uppermost member of the Side Impact Structure -T.1.4.4 All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational -position -T.1.5 Driver’s Seat -T.1.5.1 The Driver’s Seat must be protected by one of the two: -a. In side view, the lowest point of any Driver’s Seat must be no lower than the upper -surface of the lowest structural tube or equivalent -b. A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing -(F.3.2.1.e), passing underneath the lowest point of the Driver Seat. -T.1.6 Thermal Protection -T.1.6.1 When seated in the normal driving position, sufficient heat insulation must be provided to -make sure that the driver will not contact any metal or other materials which may become -heated to a surface temperature above 60°C. -T.1.6.2 Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 57 of 143 -Version 1.0 31 Aug 2024 -T.1.6.3 The design must address all three types of heat transfer between the heat source (examples -include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a -place that the driver could contact (including seat or floor): -a. Conduction Isolation by one of the two: -• No direct contact between the heat source and the panel -• A heat resistant, conduction isolation material with a minimum thickness of 8 mm -between the heat source and the panel -b. Convection Isolation by a minimum air gap of 25 mm between the heat source and the -panel -c. Radiation Isolation by one of the two: -• A solid metal heat shield with a minimum thickness of 0.4 mm -• Reflective foil or tape when combined with conduction insulation -T.1.7 Floor Closeout -T.1.7.1 All vehicles must have a Floor Closeout to prevent track debris from entering -T.1.7.2 The Floor Closeout must extend from the foot area to the firewall -T.1.7.3 The panel(s) must be made of a solid, non brittle material -T.1.7.4 If multiple panels are used, gaps between panels must not exceed 3 mm -T.1.8 Firewall -T.1.8.1 A Firewall(s) must separate the driver compartment and any portion of the Driver Harness -from: -a. All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium -batteries -b. (EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 -and cable to those Motors where mounted at the wheels or on the front control arms -T.1.8.2 The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where -any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest -driver must not be in direct line of sight with any part given in T.1.8.1 above -T.1.8.3 Any Firewall must be: -a. A non permeable surface made from a rigid, Nonflammable Material -b. Mounted tightly -T.1.8.4 (EV only) The Firewall or the part of the Firewall on the Tractive System side must be: -a. Made of aluminum. The Firewall layer itself must not be aluminum tape. -b. Grounded, refer to EV.6.7 Grounding -T.1.8.5 (EV only) The Accumulator Container must not be part of the Firewall -T.1.8.6 Sealing -a. Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, -edges, any pass throughs and Floor Closeout) -b. Firewalls that have multiple panels must overlap and be sealed at the joints -c. Sealing between Firewalls must not be a stressed part of the Firewall -d. Grommets must be used to seal any pass through for wiring, cables, etc - - -Formula SAE® Rules 2025 © 2024 SAE International Page 58 of 143 -Version 1.0 31 Aug 2024 -e. Any seals or adhesives used with the Firewall must be rated for the application -environment -T.2 DRIVER ACCOMMODATION -T.2.1 Harness Definitions -a. 5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine -Belt. +roll/sway bars, steering racks and steering column CV joints. +T.1.3.4 Covers over suspension and steering components must be removable to allow inspection of +the mounting points +T.1.4 Vehicle Controls +T.1.4.1 Accelerator Pedal +a. An Accelerator Pedal must control the Powertrain output +b. Pedal Travel is the percent of travel from a fully released position to a fully applied +position. 0% is fully released and 100% is fully applied. +c. The Accelerator Pedal must: +• Return to 0% Pedal Travel when not pushed +• Have a positive stop to prevent any cable, actuation system or sensor from damage +or overstress +T.1.4.2 Any mechanism in the throttle system that could become jammed must be covered. +This is to prevent debris or interference and includes but is not limited to a gear mechanism +T.1.4.3 All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) +must be operated from inside the cockpit without any part of the driver, including hands, arms +or elbows, being outside of: +a. The Side Impact Structure defined in F.6.4 / F.7.5 +b. Two longitudinal vertical planes parallel to the centerline of the chassis touching the +uppermost member of the Side Impact Structure +T.1.4.4 All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational +position +T.1.5 Driver’s Seat +T.1.5.1 The Driver’s Seat must be protected by one of the two: +a. In side view, the lowest point of any Driver’s Seat must be no lower than the upper +surface of the lowest structural tube or equivalent +b. A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing +(F.3.2.1.e), passing underneath the lowest point of the Driver Seat. +T.1.6 Thermal Protection +T.1.6.1 When seated in the normal driving position, sufficient heat insulation must be provided to +make sure that the driver will not contact any metal or other materials which may become +heated to a surface temperature above 60°C. +T.1.6.2 Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. + +Formula SAE® Rules 2025 © 2024 SAE International Page 57 of 143 +Version 1.0 31 Aug 2024 +T.1.6.3 The design must address all three types of heat transfer between the heat source (examples +include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a +place that the driver could contact (including seat or floor): +a. Conduction Isolation by one of the two: +• No direct contact between the heat source and the panel +• A heat resistant, conduction isolation material with a minimum thickness of 8 mm +between the heat source and the panel +b. Convection Isolation by a minimum air gap of 25 mm between the heat source and the +panel +c. Radiation Isolation by one of the two: +• A solid metal heat shield with a minimum thickness of 0.4 mm +• Reflective foil or tape when combined with conduction insulation +T.1.7 Floor Closeout +T.1.7.1 All vehicles must have a Floor Closeout to prevent track debris from entering +T.1.7.2 The Floor Closeout must extend from the foot area to the firewall +T.1.7.3 The panel(s) must be made of a solid, non brittle material +T.1.7.4 If multiple panels are used, gaps between panels must not exceed 3 mm +T.1.8 Firewall +T.1.8.1 A Firewall(s) must separate the driver compartment and any portion of the Driver Harness +from: +a. All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium +batteries +b. (EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 +and cable to those Motors where mounted at the wheels or on the front control arms +T.1.8.2 The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where +any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest +driver must not be in direct line of sight with any part given in T.1.8.1 above +T.1.8.3 Any Firewall must be: +a. A non permeable surface made from a rigid, Nonflammable Material +b. Mounted tightly +T.1.8.4 (EV only) The Firewall or the part of the Firewall on the Tractive System side must be: +a. Made of aluminum. The Firewall layer itself must not be aluminum tape. +b. Grounded, refer to EV.6.7 Grounding +T.1.8.5 (EV only) The Accumulator Container must not be part of the Firewall +T.1.8.6 Sealing +a. Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, +edges, any pass throughs and Floor Closeout) +b. Firewalls that have multiple panels must overlap and be sealed at the joints +c. Sealing between Firewalls must not be a stressed part of the Firewall +d. Grommets must be used to seal any pass through for wiring, cables, etc + +Formula SAE® Rules 2025 © 2024 SAE International Page 58 of 143 +Version 1.0 31 Aug 2024 +e. Any seals or adhesives used with the Firewall must be rated for the application +environment +T.2 DRIVER ACCOMMODATION +T.2.1 Harness Definitions +a. 5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine +Belt. b. 6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or Anti- -Submarine Belts. +Submarine Belts. c. 7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or Anti- -Submarine Belts and a negative g or Z Belt. -d. Upright Driving Position - with a seat back angled at 30° or less from the vertical as -measured along the line joining the two 200 mm circles of the template of the 95th -percentile male as defined in F.5.6.5 and positioned per F.5.6.6 -e. Reclined Driving Position - with a seat back angled at more than 30° from the vertical as -measured along the line joining the two 200 mm circles of the template of the 95th -percentile male as defined in F.5.6.5 and positioned per F.5.6.6 -f. Chest to Groin Line - the straight line that in side view follows the line of the Shoulder -Belts from the chest to the release buckle. -T.2.2 Harness Specification -T.2.2.1 The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three: -a. SFI Specification 16.1 -b. SFI Specification 16.5 -c. FIA specification 8853/2016 -T.2.2.2 The belts must have the original manufacturers labels showing the specification and -expiration date -T.2.2.3 The Harness must be in or before the year of expiration shown on the labels. Harnesses -expiring on or before Dec 31 of the calendar year of the competition are permitted. -T.2.2.4 The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or -other issues -T.2.2.5 All Harness hardware must be installed and threaded in accordance with manufacturer’s -instructions -T.2.2.6 All Harness hardware must be used as received from the manufacturer. No modification -(including drilling, cutting, grinding, etc) is permitted. -T.2.3 Harness Requirements -T.2.3.1 Vehicles with a Reclined Driving Position must have: -a. A 6 Point Harness or a 7 Point Harness +Submarine Belts and a negative g or Z Belt. +d. Upright Driving Position - with a seat back angled at 30° or less from the vertical as +measured along the line joining the two 200 mm circles of the template of the 95th +percentile male as defined in F.5.6.5 and positioned per F.5.6.6 +e. Reclined Driving Position - with a seat back angled at more than 30° from the vertical as +measured along the line joining the two 200 mm circles of the template of the 95th +percentile male as defined in F.5.6.5 and positioned per F.5.6.6 +f. Chest to Groin Line - the straight line that in side view follows the line of the Shoulder +Belts from the chest to the release buckle. +T.2.2 Harness Specification +T.2.2.1 The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three: +a. SFI Specification 16.1 +b. SFI Specification 16.5 +c. FIA specification 8853/2016 +T.2.2.2 The belts must have the original manufacturers labels showing the specification and +expiration date +T.2.2.3 The Harness must be in or before the year of expiration shown on the labels. Harnesses +expiring on or before Dec 31 of the calendar year of the competition are permitted. +T.2.2.4 The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or +other issues +T.2.2.5 All Harness hardware must be installed and threaded in accordance with manufacturer’s +instructions +T.2.2.6 All Harness hardware must be used as received from the manufacturer. No modification +(including drilling, cutting, grinding, etc) is permitted. +T.2.3 Harness Requirements +T.2.3.1 Vehicles with a Reclined Driving Position must have: +a. A 6 Point Harness or a 7 Point Harness b. Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of Anti- -Submarine Belts installed. -T.2.3.2 All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). -Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 59 of 143 -Version 1.0 31 Aug 2024 -T.2.3.3 The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are -permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed. -T.2.4 Belt, Strap and Harness Installation - General -T.2.4.1 The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the -Primary Structure. -T.2.4.2 Any guide or support for the belts must be material meeting F.3.2.1.j -T.2.4.3 Each tab, bracket or eye to which any part of the Harness is attached must: -a. Support a minimum load in pullout and tearout before failure of: -• If one belt is attached to the tab, bracket or eye 15 kN -• If two belts are attached to the tab, bracket or eye 30 kN -b. Be 1.6 mm minimum thickness -c. Not cause abrasion to the belt webbing -Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest -radial cross section. -T.2.4.4 Attachment of tabs or brackets must meet these: -a. Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum -diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to -the chassis -b. Welded tabs or eyes must have a base at least as large as the outer diameter of the tab -or eye -c. Where a single shear tab is welded to the chassis, the tab to tube welding must be on the -two sides of the base of the tab -Double shear attachments are preferred. Tabs and brackets for double shear mounts should -be welded on the two sides. -T.2.4.5 Eyebolts or weld eyes must: -a. Be one piece. No eyenuts or swivels. -b. Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum -Threads should be 7/16-20 or greater -c. Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other -harness brackets (lap and anti sub) or other vehicle parts -d. Have a positive locking feature on threads or by the belt itself -T.2.4.6 For the belt itself to be considered a positive locking feature, the eyebolt must: -a. Have minimum 10 threads engaged in a threaded insert -b. Be shimmed to fully tight -c. Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt -creating a torque on the eyebolt. -T.2.4.7 Harness installation must meet T.1.8.1 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 60 of 143 -Version 1.0 31 Aug 2024 -T.2.5 Lap Belt Mounting -T.2.5.1 The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the -hip bones) -T.2.5.2 Installation of the Lap Belts must go in a straight line from the mounting point until they reach -the driver's body without touching any hole in the seat or any other intermediate structure -T.2.5.3 The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the -seat -T.2.5.4 With an Upright Driving Position: -a. The Lap Belt Side View Angle must be between 45° and 65° to the horizontal. -b. The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward -of the seat back to seat bottom junction. -T.2.5.5 With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to -the horizontal. - -T.2.5.6 The Lap Belts must attach by one of the two: -a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 -b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame -T.2.5.7 In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an -eye bolt attachment -T.2.5.8 Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a -Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• The bolt diameter specified by the manufacturer -• 10 mm or 3/8” -T.2.6 Shoulder Harness -T.2.6.1 From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder -Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal. -T.2.6.2 The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center -T.2.6.3 The Shoulder Belts must attach by one of the four: -a. Wrap around the Shoulder Harness Mounting bar -b. Bolt through a welded tube insert or tested monocoque attachment F.7.9 -c. Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye ( -T.2.4.3 ) loaded in tension on the Shoulder Harness Mounting bar -d. Wrap around physically tested hardware attached to a monocoque - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 61 of 143 -Version 1.0 31 Aug 2024 -T.2.6.4 Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is -a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• The bolt diameter specified by the manufacturer -• 10 mm or 3/8” -T.2.7 Anti-Submarine Belt Mounting -T.2.7.1 The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in -line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt -Side View Angle no more than 20° - -T.2.7.2 The Anti-Submarine Belts of a 6 point harness must mount in one of the two: -a. With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side -View Angle up to 20° rearwards. -The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart. - -b. With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the -Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming -up around the groin to the release buckle. - - - - - - - - - - - - - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 62 of 143 -Version 1.0 31 Aug 2024 -T.2.7.3 Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt -Mounting Point(s) without touching any hole in the seat or any other intermediate structure -until they reach: -a. The release buckle for the 5 Point Harness mounting per T.2.7.1 -b. The first point where the belt touches the driver’s body for the 6 Point Harness mounting -per T.2.7.2 -T.2.7.4 The Anti Submarine Belts must attach by one of the three: -a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 -b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame -c. Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. -The belt must not be able to touch the ground. -T.2.7.5 Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate -bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• The bolt diameter specified by the manufacturer -• 8 mm or 5/16” -T.2.8 Head Restraint -T.2.8.1 A Head Restraint must be provided to limit the rearward motion of the driver’s head. -T.2.8.2 The Head Restraint must be vertical or near vertical in side view. -T.2.8.3 All material and structure of the Head Restraint must be inside one or the two of: -a. Rollover Protection Envelope F.1.13 -b. Head Restraint Protection (if used) F.5.10 -T.2.8.4 The Head Restraint, attachment and mounting must be strong enough to withstand a -minimum force of: -a. 900 N applied in a rearward direction -b. 300 N applied in a lateral or vertical direction -T.2.8.5 For all drivers, the Head Restraint must be located and adjusted where: -a. The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, -with the driver in their normal driving position. -b. The contact point of the back of the driver’s helmet on the Head Restraint is no less than -50 mm from any edge of the Head Restraint. -Approximately 100 mm of longitudinal adjustment should accommodate range of specified -drivers. Several Head Restraints with different thicknesses may be used -T.2.8.6 The Head Restraint padding must: -a. Be an energy absorbing material that is one of the two: -• Meets SFI Spec 45.2 -• CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17 -b. Have a minimum thickness of 38 mm -c. Have a minimum width of 15 cm - - -Formula SAE® Rules 2025 © 2024 SAE International Page 63 of 143 -Version 1.0 31 Aug 2024 -d. Meet one of the two: +Submarine Belts installed. +T.2.3.2 All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). +Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. + +Formula SAE® Rules 2025 © 2024 SAE International Page 59 of 143 +Version 1.0 31 Aug 2024 +T.2.3.3 The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are +permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed. +T.2.4 Belt, Strap and Harness Installation - General +T.2.4.1 The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the +Primary Structure. +T.2.4.2 Any guide or support for the belts must be material meeting F.3.2.1.j +T.2.4.3 Each tab, bracket or eye to which any part of the Harness is attached must: +a. Support a minimum load in pullout and tearout before failure of: +• If one belt is attached to the tab, bracket or eye 15 kN +• If two belts are attached to the tab, bracket or eye 30 kN +b. Be 1.6 mm minimum thickness +c. Not cause abrasion to the belt webbing +Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest +radial cross section. +T.2.4.4 Attachment of tabs or brackets must meet these: +a. Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum +diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to +the chassis +b. Welded tabs or eyes must have a base at least as large as the outer diameter of the tab +or eye +c. Where a single shear tab is welded to the chassis, the tab to tube welding must be on the +two sides of the base of the tab +Double shear attachments are preferred. Tabs and brackets for double shear mounts should +be welded on the two sides. +T.2.4.5 Eyebolts or weld eyes must: +a. Be one piece. No eyenuts or swivels. +b. Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum +Threads should be 7/16-20 or greater +c. Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other +harness brackets (lap and anti sub) or other vehicle parts +d. Have a positive locking feature on threads or by the belt itself +T.2.4.6 For the belt itself to be considered a positive locking feature, the eyebolt must: +a. Have minimum 10 threads engaged in a threaded insert +b. Be shimmed to fully tight +c. Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt +creating a torque on the eyebolt. +T.2.4.7 Harness installation must meet T.1.8.1 + +Formula SAE® Rules 2025 © 2024 SAE International Page 60 of 143 +Version 1.0 31 Aug 2024 +T.2.5 Lap Belt Mounting +T.2.5.1 The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the +hip bones) +T.2.5.2 Installation of the Lap Belts must go in a straight line from the mounting point until they reach +the driver's body without touching any hole in the seat or any other intermediate structure +T.2.5.3 The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the +seat +T.2.5.4 With an Upright Driving Position: +a. The Lap Belt Side View Angle must be between 45° and 65° to the horizontal. +b. The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward +of the seat back to seat bottom junction. +T.2.5.5 With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to +the horizontal. +T.2.5.6 The Lap Belts must attach by one of the two: +a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 +b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame +T.2.5.7 In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an +eye bolt attachment +T.2.5.8 Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a +Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• The bolt diameter specified by the manufacturer +• 10 mm or 3/8” +T.2.6 Shoulder Harness +T.2.6.1 From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder +Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal. +T.2.6.2 The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center +T.2.6.3 The Shoulder Belts must attach by one of the four: +a. Wrap around the Shoulder Harness Mounting bar +b. Bolt through a welded tube insert or tested monocoque attachment F.7.9 +c. Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye ( +T.2.4.3 ) loaded in tension on the Shoulder Harness Mounting bar +d. Wrap around physically tested hardware attached to a monocoque + +Formula SAE® Rules 2025 © 2024 SAE International Page 61 of 143 +Version 1.0 31 Aug 2024 +T.2.6.4 Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is +a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• The bolt diameter specified by the manufacturer +• 10 mm or 3/8” +T.2.7 Anti-Submarine Belt Mounting +T.2.7.1 The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in +line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt +Side View Angle no more than 20° +T.2.7.2 The Anti-Submarine Belts of a 6 point harness must mount in one of the two: +a. With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side +View Angle up to 20° rearwards. +The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart. +b. With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the +Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming +up around the groin to the release buckle. + +Formula SAE® Rules 2025 © 2024 SAE International Page 62 of 143 +Version 1.0 31 Aug 2024 +T.2.7.3 Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt +Mounting Point(s) without touching any hole in the seat or any other intermediate structure +until they reach: +a. The release buckle for the 5 Point Harness mounting per T.2.7.1 +b. The first point where the belt touches the driver’s body for the 6 Point Harness mounting +per T.2.7.2 +T.2.7.4 The Anti Submarine Belts must attach by one of the three: +a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 +b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame +c. Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. +The belt must not be able to touch the ground. +T.2.7.5 Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate +bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: +• The bolt diameter specified by the manufacturer +• 8 mm or 5/16” +T.2.8 Head Restraint +T.2.8.1 A Head Restraint must be provided to limit the rearward motion of the driver’s head. +T.2.8.2 The Head Restraint must be vertical or near vertical in side view. +T.2.8.3 All material and structure of the Head Restraint must be inside one or the two of: +a. Rollover Protection Envelope F.1.13 +b. Head Restraint Protection (if used) F.5.10 +T.2.8.4 The Head Restraint, attachment and mounting must be strong enough to withstand a +minimum force of: +a. 900 N applied in a rearward direction +b. 300 N applied in a lateral or vertical direction +T.2.8.5 For all drivers, the Head Restraint must be located and adjusted where: +a. The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, +with the driver in their normal driving position. +b. The contact point of the back of the driver’s helmet on the Head Restraint is no less than +50 mm from any edge of the Head Restraint. +Approximately 100 mm of longitudinal adjustment should accommodate range of specified +drivers. Several Head Restraints with different thicknesses may be used +T.2.8.6 The Head Restraint padding must: +a. Be an energy absorbing material that is one of the two: +• Meets SFI Spec 45.2 +• CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17 +b. Have a minimum thickness of 38 mm +c. Have a minimum width of 15 cm + +Formula SAE® Rules 2025 © 2024 SAE International Page 63 of 143 +Version 1.0 31 Aug 2024 +d. Meet one of the two: • minimum area of 235 cm -2 - AND minimum total height adjustment of 17.5 cm -• minimum height of 28 cm -e. Be covered with a thin, flexible material that contains a ~20 mm diameter inspection -hole in a surface other than the front surface -T.2.9 Roll Bar Padding -Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s -helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec -45.1 or FIA 8857-2001. -T.3 BRAKES -T.3.1 Brake System -T.3.1.1 The vehicle must have a Brake System -T.3.1.2 The Brake System must: -a. Act on all four wheels -b. Be operated by a single control -c. Be capable of locking all four wheels -T.3.1.3 The Brake System must have two independent hydraulic circuits -A leak or failure at any point in the Brake System must maintain effective brake power on -minimum two wheels -T.3.1.4 Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM -style reservoir -T.3.1.5 A single brake acting on a limited slip differential may be used -T.3.1.6 “Brake by Wire” systems are prohibited -T.3.1.7 Unarmored plastic brake lines are prohibited -T.3.1.8 The Brake System must be protected with scatter shields from failure of the drive train (see -T.5.2) or from minor collisions. -T.3.1.9 In side view any portion of the Brake System that is mounted on the sprung part of the vehicle -must not project below the lower surface of the chassis -T.3.1.10 Fasteners in the Brake System are Critical Fasteners, see T.8.2 -T.3.2 Brake Pedal, Pedal Box and Mounting -T.3.2.1 The Brake Pedal must be one of: -• Fabricated from steel or aluminum -• Machined from steel, aluminum or titanium -T.3.2.2 The Brake Pedal and associated components design must withstand a minimum force of 2000 -N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment -This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the -pedal with the maximum force that can be exerted by any official when seated normally -T.3.2.3 Failure of non-loadbearing components in the Brake System or pedal box must not interfere -with Brake Pedal operation or Brake System function - - -Formula SAE® Rules 2025 © 2024 SAE International Page 64 of 143 -Version 1.0 31 Aug 2024 -T.3.2.4 (EV only) Additional requirements for Electric Vehicles: -a. The first 90% of the Brake Pedal travel may be used to regenerate energy without -actuating the hydraulic brake system -b. The remaining Brake Pedal travel must directly operate the hydraulic brake system. -Brake energy regeneration may stay active -T.3.3 Brake Over Travel Switch - BOTS -T.3.3.1 The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the -normal range will operate the switch -T.3.3.2 The BOTS must: -a. Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or -flip type) -b. Hold if operated to the OFF position -T.3.3.3 Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 -T.3.3.4 The driver must not be able to reset the BOTS -T.3.3.5 The BOTS must be implemented with analog components, and not using programmable logic -controllers, engine control units, or similar functioning digital controllers. -T.3.4 Brake Light -T.3.4.1 The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight. -T.3.4.2 The Brake Light must be: -a. Red in color on a Black background +2 +AND minimum total height adjustment of 17.5 cm +• minimum height of 28 cm +e. Be covered with a thin, flexible material that contains a ~20 mm diameter inspection +hole in a surface other than the front surface +T.2.9 Roll Bar Padding +Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s +helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec +45.1 or FIA 8857-2001. +T.3 BRAKES +T.3.1 Brake System +T.3.1.1 The vehicle must have a Brake System +T.3.1.2 The Brake System must: +a. Act on all four wheels +b. Be operated by a single control +c. Be capable of locking all four wheels +T.3.1.3 The Brake System must have two independent hydraulic circuits +A leak or failure at any point in the Brake System must maintain effective brake power on +minimum two wheels +T.3.1.4 Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM +style reservoir +T.3.1.5 A single brake acting on a limited slip differential may be used +T.3.1.6 “Brake by Wire” systems are prohibited +T.3.1.7 Unarmored plastic brake lines are prohibited +T.3.1.8 The Brake System must be protected with scatter shields from failure of the drive train (see +T.5.2) or from minor collisions. +T.3.1.9 In side view any portion of the Brake System that is mounted on the sprung part of the vehicle +must not project below the lower surface of the chassis +T.3.1.10 Fasteners in the Brake System are Critical Fasteners, see T.8.2 +T.3.2 Brake Pedal, Pedal Box and Mounting +T.3.2.1 The Brake Pedal must be one of: +• Fabricated from steel or aluminum +• Machined from steel, aluminum or titanium +T.3.2.2 The Brake Pedal and associated components design must withstand a minimum force of 2000 +N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment +This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the +pedal with the maximum force that can be exerted by any official when seated normally +T.3.2.3 Failure of non-loadbearing components in the Brake System or pedal box must not interfere +with Brake Pedal operation or Brake System function + +Formula SAE® Rules 2025 © 2024 SAE International Page 64 of 143 +Version 1.0 31 Aug 2024 +T.3.2.4 (EV only) Additional requirements for Electric Vehicles: +a. The first 90% of the Brake Pedal travel may be used to regenerate energy without +actuating the hydraulic brake system +b. The remaining Brake Pedal travel must directly operate the hydraulic brake system. +Brake energy regeneration may stay active +T.3.3 Brake Over Travel Switch - BOTS +T.3.3.1 The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the +normal range will operate the switch +T.3.3.2 The BOTS must: +a. Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or +flip type) +b. Hold if operated to the OFF position +T.3.3.3 Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 +T.3.3.4 The driver must not be able to reset the BOTS +T.3.3.5 The BOTS must be implemented with analog components, and not using programmable logic +controllers, engine control units, or similar functioning digital controllers. +T.3.4 Brake Light +T.3.4.1 The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight. +T.3.4.2 The Brake Light must be: +a. Red in color on a Black background b. Rectangular, triangular or near round shape with a minimum shining surface of 15 cm 2 - -c. Mounted between the wheel centerline and driver’s shoulder level vertically and -approximately on vehicle centerline laterally. -T.3.4.3 When LED lights are used without a diffuser, they must not be more than 20 mm apart. -T.3.4.4 If a single line of LEDs is used, the minimum length is 150 mm. -T.4 ELECTRONIC THROTTLE COMPONENTS -T.4.1 Applicability -This section T.4 applies only for: -• IC vehicles using Electronic Throttle Control (ETC) IC.4 -• EV vehicles -T.4.2 Accelerator Pedal Position Sensor - APPS -T.4.2.1 The Accelerator Pedal must operate the APPS T.1.4.1 -a. Two springs must be used to return the foot pedal to 0% Pedal Travel -b. Each spring must be capable of returning the pedal to 0% Pedal Travel with the other -disconnected. The springs in the APPS are not acceptable pedal return springs. -T.4.2.2 Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS -with two completely separate sensors in a single housing is acceptable. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 65 of 143 -Version 1.0 31 Aug 2024 -T.4.2.3 The APPS sensors must have different transfer functions which meet one of the two: -• Each sensor has different gradients and/or offsets to the other(s). The circuit must have -a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel -• An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor -configurations require prior approval. -The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel -T.4.2.4 Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or -other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel -require justification in the ETC Systems Form and may not be approved -T.4.2.5 If an Implausibility occurs between the values of the APPSs and persists for more than 100 -msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped -completely. -(EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping -the power to the Motor(s) is sufficient. -T.4.2.6 If three sensors are used, then in the case of an APPS failure, any two sensors that agree -within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target -and the 3rd APPS may be ignored. -T.4.2.7 Each APPS must be able to be checked during Technical Inspection by having one of the two: -• A separate detachable connector that enables a check of functions by unplugging it -• An inline switchable breakout box available that allows disconnection of each APPS -signal. -T.4.2.8 The APPS signals must be sent directly to a controller using an analogue signal or via a digital -data transmission bus such as CAN or FlexRay. -T.4.2.9 Any failure of the APPS or APPS wiring must be detectable by the controller and must be -treated like an Implausibility, see T.4.2.4 above -T.4.2.10 When an analogue signal is used, the APPS will be considered to have failed when they -achieve an open circuit or short circuit condition which generates a signal outside of the -normal operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. -T.4.2.11 When any kind of digital data transmission is used to transmit the APPS signal, -a. The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. -b. The failures to be considered must include but are not limited to the failure of the APPS, -APPS signals being out of range, corruption of the message and loss of messages and the -associated time outs. -T.4.2.12 The current rules are written to only apply to the APPS (pedal), but the integrity of the torque -command signal is important in all stages. -T.4.3 Brake System Encoder - BSE -T.4.3.1 The vehicle must have a sensor or switch to measure brake pedal position or brake system -pressure - - -Formula SAE® Rules 2025 © 2024 SAE International Page 66 of 143 -Version 1.0 31 Aug 2024 -T.4.3.2 The BSE must be able to be checked during Technical Inspection by having one of: -• A separate detachable connector(s) for any BSE signal(s) to the main ECU without -affecting any other connections -• An inline switchable breakout box available that allows disconnection of each BSE -signal(s) to the main ECU without affecting any other connections -T.4.3.3 The BSE or switch signals must be sent directly to a controller using an analogue signal or via a -digital data transmission bus such as CAN or FlexRay -Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by -the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) -Motor(s) must be immediately stopped completely. -(EV only) It is not necessary to completely deactivate the Tractive System, the motor -controller(s) stopping power to the motor(s) is sufficient. -T.4.3.4 When an analogue signal is used, the BSE sensors will be considered to have failed when they -achieve an open circuit or short circuit condition which generates a signal outside of the -normal operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. -T.4.3.5 When any kind of digital data transmission is used to transmit the BSE signal: -a. The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. -b. The failures modes must include but are not limited to the failure of the sensor, sensor -signals being out of range, corruption of the message and loss of messages and the -associated time outs. -c. In all cases a sensor failure must immediately shutdown power to the motor(s). -T.5 POWERTRAIN -T.5.1 Transmission and Drive -Any transmission and drivetrain may be used. -T.5.2 Drivetrain Shields and Guards -T.5.2.1 Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions -(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and -electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case -of radial failure -T.5.2.2 The final drivetrain shield must: -a. Be made with solid material (not perforated) -b. Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt -or pulley -c. Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 67 of 143 -Version 1.0 31 Aug 2024 -d. Cover the bottom of the chain or belt or rotating component when fuel, brake lines -T.3.1.8, control, pressurized, electrical components are located below -T.5.2.3 Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8 -T.5.2.4 Frame Members or existing components that exceed the scatter shield material requirements -may be used as part of the shield. -T.5.2.5 Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm) -T.5.2.6 If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. -T.5.2.7 Chain Drive - Scatter shields for chains must: -a. Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed) -b. Have a minimum width equal to three times the width of the chain -c. Be centered on the center line of the chain -d. Stay aligned with the chain under all conditions -T.5.2.8 Non-metallic Belt Drive - Scatter shields for belts must: -a. Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6 -b. Have a minimum width that is equal to 1.7 times the width of the belt. -c. Be centered on the center line of the belt -d. Stay aligned with the belt under all conditions -T.5.2.9 Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or -1/4” minimum diameter Critical Fasteners, see T.8.2 -T.5.2.10 Finger Guards -a. Must cover any drivetrain parts that spin while the vehicle is stationary with the engine -running. -b. Must be made of material sufficient to resist finger forces. -c. Mesh or perforated material may be used but must prevent the passage of a 12 mm -diameter object through the guard. -T.5.3 Motor Protection (EV Only) -T.5.3.1 The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. -The motor casing may be the original motor casing, a team built motor casing or the original -casing with additional material added to achieve the minimum required thickness. -• Minimum thickness for aluminum alloy 6061-T6: 3.0 mm -If lower grade aluminum alloy is used, then the material must be thicker to provide an -equivalent strength. -• Minimum thickness for steel: 2.0 mm -T.5.3.2 A Scatter Shield must be included around the Motor(s) when one or the two: -• The motor casing rotates around the stator -• The motor case is perforated -T.5.3.3 The Motor Scatter Shield must be: -• Made from aluminum alloy 6061-T6 or steel -• Minimum thickness: 1.0 mm - - -Formula SAE® Rules 2025 © 2024 SAE International Page 68 of 143 -Version 1.0 31 Aug 2024 -T.5.4 Coolant Fluid -T.5.4.1 Water cooled engines must use only plain water with no additives of any kind -T.5.4.2 Liquid coolant for electric motors, Accumulators or HV electronics must be one of: -• plain water with no additives -• oil -T.5.4.3 (EV only) Liquid coolant must not directly touch the cells in the Accumulator -T.5.5 System Sealing -T.5.5.1 Any cooling or lubrication system must be sealed to prevent leakage -T.5.5.2 The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type. -T.5.5.3 Flammable liquid and vapors or other leaks must not collect or contact the driver -T.5.5.4 Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at -the locations: -a. The lowest point of the chassis -b. Rearward of the driver position, forward of a fuel tank or other liquid source -c. If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is -necessary -T.5.5.5 Absorbent material and open collection devices (regardless of material) are prohibited in -compartments containing engine, drivetrain, exhaust and fuel systems below the highest -point on the exhaust system. -T.5.6 Catch Cans -T.5.6.1 The vehicle must have separate containers (catch cans) to retain fluids from any vents from -the powertrain systems. -T.5.6.2 Catch cans must be: -a. Capable of containing boiling water without deformation -b. Located rearwards of the Firewall below the driver’s shoulder level -c. Positively retained, using no tie wraps or tape -T.5.6.3 Catch cans for the engine coolant system and engine lubrication system must have a minimum -capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher -T.5.6.4 Catch cans for any vent on other systems containing liquid lubricant or coolant, including a -differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid -being contained or 0.5 liter, whichever is higher -T.5.6.5 Any catch can on the cooling system must vent through a hose with a minimum internal -diameter of 3 mm down to the bottom levels of the Chassis. -T.6 PRESSURIZED SYSTEMS -T.6.1 Compressed Gas Cylinders and Lines -Any system on the vehicle that uses a compressed gas as an actuating medium must meet: -T.6.1.1 Working Gas - The working gas must be non flammable - - -Formula SAE® Rules 2025 © 2024 SAE International Page 69 of 143 -Version 1.0 31 Aug 2024 -T.6.1.2 Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed -and built for the pressure being used, certified by an accredited testing laboratory in the -country of its origin, and labeled or stamped appropriately. -T.6.1.3 Pressure Regulation - The pressure regulator must be mounted directly onto the gas -cylinder/tank -T.6.1.4 Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible -operating pressure of the system. -T.6.1.5 Insulation - The gas cylinder/tank must be insulated from any heat sources -T.6.1.6 Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system -must meet one of the two: -• Made from metal -• Meet the thermal protection requirements of T.1.6.3 -T.6.1.7 Cylinder Location - The gas cylinder/tank and the pressure regulator must be: -a. Securely mounted inside the Chassis -b. Located outside of the Cockpit -c. In a position below the height of the Shoulder Belt Mount T.2.6 -d. Aligned so the axis of the gas cylinder/tank does not point at the driver -T.6.1.8 Protection – The gas cylinder/tank and lines must be protected from rollover, collision from -any direction, or damage resulting from the failure of rotating equipment -T.6.1.9 The driver must be protected from failure of the cylinder/tank and regulator -T.6.2 High Pressure Hydraulic Pumps and Lines -This section T.6.2 does not apply to Brake lines or hydraulic clutch lines -T.6.2.1 The driver and anyone standing outside the vehicle must be shielded from any hydraulic -pumps and lines with line pressures of 2100 kPa or higher. -T.6.2.2 The shields must be steel or aluminum with a minimum thickness of 1 mm. -T.7 BODYWORK AND AERODYNAMIC DEVICES -T.7.1 Aerodynamic Devices -T.7.1.1 Aerodynamic Device -A part on the vehicle which guides airflow for purposes including generation of downforce -and/or change of drag. -Examples include but are not limited to: wings, undertray, splitter, endplates, vanes -T.7.1.2 No power device may be used to move or remove air from under the vehicle. Power ground -effects are strictly prohibited. -T.7.1.3 All Aerodynamic Devices must meet: -a. The mounting system provides sufficient rigidity in the static condition -b. The Aerodynamic Devices do not oscillate or move excessively when the vehicle is -moving. Refer to IN.8.2 -T.7.1.4 All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) -must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 70 of 143 -Version 1.0 31 Aug 2024 -This may be the radius of the edges themselves, or additional permanently attached pieces -designed to meet this requirement. -T.7.1.5 Other edges that a person may touch must not be sharp -T.7.2 Bodywork -T.7.2.1 Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device -T.7.2.2 Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic -Device if is designed to, or may possibly, produce force due to aerodynamic effects -T.7.2.3 Bodywork must not contain openings into the cockpit from the front of the vehicle back to the -Main Hoop or Firewall. The cockpit opening and minimal openings around the front -suspension components are allowed. -T.7.2.4 All forward facing edges on the Bodywork that could contact people, including the nose, must -have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more -relative to the forward direction, along the top, sides and bottom of all affected edges. -T.7.3 Measurement -T.7.3.1 All Aerodynamic Device limitations are measured: -a. With the wheels pointing in the straight ahead position -b. Without a driver in the vehicle -The intent is to standardize the measurement, see GR.6.4.1 -T.7.3.2 Head Restraint Plane -A transverse vertical plane through the rearmost portion of the front face of the driver head -restraint support, excluding any padding, set (if adjustable) in its fully rearward position -T.7.3.3 Rear Aerodynamic Zone -The volume that is: -• Rearward of the Head Restraint Plane -• Inboard of two vertical planes parallel to the centerline of the chassis touching the inside -of the rear tires at the height of the hub centerline -T.7.4 Location -Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1 -T.7.5 Length -In plan view, any part of any Aerodynamic Device must be: -a. No more than 700 mm forward of the fronts of the front tires -b. No more than 250 mm rearward of the rear of the rear tires -T.7.6 Width -In plan view, any part of any Aerodynamic Device must be: -T.7.6.1 When forward of the centerline of the front wheel axles: -Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of -the front tires at the height of the hubs. -T.7.6.2 When between the centerlines of the front and rear wheel axles: - - -Formula SAE® Rules 2025 © 2024 SAE International Page 71 of 143 -Version 1.0 31 Aug 2024 -Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height -of the wheel centers -T.7.6.3 When rearward of the centerline of the rear wheel axles: -In the Rear Aerodynamic Zone -T.7.7 Height -T.7.7.1 Any part of any Aerodynamic Device that is located: -a. In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground -b. Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the -ground -c. Forward of the centerline of the front wheel axles and outboard of two vertical planes -parallel to the centerline of the chassis touching the inside of the front tires at the height -of the hubs must be no higher than 250 mm above the ground -T.7.7.2 Bodywork height is not restricted when the Bodywork is located: -• Between the transverse vertical planes positioned at the front and rear axle centerlines -• Inside two vertical fore and aft planes 400 mm outboard from the centerline on each -side of the vehicle - -T.8 FASTENERS -T.8.1 Critical Fasteners -A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule -T.8.2 Critical Fastener Requirements -T.8.2.1 Any Critical Fastener must meet, at minimum, one of these: -a. SAE Grade 5 -b. Metric Class 8.8 -c. AN/MS Specifications - - - - - - - - - - - - - - - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 72 of 143 -Version 1.0 31 Aug 2024 -d. Equivalent to or better than above, as approved by a Rules Question or at Technical -Inspection -T.8.2.2 All threaded Critical Fasteners must be one of the two: -• Hex head -• Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts) -T.8.2.3 All Critical Fasteners must be secured from unintentional loosening with Positive Locking -Mechanisms see T.8.3 -T.8.2.4 A minimum of two full threads must project from any lock nut. -T.8.2.5 Some Critical Fastener applications have additional requirements that are provided in the -applicable section. -T.8.3 Positive Locking Mechanisms -T.8.3.1 Positive Locking Mechanisms are defined as those which: -a. Technical Inspectors / team members can see that the device/system is in place (visible). -b. Do not rely on the clamping force to apply the locking or anti vibration feature. -Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming -completely loose -T.8.3.2 Examples of acceptable Positive Locking Mechanisms include, but are not limited to: -a. Correctly installed safety wiring -b. Cotter pins -c. Nylon lock nuts (where temperature does not exceed 80°C) -d. Prevailing torque lock nuts -Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT -meet the positive locking requirement -T.8.3.3 If the Positive Locking Mechanism is by prevailing torque lock nuts: -a. Locking fasteners must be in as new condition -b. A supply of replacement fasteners must be presented in Technical Inspection, including -any attachment method -T.8.4 Requirements for All Fasteners -Adjustable tie rod ends must be constrained with a jam nut to prevent loosening. -T.9 ELECTRICAL EQUIPMENT -T.9.1 Definitions -T.9.1.1 High Voltage – HV -Any voltage more than 60 V DC or 25 V AC RMS -T.9.1.2 Low Voltage - LV -Any voltage less than and including 60 V DC or 25 V AC RMS -T.9.1.3 Normally Open -A type of electrical relay or contactor that allows current flow only in the energized state - - -Formula SAE® Rules 2025 © 2024 SAE International Page 73 of 143 -Version 1.0 31 Aug 2024 -T.9.2 Low Voltage Batteries -T.9.2.1 All Low Voltage Batteries and onboard power supplies must be securely mounted inside the -Chassis below the height of the Shoulder Belt Mount T.2.6 -T.9.2.2 All Low Voltage batteries must have Overcurrent Protection that trips at or below the -maximum specified discharge current of the cells -T.9.2.3 The hot (ungrounded) terminal must be insulated. -T.9.2.4 Any wet cell battery located in the driver compartment must be enclosed in a nonconductive -marine type container or equivalent. -T.9.2.5 Batteries or battery packs based on lithium chemistry must meet one of the two: -a. Have a rigid, sturdy casing made from Nonflammable Material -b. A commercially available battery designed as an OEM style replacement -T.9.2.6 All batteries using chemistries other than lead acid must be presented at Technical Inspection -with markings identifying it for comparison to a datasheet or other documentation proving -the pack and supporting electronics meet all rules requirements -T.9.3 Master Switches -Each Master Switch ( IC.9.3 / EV.7.9 ) must meet: -T.9.3.1 Location -a. On the driver’s right hand side of the vehicle -b. In proximity to the Main Hoop -c. At the driver's shoulder height -d. Able to be easily operated from outside the vehicle -T.9.3.2 Characteristics -a. Be of the rotary mechanical type -b. Be rigidly mounted to the vehicle and must not be removed during maintenance -c. Mounted where the rotary axis of the key is near horizontal and across the vehicle -d. The ON position must be in the horizontal position and must be marked accordingly -e. The OFF position must be clearly marked -f. (EV Only) Operated with a red removable key that must only be removable in the -electrically open position -T.9.4 Inertia Switch -T.9.4.1 Inertia Switch Requirement -• (EV) Must have an Inertia Switch -• (IC) Should have an Inertia Switch -T.9.4.2 The Inertia Switch must be: -a. A Sensata Resettable Crash Sensor or equivalent -b. Mechanically and rigidly attached to the vehicle -c. Removable to test functionality - - -Formula SAE® Rules 2025 © 2024 SAE International Page 74 of 143 -Version 1.0 31 Aug 2024 -T.9.4.3 Inertia Switch operation: -a. Must trigger due to a longitudinal impact load which decelerates the vehicle at between -8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the -Sensata device) -b. Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered -c. Must latch until manually reset -d. May be reset by the driver from inside the driver's cell - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 75 of 143 -Version 1.0 31 Aug 2024 -VE - VEHICLE AND DRIVER EQUIPMENT -VE.1 VEHICLE IDENTIFICATION -VE.1.1 Vehicle Number -VE.1.1.1 The assigned vehicle number must appear on the vehicle as follows: -a. Locations: in three places, on the front of the chassis and the left and right sides -b. Height: 150 mm minimum -c. Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive -numbers) -d. Stroke Width and Spacing between numbers: 18 mm minimum -e. Color: White numbers on a black background OR black numbers on a white background -f. Background: round, oval, square or rectangular -g. Spacing: 25 mm minimum between the edge of the numbers and the edge of the -background -h. The numbers must not be obscured by parts of the vehicle -VE.1.1.2 Additional letters or numerals must not show before or after the vehicle number -VE.1.2 School Name -Each vehicle must clearly display the school name. -a. Abbreviations are allowed if unique and generally recognized -b. The name must be in Roman characters minimum 50 mm high on the left and right sides -of the vehicle. -c. The characters must be put on a high contrast background in an easily visible location -d. The school name may also appear in non Roman characters, but the Roman character -version must be uppermost on the sides. -VE.1.3 SAE Logo -The SAE International Logo must be displayed on the front and/or the left and right sides of -the vehicle in a prominent location. -VE.1.4 Inspection Sticker -The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: -• A clear and unobstructed area, minimum 25 cm wide x 20 cm high -• Located on the upper front surface of the nose along the vehicle centerline -VE.1.5 Transponder / RFID Tag -VE.1.5.1 Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the -specified type(s) -VE.1.5.2 Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information -and mounting details -VE.2 VEHICLE EQUIPMENT -VE.2.1 Jacking Point -VE.2.1.1 A Jacking Point must be provided at the rear of the vehicle - - -Formula SAE® Rules 2025 © 2024 SAE International Page 76 of 143 -Version 1.0 31 Aug 2024 -VE.2.1.2 The Jacking Point must be: -a. Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the -FSAE Online website -b. Visible to a person standing 1 m behind the vehicle -c. Color: Orange -d. Oriented laterally and perpendicular to the centerline of the vehicle -e. Made from round, 25 - 30 mm OD aluminum or steel tube -f. Exposed around the lower 180° of its circumference over a minimum length of 280 mm -g. Access from the rear of the tube must be unobstructed for 300 mm or more of its length -h. The height of the tube must allow 75 mm minimum clearance from the bottom of the -tube to the ground -i. When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the -wheels do not touch the ground when they are in full rebound -VE.2.2 Push Bar -Each vehicle must have a removable device which attaches to the rear of the vehicle that: -a. Allows two people, standing erect behind the vehicle, to push the vehicle around the -competition site -b. Is capable of slowing and stopping the forward motion of the vehicle and pulling it -rearwards -VE.2.3 Fire Extinguisher -VE.2.3.1 Each team must have two or more fire extinguishers. -a. One extinguisher must readily be available in the team’s paddock area -b. One extinguisher must accompany the vehicle when moved using the Push Bar -A commercially available on board fire system may be used instead of the fire -extinguisher that accompanies the vehicle -VE.2.3.2 Hand held fire extinguishers must NOT be mounted on or in the vehicle -VE.2.3.3 Each fire extinguisher must meet these: -a. Capacity: 0.9 kg (2 lbs) -b. Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and -Halon extinguishers and systems are prohibited. -c. Equipped with a manufacturer installed pressure/charge gauge. -d. Minimum acceptable ratings: -• USA, Canada & Brazil: 10BC or 1A 10BC -• Europe: 34B or 5A 34B -• Australia: 20BE or 1A 10BE -e. Extinguishers of larger capacity (higher numerical ratings) are acceptable. -VE.2.4 Electrical Equipment (EV Only) -These items must accompany the vehicle at all times: -• Two pairs of High Voltage insulating gloves - - -Formula SAE® Rules 2025 © 2024 SAE International Page 77 of 143 -Version 1.0 31 Aug 2024 -• A multimeter -VE.2.5 Camera Mounts -VE.2.5.1 The mounts for video/photographic cameras must be of a safe and secure design. -VE.2.5.2 All camera installations must be approved at Technical Inspection. -VE.2.5.3 Helmet mounted cameras and helmet camera mounts are prohibited. -VE.2.5.4 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a -minimum of two points on different sides of the camera body. -VE.2.5.5 If a tether is used to restrain the camera, the tether length must be limited to prevent contact -with the driver. -VE.3 DRIVER EQUIPMENT -VE.3.1 General -VE.3.1.1 Any Driver Equipment: -a. Must be in good condition with no tears, rips, open seams, areas of significant wear, -abrasions or stains which might compromise performance. -b. Must fit properly -c. May be inspected at any time -VE.3.1.2 Flame Resistant Material -For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, -Polybenzimidazole (common name PBI) and Proban. -VE.3.1.3 Synthetic Material – Prohibited -Shirts, socks or other undergarments (not to be confused with flame resistant underwear) -made from nylon or any other synthetic material which could melt when exposed to high heat -are prohibited. -VE.3.1.4 Officials may impound any non approved Driver Equipment until the end of the competition. -VE.3.2 Helmet -VE.3.2.1 The driver must wear a helmet which: -a. Is closed face with an integral, immovable chin guard -b. Contains an integrated visor/face shield supplied with the helmet -c. Meets an approved standard -d. Is properly labeled for that standard -VE.3.2.2 Acceptable helmet standards are listed below. Any additional approved standards are shown -on the Technical Inspection Form or the FAQ on the FSAE Online website -a. Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, -SA2025 -b. SFI Specs 31.1/2015, 41.1/2015 -c. FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) - - -Formula SAE® Rules 2025 © 2024 SAE International Page 78 of 143 -Version 1.0 31 Aug 2024 -VE.3.3 Driver Gear -The driver must wear: -VE.3.3.1 Driver Suit -A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers -the body from the neck to the ankles and the wrists. -Each suit must meet one or more of these standards and be labeled as such: -• SFI 3.2A/5 (or higher ex: /10, /15, /20) -• SFI 3.4/5 (or higher ex: /10, /15, /20) -• FIA Standard 1986 -• FIA Standard 8856-2000 -• FIA Standard 8856-2018 -VE.3.3.2 Underclothing -All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under -their approved Driver Suit. -VE.3.3.3 Balaclava -A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame -Resistant Material -VE.3.3.4 Socks -Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit -and the Shoes. -VE.3.3.5 Shoes -Shoes or boots made from Flame Resistant Material that meet an approved standard and -labeled as such: -• SFI Spec 3.3 -• FIA Standard 8856-2000 -• FIA Standard 8856-2018 -VE.3.3.6 Gloves -Gloves made from Flame Resistant Material. -Gloves of all leather construction or fire retardant gloves constructed using leather palms with -no insulating Flame Resistant Material underneath are not acceptable. -VE.3.3.7 Arm Restraints -a. Arm restraints must be worn in a way that the driver can release them and exit the -vehicle unassisted regardless of the vehicle’s position. -b. Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec -3.3 and labeled as such meet this requirement. - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 79 of 143 -Version 1.0 31 Aug 2024 -IC - INTERNAL COMBUSTION ENGINE VEHICLES -IC.1 GENERAL REQUIREMENTS -IC.1.1 Engine Limitations -IC.1.1.1 The engine(s) used to power the vehicle must: -a. Be a piston engine(s) using a four stroke primary heat cycle -b. Have a total combined displacement less than or equal to 710 cc per cycle. -IC.1.1.2 Hybrid powertrains, such as those using electric motors running off stored energy, are -prohibited. -IC.1.1.3 All waste/rejected heat from the primary heat cycle may be used. The method of conversion is -not limited to the four stroke cycle. -IC.1.1.4 The engine may be modified within the restrictions of the rules. -IC.1.2 Air Intake and Fuel System Location -All parts of the engine air system and fuel control, delivery and storage systems (including the -throttle or carburetor, and the complete air intake system, including the air cleaner and any -air boxes) must lie inside the Tire Surface Envelope F.1.14 -IC.2 AIR INTAKE SYSTEM -IC.2.1 General -IC.2.2 Intake System Location -IC.2.2.1 The Intake System must meet IC.1.2 -IC.2.2.2 Any portion of the air intake system that is less than 350 mm above the ground must be -shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable. -IC.2.3 Intake System Mounting -IC.2.3.1 The intake manifold must be securely attached to the engine block or cylinder head with -brackets and mechanical fasteners. -• Hose clamps, plastic ties, or safety wires do not meet this requirement. -• The use of rubber bushings or hose is acceptable for creating and sealing air passages, -but is not a structural attachment. -IC.2.3.2 Threaded fasteners used to secure and/or seal the intake manifold must have a Positive -Locking Mechanism, see T.8.3. -IC.2.3.3 Intake systems with significant mass or cantilever from the cylinder head must be supported -to prevent stress to the intake system. -a. Supports to the engine must be rigid. -b. Supports to the Chassis must incorporate some isolation to allow for engine movement -and chassis flex. -IC.2.4 Intake System Restrictor -IC.2.4.1 All airflow to the engine(s) must pass through a single circular restrictor in the intake system. -IC.2.4.2 The only allowed sequence of components is: -a. For naturally aspirated engines, the sequence must be: throttle body, restrictor, and -engine. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 80 of 143 -Version 1.0 31 Aug 2024 -b. For turbocharged or supercharged engines, the sequence must be: restrictor, -compressor, throttle body, engine. - -IC.2.4.3 The maximum restrictor diameters at any time during the competition are: -a. Gasoline fueled vehicles 20.0 mm -b. E85 fueled vehicles 19.0 mm -IC.2.4.4 The restrictor must be located to facilitate measurement during Technical Inspection -IC.2.4.5 The circular restricting cross section must NOT be movable or flexible in any way -IC.2.4.6 The restrictor must not be part of the movable portion of a barrel throttle body. -IC.2.5 Turbochargers & Superchargers -IC.2.5.1 The intake air may be cooled with an intercooler (a charge air cooler). -a. It must be located downstream of the throttle body -b. Only ambient air may be used to remove heat from the intercooler system -c. Air to air and water to air intercoolers are permitted -d. The coolant of a water to air intercooler system must meet T.5.4.1 -IC.2.5.2 If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be -positioned in the intake system as shown in IC.2.4.2.b -IC.2.5.3 Plenums must not be located anywhere upstream of the throttle body -For the purpose of definition, a plenum is any tank or volume that is a significant enlargement -of the normal intake runner system. Teams may submit their designs via a Rules Question for -review prior to competition if the legality of their proposed system is in doubt. -IC.2.5.4 The maximum allowable area of the inner diameter of the intake runner system between the +c. Mounted between the wheel centerline and driver’s shoulder level vertically and +approximately on vehicle centerline laterally. +T.3.4.3 When LED lights are used without a diffuser, they must not be more than 20 mm apart. +T.3.4.4 If a single line of LEDs is used, the minimum length is 150 mm. +T.4 ELECTRONIC THROTTLE COMPONENTS +T.4.1 Applicability +This section T.4 applies only for: +• IC vehicles using Electronic Throttle Control (ETC) IC.4 +• EV vehicles +T.4.2 Accelerator Pedal Position Sensor - APPS +T.4.2.1 The Accelerator Pedal must operate the APPS T.1.4.1 +a. Two springs must be used to return the foot pedal to 0% Pedal Travel +b. Each spring must be capable of returning the pedal to 0% Pedal Travel with the other +disconnected. The springs in the APPS are not acceptable pedal return springs. +T.4.2.2 Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS +with two completely separate sensors in a single housing is acceptable. + +Formula SAE® Rules 2025 © 2024 SAE International Page 65 of 143 +Version 1.0 31 Aug 2024 +T.4.2.3 The APPS sensors must have different transfer functions which meet one of the two: +• Each sensor has different gradients and/or offsets to the other(s). The circuit must have +a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel +• An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor +configurations require prior approval. +The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel +T.4.2.4 Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or +other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel +require justification in the ETC Systems Form and may not be approved +T.4.2.5 If an Implausibility occurs between the values of the APPSs and persists for more than 100 +msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped +completely. +(EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping +the power to the Motor(s) is sufficient. +T.4.2.6 If three sensors are used, then in the case of an APPS failure, any two sensors that agree +within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target +and the 3rd APPS may be ignored. +T.4.2.7 Each APPS must be able to be checked during Technical Inspection by having one of the two: +• A separate detachable connector that enables a check of functions by unplugging it +• An inline switchable breakout box available that allows disconnection of each APPS +signal. +T.4.2.8 The APPS signals must be sent directly to a controller using an analogue signal or via a digital +data transmission bus such as CAN or FlexRay. +T.4.2.9 Any failure of the APPS or APPS wiring must be detectable by the controller and must be +treated like an Implausibility, see T.4.2.4 above +T.4.2.10 When an analogue signal is used, the APPS will be considered to have failed when they +achieve an open circuit or short circuit condition which generates a signal outside of the +normal operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. +T.4.2.11 When any kind of digital data transmission is used to transmit the APPS signal, +a. The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. +b. The failures to be considered must include but are not limited to the failure of the APPS, +APPS signals being out of range, corruption of the message and loss of messages and the +associated time outs. +T.4.2.12 The current rules are written to only apply to the APPS (pedal), but the integrity of the torque +command signal is important in all stages. +T.4.3 Brake System Encoder - BSE +T.4.3.1 The vehicle must have a sensor or switch to measure brake pedal position or brake system +pressure + +Formula SAE® Rules 2025 © 2024 SAE International Page 66 of 143 +Version 1.0 31 Aug 2024 +T.4.3.2 The BSE must be able to be checked during Technical Inspection by having one of: +• A separate detachable connector(s) for any BSE signal(s) to the main ECU without +affecting any other connections +• An inline switchable breakout box available that allows disconnection of each BSE +signal(s) to the main ECU without affecting any other connections +T.4.3.3 The BSE or switch signals must be sent directly to a controller using an analogue signal or via a +digital data transmission bus such as CAN or FlexRay +Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by +the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) +Motor(s) must be immediately stopped completely. +(EV only) It is not necessary to completely deactivate the Tractive System, the motor +controller(s) stopping power to the motor(s) is sufficient. +T.4.3.4 When an analogue signal is used, the BSE sensors will be considered to have failed when they +achieve an open circuit or short circuit condition which generates a signal outside of the +normal operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. +T.4.3.5 When any kind of digital data transmission is used to transmit the BSE signal: +a. The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. +b. The failures modes must include but are not limited to the failure of the sensor, sensor +signals being out of range, corruption of the message and loss of messages and the +associated time outs. +c. In all cases a sensor failure must immediately shutdown power to the motor(s). +T.5 POWERTRAIN +T.5.1 Transmission and Drive +Any transmission and drivetrain may be used. +T.5.2 Drivetrain Shields and Guards +T.5.2.1 Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions +(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and +electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case +of radial failure +T.5.2.2 The final drivetrain shield must: +a. Be made with solid material (not perforated) +b. Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt +or pulley +c. Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: + +Formula SAE® Rules 2025 © 2024 SAE International Page 67 of 143 +Version 1.0 31 Aug 2024 +d. Cover the bottom of the chain or belt or rotating component when fuel, brake lines +T.3.1.8, control, pressurized, electrical components are located below +T.5.2.3 Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8 +T.5.2.4 Frame Members or existing components that exceed the scatter shield material requirements +may be used as part of the shield. +T.5.2.5 Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm) +T.5.2.6 If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. +T.5.2.7 Chain Drive - Scatter shields for chains must: +a. Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed) +b. Have a minimum width equal to three times the width of the chain +c. Be centered on the center line of the chain +d. Stay aligned with the chain under all conditions +T.5.2.8 Non-metallic Belt Drive - Scatter shields for belts must: +a. Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6 +b. Have a minimum width that is equal to 1.7 times the width of the belt. +c. Be centered on the center line of the belt +d. Stay aligned with the belt under all conditions +T.5.2.9 Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or +1/4” minimum diameter Critical Fasteners, see T.8.2 +T.5.2.10 Finger Guards +a. Must cover any drivetrain parts that spin while the vehicle is stationary with the engine +running. +b. Must be made of material sufficient to resist finger forces. +c. Mesh or perforated material may be used but must prevent the passage of a 12 mm +diameter object through the guard. +T.5.3 Motor Protection (EV Only) +T.5.3.1 The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. +The motor casing may be the original motor casing, a team built motor casing or the original +casing with additional material added to achieve the minimum required thickness. +• Minimum thickness for aluminum alloy 6061-T6: 3.0 mm +If lower grade aluminum alloy is used, then the material must be thicker to provide an +equivalent strength. +• Minimum thickness for steel: 2.0 mm +T.5.3.2 A Scatter Shield must be included around the Motor(s) when one or the two: +• The motor casing rotates around the stator +• The motor case is perforated +T.5.3.3 The Motor Scatter Shield must be: +• Made from aluminum alloy 6061-T6 or steel +• Minimum thickness: 1.0 mm + +Formula SAE® Rules 2025 © 2024 SAE International Page 68 of 143 +Version 1.0 31 Aug 2024 +T.5.4 Coolant Fluid +T.5.4.1 Water cooled engines must use only plain water with no additives of any kind +T.5.4.2 Liquid coolant for electric motors, Accumulators or HV electronics must be one of: +• plain water with no additives +• oil +T.5.4.3 (EV only) Liquid coolant must not directly touch the cells in the Accumulator +T.5.5 System Sealing +T.5.5.1 Any cooling or lubrication system must be sealed to prevent leakage +T.5.5.2 The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type. +T.5.5.3 Flammable liquid and vapors or other leaks must not collect or contact the driver +T.5.5.4 Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at +the locations: +a. The lowest point of the chassis +b. Rearward of the driver position, forward of a fuel tank or other liquid source +c. If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is +necessary +T.5.5.5 Absorbent material and open collection devices (regardless of material) are prohibited in +compartments containing engine, drivetrain, exhaust and fuel systems below the highest +point on the exhaust system. +T.5.6 Catch Cans +T.5.6.1 The vehicle must have separate containers (catch cans) to retain fluids from any vents from +the powertrain systems. +T.5.6.2 Catch cans must be: +a. Capable of containing boiling water without deformation +b. Located rearwards of the Firewall below the driver’s shoulder level +c. Positively retained, using no tie wraps or tape +T.5.6.3 Catch cans for the engine coolant system and engine lubrication system must have a minimum +capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher +T.5.6.4 Catch cans for any vent on other systems containing liquid lubricant or coolant, including a +differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid +being contained or 0.5 liter, whichever is higher +T.5.6.5 Any catch can on the cooling system must vent through a hose with a minimum internal +diameter of 3 mm down to the bottom levels of the Chassis. +T.6 PRESSURIZED SYSTEMS +T.6.1 Compressed Gas Cylinders and Lines +Any system on the vehicle that uses a compressed gas as an actuating medium must meet: +T.6.1.1 Working Gas - The working gas must be non flammable + +Formula SAE® Rules 2025 © 2024 SAE International Page 69 of 143 +Version 1.0 31 Aug 2024 +T.6.1.2 Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed +and built for the pressure being used, certified by an accredited testing laboratory in the +country of its origin, and labeled or stamped appropriately. +T.6.1.3 Pressure Regulation - The pressure regulator must be mounted directly onto the gas +cylinder/tank +T.6.1.4 Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible +operating pressure of the system. +T.6.1.5 Insulation - The gas cylinder/tank must be insulated from any heat sources +T.6.1.6 Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system +must meet one of the two: +• Made from metal +• Meet the thermal protection requirements of T.1.6.3 +T.6.1.7 Cylinder Location - The gas cylinder/tank and the pressure regulator must be: +a. Securely mounted inside the Chassis +b. Located outside of the Cockpit +c. In a position below the height of the Shoulder Belt Mount T.2.6 +d. Aligned so the axis of the gas cylinder/tank does not point at the driver +T.6.1.8 Protection – The gas cylinder/tank and lines must be protected from rollover, collision from +any direction, or damage resulting from the failure of rotating equipment +T.6.1.9 The driver must be protected from failure of the cylinder/tank and regulator +T.6.2 High Pressure Hydraulic Pumps and Lines +This section T.6.2 does not apply to Brake lines or hydraulic clutch lines +T.6.2.1 The driver and anyone standing outside the vehicle must be shielded from any hydraulic +pumps and lines with line pressures of 2100 kPa or higher. +T.6.2.2 The shields must be steel or aluminum with a minimum thickness of 1 mm. +T.7 BODYWORK AND AERODYNAMIC DEVICES +T.7.1 Aerodynamic Devices +T.7.1.1 Aerodynamic Device +A part on the vehicle which guides airflow for purposes including generation of downforce +and/or change of drag. +Examples include but are not limited to: wings, undertray, splitter, endplates, vanes +T.7.1.2 No power device may be used to move or remove air from under the vehicle. Power ground +effects are strictly prohibited. +T.7.1.3 All Aerodynamic Devices must meet: +a. The mounting system provides sufficient rigidity in the static condition +b. The Aerodynamic Devices do not oscillate or move excessively when the vehicle is +moving. Refer to IN.8.2 +T.7.1.4 All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) +must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. + +Formula SAE® Rules 2025 © 2024 SAE International Page 70 of 143 +Version 1.0 31 Aug 2024 +This may be the radius of the edges themselves, or additional permanently attached pieces +designed to meet this requirement. +T.7.1.5 Other edges that a person may touch must not be sharp +T.7.2 Bodywork +T.7.2.1 Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device +T.7.2.2 Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic +Device if is designed to, or may possibly, produce force due to aerodynamic effects +T.7.2.3 Bodywork must not contain openings into the cockpit from the front of the vehicle back to the +Main Hoop or Firewall. The cockpit opening and minimal openings around the front +suspension components are allowed. +T.7.2.4 All forward facing edges on the Bodywork that could contact people, including the nose, must +have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more +relative to the forward direction, along the top, sides and bottom of all affected edges. +T.7.3 Measurement +T.7.3.1 All Aerodynamic Device limitations are measured: +a. With the wheels pointing in the straight ahead position +b. Without a driver in the vehicle +The intent is to standardize the measurement, see GR.6.4.1 +T.7.3.2 Head Restraint Plane +A transverse vertical plane through the rearmost portion of the front face of the driver head +restraint support, excluding any padding, set (if adjustable) in its fully rearward position +T.7.3.3 Rear Aerodynamic Zone +The volume that is: +• Rearward of the Head Restraint Plane +• Inboard of two vertical planes parallel to the centerline of the chassis touching the inside +of the rear tires at the height of the hub centerline +T.7.4 Location +Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1 +T.7.5 Length +In plan view, any part of any Aerodynamic Device must be: +a. No more than 700 mm forward of the fronts of the front tires +b. No more than 250 mm rearward of the rear of the rear tires +T.7.6 Width +In plan view, any part of any Aerodynamic Device must be: +T.7.6.1 When forward of the centerline of the front wheel axles: +Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of +the front tires at the height of the hubs. +T.7.6.2 When between the centerlines of the front and rear wheel axles: + +Formula SAE® Rules 2025 © 2024 SAE International Page 71 of 143 +Version 1.0 31 Aug 2024 +Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height +of the wheel centers +T.7.6.3 When rearward of the centerline of the rear wheel axles: +In the Rear Aerodynamic Zone +T.7.7 Height +T.7.7.1 Any part of any Aerodynamic Device that is located: +a. In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground +b. Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the +ground +c. Forward of the centerline of the front wheel axles and outboard of two vertical planes +parallel to the centerline of the chassis touching the inside of the front tires at the height +of the hubs must be no higher than 250 mm above the ground +T.7.7.2 Bodywork height is not restricted when the Bodywork is located: +• Between the transverse vertical planes positioned at the front and rear axle centerlines +• Inside two vertical fore and aft planes 400 mm outboard from the centerline on each +side of the vehicle +T.8 FASTENERS +T.8.1 Critical Fasteners +A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule +T.8.2 Critical Fastener Requirements +T.8.2.1 Any Critical Fastener must meet, at minimum, one of these: +a. SAE Grade 5 +b. Metric Class 8.8 +c. AN/MS Specifications + +Formula SAE® Rules 2025 © 2024 SAE International Page 72 of 143 +Version 1.0 31 Aug 2024 +d. Equivalent to or better than above, as approved by a Rules Question or at Technical +Inspection +T.8.2.2 All threaded Critical Fasteners must be one of the two: +• Hex head +• Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts) +T.8.2.3 All Critical Fasteners must be secured from unintentional loosening with Positive Locking +Mechanisms see T.8.3 +T.8.2.4 A minimum of two full threads must project from any lock nut. +T.8.2.5 Some Critical Fastener applications have additional requirements that are provided in the +applicable section. +T.8.3 Positive Locking Mechanisms +T.8.3.1 Positive Locking Mechanisms are defined as those which: +a. Technical Inspectors / team members can see that the device/system is in place (visible). +b. Do not rely on the clamping force to apply the locking or anti vibration feature. +Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming +completely loose +T.8.3.2 Examples of acceptable Positive Locking Mechanisms include, but are not limited to: +a. Correctly installed safety wiring +b. Cotter pins +c. Nylon lock nuts (where temperature does not exceed 80°C) +d. Prevailing torque lock nuts +Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT +meet the positive locking requirement +T.8.3.3 If the Positive Locking Mechanism is by prevailing torque lock nuts: +a. Locking fasteners must be in as new condition +b. A supply of replacement fasteners must be presented in Technical Inspection, including +any attachment method +T.8.4 Requirements for All Fasteners +Adjustable tie rod ends must be constrained with a jam nut to prevent loosening. +T.9 ELECTRICAL EQUIPMENT +T.9.1 Definitions +T.9.1.1 High Voltage – HV +Any voltage more than 60 V DC or 25 V AC RMS +T.9.1.2 Low Voltage - LV +Any voltage less than and including 60 V DC or 25 V AC RMS +T.9.1.3 Normally Open +A type of electrical relay or contactor that allows current flow only in the energized state + +Formula SAE® Rules 2025 © 2024 SAE International Page 73 of 143 +Version 1.0 31 Aug 2024 +T.9.2 Low Voltage Batteries +T.9.2.1 All Low Voltage Batteries and onboard power supplies must be securely mounted inside the +Chassis below the height of the Shoulder Belt Mount T.2.6 +T.9.2.2 All Low Voltage batteries must have Overcurrent Protection that trips at or below the +maximum specified discharge current of the cells +T.9.2.3 The hot (ungrounded) terminal must be insulated. +T.9.2.4 Any wet cell battery located in the driver compartment must be enclosed in a nonconductive +marine type container or equivalent. +T.9.2.5 Batteries or battery packs based on lithium chemistry must meet one of the two: +a. Have a rigid, sturdy casing made from Nonflammable Material +b. A commercially available battery designed as an OEM style replacement +T.9.2.6 All batteries using chemistries other than lead acid must be presented at Technical Inspection +with markings identifying it for comparison to a datasheet or other documentation proving +the pack and supporting electronics meet all rules requirements +T.9.3 Master Switches +Each Master Switch ( IC.9.3 / EV.7.9 ) must meet: +T.9.3.1 Location +a. On the driver’s right hand side of the vehicle +b. In proximity to the Main Hoop +c. At the driver's shoulder height +d. Able to be easily operated from outside the vehicle +T.9.3.2 Characteristics +a. Be of the rotary mechanical type +b. Be rigidly mounted to the vehicle and must not be removed during maintenance +c. Mounted where the rotary axis of the key is near horizontal and across the vehicle +d. The ON position must be in the horizontal position and must be marked accordingly +e. The OFF position must be clearly marked +f. (EV Only) Operated with a red removable key that must only be removable in the +electrically open position +T.9.4 Inertia Switch +T.9.4.1 Inertia Switch Requirement +• (EV) Must have an Inertia Switch +• (IC) Should have an Inertia Switch +T.9.4.2 The Inertia Switch must be: +a. A Sensata Resettable Crash Sensor or equivalent +b. Mechanically and rigidly attached to the vehicle +c. Removable to test functionality + +Formula SAE® Rules 2025 © 2024 SAE International Page 74 of 143 +Version 1.0 31 Aug 2024 +T.9.4.3 Inertia Switch operation: +a. Must trigger due to a longitudinal impact load which decelerates the vehicle at between +8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the +Sensata device) +b. Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered +c. Must latch until manually reset +d. May be reset by the driver from inside the driver's cell + +Formula SAE® Rules 2025 © 2024 SAE International Page 75 of 143 +Version 1.0 31 Aug 2024 +VE - VEHICLE AND DRIVER EQUIPMENT +VE.1 VEHICLE IDENTIFICATION +VE.1.1 Vehicle Number +VE.1.1.1 The assigned vehicle number must appear on the vehicle as follows: +a. Locations: in three places, on the front of the chassis and the left and right sides +b. Height: 150 mm minimum +c. Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive +numbers) +d. Stroke Width and Spacing between numbers: 18 mm minimum +e. Color: White numbers on a black background OR black numbers on a white background +f. Background: round, oval, square or rectangular +g. Spacing: 25 mm minimum between the edge of the numbers and the edge of the +background +h. The numbers must not be obscured by parts of the vehicle +VE.1.1.2 Additional letters or numerals must not show before or after the vehicle number +VE.1.2 School Name +Each vehicle must clearly display the school name. +a. Abbreviations are allowed if unique and generally recognized +b. The name must be in Roman characters minimum 50 mm high on the left and right sides +of the vehicle. +c. The characters must be put on a high contrast background in an easily visible location +d. The school name may also appear in non Roman characters, but the Roman character +version must be uppermost on the sides. +VE.1.3 SAE Logo +The SAE International Logo must be displayed on the front and/or the left and right sides of +the vehicle in a prominent location. +VE.1.4 Inspection Sticker +The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: +• A clear and unobstructed area, minimum 25 cm wide x 20 cm high +• Located on the upper front surface of the nose along the vehicle centerline +VE.1.5 Transponder / RFID Tag +VE.1.5.1 Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the +specified type(s) +VE.1.5.2 Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information +and mounting details +VE.2 VEHICLE EQUIPMENT +VE.2.1 Jacking Point +VE.2.1.1 A Jacking Point must be provided at the rear of the vehicle + +Formula SAE® Rules 2025 © 2024 SAE International Page 76 of 143 +Version 1.0 31 Aug 2024 +VE.2.1.2 The Jacking Point must be: +a. Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the +FSAE Online website +b. Visible to a person standing 1 m behind the vehicle +c. Color: Orange +d. Oriented laterally and perpendicular to the centerline of the vehicle +e. Made from round, 25 - 30 mm OD aluminum or steel tube +f. Exposed around the lower 180° of its circumference over a minimum length of 280 mm +g. Access from the rear of the tube must be unobstructed for 300 mm or more of its length +h. The height of the tube must allow 75 mm minimum clearance from the bottom of the +tube to the ground +i. When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the +wheels do not touch the ground when they are in full rebound +VE.2.2 Push Bar +Each vehicle must have a removable device which attaches to the rear of the vehicle that: +a. Allows two people, standing erect behind the vehicle, to push the vehicle around the +competition site +b. Is capable of slowing and stopping the forward motion of the vehicle and pulling it +rearwards +VE.2.3 Fire Extinguisher +VE.2.3.1 Each team must have two or more fire extinguishers. +a. One extinguisher must readily be available in the team’s paddock area +b. One extinguisher must accompany the vehicle when moved using the Push Bar +A commercially available on board fire system may be used instead of the fire +extinguisher that accompanies the vehicle +VE.2.3.2 Hand held fire extinguishers must NOT be mounted on or in the vehicle +VE.2.3.3 Each fire extinguisher must meet these: +a. Capacity: 0.9 kg (2 lbs) +b. Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and +Halon extinguishers and systems are prohibited. +c. Equipped with a manufacturer installed pressure/charge gauge. +d. Minimum acceptable ratings: +• USA, Canada & Brazil: 10BC or 1A 10BC +• Europe: 34B or 5A 34B +• Australia: 20BE or 1A 10BE +e. Extinguishers of larger capacity (higher numerical ratings) are acceptable. +VE.2.4 Electrical Equipment (EV Only) +These items must accompany the vehicle at all times: +• Two pairs of High Voltage insulating gloves + +Formula SAE® Rules 2025 © 2024 SAE International Page 77 of 143 +Version 1.0 31 Aug 2024 +• A multimeter +VE.2.5 Camera Mounts +VE.2.5.1 The mounts for video/photographic cameras must be of a safe and secure design. +VE.2.5.2 All camera installations must be approved at Technical Inspection. +VE.2.5.3 Helmet mounted cameras and helmet camera mounts are prohibited. +VE.2.5.4 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a +minimum of two points on different sides of the camera body. +VE.2.5.5 If a tether is used to restrain the camera, the tether length must be limited to prevent contact +with the driver. +VE.3 DRIVER EQUIPMENT +VE.3.1 General +VE.3.1.1 Any Driver Equipment: +a. Must be in good condition with no tears, rips, open seams, areas of significant wear, +abrasions or stains which might compromise performance. +b. Must fit properly +c. May be inspected at any time +VE.3.1.2 Flame Resistant Material +For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, +Polybenzimidazole (common name PBI) and Proban. +VE.3.1.3 Synthetic Material – Prohibited +Shirts, socks or other undergarments (not to be confused with flame resistant underwear) +made from nylon or any other synthetic material which could melt when exposed to high heat +are prohibited. +VE.3.1.4 Officials may impound any non approved Driver Equipment until the end of the competition. +VE.3.2 Helmet +VE.3.2.1 The driver must wear a helmet which: +a. Is closed face with an integral, immovable chin guard +b. Contains an integrated visor/face shield supplied with the helmet +c. Meets an approved standard +d. Is properly labeled for that standard +VE.3.2.2 Acceptable helmet standards are listed below. Any additional approved standards are shown +on the Technical Inspection Form or the FAQ on the FSAE Online website +a. Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, +SA2025 +b. SFI Specs 31.1/2015, 41.1/2015 +c. FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) + +Formula SAE® Rules 2025 © 2024 SAE International Page 78 of 143 +Version 1.0 31 Aug 2024 +VE.3.3 Driver Gear +The driver must wear: +VE.3.3.1 Driver Suit +A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers +the body from the neck to the ankles and the wrists. +Each suit must meet one or more of these standards and be labeled as such: +• SFI 3.2A/5 (or higher ex: /10, /15, /20) +• SFI 3.4/5 (or higher ex: /10, /15, /20) +• FIA Standard 1986 +• FIA Standard 8856-2000 +• FIA Standard 8856-2018 +VE.3.3.2 Underclothing +All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under +their approved Driver Suit. +VE.3.3.3 Balaclava +A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame +Resistant Material +VE.3.3.4 Socks +Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit +and the Shoes. +VE.3.3.5 Shoes +Shoes or boots made from Flame Resistant Material that meet an approved standard and +labeled as such: +• SFI Spec 3.3 +• FIA Standard 8856-2000 +• FIA Standard 8856-2018 +VE.3.3.6 Gloves +Gloves made from Flame Resistant Material. +Gloves of all leather construction or fire retardant gloves constructed using leather palms with +no insulating Flame Resistant Material underneath are not acceptable. +VE.3.3.7 Arm Restraints +a. Arm restraints must be worn in a way that the driver can release them and exit the +vehicle unassisted regardless of the vehicle’s position. +b. Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec +3.3 and labeled as such meet this requirement. + +Formula SAE® Rules 2025 © 2024 SAE International Page 79 of 143 +Version 1.0 31 Aug 2024 +IC - INTERNAL COMBUSTION ENGINE VEHICLES +IC.1 GENERAL REQUIREMENTS +IC.1.1 Engine Limitations +IC.1.1.1 The engine(s) used to power the vehicle must: +a. Be a piston engine(s) using a four stroke primary heat cycle +b. Have a total combined displacement less than or equal to 710 cc per cycle. +IC.1.1.2 Hybrid powertrains, such as those using electric motors running off stored energy, are +prohibited. +IC.1.1.3 All waste/rejected heat from the primary heat cycle may be used. The method of conversion is +not limited to the four stroke cycle. +IC.1.1.4 The engine may be modified within the restrictions of the rules. +IC.1.2 Air Intake and Fuel System Location +All parts of the engine air system and fuel control, delivery and storage systems (including the +throttle or carburetor, and the complete air intake system, including the air cleaner and any +air boxes) must lie inside the Tire Surface Envelope F.1.14 +IC.2 AIR INTAKE SYSTEM +IC.2.1 General +IC.2.2 Intake System Location +IC.2.2.1 The Intake System must meet IC.1.2 +IC.2.2.2 Any portion of the air intake system that is less than 350 mm above the ground must be +shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable. +IC.2.3 Intake System Mounting +IC.2.3.1 The intake manifold must be securely attached to the engine block or cylinder head with +brackets and mechanical fasteners. +• Hose clamps, plastic ties, or safety wires do not meet this requirement. +• The use of rubber bushings or hose is acceptable for creating and sealing air passages, +but is not a structural attachment. +IC.2.3.2 Threaded fasteners used to secure and/or seal the intake manifold must have a Positive +Locking Mechanism, see T.8.3. +IC.2.3.3 Intake systems with significant mass or cantilever from the cylinder head must be supported +to prevent stress to the intake system. +a. Supports to the engine must be rigid. +b. Supports to the Chassis must incorporate some isolation to allow for engine movement +and chassis flex. +IC.2.4 Intake System Restrictor +IC.2.4.1 All airflow to the engine(s) must pass through a single circular restrictor in the intake system. +IC.2.4.2 The only allowed sequence of components is: +a. For naturally aspirated engines, the sequence must be: throttle body, restrictor, and +engine. + +Formula SAE® Rules 2025 © 2024 SAE International Page 80 of 143 +Version 1.0 31 Aug 2024 +b. For turbocharged or supercharged engines, the sequence must be: restrictor, +compressor, throttle body, engine. +IC.2.4.3 The maximum restrictor diameters at any time during the competition are: +a. Gasoline fueled vehicles 20.0 mm +b. E85 fueled vehicles 19.0 mm +IC.2.4.4 The restrictor must be located to facilitate measurement during Technical Inspection +IC.2.4.5 The circular restricting cross section must NOT be movable or flexible in any way +IC.2.4.6 The restrictor must not be part of the movable portion of a barrel throttle body. +IC.2.5 Turbochargers & Superchargers +IC.2.5.1 The intake air may be cooled with an intercooler (a charge air cooler). +a. It must be located downstream of the throttle body +b. Only ambient air may be used to remove heat from the intercooler system +c. Air to air and water to air intercoolers are permitted +d. The coolant of a water to air intercooler system must meet T.5.4.1 +IC.2.5.2 If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be +positioned in the intake system as shown in IC.2.4.2.b +IC.2.5.3 Plenums must not be located anywhere upstream of the throttle body +For the purpose of definition, a plenum is any tank or volume that is a significant enlargement +of the normal intake runner system. Teams may submit their designs via a Rules Question for +review prior to competition if the legality of their proposed system is in doubt. +IC.2.5.4 The maximum allowable area of the inner diameter of the intake runner system between the restrictor and throttle body is 2825 mm 2 - -IC.2.6 Connections to Intake -Any crankcase or engine lubrication vent lines routed to the intake system must be connected -upstream of the intake system restrictor. -IC.3 THROTTLE -IC.3.1 General -IC.3.1.1 The vehicle must have a carburetor or throttle body. -a. The carburetor or throttle body may be of any size or design. -b. Boosted applications must not use carburetors. - - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 81 of 143 -Version 1.0 31 Aug 2024 -IC.3.2 Throttle Actuation Method -The throttle may be operated: -a. Mechanically by a cable or rod system IC.3.3 -b. By Electronic Throttle Control IC.4 -IC.3.3 Throttle Actuation – Mechanical -IC.3.3.1 The throttle cable or rod must: -a. Have smooth operation -b. Have no possibility of binding or sticking -c. Be minimum 50 mm from any exhaust system component and out of the exhaust stream -d. Be protected from being bent or kinked by the driver’s foot when it is operated by the -driver or when the driver enters or exits the vehicle -IC.3.3.2 The throttle actuation system must use two or more return springs located at the throttle -body. -Throttle Position Sensors (TPS) are NOT acceptable as return springs -IC.3.3.3 Failure of any component of the throttle system must not prevent the throttle returning to -the closed position. -IC.4 ELECTRONIC THROTTLE CONTROL -This section IC.4 applies only when Electronic Throttle Control is used -An Electronic Throttle Control (ETC) system may be used. This is a device or system which -may change the engine throttle setting based on various inputs. -IC.4.1 General Design -IC.4.1.1 The electronic throttle must automatically close (return to idle) when power is removed. -IC.4.1.2 The electronic throttle must use minimum two sources of energy capable of returning the -throttle to the idle position. -a. One of the sources may be the device (such as a DC motor) that normally operates the -throttle -b. The other device(s) must be a throttle return spring that can return the throttle to the -idle position if loss of actuator power occurs. -c. Springs in the TPS are not acceptable throttle return springs -IC.4.1.3 The ETC system may blip the throttle during downshifts when proven that unintended -acceleration can be prevented. Document the functional analysis in the ETC Systems Form -IC.4.2 Commercial ETC System -IC.4.2.1 An ETC system that is commercially available, but does not comply with the regulations, may -be used, if approved prior to the event. -IC.4.2.2 To obtain approval, submit a Rules Question which includes: -• Which ETC system the team is seeking approval to use. -• The specific ETC rule(s) that the commercial system deviates from. -• Sufficient technical details of these deviations to determine the acceptability of the -commercial system. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 82 of 143 -Version 1.0 31 Aug 2024 -IC.4.3 Documentation -IC.4.3.1 The ETC Notice of Intent: -• Must be submitted to give the intent to run ETC -• May be used to screen which teams are allowed to use ETC -IC.4.3.2 The ETC Systems Form must be submitted in order to use ETC -IC.4.3.3 Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document -Requirements -IC.4.3.4 Late or non submission will prevent use of ETC, see DR.3.4.1 -IC.4.4 Throttle Position Sensor - TPS -IC.4.4.1 The TPS must measure the position of the throttle or the throttle actuator. -Throttle position is defined as percent of travel from fully closed to wide open where 0% is -fully closed and 100% is fully open. -IC.4.4.2 Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and -reference lines only if effects of supply and/or reference line voltage offsets can be detected. -IC.4.4.3 Implausibility is defined as a deviation of more than 10% throttle position between the -sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be -considered on a case by case basis and require justification in the ETC Systems Form -IC.4.4.4 If an Implausibility occurs between the values of the two TPSs and persists for more than 100 -msec, the power to the electronic throttle must be immediately shut down. -IC.4.4.5 If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% -throttle position may be used to define the throttle position target and the 3rd TPS may be -ignored. -IC.4.4.6 Each TPS must be able to be checked during Technical Inspection by having one of: -a. A separate detachable connector(s) for any TPS signal(s) to the main ECU without -affecting any other connections -b. An inline switchable breakout box available that allows disconnection of each TPS -signal(s) to the main ECU without affecting any other connections -IC.4.4.7 The TPS signals must be sent directly to the throttle controller using an analogue signal or via -a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring -must be detectable by the controller and must be treated like Implausibility. -IC.4.4.8 When an analogue signal is used, the TPSs will be considered to have failed when they achieve -an open circuit or short circuit condition which generates a signal outside of the normal -operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. -IC.4.4.9 When any kind of digital data transmission is used to transmit the TPS signal, -a. The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. -b. The failures to be considered must include but are not limited to the failure of the TPS, -TPS signals being out of range, corruption of the message and loss of messages and the -associated time outs. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 83 of 143 -Version 1.0 31 Aug 2024 -IC.4.5 Accelerator Pedal Position Sensor - APPS -Refer to T.4.2 for specific requirements of the APPS -IC.4.6 Brake System Encoder - BSE -Refer to T.4.3 for specific requirements of the BSE -IC.4.7 Throttle Plausibility Checks -IC.4.7.1 Brakes and Throttle Position -a. The power to the electronic throttle must be shut down if the mechanical brakes are -operated and the TPS signals that the throttle is open by more than a permitted amount -for more than one second. -b. An interval of one second is allowed for the throttle to close (return to idle). Failure to -achieve this in the required interval must result in immediate shut down of fuel flow and -the ignition system. -c. The permitted relationship between BSE and TPS may be defined by the team using a -table. This functionality must be demonstrated at Technical Inspection. -IC.4.7.2 Throttle Position vs Target -a. The power to the electronic throttle must be immediately shut down, if throttle position -differs by more than 10% from the expected target TPS position for more than one -second. -b. An interval of one second is allowed for the difference to reduce to less than 10%, failure -to achieve this in the required interval must result in immediate shut down of fuel flow -and the ignition system. -c. An error in TPS position and the resultant system shutdown must be demonstrated at -Technical Inspection. -Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. -System states displayed using calibration software must be accompanied by a detailed -explanation of the control system. -IC.4.7.3 The electronic throttle and fuel injector/ignition system shutdown must stay active until the -TPS signals indicate the throttle is at or below the unpowered default position for one second -or longer. -IC.4.8 Brake System Plausibility Device - BSPD -IC.4.8.1 A standalone nonprogrammable circuit must be used to monitor the electronic throttle -control. -The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7 -IC.4.8.2 Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may -not be used in place of the raw sensor signals. -IC.4.8.3 The BSPD must monitor for these conditions: -a. The two of these for more than one second: -• Demand for Hard Braking IC.4.6 -• Throttle more than 10% open IC.4.4 -b. Loss of signal from the braking sensor(s) for more than 100 msec -c. Loss of signal from the throttle sensor(s) for more than 100 msec - - -Formula SAE® Rules 2025 © 2024 SAE International Page 84 of 143 -Version 1.0 31 Aug 2024 -d. Removal of power from the BSPD circuit -IC.4.8.4 When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2 -IC.4.8.5 The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON -IC.4.8.6 The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF -IC.4.8.7 The BSPD signals and function must be able to be checked during Technical Inspection by -having one of: -a. A separate set of detachable connectors for any signals from the braking sensor(s), -throttle sensor(s) and removal of power to only the BSPD device. -b. An inline switchable breakout box available that allows disconnection of the brake -sensor(s), throttle sensor(s) individually and power to only the BSPD device. -IC.5 FUEL AND FUEL SYSTEM -IC.5.1 Fuel -IC.5.1.1 Vehicles must be operated with the fuels provided at the competition -IC.5.1.2 Fuels provided are expected to be Gasoline and E85. Consult the individual competition -websites for fuel specifics and other information. -IC.5.1.3 No agents other than the provided fuel and air may go into the combustion chamber. -IC.5.2 Fuel System -IC.5.2.1 The Fuel System must meet these design criteria: -a. The Fuel Tank is capable of being filled to capacity without manipulating the tank or the -vehicle in any manner. -b. During refueling on a level surface, the formation of air cavities or other effects that -cause the fuel level observed at the sight tube to drop after movement or operation of -the vehicle (other than due to consumption) are prevented. -c. Spillage during refueling cannot contact the driver position, exhaust system, hot engine -parts, or the ignition system. -IC.5.2.2 The Fuel System location must meet IC.1.2 and F.9 -IC.5.2.3 A Firewall must separate the Fuel Tank from the driver, per T.1.8 -IC.5.3 Fuel Tank -The part(s) of the fuel containment device that is in contact with the fuel. -IC.5.3.1 Fuel Tanks made of a rigid material must: -a. Be securely attached to the vehicle structure. The mounting method must not allow -chassis flex to load the Fuel Tank. -b. Not be used to carry any structural loads; from Roll Hoops, suspension, engine or -gearbox mounts -IC.5.3.2 Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag -tank: -a. Must be enclosed inside a rigid fuel tank container which is securely attached to the -vehicle structure. -b. The Fuel Tank container may be load carrying -IC.5.3.3 Any size Fuel Tank may be used - - -Formula SAE® Rules 2025 © 2024 SAE International Page 85 of 143 -Version 1.0 31 Aug 2024 -IC.5.3.4 The Fuel Tank, by design, must not have a variable capacity. -IC.5.3.5 The Fuel System must have a provision for emptying the Fuel Tank if required. -IC.5.4 Fuel Filler Neck & Sight Tube -IC.5.4.1 All Fuel Tanks must have a Fuel Filler Neck which must be: -a. Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler -cap -IC.5.4.2 The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be: -a. Minimum 125 mm vertical height above the top level of the Fuel Tank -b. Angled no more than 30° from the vertical -IC.5.4.3 The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the -fuel level which must be: -a. Visible vertical height: 125 mm minimum -b. Inside diameter: 6 mm minimum -c. Above the top surface of the Fuel Tank -IC.5.4.4 A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules -Question or technical inspectors at the event. - -IC.5.4.5 Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm -and 25 mm below the top of the visible portion of the sight tube. -This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure -the amount of fuel used during the Endurance Event. -IC.5.4.6 The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, -the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, -etc) or the need to remove any parts (body panels, etc). -IC.5.4.7 The individual filling the tank must have complete direct access to the filler neck opening with -a standard two gallon gas can assembly. -The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top -IC.5.4.8 The filler neck must have a fuel cap that can withstand severe vibrations or high pressures -such as could occur during a vehicle rollover event - - - - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 86 of 143 -Version 1.0 31 Aug 2024 -IC.5.5 Fuel Tank Filling -IC.5.5.1 Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials. -IC.5.5.2 The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point. -IC.5.5.3 If, for any reason, the fuel level changes after the team have moved the vehicle, then no -additional fuel will be added, unless fueling after Endurance, see D.13.2.5 -IC.5.6 Venting Systems -IC.5.6.1 Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during -hard cornering or acceleration. -IC.5.6.2 All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted. -IC.5.6.3 All fuel vent lines must exit outside the bodywork. -IC.5.7 Fuel Lines -IC.5.7.1 Fuel lines must be securely attached to the vehicle and/or engine. -IC.5.7.2 All fuel lines must be shielded from possible rotating equipment failure or collision damage. -IC.5.7.3 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. -IC.5.7.4 Any rubber fuel line or hose used must meet the two: -a. The components over which the hose is clamped must have annular bulb or barbed -fittings to retain the hose -b. Clamps specifically designed for fuel lines must be used. -These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, -and rolled edges to prevent the clamp cutting into the hose -IC.5.7.5 Worm gear type hose clamps must not be used on any fuel line. -IC.6 FUEL INJECTION -IC.6.1 Low Pressure Injection (LPI) -Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most -Port Fuel Injected (PFI) fuel systems are low pressure. -IC.6.1.1 Any Low Pressure flexible fuel lines must be one of: -• Metal braided hose with threaded fittings (crimped on or reusable) -• Reinforced rubber hose with some form of abrasion resistant protection -IC.6.1.2 Fuel rail and mounting requirements: -a. Unmodified OEM Fuel Rails are acceptable, regardless of material. -b. Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable -materials are prohibited. -c. The fuel rail must be securely attached to the manifold, engine block or cylinder head -with brackets and mechanical fasteners. -Hose clamps, plastic ties, or safety wires do not meet this requirement. -d. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 87 of 143 -Version 1.0 31 Aug 2024 -IC.6.2 High Pressure Injection (HPI) / Direct Injection (DI) -IC.6.2.1 Definitions -a. High Pressure fuel systems - those functioning at 10 Bar pressure or above -b. Direct Injection fuel systems - where the injection occurs directly into the combustion -system -Direct Injection systems often utilize a low pressure electric fuel pump and high pressure -mechanical “boost” pump driven off the engine. -c. High Pressure Fuel Lines - those between the boost pump and injectors -d. Low Pressure Fuel Lines - from the electric supply pump to the boost pump -IC.6.2.2 All High Pressure Fuel Lines must: -a. Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel -reinforcement and visible Nomex tracer yarn. Equivalent products may be used with -prior approval. -b. Not incorporate elastomeric seals -c. Be rigidly connected every 100 mm by mechanical fasteners to structural engine -components such as cylinder heads or block -IC.6.2.3 Any Low Pressure flexible Fuel Lines must be one of: -• Metal braided hose with threaded fittings (crimped on or reusable) -• Reinforced rubber hose with some form of abrasion resistant protection -IC.6.2.4 Fuel rail mounting requirements: -a. The fuel rail must be securely attached to the engine block or cylinder head with brackets -and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this -requirement. -b. The fastening method must be sufficient to hold the fuel rail in place with the maximum -regulated pressure acting on the injector internals and neglecting any assistance from -cylinder pressure acting on the injector tip. -c. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 -IC.6.2.5 High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as -the cylinder head or engine block. -IC.6.2.6 Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the -fuel system in parallel with the DI boost pump. The external regulator must be used even if -the DI boost pump comes equipped with an internal regulator. -IC.7 EXHAUST AND NOISE CONTROL -IC.7.1 Exhaust Protection -IC.7.1.1 The exhaust system must be separated from any of these components by means given in -T.1.6.3: -a. Flammable materials, including the fuel and fuel system, the oil and oil system -b. Thermally sensitive components, including brake lines, composite materials, and -batteries - - -Formula SAE® Rules 2025 © 2024 SAE International Page 88 of 143 -Version 1.0 31 Aug 2024 -IC.7.2 Exhaust Outlet -IC.7.2.1 The exhaust must be routed to prevent the driver from fumes at any speed considering the -draft of the vehicle -IC.7.2.2 The Exhaust Outlet(s) must be: -a. No more than 45 cm aft of the centerline of the rear axle -b. No more than 60 cm above the ground. -IC.7.2.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in -front of the Main Hoop must be shielded to prevent contact by persons approaching the -vehicle or a driver exiting the vehicle -IC.7.2.4 Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an -exhaust manifold or exhaust system. -IC.7.3 Variable Exhaust -IC.7.3.1 Adjustable tuning or throttling devices are permitted. -IC.7.3.2 Manually adjustable tuning devices must require tools to change -IC.7.3.3 Refer to IN.10.2 for additional requirements during the Noise Test -IC.7.4 Connections to Exhaust -Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum -devices that connect directly to the exhaust system, are prohibited. -IC.7.5 Noise Level and Testing -IC.7.5.1 The vehicle must stay below the permitted sound level at all times IN.10.5 -IC.7.5.2 Sound level will be verified during Technical Inspection, refer to IN.10 -IC.8 ELECTRICAL -IC.8.1 Starter -Each vehicle must start the engine using an onboard starter at all times -IC.8.2 Batteries -Refer to T.9.2 for specific requirements of Low Voltage batteries -IC.8.3 Voltage Limit -IC.8.3.1 Voltage between any two electrical connections must be Low Voltage T.9.1.2 -IC.8.3.2 This voltage limit does not apply to these systems: -• High Voltage systems for ignition -• High Voltage systems for injectors -• Voltages internal to OEM charging systems designed for <60 V DC output. -IC.9 SHUTDOWN SYSTEM -IC.9.1 Shutdown Circuit -IC.9.1.1 The Shutdown Circuit consists of these components: -a. Primary Master Switch IC.9.3 -b. Cockpit Main Switch IC.9.4 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 89 of 143 -Version 1.0 31 Aug 2024 -c. (ETC Only) Brake System Plausibility Device (BSPD) IC.4.8 -d. Brake Overtravel Switch (BOTS) T.3.3 -e. Inertia Switch (if used) T.9.4 -IC.9.1.2 The team must be able to demonstrate all features and functions of the Shutdown Circuit and -components at Technical Inspection -IC.9.1.3 The international electrical symbol (a red spark on a white edged blue triangle) must be near -the Primary Master Switch and the Cockpit Main Switch. -IC.9.2 Shutdown Circuit Operation -IC.9.2.1 The Shutdown Circuit must Open upon operation of, or detection from any of the components -listed in IC.9.1.1 -IC.9.2.2 When the Shutdown Circuit Opens, it must: -a. Stop the engine -b. Disconnect power to the: -• Fuel Pump(s) -• Ignition -• (ETC only) Electronic Throttle IC.4.1.1 -IC.9.3 Primary Master Switch -IC.9.3.1 Configuration and Location - The Primary Master Switch must meet T.9.3 -IC.9.3.2 Function - the Primary Master Switch must: -a. Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel -pump(s), ignition and electrical controls. -All battery current must flow through this switch -b. Be direct acting, not act through a relay or logic. -IC.9.4 Cockpit Main Switch -IC.9.4.1 Configuration - The Cockpit Main Switch must: -a. Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF -position) -b. Have a diameter of 24 mm minimum -IC.9.4.2 Location – The Cockpit Main Switch must be: -a. In easy reach of the driver when in a normal driving position wearing Harness -b. Adjacent to the Steering Wheel -c. Unobstructed by the Steering Wheel or any other part of the vehicle -IC.9.4.3 Function - the Cockpit Main Switch may act through a relay - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 90 of 143 -Version 1.0 31 Aug 2024 -EV - ELECTRIC VEHICLES -EV.1 DEFINITIONS -EV.1.1 Tractive System – TS -Every part electrically connected to the Motor(s) and/or Accumulator(s) -EV.1.2 Grounded Low Voltage - GLV -Every electrical part that is not part of the Tractive System -EV.1.3 Accumulator -All the battery cells or super capacitors that store the electrical energy to be used by the -Tractive System -EV.2 DOCUMENTATION -EV.2.1 Electrical System Form - ESF -EV.2.1.1 Each team must submit an Electrical System Form (ESF) with a clearly structured -documentation of the entire vehicle electrical system (including control and Tractive System). -Submission and approval of the ESF does not mean that the vehicle will automatically pass -Electrical Technical Inspection with the described items / parts. -EV.2.1.2 The ESF may provide guidance or more details than the Formula SAE Rules. -EV.2.1.3 Use the format provided and submit the ESF as given in section DR - Document Requirements -EV.2.2 Submission Penalties -Penalties for the ESF are imposed as given in section DR - Document Requirements. -EV.3 ELECTRICAL LIMITATIONS -EV.3.1 Operation -EV.3.1.1 Supplying power to the motor to drive the vehicle in reverse is prohibited -EV.3.1.2 Drive by wire control of wheel torque is permitted -EV.3.1.3 Any algorithm or electronic control unit that can adjust the requested wheel torque may only -decrease the total driver requested torque and must not increase it -EV.3.2 Energy Meter -EV.3.2.1 All Electric Vehicles must run with the Energy Meter provided at the event -Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter -EV.3.2.2 The Energy Meter must be installed in an easily accessible location -EV.3.2.3 All Tractive System power must flow through the Energy Meter -EV.3.2.4 Each team must download their Energy Meter data in a manner and timeframe specified by -the organizer -EV.3.2.5 Power and Voltage limits will be checked by the Energy Meter data -Energy is calculated as the time integrated value of the measured voltage multiplied by the -measured current logged by the Energy Meter. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 91 of 143 -Version 1.0 31 Aug 2024 -EV.3.3 Power and Voltage -EV.3.3.1 The maximum power measured by the Energy Meter must not exceed 80 kW -EV.3.3.2 The maximum permitted voltage that may occur between any two points must not exceed -600 V DC -EV.3.3.3 The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr -EV.3.4 Violations -EV.3.4.1 A Violation occurs when one or two of these exist: -a. Use of more than the specified maximum power EV.3.3.1 -b. Exceed the maximum voltage EV.3.3.2 -for one or the two conditions: -• Continuously for 100 ms or more -• After a moving average over 500 ms is applied -EV.3.4.2 Missing Energy Meter data may be treated as a Violation, subject to official discretion -EV.3.4.3 Tampering, or attempting to tamper with the Energy Meter or its data may result in -Disqualification (DQ) -EV.3.5 Penalties -EV.3.5.1 Violations during the Acceleration, Skidpad, Autocross Events: -a. Each run with one or more Violations will Disqualify (DQ) the best run of the team -b. Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the -two best runs -EV.3.5.2 Violations during the Endurance event: -• Each Violation: 60 second penalty D.14.2.1 -EV.3.5.3 Repeated Violations may void Inspection Approval or receive additional penalties up to and -including Disqualification, subject to official discretion. -EV.3.5.4 The respective data of each run in which a team has a Violation and the resulting decision may -be made public. -EV.4 COMPONENTS -EV.4.1 Motors -EV.4.1.1 Only electrical motors are allowed. The number of motors is not limited. -EV.4.1.2 Motors must meet T.5.3 -EV.4.1.3 If Motors are mounted to the suspension uprights, their cables and wiring must: -a. Include an Interlock EV.7.8 -This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive -System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or -knocked off the vehicle. -b. Reduce the length of the portions of wiring and other connections that do not meet -F.11.1.3 to the extent possible - - -Formula SAE® Rules 2025 © 2024 SAE International Page 92 of 143 -Version 1.0 31 Aug 2024 -EV.4.2 Motor Controller -The Tractive System Motor(s) must be connected to the Accumulator through a Motor -Controller. No direct connections between Motor(s) and Accumulator. -EV.4.3 Accumulator Container -EV.4.3.1 Accumulator Containers must meet F.10 -EV.4.3.2 The Accumulator Container(s) must be removable from the vehicle while still remaining rules -compliant -EV.4.3.3 The Accumulator Container(s) must be completely closed at all times (when mounted to the -vehicle and when removed from the vehicle) without the need to install extra protective -covers -EV.4.3.4 The Accumulator Container(s) may contain Holes or Openings -a. Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the -Accumulator Container(s) -b. Holes and Openings in the Accumulator Container must meet F.10.4 -c. External holes must meet EV.6.1 -EV.4.3.5 Any Accumulators that may vent an explosive gas must have a ventilation system or pressure -relief valve to release the vented gas -EV.4.3.6 Segments sealed in Accumulator Containers must have a path to a pressure relief valve -EV.4.3.7 Pressure relief valves must not have line of sight to the driver, with the Firewall installed or -removed -EV.4.3.8 Each Accumulator Container must be labelled with the: -a. School Name and Vehicle Number -b. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow -background) with: -• Triangle side length of 100 mm minimum -• Visibility from all angles, including when the lid is removed -c. Text “Always Energized” -d. Text “High Voltage” if the voltage meets T.9.1.1 -EV.4.4 Grounded Low Voltage System -EV.4.4.1 The GLV System must be: -a. A Low Voltage system that is Grounded to the Chassis -b. Able to operate with Accumulator removed from the vehicle -EV.4.4.2 The GLV System must include a Master Switch, see EV.7.9.1 -EV.4.4.3 A GLV Measuring Point (GLVMP) must be installed which is: -a. Connected to GLV System Ground -b. Next to the TSMP EV.5.8 -c. 4 mm shrouded banana jack -d. Color: Black -e. Marked “GND” - - -Formula SAE® Rules 2025 © 2024 SAE International Page 93 of 143 -Version 1.0 31 Aug 2024 -EV.4.4.4 Low Voltage Batteries must meet T.9.2 -EV.4.5 Accelerator Pedal Position Sensor - APPS -Refer to T.4.2 for specific requirements of the APPS -EV.4.6 Brake System Encoder - BSE -Refer to T.4.3 for specific requirements of the BSE -EV.4.7 APPS / Brake Pedal Plausibility Check -EV.4.7.1 Must monitor for the two conditions: -• The mechanical brakes are engaged EV.4.6, T.3.2.4 -• The APPS signals more than 25% Pedal Travel EV.4.5 -EV.4.7.2 If the two conditions in EV.4.7.1 occur at the same time: -a. Power to the Motor(s) must be immediately and completely shut down -b. The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, -with or without brake operation -The team must be able to demonstrate these actions at Technical Inspection -EV.4.8 Tractive System Part Positioning -All parts belonging to the Tractive System must meet F.11 -EV.4.9 Housings and Enclosures -EV.4.9.1 Each housing or enclosure containing parts of the Tractive System other than Motor housings, -must be labelled with the: -a. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow -background) -b. Text “High Voltage” if the voltage meets T.9.1.1 -EV.4.9.2 If the material of the housing containing parts of the Tractive System is electrically conductive, -it must have a low resistance connection to GLV System Ground, see EV.6.7 -EV.4.10 Accumulator Hand Cart -EV.4.10.1 Teams must have a Hand Cart to transport their Accumulator Container(s) -EV.4.10.2 The Hand Cart must be used when the Accumulator Container(s) are transported on the -competition site EV.11.4.2 EV.11.5.1 -EV.4.10.3 The Hand Cart must: -a. Be able to carry the load of the Accumulator Container(s) without tipping over -b. Contain a minimum of two wheels -c. Have a brake that must be: -• Released only using a dead man type switch (where the brake is always on until -released by pushing and holding a handle) or by manually lifting part of the cart off -the ground -• Able to stop the Hand Cart with a fully loaded Accumulator Container -EV.4.10.4 Accumulator Container(s) must be securely attached to the Hand Cart - - -Formula SAE® Rules 2025 © 2024 SAE International Page 94 of 143 -Version 1.0 31 Aug 2024 -EV.5 ENERGY STORAGE -EV.5.1 Accumulator -EV.5.1.1 All cells or super capacitors which store the Tractive System energy are built into Accumulator -Segments and must be enclosed in (an) Accumulator Container(s). -EV.5.1.2 Each Accumulator Segment must contain: -• Static voltage of 120 V DC maximum -• Energy of 6 MJ maximum -The contained energy of a stack is calculated by multiplying the maximum stack voltage -with the nominal capacity of the used cell(s) -• Mass of 12 kg maximum -EV.5.1.3 No further energy storage except for reasonably sized intermediate circuit capacitors are -allowed after the Energy Meter EV.3.1 - -EV.5.1.4 All Accumulator Segments and/or Accumulator Containers (including spares and replacement -parts) must be identical to the design documented in the ESF and SES -EV.5.2 Electrical Configuration -EV.5.2.1 All Tractive System components must be rated for the maximum Tractive System voltage -EV.5.2.2 If the Accumulator Container is made from an electrically conductive material: -a. The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner -wall of the Accumulator Container with an insulating material that is rated for the -maximum Tractive System voltage. -b. All conductive surfaces on the outside of the Accumulator Container must have a low -resistance connection to the GLV System Ground, see EV.6.7 -c. Any conductive penetrations, such as mounting hardware, must be protected against -puncturing the insulating barrier. -EV.5.2.3 Each Accumulator Segment must be electrically insulated with suitable Nonflammable -Material (F.1.18) (not air) for the two: -a. Between the segments in the container -b. On top of the segment -The intent is to prevent arc flashes caused by inter segment contact or by parts/tools -accidentally falling into the container during maintenance for example. -EV.5.2.4 Soldering electrical connections in the high current path is prohibited -Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are -not part of the high current path. - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 95 of 143 -Version 1.0 31 Aug 2024 -EV.5.2.5 Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, -must be rated to the maximum Tractive System voltage. -EV.5.3 Maintenance Plugs -EV.5.3.1 Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet: -a. The separated Segments meet voltage and energy limits of EV.5.1.2 -b. The separation must affect the two poles of the Segment -EV.5.3.2 Maintenance Plugs must: -a. Require the physical removal or separation of a component. Contactors or switches are -not acceptable Maintenance Plugs -b. Have access after opening the Accumulator Container and not necessary to move or -remove any other components -c. Not be physically possible to make electrical connection in any configuration other than -the design intended configuration -d. Not require tools to install or remove -e. Include a positive locking feature which prevents the plug from unintentionally becoming -loose -f. Be nonconductive on surfaces that do not provide any electrical connection -EV.5.3.3 When the Accumulator Containers are opened or Segments are removed, the Accumulator -Segments must be separated by using the Maintenance Plugs. See EV.11.4.1 -EV.5.4 Isolation Relays - IR -EV.5.4.1 All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more -Isolation Relays (IR) -EV.5.4.2 The Isolation Relays must: -a. Be a Normally Open type -b. Open the two poles of the Accumulator -EV.5.4.3 When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator -Container -EV.5.4.4 The Isolation Relays and any fuses must be separated from the rest of the Accumulator with -an electrically insulated and Nonflammable Material (F.1.18). -EV.5.4.5 A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit -Opens EV.7.2.2 -EV.5.5 Manual Service Disconnect - MSD -A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two -poles of the Accumulator EV.11.3.2 -EV.5.5.1 The Manual Service Disconnect (MSD) must be: -a. A directly accessible element, fuse or connector that will visually show disconnected -b. More than 350 mm from the ground -c. Easily visible when standing behind the vehicle -d. Operable in 10 seconds or less by an untrained person -e. Operable without removing any bodywork or obstruction or using tools - - -Formula SAE® Rules 2025 © 2024 SAE International Page 96 of 143 -Version 1.0 31 Aug 2024 -f. Directly operated. Remote operation through a long handle, rope or wire is not -acceptable. -g. Clearly marked with "MSD" -EV.5.5.2 The Energy Meter must not be used as the Manual Service Disconnect (MSD) -EV.5.5.3 An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed -EV.5.5.4 A dummy connector or similar may be used to restore isolation to meet EV.6.1.2 -EV.5.6 Precharge and Discharge Circuits -EV.5.6.1 The Accumulator must contain a Precharge Circuit. The Precharge Circuit must: -a. Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage -before closing the second IR -b. Be supplied from the Shutdown Circuit EV.7.1 -EV.5.6.2 The Intermediate Circuit must precharge before closing the second IR -a. The end of precharge must be controlled by feedback by monitoring the voltage in the -Intermediate Circuit -EV.5.6.3 The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be: -a. Wired in a way that it is always active when the Shutdown Circuit is open -b. Able to discharge the Intermediate Circuit capacitors if the MSD has been opened -c. Not be fused -d. Designed to handle the maximum Tractive System voltage for minimum 15 seconds -EV.5.6.4 Positive Temperature Coefficient (PTC) devices must not be used to limit current for the -Precharge Circuit or Discharge Circuit -EV.5.6.5 The precharge relay must be a mechanical type relay -EV.5.7 Voltage Indicator -Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is -present at the vehicle side of the IRs -EV.5.7.1 The Voltage Indicator must always function, including when the Accumulator Container is -disconnected or removed -EV.5.7.2 The voltage being present at the connectors must directly control the Voltage Indicator using -hard wired electronics with no software control. -EV.5.7.3 The control signal which closes the IRs must not control the Voltage Indicator -EV.5.7.4 The Voltage Indicator must: -a. Be located where it is clearly visible when connecting/disconnecting the Accumulator -Tractive System connections -b. Be labeled “High Voltage Present” -EV.5.8 Tractive System Measuring Points - TSMP -EV.5.8.1 Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are: -a. Connected to the positive and negative motor controller/inverter supply lines -b. Next to the Master Switches EV.7.9 -c. Protected by a nonconductive housing that can be opened without tools - - -Formula SAE® Rules 2025 © 2024 SAE International Page 97 of 143 -Version 1.0 31 Aug 2024 -d. Protected from being touched with bare hands / fingers once the housing is opened -EV.5.8.2 Two TSMPs must be installed in the Charger EV.8.2 which are: -a. Connected to the positive and negative Charger output lines -b. Available during charging of any Accumulator(s) -EV.5.8.3 The TSMPs must be: -a. 4 mm shrouded banana jacks rated to an appropriate voltage level -b. Color: Red -c. Marked “HV+” and “HV-“ -EV.5.8.4 Each TSMP must be secured with a current limiting resistor. -a. The resistor must be sized for the voltage: -Maximum TS Voltage (Vmax) Resistor Value -Vmax <= 200 V DC 5 kOhm -200 V DC < Vmax <= 400 V DC 10 kOhm -400 V DC < Vmax <= 600 V DC 15 kOhm -b. Resistor continuous power rating must be more than the power dissipated across the -TSMPs if they are shorted together -c. Direct measurement of the value of the resistor must be possible during Electrical -Technical Inspection. -EV.5.8.5 Any TSMP must not contain additional Overcurrent Protection. -EV.5.9 Connectors -Tractive System connectors outside of a housing must contain an Interlock EV.7.8 -EV.5.10 Ready to Move Light -EV.5.10.1 The vehicle must have two Ready to Move Lights: -a. One pointed forward -b. One pointed aft -EV.5.10.2 Each Ready to Move Light must be: -a. A Marker Light that complies with DOT FMVSS 108 -b. Color: Amber +IC.2.6 Connections to Intake +Any crankcase or engine lubrication vent lines routed to the intake system must be connected +upstream of the intake system restrictor. +IC.3 THROTTLE +IC.3.1 General +IC.3.1.1 The vehicle must have a carburetor or throttle body. +a. The carburetor or throttle body may be of any size or design. +b. Boosted applications must not use carburetors. + +Formula SAE® Rules 2025 © 2024 SAE International Page 81 of 143 +Version 1.0 31 Aug 2024 +IC.3.2 Throttle Actuation Method +The throttle may be operated: +a. Mechanically by a cable or rod system IC.3.3 +b. By Electronic Throttle Control IC.4 +IC.3.3 Throttle Actuation – Mechanical +IC.3.3.1 The throttle cable or rod must: +a. Have smooth operation +b. Have no possibility of binding or sticking +c. Be minimum 50 mm from any exhaust system component and out of the exhaust stream +d. Be protected from being bent or kinked by the driver’s foot when it is operated by the +driver or when the driver enters or exits the vehicle +IC.3.3.2 The throttle actuation system must use two or more return springs located at the throttle +body. +Throttle Position Sensors (TPS) are NOT acceptable as return springs +IC.3.3.3 Failure of any component of the throttle system must not prevent the throttle returning to +the closed position. +IC.4 ELECTRONIC THROTTLE CONTROL +This section IC.4 applies only when Electronic Throttle Control is used +An Electronic Throttle Control (ETC) system may be used. This is a device or system which +may change the engine throttle setting based on various inputs. +IC.4.1 General Design +IC.4.1.1 The electronic throttle must automatically close (return to idle) when power is removed. +IC.4.1.2 The electronic throttle must use minimum two sources of energy capable of returning the +throttle to the idle position. +a. One of the sources may be the device (such as a DC motor) that normally operates the +throttle +b. The other device(s) must be a throttle return spring that can return the throttle to the +idle position if loss of actuator power occurs. +c. Springs in the TPS are not acceptable throttle return springs +IC.4.1.3 The ETC system may blip the throttle during downshifts when proven that unintended +acceleration can be prevented. Document the functional analysis in the ETC Systems Form +IC.4.2 Commercial ETC System +IC.4.2.1 An ETC system that is commercially available, but does not comply with the regulations, may +be used, if approved prior to the event. +IC.4.2.2 To obtain approval, submit a Rules Question which includes: +• Which ETC system the team is seeking approval to use. +• The specific ETC rule(s) that the commercial system deviates from. +• Sufficient technical details of these deviations to determine the acceptability of the +commercial system. + +Formula SAE® Rules 2025 © 2024 SAE International Page 82 of 143 +Version 1.0 31 Aug 2024 +IC.4.3 Documentation +IC.4.3.1 The ETC Notice of Intent: +• Must be submitted to give the intent to run ETC +• May be used to screen which teams are allowed to use ETC +IC.4.3.2 The ETC Systems Form must be submitted in order to use ETC +IC.4.3.3 Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document +Requirements +IC.4.3.4 Late or non submission will prevent use of ETC, see DR.3.4.1 +IC.4.4 Throttle Position Sensor - TPS +IC.4.4.1 The TPS must measure the position of the throttle or the throttle actuator. +Throttle position is defined as percent of travel from fully closed to wide open where 0% is +fully closed and 100% is fully open. +IC.4.4.2 Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and +reference lines only if effects of supply and/or reference line voltage offsets can be detected. +IC.4.4.3 Implausibility is defined as a deviation of more than 10% throttle position between the +sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be +considered on a case by case basis and require justification in the ETC Systems Form +IC.4.4.4 If an Implausibility occurs between the values of the two TPSs and persists for more than 100 +msec, the power to the electronic throttle must be immediately shut down. +IC.4.4.5 If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% +throttle position may be used to define the throttle position target and the 3rd TPS may be +ignored. +IC.4.4.6 Each TPS must be able to be checked during Technical Inspection by having one of: +a. A separate detachable connector(s) for any TPS signal(s) to the main ECU without +affecting any other connections +b. An inline switchable breakout box available that allows disconnection of each TPS +signal(s) to the main ECU without affecting any other connections +IC.4.4.7 The TPS signals must be sent directly to the throttle controller using an analogue signal or via +a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring +must be detectable by the controller and must be treated like Implausibility. +IC.4.4.8 When an analogue signal is used, the TPSs will be considered to have failed when they achieve +an open circuit or short circuit condition which generates a signal outside of the normal +operating range, for example <0.5 V or >4.5 V. +The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure +that open circuit signals result in a failure being detected. +IC.4.4.9 When any kind of digital data transmission is used to transmit the TPS signal, +a. The ETC Systems Form must contain a detailed description of all the potential failure +modes that can occur, the strategy that is used to detect these failures and the tests that +have been conducted to prove that the detection strategy works. +b. The failures to be considered must include but are not limited to the failure of the TPS, +TPS signals being out of range, corruption of the message and loss of messages and the +associated time outs. + +Formula SAE® Rules 2025 © 2024 SAE International Page 83 of 143 +Version 1.0 31 Aug 2024 +IC.4.5 Accelerator Pedal Position Sensor - APPS +Refer to T.4.2 for specific requirements of the APPS +IC.4.6 Brake System Encoder - BSE +Refer to T.4.3 for specific requirements of the BSE +IC.4.7 Throttle Plausibility Checks +IC.4.7.1 Brakes and Throttle Position +a. The power to the electronic throttle must be shut down if the mechanical brakes are +operated and the TPS signals that the throttle is open by more than a permitted amount +for more than one second. +b. An interval of one second is allowed for the throttle to close (return to idle). Failure to +achieve this in the required interval must result in immediate shut down of fuel flow and +the ignition system. +c. The permitted relationship between BSE and TPS may be defined by the team using a +table. This functionality must be demonstrated at Technical Inspection. +IC.4.7.2 Throttle Position vs Target +a. The power to the electronic throttle must be immediately shut down, if throttle position +differs by more than 10% from the expected target TPS position for more than one +second. +b. An interval of one second is allowed for the difference to reduce to less than 10%, failure +to achieve this in the required interval must result in immediate shut down of fuel flow +and the ignition system. +c. An error in TPS position and the resultant system shutdown must be demonstrated at +Technical Inspection. +Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. +System states displayed using calibration software must be accompanied by a detailed +explanation of the control system. +IC.4.7.3 The electronic throttle and fuel injector/ignition system shutdown must stay active until the +TPS signals indicate the throttle is at or below the unpowered default position for one second +or longer. +IC.4.8 Brake System Plausibility Device - BSPD +IC.4.8.1 A standalone nonprogrammable circuit must be used to monitor the electronic throttle +control. +The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7 +IC.4.8.2 Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may +not be used in place of the raw sensor signals. +IC.4.8.3 The BSPD must monitor for these conditions: +a. The two of these for more than one second: +• Demand for Hard Braking IC.4.6 +• Throttle more than 10% open IC.4.4 +b. Loss of signal from the braking sensor(s) for more than 100 msec +c. Loss of signal from the throttle sensor(s) for more than 100 msec + +Formula SAE® Rules 2025 © 2024 SAE International Page 84 of 143 +Version 1.0 31 Aug 2024 +d. Removal of power from the BSPD circuit +IC.4.8.4 When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2 +IC.4.8.5 The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON +IC.4.8.6 The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF +IC.4.8.7 The BSPD signals and function must be able to be checked during Technical Inspection by +having one of: +a. A separate set of detachable connectors for any signals from the braking sensor(s), +throttle sensor(s) and removal of power to only the BSPD device. +b. An inline switchable breakout box available that allows disconnection of the brake +sensor(s), throttle sensor(s) individually and power to only the BSPD device. +IC.5 FUEL AND FUEL SYSTEM +IC.5.1 Fuel +IC.5.1.1 Vehicles must be operated with the fuels provided at the competition +IC.5.1.2 Fuels provided are expected to be Gasoline and E85. Consult the individual competition +websites for fuel specifics and other information. +IC.5.1.3 No agents other than the provided fuel and air may go into the combustion chamber. +IC.5.2 Fuel System +IC.5.2.1 The Fuel System must meet these design criteria: +a. The Fuel Tank is capable of being filled to capacity without manipulating the tank or the +vehicle in any manner. +b. During refueling on a level surface, the formation of air cavities or other effects that +cause the fuel level observed at the sight tube to drop after movement or operation of +the vehicle (other than due to consumption) are prevented. +c. Spillage during refueling cannot contact the driver position, exhaust system, hot engine +parts, or the ignition system. +IC.5.2.2 The Fuel System location must meet IC.1.2 and F.9 +IC.5.2.3 A Firewall must separate the Fuel Tank from the driver, per T.1.8 +IC.5.3 Fuel Tank +The part(s) of the fuel containment device that is in contact with the fuel. +IC.5.3.1 Fuel Tanks made of a rigid material must: +a. Be securely attached to the vehicle structure. The mounting method must not allow +chassis flex to load the Fuel Tank. +b. Not be used to carry any structural loads; from Roll Hoops, suspension, engine or +gearbox mounts +IC.5.3.2 Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag +tank: +a. Must be enclosed inside a rigid fuel tank container which is securely attached to the +vehicle structure. +b. The Fuel Tank container may be load carrying +IC.5.3.3 Any size Fuel Tank may be used + +Formula SAE® Rules 2025 © 2024 SAE International Page 85 of 143 +Version 1.0 31 Aug 2024 +IC.5.3.4 The Fuel Tank, by design, must not have a variable capacity. +IC.5.3.5 The Fuel System must have a provision for emptying the Fuel Tank if required. +IC.5.4 Fuel Filler Neck & Sight Tube +IC.5.4.1 All Fuel Tanks must have a Fuel Filler Neck which must be: +a. Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler +cap +IC.5.4.2 The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be: +a. Minimum 125 mm vertical height above the top level of the Fuel Tank +b. Angled no more than 30° from the vertical +IC.5.4.3 The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the +fuel level which must be: +a. Visible vertical height: 125 mm minimum +b. Inside diameter: 6 mm minimum +c. Above the top surface of the Fuel Tank +IC.5.4.4 A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules +Question or technical inspectors at the event. +IC.5.4.5 Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm +and 25 mm below the top of the visible portion of the sight tube. +This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure +the amount of fuel used during the Endurance Event. +IC.5.4.6 The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, +the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, +etc) or the need to remove any parts (body panels, etc). +IC.5.4.7 The individual filling the tank must have complete direct access to the filler neck opening with +a standard two gallon gas can assembly. +The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top +IC.5.4.8 The filler neck must have a fuel cap that can withstand severe vibrations or high pressures +such as could occur during a vehicle rollover event + +Formula SAE® Rules 2025 © 2024 SAE International Page 86 of 143 +Version 1.0 31 Aug 2024 +IC.5.5 Fuel Tank Filling +IC.5.5.1 Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials. +IC.5.5.2 The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point. +IC.5.5.3 If, for any reason, the fuel level changes after the team have moved the vehicle, then no +additional fuel will be added, unless fueling after Endurance, see D.13.2.5 +IC.5.6 Venting Systems +IC.5.6.1 Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during +hard cornering or acceleration. +IC.5.6.2 All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted. +IC.5.6.3 All fuel vent lines must exit outside the bodywork. +IC.5.7 Fuel Lines +IC.5.7.1 Fuel lines must be securely attached to the vehicle and/or engine. +IC.5.7.2 All fuel lines must be shielded from possible rotating equipment failure or collision damage. +IC.5.7.3 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. +IC.5.7.4 Any rubber fuel line or hose used must meet the two: +a. The components over which the hose is clamped must have annular bulb or barbed +fittings to retain the hose +b. Clamps specifically designed for fuel lines must be used. +These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, +and rolled edges to prevent the clamp cutting into the hose +IC.5.7.5 Worm gear type hose clamps must not be used on any fuel line. +IC.6 FUEL INJECTION +IC.6.1 Low Pressure Injection (LPI) +Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most +Port Fuel Injected (PFI) fuel systems are low pressure. +IC.6.1.1 Any Low Pressure flexible fuel lines must be one of: +• Metal braided hose with threaded fittings (crimped on or reusable) +• Reinforced rubber hose with some form of abrasion resistant protection +IC.6.1.2 Fuel rail and mounting requirements: +a. Unmodified OEM Fuel Rails are acceptable, regardless of material. +b. Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable +materials are prohibited. +c. The fuel rail must be securely attached to the manifold, engine block or cylinder head +with brackets and mechanical fasteners. +Hose clamps, plastic ties, or safety wires do not meet this requirement. +d. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 + +Formula SAE® Rules 2025 © 2024 SAE International Page 87 of 143 +Version 1.0 31 Aug 2024 +IC.6.2 High Pressure Injection (HPI) / Direct Injection (DI) +IC.6.2.1 Definitions +a. High Pressure fuel systems - those functioning at 10 Bar pressure or above +b. Direct Injection fuel systems - where the injection occurs directly into the combustion +system +Direct Injection systems often utilize a low pressure electric fuel pump and high pressure +mechanical “boost” pump driven off the engine. +c. High Pressure Fuel Lines - those between the boost pump and injectors +d. Low Pressure Fuel Lines - from the electric supply pump to the boost pump +IC.6.2.2 All High Pressure Fuel Lines must: +a. Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel +reinforcement and visible Nomex tracer yarn. Equivalent products may be used with +prior approval. +b. Not incorporate elastomeric seals +c. Be rigidly connected every 100 mm by mechanical fasteners to structural engine +components such as cylinder heads or block +IC.6.2.3 Any Low Pressure flexible Fuel Lines must be one of: +• Metal braided hose with threaded fittings (crimped on or reusable) +• Reinforced rubber hose with some form of abrasion resistant protection +IC.6.2.4 Fuel rail mounting requirements: +a. The fuel rail must be securely attached to the engine block or cylinder head with brackets +and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this +requirement. +b. The fastening method must be sufficient to hold the fuel rail in place with the maximum +regulated pressure acting on the injector internals and neglecting any assistance from +cylinder pressure acting on the injector tip. +c. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 +IC.6.2.5 High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as +the cylinder head or engine block. +IC.6.2.6 Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the +fuel system in parallel with the DI boost pump. The external regulator must be used even if +the DI boost pump comes equipped with an internal regulator. +IC.7 EXHAUST AND NOISE CONTROL +IC.7.1 Exhaust Protection +IC.7.1.1 The exhaust system must be separated from any of these components by means given in +T.1.6.3: +a. Flammable materials, including the fuel and fuel system, the oil and oil system +b. Thermally sensitive components, including brake lines, composite materials, and +batteries + +Formula SAE® Rules 2025 © 2024 SAE International Page 88 of 143 +Version 1.0 31 Aug 2024 +IC.7.2 Exhaust Outlet +IC.7.2.1 The exhaust must be routed to prevent the driver from fumes at any speed considering the +draft of the vehicle +IC.7.2.2 The Exhaust Outlet(s) must be: +a. No more than 45 cm aft of the centerline of the rear axle +b. No more than 60 cm above the ground. +IC.7.2.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in +front of the Main Hoop must be shielded to prevent contact by persons approaching the +vehicle or a driver exiting the vehicle +IC.7.2.4 Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an +exhaust manifold or exhaust system. +IC.7.3 Variable Exhaust +IC.7.3.1 Adjustable tuning or throttling devices are permitted. +IC.7.3.2 Manually adjustable tuning devices must require tools to change +IC.7.3.3 Refer to IN.10.2 for additional requirements during the Noise Test +IC.7.4 Connections to Exhaust +Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum +devices that connect directly to the exhaust system, are prohibited. +IC.7.5 Noise Level and Testing +IC.7.5.1 The vehicle must stay below the permitted sound level at all times IN.10.5 +IC.7.5.2 Sound level will be verified during Technical Inspection, refer to IN.10 +IC.8 ELECTRICAL +IC.8.1 Starter +Each vehicle must start the engine using an onboard starter at all times +IC.8.2 Batteries +Refer to T.9.2 for specific requirements of Low Voltage batteries +IC.8.3 Voltage Limit +IC.8.3.1 Voltage between any two electrical connections must be Low Voltage T.9.1.2 +IC.8.3.2 This voltage limit does not apply to these systems: +• High Voltage systems for ignition +• High Voltage systems for injectors +• Voltages internal to OEM charging systems designed for <60 V DC output. +IC.9 SHUTDOWN SYSTEM +IC.9.1 Shutdown Circuit +IC.9.1.1 The Shutdown Circuit consists of these components: +a. Primary Master Switch IC.9.3 +b. Cockpit Main Switch IC.9.4 + +Formula SAE® Rules 2025 © 2024 SAE International Page 89 of 143 +Version 1.0 31 Aug 2024 +c. (ETC Only) Brake System Plausibility Device (BSPD) IC.4.8 +d. Brake Overtravel Switch (BOTS) T.3.3 +e. Inertia Switch (if used) T.9.4 +IC.9.1.2 The team must be able to demonstrate all features and functions of the Shutdown Circuit and +components at Technical Inspection +IC.9.1.3 The international electrical symbol (a red spark on a white edged blue triangle) must be near +the Primary Master Switch and the Cockpit Main Switch. +IC.9.2 Shutdown Circuit Operation +IC.9.2.1 The Shutdown Circuit must Open upon operation of, or detection from any of the components +listed in IC.9.1.1 +IC.9.2.2 When the Shutdown Circuit Opens, it must: +a. Stop the engine +b. Disconnect power to the: +• Fuel Pump(s) +• Ignition +• (ETC only) Electronic Throttle IC.4.1.1 +IC.9.3 Primary Master Switch +IC.9.3.1 Configuration and Location - The Primary Master Switch must meet T.9.3 +IC.9.3.2 Function - the Primary Master Switch must: +a. Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel +pump(s), ignition and electrical controls. +All battery current must flow through this switch +b. Be direct acting, not act through a relay or logic. +IC.9.4 Cockpit Main Switch +IC.9.4.1 Configuration - The Cockpit Main Switch must: +a. Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF +position) +b. Have a diameter of 24 mm minimum +IC.9.4.2 Location – The Cockpit Main Switch must be: +a. In easy reach of the driver when in a normal driving position wearing Harness +b. Adjacent to the Steering Wheel +c. Unobstructed by the Steering Wheel or any other part of the vehicle +IC.9.4.3 Function - the Cockpit Main Switch may act through a relay + +Formula SAE® Rules 2025 © 2024 SAE International Page 90 of 143 +Version 1.0 31 Aug 2024 +EV - ELECTRIC VEHICLES +EV.1 DEFINITIONS +EV.1.1 Tractive System – TS +Every part electrically connected to the Motor(s) and/or Accumulator(s) +EV.1.2 Grounded Low Voltage - GLV +Every electrical part that is not part of the Tractive System +EV.1.3 Accumulator +All the battery cells or super capacitors that store the electrical energy to be used by the +Tractive System +EV.2 DOCUMENTATION +EV.2.1 Electrical System Form - ESF +EV.2.1.1 Each team must submit an Electrical System Form (ESF) with a clearly structured +documentation of the entire vehicle electrical system (including control and Tractive System). +Submission and approval of the ESF does not mean that the vehicle will automatically pass +Electrical Technical Inspection with the described items / parts. +EV.2.1.2 The ESF may provide guidance or more details than the Formula SAE Rules. +EV.2.1.3 Use the format provided and submit the ESF as given in section DR - Document Requirements +EV.2.2 Submission Penalties +Penalties for the ESF are imposed as given in section DR - Document Requirements. +EV.3 ELECTRICAL LIMITATIONS +EV.3.1 Operation +EV.3.1.1 Supplying power to the motor to drive the vehicle in reverse is prohibited +EV.3.1.2 Drive by wire control of wheel torque is permitted +EV.3.1.3 Any algorithm or electronic control unit that can adjust the requested wheel torque may only +decrease the total driver requested torque and must not increase it +EV.3.2 Energy Meter +EV.3.2.1 All Electric Vehicles must run with the Energy Meter provided at the event +Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter +EV.3.2.2 The Energy Meter must be installed in an easily accessible location +EV.3.2.3 All Tractive System power must flow through the Energy Meter +EV.3.2.4 Each team must download their Energy Meter data in a manner and timeframe specified by +the organizer +EV.3.2.5 Power and Voltage limits will be checked by the Energy Meter data +Energy is calculated as the time integrated value of the measured voltage multiplied by the +measured current logged by the Energy Meter. + +Formula SAE® Rules 2025 © 2024 SAE International Page 91 of 143 +Version 1.0 31 Aug 2024 +EV.3.3 Power and Voltage +EV.3.3.1 The maximum power measured by the Energy Meter must not exceed 80 kW +EV.3.3.2 The maximum permitted voltage that may occur between any two points must not exceed +600 V DC +EV.3.3.3 The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr +EV.3.4 Violations +EV.3.4.1 A Violation occurs when one or two of these exist: +a. Use of more than the specified maximum power EV.3.3.1 +b. Exceed the maximum voltage EV.3.3.2 +for one or the two conditions: +• Continuously for 100 ms or more +• After a moving average over 500 ms is applied +EV.3.4.2 Missing Energy Meter data may be treated as a Violation, subject to official discretion +EV.3.4.3 Tampering, or attempting to tamper with the Energy Meter or its data may result in +Disqualification (DQ) +EV.3.5 Penalties +EV.3.5.1 Violations during the Acceleration, Skidpad, Autocross Events: +a. Each run with one or more Violations will Disqualify (DQ) the best run of the team +b. Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the +two best runs +EV.3.5.2 Violations during the Endurance event: +• Each Violation: 60 second penalty D.14.2.1 +EV.3.5.3 Repeated Violations may void Inspection Approval or receive additional penalties up to and +including Disqualification, subject to official discretion. +EV.3.5.4 The respective data of each run in which a team has a Violation and the resulting decision may +be made public. +EV.4 COMPONENTS +EV.4.1 Motors +EV.4.1.1 Only electrical motors are allowed. The number of motors is not limited. +EV.4.1.2 Motors must meet T.5.3 +EV.4.1.3 If Motors are mounted to the suspension uprights, their cables and wiring must: +a. Include an Interlock EV.7.8 +This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive +System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or +knocked off the vehicle. +b. Reduce the length of the portions of wiring and other connections that do not meet +F.11.1.3 to the extent possible + +Formula SAE® Rules 2025 © 2024 SAE International Page 92 of 143 +Version 1.0 31 Aug 2024 +EV.4.2 Motor Controller +The Tractive System Motor(s) must be connected to the Accumulator through a Motor +Controller. No direct connections between Motor(s) and Accumulator. +EV.4.3 Accumulator Container +EV.4.3.1 Accumulator Containers must meet F.10 +EV.4.3.2 The Accumulator Container(s) must be removable from the vehicle while still remaining rules +compliant +EV.4.3.3 The Accumulator Container(s) must be completely closed at all times (when mounted to the +vehicle and when removed from the vehicle) without the need to install extra protective +covers +EV.4.3.4 The Accumulator Container(s) may contain Holes or Openings +a. Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the +Accumulator Container(s) +b. Holes and Openings in the Accumulator Container must meet F.10.4 +c. External holes must meet EV.6.1 +EV.4.3.5 Any Accumulators that may vent an explosive gas must have a ventilation system or pressure +relief valve to release the vented gas +EV.4.3.6 Segments sealed in Accumulator Containers must have a path to a pressure relief valve +EV.4.3.7 Pressure relief valves must not have line of sight to the driver, with the Firewall installed or +removed +EV.4.3.8 Each Accumulator Container must be labelled with the: +a. School Name and Vehicle Number +b. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow +background) with: +• Triangle side length of 100 mm minimum +• Visibility from all angles, including when the lid is removed +c. Text “Always Energized” +d. Text “High Voltage” if the voltage meets T.9.1.1 +EV.4.4 Grounded Low Voltage System +EV.4.4.1 The GLV System must be: +a. A Low Voltage system that is Grounded to the Chassis +b. Able to operate with Accumulator removed from the vehicle +EV.4.4.2 The GLV System must include a Master Switch, see EV.7.9.1 +EV.4.4.3 A GLV Measuring Point (GLVMP) must be installed which is: +a. Connected to GLV System Ground +b. Next to the TSMP EV.5.8 +c. 4 mm shrouded banana jack +d. Color: Black +e. Marked “GND” + +Formula SAE® Rules 2025 © 2024 SAE International Page 93 of 143 +Version 1.0 31 Aug 2024 +EV.4.4.4 Low Voltage Batteries must meet T.9.2 +EV.4.5 Accelerator Pedal Position Sensor - APPS +Refer to T.4.2 for specific requirements of the APPS +EV.4.6 Brake System Encoder - BSE +Refer to T.4.3 for specific requirements of the BSE +EV.4.7 APPS / Brake Pedal Plausibility Check +EV.4.7.1 Must monitor for the two conditions: +• The mechanical brakes are engaged EV.4.6, T.3.2.4 +• The APPS signals more than 25% Pedal Travel EV.4.5 +EV.4.7.2 If the two conditions in EV.4.7.1 occur at the same time: +a. Power to the Motor(s) must be immediately and completely shut down +b. The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, +with or without brake operation +The team must be able to demonstrate these actions at Technical Inspection +EV.4.8 Tractive System Part Positioning +All parts belonging to the Tractive System must meet F.11 +EV.4.9 Housings and Enclosures +EV.4.9.1 Each housing or enclosure containing parts of the Tractive System other than Motor housings, +must be labelled with the: +a. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow +background) +b. Text “High Voltage” if the voltage meets T.9.1.1 +EV.4.9.2 If the material of the housing containing parts of the Tractive System is electrically conductive, +it must have a low resistance connection to GLV System Ground, see EV.6.7 +EV.4.10 Accumulator Hand Cart +EV.4.10.1 Teams must have a Hand Cart to transport their Accumulator Container(s) +EV.4.10.2 The Hand Cart must be used when the Accumulator Container(s) are transported on the +competition site EV.11.4.2 EV.11.5.1 +EV.4.10.3 The Hand Cart must: +a. Be able to carry the load of the Accumulator Container(s) without tipping over +b. Contain a minimum of two wheels +c. Have a brake that must be: +• Released only using a dead man type switch (where the brake is always on until +released by pushing and holding a handle) or by manually lifting part of the cart off +the ground +• Able to stop the Hand Cart with a fully loaded Accumulator Container +EV.4.10.4 Accumulator Container(s) must be securely attached to the Hand Cart + +Formula SAE® Rules 2025 © 2024 SAE International Page 94 of 143 +Version 1.0 31 Aug 2024 +EV.5 ENERGY STORAGE +EV.5.1 Accumulator +EV.5.1.1 All cells or super capacitors which store the Tractive System energy are built into Accumulator +Segments and must be enclosed in (an) Accumulator Container(s). +EV.5.1.2 Each Accumulator Segment must contain: +• Static voltage of 120 V DC maximum +• Energy of 6 MJ maximum +The contained energy of a stack is calculated by multiplying the maximum stack voltage +with the nominal capacity of the used cell(s) +• Mass of 12 kg maximum +EV.5.1.3 No further energy storage except for reasonably sized intermediate circuit capacitors are +allowed after the Energy Meter EV.3.1 +EV.5.1.4 All Accumulator Segments and/or Accumulator Containers (including spares and replacement +parts) must be identical to the design documented in the ESF and SES +EV.5.2 Electrical Configuration +EV.5.2.1 All Tractive System components must be rated for the maximum Tractive System voltage +EV.5.2.2 If the Accumulator Container is made from an electrically conductive material: +a. The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner +wall of the Accumulator Container with an insulating material that is rated for the +maximum Tractive System voltage. +b. All conductive surfaces on the outside of the Accumulator Container must have a low +resistance connection to the GLV System Ground, see EV.6.7 +c. Any conductive penetrations, such as mounting hardware, must be protected against +puncturing the insulating barrier. +EV.5.2.3 Each Accumulator Segment must be electrically insulated with suitable Nonflammable +Material (F.1.18) (not air) for the two: +a. Between the segments in the container +b. On top of the segment +The intent is to prevent arc flashes caused by inter segment contact or by parts/tools +accidentally falling into the container during maintenance for example. +EV.5.2.4 Soldering electrical connections in the high current path is prohibited +Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are +not part of the high current path. + +Formula SAE® Rules 2025 © 2024 SAE International Page 95 of 143 +Version 1.0 31 Aug 2024 +EV.5.2.5 Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, +must be rated to the maximum Tractive System voltage. +EV.5.3 Maintenance Plugs +EV.5.3.1 Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet: +a. The separated Segments meet voltage and energy limits of EV.5.1.2 +b. The separation must affect the two poles of the Segment +EV.5.3.2 Maintenance Plugs must: +a. Require the physical removal or separation of a component. Contactors or switches are +not acceptable Maintenance Plugs +b. Have access after opening the Accumulator Container and not necessary to move or +remove any other components +c. Not be physically possible to make electrical connection in any configuration other than +the design intended configuration +d. Not require tools to install or remove +e. Include a positive locking feature which prevents the plug from unintentionally becoming +loose +f. Be nonconductive on surfaces that do not provide any electrical connection +EV.5.3.3 When the Accumulator Containers are opened or Segments are removed, the Accumulator +Segments must be separated by using the Maintenance Plugs. See EV.11.4.1 +EV.5.4 Isolation Relays - IR +EV.5.4.1 All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more +Isolation Relays (IR) +EV.5.4.2 The Isolation Relays must: +a. Be a Normally Open type +b. Open the two poles of the Accumulator +EV.5.4.3 When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator +Container +EV.5.4.4 The Isolation Relays and any fuses must be separated from the rest of the Accumulator with +an electrically insulated and Nonflammable Material (F.1.18). +EV.5.4.5 A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit +Opens EV.7.2.2 +EV.5.5 Manual Service Disconnect - MSD +A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two +poles of the Accumulator EV.11.3.2 +EV.5.5.1 The Manual Service Disconnect (MSD) must be: +a. A directly accessible element, fuse or connector that will visually show disconnected +b. More than 350 mm from the ground +c. Easily visible when standing behind the vehicle +d. Operable in 10 seconds or less by an untrained person +e. Operable without removing any bodywork or obstruction or using tools + +Formula SAE® Rules 2025 © 2024 SAE International Page 96 of 143 +Version 1.0 31 Aug 2024 +f. Directly operated. Remote operation through a long handle, rope or wire is not +acceptable. +g. Clearly marked with "MSD" +EV.5.5.2 The Energy Meter must not be used as the Manual Service Disconnect (MSD) +EV.5.5.3 An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed +EV.5.5.4 A dummy connector or similar may be used to restore isolation to meet EV.6.1.2 +EV.5.6 Precharge and Discharge Circuits +EV.5.6.1 The Accumulator must contain a Precharge Circuit. The Precharge Circuit must: +a. Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage +before closing the second IR +b. Be supplied from the Shutdown Circuit EV.7.1 +EV.5.6.2 The Intermediate Circuit must precharge before closing the second IR +a. The end of precharge must be controlled by feedback by monitoring the voltage in the +Intermediate Circuit +EV.5.6.3 The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be: +a. Wired in a way that it is always active when the Shutdown Circuit is open +b. Able to discharge the Intermediate Circuit capacitors if the MSD has been opened +c. Not be fused +d. Designed to handle the maximum Tractive System voltage for minimum 15 seconds +EV.5.6.4 Positive Temperature Coefficient (PTC) devices must not be used to limit current for the +Precharge Circuit or Discharge Circuit +EV.5.6.5 The precharge relay must be a mechanical type relay +EV.5.7 Voltage Indicator +Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is +present at the vehicle side of the IRs +EV.5.7.1 The Voltage Indicator must always function, including when the Accumulator Container is +disconnected or removed +EV.5.7.2 The voltage being present at the connectors must directly control the Voltage Indicator using +hard wired electronics with no software control. +EV.5.7.3 The control signal which closes the IRs must not control the Voltage Indicator +EV.5.7.4 The Voltage Indicator must: +a. Be located where it is clearly visible when connecting/disconnecting the Accumulator +Tractive System connections +b. Be labeled “High Voltage Present” +EV.5.8 Tractive System Measuring Points - TSMP +EV.5.8.1 Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are: +a. Connected to the positive and negative motor controller/inverter supply lines +b. Next to the Master Switches EV.7.9 +c. Protected by a nonconductive housing that can be opened without tools + +Formula SAE® Rules 2025 © 2024 SAE International Page 97 of 143 +Version 1.0 31 Aug 2024 +d. Protected from being touched with bare hands / fingers once the housing is opened +EV.5.8.2 Two TSMPs must be installed in the Charger EV.8.2 which are: +a. Connected to the positive and negative Charger output lines +b. Available during charging of any Accumulator(s) +EV.5.8.3 The TSMPs must be: +a. 4 mm shrouded banana jacks rated to an appropriate voltage level +b. Color: Red +c. Marked “HV+” and “HV-“ +EV.5.8.4 Each TSMP must be secured with a current limiting resistor. +a. The resistor must be sized for the voltage: +Maximum TS Voltage (Vmax) Resistor Value +Vmax <= 200 V DC 5 kOhm +200 V DC < Vmax <= 400 V DC 10 kOhm +400 V DC < Vmax <= 600 V DC 15 kOhm +b. Resistor continuous power rating must be more than the power dissipated across the +TSMPs if they are shorted together +c. Direct measurement of the value of the resistor must be possible during Electrical +Technical Inspection. +EV.5.8.5 Any TSMP must not contain additional Overcurrent Protection. +EV.5.9 Connectors +Tractive System connectors outside of a housing must contain an Interlock EV.7.8 +EV.5.10 Ready to Move Light +EV.5.10.1 The vehicle must have two Ready to Move Lights: +a. One pointed forward +b. One pointed aft +EV.5.10.2 Each Ready to Move Light must be: +a. A Marker Light that complies with DOT FMVSS 108 +b. Color: Amber c. Luminous area: minimum 1800 mm 2 - -EV.5.10.3 Mounting location of each Ready to Move Light must: -a. Be near the Main Hoop near the highest point of the vehicle -b. Be inside the Rollover Protection Envelope F.1.13 -c. Be no lower than 150 mm from the highest point of the Main Hoop -d. Not allow contact with the driver’s helmet in any circumstances -e. Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm -horizontal radius from the light -Visibility is checked with Bodywork and Aerodynamic Devices in place - - -Formula SAE® Rules 2025 © 2024 SAE International Page 98 of 143 -Version 1.0 31 Aug 2024 -EV.5.10.4 The Ready to Move Light must: -a. Be powered by the GLV system -b. Be directly controlled by the voltage present in the Tractive System using hard wired -electronics. EV.6.5.4 Software control is not permitted. -c. Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage -outside the Accumulator Container(s) exceeds T.9.1.1 -d. Not do any other functions -EV.5.11 Tractive System Status Indicator -EV.5.11.1 The vehicle must have a Tractive System Status Indicator -EV.5.11.2 The Tractive System Status Indicator must have two separate Red and Green Status Lights -EV.5.11.3 Each of the Status Lights: +EV.5.10.3 Mounting location of each Ready to Move Light must: +a. Be near the Main Hoop near the highest point of the vehicle +b. Be inside the Rollover Protection Envelope F.1.13 +c. Be no lower than 150 mm from the highest point of the Main Hoop +d. Not allow contact with the driver’s helmet in any circumstances +e. Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm +horizontal radius from the light +Visibility is checked with Bodywork and Aerodynamic Devices in place + +Formula SAE® Rules 2025 © 2024 SAE International Page 98 of 143 +Version 1.0 31 Aug 2024 +EV.5.10.4 The Ready to Move Light must: +a. Be powered by the GLV system +b. Be directly controlled by the voltage present in the Tractive System using hard wired +electronics. EV.6.5.4 Software control is not permitted. +c. Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage +outside the Accumulator Container(s) exceeds T.9.1.1 +d. Not do any other functions +EV.5.11 Tractive System Status Indicator +EV.5.11.1 The vehicle must have a Tractive System Status Indicator +EV.5.11.2 The Tractive System Status Indicator must have two separate Red and Green Status Lights +EV.5.11.3 Each of the Status Lights: a. Must have a minimum luminous area of 130 mm 2 - -b. Must be visible in direct sunlight -c. May have one or more of the same elements -EV.5.11.4 Mounting location of the Tractive System Status Indicator must: -a. Be near the Main Hoop at the highest point of the vehicle -b. Be above the Ready to Move Light -c. Be inside the Rollover Protection Envelope F.1.13 -d. Be no lower than 150 mm from the highest point of the Main Hoop -e. Not allow contact with the driver’s helmet in any circumstances -f. Easily visible to a person near the vehicle -EV.5.11.5 The Tractive System Status Indicator must show when the GLV System is energized: -Condition Green Light Red Light -a. No Faults Always ON OFF -b. Fault in one or the two: -BMS EV.7.3.5 or IMD EV.7.6.5 +b. Must be visible in direct sunlight +c. May have one or more of the same elements +EV.5.11.4 Mounting location of the Tractive System Status Indicator must: +a. Be near the Main Hoop at the highest point of the vehicle +b. Be above the Ready to Move Light +c. Be inside the Rollover Protection Envelope F.1.13 +d. Be no lower than 150 mm from the highest point of the Main Hoop +e. Not allow contact with the driver’s helmet in any circumstances +f. Easily visible to a person near the vehicle +EV.5.11.5 The Tractive System Status Indicator must show when the GLV System is energized: +Condition Green Light Red Light +a. No Faults Always ON OFF +b. Fault in one or the two: +BMS EV.7.3.5 or IMD EV.7.6.5 OFF -Flash -2 Hz to 5 Hz, 50% duty cycle - -EV.6 ELECTRICAL SYSTEM -EV.6.1 Covers -EV.6.1.1 Nonconductive material or covers must prevent inadvertent human contact with any Tractive -System voltage. -Covers must be secure and sufficiently rigid. -Removable Bodywork is not suitable to enclose Tractive System connections. -EV.6.1.2 Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated -test probe must not be possible when the Tractive System enclosures are in place. -EV.6.1.3 Tractive System components and Accumulator Containers must be protected from moisture, -rain or puddles. -A rating of IP65 is recommended - - -Formula SAE® Rules 2025 © 2024 SAE International Page 99 of 143 -Version 1.0 31 Aug 2024 -EV.6.2 Insulation -EV.6.2.1 Insulation material must: -a. Be appropriate for the expected surrounding temperatures -b. Have a minimum temperature rating of 90°C -EV.6.2.2 Insulating tape or paint may be part of the insulation, but must not be the only insulation. -EV.6.3 Wiring -EV.6.3.1 All wires and terminals and other conductors used in the Tractive System must be sized for the -continuous current they will conduct -EV.6.3.2 All Tractive System wiring must: -a. Be marked with wire gauge, temperature rating and insulation voltage rating. -A serial number or a norm printed on the wire is sufficient if this serial number or norm is -clearly bound to the wire characteristics for example by a data sheet. -b. Have temperature rating more than or equal to 90°C -EV.6.3.3 Tractive System wiring must be: -a. Done to professional standards with sufficient strain relief -b. Protected from loosening due to vibration -c. Protected against damage by rotating and / or moving parts -d. Located out of the way of possible snagging or damage -EV.6.3.4 Any Tractive System wiring that runs outside of electrical enclosures: -a. Must meet one of the two: -• Enclosed in separate orange nonconductive conduit -• Use an orange shielded cable -b. The conduit or shielded cable must be securely anchored at each end to allow it to -withstand a force of 200 N without straining the cable end crimp -c. Any shielded cable must have the shield grounded -EV.6.3.5 Wiring that is not part of the Tractive System must not use orange wiring or conduit. -EV.6.4 Connections -EV.6.4.1 All Tractive System connections must: -a. Be designed to use intentional current paths through conductors designed for electrical -current -b. Not rely on steel bolts to be the primary conductor -c. Not include compressible material such as plastic in the stack-up -EV.6.4.2 If external, uninsulated heat sinks are used, they must be properly grounded to the GLV -System Ground, see EV.6.7 -EV.6.4.3 Bolted electrical connections in the high current path of the Tractive System must include a -positive locking feature to prevent unintentional loosening -Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. -Bolts with nylon patches are allowed for blind connections into OEM components. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 100 of 143 -Version 1.0 31 Aug 2024 -EV.6.4.4 Information about the electrical connections supporting the high current path must be -available at Electrical Technical Inspection -EV.6.5 Voltage Separation -EV.6.5.1 Separation of Tractive System and GLV System: -a. The entire Tractive System and GLV System must be completely galvanically separated. -b. The border between Tractive System and GLV System is the galvanic isolation between -the two systems. -Some components, such as the Motor Controller, may be part of both systems. -EV.6.5.2 There must be no connection between the Chassis of the vehicle (or any other conductive -surface that might be inadvertently touched by a person), and any part of any Tractive System -circuits. -EV.6.5.3 Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4 -EV.6.5.4 GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, -HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light -EV.5.10 the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator -Container. -EV.6.5.5 Where Tractive System and GLV are included inside the same enclosure, they must meet one -of the two: -a. Be separated by insulating barriers (in addition to the insulation on the wire) made of -moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or -higher (such as Nomex based electrical insulation) -b. Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: -U < 100 V DC 10 mm -100 V DC < U < 200 V DC 20 mm -U > 200 V DC 30 mm -EV.6.5.6 Spacing must be clearly defined. Components and cables capable of movement must be -positively restrained to maintain spacing. -EV.6.5.7 If Tractive System and GLV are on the same circuit board: -a. They must be on separate, clearly defined and clearly marked areas of the board -b. Required spacing related to the spacing between traces / board areas are as follows: -Voltage Over Surface Thru Air (cut in board) Under Conformal Coating -0-50 V DC 1.6 mm 1.6 mm 1 mm -50-150 V DC 6.4 mm 3.2 mm 2 mm -150-300 V DC 9.5 mm 6.4 mm 3 mm -300-600 V DC 12.7 mm 9.5 mm 4 mm -EV.6.5.8 Teams must be prepared to show spacing on team built equipment -For inaccessible circuitry, spare boards or appropriate photographs must be available for -inspection -EV.6.5.9 All connections to external devices such as laptops from a Tractive System component must -include galvanic isolation - - -Formula SAE® Rules 2025 © 2024 SAE International Page 101 of 143 -Version 1.0 31 Aug 2024 -EV.6.6 Overcurrent Protection -EV.6.6.1 All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent -Protection/Fusing. -EV.6.6.2 Unless otherwise allowed in the Rules, all Overcurrent Protection devices must: -a. Be rated for the highest voltage in the systems they protect. -Overcurrent Protection devices used for DC must be rated for DC and must carry a DC -rating equal to or more than the system voltage -b. Have a continuous current rating less than or equal to the continuous current rating of -any electrical component that it protects -c. Have an interrupt current rating higher than the theoretical short circuit current of the -system that it protects -EV.6.6.3 Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, -strings of capacitors, or conductors must have individual Overcurrent Protection. -EV.6.6.4 Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of: -a. Be appropriately sized for the total current that the individual Overcurrent Protection -devices could transmit -b. Contain additional Overcurrent Protection to protect the conductors -EV.6.6.5 Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be -used when all three conditions are met: -• An Overcurrent Protection device rated at less than or equal to one third the sum of the -parallel fusible links and complying with EV.6.6.2.b above is connected in series. -• The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a -fault is detected. -• Fusible link current rating is specified in manufacturer’s data or suitable test data is -provided. -EV.6.6.6 If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, -the reduced conductor longer than 150 mm must have additional Overcurrent Protection. -This additional Overcurrent Protection must be: -a. 150 mm or less from the source end of the reduced conductor -b. On the positive and the negative conductors in the Tractive System -c. On the positive conductor in the Grounded Low Voltage System -EV.6.6.7 Cells with internal Overcurrent Protection may be used without external Overcurrent -Protection if suitably rated. -Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and -conditions of EV.6.6.5 above will apply. -EV.6.7 Grounding -EV.6.7.1 Grounding is required for: -a. Parts of the vehicle which are 100 mm or less from any Tractive System component -b. (EV only) The Firewall T.1.8.4 -EV.6.7.2 Grounded parts of the vehicle must have a resistance to GLV System Ground less than the -values specified below. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 102 of 143 -Version 1.0 31 Aug 2024 -a. Electrically conductive parts 300 mOhms (measured with a current of 1 A) -Examples: parts made of steel, (anodized) aluminum, any other metal parts -b. Parts which may become electrically conductive 5 Ohm -Example: carbon fiber parts -Carbon fiber parts may need special measures such as using copper mesh or similar to -keep the ground resistance below 5 Ohms. -EV.6.7.3 Electrical conductivity of any part may be tested by checking any point which is likely to be -conductive. -Where no convenient conductive point is available, an area of coating may be removed. -EV.7 SHUTDOWN SYSTEM -EV.7.1 Shutdown Circuit -EV.7.1.1 The Shutdown Circuit consists of these components, connected in series: -a. Battery Management System (BMS) EV.7.3 -b. Insulation Monitoring Device (IMD) EV.7.6 -c. Brake System Plausibility Device (BSPD) EV.7.7 -d. Interlocks (as required) EV.7.8 -e. Master Switches (GLVMS, TSMS) EV.7.9 -f. Shutdown Buttons EV.7.10 -g. Brake Over Travel Switch (BOTS) T.3.3 -h. Inertia Switch T.9.4 -EV.7.1.2 The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the -Precharge Circuit Relay. -EV.7.1.3 The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open -EV.7.1.4 The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown -Circuit. -The design of the respective circuits must make sure that a failure cannot result in electrical -power being fed back into the Shutdown Circuit. -EV.7.1.5 The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown -Circuit current -EV.7.1.6 The team must be able to demonstrate all features and functions of the Shutdown Circuit and -components at Electrical Technical Inspection. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 103 of 143 -Version 1.0 31 Aug 2024 - -EV.7.2 Shutdown Circuit Operation -EV.7.2.1 The Shutdown Circuit must Open when any of these exist: -a. Operation of, or detection from any of the components listed in EV.7.1.1 -b. Any shutdown of the GLV System -EV.7.2.2 When the Shutdown Circuit Opens: -a. The Tractive System must Shutdown -b. All Accumulator current flow must stop immediately EV.5.4.3 -c. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less -d. The Motor(s) must spin free. Torque must not be applied to the Motor(s) -EV.7.2.3 When the BMS, IMD or BSPD Open the Shutdown Circuit: -a. The Tractive System must stay disabled until manually reset -b. The Tractive System must be reset only by manual action of a person directly at the -vehicle -c. The driver must not be able to reactivate the Tractive System from inside the vehicle -d. Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close -EV.7.3 Battery Management System - BMS -EV.7.3.1 A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and -Temperature EV.7.5 when the: -a. Tractive System is Active EV.11.5 -b. Accumulator is connected to a Charger EV.8.3 -EV.7.3.2 The BMS must have galvanic isolation at each segment to segment boundary, as approved in -the ESF -EV.7.3.3 Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) -Chassis +Flash +2 Hz to 5 Hz, 50% duty cycle +EV.6 ELECTRICAL SYSTEM +EV.6.1 Covers +EV.6.1.1 Nonconductive material or covers must prevent inadvertent human contact with any Tractive +System voltage. +Covers must be secure and sufficiently rigid. +Removable Bodywork is not suitable to enclose Tractive System connections. +EV.6.1.2 Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated +test probe must not be possible when the Tractive System enclosures are in place. +EV.6.1.3 Tractive System components and Accumulator Containers must be protected from moisture, +rain or puddles. +A rating of IP65 is recommended + +Formula SAE® Rules 2025 © 2024 SAE International Page 99 of 143 +Version 1.0 31 Aug 2024 +EV.6.2 Insulation +EV.6.2.1 Insulation material must: +a. Be appropriate for the expected surrounding temperatures +b. Have a minimum temperature rating of 90°C +EV.6.2.2 Insulating tape or paint may be part of the insulation, but must not be the only insulation. +EV.6.3 Wiring +EV.6.3.1 All wires and terminals and other conductors used in the Tractive System must be sized for the +continuous current they will conduct +EV.6.3.2 All Tractive System wiring must: +a. Be marked with wire gauge, temperature rating and insulation voltage rating. +A serial number or a norm printed on the wire is sufficient if this serial number or norm is +clearly bound to the wire characteristics for example by a data sheet. +b. Have temperature rating more than or equal to 90°C +EV.6.3.3 Tractive System wiring must be: +a. Done to professional standards with sufficient strain relief +b. Protected from loosening due to vibration +c. Protected against damage by rotating and / or moving parts +d. Located out of the way of possible snagging or damage +EV.6.3.4 Any Tractive System wiring that runs outside of electrical enclosures: +a. Must meet one of the two: +• Enclosed in separate orange nonconductive conduit +• Use an orange shielded cable +b. The conduit or shielded cable must be securely anchored at each end to allow it to +withstand a force of 200 N without straining the cable end crimp +c. Any shielded cable must have the shield grounded +EV.6.3.5 Wiring that is not part of the Tractive System must not use orange wiring or conduit. +EV.6.4 Connections +EV.6.4.1 All Tractive System connections must: +a. Be designed to use intentional current paths through conductors designed for electrical +current +b. Not rely on steel bolts to be the primary conductor +c. Not include compressible material such as plastic in the stack-up +EV.6.4.2 If external, uninsulated heat sinks are used, they must be properly grounded to the GLV +System Ground, see EV.6.7 +EV.6.4.3 Bolted electrical connections in the high current path of the Tractive System must include a +positive locking feature to prevent unintentional loosening +Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. +Bolts with nylon patches are allowed for blind connections into OEM components. + +Formula SAE® Rules 2025 © 2024 SAE International Page 100 of 143 +Version 1.0 31 Aug 2024 +EV.6.4.4 Information about the electrical connections supporting the high current path must be +available at Electrical Technical Inspection +EV.6.5 Voltage Separation +EV.6.5.1 Separation of Tractive System and GLV System: +a. The entire Tractive System and GLV System must be completely galvanically separated. +b. The border between Tractive System and GLV System is the galvanic isolation between +the two systems. +Some components, such as the Motor Controller, may be part of both systems. +EV.6.5.2 There must be no connection between the Chassis of the vehicle (or any other conductive +surface that might be inadvertently touched by a person), and any part of any Tractive System +circuits. +EV.6.5.3 Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4 +EV.6.5.4 GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, +HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light +EV.5.10 the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator +Container. +EV.6.5.5 Where Tractive System and GLV are included inside the same enclosure, they must meet one +of the two: +a. Be separated by insulating barriers (in addition to the insulation on the wire) made of +moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or +higher (such as Nomex based electrical insulation) +b. Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: +U < 100 V DC 10 mm +100 V DC < U < 200 V DC 20 mm +U > 200 V DC 30 mm +EV.6.5.6 Spacing must be clearly defined. Components and cables capable of movement must be +positively restrained to maintain spacing. +EV.6.5.7 If Tractive System and GLV are on the same circuit board: +a. They must be on separate, clearly defined and clearly marked areas of the board +b. Required spacing related to the spacing between traces / board areas are as follows: +Voltage Over Surface Thru Air (cut in board) Under Conformal Coating +0-50 V DC 1.6 mm 1.6 mm 1 mm +50-150 V DC 6.4 mm 3.2 mm 2 mm +150-300 V DC 9.5 mm 6.4 mm 3 mm +300-600 V DC 12.7 mm 9.5 mm 4 mm +EV.6.5.8 Teams must be prepared to show spacing on team built equipment +For inaccessible circuitry, spare boards or appropriate photographs must be available for +inspection +EV.6.5.9 All connections to external devices such as laptops from a Tractive System component must +include galvanic isolation + +Formula SAE® Rules 2025 © 2024 SAE International Page 101 of 143 +Version 1.0 31 Aug 2024 +EV.6.6 Overcurrent Protection +EV.6.6.1 All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent +Protection/Fusing. +EV.6.6.2 Unless otherwise allowed in the Rules, all Overcurrent Protection devices must: +a. Be rated for the highest voltage in the systems they protect. +Overcurrent Protection devices used for DC must be rated for DC and must carry a DC +rating equal to or more than the system voltage +b. Have a continuous current rating less than or equal to the continuous current rating of +any electrical component that it protects +c. Have an interrupt current rating higher than the theoretical short circuit current of the +system that it protects +EV.6.6.3 Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, +strings of capacitors, or conductors must have individual Overcurrent Protection. +EV.6.6.4 Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of: +a. Be appropriately sized for the total current that the individual Overcurrent Protection +devices could transmit +b. Contain additional Overcurrent Protection to protect the conductors +EV.6.6.5 Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be +used when all three conditions are met: +• An Overcurrent Protection device rated at less than or equal to one third the sum of the +parallel fusible links and complying with EV.6.6.2.b above is connected in series. +• The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a +fault is detected. +• Fusible link current rating is specified in manufacturer’s data or suitable test data is +provided. +EV.6.6.6 If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, +the reduced conductor longer than 150 mm must have additional Overcurrent Protection. +This additional Overcurrent Protection must be: +a. 150 mm or less from the source end of the reduced conductor +b. On the positive and the negative conductors in the Tractive System +c. On the positive conductor in the Grounded Low Voltage System +EV.6.6.7 Cells with internal Overcurrent Protection may be used without external Overcurrent +Protection if suitably rated. +Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and +conditions of EV.6.6.5 above will apply. +EV.6.7 Grounding +EV.6.7.1 Grounding is required for: +a. Parts of the vehicle which are 100 mm or less from any Tractive System component +b. (EV only) The Firewall T.1.8.4 +EV.6.7.2 Grounded parts of the vehicle must have a resistance to GLV System Ground less than the +values specified below. + +Formula SAE® Rules 2025 © 2024 SAE International Page 102 of 143 +Version 1.0 31 Aug 2024 +a. Electrically conductive parts 300 mOhms (measured with a current of 1 A) +Examples: parts made of steel, (anodized) aluminum, any other metal parts +b. Parts which may become electrically conductive 5 Ohm +Example: carbon fiber parts +Carbon fiber parts may need special measures such as using copper mesh or similar to +keep the ground resistance below 5 Ohms. +EV.6.7.3 Electrical conductivity of any part may be tested by checking any point which is likely to be +conductive. +Where no convenient conductive point is available, an area of coating may be removed. +EV.7 SHUTDOWN SYSTEM +EV.7.1 Shutdown Circuit +EV.7.1.1 The Shutdown Circuit consists of these components, connected in series: +a. Battery Management System (BMS) EV.7.3 +b. Insulation Monitoring Device (IMD) EV.7.6 +c. Brake System Plausibility Device (BSPD) EV.7.7 +d. Interlocks (as required) EV.7.8 +e. Master Switches (GLVMS, TSMS) EV.7.9 +f. Shutdown Buttons EV.7.10 +g. Brake Over Travel Switch (BOTS) T.3.3 +h. Inertia Switch T.9.4 +EV.7.1.2 The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the +Precharge Circuit Relay. +EV.7.1.3 The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open +EV.7.1.4 The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown +Circuit. +The design of the respective circuits must make sure that a failure cannot result in electrical +power being fed back into the Shutdown Circuit. +EV.7.1.5 The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown +Circuit current +EV.7.1.6 The team must be able to demonstrate all features and functions of the Shutdown Circuit and +components at Electrical Technical Inspection. + +Formula SAE® Rules 2025 © 2024 SAE International Page 103 of 143 +Version 1.0 31 Aug 2024 +EV.7.2 Shutdown Circuit Operation +EV.7.2.1 The Shutdown Circuit must Open when any of these exist: +a. Operation of, or detection from any of the components listed in EV.7.1.1 +b. Any shutdown of the GLV System +EV.7.2.2 When the Shutdown Circuit Opens: +a. The Tractive System must Shutdown +b. All Accumulator current flow must stop immediately EV.5.4.3 +c. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less +d. The Motor(s) must spin free. Torque must not be applied to the Motor(s) +EV.7.2.3 When the BMS, IMD or BSPD Open the Shutdown Circuit: +a. The Tractive System must stay disabled until manually reset +b. The Tractive System must be reset only by manual action of a person directly at the +vehicle +c. The driver must not be able to reactivate the Tractive System from inside the vehicle +d. Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close +EV.7.3 Battery Management System - BMS +EV.7.3.1 A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and +Temperature EV.7.5 when the: +a. Tractive System is Active EV.11.5 +b. Accumulator is connected to a Charger EV.8.3 +EV.7.3.2 The BMS must have galvanic isolation at each segment to segment boundary, as approved in +the ESF +EV.7.3.3 Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) +Chas s is Master Switch -Brake -System -Plausibility +Brake +System +Plausibility Device -Ba ery -Management +Ba ery +Management System TSMP HV+ @@ -4308,7 +3972,7 @@ Shutdown Bu ons GLV System GLV System Trac ve System -Accumulator +Accumulator Fuse(s) IR Accumulator Container(s) @@ -4316,29 +3980,29 @@ Trac ve System cockpit IR Precharge -Precharge +Precharge Control -GLV +GLV Ba ery Interlock(s) GND GLVMP -HV +HV TSMP Iner a Switch -Brake -System -Plausibility +Brake +System +Plausibility Device Insula on Monitoring Device -Brake -Over -Travel +Brake +Over +Travel Switch -MSD +MSD Interlock LV TS @@ -4352,1683 +4016,1613 @@ System Trac ve System - -Formula SAE® Rules 2025 © 2024 SAE International Page 104 of 143 -Version 1.0 31 Aug 2024 -EV.7.3.4 The BMS must monitor for: -a. Voltage values outside the allowable range EV.7.4.2 -b. Voltage sense Overcurrent Protection device(s) blown or tripped -c. Temperature values outside the allowable range EV.7.5.2 -d. Missing or interrupted voltage or temperature measurements -e. A fault in the BMS -EV.7.3.5 If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must: -a. Open the Shutdown Circuit EV.7.2.2 -b. Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 -The two lights must stay on until the BMS is manually reset EV.7.2.3 -EV.7.3.6 The BMS Indicator Light must be: -a. Color: Red -b. Clearly visible to the seated driver in bright sunlight -c. Clearly marked with the lettering “BMS” -EV.7.4 Accumulator Voltage -EV.7.4.1 The BMS must measure the cell voltage of each cell -When single cells are directly connected in parallel, only one voltage measurement is needed -EV.7.4.2 Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels -stated in the cell data sheet. Measurement accuracy must be considered. -EV.7.4.3 All voltage sense wires to the BMS must meet one of: -a. Have Overcurrent Protection EV.7.4.4 below -b. Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below -EV.7.4.4 When used, Overcurrent Protection for the BMS voltage sense wires must meet the two: -a. The Overcurrent Protection must occur in the conductor, wire or PCB trace which is -directly connected to the cell tab. -b. The voltage rating of the Overcurrent Protection must be equal to or higher than the -maximum segment voltage -EV.7.4.5 Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: -• BMS is a distributed BMS system (one cell measurement per board) -• Sense wire length is less than 25 mm -• BMS board has Overcurrent Protection -EV.7.5 Accumulator Temperature -EV.7.5.1 The BMS must measure the temperatures of critical points of the Accumulator -EV.7.5.2 Temperatures (considering measurement accuracy) must stay below the lower of the two: -• The maximum cell temperature limit stated in the cell data sheet -• 60°C -EV.7.5.3 Cell temperatures must be measured at the negative terminal of the respective cell - - -Formula SAE® Rules 2025 © 2024 SAE International Page 105 of 143 -Version 1.0 31 Aug 2024 -EV.7.5.4 The temperature sensor used must be in direct contact with one of: -• The negative terminal itself -• The negative terminal busbar less than 10 mm away from the spot weld or clamping -source on the negative cell terminal -EV.7.5.5 For lithium based cells, -a. The temperature of a minimum of 20% of the cells must be monitored by the BMS -b. The monitored cells must be equally distributed inside the Accumulator Container(s) -The temperature of each cell should be monitored -EV.7.5.6 Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells -sensed by the sensor. -EV.7.5.7 Temperature sensors must have appropriate electrical isolation that meets one of the two: -• Between the sensor and cell -• In the sensing circuit -The isolation must consider GLV/TS isolation as well as common mode voltages between -sense locations. -EV.7.6 Insulation Monitoring Device - IMD -EV.7.6.1 The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System -EV.7.6.2 The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved -alternate equivalent IMD -Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD -EV.7.6.3 The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the -maximum Tractive System operation voltage. -EV.7.6.4 The IMD must monitor the Tractive System for: -a. An isolation failure -b. A failure in the IMD operation -This must be done without the influence of any programmable logic. -EV.7.6.5 If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must: -a. Open the Shutdown Circuit EV.7.2.2 -b. Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 -The two lights must stay on until the IMD is manually reset EV.7.2.3 -EV.7.6.6 The IMD Indicator Light must be: -a. Color: Red -b. Clearly visible to the seated driver in bright sunlight -c. Clearly marked with the lettering “IMD” -EV.7.7 Brake System Plausibility Device - BSPD -EV.7.7.1 The vehicle must have a standalone nonprogrammable circuit to check for simultaneous -braking and high power output -The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7) -EV.7.7.2 The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: - - -Formula SAE® Rules 2025 © 2024 SAE International Page 106 of 143 -Version 1.0 31 Aug 2024 -• Demand for Hard Braking EV.4.6 -• Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit -is delivered to the Motor(s) at the nominal battery voltage -The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips -EV.7.7.3 The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in -any sensor input -EV.7.7.4 The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection. -a. Power must not be sent to the Motor(s) of the vehicle during the test -b. The test must prove the function of the complete BSPD in the vehicle, including the -current sensor -The suggested test would introduce a current by a separate wire from an external power -supply simulating the Tractive System current while pressing the brake pedal -EV.7.8 Interlocks -EV.7.8.1 Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 ) -EV.7.8.2 Additional Interlocks may be included in the Tractive System or components -EV.7.8.3 The Interlock is a wire or connection that must: -a. Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted -b. Not be in the low (ground) connection to the IR coils of the Shutdown Circuit -EV.7.8.4 Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive -System wiring or components when the Interlock circuit is: -a. In the same wiring harness as Tractive System wiring -b. Part of a Tractive System Connector EV.5.9 -c. Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the -connection to a Tractive System connector -EV.7.9 Master Switches -EV.7.9.1 Each vehicle must have two Master Switches that must: -a. Meet T.9.3 for Configuration and Location -b. Be direct acting, not act through a relay or logic -EV.7.9.2 The Grounded Low Voltage Master Switch (GLVMS) must: -a. Completely stop all power to the GLV System EV.4.4 -b. Be in the center of a completely red circular area of > 50 mm in diameter -c. Be labeled “LV” -EV.7.9.3 The Tractive System Master Switch (TSMS) must: -a. Open the Shutdown Circuit in the OFF position EV.7.2.2 -b. Be the last switch before the IRs except for Precharge circuitry and Interlocks. -c. Be in the center of a completely orange circular area of > 50 mm in diameter -d. Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black -lightning bolt on yellow background). -e. Be fitted with a "lockout/tagout" capability in the OFF position EV.11.3.1 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 107 of 143 -Version 1.0 31 Aug 2024 -EV.7.10 Shutdown Buttons -EV.7.10.1 Three Shutdown Buttons must be installed on the vehicle -EV.7.10.2 Each Shutdown Button must: -a. Be a push-pull or push-rotate emergency stop switch -b. Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position -c. Hold when operated to the OFF position -d. Let the Shutdown Circuit Close when operated to the ON position -EV.7.10.3 One Shutdown Button must be on each side of the vehicle which: -a. Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop -Bracing F.5.9 -b. Has a diameter of 40 mm minimum -c. Must not be easily removable or mounted onto removable body work -EV.7.10.4 One Shutdown Button must be mounted in the cockpit which: -a. Is located in easy reach of the belted in driver, adjacent to the steering wheel, and -unobstructed by the steering wheel or any other part of the vehicle -b. Has diameter of 24 mm minimum -EV.7.10.5 The international electrical symbol (a red spark on a white edged blue triangle) must be near -each Shutdown Button. -EV.8 CHARGER REQUIREMENTS -EV.8.1 Charger Requirements -EV.8.1.1 All features and functions of the Charger and Charging Shutdown Circuit must be -demonstrated at Electrical Technical Inspection. IN.4.1 -EV.8.1.2 Chargers will be sealed after approval. IN.4.7.1 -EV.8.2 Charger Features -EV.8.2.1 The Charger must be galvanically isolated (AC) input to (DC) output. -EV.8.2.2 If the Charger housing is conductive it must be connected to the earth ground of the AC input. -EV.8.2.3 All connections of the Charger(s) must be isolated and covered. -EV.8.2.4 The Charger connector(s) must incorporate a feature to let the connector become live only -when correctly connected to the Accumulator. -EV.8.2.5 High Voltage charging leads must be orange -EV.8.2.6 The Charger must have two TSMPs installed, see EV.5.8.2 -EV.8.2.7 The Charger must include a Charger Shutdown Button which must: -a. Be a push-pull or push-rotate emergency stop switch -b. Have a minimum diameter of 25 mm -c. Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position -d. Hold when operated to the OFF position -e. Be labelled with the international electrical symbol (a red spark on a white edged blue -triangle) - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 108 of 143 -Version 1.0 31 Aug 2024 -EV.8.3 Charging Shutdown Circuit -EV.8.3.1 The Charging Shutdown Circuit consists of: -a. Charger Shutdown Button EV.8.2.7 -b. Battery Management System (BMS) EV.7.3 -c. Insulation Monitoring Device (IMD) EV.7.6 -EV.8.3.2 The BMS and IMD parts of the Charging Shutdown Circuit must: -a. Be designed as Normally Open contacts -b. Have completely independent circuits to Open the Charging Shutdown Circuit. -Design of the respective circuits must make sure that a failure cannot result in electrical -power being fed back into the Charging Shutdown Circuit. -EV.8.4 Charging Shutdown Circuit Operation -EV.8.4.1 When Charging, the BMS and IMD must: -a. Monitor the Accumulator -b. Open the Charging Shutdown Circuit if a fault is detected -EV.8.4.2 When the Charging Shutdown Circuit Opens: -a. All current flow to the Accumulator must stop immediately -b. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less -c. The Charger must be turned off -d. The Charger must stay disabled until manually reset -EV.9 VEHICLE OPERATIONS -EV.9.1 Activation Requirement -The driver must complete the Activation Sequence without external assistance after the -Master Switches EV.7.9 are ON -EV.9.2 Activation Sequence -The vehicle systems must energize in this sequence: -a. Low Voltage (GLV) System EV.9.3 -b. Tractive System Active EV.9.4 -c. Ready to Drive EV.9.5 -EV.9.3 Low Voltage (GLV) System -The Shutdown Circuit may be Closed when or after the GLV System is energized -EV.9.4 Tractive System Active -EV.9.4.1 Definition – High Voltage is present outside of the Accumulator Container -EV.9.4.2 Tractive System Active must not be possible until the two: -• GLV System is Energized -• Shutdown Circuit is Closed -EV.9.5 Ready to Drive -EV.9.5.1 Definition – the Motor(s) will respond to the input of the APPS - - -Formula SAE® Rules 2025 © 2024 SAE International Page 109 of 143 -Version 1.0 31 Aug 2024 -EV.9.5.2 Ready to Drive must not be possible until the three at the same time: -• Tractive System Active EV.9.4 -• The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 -• The driver does a manual action to start Ready to Drive -Such as pressing a specific button in the cockpit -EV.9.6 Ready to Drive Sound -EV.9.6.1 The vehicle must make a characteristic sound when it is Ready to Drive -EV.9.6.2 The Ready to Drive Sound must be: -a. Sounded continuously for minimum 1 second and maximum 3 seconds -b. A minimum sound level of 80 dBA, fast weighting IN.4.6 -c. Easily recognizable. No animal voices, song parts or sounds that could be interpreted as -offensive will be accepted -EV.9.6.3 The vehicle must not make other sounds similar to the Ready to Drive Sound. -EV.10 EVENT SITE ACTIVITIES -EV.10.1 Onsite Registration -EV.10.1.1 The Accumulator must be onsite at the time the team registers to be eligible for Accumulator -Technical Inspection and Dynamic Events -EV.10.1.2 Teams who register without the Accumulator: -a. Must not bring their Accumulator onsite for the duration of the competition -b. May participate in Technical Inspection and Static Events -EV.10.2 Accumulator Removal -EV.10.2.1 After the team registers onsite, the Accumulator must remain on the competition site until -the end of the competition, or the team withdraws and leaves the site -EV.10.2.2 Violators will be disqualified from the competition and must leave immediately -EV.11 WORK PRACTICES -EV.11.1 Personnel -EV.11.1.1 The Electrical System Officer (ESO): AD.5.2 -a. Is the only person on the team that may declare the vehicle electrically safe to allow -work on any system -b. Must accompany the vehicle when operated or moved at the competition site -c. Must be immediately available by phone at all times during the event -EV.11.2 Maintenance -EV.11.2.1 All participating team members must wear safety glasses with side shields at any time when: -a. Parts of the Tractive System are exposed while energized -b. Work is done on the Accumulators -EV.11.2.2 Appropriate insulated tools must be used when working on the Accumulator or Tractive -System - - -Formula SAE® Rules 2025 © 2024 SAE International Page 110 of 143 -Version 1.0 31 Aug 2024 -EV.11.3 Lockout -EV.11.3.1 The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle. -EV.11.3.2 The MSD EV.5.5 must be disconnected when vehicles are: -a. Moved around the competition site -b. Participating in Static Events -EV.11.4 Accumulator -EV.11.4.1 These work activities at competition are allowed only in the designated area and during -Electrical Technical Inspection IN.4 See EV.5.3.3 -a. Opening Accumulator Containers -b. Any work on Accumulators, cells, or Segments -c. Energized electrical work -EV.11.4.2 Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site -inside one of the two: -a. Completely closed Accumulator Container EV.4.3 See EV.4.10.2 -b. Segment/Cell Transport Container EV.11.4.3 -EV.11.4.3 The Segment/Cell Transport Container(s) must be: -a. Electrically insulated -b. Protected from shock hazards and arc flash -EV.11.4.4 Segments/Cells inside the Transport Container must agree with the voltage and energy limits -of EV.5.1.2 -EV.11.5 Charging -EV.11.5.1 Accumulators must be removed from the vehicle inside the Accumulator Container and put on -the Accumulator Container Hand Cart EV.4.10 for Charging -EV.11.5.2 Accumulator Charging must occur only inside the designated area -EV.11.5.3 A team member(s) who has knowledge of the Charging process must stay with the -Accumulator(s) during Charging -EV.11.5.4 Each Accumulator Container(s) must have a label with this data during Charging: -• Team Name -• Electrical System Officer phone number(s) -EV.11.5.5 Additional site specific rules or policies may apply -EV.12 RED CAR CONDITION -EV.12.1 Definition -A vehicle will be a Red Car if any of the following: -a. Actual or possible damage to the vehicle affecting the Tractive System -b. Vehicle fault indication (EV.5.11 or equivalent) -c. Other conditions, at the discretion of the officials -EV.12.2 Actions -a. Isolate the vehicle - - -Formula SAE® Rules 2025 © 2024 SAE International Page 111 of 143 -Version 1.0 31 Aug 2024 -b. No contact with the vehicle unless the officials give permission -Contact with the vehicle may require trained personnel with proper Personal Protective -Equipment -c. Call out designated Red Car responders - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 112 of 143 -Version 1.0 31 Aug 2024 -IN - TECHNICAL INSPECTION -The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE -Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the -Rules. -IN.1 INSPECTION REQUIREMENTS -IN.1.1 Inspection Required -Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection -Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any -Dynamic event. -IN.1.2 Technical Inspection Authority -IN.1.2.1 The exact procedures and instruments used for inspection and testing are entirely at the -discretion of the Chief Technical Inspector(s). -IN.1.2.2 Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance -are final. -IN.1.3 Team Responsibility -Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE -Rules before Technical Inspection. -IN.1.4 Reinspection -Officials may Reinspect any vehicle at any time during the competition IN.15 -IN.2 INSPECTION CONDUCT -IN.2.1 Vehicle Condition -IN.2.1.1 Vehicles must be presented for Technical Inspection in finished condition, fully assembled, -complete and ready to run. -IN.2.1.2 Technical inspectors will not inspect any vehicle presented for inspection in an unfinished -state. -IN.2.2 Measurement -IN.2.2.1 Allowable dimensions are absolute, and do not have any tolerance unless specifically stated -IN.2.2.2 Measurement tools and methods may vary -IN.2.2.3 No allowance is given for measurement accuracy or error -IN.2.3 Visible Access -All items on the Technical Inspection Form must be clearly visible to the technical inspectors -without using instruments such as endoscopes or mirrors. -Methods to provide visible access include but are not limited to removable body panels, access -panels, and other components -IN.2.4 Inspection Items -IN.2.4.1 Technical Inspection will examine all items included on the Technical Inspection Form to make -sure the vehicle and other equipment obeys the Rules. -IN.2.4.2 Technical Inspectors may examine any other items at their discretion - - -Formula SAE® Rules 2025 © 2024 SAE International Page 113 of 143 -Version 1.0 31 Aug 2024 -IN.2.5 Correction -If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team -must: -• Correct the problem -• Continue Inspection or have the vehicle Reinspected -IN.2.6 Marked Items -IN.2.6.1 Officials may mark, seal, or designate items or areas which have been inspected to document -the inspection and reduce the chance of tampering -IN.2.6.2 Damaged or lost marks or seals require Reinspection IN.15 -IN.3 INITIAL INSPECTION -Bring these to Initial Inspection: -• Technical Inspection Form -• All Driver Equipment per VE.3 to be used by each driver -• Fire Extinguishers (for paddock and vehicle) VE.2.3 -• Wet Tires V.4.3.2 -IN.4 ELECTRICAL TECHNICAL INSPECTION (EV ONLY) -IN.4.1 Inspection Items -Bring these to Electrical Technical Inspection: -• Charger(s) for the Accumulator(s) EV.8.1 -• Accumulator Container Hand Cart EV.4.10 -• Spare Accumulator(s) (if applicable) EV.5.1.4 -• Electrical Systems Form (ESF) and Component Data Sheets EV.2 -• Copies of any submitted Rules Questions with the received answer GR.7 -These basic tools in good condition: -• Insulated cable shears -• Insulated screw drivers -• Multimeter with protected probe tips -• Insulated tools, if screwed connections are used in the Tractive System -• Face Shield -• HV insulating gloves which are 12 months or less from their test date -• Two HV insulating blankets of minimum 0.83 m² each -• Safety glasses with side shields for all team members that might work on the Tractive -System or Accumulator -IN.4.2 Accumulator Inspection -The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected -during Electrical Technical Inspection, or separately from the rest of Electrical Technical -Inspection. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 114 of 143 -Version 1.0 31 Aug 2024 -IN.4.3 Accumulator Access -IN.4.3.1 If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, -provide detailed pictures of the internals taken during assembly -IN.4.3.2 Tech inspectors may require access to check any Accumulator(s) for rules compliance -IN.4.4 Insulation Monitoring Device Test -IN.4.4.1 The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive -System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the -Tractive System is active -IN.4.4.2 The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault -resistance of 50% below the response value corresponding to 250 Ohm / Volt -IN.4.5 Insulation Measurement Test -IN.4.5.1 The insulation resistance between the Tractive System and GLV System Ground will be -measured. -IN.4.5.2 The available measurement voltages are 250 V and 500 V. All vehicles with a maximum -nominal operation voltage below 500 V will be measured with the next available voltage level. -All teams with a system voltage of 500 V or more will be measured with 500 V. -IN.4.5.3 To pass the Insulation Measurement Test the measured insulation resistance must be -minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage. -IN.4.6 Ready to Drive Sound -The sound level will be measured with a free field microphone placed free from obstructions -in a radius of 2 m around the vehicle against the criteria in EV.9.6 -IN.4.7 Electrical Inspection Completion -IN.4.7.1 All or portions of the Tractive System, Charger and other components may be sealed IN.2.6 -IN.4.7.2 Additional monitoring to verify conformance to rules may be installed. Refer to the Event -Website for further information. -IN.4.7.3 A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle -may be Tractive System Active EV.9.4 -IN.4.7.4 Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection -before the vehicle may attempt any further Inspections. See EV.11.3.2 -IN.5 DRIVER COCKPIT CHECKS -The Clearance Checks and Egress Test may be done separately or in conjunction with other -parts of Technical Inspection -IN.5.1 Driver Clearance -Each driver in the normal driving position is checked for the three: -• Helmet clearance F.5.6.4 -• Head Restraint positioning T.2.8.5 -• Harness fit and adjustment T.2.5, T.2.6, T.2.7 -IN.5.2 Egress Test -IN.5.2.1 Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 115 of 143 -Version 1.0 31 Aug 2024 -IN.5.2.2 The Egress Test will be conducted for each driver as follows: -a. The driver must wear the specified Driver Equipment VE.3.2, VE.3.3 -b. Egress time begins with the driver in the fully seated position, with hands in driving -position on the connected steering wheel. -c. Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown -Button EV.7.10.4 -d. Egress time will stop when the driver has two feet on the pavement -IN.5.3 Driver Clearance and Egress Test Completion -IN.5.3.1 To drive the vehicle, each team driver must: -a. Meet the Driver Clearance requirements IN.5.1 -b. Successfully complete the Egress Test IN.5.2 -IN.5.3.2 A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection -IN.6 DRIVER TEMPLATE INSPECTIONS -The Driver Template Inspection will be conducted as part of the Mechanical Inspection -IN.6.1 Conduct -The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6 -IN.6.2 Driver Template Clearance Criteria -To pass Mechanical Technical Inspection, the Driver Template must meet the clearance -specified in F.5.6.4 -IN.7 COCKPIT TEMPLATE INSPECTIONS -The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection -IN.7.1 Conduct -IN.7.1.1 The Cockpit Opening will be checked using the template and procedure given in T.1.1 -IN.7.1.2 The Internal Cross Section will be checked using the template and procedure given in T.1.2 -IN.7.2 Cockpit Template Criteria -To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described. -IN.8 MECHANICAL TECHNICAL INSPECTION -IN.8.1 Inspection Items -Bring these to Mechanical Technical Inspection: -• Vehicle on Dry Tires V.4.3.1 -• Technical Inspection Form -• Push Bar VE.2.2 -• Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 -• Monocoque Laminate Test Specimens (if applicable) F.4.2 -• The Impact Attenuator that was tested (if applicable) F.8.8.7 -• Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c - - -Formula SAE® Rules 2025 © 2024 SAE International Page 116 of 143 -Version 1.0 31 Aug 2024 -• Electronic copies of any submitted Rules Questions with the received answer GR.7 -IN.8.2 Aerodynamic Devices Stability and Strength -IN.8.2.1 Any Aerodynamic Devices may be checked by pushing on the device in any direction and at -any point. -This is guidance, but actual conformance will be up to technical inspectors at the respective -competitions. The intent is to reduce the likelihood of wings detaching -IN.8.2.2 If any deflection is significant, then a force of approximately 200 N may be applied. -a. Loaded deflection should not be more than 25 mm -b. Any permanent deflection less than 5 mm -IN.8.2.3 If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic -Devices, then officials may Black Flag the vehicle for IN.15 Reinspection. -IN.8.3 Monocoque Inspections -IN.8.3.1 Dimensions of the Monocoque will be confirmed F.7.1.4 -IN.8.3.2 When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide: -a. Documentation that shows dimensions on the tubes -b. Pictures of the dimensioned tube being included in the layup -IN.8.3.3 For items which cannot be verified by an inspector, the team must provide documentation, -visual and/or written, that the requirements have been met. -IN.8.3.4 A team found to be improperly presenting any evidence of the manufacturing process may be -barred from competing with a monocoque. -IN.8.4 Engine Inspection (IC Only) -The organizer may measure or tear down engines to confirm conformance to the rules. -IN.8.5 Mechanical Inspection Completion -All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any -further inspections. -IN.9 TILT TEST -IN.9.1 Tilt Test Requirements -a. The vehicle must contain the maximum amount of fluids it may carry -b. The tallest driver must be seated in the normal driving position -c. Tilt tests may be conducted in one, the other, or the two directions to pass -d. (IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and -pressure the system downstream of the High Pressure pump. See IC.6.2 -IN.9.2 Tilt Test Criteria -IN.9.2.1 No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal -IN.9.2.2 Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g. -IN.9.3 Tilt Test Completion -Tilt Tests must be passed before a vehicle may attempt any further inspections - - -Formula SAE® Rules 2025 © 2024 SAE International Page 117 of 143 -Version 1.0 31 Aug 2024 -IN.10 NOISE AND SWITCH TEST (IC ONLY) -IN.10.1 Sound Level Measurement -IN.10.1.1 The sound level will be measured during a stationary test, with the vehicle gearbox in neutral -at the defined Test Speed -IN.10.1.2 Measurements will be made with a free field microphone placed: -• free from obstructions -• at the Exhaust Outlet vertical level IC.7.2.2 -• 0.5 m from the end of the Exhaust Outlet IC.7.2.2 -• at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below) -IN.10.2 Special Configurations -IN.10.2.1 Where the Exhaust has more than one Exhaust Outlet: -a. The noise test is repeated for each outlet -b. The highest sound level is used -IN.10.2.2 Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal -plane. -IN.10.2.3 If the exhaust has any form of active tuning or throttling device or system, the exhaust must -meet all requirements with the device or system in all positions. -IN.10.2.4 When the exhaust has a manually adjustable tuning device(s): -a. The position of the device must be visible to the officials for the noise test -b. The device must be manually operable by the officials during the noise test -c. The device must not be moved or modified after the noise test is passed -IN.10.3 Industrial Engine -An engine which, according to the manufacturers’ specifications and without the required -restrictor, is capable of producing 5 hp per 100 cc or less. -Submit a Rules Question to request approval of an Industrial Engine. -IN.10.4 Test Speeds -IN.10.4.1 Maximum Test Speed -The engine speed that corresponds to an average piston speed of: -a. Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min) -b. Industrial Engines 731.5 m/min (2,400 ft/min) -The calculated speed will be rounded to the nearest 500 rpm. -Test Speeds for typical engines are published on the FSAE Online website -IN.10.4.2 Idle Test Speed -a. Determined by the vehicle’s calibrated idle speed -b. If the idle speed varies then the vehicle will be tested across the range of idle speeds -determined by the team -IN.10.4.3 The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 118 of 143 -Version 1.0 31 Aug 2024 -IN.10.5 Maximum Permitted Sound Level -a. At idle 103 dBC, fast weighting -b. At all other speeds 110 dBC, fast weighting -IN.10.6 Noise Level Retesting -IN.10.6.1 Noise levels may be monitored at any time -IN.10.6.2 The Noise Test may be repeated at any time -IN.10.7 Switch Function -The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, -and/or BOTS T.3.3 will be verified during the Noise Test -IN.10.8 Noise Test Completion -Noise Tests must be passed before a vehicle may attempt any further inspections -IN.11 RAIN TEST (EV ONLY) -IN.11.1 Rain Test Requirements -• Tractive System must be Active -• The vehicle must not be in Ready to Drive mode (EV.7) -• Any driven wheels must not touch the ground -• A driver must not be seated in the vehicle -IN.11.2 Rain Test Conduct -The water spray will be rain like, not a direct high pressure water jet -a. Spray water at the vehicle from any possible direction for 120 seconds -b. Stop the water spray -c. Observe the vehicle for 120 seconds -IN.11.3 Rain Test Completion -The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire -240 seconds duration -IN.12 BRAKE TEST -IN.12.1 Objective -The brake system will be dynamically tested and must demonstrate the capability of locking all -four wheels when stopping the vehicle in a straight line at the end of an acceleration run -specified by the brake inspectors -IN.12.2 Brake Test Conduct (IC Only) -IN.12.2.1 Brake Test procedure: -a. Accelerate to speed (typically getting into 2nd gear) until reaching the designated area -b. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels -IN.12.2.2 The Brake Test passes if: -• All four wheels lock up -• The engine stays running during the complete test - - -Formula SAE® Rules 2025 © 2024 SAE International Page 119 of 143 -Version 1.0 31 Aug 2024 -IN.12.3 Brake Test Conduct (EV Only) -IN.12.3.1 Brake Test procedure: -a. Accelerate to speed until reaching the designated area -b. Switch off the Tractive System EV.7.10.4 -c. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels -IN.12.3.2 The Brake Test passes if all four wheels lock while the Tractive System is shut down -IN.12.3.3 The Tractive System Active Light may switch a short time after the vehicle has come to a -complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c -IN.13 INSPECTION APPROVAL -IN.13.1 Inspection Approval -IN.13.1.1 When all parts of Technical Inspection are complete as shown on the Technical Inspection -sheet, the vehicle receives Inspection Approval -IN.13.1.2 The completed Inspection Sticker shows the Inspection Approval -IN.13.1.3 The Inspection Approval is contingent on the vehicle remaining in the required condition -throughout the competition. -IN.13.1.4 The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any -time for any reason -IN.13.2 Inspection Sticker -IN.13.2.1 Inspection Sticker(s) are issued after completion of all or part of Technical Inspection -IN.13.2.2 Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently -IN.13.3 Inspection Validity -IN.13.3.1 Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or -are required to be Reinspected. -IN.13.3.2 Inspection Approval is valid only for the duration of the specific Formula SAE competition -during which the inspection is conducted. -IN.14 MODIFICATIONS AND REPAIRS -IN.14.1 Prior to Inspection Approval -Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for -Technical Inspection, and until the vehicle has the full Inspection Approval, the only -modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the -Inspection Form. -IN.14.2 After Inspection Approval -IN.14.2.1 The vehicle must maintain all required specifications (including but not limited to ride height, -suspension travel, braking capacity (pad material/composition), sound level and wing location) -throughout the competition. -IN.14.2.2 Changes to fit the vehicle to different drivers are allowed. Permitted changes are: -• Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly -• Substitution of the Head Restraint or seat insert -• Adjustment of mirrors - - -Formula SAE® Rules 2025 © 2024 SAE International Page 120 of 143 -Version 1.0 31 Aug 2024 -IN.14.2.3 Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the -vehicle are: -• Adjustment of belts, chains and clutches -• Adjustment of brake bias -• Adjustment to engine / powertrain operating parameters, including fuel mixture and -ignition timing, and any software calibration changes -• Adjustment of the suspension -• Changing springs, sway bars and shims in the suspension -• Adjustment of Tire Pressure, subject to V.4.3.4 -• Adjustment of wing or wing element(s) angle, but not the location T.7.1 -• Replenishment of fluids -• Replacement of worn tires or brake pads. Replacement tires and brake pads must be -identical in material/composition/size to those presented and approved at Technical -Inspection. -• Changing of wheels and tires for weather conditions D.6 -• Recharging Low Voltage batteries -• Recharging High Voltage Accumulators -IN.14.3 Repairs or Changes After Inspection Approval -The Inspection Approval may be voided for any reason including, but not limited to: -a. Damage to the vehicle IN.13.1.3 -b. Changes beyond those allowed per IN.14.2 above -IN.15 REINSPECTION -IN.15.1 Requirement -IN.15.1.1 Any vehicle may be Reinspected at any time for any reason -IN.15.1.2 Reinspection must be completed to restore Inspection Approval, if voided -IN.15.2 Conduct -IN.15.2.1 The Technical Inspection process may be repeated in entirety or in part -IN.15.2.2 Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector -IN.15.3 Result -IN.15.3.1 With Voided Inspection Approval -Successful completion of Reinspection will restore Inspection Approval IN.13.1 -IN.15.3.2 During Dynamic Events -a. Issues found during Reinspection will void Inspection Approval -b. Penalties may be applied to the Dynamic Events the vehicle has competed in -Applied penalties may include additional time added to event(s), loss of one or more -fastest runs, up to DQ, subject to official discretion. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 121 of 143 -Version 1.0 31 Aug 2024 -S - STATIC EVENTS -S.1 GENERAL STATIC -Presentation 75 points -Cost 100 points -Design 150 points -Total 325 points -S.2 PRESENTATION EVENT -S.2.1 Presentation Event Objective -The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive -business, logistical, production, or technical case that will convince outside interests to invest -in the team’s concept. -S.2.2 Presentation Concept -S.2.2.1 The concept for the Presentation Event will be provided on the FSAE Online website. -S.2.2.2 The concept for the Presentation Event may change for each competition -S.2.2.3 The team presentation must meet the concept -S.2.2.4 The team presentation must relate specifically to the vehicle as entered in the competition -S.2.2.5 Teams should assume that the judges represent different areas, including engineering, -production, marketing and finance, and may not all be engineers. -S.2.2.6 The presentation may be given in different settings, such as a conference room, a group -meeting, virtually, or in conjunction with other Static Events. -Specific details will be included in the Presentation Concept or communicated separately. -S.2.3 Presentation Schedule -Teams that fail to make their presentation during their assigned time period get zero points -for the Presentation Event. -S.2.4 Presentation Submissions -S.2.4.1 The Presentation Concept may require information to be submitted prior to the event. -Specific details will be included in the Presentation Concept. -S.2.4.2 Submissions may be graded as part of the Presentation Event score. -S.2.4.3 Pre event submissions will be subject to penalties imposed as given in section DR - Document -Requirements or the Presentation Concept -S.2.5 Presentation Format -S.2.5.1 One or more team members will give the presentation to the judges. -S.2.5.2 All team members who will give any part of the presentation, or who will respond to judges’ -questions must be: -• In the presentation area when the presentation starts -• Introduced and identified to the judges -S.2.5.3 Presentations will be time limited. The judges will stop any presentation exceeding the time -limit. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 122 of 143 -Version 1.0 31 Aug 2024 -S.2.5.4 The presentation itself will not be interrupted by questions. Immediately after the -presentation there may be a question and answer session. -S.2.5.5 Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions. -S.2.6 Presentation Equipment -Refer to the Presentation Concept for additional information -S.2.7 Evaluation Criteria -S.2.7.1 Presentations will be evaluated on content, organization, visual aids, delivery and the team’s -response to the judges questions. -S.2.7.2 The actual quality of the prototype itself will not be considered as part of the presentation -judging -S.2.7.3 Presentation Judging Score Sheet – available at the FSAE Online website -S.2.8 Judging Sequence -Presentation judging may be conducted in one or more phases. -S.2.9 Presentation Event Scoring -S.2.9.1 The Presentation raw score is based on the average of the scores of each judge. -S.2.9.2 Presentation Event scores may range from 0 to 75 points, using a method at the discretion of -the judges -S.2.9.3 Presentation Event scoring may include normalizing the scores of different judging teams and -scaling the overall results. -S.3 COST AND MANUFACTURING EVENT -S.3.1 Cost Event Objective -The Cost and Manufacturing Event evaluates the ability of the team to consider budget and -incorporate production considerations for production and efficiency. -Making tradeoff decisions between content and cost based on the performance of each part -and assembly and accounting for each part and process to meet a budget is part of Project -Management. -S.3.2 Cost Event Supplement -a. Additional specific information on the Cost and Manufacturing Event, including -explanation and requirements, is provided in the Formula SAE Cost Event Supplement -document. -b. Use the Formula SAE Cost Event Supplement to properly complete the requirements of -the Cost and Manufacturing Event. -c. The Formula SAE Cost Event Supplement is available on the FSAE Online website -S.3.3 Cost Event Areas -S.3.3.1 Cost Report -Preparation and submission of a report (the “Cost Report”) -S.3.3.2 Event Day Discussion -Discussion at the Competition with the Cost Judges around the team’s vehicle. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 123 of 143 -Version 1.0 31 Aug 2024 -S.3.3.3 Cost Scenario -Teams will respond to a challenge related to cost or manufacturing of the vehicle. -S.3.4 Cost Report -S.3.4.1 The Cost Report must: -a. List and cost each part on the vehicle using the standardized Cost Tables -b. Base the cost on the actual manufacturing technique used on the prototype -Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc. -c. Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it. -d. Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools). -e. Include supporting documentation to allow officials to verify part costing -S.3.4.2 Generate and submit the Cost Report using the FSAE Online website, see DR - Document -Requirements -S.3.5 Bill of Materials - BOM -S.3.5.1 The BOM is a list of all vehicle parts, showing the relationships between the items. -a. The overall vehicle is broken down into separate Systems -b. Systems are made up of Assemblies -c. Assemblies are made up of Parts -d. Parts consist of Materials, Processes and Fasteners -e. Tooling is associated with each Process that requires production tooling -S.3.6 Late Submission -Penalties for Late Submission of Cost Report will be imposed as given in section DR - -Document Requirements. -S.3.7 Cost Addendum -S.3.7.1 A supplement to the Cost Report that reflects any changes or corrections made after the -submission of the Cost Report may be submitted. -S.3.7.2 The Cost Addendum must be submitted during Onsite Registration at the Event. -S.3.7.3 The Cost Addendum must follow the format as given in section DR - Document Requirements -S.3.7.4 Addenda apply only to the competition at which they are submitted. -S.3.7.5 A separate Cost Addendum may be submitted at each competition a vehicle attends. -S.3.7.6 Changes to the Cost Report in the Cost Addendum will incur additional cost: -a. Added items will be cost at 125% of the table cost: + (1.25 x Cost) -b. Removed items will be credited 75% of the table cost: - (0.75 x Cost) -S.3.8 Cost Tables -S.3.8.1 All costs in the Cost Report must come from the standardized Cost Tables. -S.3.8.2 If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add -Item Request must be submitted. See S.3.10 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 124 of 143 -Version 1.0 31 Aug 2024 -S.3.9 Make versus Buy -S.3.9.1 Each part may be classified as Made or Bought -Refer to the Formula SAE Cost Event Supplement for additional information -S.3.9.2 If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively -cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so. -S.3.9.3 Any part which is normally purchased that is optionally shown as a Made part must have -supporting documentation submitted to prove team manufacture. -S.3.9.4 Teams costing Bought parts as Made parts will be penalized. -S.3.10 Add Item Request -S.3.10.1 An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost -Tables for individual team requirements. -S.3.10.2 After review, the item may be added to the Cost Table with an appropriate cost. It will then -be available to all teams. -S.3.11 Public Cost Reports -S.3.11.1 The competition organizers may publish all or part of the submitted Cost Reports. -S.3.11.2 Cost Reports for a given competition season will not be published before the end of the -calendar year. Support materials, such as technical drawings, will not be released. -S.3.12 Cost Report Penalties Process -S.3.12.1 This procedure will be used in determining penalties: -a. Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions -b. Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost -Additions -c. The higher of the two penalties will be applied against the Cost Event score -• Penalty A expressed in points will be deducted from the Cost Event score -• Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle -S.3.12.2 Any error that results in a team over reporting a cost in their Cost Report will not be further -penalized. -S.3.12.3 Any instance where a team’s score benefits by an intentional or unintentional error on the -part of the students will be corrected on a case by case basis. -S.3.12.4 Penalty Method A - Fixed Point Deductions -a. From the Bill of Material, the Cost Judges will determine if all Parts and Processes have -been included in the analysis. -b. In the case of any omission or error a penalty proportional to the BOM level of the error -will be imposed: -• Missing/inaccurate Material, Process, Fastener 1 point -• Missing/inaccurate Part 3 point -• Missing/inaccurate Assembly 5 point -c. Each of the penalties listed above supersedes the previous penalty. -Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 125 of 143 -Version 1.0 31 Aug 2024 -d. Differences other than those listed above will be deducted at the discretion of the Cost -Judges. -S.3.12.5 Penalty Method B – Adjusted Cost Additions -a. The table cost for the missing or incomplete items will be calculated from the standard -Cost Tables. -b. The penalty will be a value equal to twice the difference between the team cost and the -correct cost for all items in error. -Penalty = 2 x (Table Cost – Team Reported Cost) -The table costs of all items in error are included in the calculation. A missing Assembly would -include the price of all Parts, Materials, Processes and Fasteners making up the Assembly. -S.3.13 Event Day and Discussion -S.3.13.1 The team must present their vehicle at the designated time -S.3.13.2 The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during -Cost Event judging -S.3.13.3 Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging -S.3.13.4 The Cost Judges will: -a. Review whether the Cost Report accurately reflects the vehicle as presented -b. Review the manufacturing feasibility of the vehicle -c. Assess supporting documentation based on its quality, accuracy and thoroughness -d. Apply penalties for missing or incorrect information in the Cost Report compared to the -vehicle presented at inspection -S.3.14 Cost Audit -S.3.14.1 Teams may be selected for additional review to verify all processes and materials on their -vehicle are in the Cost Report -S.3.14.2 Adjustments from the Cost Audit will be included in the final scores -S.3.15 Cost Scenario -The Cost Scenario will be provided prior to the competition on the FSAE Online website -The Cost Scenario will include detailed information about the conduct, scope, and conditions -of the Cost Scenario -S.3.16 Cost Event Scoring -S.3.16.1 Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario -S.3.16.2 The Cost Event is worth 100 points -S.3.16.3 Cost Event Scores may be awarded in areas including, but not limited to: -• Price Score -• Discussion Score -• Scenario Score -S.3.16.4 Penalty points may be subtracted from the Cost Score, with no limit. -S.3.16.5 Cost Event scoring may include normalizing the scores of different judging teams and scaling -the results. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 126 of 143 -Version 1.0 31 Aug 2024 -S.4 DESIGN EVENT -S.4.1 Design Event Objective -S.4.1.1 The Design Event evaluates the engineering effort that went into the vehicle and how the -engineering meets the intent of the market in terms of vehicle performance and overall value. -S.4.1.2 The team and vehicle that illustrate the best use of engineering to meet the design goals, a -cost effective high performance vehicle, and the best understanding of the design by the team -members will win the Design Event. -S.4.1.3 Components and systems that are incorporated into the design as finished items are not -evaluated as a student designed unit, but are assessed on the team’s selection and application -of that unit. -S.4.2 Design Documents -S.4.2.1 Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings -S.4.2.2 These Design Documents will be used for: -• Design Judge reviews prior to the Design Event -• Sorting teams into appropriate design groups based on the quality of their review. -S.4.2.3 Penalties for Late Submission of all or any one of the Design Documents will be imposed as -given in section DR - Document Requirements -S.4.2.4 Teams that submit one or more Design Documents which do not represent a serious effort to -comply with the requirements may be excluded from the Design Event or be awarded a lower -score. -S.4.3 Design Briefing -S.4.3.1 The Design Briefing must use the template from the FSAE Online website. -S.4.3.2 Refer to the Design Briefing template for: -a. Specific content requirements, areas and details -b. Maximum slides that may be used per topic -S.4.3.3 Submit the Design Briefing as given in section DR - Document Requirements -S.4.4 Vehicle Drawings -S.4.4.1 The Vehicle Drawings must meet: -a. Three view line drawings showing the vehicle, from the front, top, and side -b. Each drawing must appear on a separate page -c. May be manually or computer generated -S.4.4.2 Submit the Vehicle Drawings as given in section DR - Document Requirements -S.4.5 Design Spec Sheet -Use the format provided and submit the Design Spec Sheet as given in section DR - Document -Requirements -The Design Judges realize that final design refinements and vehicle development may cause -the submitted values to differ from those of the completed vehicle. For specifications that are -subject to tuning, an anticipated range of values may be appropriate. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 127 of 143 -Version 1.0 31 Aug 2024 -S.4.6 Vehicle Condition -S.4.6.1 Inspection Approval IN.13.1.1 is not required prior to Design judging. -S.4.6.2 Vehicles must be presented for Design judging in finished condition, fully assembled, complete -and ready to run. -a. The judges will not evaluate any vehicle that is presented at the Design event in what -they consider to be an unfinished state. -b. Point penalties may be assessed for vehicles with obvious preparation issues -S.4.7 Support Material -S.4.7.1 Teams may bring to Design Judging any photographs, drawings, plans, charts, example -components or other materials that they believe are needed to support the presentation of -the vehicle and the discussion of their development process. -S.4.7.2 The available space in the Design Event judging area may be limited. -S.4.8 Judging Sequence -Design judging may be conducted in one or more phases. -Typical Design judging includes a first round review of all teams, then additional review of -selected teams. -S.4.9 Judging Criteria -S.4.9.1 The Design Judges will: -a. Evaluate the engineering effort based upon the team’s Design Documents, discussion -with the team, and an inspection of the vehicle -b. Inspect the vehicle to determine if the design concepts are adequate and appropriate for -the application (relative to the objectives stated in the rules). -c. Deduct points if the team cannot adequately explain the engineering and construction of -the vehicle -S.4.9.2 The Design Judges may assign a portion of the Design Event points to the Design Documents -S.4.9.3 Design Judging Score Sheets are available at the FSAE Online website. -S.4.10 Design Event Scoring -S.4.10.1 Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge -S.4.10.2 Penalty points may be subtracted from the Design score -S.4.10.3 Vehicles that are excluded from Design judging or refused judging get zero points for Design, -and may receive penalty points. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 128 of 143 -Version 1.0 31 Aug 2024 -D - DYNAMIC EVENTS -D.1 GENERAL DYNAMIC -D.1.1 Dynamic Events and Maximum Scores -Acceleration 100 points -Skid Pad 75 points -Autocross 125 points -Efficiency 100 points -Endurance 275 points -Total 675 points -D.1.2 Definitions -D.1.2.1 Dynamic Area – Any designated portion(s) of the competition site where the vehicles may -move under their own power. This includes competition, inspection and practice areas. -D.1.2.2 Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the -purpose of gathering those vehicles that are about to start. -D.2 PIT AND PADDOCK -D.2.1 Vehicle Movement -D.2.1.1 Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the -Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside -D.2.1.2 The team may move the vehicle with -a. All four wheels on the ground -b. The rear wheels supported on dollies, by push bar mounted wheels -The external wheels supporting the rear of the vehicle must be non pivoting so the -vehicle travels only where the front wheels are steered. The driver must always be able -to steer and brake the vehicle normally. -D.2.1.3 When the Push Bar is attached, the engine must stay off, unless authorized by the officials -D.2.1.4 Vehicles must be Shutdown when being moved around the paddock -D.2.1.5 Vehicles with wings must have two team members, one walking on each side of the vehicle -when the vehicle is being pushed -D.2.1.6 A 25 point penalty may be assessed for each violation -D.2.2 Fueling and Charging -(IC only) Officials must conduct all fueling activities in the designated location. -(EV only) Accumulator charging must be done in the designated location EV.11.5 -D.2.3 Powertrain Operation -In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three: -a. (IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR -a Technical Inspector gives permission -(EV only) The vehicle shows the OK to Energize sticker IN.4.7.3 -b. The vehicle is supported on a stand - - -Formula SAE® Rules 2025 © 2024 SAE International Page 129 of 143 -Version 1.0 31 Aug 2024 -c. The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed -D.3 DRIVING -D.3.1 Drivers Meetings – Attendance Required -All drivers for an event must attend the drivers meeting(s). The driver for an event will be -disqualified if he/she does not attend the driver meeting for the event. -D.3.2 Dynamic Area Limitations -Refer to the Event Website for specific information -D.3.2.1 The organizer may specify restrictions for the Dynamic Area. These could include limiting the -number of team members and what may be brought into the area. -D.3.2.2 The organizer may specify additional restrictions for the Staging Area. These could include -limiting the number of team members and what may be brought into the area. -D.3.2.3 The organizer may establish requirements for persons in the Dynamic Area, such as closed toe -shoes or long pants. -D.3.3 Driving Under Power -D.3.3.1 Vehicles must move under their own power only when inside the designated Dynamic Area(s), -unless otherwise directed by the officials. -D.3.3.2 Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point -penalty for the first violation and disqualification for a second violation. -D.3.4 Driving Offsite - Prohibited -Teams found to have driven their vehicle at an offsite location during the period of the -competition will be excluded from the competition. -D.3.5 Driver Equipment -D.3.5.1 All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with: -a. (IC) Engine running or (EV) Tractive System Active -b. Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run. -D.3.5.2 Removal of any Driver Equipment during a Dynamic event will result in Disqualification. -D.3.6 Starting -Auxiliary batteries must not be used once a vehicle has moved to the starting line of any -event. See IC.8.1 -D.3.7 Practice Area -D.3.7.1 A practice area for testing and tuning may be available -D.3.7.2 The practice area will be controlled and may only be used during the scheduled times -D.3.7.3 Vehicles using the practice area must have a complete Inspection Sticker -D.3.8 Instructions from Officials -Obey flags and hand signals from course marshals and officials immediately - - -Formula SAE® Rules 2025 © 2024 SAE International Page 130 of 143 -Version 1.0 31 Aug 2024 -D.3.9 Vehicle Integrity -Officials may revoke the Inspection Approval for any vehicle condition that could compromise -vehicle integrity, compromise the track surface, or pose a potential hazard. -This could result in DNF or DQ of any Dynamic event. -D.3.10 Stalled & Disabled Vehicles -D.3.10.1 If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to -complete the run, it will be scored DNF for that run -D.3.10.2 Disabled vehicles will be cleared from the track by the track workers. -D.4 FLAGS -Any specific variations will be addressed at the drivers meeting. -D.4.1 Command Flags -D.4.1.1 Any Command Flag must be obeyed immediately and without question. -D.4.1.2 Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time -penalty may be assessed. -D.4.1.3 Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, -something has been observed that needs closer inspection. -D.4.1.4 Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the -corner workers signals at the end of the passing zone to merge into competition. -D.4.1.5 Checkered Flag - Run has been completed. Exit the course at the designated point. -D.4.1.6 Green Flag – Approval to begin your run, enter the course under direction of the starter. If -you stall the vehicle, please restart and await another Green Flag -D.4.1.7 Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the -course as much as possible to keep the course open. Follow corner worker directions. -D.4.1.8 Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, -something has happened beyond the flag station. NO PASSING unless directed by the corner -workers. -D.4.1.9 Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE -PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless -directed by the corner workers. -D.4.2 Informational Flags -D.4.2.1 An Information Flag communicates to the driver, but requires no specific action. -D.4.2.2 Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be -prepared for evasive maneuvers. -D.4.2.3 White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a -cautious rate. -D.5 WEATHER CONDITIONS -D.5.1 Operating Adjustments -D.5.1.1 The organizer may alter the conduct and scoring of the competition based on weather -conditions. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 131 of 143 -Version 1.0 31 Aug 2024 -D.5.1.2 No adjustments will be made to times for running in differing Operating Conditions. -D.5.1.3 The minimum performance levels to score points may be adjusted by the Officials. -D.5.2 Operating Conditions -D.5.2.1 These operating conditions will be recognized: -• Dry -• Damp -• Wet -D.5.2.2 The current operating condition will be decided by the Officials and may change at any time. -D.5.2.3 The current operating condition will be prominently displayed at the Dynamic Area, and may -be communicated by other means. -D.6 TIRES AND TIRE CHANGES -D.6.1 Tire Requirements -D.6.1.1 Teams must run the tires allowed for each Operating Condition: -Operating Condition Tires Allowed -Dry Dry ( V.4.3.1 ) -Damp Dry or Wet -Wet Wet ( V.4.3.2 ) -D.6.1.2 When the operating condition is Damp, teams may change between Dry Tires and Wet Tires: -a. Any time during the Acceleration, Skidpad, and Autocross Events -b. Any time before starting their Endurance Event -D.6.2 Tire Changes during Endurance -D.6.2.1 All tire changes after a vehicle has received the Green flag to start the Endurance Event must -occur in the Driver Change Area -D.6.2.2 If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or -vehicles will be Black Flagged and brought into the Driver Change Area -D.6.2.3 The allowed tire changes and associated conditions are given in these tables. -Existing -Operating -Condition -Currently -Running on: -Operating Condition Changed to: -Dry Damp Wet -Dry Dry Tires ok A B -Damp Dry Tires ok A B -Damp Wet Tires C C ok -Wet Wet Tires C C ok - - +Formula SAE® Rules 2025 © 2024 SAE International Page 104 of 143 +Version 1.0 31 Aug 2024 +EV.7.3.4 The BMS must monitor for: +a. Voltage values outside the allowable range EV.7.4.2 +b. Voltage sense Overcurrent Protection device(s) blown or tripped +c. Temperature values outside the allowable range EV.7.5.2 +d. Missing or interrupted voltage or temperature measurements +e. A fault in the BMS +EV.7.3.5 If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must: +a. Open the Shutdown Circuit EV.7.2.2 +b. Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 +The two lights must stay on until the BMS is manually reset EV.7.2.3 +EV.7.3.6 The BMS Indicator Light must be: +a. Color: Red +b. Clearly visible to the seated driver in bright sunlight +c. Clearly marked with the lettering “BMS” +EV.7.4 Accumulator Voltage +EV.7.4.1 The BMS must measure the cell voltage of each cell +When single cells are directly connected in parallel, only one voltage measurement is needed +EV.7.4.2 Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels +stated in the cell data sheet. Measurement accuracy must be considered. +EV.7.4.3 All voltage sense wires to the BMS must meet one of: +a. Have Overcurrent Protection EV.7.4.4 below +b. Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below +EV.7.4.4 When used, Overcurrent Protection for the BMS voltage sense wires must meet the two: +a. The Overcurrent Protection must occur in the conductor, wire or PCB trace which is +directly connected to the cell tab. +b. The voltage rating of the Overcurrent Protection must be equal to or higher than the +maximum segment voltage +EV.7.4.5 Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: +• BMS is a distributed BMS system (one cell measurement per board) +• Sense wire length is less than 25 mm +• BMS board has Overcurrent Protection +EV.7.5 Accumulator Temperature +EV.7.5.1 The BMS must measure the temperatures of critical points of the Accumulator +EV.7.5.2 Temperatures (considering measurement accuracy) must stay below the lower of the two: +• The maximum cell temperature limit stated in the cell data sheet +• 60°C +EV.7.5.3 Cell temperatures must be measured at the negative terminal of the respective cell + +Formula SAE® Rules 2025 © 2024 SAE International Page 105 of 143 +Version 1.0 31 Aug 2024 +EV.7.5.4 The temperature sensor used must be in direct contact with one of: +• The negative terminal itself +• The negative terminal busbar less than 10 mm away from the spot weld or clamping +source on the negative cell terminal +EV.7.5.5 For lithium based cells, +a. The temperature of a minimum of 20% of the cells must be monitored by the BMS +b. The monitored cells must be equally distributed inside the Accumulator Container(s) +The temperature of each cell should be monitored +EV.7.5.6 Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells +sensed by the sensor. +EV.7.5.7 Temperature sensors must have appropriate electrical isolation that meets one of the two: +• Between the sensor and cell +• In the sensing circuit +The isolation must consider GLV/TS isolation as well as common mode voltages between +sense locations. +EV.7.6 Insulation Monitoring Device - IMD +EV.7.6.1 The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System +EV.7.6.2 The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved +alternate equivalent IMD +Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD +EV.7.6.3 The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the +maximum Tractive System operation voltage. +EV.7.6.4 The IMD must monitor the Tractive System for: +a. An isolation failure +b. A failure in the IMD operation +This must be done without the influence of any programmable logic. +EV.7.6.5 If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must: +a. Open the Shutdown Circuit EV.7.2.2 +b. Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 +The two lights must stay on until the IMD is manually reset EV.7.2.3 +EV.7.6.6 The IMD Indicator Light must be: +a. Color: Red +b. Clearly visible to the seated driver in bright sunlight +c. Clearly marked with the lettering “IMD” +EV.7.7 Brake System Plausibility Device - BSPD +EV.7.7.1 The vehicle must have a standalone nonprogrammable circuit to check for simultaneous +braking and high power output +The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7) +EV.7.7.2 The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: + +Formula SAE® Rules 2025 © 2024 SAE International Page 106 of 143 +Version 1.0 31 Aug 2024 +• Demand for Hard Braking EV.4.6 +• Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit +is delivered to the Motor(s) at the nominal battery voltage +The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips +EV.7.7.3 The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in +any sensor input +EV.7.7.4 The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection. +a. Power must not be sent to the Motor(s) of the vehicle during the test +b. The test must prove the function of the complete BSPD in the vehicle, including the +current sensor +The suggested test would introduce a current by a separate wire from an external power +supply simulating the Tractive System current while pressing the brake pedal +EV.7.8 Interlocks +EV.7.8.1 Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 ) +EV.7.8.2 Additional Interlocks may be included in the Tractive System or components +EV.7.8.3 The Interlock is a wire or connection that must: +a. Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted +b. Not be in the low (ground) connection to the IR coils of the Shutdown Circuit +EV.7.8.4 Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive +System wiring or components when the Interlock circuit is: +a. In the same wiring harness as Tractive System wiring +b. Part of a Tractive System Connector EV.5.9 +c. Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the +connection to a Tractive System connector +EV.7.9 Master Switches +EV.7.9.1 Each vehicle must have two Master Switches that must: +a. Meet T.9.3 for Configuration and Location +b. Be direct acting, not act through a relay or logic +EV.7.9.2 The Grounded Low Voltage Master Switch (GLVMS) must: +a. Completely stop all power to the GLV System EV.4.4 +b. Be in the center of a completely red circular area of > 50 mm in diameter +c. Be labeled “LV” +EV.7.9.3 The Tractive System Master Switch (TSMS) must: +a. Open the Shutdown Circuit in the OFF position EV.7.2.2 +b. Be the last switch before the IRs except for Precharge circuitry and Interlocks. +c. Be in the center of a completely orange circular area of > 50 mm in diameter +d. Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black +lightning bolt on yellow background). +e. Be fitted with a "lockout/tagout" capability in the OFF position EV.11.3.1 + +Formula SAE® Rules 2025 © 2024 SAE International Page 107 of 143 +Version 1.0 31 Aug 2024 +EV.7.10 Shutdown Buttons +EV.7.10.1 Three Shutdown Buttons must be installed on the vehicle +EV.7.10.2 Each Shutdown Button must: +a. Be a push-pull or push-rotate emergency stop switch +b. Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position +c. Hold when operated to the OFF position +d. Let the Shutdown Circuit Close when operated to the ON position +EV.7.10.3 One Shutdown Button must be on each side of the vehicle which: +a. Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop +Bracing F.5.9 +b. Has a diameter of 40 mm minimum +c. Must not be easily removable or mounted onto removable body work +EV.7.10.4 One Shutdown Button must be mounted in the cockpit which: +a. Is located in easy reach of the belted in driver, adjacent to the steering wheel, and +unobstructed by the steering wheel or any other part of the vehicle +b. Has diameter of 24 mm minimum +EV.7.10.5 The international electrical symbol (a red spark on a white edged blue triangle) must be near +each Shutdown Button. +EV.8 CHARGER REQUIREMENTS +EV.8.1 Charger Requirements +EV.8.1.1 All features and functions of the Charger and Charging Shutdown Circuit must be +demonstrated at Electrical Technical Inspection. IN.4.1 +EV.8.1.2 Chargers will be sealed after approval. IN.4.7.1 +EV.8.2 Charger Features +EV.8.2.1 The Charger must be galvanically isolated (AC) input to (DC) output. +EV.8.2.2 If the Charger housing is conductive it must be connected to the earth ground of the AC input. +EV.8.2.3 All connections of the Charger(s) must be isolated and covered. +EV.8.2.4 The Charger connector(s) must incorporate a feature to let the connector become live only +when correctly connected to the Accumulator. +EV.8.2.5 High Voltage charging leads must be orange +EV.8.2.6 The Charger must have two TSMPs installed, see EV.5.8.2 +EV.8.2.7 The Charger must include a Charger Shutdown Button which must: +a. Be a push-pull or push-rotate emergency stop switch +b. Have a minimum diameter of 25 mm +c. Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position +d. Hold when operated to the OFF position +e. Be labelled with the international electrical symbol (a red spark on a white edged blue +triangle) + +Formula SAE® Rules 2025 © 2024 SAE International Page 108 of 143 +Version 1.0 31 Aug 2024 +EV.8.3 Charging Shutdown Circuit +EV.8.3.1 The Charging Shutdown Circuit consists of: +a. Charger Shutdown Button EV.8.2.7 +b. Battery Management System (BMS) EV.7.3 +c. Insulation Monitoring Device (IMD) EV.7.6 +EV.8.3.2 The BMS and IMD parts of the Charging Shutdown Circuit must: +a. Be designed as Normally Open contacts +b. Have completely independent circuits to Open the Charging Shutdown Circuit. +Design of the respective circuits must make sure that a failure cannot result in electrical +power being fed back into the Charging Shutdown Circuit. +EV.8.4 Charging Shutdown Circuit Operation +EV.8.4.1 When Charging, the BMS and IMD must: +a. Monitor the Accumulator +b. Open the Charging Shutdown Circuit if a fault is detected +EV.8.4.2 When the Charging Shutdown Circuit Opens: +a. All current flow to the Accumulator must stop immediately +b. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less +c. The Charger must be turned off +d. The Charger must stay disabled until manually reset +EV.9 VEHICLE OPERATIONS +EV.9.1 Activation Requirement +The driver must complete the Activation Sequence without external assistance after the +Master Switches EV.7.9 are ON +EV.9.2 Activation Sequence +The vehicle systems must energize in this sequence: +a. Low Voltage (GLV) System EV.9.3 +b. Tractive System Active EV.9.4 +c. Ready to Drive EV.9.5 +EV.9.3 Low Voltage (GLV) System +The Shutdown Circuit may be Closed when or after the GLV System is energized +EV.9.4 Tractive System Active +EV.9.4.1 Definition – High Voltage is present outside of the Accumulator Container +EV.9.4.2 Tractive System Active must not be possible until the two: +• GLV System is Energized +• Shutdown Circuit is Closed +EV.9.5 Ready to Drive +EV.9.5.1 Definition – the Motor(s) will respond to the input of the APPS + +Formula SAE® Rules 2025 © 2024 SAE International Page 109 of 143 +Version 1.0 31 Aug 2024 +EV.9.5.2 Ready to Drive must not be possible until the three at the same time: +• Tractive System Active EV.9.4 +• The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 +• The driver does a manual action to start Ready to Drive +Such as pressing a specific button in the cockpit +EV.9.6 Ready to Drive Sound +EV.9.6.1 The vehicle must make a characteristic sound when it is Ready to Drive +EV.9.6.2 The Ready to Drive Sound must be: +a. Sounded continuously for minimum 1 second and maximum 3 seconds +b. A minimum sound level of 80 dBA, fast weighting IN.4.6 +c. Easily recognizable. No animal voices, song parts or sounds that could be interpreted as +offensive will be accepted +EV.9.6.3 The vehicle must not make other sounds similar to the Ready to Drive Sound. +EV.10 EVENT SITE ACTIVITIES +EV.10.1 Onsite Registration +EV.10.1.1 The Accumulator must be onsite at the time the team registers to be eligible for Accumulator +Technical Inspection and Dynamic Events +EV.10.1.2 Teams who register without the Accumulator: +a. Must not bring their Accumulator onsite for the duration of the competition +b. May participate in Technical Inspection and Static Events +EV.10.2 Accumulator Removal +EV.10.2.1 After the team registers onsite, the Accumulator must remain on the competition site until +the end of the competition, or the team withdraws and leaves the site +EV.10.2.2 Violators will be disqualified from the competition and must leave immediately +EV.11 WORK PRACTICES +EV.11.1 Personnel +EV.11.1.1 The Electrical System Officer (ESO): AD.5.2 +a. Is the only person on the team that may declare the vehicle electrically safe to allow +work on any system +b. Must accompany the vehicle when operated or moved at the competition site +c. Must be immediately available by phone at all times during the event +EV.11.2 Maintenance +EV.11.2.1 All participating team members must wear safety glasses with side shields at any time when: +a. Parts of the Tractive System are exposed while energized +b. Work is done on the Accumulators +EV.11.2.2 Appropriate insulated tools must be used when working on the Accumulator or Tractive +System + +Formula SAE® Rules 2025 © 2024 SAE International Page 110 of 143 +Version 1.0 31 Aug 2024 +EV.11.3 Lockout +EV.11.3.1 The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle. +EV.11.3.2 The MSD EV.5.5 must be disconnected when vehicles are: +a. Moved around the competition site +b. Participating in Static Events +EV.11.4 Accumulator +EV.11.4.1 These work activities at competition are allowed only in the designated area and during +Electrical Technical Inspection IN.4 See EV.5.3.3 +a. Opening Accumulator Containers +b. Any work on Accumulators, cells, or Segments +c. Energized electrical work +EV.11.4.2 Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site +inside one of the two: +a. Completely closed Accumulator Container EV.4.3 See EV.4.10.2 +b. Segment/Cell Transport Container EV.11.4.3 +EV.11.4.3 The Segment/Cell Transport Container(s) must be: +a. Electrically insulated +b. Protected from shock hazards and arc flash +EV.11.4.4 Segments/Cells inside the Transport Container must agree with the voltage and energy limits +of EV.5.1.2 +EV.11.5 Charging +EV.11.5.1 Accumulators must be removed from the vehicle inside the Accumulator Container and put on +the Accumulator Container Hand Cart EV.4.10 for Charging +EV.11.5.2 Accumulator Charging must occur only inside the designated area +EV.11.5.3 A team member(s) who has knowledge of the Charging process must stay with the +Accumulator(s) during Charging +EV.11.5.4 Each Accumulator Container(s) must have a label with this data during Charging: +• Team Name +• Electrical System Officer phone number(s) +EV.11.5.5 Additional site specific rules or policies may apply +EV.12 RED CAR CONDITION +EV.12.1 Definition +A vehicle will be a Red Car if any of the following: +a. Actual or possible damage to the vehicle affecting the Tractive System +b. Vehicle fault indication (EV.5.11 or equivalent) +c. Other conditions, at the discretion of the officials +EV.12.2 Actions +a. Isolate the vehicle + +Formula SAE® Rules 2025 © 2024 SAE International Page 111 of 143 +Version 1.0 31 Aug 2024 +b. No contact with the vehicle unless the officials give permission +Contact with the vehicle may require trained personnel with proper Personal Protective +Equipment +c. Call out designated Red Car responders + +Formula SAE® Rules 2025 © 2024 SAE International Page 112 of 143 +Version 1.0 31 Aug 2024 +IN - TECHNICAL INSPECTION +The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE +Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the +Rules. +IN.1 INSPECTION REQUIREMENTS +IN.1.1 Inspection Required +Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection +Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any +Dynamic event. +IN.1.2 Technical Inspection Authority +IN.1.2.1 The exact procedures and instruments used for inspection and testing are entirely at the +discretion of the Chief Technical Inspector(s). +IN.1.2.2 Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance +are final. +IN.1.3 Team Responsibility +Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE +Rules before Technical Inspection. +IN.1.4 Reinspection +Officials may Reinspect any vehicle at any time during the competition IN.15 +IN.2 INSPECTION CONDUCT +IN.2.1 Vehicle Condition +IN.2.1.1 Vehicles must be presented for Technical Inspection in finished condition, fully assembled, +complete and ready to run. +IN.2.1.2 Technical inspectors will not inspect any vehicle presented for inspection in an unfinished +state. +IN.2.2 Measurement +IN.2.2.1 Allowable dimensions are absolute, and do not have any tolerance unless specifically stated +IN.2.2.2 Measurement tools and methods may vary +IN.2.2.3 No allowance is given for measurement accuracy or error +IN.2.3 Visible Access +All items on the Technical Inspection Form must be clearly visible to the technical inspectors +without using instruments such as endoscopes or mirrors. +Methods to provide visible access include but are not limited to removable body panels, access +panels, and other components +IN.2.4 Inspection Items +IN.2.4.1 Technical Inspection will examine all items included on the Technical Inspection Form to make +sure the vehicle and other equipment obeys the Rules. +IN.2.4.2 Technical Inspectors may examine any other items at their discretion + +Formula SAE® Rules 2025 © 2024 SAE International Page 113 of 143 +Version 1.0 31 Aug 2024 +IN.2.5 Correction +If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team +must: +• Correct the problem +• Continue Inspection or have the vehicle Reinspected +IN.2.6 Marked Items +IN.2.6.1 Officials may mark, seal, or designate items or areas which have been inspected to document +the inspection and reduce the chance of tampering +IN.2.6.2 Damaged or lost marks or seals require Reinspection IN.15 +IN.3 INITIAL INSPECTION +Bring these to Initial Inspection: +• Technical Inspection Form +• All Driver Equipment per VE.3 to be used by each driver +• Fire Extinguishers (for paddock and vehicle) VE.2.3 +• Wet Tires V.4.3.2 +IN.4 ELECTRICAL TECHNICAL INSPECTION (EV ONLY) +IN.4.1 Inspection Items +Bring these to Electrical Technical Inspection: +• Charger(s) for the Accumulator(s) EV.8.1 +• Accumulator Container Hand Cart EV.4.10 +• Spare Accumulator(s) (if applicable) EV.5.1.4 +• Electrical Systems Form (ESF) and Component Data Sheets EV.2 +• Copies of any submitted Rules Questions with the received answer GR.7 +These basic tools in good condition: +• Insulated cable shears +• Insulated screw drivers +• Multimeter with protected probe tips +• Insulated tools, if screwed connections are used in the Tractive System +• Face Shield +• HV insulating gloves which are 12 months or less from their test date +• Two HV insulating blankets of minimum 0.83 m² each +• Safety glasses with side shields for all team members that might work on the Tractive +System or Accumulator +IN.4.2 Accumulator Inspection +The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected +during Electrical Technical Inspection, or separately from the rest of Electrical Technical +Inspection. + +Formula SAE® Rules 2025 © 2024 SAE International Page 114 of 143 +Version 1.0 31 Aug 2024 +IN.4.3 Accumulator Access +IN.4.3.1 If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, +provide detailed pictures of the internals taken during assembly +IN.4.3.2 Tech inspectors may require access to check any Accumulator(s) for rules compliance +IN.4.4 Insulation Monitoring Device Test +IN.4.4.1 The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive +System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the +Tractive System is active +IN.4.4.2 The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault +resistance of 50% below the response value corresponding to 250 Ohm / Volt +IN.4.5 Insulation Measurement Test +IN.4.5.1 The insulation resistance between the Tractive System and GLV System Ground will be +measured. +IN.4.5.2 The available measurement voltages are 250 V and 500 V. All vehicles with a maximum +nominal operation voltage below 500 V will be measured with the next available voltage level. +All teams with a system voltage of 500 V or more will be measured with 500 V. +IN.4.5.3 To pass the Insulation Measurement Test the measured insulation resistance must be +minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage. +IN.4.6 Ready to Drive Sound +The sound level will be measured with a free field microphone placed free from obstructions +in a radius of 2 m around the vehicle against the criteria in EV.9.6 +IN.4.7 Electrical Inspection Completion +IN.4.7.1 All or portions of the Tractive System, Charger and other components may be sealed IN.2.6 +IN.4.7.2 Additional monitoring to verify conformance to rules may be installed. Refer to the Event +Website for further information. +IN.4.7.3 A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle +may be Tractive System Active EV.9.4 +IN.4.7.4 Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection +before the vehicle may attempt any further Inspections. See EV.11.3.2 +IN.5 DRIVER COCKPIT CHECKS +The Clearance Checks and Egress Test may be done separately or in conjunction with other +parts of Technical Inspection +IN.5.1 Driver Clearance +Each driver in the normal driving position is checked for the three: +• Helmet clearance F.5.6.4 +• Head Restraint positioning T.2.8.5 +• Harness fit and adjustment T.2.5, T.2.6, T.2.7 +IN.5.2 Egress Test +IN.5.2.1 Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. + +Formula SAE® Rules 2025 © 2024 SAE International Page 115 of 143 +Version 1.0 31 Aug 2024 +IN.5.2.2 The Egress Test will be conducted for each driver as follows: +a. The driver must wear the specified Driver Equipment VE.3.2, VE.3.3 +b. Egress time begins with the driver in the fully seated position, with hands in driving +position on the connected steering wheel. +c. Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown +Button EV.7.10.4 +d. Egress time will stop when the driver has two feet on the pavement +IN.5.3 Driver Clearance and Egress Test Completion +IN.5.3.1 To drive the vehicle, each team driver must: +a. Meet the Driver Clearance requirements IN.5.1 +b. Successfully complete the Egress Test IN.5.2 +IN.5.3.2 A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection +IN.6 DRIVER TEMPLATE INSPECTIONS +The Driver Template Inspection will be conducted as part of the Mechanical Inspection +IN.6.1 Conduct +The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6 +IN.6.2 Driver Template Clearance Criteria +To pass Mechanical Technical Inspection, the Driver Template must meet the clearance +specified in F.5.6.4 +IN.7 COCKPIT TEMPLATE INSPECTIONS +The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection +IN.7.1 Conduct +IN.7.1.1 The Cockpit Opening will be checked using the template and procedure given in T.1.1 +IN.7.1.2 The Internal Cross Section will be checked using the template and procedure given in T.1.2 +IN.7.2 Cockpit Template Criteria +To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described. +IN.8 MECHANICAL TECHNICAL INSPECTION +IN.8.1 Inspection Items +Bring these to Mechanical Technical Inspection: +• Vehicle on Dry Tires V.4.3.1 +• Technical Inspection Form +• Push Bar VE.2.2 +• Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 +• Monocoque Laminate Test Specimens (if applicable) F.4.2 +• The Impact Attenuator that was tested (if applicable) F.8.8.7 +• Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c + +Formula SAE® Rules 2025 © 2024 SAE International Page 116 of 143 +Version 1.0 31 Aug 2024 +• Electronic copies of any submitted Rules Questions with the received answer GR.7 +IN.8.2 Aerodynamic Devices Stability and Strength +IN.8.2.1 Any Aerodynamic Devices may be checked by pushing on the device in any direction and at +any point. +This is guidance, but actual conformance will be up to technical inspectors at the respective +competitions. The intent is to reduce the likelihood of wings detaching +IN.8.2.2 If any deflection is significant, then a force of approximately 200 N may be applied. +a. Loaded deflection should not be more than 25 mm +b. Any permanent deflection less than 5 mm +IN.8.2.3 If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic +Devices, then officials may Black Flag the vehicle for IN.15 Reinspection. +IN.8.3 Monocoque Inspections +IN.8.3.1 Dimensions of the Monocoque will be confirmed F.7.1.4 +IN.8.3.2 When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide: +a. Documentation that shows dimensions on the tubes +b. Pictures of the dimensioned tube being included in the layup +IN.8.3.3 For items which cannot be verified by an inspector, the team must provide documentation, +visual and/or written, that the requirements have been met. +IN.8.3.4 A team found to be improperly presenting any evidence of the manufacturing process may be +barred from competing with a monocoque. +IN.8.4 Engine Inspection (IC Only) +The organizer may measure or tear down engines to confirm conformance to the rules. +IN.8.5 Mechanical Inspection Completion +All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any +further inspections. +IN.9 TILT TEST +IN.9.1 Tilt Test Requirements +a. The vehicle must contain the maximum amount of fluids it may carry +b. The tallest driver must be seated in the normal driving position +c. Tilt tests may be conducted in one, the other, or the two directions to pass +d. (IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and +pressure the system downstream of the High Pressure pump. See IC.6.2 +IN.9.2 Tilt Test Criteria +IN.9.2.1 No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal +IN.9.2.2 Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g. +IN.9.3 Tilt Test Completion +Tilt Tests must be passed before a vehicle may attempt any further inspections + +Formula SAE® Rules 2025 © 2024 SAE International Page 117 of 143 +Version 1.0 31 Aug 2024 +IN.10 NOISE AND SWITCH TEST (IC ONLY) +IN.10.1 Sound Level Measurement +IN.10.1.1 The sound level will be measured during a stationary test, with the vehicle gearbox in neutral +at the defined Test Speed +IN.10.1.2 Measurements will be made with a free field microphone placed: +• free from obstructions +• at the Exhaust Outlet vertical level IC.7.2.2 +• 0.5 m from the end of the Exhaust Outlet IC.7.2.2 +• at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below) +IN.10.2 Special Configurations +IN.10.2.1 Where the Exhaust has more than one Exhaust Outlet: +a. The noise test is repeated for each outlet +b. The highest sound level is used +IN.10.2.2 Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal +plane. +IN.10.2.3 If the exhaust has any form of active tuning or throttling device or system, the exhaust must +meet all requirements with the device or system in all positions. +IN.10.2.4 When the exhaust has a manually adjustable tuning device(s): +a. The position of the device must be visible to the officials for the noise test +b. The device must be manually operable by the officials during the noise test +c. The device must not be moved or modified after the noise test is passed +IN.10.3 Industrial Engine +An engine which, according to the manufacturers’ specifications and without the required +restrictor, is capable of producing 5 hp per 100 cc or less. +Submit a Rules Question to request approval of an Industrial Engine. +IN.10.4 Test Speeds +IN.10.4.1 Maximum Test Speed +The engine speed that corresponds to an average piston speed of: +a. Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min) +b. Industrial Engines 731.5 m/min (2,400 ft/min) +The calculated speed will be rounded to the nearest 500 rpm. +Test Speeds for typical engines are published on the FSAE Online website +IN.10.4.2 Idle Test Speed +a. Determined by the vehicle’s calibrated idle speed +b. If the idle speed varies then the vehicle will be tested across the range of idle speeds +determined by the team +IN.10.4.3 The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. + +Formula SAE® Rules 2025 © 2024 SAE International Page 118 of 143 +Version 1.0 31 Aug 2024 +IN.10.5 Maximum Permitted Sound Level +a. At idle 103 dBC, fast weighting +b. At all other speeds 110 dBC, fast weighting +IN.10.6 Noise Level Retesting +IN.10.6.1 Noise levels may be monitored at any time +IN.10.6.2 The Noise Test may be repeated at any time +IN.10.7 Switch Function +The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, +and/or BOTS T.3.3 will be verified during the Noise Test +IN.10.8 Noise Test Completion +Noise Tests must be passed before a vehicle may attempt any further inspections +IN.11 RAIN TEST (EV ONLY) +IN.11.1 Rain Test Requirements +• Tractive System must be Active +• The vehicle must not be in Ready to Drive mode (EV.7) +• Any driven wheels must not touch the ground +• A driver must not be seated in the vehicle +IN.11.2 Rain Test Conduct +The water spray will be rain like, not a direct high pressure water jet +a. Spray water at the vehicle from any possible direction for 120 seconds +b. Stop the water spray +c. Observe the vehicle for 120 seconds +IN.11.3 Rain Test Completion +The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire +240 seconds duration +IN.12 BRAKE TEST +IN.12.1 Objective +The brake system will be dynamically tested and must demonstrate the capability of locking all +four wheels when stopping the vehicle in a straight line at the end of an acceleration run +specified by the brake inspectors +IN.12.2 Brake Test Conduct (IC Only) +IN.12.2.1 Brake Test procedure: +a. Accelerate to speed (typically getting into 2nd gear) until reaching the designated area +b. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels +IN.12.2.2 The Brake Test passes if: +• All four wheels lock up +• The engine stays running during the complete test + +Formula SAE® Rules 2025 © 2024 SAE International Page 119 of 143 +Version 1.0 31 Aug 2024 +IN.12.3 Brake Test Conduct (EV Only) +IN.12.3.1 Brake Test procedure: +a. Accelerate to speed until reaching the designated area +b. Switch off the Tractive System EV.7.10.4 +c. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels +IN.12.3.2 The Brake Test passes if all four wheels lock while the Tractive System is shut down +IN.12.3.3 The Tractive System Active Light may switch a short time after the vehicle has come to a +complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c +IN.13 INSPECTION APPROVAL +IN.13.1 Inspection Approval +IN.13.1.1 When all parts of Technical Inspection are complete as shown on the Technical Inspection +sheet, the vehicle receives Inspection Approval +IN.13.1.2 The completed Inspection Sticker shows the Inspection Approval +IN.13.1.3 The Inspection Approval is contingent on the vehicle remaining in the required condition +throughout the competition. +IN.13.1.4 The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any +time for any reason +IN.13.2 Inspection Sticker +IN.13.2.1 Inspection Sticker(s) are issued after completion of all or part of Technical Inspection +IN.13.2.2 Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently +IN.13.3 Inspection Validity +IN.13.3.1 Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or +are required to be Reinspected. +IN.13.3.2 Inspection Approval is valid only for the duration of the specific Formula SAE competition +during which the inspection is conducted. +IN.14 MODIFICATIONS AND REPAIRS +IN.14.1 Prior to Inspection Approval +Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for +Technical Inspection, and until the vehicle has the full Inspection Approval, the only +modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the +Inspection Form. +IN.14.2 After Inspection Approval +IN.14.2.1 The vehicle must maintain all required specifications (including but not limited to ride height, +suspension travel, braking capacity (pad material/composition), sound level and wing location) +throughout the competition. +IN.14.2.2 Changes to fit the vehicle to different drivers are allowed. Permitted changes are: +• Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly +• Substitution of the Head Restraint or seat insert +• Adjustment of mirrors + +Formula SAE® Rules 2025 © 2024 SAE International Page 120 of 143 +Version 1.0 31 Aug 2024 +IN.14.2.3 Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the +vehicle are: +• Adjustment of belts, chains and clutches +• Adjustment of brake bias +• Adjustment to engine / powertrain operating parameters, including fuel mixture and +ignition timing, and any software calibration changes +• Adjustment of the suspension +• Changing springs, sway bars and shims in the suspension +• Adjustment of Tire Pressure, subject to V.4.3.4 +• Adjustment of wing or wing element(s) angle, but not the location T.7.1 +• Replenishment of fluids +• Replacement of worn tires or brake pads. Replacement tires and brake pads must be +identical in material/composition/size to those presented and approved at Technical +Inspection. +• Changing of wheels and tires for weather conditions D.6 +• Recharging Low Voltage batteries +• Recharging High Voltage Accumulators +IN.14.3 Repairs or Changes After Inspection Approval +The Inspection Approval may be voided for any reason including, but not limited to: +a. Damage to the vehicle IN.13.1.3 +b. Changes beyond those allowed per IN.14.2 above +IN.15 REINSPECTION +IN.15.1 Requirement +IN.15.1.1 Any vehicle may be Reinspected at any time for any reason +IN.15.1.2 Reinspection must be completed to restore Inspection Approval, if voided +IN.15.2 Conduct +IN.15.2.1 The Technical Inspection process may be repeated in entirety or in part +IN.15.2.2 Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector +IN.15.3 Result +IN.15.3.1 With Voided Inspection Approval +Successful completion of Reinspection will restore Inspection Approval IN.13.1 +IN.15.3.2 During Dynamic Events +a. Issues found during Reinspection will void Inspection Approval +b. Penalties may be applied to the Dynamic Events the vehicle has competed in +Applied penalties may include additional time added to event(s), loss of one or more +fastest runs, up to DQ, subject to official discretion. + +Formula SAE® Rules 2025 © 2024 SAE International Page 121 of 143 +Version 1.0 31 Aug 2024 +S - STATIC EVENTS +S.1 GENERAL STATIC +Presentation 75 points +Cost 100 points +Design 150 points +Total 325 points +S.2 PRESENTATION EVENT +S.2.1 Presentation Event Objective +The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive +business, logistical, production, or technical case that will convince outside interests to invest +in the team’s concept. +S.2.2 Presentation Concept +S.2.2.1 The concept for the Presentation Event will be provided on the FSAE Online website. +S.2.2.2 The concept for the Presentation Event may change for each competition +S.2.2.3 The team presentation must meet the concept +S.2.2.4 The team presentation must relate specifically to the vehicle as entered in the competition +S.2.2.5 Teams should assume that the judges represent different areas, including engineering, +production, marketing and finance, and may not all be engineers. +S.2.2.6 The presentation may be given in different settings, such as a conference room, a group +meeting, virtually, or in conjunction with other Static Events. +Specific details will be included in the Presentation Concept or communicated separately. +S.2.3 Presentation Schedule +Teams that fail to make their presentation during their assigned time period get zero points +for the Presentation Event. +S.2.4 Presentation Submissions +S.2.4.1 The Presentation Concept may require information to be submitted prior to the event. +Specific details will be included in the Presentation Concept. +S.2.4.2 Submissions may be graded as part of the Presentation Event score. +S.2.4.3 Pre event submissions will be subject to penalties imposed as given in section DR - Document +Requirements or the Presentation Concept +S.2.5 Presentation Format +S.2.5.1 One or more team members will give the presentation to the judges. +S.2.5.2 All team members who will give any part of the presentation, or who will respond to judges’ +questions must be: +• In the presentation area when the presentation starts +• Introduced and identified to the judges +S.2.5.3 Presentations will be time limited. The judges will stop any presentation exceeding the time +limit. + +Formula SAE® Rules 2025 © 2024 SAE International Page 122 of 143 +Version 1.0 31 Aug 2024 +S.2.5.4 The presentation itself will not be interrupted by questions. Immediately after the +presentation there may be a question and answer session. +S.2.5.5 Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions. +S.2.6 Presentation Equipment +Refer to the Presentation Concept for additional information +S.2.7 Evaluation Criteria +S.2.7.1 Presentations will be evaluated on content, organization, visual aids, delivery and the team’s +response to the judges questions. +S.2.7.2 The actual quality of the prototype itself will not be considered as part of the presentation +judging +S.2.7.3 Presentation Judging Score Sheet – available at the FSAE Online website +S.2.8 Judging Sequence +Presentation judging may be conducted in one or more phases. +S.2.9 Presentation Event Scoring +S.2.9.1 The Presentation raw score is based on the average of the scores of each judge. +S.2.9.2 Presentation Event scores may range from 0 to 75 points, using a method at the discretion of +the judges +S.2.9.3 Presentation Event scoring may include normalizing the scores of different judging teams and +scaling the overall results. +S.3 COST AND MANUFACTURING EVENT +S.3.1 Cost Event Objective +The Cost and Manufacturing Event evaluates the ability of the team to consider budget and +incorporate production considerations for production and efficiency. +Making tradeoff decisions between content and cost based on the performance of each part +and assembly and accounting for each part and process to meet a budget is part of Project +Management. +S.3.2 Cost Event Supplement +a. Additional specific information on the Cost and Manufacturing Event, including +explanation and requirements, is provided in the Formula SAE Cost Event Supplement +document. +b. Use the Formula SAE Cost Event Supplement to properly complete the requirements of +the Cost and Manufacturing Event. +c. The Formula SAE Cost Event Supplement is available on the FSAE Online website +S.3.3 Cost Event Areas +S.3.3.1 Cost Report +Preparation and submission of a report (the “Cost Report”) +S.3.3.2 Event Day Discussion +Discussion at the Competition with the Cost Judges around the team’s vehicle. + +Formula SAE® Rules 2025 © 2024 SAE International Page 123 of 143 +Version 1.0 31 Aug 2024 +S.3.3.3 Cost Scenario +Teams will respond to a challenge related to cost or manufacturing of the vehicle. +S.3.4 Cost Report +S.3.4.1 The Cost Report must: +a. List and cost each part on the vehicle using the standardized Cost Tables +b. Base the cost on the actual manufacturing technique used on the prototype +Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc. +c. Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it. +d. Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools). +e. Include supporting documentation to allow officials to verify part costing +S.3.4.2 Generate and submit the Cost Report using the FSAE Online website, see DR - Document +Requirements +S.3.5 Bill of Materials - BOM +S.3.5.1 The BOM is a list of all vehicle parts, showing the relationships between the items. +a. The overall vehicle is broken down into separate Systems +b. Systems are made up of Assemblies +c. Assemblies are made up of Parts +d. Parts consist of Materials, Processes and Fasteners +e. Tooling is associated with each Process that requires production tooling +S.3.6 Late Submission +Penalties for Late Submission of Cost Report will be imposed as given in section DR - +Document Requirements. +S.3.7 Cost Addendum +S.3.7.1 A supplement to the Cost Report that reflects any changes or corrections made after the +submission of the Cost Report may be submitted. +S.3.7.2 The Cost Addendum must be submitted during Onsite Registration at the Event. +S.3.7.3 The Cost Addendum must follow the format as given in section DR - Document Requirements +S.3.7.4 Addenda apply only to the competition at which they are submitted. +S.3.7.5 A separate Cost Addendum may be submitted at each competition a vehicle attends. +S.3.7.6 Changes to the Cost Report in the Cost Addendum will incur additional cost: +a. Added items will be cost at 125% of the table cost: + (1.25 x Cost) +b. Removed items will be credited 75% of the table cost: - (0.75 x Cost) +S.3.8 Cost Tables +S.3.8.1 All costs in the Cost Report must come from the standardized Cost Tables. +S.3.8.2 If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add +Item Request must be submitted. See S.3.10 + +Formula SAE® Rules 2025 © 2024 SAE International Page 124 of 143 +Version 1.0 31 Aug 2024 +S.3.9 Make versus Buy +S.3.9.1 Each part may be classified as Made or Bought +Refer to the Formula SAE Cost Event Supplement for additional information +S.3.9.2 If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively +cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so. +S.3.9.3 Any part which is normally purchased that is optionally shown as a Made part must have +supporting documentation submitted to prove team manufacture. +S.3.9.4 Teams costing Bought parts as Made parts will be penalized. +S.3.10 Add Item Request +S.3.10.1 An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost +Tables for individual team requirements. +S.3.10.2 After review, the item may be added to the Cost Table with an appropriate cost. It will then +be available to all teams. +S.3.11 Public Cost Reports +S.3.11.1 The competition organizers may publish all or part of the submitted Cost Reports. +S.3.11.2 Cost Reports for a given competition season will not be published before the end of the +calendar year. Support materials, such as technical drawings, will not be released. +S.3.12 Cost Report Penalties Process +S.3.12.1 This procedure will be used in determining penalties: +a. Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions +b. Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost +Additions +c. The higher of the two penalties will be applied against the Cost Event score +• Penalty A expressed in points will be deducted from the Cost Event score +• Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle +S.3.12.2 Any error that results in a team over reporting a cost in their Cost Report will not be further +penalized. +S.3.12.3 Any instance where a team’s score benefits by an intentional or unintentional error on the +part of the students will be corrected on a case by case basis. +S.3.12.4 Penalty Method A - Fixed Point Deductions +a. From the Bill of Material, the Cost Judges will determine if all Parts and Processes have +been included in the analysis. +b. In the case of any omission or error a penalty proportional to the BOM level of the error +will be imposed: +• Missing/inaccurate Material, Process, Fastener 1 point +• Missing/inaccurate Part 3 point +• Missing/inaccurate Assembly 5 point +c. Each of the penalties listed above supersedes the previous penalty. +Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. + +Formula SAE® Rules 2025 © 2024 SAE International Page 125 of 143 +Version 1.0 31 Aug 2024 +d. Differences other than those listed above will be deducted at the discretion of the Cost +Judges. +S.3.12.5 Penalty Method B – Adjusted Cost Additions +a. The table cost for the missing or incomplete items will be calculated from the standard +Cost Tables. +b. The penalty will be a value equal to twice the difference between the team cost and the +correct cost for all items in error. +Penalty = 2 x (Table Cost – Team Reported Cost) +The table costs of all items in error are included in the calculation. A missing Assembly would +include the price of all Parts, Materials, Processes and Fasteners making up the Assembly. +S.3.13 Event Day and Discussion +S.3.13.1 The team must present their vehicle at the designated time +S.3.13.2 The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during +Cost Event judging +S.3.13.3 Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging +S.3.13.4 The Cost Judges will: +a. Review whether the Cost Report accurately reflects the vehicle as presented +b. Review the manufacturing feasibility of the vehicle +c. Assess supporting documentation based on its quality, accuracy and thoroughness +d. Apply penalties for missing or incorrect information in the Cost Report compared to the +vehicle presented at inspection +S.3.14 Cost Audit +S.3.14.1 Teams may be selected for additional review to verify all processes and materials on their +vehicle are in the Cost Report +S.3.14.2 Adjustments from the Cost Audit will be included in the final scores +S.3.15 Cost Scenario +The Cost Scenario will be provided prior to the competition on the FSAE Online website +The Cost Scenario will include detailed information about the conduct, scope, and conditions +of the Cost Scenario +S.3.16 Cost Event Scoring +S.3.16.1 Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario +S.3.16.2 The Cost Event is worth 100 points +S.3.16.3 Cost Event Scores may be awarded in areas including, but not limited to: +• Price Score +• Discussion Score +• Scenario Score +S.3.16.4 Penalty points may be subtracted from the Cost Score, with no limit. +S.3.16.5 Cost Event scoring may include normalizing the scores of different judging teams and scaling +the results. + +Formula SAE® Rules 2025 © 2024 SAE International Page 126 of 143 +Version 1.0 31 Aug 2024 +S.4 DESIGN EVENT +S.4.1 Design Event Objective +S.4.1.1 The Design Event evaluates the engineering effort that went into the vehicle and how the +engineering meets the intent of the market in terms of vehicle performance and overall value. +S.4.1.2 The team and vehicle that illustrate the best use of engineering to meet the design goals, a +cost effective high performance vehicle, and the best understanding of the design by the team +members will win the Design Event. +S.4.1.3 Components and systems that are incorporated into the design as finished items are not +evaluated as a student designed unit, but are assessed on the team’s selection and application +of that unit. +S.4.2 Design Documents +S.4.2.1 Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings +S.4.2.2 These Design Documents will be used for: +• Design Judge reviews prior to the Design Event +• Sorting teams into appropriate design groups based on the quality of their review. +S.4.2.3 Penalties for Late Submission of all or any one of the Design Documents will be imposed as +given in section DR - Document Requirements +S.4.2.4 Teams that submit one or more Design Documents which do not represent a serious effort to +comply with the requirements may be excluded from the Design Event or be awarded a lower +score. +S.4.3 Design Briefing +S.4.3.1 The Design Briefing must use the template from the FSAE Online website. +S.4.3.2 Refer to the Design Briefing template for: +a. Specific content requirements, areas and details +b. Maximum slides that may be used per topic +S.4.3.3 Submit the Design Briefing as given in section DR - Document Requirements +S.4.4 Vehicle Drawings +S.4.4.1 The Vehicle Drawings must meet: +a. Three view line drawings showing the vehicle, from the front, top, and side +b. Each drawing must appear on a separate page +c. May be manually or computer generated +S.4.4.2 Submit the Vehicle Drawings as given in section DR - Document Requirements +S.4.5 Design Spec Sheet +Use the format provided and submit the Design Spec Sheet as given in section DR - Document +Requirements +The Design Judges realize that final design refinements and vehicle development may cause +the submitted values to differ from those of the completed vehicle. For specifications that are +subject to tuning, an anticipated range of values may be appropriate. + +Formula SAE® Rules 2025 © 2024 SAE International Page 127 of 143 +Version 1.0 31 Aug 2024 +S.4.6 Vehicle Condition +S.4.6.1 Inspection Approval IN.13.1.1 is not required prior to Design judging. +S.4.6.2 Vehicles must be presented for Design judging in finished condition, fully assembled, complete +and ready to run. +a. The judges will not evaluate any vehicle that is presented at the Design event in what +they consider to be an unfinished state. +b. Point penalties may be assessed for vehicles with obvious preparation issues +S.4.7 Support Material +S.4.7.1 Teams may bring to Design Judging any photographs, drawings, plans, charts, example +components or other materials that they believe are needed to support the presentation of +the vehicle and the discussion of their development process. +S.4.7.2 The available space in the Design Event judging area may be limited. +S.4.8 Judging Sequence +Design judging may be conducted in one or more phases. +Typical Design judging includes a first round review of all teams, then additional review of +selected teams. +S.4.9 Judging Criteria +S.4.9.1 The Design Judges will: +a. Evaluate the engineering effort based upon the team’s Design Documents, discussion +with the team, and an inspection of the vehicle +b. Inspect the vehicle to determine if the design concepts are adequate and appropriate for +the application (relative to the objectives stated in the rules). +c. Deduct points if the team cannot adequately explain the engineering and construction of +the vehicle +S.4.9.2 The Design Judges may assign a portion of the Design Event points to the Design Documents +S.4.9.3 Design Judging Score Sheets are available at the FSAE Online website. +S.4.10 Design Event Scoring +S.4.10.1 Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge +S.4.10.2 Penalty points may be subtracted from the Design score +S.4.10.3 Vehicles that are excluded from Design judging or refused judging get zero points for Design, +and may receive penalty points. + +Formula SAE® Rules 2025 © 2024 SAE International Page 128 of 143 +Version 1.0 31 Aug 2024 +D - DYNAMIC EVENTS +D.1 GENERAL DYNAMIC +D.1.1 Dynamic Events and Maximum Scores +Acceleration 100 points +Skid Pad 75 points +Autocross 125 points +Efficiency 100 points +Endurance 275 points +Total 675 points +D.1.2 Definitions +D.1.2.1 Dynamic Area – Any designated portion(s) of the competition site where the vehicles may +move under their own power. This includes competition, inspection and practice areas. +D.1.2.2 Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the +purpose of gathering those vehicles that are about to start. +D.2 PIT AND PADDOCK +D.2.1 Vehicle Movement +D.2.1.1 Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the +Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside +D.2.1.2 The team may move the vehicle with +a. All four wheels on the ground +b. The rear wheels supported on dollies, by push bar mounted wheels +The external wheels supporting the rear of the vehicle must be non pivoting so the +vehicle travels only where the front wheels are steered. The driver must always be able +to steer and brake the vehicle normally. +D.2.1.3 When the Push Bar is attached, the engine must stay off, unless authorized by the officials +D.2.1.4 Vehicles must be Shutdown when being moved around the paddock +D.2.1.5 Vehicles with wings must have two team members, one walking on each side of the vehicle +when the vehicle is being pushed +D.2.1.6 A 25 point penalty may be assessed for each violation +D.2.2 Fueling and Charging +(IC only) Officials must conduct all fueling activities in the designated location. +(EV only) Accumulator charging must be done in the designated location EV.11.5 +D.2.3 Powertrain Operation +In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three: +a. (IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR +a Technical Inspector gives permission +(EV only) The vehicle shows the OK to Energize sticker IN.4.7.3 +b. The vehicle is supported on a stand + +Formula SAE® Rules 2025 © 2024 SAE International Page 129 of 143 +Version 1.0 31 Aug 2024 +c. The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed +D.3 DRIVING +D.3.1 Drivers Meetings – Attendance Required +All drivers for an event must attend the drivers meeting(s). The driver for an event will be +disqualified if he/she does not attend the driver meeting for the event. +D.3.2 Dynamic Area Limitations +Refer to the Event Website for specific information +D.3.2.1 The organizer may specify restrictions for the Dynamic Area. These could include limiting the +number of team members and what may be brought into the area. +D.3.2.2 The organizer may specify additional restrictions for the Staging Area. These could include +limiting the number of team members and what may be brought into the area. +D.3.2.3 The organizer may establish requirements for persons in the Dynamic Area, such as closed toe +shoes or long pants. +D.3.3 Driving Under Power +D.3.3.1 Vehicles must move under their own power only when inside the designated Dynamic Area(s), +unless otherwise directed by the officials. +D.3.3.2 Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point +penalty for the first violation and disqualification for a second violation. +D.3.4 Driving Offsite - Prohibited +Teams found to have driven their vehicle at an offsite location during the period of the +competition will be excluded from the competition. +D.3.5 Driver Equipment +D.3.5.1 All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with: +a. (IC) Engine running or (EV) Tractive System Active +b. Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run. +D.3.5.2 Removal of any Driver Equipment during a Dynamic event will result in Disqualification. +D.3.6 Starting +Auxiliary batteries must not be used once a vehicle has moved to the starting line of any +event. See IC.8.1 +D.3.7 Practice Area +D.3.7.1 A practice area for testing and tuning may be available +D.3.7.2 The practice area will be controlled and may only be used during the scheduled times +D.3.7.3 Vehicles using the practice area must have a complete Inspection Sticker +D.3.8 Instructions from Officials +Obey flags and hand signals from course marshals and officials immediately + +Formula SAE® Rules 2025 © 2024 SAE International Page 130 of 143 +Version 1.0 31 Aug 2024 +D.3.9 Vehicle Integrity +Officials may revoke the Inspection Approval for any vehicle condition that could compromise +vehicle integrity, compromise the track surface, or pose a potential hazard. +This could result in DNF or DQ of any Dynamic event. +D.3.10 Stalled & Disabled Vehicles +D.3.10.1 If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to +complete the run, it will be scored DNF for that run +D.3.10.2 Disabled vehicles will be cleared from the track by the track workers. +D.4 FLAGS +Any specific variations will be addressed at the drivers meeting. +D.4.1 Command Flags +D.4.1.1 Any Command Flag must be obeyed immediately and without question. +D.4.1.2 Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time +penalty may be assessed. +D.4.1.3 Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, +something has been observed that needs closer inspection. +D.4.1.4 Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the +corner workers signals at the end of the passing zone to merge into competition. +D.4.1.5 Checkered Flag - Run has been completed. Exit the course at the designated point. +D.4.1.6 Green Flag – Approval to begin your run, enter the course under direction of the starter. If +you stall the vehicle, please restart and await another Green Flag +D.4.1.7 Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the +course as much as possible to keep the course open. Follow corner worker directions. +D.4.1.8 Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, +something has happened beyond the flag station. NO PASSING unless directed by the corner +workers. +D.4.1.9 Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE +PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless +directed by the corner workers. +D.4.2 Informational Flags +D.4.2.1 An Information Flag communicates to the driver, but requires no specific action. +D.4.2.2 Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be +prepared for evasive maneuvers. +D.4.2.3 White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a +cautious rate. +D.5 WEATHER CONDITIONS +D.5.1 Operating Adjustments +D.5.1.1 The organizer may alter the conduct and scoring of the competition based on weather +conditions. + +Formula SAE® Rules 2025 © 2024 SAE International Page 131 of 143 +Version 1.0 31 Aug 2024 +D.5.1.2 No adjustments will be made to times for running in differing Operating Conditions. +D.5.1.3 The minimum performance levels to score points may be adjusted by the Officials. +D.5.2 Operating Conditions +D.5.2.1 These operating conditions will be recognized: +• Dry +• Damp +• Wet +D.5.2.2 The current operating condition will be decided by the Officials and may change at any time. +D.5.2.3 The current operating condition will be prominently displayed at the Dynamic Area, and may +be communicated by other means. +D.6 TIRES AND TIRE CHANGES +D.6.1 Tire Requirements +D.6.1.1 Teams must run the tires allowed for each Operating Condition: +Operating Condition Tires Allowed +Dry Dry ( V.4.3.1 ) +Damp Dry or Wet +Wet Wet ( V.4.3.2 ) +D.6.1.2 When the operating condition is Damp, teams may change between Dry Tires and Wet Tires: +a. Any time during the Acceleration, Skidpad, and Autocross Events +b. Any time before starting their Endurance Event +D.6.2 Tire Changes during Endurance +D.6.2.1 All tire changes after a vehicle has received the Green flag to start the Endurance Event must +occur in the Driver Change Area +D.6.2.2 If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or +vehicles will be Black Flagged and brought into the Driver Change Area +D.6.2.3 The allowed tire changes and associated conditions are given in these tables. +Existing +Operating +Condition +Currently +Running on: +Operating Condition Changed to: +Dry Damp Wet +Dry Dry Tires ok A B +Damp Dry Tires ok A B +Damp Wet Tires C C ok +Wet Wet Tires C C ok Requirement -Allowed at -Driver Change? -A may change from Dry to Wet Yes -B MUST change from Dry to Wet Yes -C may change from Wet to Dry NO - -D.6.2.4 Time allowed to change tires: - - -Formula SAE® Rules 2025 © 2024 SAE International Page 132 of 143 -Version 1.0 31 Aug 2024 -a. Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 -minutes with Driver Change, will be added to the team's total time for Endurance -b. Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s -total time for Endurance -D.6.2.5 If the vehicle has a tire puncture, -a. The wheel and tire may be replaced with an identical wheel and tire -b. When the puncture is caused by track debris and not a result of component failure or the -vehicle itself, the tire change time will not count towards the team’s total time. -D.7 DRIVER LIMITATIONS -D.7.1 Three Event Limit -D.7.1.1 An individual team member may not drive in more than three events. -D.7.1.2 The Efficiency Event is considered a separate event although it is conducted simultaneously -with the Endurance Event. -A minimum of four drivers are required to participate in all of the dynamic events. -D.8 DEFINITIONS -D.8.1.1 DOO - Cone is Down or Out when one or the two: -a. Cone has been knocked over (Down) -b. The entire base of the cone lies outside the box marked around the cone in its -undisturbed position (Out) -D.8.1.2 DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed -to complete it -D.8.1.3 DQ - Disqualified - run(s) or event(s) no longer valid -D.8.1.4 Gate - The path between two cones through which the vehicle must pass. Two cones, one on -each side of the course define a gate. Two sequential cones in a slalom define a gate. -D.8.1.5 Entry Gate -The path marked by cones which establishes the required path the vehicle must -take to enter the course. -D.8.1.6 Exit Gate - The path marked by cones which establishes the required path the vehicle must -take to exit the course. -D.8.1.7 OC – Off Course -a. The vehicle did not pass through a gate in the required direction. -b. The vehicle has all four wheels outside the course boundary as indicated by cones, edge -marking or the edge of the paved surface. -Where more than one boundary indicator is used on the same course, the narrowest track will -be used when determining Off Course penalties. -D.9 ACCELERATION EVENT -The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement. -D.9.1 Acceleration Layout -D.9.1.1 Course length will be 75 m from starting line to finish line - - -Formula SAE® Rules 2025 © 2024 SAE International Page 133 of 143 -Version 1.0 31 Aug 2024 -D.9.1.2 Course width will be minimum 4.9 m wide as measured between the inner edges of the bases -of the course edge cones -D.9.1.3 Cones are put along the course edges at intervals, approximately 6 m -D.9.1.4 Cone locations are not marked on the pavement -D.9.2 Acceleration Procedure -D.9.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver -D.9.2.2 Runs with the first driver have priority -D.9.2.3 Each Acceleration run is done as follows: -a. The foremost part of the vehicle will be staged at 0.30 m behind the starting line -b. A Green Flag or light signal will give the approval to begin the run -c. Timing starts when the vehicle crosses the starting line -d. Timing ends when the vehicle crosses the finish line -D.9.2.4 Each driver may go to the front of the staging line immediately after their first run to make a -second run -D.9.3 Acceleration Penalties -D.9.3.1 Cones (DOO) -Two second penalty for each DOO (including entry and exit gate cones) on that run -D.9.3.2 Off Course (OC) -DNF for that run -D.9.4 Acceleration Scoring -D.9.4.1 Scoring Term Definitions: -• Corrected Time = Acceleration Run Time + ( DOO * 2 ) -• Tyour - the best Corrected Time for the team -• Tmin - the lowest Corrected Time recorded for any team -• Tmax - 150% of Tmin -D.9.4.2 When Tyour < Tmax. the team score is calculated as: - -Acceleration Score = 95.5 x +Allowed at +Driver Change? +A may change from Dry to Wet Yes +B MUST change from Dry to Wet Yes +C may change from Wet to Dry NO +D.6.2.4 Time allowed to change tires: + +Formula SAE® Rules 2025 © 2024 SAE International Page 132 of 143 +Version 1.0 31 Aug 2024 +a. Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 +minutes with Driver Change, will be added to the team's total time for Endurance +b. Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s +total time for Endurance +D.6.2.5 If the vehicle has a tire puncture, +a. The wheel and tire may be replaced with an identical wheel and tire +b. When the puncture is caused by track debris and not a result of component failure or the +vehicle itself, the tire change time will not count towards the team’s total time. +D.7 DRIVER LIMITATIONS +D.7.1 Three Event Limit +D.7.1.1 An individual team member may not drive in more than three events. +D.7.1.2 The Efficiency Event is considered a separate event although it is conducted simultaneously +with the Endurance Event. +A minimum of four drivers are required to participate in all of the dynamic events. +D.8 DEFINITIONS +D.8.1.1 DOO - Cone is Down or Out when one or the two: +a. Cone has been knocked over (Down) +b. The entire base of the cone lies outside the box marked around the cone in its +undisturbed position (Out) +D.8.1.2 DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed +to complete it +D.8.1.3 DQ - Disqualified - run(s) or event(s) no longer valid +D.8.1.4 Gate - The path between two cones through which the vehicle must pass. Two cones, one on +each side of the course define a gate. Two sequential cones in a slalom define a gate. +D.8.1.5 Entry Gate -The path marked by cones which establishes the required path the vehicle must +take to enter the course. +D.8.1.6 Exit Gate - The path marked by cones which establishes the required path the vehicle must +take to exit the course. +D.8.1.7 OC – Off Course +a. The vehicle did not pass through a gate in the required direction. +b. The vehicle has all four wheels outside the course boundary as indicated by cones, edge +marking or the edge of the paved surface. +Where more than one boundary indicator is used on the same course, the narrowest track will +be used when determining Off Course penalties. +D.9 ACCELERATION EVENT +The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement. +D.9.1 Acceleration Layout +D.9.1.1 Course length will be 75 m from starting line to finish line + +Formula SAE® Rules 2025 © 2024 SAE International Page 133 of 143 +Version 1.0 31 Aug 2024 +D.9.1.2 Course width will be minimum 4.9 m wide as measured between the inner edges of the bases +of the course edge cones +D.9.1.3 Cones are put along the course edges at intervals, approximately 6 m +D.9.1.4 Cone locations are not marked on the pavement +D.9.2 Acceleration Procedure +D.9.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver +D.9.2.2 Runs with the first driver have priority +D.9.2.3 Each Acceleration run is done as follows: +a. The foremost part of the vehicle will be staged at 0.30 m behind the starting line +b. A Green Flag or light signal will give the approval to begin the run +c. Timing starts when the vehicle crosses the starting line +d. Timing ends when the vehicle crosses the finish line +D.9.2.4 Each driver may go to the front of the staging line immediately after their first run to make a +second run +D.9.3 Acceleration Penalties +D.9.3.1 Cones (DOO) +Two second penalty for each DOO (including entry and exit gate cones) on that run +D.9.3.2 Off Course (OC) +DNF for that run +D.9.4 Acceleration Scoring +D.9.4.1 Scoring Term Definitions: +• Corrected Time = Acceleration Run Time + ( DOO * 2 ) +• Tyour - the best Corrected Time for the team +• Tmin - the lowest Corrected Time recorded for any team +• Tmax - 150% of Tmin +D.9.4.2 When Tyour < Tmax. the team score is calculated as: +Acceleration Score = 95.5 x ( Tmax / Tyour ) -1 -+ 4.5 - - ( Tmax / Tmin ) -1 -D.9.4.3 When Tyour > Tmax , Acceleration Score = 4.5 -D.10 SKIDPAD EVENT -The Skidpad event measures the vehicle cornering ability on a flat surface while making a -constant radius turn. -D.10.1 Skidpad Layout -D.10.1.1 Course Design -• Two pairs of concentric circles in a figure of eight pattern -• Centers of the circles 18.25 m apart -• Inner circles 15.25 m in diameter - - -Formula SAE® Rules 2025 © 2024 SAE International Page 134 of 143 -Version 1.0 31 Aug 2024 -• Outer circles 21.25 m in diameter -• Driving path the 3.0 m wide path between the inner and outer circles -D.10.1.2 Cone Placement -a. Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) -pylons will be positioned around the outside of each outer circle in the pattern shown in -the Skidpad layout diagram -b. Each circle will be marked with a chalk line, inside the inner circle and outside the outer -circle -The Skidpad layout diagram shows the circles for cone placement, not for course marking. -Chalk lines are marked on the opposite side of the cones, outside the driving path -c. Additional pylons will establish the entry and exit gates -d. A cone may be put in the middle of the exit gate until the finish lap -D.10.1.3 Course Operation -a. Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the -circles where they meet. -b. The line between the centers of the circles defines the start/stop line. -c. A lap is defined as traveling around one of the circles from the start/stop line and -returning to the start/stop line. - -D.10.2 Skidpad Procedure -D.10.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver. -D.10.2.2 Runs with the first driver have priority -D.10.2.3 Each Skidpad run is done as follows: -a. A Green Flag or light signal will give the approval to begin the run - - - - - - - - - - -Formula SAE® Rules 2025 © 2024 SAE International Page 135 of 143 -Version 1.0 31 Aug 2024 -b. The vehicle will enter perpendicular to the figure eight and will take one full lap on the -right circle -c. The next lap will be on the right circle and will be timed -d. Immediately after the second lap, the vehicle will enter the left circle for the third lap -e. The fourth lap will be on the left circle and will be timed -f. Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the -intersection moving in the same direction as entered -D.10.2.4 Each driver may go to the front of the staging line immediately after their first run to make a -second run -D.10.3 Skidpad Penalties -D.10.3.1 Cones (DOO) -A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run -D.10.3.2 Off Course (OC) -DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off -Course. -D.10.3.3 Incorrect Laps -Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be -DNF for that run. -D.10.4 Skidpad Scoring -D.10.4.1 Scoring Term Definitions -• Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) -• Tyour - the best Corrected Time for the team -• Tmin - is the lowest Corrected Time recorded for any team -• Tmax - 125% of Tmin -D.10.4.2 When Tyour < Tmax. the team score is calculated as: - -Skidpad Score = 71.5 x ++ 4.5 +( Tmax / Tmin ) -1 +D.9.4.3 When Tyour > Tmax , Acceleration Score = 4.5 +D.10 SKIDPAD EVENT +The Skidpad event measures the vehicle cornering ability on a flat surface while making a +constant radius turn. +D.10.1 Skidpad Layout +D.10.1.1 Course Design +• Two pairs of concentric circles in a figure of eight pattern +• Centers of the circles 18.25 m apart +• Inner circles 15.25 m in diameter + +Formula SAE® Rules 2025 © 2024 SAE International Page 134 of 143 +Version 1.0 31 Aug 2024 +• Outer circles 21.25 m in diameter +• Driving path the 3.0 m wide path between the inner and outer circles +D.10.1.2 Cone Placement +a. Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) +pylons will be positioned around the outside of each outer circle in the pattern shown in +the Skidpad layout diagram +b. Each circle will be marked with a chalk line, inside the inner circle and outside the outer +circle +The Skidpad layout diagram shows the circles for cone placement, not for course marking. +Chalk lines are marked on the opposite side of the cones, outside the driving path +c. Additional pylons will establish the entry and exit gates +d. A cone may be put in the middle of the exit gate until the finish lap +D.10.1.3 Course Operation +a. Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the +circles where they meet. +b. The line between the centers of the circles defines the start/stop line. +c. A lap is defined as traveling around one of the circles from the start/stop line and +returning to the start/stop line. +D.10.2 Skidpad Procedure +D.10.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver. +D.10.2.2 Runs with the first driver have priority +D.10.2.3 Each Skidpad run is done as follows: +a. A Green Flag or light signal will give the approval to begin the run + +Formula SAE® Rules 2025 © 2024 SAE International Page 135 of 143 +Version 1.0 31 Aug 2024 +b. The vehicle will enter perpendicular to the figure eight and will take one full lap on the +right circle +c. The next lap will be on the right circle and will be timed +d. Immediately after the second lap, the vehicle will enter the left circle for the third lap +e. The fourth lap will be on the left circle and will be timed +f. Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the +intersection moving in the same direction as entered +D.10.2.4 Each driver may go to the front of the staging line immediately after their first run to make a +second run +D.10.3 Skidpad Penalties +D.10.3.1 Cones (DOO) +A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run +D.10.3.2 Off Course (OC) +DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off +Course. +D.10.3.3 Incorrect Laps +Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be +DNF for that run. +D.10.4 Skidpad Scoring +D.10.4.1 Scoring Term Definitions +• Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) +• Tyour - the best Corrected Time for the team +• Tmin - is the lowest Corrected Time recorded for any team +• Tmax - 125% of Tmin +D.10.4.2 When Tyour < Tmax. the team score is calculated as: +Skidpad Score = 71.5 x ( Tmax / Tyour ) -2 - -1 -+ 3.5 - - ( Tmax / Tmin ) -2 - -1 -D.10.4.3 When Tyour > Tmax , Skidpad Score = 3.5 -D.11 AUTOCROSS EVENT -The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight -course -D.11.1 Autocross Layout -D.11.1.1 The Autocross course will be designed with these specifications. Average speeds should be 40 -km/hr to 48 km/hr -a. Straights: No longer than 60 m with hairpins at the two ends -b. Straights: No longer than 45 m with wide turns on the ends -c. Constant Turns: 23 m to 45 m diameter -d. Hairpin Turns: 9 m minimum outside diameter (of the turn) - - -Formula SAE® Rules 2025 © 2024 SAE International Page 136 of 143 -Version 1.0 31 Aug 2024 -e. Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing -f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. -g. Minimum track width: 3.5 m -h. Length of each run should be approximately 0.80 km -D.11.1.2 The Autocross course specifications may deviate from the above to accommodate event site -requirements. -D.11.2 Autocross Procedure -D.11.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver -D.11.2.2 Runs with the first driver have priority -D.11.2.3 Each Autocross run is done as follows: -a. The vehicle will be staged at a specific distance behind the starting line -b. A Green Flag or light signal will give the approval to begin the run -c. Timing starts when the vehicle crosses the starting line -d. Timing ends when the vehicle crosses the finish line -D.11.2.4 Each driver may go to the front of the staging line immediately after their first run to make a -second run -D.11.3 Autocross Penalties -D.11.3.1 Cones (DOO) -Two second penalty for each DOO (including cones after the finish line) on that run -D.11.3.2 Off Course (OC) -a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or -receive a 20 second penalty -b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of -track officials. -D.11.3.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one Off Course -D.11.4 Autocross Scoring -D.11.4.1 Scoring Term Definitions: -• Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) -• Tyour - the best Corrected Time for the team -• Tmin - the lowest Corrected Time recorded for any team -• Tmax - 145% of Tmin -D.11.4.2 When Tyour < Tmax. the team score is calculated as: - -Autocross Score = 118.5 x -( Tmax / Tyour ) -1 -+ 6.5 - - ( Tmax / Tmin ) -1 -D.11.4.3 When Tyour > Tmax , Autocross Score = 6.5 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 137 of 143 -Version 1.0 31 Aug 2024 -D.12 ENDURANCE EVENT -The Endurance event evaluates the overall performance of the vehicle and tests the durability -and reliability. -D.12.1 Endurance General Information -D.12.1.1 The organizer may establish one or more requirements to allow teams to compete in the -Endurance event. -D.12.1.2 Each team may attempt the Endurance event once. -D.12.1.3 The Endurance event consists of two Endurance runs, each using a different driver, with a -Driver Change between. -D.12.1.4 Teams may not work on their vehicles once their Endurance event has started -D.12.1.5 Multiple vehicles may be on the track at the same time -D.12.1.6 Wheel to Wheel racing is prohibited. -D.12.1.7 Vehicles must not be driven in reverse -D.12.2 Endurance Layout -D.12.2.1 The Endurance event will consist of multiple laps over a closed course to a total distance of -approximately 22 km. -D.12.2.2 The Endurance course will be designed with these specifications. Average speed should be 48 -km/hr to 57 km/hr with top speeds of approximately 105 km/hr. -a. Straights: No longer than 77 m with hairpins at the two ends -b. Straights: No longer than 61 m with wide turns on the ends -c. Constant Turns: 30 m to 54 m diameter -d. Hairpin Turns: 9 m minimum outside diameter (of the turn) -e. Slaloms: Cones in a straight line with 9 m to 15 m spacing -f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. -g. Minimum track width: 4.5 m -h. Designated passing zones at several locations -D.12.2.3 The Endurance course specifications may deviate from the above to accommodate event site -requirements. -D.12.3 Endurance Run Order -The Endurance Run Order is established to let vehicles of similar speed potential be on track -together to reduce the need for passing. -D.12.3.1 The Endurance Run Order: -a. Should be primarily based on the Autocross event finish order -b. Should include the teams eligible for Endurance which did not compete in the Autocross -event. -c. May be altered by the organizer to accommodate specific circumstances or event -considerations -D.12.3.2 Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line -and prepared to start when their turn to run arrives. - - -Formula SAE® Rules 2025 © 2024 SAE International Page 138 of 143 -Version 1.0 31 Aug 2024 -D.12.4 Endurance Vehicle Starting / Restarting -D.12.4.1 Teams that are not ready to run or cannot start their Endurance event in the allowed time -when their turn in the Run Order arrives: -a. Get a time penalty (D.12.12.5) -b. May then run at the discretion of the Officials -D.12.4.2 After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) -restart the engine or to (EV) enter Ready to Drive EV.9.5 -a. The time will start when the driver first tries to restart the engine or to enable the -Tractive System -b. The time to attempt start / restart is not counted towards the Endurance time -D.12.4.3 If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it -(approximately 60 seconds) to restart. This time counts toward the Endurance time. -D.12.4.4 If starts / restarts are not accomplished in the above times, the vehicle may be DNF. -D.12.5 Endurance Event Procedure -D.12.5.1 Vehicles will be staged per the Endurance Run Order -D.12.5.2 Endurance Event sequence: -a. The first driver will do an Endurance Run per D.12.6 below -b. The Driver Change must then be done per D.12.8 below -c. The second driver will do an Endurance Run per D.12.6 below -D.12.5.3 The Endurance Event is complete when the two: -• The team has completed the specified number of laps -• The second driver crosses the finish line -D.12.6 Endurance Run Procedure -D.12.6.1 A Green Flag or light signal will give the approval to begin the run -D.12.6.2 The driver will drive approximately half of the Endurance distance -D.12.6.3 A Checkered Flag will be displayed -D.12.6.4 The vehicle must exit the track into the Driver Change Area -D.12.7 Driver Change Limitations -D.12.7.1 The team may bring only these items into the Driver Change Area: -a. Three team members, including the driver or drivers -b. (EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers. -c. Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires -Team members may only carry tools by hand (no carts, tool chests etc) -d. Each extra person entering the Driver Change Area: 20 point penalty -D.12.7.2 The only work permitted during Driver Change is: -a. Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons -EV.7.10 -b. Adjustments to fit the driver IN.14.2.2 -c. Tire changes per D.6.2 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 139 of 143 -Version 1.0 31 Aug 2024 -D.12.8 Driver Change Procedure -D.12.8.1 The Driver Change will be done in this sequence: -a. Vehicle will stop in Driver Change Area -b. First Driver turns off the engine / Tractive System. Driver Change time starts. -c. First Driver exits the vehicle -d. Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2 -e. Second Driver is secured in the vehicle -f. Second Driver is ready to start the engine / enable the Tractive System. Driver Change -time stops. -g. Second Driver receives permission to continue -h. The vehicle engine is started or Tractive System enabled. See D.12.4 -i. The vehicle stages to go back onto course, at the direction of the event officials -D.12.8.2 Three minutes are allowed for the team to complete the Driver Change -a. Any additional time for inspection of the vehicle and the Driver Equipment is not -included in the Driver Change time -b. Time in excess of the allowed will be added to the team Endurance time -D.12.8.3 The Driver Change Area will be in a location where the timing system will see the Driver -Change as a long lap which will be deleted from the total time -D.12.9 Breakdowns & Stalls -D.12.9.1 If a vehicle breaks down or cannot restart, it will be removed from the course by track workers -and scored DNF -D.12.9.2 If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 -and D.12.4 -D.12.10 Endurance Event – Black Flags -D.12.10.1 A Black Flag will be shown at the designated location -D.12.10.2 The vehicle must pull into the Driver Change Area at the first opportunity -D.12.10.3 The amount of time spent in the Driver Change Area is at the discretion of the officials. -D.12.10.4 Driving Black Flag -a. May be shown for any reason such as aggressive driving, failing to obey signals, not -yielding for passing, not driving inside the designated course, etc. -b. Course officials will discuss the situation with the driver -c. The time spent in Black Flag or a time penalty may be included in the Endurance Run -time. -d. If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or -during post event review, officials may impose a penalty D.14.2 -D.12.10.5 Mechanical Black Flag -a. May be shown for any reason to question the vehicle condition -b. Time spent off track is not included in the Endurance Run time. -D.12.10.6 Based on the inspection or discussion during a Black Flag period, the vehicle may not be -allowed to continue the Endurance Run and will be scored DNF - - -Formula SAE® Rules 2025 © 2024 SAE International Page 140 of 143 -Version 1.0 31 Aug 2024 -D.12.11 Endurance Event – Passing -D.12.11.1 Passing during Endurance may only be done in the designated passing zones, under the -control of the track officials. -D.12.11.2 Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and -a fast lane for vehicles that are making a pass. -D.12.11.3 When a pass is to be made: -a. A slower leading vehicle gets a Blue Flag -b. The slower vehicle must move into the slow lane and decelerate -c. The faster vehicle will continue in the fast lane and make the pass -d. The vehicle that had been passed may reenter traffic only under the control of the -passing zone exit flag -D.12.11.4 Passing rules do not apply to vehicles that are passing disabled vehicles on the course or -vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, -slow down, drive cautiously and be aware of all the vehicles and track workers in the area. -D.12.12 Endurance Penalties -D.12.12.1 Cones (DOO) -Two second penalty for each DOO (including cones after the finish line) on that run -D.12.12.2 Off Course (OC) -a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or -receive a 20 second penalty -b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of -track officials. -D.12.12.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one Off Course -D.12.12.4 Penalties for Moving or Post Event Violations -a. Black Flag penalties per D.12.10, if applicable -b. Post Event Inspection penalties per D.14.2, if applicable -D.12.12.5 Endurance Starting (D.12.4.1) -Two minutes (120 seconds) penalty -D.12.12.6 Vehicle Operation -The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for -any reason including driver inexperience or mechanical problems, it is too slow or being -driven in a manner that demonstrates an inability to properly control. -D.12.13 Endurance Scoring -D.12.13.1 Scoring Term Definitions: -• Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, -minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 -• Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) -• Tyour - the Corrected Time for the team -• Tmin - the lowest Corrected Time recorded for any team - - -Formula SAE® Rules 2025 © 2024 SAE International Page 141 of 143 -Version 1.0 31 Aug 2024 -• Tmax - 145% of Tmin -D.12.13.2 The vehicle must complete the Endurance Event to receive a score based on their Corrected -Time -a. If Tyour < Tmax, the team score is calculated as: - -Endurance Time Score = 250 x +2 +-1 ++ 3.5 +( Tmax / Tmin ) +2 +-1 +D.10.4.3 When Tyour > Tmax , Skidpad Score = 3.5 +D.11 AUTOCROSS EVENT +The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight +course +D.11.1 Autocross Layout +D.11.1.1 The Autocross course will be designed with these specifications. Average speeds should be 40 +km/hr to 48 km/hr +a. Straights: No longer than 60 m with hairpins at the two ends +b. Straights: No longer than 45 m with wide turns on the ends +c. Constant Turns: 23 m to 45 m diameter +d. Hairpin Turns: 9 m minimum outside diameter (of the turn) + +Formula SAE® Rules 2025 © 2024 SAE International Page 136 of 143 +Version 1.0 31 Aug 2024 +e. Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing +f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. +g. Minimum track width: 3.5 m +h. Length of each run should be approximately 0.80 km +D.11.1.2 The Autocross course specifications may deviate from the above to accommodate event site +requirements. +D.11.2 Autocross Procedure +D.11.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver +D.11.2.2 Runs with the first driver have priority +D.11.2.3 Each Autocross run is done as follows: +a. The vehicle will be staged at a specific distance behind the starting line +b. A Green Flag or light signal will give the approval to begin the run +c. Timing starts when the vehicle crosses the starting line +d. Timing ends when the vehicle crosses the finish line +D.11.2.4 Each driver may go to the front of the staging line immediately after their first run to make a +second run +D.11.3 Autocross Penalties +D.11.3.1 Cones (DOO) +Two second penalty for each DOO (including cones after the finish line) on that run +D.11.3.2 Off Course (OC) +a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or +receive a 20 second penalty +b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of +track officials. +D.11.3.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one Off Course +D.11.4 Autocross Scoring +D.11.4.1 Scoring Term Definitions: +• Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) +• Tyour - the best Corrected Time for the team +• Tmin - the lowest Corrected Time recorded for any team +• Tmax - 145% of Tmin +D.11.4.2 When Tyour < Tmax. the team score is calculated as: +Autocross Score = 118.5 x ( Tmax / Tyour ) -1 - - - ( Tmax / Tmin ) -1 -b. If Tyour > Tmax, Endurance Time Score = 0 -D.12.13.3 The vehicle receives points based on the laps and/or parts of Endurance completed. -The Endurance Laps Score is worth up to 25 points -D.12.13.4 The Endurance Score is calculated as: -Endurance Score = Endurance Time Score + Endurance Laps Score -D.13 EFFICIENCY EVENT -The Efficiency event evaluates the fuel/energy used to complete the Endurance event -D.13.1 Efficiency General Information -D.13.1.1 The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap -time on the endurance course, averaged over the length of the event. -D.13.1.2 The Efficiency score is based only on the distance the vehicle runs on the course during the -Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy -will be made. -D.13.2 Efficiency Procedure -D.13.2.1 For IC vehicles: -a. The fuel tank must be filled to the fuel level line (IC.5.4.5) -b. During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, -or the entire vehicle is allowed. -D.13.2.2 (EV only) The vehicle may be fully charged -D.13.2.3 The vehicle will then compete in the Endurance event, refer to D.12.5 -D.13.2.4 Vehicles must power down after leaving the course and be pushed to the fueling station or -data download area -D.13.2.5 For Internal Combustion vehicles (IC): -a. The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. -IC.5.5.1 -b. If the fuel level changes after refuelling: -• Additional fuel will be added to return the fuel tank level to the fuel level line. -• Twice this amount will be added to the previously measured fuel consumption -c. If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the -Fuel Tank will not be refilled D.13.3.4 - - -Formula SAE® Rules 2025 © 2024 SAE International Page 142 of 143 -Version 1.0 31 Aug 2024 -D.13.2.6 For Electric Vehicles (EV): -a. Energy Meter data must be downloaded to measure energy used and check for -Violations EV.3.3 -b. Penalties will be applied per EV.3.5 and/or D.13.3.4 -D.13.3 Efficiency Eligibility -D.13.3.1 Maximum Time -Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance -laptime of the fastest team that completes the Endurance event get zero points -D.13.3.2 Maximum Fuel/Energy Used -Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap -exceeds the values in D.13.4.5 get zero points -D.13.3.3 Partial Completion of Endurance -a. Vehicles which cross the start line after Driver Change are eligible for Efficiency points -b. Other vehicles get zero points -D.13.3.4 Cannot Measure Fuel/Energy Used -The vehicle gets zero points -D.13.4 Efficiency Scoring -D.13.4.1 Conversion Factors -Each fuel or energy used is converted using the factors: -a. Gasoline / Petrol 2.31 kg of CO -2 - per liter -b. E85 1.65 kg of CO -2 - per liter -c. Electric 0.65 kg of CO -2 - per kWh -D.13.4.2 (EV only) Full credit is given for energy recovered through regenerative braking -D.13.4.3 Scoring Term Definitions: ++ 6.5 +( Tmax / Tmin ) -1 +D.11.4.3 When Tyour > Tmax , Autocross Score = 6.5 + +Formula SAE® Rules 2025 © 2024 SAE International Page 137 of 143 +Version 1.0 31 Aug 2024 +D.12 ENDURANCE EVENT +The Endurance event evaluates the overall performance of the vehicle and tests the durability +and reliability. +D.12.1 Endurance General Information +D.12.1.1 The organizer may establish one or more requirements to allow teams to compete in the +Endurance event. +D.12.1.2 Each team may attempt the Endurance event once. +D.12.1.3 The Endurance event consists of two Endurance runs, each using a different driver, with a +Driver Change between. +D.12.1.4 Teams may not work on their vehicles once their Endurance event has started +D.12.1.5 Multiple vehicles may be on the track at the same time +D.12.1.6 Wheel to Wheel racing is prohibited. +D.12.1.7 Vehicles must not be driven in reverse +D.12.2 Endurance Layout +D.12.2.1 The Endurance event will consist of multiple laps over a closed course to a total distance of +approximately 22 km. +D.12.2.2 The Endurance course will be designed with these specifications. Average speed should be 48 +km/hr to 57 km/hr with top speeds of approximately 105 km/hr. +a. Straights: No longer than 77 m with hairpins at the two ends +b. Straights: No longer than 61 m with wide turns on the ends +c. Constant Turns: 30 m to 54 m diameter +d. Hairpin Turns: 9 m minimum outside diameter (of the turn) +e. Slaloms: Cones in a straight line with 9 m to 15 m spacing +f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. +g. Minimum track width: 4.5 m +h. Designated passing zones at several locations +D.12.2.3 The Endurance course specifications may deviate from the above to accommodate event site +requirements. +D.12.3 Endurance Run Order +The Endurance Run Order is established to let vehicles of similar speed potential be on track +together to reduce the need for passing. +D.12.3.1 The Endurance Run Order: +a. Should be primarily based on the Autocross event finish order +b. Should include the teams eligible for Endurance which did not compete in the Autocross +event. +c. May be altered by the organizer to accommodate specific circumstances or event +considerations +D.12.3.2 Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line +and prepared to start when their turn to run arrives. + +Formula SAE® Rules 2025 © 2024 SAE International Page 138 of 143 +Version 1.0 31 Aug 2024 +D.12.4 Endurance Vehicle Starting / Restarting +D.12.4.1 Teams that are not ready to run or cannot start their Endurance event in the allowed time +when their turn in the Run Order arrives: +a. Get a time penalty (D.12.12.5) +b. May then run at the discretion of the Officials +D.12.4.2 After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) +restart the engine or to (EV) enter Ready to Drive EV.9.5 +a. The time will start when the driver first tries to restart the engine or to enable the +Tractive System +b. The time to attempt start / restart is not counted towards the Endurance time +D.12.4.3 If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it +(approximately 60 seconds) to restart. This time counts toward the Endurance time. +D.12.4.4 If starts / restarts are not accomplished in the above times, the vehicle may be DNF. +D.12.5 Endurance Event Procedure +D.12.5.1 Vehicles will be staged per the Endurance Run Order +D.12.5.2 Endurance Event sequence: +a. The first driver will do an Endurance Run per D.12.6 below +b. The Driver Change must then be done per D.12.8 below +c. The second driver will do an Endurance Run per D.12.6 below +D.12.5.3 The Endurance Event is complete when the two: +• The team has completed the specified number of laps +• The second driver crosses the finish line +D.12.6 Endurance Run Procedure +D.12.6.1 A Green Flag or light signal will give the approval to begin the run +D.12.6.2 The driver will drive approximately half of the Endurance distance +D.12.6.3 A Checkered Flag will be displayed +D.12.6.4 The vehicle must exit the track into the Driver Change Area +D.12.7 Driver Change Limitations +D.12.7.1 The team may bring only these items into the Driver Change Area: +a. Three team members, including the driver or drivers +b. (EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers. +c. Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires +Team members may only carry tools by hand (no carts, tool chests etc) +d. Each extra person entering the Driver Change Area: 20 point penalty +D.12.7.2 The only work permitted during Driver Change is: +a. Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons +EV.7.10 +b. Adjustments to fit the driver IN.14.2.2 +c. Tire changes per D.6.2 + +Formula SAE® Rules 2025 © 2024 SAE International Page 139 of 143 +Version 1.0 31 Aug 2024 +D.12.8 Driver Change Procedure +D.12.8.1 The Driver Change will be done in this sequence: +a. Vehicle will stop in Driver Change Area +b. First Driver turns off the engine / Tractive System. Driver Change time starts. +c. First Driver exits the vehicle +d. Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2 +e. Second Driver is secured in the vehicle +f. Second Driver is ready to start the engine / enable the Tractive System. Driver Change +time stops. +g. Second Driver receives permission to continue +h. The vehicle engine is started or Tractive System enabled. See D.12.4 +i. The vehicle stages to go back onto course, at the direction of the event officials +D.12.8.2 Three minutes are allowed for the team to complete the Driver Change +a. Any additional time for inspection of the vehicle and the Driver Equipment is not +included in the Driver Change time +b. Time in excess of the allowed will be added to the team Endurance time +D.12.8.3 The Driver Change Area will be in a location where the timing system will see the Driver +Change as a long lap which will be deleted from the total time +D.12.9 Breakdowns & Stalls +D.12.9.1 If a vehicle breaks down or cannot restart, it will be removed from the course by track workers +and scored DNF +D.12.9.2 If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 +and D.12.4 +D.12.10 Endurance Event – Black Flags +D.12.10.1 A Black Flag will be shown at the designated location +D.12.10.2 The vehicle must pull into the Driver Change Area at the first opportunity +D.12.10.3 The amount of time spent in the Driver Change Area is at the discretion of the officials. +D.12.10.4 Driving Black Flag +a. May be shown for any reason such as aggressive driving, failing to obey signals, not +yielding for passing, not driving inside the designated course, etc. +b. Course officials will discuss the situation with the driver +c. The time spent in Black Flag or a time penalty may be included in the Endurance Run +time. +d. If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or +during post event review, officials may impose a penalty D.14.2 +D.12.10.5 Mechanical Black Flag +a. May be shown for any reason to question the vehicle condition +b. Time spent off track is not included in the Endurance Run time. +D.12.10.6 Based on the inspection or discussion during a Black Flag period, the vehicle may not be +allowed to continue the Endurance Run and will be scored DNF + +Formula SAE® Rules 2025 © 2024 SAE International Page 140 of 143 +Version 1.0 31 Aug 2024 +D.12.11 Endurance Event – Passing +D.12.11.1 Passing during Endurance may only be done in the designated passing zones, under the +control of the track officials. +D.12.11.2 Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and +a fast lane for vehicles that are making a pass. +D.12.11.3 When a pass is to be made: +a. A slower leading vehicle gets a Blue Flag +b. The slower vehicle must move into the slow lane and decelerate +c. The faster vehicle will continue in the fast lane and make the pass +d. The vehicle that had been passed may reenter traffic only under the control of the +passing zone exit flag +D.12.11.4 Passing rules do not apply to vehicles that are passing disabled vehicles on the course or +vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, +slow down, drive cautiously and be aware of all the vehicles and track workers in the area. +D.12.12 Endurance Penalties +D.12.12.1 Cones (DOO) +Two second penalty for each DOO (including cones after the finish line) on that run +D.12.12.2 Off Course (OC) +a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or +receive a 20 second penalty +b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of +track officials. +D.12.12.3 Missed Slalom +Missing one or more gates of a given slalom will be counted as one Off Course +D.12.12.4 Penalties for Moving or Post Event Violations +a. Black Flag penalties per D.12.10, if applicable +b. Post Event Inspection penalties per D.14.2, if applicable +D.12.12.5 Endurance Starting (D.12.4.1) +Two minutes (120 seconds) penalty +D.12.12.6 Vehicle Operation +The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for +any reason including driver inexperience or mechanical problems, it is too slow or being +driven in a manner that demonstrates an inability to properly control. +D.12.13 Endurance Scoring +D.12.13.1 Scoring Term Definitions: +• Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, +minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 +• Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) +• Tyour - the Corrected Time for the team +• Tmin - the lowest Corrected Time recorded for any team + +Formula SAE® Rules 2025 © 2024 SAE International Page 141 of 143 +Version 1.0 31 Aug 2024 +• Tmax - 145% of Tmin +D.12.13.2 The vehicle must complete the Endurance Event to receive a score based on their Corrected +Time +a. If Tyour < Tmax, the team score is calculated as: +Endurance Time Score = 250 x +( Tmax / Tyour ) -1 +( Tmax / Tmin ) -1 +b. If Tyour > Tmax, Endurance Time Score = 0 +D.12.13.3 The vehicle receives points based on the laps and/or parts of Endurance completed. +The Endurance Laps Score is worth up to 25 points +D.12.13.4 The Endurance Score is calculated as: +Endurance Score = Endurance Time Score + Endurance Laps Score +D.13 EFFICIENCY EVENT +The Efficiency event evaluates the fuel/energy used to complete the Endurance event +D.13.1 Efficiency General Information +D.13.1.1 The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap +time on the endurance course, averaged over the length of the event. +D.13.1.2 The Efficiency score is based only on the distance the vehicle runs on the course during the +Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy +will be made. +D.13.2 Efficiency Procedure +D.13.2.1 For IC vehicles: +a. The fuel tank must be filled to the fuel level line (IC.5.4.5) +b. During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, +or the entire vehicle is allowed. +D.13.2.2 (EV only) The vehicle may be fully charged +D.13.2.3 The vehicle will then compete in the Endurance event, refer to D.12.5 +D.13.2.4 Vehicles must power down after leaving the course and be pushed to the fueling station or +data download area +D.13.2.5 For Internal Combustion vehicles (IC): +a. The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. +IC.5.5.1 +b. If the fuel level changes after refuelling: +• Additional fuel will be added to return the fuel tank level to the fuel level line. +• Twice this amount will be added to the previously measured fuel consumption +c. If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the +Fuel Tank will not be refilled D.13.3.4 + +Formula SAE® Rules 2025 © 2024 SAE International Page 142 of 143 +Version 1.0 31 Aug 2024 +D.13.2.6 For Electric Vehicles (EV): +a. Energy Meter data must be downloaded to measure energy used and check for +Violations EV.3.3 +b. Penalties will be applied per EV.3.5 and/or D.13.3.4 +D.13.3 Efficiency Eligibility +D.13.3.1 Maximum Time +Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance +laptime of the fastest team that completes the Endurance event get zero points +D.13.3.2 Maximum Fuel/Energy Used +Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap +exceeds the values in D.13.4.5 get zero points +D.13.3.3 Partial Completion of Endurance +a. Vehicles which cross the start line after Driver Change are eligible for Efficiency points +b. Other vehicles get zero points +D.13.3.4 Cannot Measure Fuel/Energy Used +The vehicle gets zero points +D.13.4 Efficiency Scoring +D.13.4.1 Conversion Factors +Each fuel or energy used is converted using the factors: +a. Gasoline / Petrol 2.31 kg of CO +2 +per liter +b. E85 1.65 kg of CO +2 +per liter +c. Electric 0.65 kg of CO +2 +per kWh +D.13.4.2 (EV only) Full credit is given for energy recovered through regenerative braking +D.13.4.3 Scoring Term Definitions: • CO -2 - min - the smallest mass of CO -2 - used by any competitor who is eligible for Efficiency +2 +min - the smallest mass of CO +2 +used by any competitor who is eligible for Efficiency • CO -2 - your - the mass of CO -2 - used by the team being scored -• Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency -• Tyour - same as Endurance (D.12.13.1) -• Lapyours - the number of laps driven by the team being scored +2 +your - the mass of CO +2 +used by the team being scored +• Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency +• Tyour - same as Endurance (D.12.13.1) +• Lapyours - the number of laps driven by the team being scored • Laptotal Tmin and Latptotal CO 2 -min - be the number of laps completed by the teams +min - be the number of laps completed by the teams which set Tmin and CO 2 -min, respectively -D.13.4.4 The Efficiency Factor is calculated by: - +min, respectively +D.13.4.4 The Efficiency Factor is calculated by: Efficiency Factor = -Tmin / LapTotal Tmin +Tmin / LapTotal Tmin X CO -2 - min / LapTotal CO -2 - min - Tyours / Lap yours CO -2 - your / Lap yours -D.13.4.5 EfficiencyFactor min is calculated using the above formula with: +2 +min / LapTotal CO +2 +min +Tyours / Lap yours CO +2 +your / Lap yours +D.13.4.5 EfficiencyFactor min is calculated using the above formula with: • CO +2 +your (IC) equivalent to 60.06 kg CO 2 - your (IC) equivalent to 60.06 kg CO -2 -/100km (based on gasoline 26 ltr/100km) +/100km (based on gasoline 26 ltr/100km) • CO +2 +your (EV) equivalent to 20.02 kg CO 2 - your (EV) equivalent to 20.02 kg CO -2 -/100km -• Tyour 1.45 times Tmin - - -Formula SAE® Rules 2025 © 2024 SAE International Page 143 of 143 -Version 1.0 31 Aug 2024 -D.13.4.6 When the team is eligible for Efficiency. the team score is calculated as: - -Efficiency Score = 100 x -Efficiency Factor your - Efficiency Factor min - Efficiency Factor max - Efficiency Factor min -D.14 POST ENDURANCE -D.14.1 Technical Inspection Required -D.14.1.1 After Endurance and refuelling are completed, all vehicles must report to Technical Inspection. -D.14.1.2 Vehicles may then be subject to IN.15 Reinspection -D.14.2 Post Endurance Penalties -D.14.2.1 Penalties may be applied to the Endurance and/or Efficiency events based on: -a. Infractions or issues during the Endurance Event (including D.12.10.4.d) -b. Post Endurance Technical Inspection -c. (EV only) Energy Meter violations EV.3.3, EV.3.5.2 -D.14.2.2 Any imposed penalty will be at the discretion of the officials. -D.14.3 Post Endurance Penalty Guidelines -D.14.3.1 One or more minor violations (rules compliance, but no advantage to team): 15-30 sec -D.14.3.2 Violation which is a potential or actual performance advantage to team: 120-360 sec -D.14.3.3 Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ -D.14.3.4 Team may be DNF or DQ for: -a. Multiple violations involving safety, environment, or performance advantage -b. A single substantial violation - - - \ No newline at end of file +/100km +• Tyour 1.45 times Tmin + +Formula SAE® Rules 2025 © 2024 SAE International Page 143 of 143 +Version 1.0 31 Aug 2024 +D.13.4.6 When the team is eligible for Efficiency. the team score is calculated as: +Efficiency Score = 100 x +Efficiency Factor your - Efficiency Factor min +Efficiency Factor max - Efficiency Factor min +D.14 POST ENDURANCE +D.14.1 Technical Inspection Required +D.14.1.1 After Endurance and refuelling are completed, all vehicles must report to Technical Inspection. +D.14.1.2 Vehicles may then be subject to IN.15 Reinspection +D.14.2 Post Endurance Penalties +D.14.2.1 Penalties may be applied to the Endurance and/or Efficiency events based on: +a. Infractions or issues during the Endurance Event (including D.12.10.4.d) +b. Post Endurance Technical Inspection +c. (EV only) Energy Meter violations EV.3.3, EV.3.5.2 +D.14.2.2 Any imposed penalty will be at the discretion of the officials. +D.14.3 Post Endurance Penalty Guidelines +D.14.3.1 One or more minor violations (rules compliance, but no advantage to team): 15-30 sec +D.14.3.2 Violation which is a potential or actual performance advantage to team: 120-360 sec +D.14.3.3 Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ +D.14.3.4 Team may be DNF or DQ for: +a. Multiple violations involving safety, environment, or performance advantage +b. A single substantial violation \ No newline at end of file From 3c3bd882013c011a797654d3efc849aac88424c7 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Mon, 3 Nov 2025 15:18:59 -0500 Subject: [PATCH 06/25] #3622 small fsae formatting fix --- .../jsonOutput/fsae_rules.json | 200 +++++++++--------- scripts/document-parser/parsers/FSAEParser.ts | 7 +- 2 files changed, 106 insertions(+), 101 deletions(-) diff --git a/scripts/document-parser/jsonOutput/fsae_rules.json b/scripts/document-parser/jsonOutput/fsae_rules.json index de34a20278..76e1d45d7a 100644 --- a/scripts/document-parser/jsonOutput/fsae_rules.json +++ b/scripts/document-parser/jsonOutput/fsae_rules.json @@ -2,595 +2,595 @@ "rules": [ { "ruleCode": "GR.1", - "ruleContent": "Formula SAE Competition Objective .................................................................................................... 5", + "ruleContent": "Formula SAE Competition Objective ... 5", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "GR.2", - "ruleContent": "Organizer Authority.............................................................................................................................. 6", + "ruleContent": "Organizer Authority... 6", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "GR.3", - "ruleContent": "Team Responsibility ............................................................................................................................. 6", + "ruleContent": "Team Responsibility ... 6", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "GR.4", - "ruleContent": "Rules Authority and Issue..................................................................................................................... 7", + "ruleContent": "Rules Authority and Issue... 7", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "GR.5", - "ruleContent": "Rules of Conduct .................................................................................................................................. 7", + "ruleContent": "Rules of Conduct ... 7", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "GR.6", - "ruleContent": "Rules Format and Use .......................................................................................................................... 8", + "ruleContent": "Rules Format and Use ... 8", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "GR.7", - "ruleContent": "Rules Questions.................................................................................................................................... 9", + "ruleContent": "Rules Questions... 9", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "GR.8", - "ruleContent": "Protests ................................................................................................................................................ 9", + "ruleContent": "Protests ... 9", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "GR.9", - "ruleContent": "Vehicle Eligibility ................................................................................................................................ 10 AD - Administrative Regulations ....................................................................................................... 11", + "ruleContent": "Vehicle Eligibility ... 10 AD - Administrative Regulations ... 11", "parentRuleCode": "GR", "pageNumber": "2" }, { "ruleCode": "AD.1", - "ruleContent": "The Formula SAE Series ...................................................................................................................... 11", + "ruleContent": "The Formula SAE Series ... 11", "parentRuleCode": "AD", "pageNumber": "2" }, { "ruleCode": "AD.2", - "ruleContent": "Official Information Sources .............................................................................................................. 11", + "ruleContent": "Official Information Sources ... 11", "parentRuleCode": "AD", "pageNumber": "2" }, { "ruleCode": "AD.3", - "ruleContent": "Individual Participation Requirements............................................................................................... 11", + "ruleContent": "Individual Participation Requirements... 11", "parentRuleCode": "AD", "pageNumber": "2" }, { "ruleCode": "AD.4", - "ruleContent": "Individual Registration Requirements ................................................................................................ 12", + "ruleContent": "Individual Registration Requirements ... 12", "parentRuleCode": "AD", "pageNumber": "2" }, { "ruleCode": "AD.5", - "ruleContent": "Team Advisors and Officers................................................................................................................ 12", + "ruleContent": "Team Advisors and Officers... 12", "parentRuleCode": "AD", "pageNumber": "2" }, { "ruleCode": "AD.6", - "ruleContent": "Competition Registration ................................................................................................................... 13", + "ruleContent": "Competition Registration ... 13", "parentRuleCode": "AD", "pageNumber": "2" }, { "ruleCode": "AD.7", - "ruleContent": "Competition Site ................................................................................................................................ 14 DR - Document Requirements .......................................................................................................... 16", + "ruleContent": "Competition Site ... 14 DR - Document Requirements ... 16", "parentRuleCode": "AD", "pageNumber": "2" }, { "ruleCode": "DR.1", - "ruleContent": "Documentation .................................................................................................................................. 16", + "ruleContent": "Documentation ... 16", "parentRuleCode": "DR", "pageNumber": "2" }, { "ruleCode": "DR.2", - "ruleContent": "Submission Details ............................................................................................................................. 16", + "ruleContent": "Submission Details ... 16", "parentRuleCode": "DR", "pageNumber": "2" }, { "ruleCode": "DR.3", - "ruleContent": "Submission Penalties.......................................................................................................................... 17 V - Vehicle Requirements ................................................................................................................. 19", + "ruleContent": "Submission Penalties... 17 V - Vehicle Requirements ... 19", "parentRuleCode": "DR", "pageNumber": "2" }, { "ruleCode": "V.1", - "ruleContent": "Configuration ..................................................................................................................................... 19", + "ruleContent": "Configuration ... 19", "parentRuleCode": "V", "pageNumber": "2" }, { "ruleCode": "V.2", - "ruleContent": "Driver.................................................................................................................................................. 20", + "ruleContent": "Driver... 20", "parentRuleCode": "V", "pageNumber": "2" }, { "ruleCode": "V.3", - "ruleContent": "Suspension and Steering .................................................................................................................... 20", + "ruleContent": "Suspension and Steering ... 20", "parentRuleCode": "V", "pageNumber": "2" }, { "ruleCode": "V.4", - "ruleContent": "Wheels and Tires ................................................................................................................................ 21 F - Chassis and Structural.................................................................................................................. 23", + "ruleContent": "Wheels and Tires ... 21 F - Chassis and Structural... 23", "parentRuleCode": "V", "pageNumber": "2" }, { "ruleCode": "F.1", - "ruleContent": "Definitions .......................................................................................................................................... 23", + "ruleContent": "Definitions ... 23", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.2", - "ruleContent": "Documentation .................................................................................................................................. 25", + "ruleContent": "Documentation ... 25", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.3", - "ruleContent": "Tubing and Material ........................................................................................................................... 25", + "ruleContent": "Tubing and Material ... 25", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.4", - "ruleContent": "Composite and Other Materials ......................................................................................................... 28", + "ruleContent": "Composite and Other Materials ... 28", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.5", - "ruleContent": "Chassis Requirements ........................................................................................................................ 30", + "ruleContent": "Chassis Requirements ... 30", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.6", - "ruleContent": "Tube Frames ....................................................................................................................................... 37", + "ruleContent": "Tube Frames ... 37", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.7", - "ruleContent": "Monocoque ........................................................................................................................................ 39", + "ruleContent": "Monocoque ... 39", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.8", - "ruleContent": "Front Chassis Protection .................................................................................................................... 43", + "ruleContent": "Front Chassis Protection ... 43", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.9", - "ruleContent": "Fuel System (IC Only) ......................................................................................................................... 48", + "ruleContent": "Fuel System (IC Only) ... 48", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.10", - "ruleContent": "Accumulator Container (EV Only) ...................................................................................................... 49", + "ruleContent": "Accumulator Container (EV Only) ... 49", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "F.11", - "ruleContent": "Tractive System (EV Only) .................................................................................................................. 52 T - Technical Aspects ........................................................................................................................ 54", + "ruleContent": "Tractive System (EV Only) ... 52 T - Technical Aspects ... 54", "parentRuleCode": "F", "pageNumber": "2" }, { "ruleCode": "T.1", - "ruleContent": "Cockpit................................................................................................................................................ 54", + "ruleContent": "Cockpit... 54", "parentRuleCode": "T", "pageNumber": "2" }, { "ruleCode": "T.2", - "ruleContent": "Driver Accommodation ...................................................................................................................... 58", + "ruleContent": "Driver Accommodation ... 58", "parentRuleCode": "T", "pageNumber": "2" }, { "ruleCode": "T.3", - "ruleContent": "Brakes ................................................................................................................................................. 63", + "ruleContent": "Brakes ... 63", "parentRuleCode": "T", "pageNumber": "2" }, { "ruleCode": "T.4", - "ruleContent": "Electronic Throttle Components ........................................................................................................ 64", + "ruleContent": "Electronic Throttle Components ... 64", "parentRuleCode": "T", "pageNumber": "2" }, { "ruleCode": "T.5", - "ruleContent": "Powertrain.......................................................................................................................................... 66 Version 1.0 31 Aug 2024", + "ruleContent": "Powertrain... 66 Version 1.0 31 Aug 2024", "parentRuleCode": "T", "pageNumber": "2" }, { "ruleCode": "T.6", - "ruleContent": "Pressurized Systems ........................................................................................................................... 68", + "ruleContent": "Pressurized Systems ... 68", "parentRuleCode": "T", "pageNumber": "3" }, { "ruleCode": "T.7", - "ruleContent": "Bodywork and Aerodynamic Devices ................................................................................................. 69", + "ruleContent": "Bodywork and Aerodynamic Devices ... 69", "parentRuleCode": "T", "pageNumber": "3" }, { "ruleCode": "T.8", - "ruleContent": "Fasteners ............................................................................................................................................ 71", + "ruleContent": "Fasteners ... 71", "parentRuleCode": "T", "pageNumber": "3" }, { "ruleCode": "T.9", - "ruleContent": "Electrical Equipment .......................................................................................................................... 72 VE - Vehicle and Driver Equipment ................................................................................................... 75", + "ruleContent": "Electrical Equipment ... 72 VE - Vehicle and Driver Equipment ... 75", "parentRuleCode": "T", "pageNumber": "3" }, { "ruleCode": "VE.1", - "ruleContent": "Vehicle Identification ......................................................................................................................... 75", + "ruleContent": "Vehicle Identification ... 75", "parentRuleCode": "VE", "pageNumber": "3" }, { "ruleCode": "VE.2", - "ruleContent": "Vehicle Equipment ............................................................................................................................. 75", + "ruleContent": "Vehicle Equipment ... 75", "parentRuleCode": "VE", "pageNumber": "3" }, { "ruleCode": "VE.3", - "ruleContent": "Driver Equipment ............................................................................................................................... 77 IC - Internal Combustion Engine Vehicles .......................................................................................... 79", + "ruleContent": "Driver Equipment ... 77 IC - Internal Combustion Engine Vehicles ... 79", "parentRuleCode": "VE", "pageNumber": "3" }, { "ruleCode": "IC.1", - "ruleContent": "General Requirements ....................................................................................................................... 79", + "ruleContent": "General Requirements ... 79", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "IC.2", - "ruleContent": "Air Intake System ............................................................................................................................... 79", + "ruleContent": "Air Intake System ... 79", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "IC.3", - "ruleContent": "Throttle .............................................................................................................................................. 80", + "ruleContent": "Throttle ... 80", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "IC.4", - "ruleContent": "Electronic Throttle Control................................................................................................................. 81", + "ruleContent": "Electronic Throttle Control... 81", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "IC.5", - "ruleContent": "Fuel and Fuel System ......................................................................................................................... 84", + "ruleContent": "Fuel and Fuel System ... 84", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "IC.6", - "ruleContent": "Fuel Injection ...................................................................................................................................... 86", + "ruleContent": "Fuel Injection ... 86", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "IC.7", - "ruleContent": "Exhaust and Noise Control ................................................................................................................. 87", + "ruleContent": "Exhaust and Noise Control ... 87", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "IC.8", - "ruleContent": "Electrical ............................................................................................................................................. 88", + "ruleContent": "Electrical ... 88", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "IC.9", - "ruleContent": "Shutdown System............................................................................................................................... 88 EV - Electric Vehicles ........................................................................................................................ 90", + "ruleContent": "Shutdown System... 88 EV - Electric Vehicles ... 90", "parentRuleCode": "IC", "pageNumber": "3" }, { "ruleCode": "EV.1", - "ruleContent": "Definitions .......................................................................................................................................... 90", + "ruleContent": "Definitions ... 90", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.2", - "ruleContent": "Documentation .................................................................................................................................. 90", + "ruleContent": "Documentation ... 90", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.3", - "ruleContent": "Electrical Limitations .......................................................................................................................... 90", + "ruleContent": "Electrical Limitations ... 90", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.4", - "ruleContent": "Components ....................................................................................................................................... 91", + "ruleContent": "Components ... 91", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.5", - "ruleContent": "Energy Storage ................................................................................................................................... 94", + "ruleContent": "Energy Storage ... 94", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.6", - "ruleContent": "Electrical System ................................................................................................................................ 98", + "ruleContent": "Electrical System ... 98", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.7", - "ruleContent": "Shutdown System............................................................................................................................. 102", + "ruleContent": "Shutdown System... 102", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.8", - "ruleContent": "Charger Requirements ..................................................................................................................... 107", + "ruleContent": "Charger Requirements ... 107", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.9", - "ruleContent": "Vehicle Operations ........................................................................................................................... 108", + "ruleContent": "Vehicle Operations ... 108", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.10", - "ruleContent": "Event Site Activities .......................................................................................................................... 109", + "ruleContent": "Event Site Activities ... 109", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "EV.11", - "ruleContent": "Work Practices ................................................................................................................................. 109 IN - Technical Inspection ................................................................................................................ 112", + "ruleContent": "Work Practices ... 109 IN - Technical Inspection ... 112", "parentRuleCode": "EV", "pageNumber": "3" }, { "ruleCode": "IN.1", - "ruleContent": "Inspection Requirements ................................................................................................................. 112", + "ruleContent": "Inspection Requirements ... 112", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.2", - "ruleContent": "Inspection Conduct .......................................................................................................................... 112", + "ruleContent": "Inspection Conduct ... 112", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.3", - "ruleContent": "Initial Inspection ............................................................................................................................... 113", + "ruleContent": "Initial Inspection ... 113", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.4", - "ruleContent": "Electrical Technical Inspection (EV Only) ......................................................................................... 113", + "ruleContent": "Electrical Technical Inspection (EV Only) ... 113", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.5", - "ruleContent": "Driver Cockpit Checks....................................................................................................................... 114", + "ruleContent": "Driver Cockpit Checks... 114", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.6", - "ruleContent": "Driver Template Inspections ............................................................................................................ 115", + "ruleContent": "Driver Template Inspections ... 115", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.7", - "ruleContent": "Cockpit Template Inspections .......................................................................................................... 115", + "ruleContent": "Cockpit Template Inspections ... 115", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.8", - "ruleContent": "Mechanical Technical Inspection ..................................................................................................... 115", + "ruleContent": "Mechanical Technical Inspection ... 115", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.9", - "ruleContent": "Tilt Test ............................................................................................................................................. 116", + "ruleContent": "Tilt Test ... 116", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.10", - "ruleContent": "Noise and Switch Test (IC Only) ....................................................................................................... 117", + "ruleContent": "Noise and Switch Test (IC Only) ... 117", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.11", - "ruleContent": "Rain Test (EV Only) ........................................................................................................................... 118", + "ruleContent": "Rain Test (EV Only) ... 118", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.12", - "ruleContent": "Brake Test......................................................................................................................................... 118", + "ruleContent": "Brake Test... 118", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.13", - "ruleContent": "Inspection Approval ......................................................................................................................... 119", + "ruleContent": "Inspection Approval ... 119", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.14", - "ruleContent": "Modifications and Repairs ............................................................................................................... 119", + "ruleContent": "Modifications and Repairs ... 119", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "IN.15", - "ruleContent": "Reinspection ..................................................................................................................................... 120 Version 1.0 31 Aug 2024 S - Static Events.............................................................................................................................. 121", + "ruleContent": "Reinspection ... 120 Version 1.0 31 Aug 2024 S - Static Events... 121", "parentRuleCode": "IN", "pageNumber": "3" }, { "ruleCode": "S.1", - "ruleContent": "General Static ................................................................................................................................... 121", + "ruleContent": "General Static ... 121", "parentRuleCode": "S", "pageNumber": "4" }, { "ruleCode": "S.2", - "ruleContent": "Presentation Event ........................................................................................................................... 121", + "ruleContent": "Presentation Event ... 121", "parentRuleCode": "S", "pageNumber": "4" }, { "ruleCode": "S.3", - "ruleContent": "Cost and Manufacturing Event......................................................................................................... 122", + "ruleContent": "Cost and Manufacturing Event... 122", "parentRuleCode": "S", "pageNumber": "4" }, { "ruleCode": "S.4", - "ruleContent": "Design Event..................................................................................................................................... 126 D - Dynamic Events ........................................................................................................................ 128", + "ruleContent": "Design Event... 126 D - Dynamic Events ... 128", "parentRuleCode": "S", "pageNumber": "4" }, { "ruleCode": "D.1", - "ruleContent": "General Dynamic .............................................................................................................................. 128", + "ruleContent": "General Dynamic ... 128", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.2", - "ruleContent": "Pit and Paddock................................................................................................................................ 128", + "ruleContent": "Pit and Paddock... 128", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.3", - "ruleContent": "Driving .............................................................................................................................................. 129", + "ruleContent": "Driving ... 129", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.4", - "ruleContent": "Flags ................................................................................................................................................. 130", + "ruleContent": "Flags ... 130", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.5", - "ruleContent": "Weather Conditions ......................................................................................................................... 130", + "ruleContent": "Weather Conditions ... 130", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.6", - "ruleContent": "Tires and Tire Changes ..................................................................................................................... 131", + "ruleContent": "Tires and Tire Changes ... 131", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.7", - "ruleContent": "Driver Limitations ............................................................................................................................. 132", + "ruleContent": "Driver Limitations ... 132", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.8", - "ruleContent": "Definitions ........................................................................................................................................ 132", + "ruleContent": "Definitions ... 132", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.9", - "ruleContent": "Acceleration Event ........................................................................................................................... 132", + "ruleContent": "Acceleration Event ... 132", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.10", - "ruleContent": "Skidpad Event ................................................................................................................................... 133", + "ruleContent": "Skidpad Event ... 133", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.11", - "ruleContent": "Autocross Event ............................................................................................................................... 135", + "ruleContent": "Autocross Event ... 135", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.12", - "ruleContent": "Endurance Event .............................................................................................................................. 137", + "ruleContent": "Endurance Event ... 137", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.13", - "ruleContent": "Efficiency Event ................................................................................................................................ 141", + "ruleContent": "Efficiency Event ... 141", "parentRuleCode": "D", "pageNumber": "4" }, { "ruleCode": "D.14", - "ruleContent": "Post Endurance ................................................................................................................................ 143 Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com REVISION SUMMARY Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 Allowance for Late Submissions DR.3.3.1 Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, EV.5.9, EV.7.8.4 Version 1.0 31 Aug 2024", + "ruleContent": "Post Endurance ... 143 Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com REVISION SUMMARY Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 Allowance for Late Submissions DR.3.3.1 Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, EV.5.9, EV.7.8.4 Version 1.0 31 Aug 2024", "parentRuleCode": "D", "pageNumber": "4" }, @@ -17528,5 +17528,5 @@ } ], "totalRules": 2923, - "generatedAt": "2025-11-03T19:26:24.925Z" + "generatedAt": "2025-11-03T19:31:31.769Z" } \ No newline at end of file diff --git a/scripts/document-parser/parsers/FSAEParser.ts b/scripts/document-parser/parsers/FSAEParser.ts index 71c4380506..9332d8b6d4 100644 --- a/scripts/document-parser/parsers/FSAEParser.ts +++ b/scripts/document-parser/parsers/FSAEParser.ts @@ -22,7 +22,7 @@ export class FSAEParser extends RuleParser { // No sub-rules, just add the main rule rules.push({ ruleCode: currentRule.code, - ruleContent: currentRule.text.trim(), + ruleContent: this.cleanTocDots(currentRule.text.trim()), parentRuleCode: this.findParentRuleCode(currentRule.code), pageNumber: currentRule.pageNumber }); @@ -61,6 +61,11 @@ export class FSAEParser extends RuleParser { return rules; } + // Cleaned extensive dots from table of contents rules + private cleanTocDots(content: string): string { + return content.replace(/\.{4,}/g, '...'); + } + private parseRuleNumber(line: string): Rule | null { // Match rule patterns like "GR.1.1" followed by text const rulePattern = /^([A-Z]{1,4}(?:\.[\d]+)+)\s+(.+)$/; From f518513fd8e62867926bacecd77f844561090798 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Thu, 6 Nov 2025 10:04:16 -0500 Subject: [PATCH 07/25] fsae toc + duplicate temp fix + add to database --- scripts/document-parser/RuleParser.ts | 108 +++- scripts/document-parser/index.ts | 13 +- .../document-parser/jsonOutput/FSAE_toc.json | 600 +++++++++++++++++ .../jsonOutput/fsae_rules.json | 612 +----------------- scripts/document-parser/parsers/FHEParser.ts | 4 + scripts/document-parser/parsers/FSAEParser.ts | 85 ++- 6 files changed, 803 insertions(+), 619 deletions(-) create mode 100644 scripts/document-parser/jsonOutput/FSAE_toc.json diff --git a/scripts/document-parser/RuleParser.ts b/scripts/document-parser/RuleParser.ts index 3b89f2e358..3c3b3adbd6 100644 --- a/scripts/document-parser/RuleParser.ts +++ b/scripts/document-parser/RuleParser.ts @@ -1,5 +1,8 @@ import * as fs from 'fs'; import pdf from 'pdf-parse-new'; +import { PrismaClient } from '@prisma/client'; + +const prisma = new PrismaClient(); export interface RuleData { ruleCode: string; @@ -37,11 +40,11 @@ export enum ParserType { } export abstract class RuleParser { - // must be implemented by subclasses protected abstract extractRules(text: string): RuleData[]; + protected abstract extractToc(text: string): RuleData[]; protected abstract hasImgInfo: boolean; - async parsePdf(path: string): Promise<{ rules: RuleData[]; imgInfo?: imgData[]; text: string }> { + async parsePdf(path: string): Promise<{ rules: RuleData[]; tocEntries: RuleData[]; imgInfo?: imgData[]; text: string }> { let options = { // max page number to parse, 0 = all pages max: 0, @@ -58,12 +61,13 @@ export abstract class RuleParser { console.log(`PDF Stats: ${pdfData.numpages} pages, ${pdfData.text.length} characters`); const rules = this.extractRules(pdfData.text); - + const tocEntries = this.extractToc(pdfData.text); + if (this.hasImgInfo) { const imgInfo = this.extractImageInfo(pdfData.text); - return { rules, imgInfo, text: pdfData.text }; + return { rules, tocEntries, imgInfo, text: pdfData.text }; } - return { rules, text: pdfData.text }; + return { rules, tocEntries, text: pdfData.text }; } /** @@ -205,13 +209,30 @@ export abstract class RuleParser { return parts.slice(0, -1).join('.'); } - async saveToJSON(rules: RuleData[], outputPath: string, imgInfo?: imgData[], imgInfoPath?: string): Promise { + async saveToJSON( + rules: RuleData[], + outputPath: string, + tocEntries?: RuleData[], + tocPath?: string, + imgInfo?: imgData[], + imgInfoPath?: string + ): Promise { const output: ParsedOutput = { rules: rules, totalRules: rules.length, generatedAt: new Date().toISOString() }; + if (tocEntries && tocPath) { + const tocOutput: ParsedOutput = { + rules: tocEntries, + totalRules: tocEntries.length, + generatedAt: new Date().toISOString() + }; + fs.writeFileSync(tocPath, JSON.stringify(tocOutput, null, 2), 'utf-8'); + console.log(`Saved ${tocEntries.length} TOC entries to ${tocPath}`); + } + if (imgInfo && imgInfoPath) { const imgOutput: ParsedImgOutput = { imgInfo: imgInfo, @@ -229,4 +250,79 @@ export abstract class RuleParser { fs.writeFileSync(txtOutputFile, text, 'utf-8'); console.log(`Saved text version to ${txtOutputFile}`); } + + /** + * Adds parsed rules into the database + * @param rules Array of parsed rules + * @param parserType Type of parser (FSAE or FHE) + * @param userId The user ID creating these rules + * @param carId The car ID this ruleset applies to + * @param pdfFileName The original filename + */ + async saveToDatabase( + rules: RuleData[], + parserType: ParserType, + userId: string, + carId: string, + pdfFileName: string + ): Promise { + try { + // create new ruleset type + const rulesetType = await prisma.ruleset_Type.create({ + data: { + name: parserType, + createdByUserId: userId + } + }); + // create new ruleset + const revisionName = `Revision ${new Date().toISOString()}`; + const ruleset = await prisma.ruleset.create({ + data: { + fileId: pdfFileName, + name: revisionName, + active: true, + rulesetTypeId: rulesetType.rulesetTypeId, + carId: carId, + createdByUserId: userId + } + }); + console.log(`Created ruleset: ${revisionName} (${ruleset.rulesetId})`); + // insert all rules + const ruleMap = new Map(); // ruleCode : ruleId + for (const rule of rules) { + const createdRule = await prisma.rule.create({ + data: { + ruleCode: rule.ruleCode, + ruleContent: rule.ruleContent, + imageFileIds: [], + rulesetId: ruleset.rulesetId, + createdByUserId: userId + } + }); + ruleMap.set(rule.ruleCode, createdRule.ruleId); + } + // update parent relationships + for (const rule of rules) { + if (rule.parentRuleCode) { + const parentId = ruleMap.get(rule.parentRuleCode); + const ruleId = ruleMap.get(rule.ruleCode); + + if (parentId && ruleId) { + await prisma.rule.update({ + where: { ruleId: ruleId }, + data: { parentRuleId: parentId } + }); + } + } + } + console.log(`Successfully inserted ${rules.length} rules`); + } catch (error) { + console.error('Error inserting rules into database:', error); + throw error; + } + } + + static async disconnect(): Promise { + await prisma.$disconnect(); + } } diff --git a/scripts/document-parser/index.ts b/scripts/document-parser/index.ts index cc4b2603f8..698ea976ac 100644 --- a/scripts/document-parser/index.ts +++ b/scripts/document-parser/index.ts @@ -1,10 +1,12 @@ import { FSAEParser } from './parsers/FSAEParser'; import { FHEParser } from './parsers/FHEParser'; -import { ParserType } from './RuleParser'; +import { ParserType, RuleParser } from './RuleParser'; async function main() { const type = (process.argv[2]?.toUpperCase() as ParserType) || ParserType.FSAE; const pdfFileName = process.argv[3]; + const userId = process.argv[4] || 'c8ff9535-8b88-40dd-8e99-ba1b800bb380'; + const carId = process.argv[5] || '3cdd8115-c48b-4775-9c46-136b0d157a72'; if (!pdfFileName) { console.error('Usage: npm start '); @@ -14,17 +16,22 @@ async function main() { const parser = type === ParserType.FHE ? new FHEParser() : new FSAEParser(); const outputPath = `./jsonOutput/${type}_rules.json`; const txtPath = `./txtVersions/${type}.txt`; + const tocPath = `./jsonOutput/${type}_toc.json`; const imgPath = type === ParserType.FHE ? `./jsonOutput/${type}_images.json` : undefined; try { const result = await parser.parsePdf(pdfFileName); - await parser.saveToJSON(result.rules, outputPath, result.imgInfo, imgPath); + await parser.saveToJSON(result.rules, outputPath, result.tocEntries, tocPath, result.imgInfo, imgPath); await parser.saveToTxt(result.text, txtPath); + await parser.saveToDatabase(result.rules, type, userId, carId, pdfFileName); + console.log(`${type} parsing completed`); } catch (error) { console.error('Error:', error); process.exit(1); + } finally { + await RuleParser.disconnect(); } } -main(); \ No newline at end of file +main(); diff --git a/scripts/document-parser/jsonOutput/FSAE_toc.json b/scripts/document-parser/jsonOutput/FSAE_toc.json new file mode 100644 index 0000000000..224dfd5308 --- /dev/null +++ b/scripts/document-parser/jsonOutput/FSAE_toc.json @@ -0,0 +1,600 @@ +{ + "rules": [ + { + "ruleCode": "GR.1", + "ruleContent": "Formula SAE Competition Objective ... 5", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "GR.2", + "ruleContent": "Organizer Authority... 6", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "GR.3", + "ruleContent": "Team Responsibility ... 6", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "GR.4", + "ruleContent": "Rules Authority and Issue... 7", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "GR.5", + "ruleContent": "Rules of Conduct ... 7", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "GR.6", + "ruleContent": "Rules Format and Use ... 8", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "GR.7", + "ruleContent": "Rules Questions... 9", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "GR.8", + "ruleContent": "Protests ... 9", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "GR.9", + "ruleContent": "Vehicle Eligibility ... 10", + "parentRuleCode": "GR", + "pageNumber": "2" + }, + { + "ruleCode": "AD.1", + "ruleContent": "The Formula SAE Series ... 11", + "parentRuleCode": "AD", + "pageNumber": "2" + }, + { + "ruleCode": "AD.2", + "ruleContent": "Official Information Sources ... 11", + "parentRuleCode": "AD", + "pageNumber": "2" + }, + { + "ruleCode": "AD.3", + "ruleContent": "Individual Participation Requirements... 11", + "parentRuleCode": "AD", + "pageNumber": "2" + }, + { + "ruleCode": "AD.4", + "ruleContent": "Individual Registration Requirements ... 12", + "parentRuleCode": "AD", + "pageNumber": "2" + }, + { + "ruleCode": "AD.5", + "ruleContent": "Team Advisors and Officers... 12", + "parentRuleCode": "AD", + "pageNumber": "2" + }, + { + "ruleCode": "AD.6", + "ruleContent": "Competition Registration ... 13", + "parentRuleCode": "AD", + "pageNumber": "2" + }, + { + "ruleCode": "AD.7", + "ruleContent": "Competition Site ... 14", + "parentRuleCode": "AD", + "pageNumber": "2" + }, + { + "ruleCode": "DR.1", + "ruleContent": "Documentation ... 16", + "parentRuleCode": "DR", + "pageNumber": "2" + }, + { + "ruleCode": "DR.2", + "ruleContent": "Submission Details ... 16", + "parentRuleCode": "DR", + "pageNumber": "2" + }, + { + "ruleCode": "DR.3", + "ruleContent": "Submission Penalties... 17", + "parentRuleCode": "DR", + "pageNumber": "2" + }, + { + "ruleCode": "V.1", + "ruleContent": "Configuration ... 19", + "parentRuleCode": "V", + "pageNumber": "2" + }, + { + "ruleCode": "V.2", + "ruleContent": "Driver... 20", + "parentRuleCode": "V", + "pageNumber": "2" + }, + { + "ruleCode": "V.3", + "ruleContent": "Suspension and Steering ... 20", + "parentRuleCode": "V", + "pageNumber": "2" + }, + { + "ruleCode": "V.4", + "ruleContent": "Wheels and Tires ... 21", + "parentRuleCode": "V", + "pageNumber": "2" + }, + { + "ruleCode": "F.1", + "ruleContent": "Definitions ... 23", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.2", + "ruleContent": "Documentation ... 25", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.3", + "ruleContent": "Tubing and Material ... 25", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.4", + "ruleContent": "Composite and Other Materials ... 28", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.5", + "ruleContent": "Chassis Requirements ... 30", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.6", + "ruleContent": "Tube Frames ... 37", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.7", + "ruleContent": "Monocoque ... 39", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.8", + "ruleContent": "Front Chassis Protection ... 43", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.9", + "ruleContent": "Fuel System (IC Only) ... 48", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.10", + "ruleContent": "Accumulator Container (EV Only) ... 49", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "F.11", + "ruleContent": "Tractive System (EV Only) ... 52", + "parentRuleCode": "F", + "pageNumber": "2" + }, + { + "ruleCode": "T.1", + "ruleContent": "Cockpit... 54", + "parentRuleCode": "T", + "pageNumber": "2" + }, + { + "ruleCode": "T.2", + "ruleContent": "Driver Accommodation ... 58", + "parentRuleCode": "T", + "pageNumber": "2" + }, + { + "ruleCode": "T.3", + "ruleContent": "Brakes ... 63", + "parentRuleCode": "T", + "pageNumber": "2" + }, + { + "ruleCode": "T.4", + "ruleContent": "Electronic Throttle Components ... 64", + "parentRuleCode": "T", + "pageNumber": "2" + }, + { + "ruleCode": "T.5", + "ruleContent": "Powertrain... 66", + "parentRuleCode": "T", + "pageNumber": "2" + }, + { + "ruleCode": "T.6", + "ruleContent": "Pressurized Systems ... 68", + "parentRuleCode": "T", + "pageNumber": "3" + }, + { + "ruleCode": "T.7", + "ruleContent": "Bodywork and Aerodynamic Devices ... 69", + "parentRuleCode": "T", + "pageNumber": "3" + }, + { + "ruleCode": "T.8", + "ruleContent": "Fasteners ... 71", + "parentRuleCode": "T", + "pageNumber": "3" + }, + { + "ruleCode": "T.9", + "ruleContent": "Electrical Equipment ... 72", + "parentRuleCode": "T", + "pageNumber": "3" + }, + { + "ruleCode": "VE.1", + "ruleContent": "Vehicle Identification ... 75", + "parentRuleCode": "VE", + "pageNumber": "3" + }, + { + "ruleCode": "VE.2", + "ruleContent": "Vehicle Equipment ... 75", + "parentRuleCode": "VE", + "pageNumber": "3" + }, + { + "ruleCode": "VE.3", + "ruleContent": "Driver Equipment ... 77", + "parentRuleCode": "VE", + "pageNumber": "3" + }, + { + "ruleCode": "IC.1", + "ruleContent": "General Requirements ... 79", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "IC.2", + "ruleContent": "Air Intake System ... 79", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "IC.3", + "ruleContent": "Throttle ... 80", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "IC.4", + "ruleContent": "Electronic Throttle Control... 81", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "IC.5", + "ruleContent": "Fuel and Fuel System ... 84", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "IC.6", + "ruleContent": "Fuel Injection ... 86", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "IC.7", + "ruleContent": "Exhaust and Noise Control ... 87", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "IC.8", + "ruleContent": "Electrical ... 88", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "IC.9", + "ruleContent": "Shutdown System... 88", + "parentRuleCode": "IC", + "pageNumber": "3" + }, + { + "ruleCode": "EV.1", + "ruleContent": "Definitions ... 90", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.2", + "ruleContent": "Documentation ... 90", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.3", + "ruleContent": "Electrical Limitations ... 90", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.4", + "ruleContent": "Components ... 91", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.5", + "ruleContent": "Energy Storage ... 94", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.6", + "ruleContent": "Electrical System ... 98", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.7", + "ruleContent": "Shutdown System... 102", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.8", + "ruleContent": "Charger Requirements ... 107", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.9", + "ruleContent": "Vehicle Operations ... 108", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.10", + "ruleContent": "Event Site Activities ... 109", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "EV.11", + "ruleContent": "Work Practices ... 109", + "parentRuleCode": "EV", + "pageNumber": "3" + }, + { + "ruleCode": "IN.1", + "ruleContent": "Inspection Requirements ... 112", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.2", + "ruleContent": "Inspection Conduct ... 112", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.3", + "ruleContent": "Initial Inspection ... 113", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.4", + "ruleContent": "Electrical Technical Inspection (EV Only) ... 113", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.5", + "ruleContent": "Driver Cockpit Checks... 114", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.6", + "ruleContent": "Driver Template Inspections ... 115", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.7", + "ruleContent": "Cockpit Template Inspections ... 115", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.8", + "ruleContent": "Mechanical Technical Inspection ... 115", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.9", + "ruleContent": "Tilt Test ... 116", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.10", + "ruleContent": "Noise and Switch Test (IC Only) ... 117", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.11", + "ruleContent": "Rain Test (EV Only) ... 118", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.12", + "ruleContent": "Brake Test... 118", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.13", + "ruleContent": "Inspection Approval ... 119", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.14", + "ruleContent": "Modifications and Repairs ... 119", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "IN.15", + "ruleContent": "Reinspection ... 120", + "parentRuleCode": "IN", + "pageNumber": "3" + }, + { + "ruleCode": "S.1", + "ruleContent": "General Static ... 121", + "parentRuleCode": "S", + "pageNumber": "4" + }, + { + "ruleCode": "S.2", + "ruleContent": "Presentation Event ... 121", + "parentRuleCode": "S", + "pageNumber": "4" + }, + { + "ruleCode": "S.3", + "ruleContent": "Cost and Manufacturing Event... 122", + "parentRuleCode": "S", + "pageNumber": "4" + }, + { + "ruleCode": "S.4", + "ruleContent": "Design Event... 126", + "parentRuleCode": "S", + "pageNumber": "4" + }, + { + "ruleCode": "D.1", + "ruleContent": "General Dynamic ... 128", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.2", + "ruleContent": "Pit and Paddock... 128", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.3", + "ruleContent": "Driving ... 129", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.4", + "ruleContent": "Flags ... 130", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.5", + "ruleContent": "Weather Conditions ... 130", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.6", + "ruleContent": "Tires and Tire Changes ... 131", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.7", + "ruleContent": "Driver Limitations ... 132", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.8", + "ruleContent": "Definitions ... 132", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.9", + "ruleContent": "Acceleration Event ... 132", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.10", + "ruleContent": "Skidpad Event ... 133", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.11", + "ruleContent": "Autocross Event ... 135", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.12", + "ruleContent": "Endurance Event ... 137", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.13", + "ruleContent": "Efficiency Event ... 141", + "parentRuleCode": "D", + "pageNumber": "4" + }, + { + "ruleCode": "D.14", + "ruleContent": "Post Endurance ... 143", + "parentRuleCode": "D", + "pageNumber": "4" + } + ], + "totalRules": 99, + "generatedAt": "2025-11-05T20:43:25.315Z" +} \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/fsae_rules.json b/scripts/document-parser/jsonOutput/fsae_rules.json index 76e1d45d7a..0ba93090c8 100644 --- a/scripts/document-parser/jsonOutput/fsae_rules.json +++ b/scripts/document-parser/jsonOutput/fsae_rules.json @@ -1,599 +1,5 @@ { "rules": [ - { - "ruleCode": "GR.1", - "ruleContent": "Formula SAE Competition Objective ... 5", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.2", - "ruleContent": "Organizer Authority... 6", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.3", - "ruleContent": "Team Responsibility ... 6", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.4", - "ruleContent": "Rules Authority and Issue... 7", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.5", - "ruleContent": "Rules of Conduct ... 7", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.6", - "ruleContent": "Rules Format and Use ... 8", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.7", - "ruleContent": "Rules Questions... 9", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.8", - "ruleContent": "Protests ... 9", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.9", - "ruleContent": "Vehicle Eligibility ... 10 AD - Administrative Regulations ... 11", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "AD.1", - "ruleContent": "The Formula SAE Series ... 11", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.2", - "ruleContent": "Official Information Sources ... 11", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.3", - "ruleContent": "Individual Participation Requirements... 11", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.4", - "ruleContent": "Individual Registration Requirements ... 12", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.5", - "ruleContent": "Team Advisors and Officers... 12", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.6", - "ruleContent": "Competition Registration ... 13", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.7", - "ruleContent": "Competition Site ... 14 DR - Document Requirements ... 16", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "DR.1", - "ruleContent": "Documentation ... 16", - "parentRuleCode": "DR", - "pageNumber": "2" - }, - { - "ruleCode": "DR.2", - "ruleContent": "Submission Details ... 16", - "parentRuleCode": "DR", - "pageNumber": "2" - }, - { - "ruleCode": "DR.3", - "ruleContent": "Submission Penalties... 17 V - Vehicle Requirements ... 19", - "parentRuleCode": "DR", - "pageNumber": "2" - }, - { - "ruleCode": "V.1", - "ruleContent": "Configuration ... 19", - "parentRuleCode": "V", - "pageNumber": "2" - }, - { - "ruleCode": "V.2", - "ruleContent": "Driver... 20", - "parentRuleCode": "V", - "pageNumber": "2" - }, - { - "ruleCode": "V.3", - "ruleContent": "Suspension and Steering ... 20", - "parentRuleCode": "V", - "pageNumber": "2" - }, - { - "ruleCode": "V.4", - "ruleContent": "Wheels and Tires ... 21 F - Chassis and Structural... 23", - "parentRuleCode": "V", - "pageNumber": "2" - }, - { - "ruleCode": "F.1", - "ruleContent": "Definitions ... 23", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.2", - "ruleContent": "Documentation ... 25", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.3", - "ruleContent": "Tubing and Material ... 25", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.4", - "ruleContent": "Composite and Other Materials ... 28", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.5", - "ruleContent": "Chassis Requirements ... 30", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.6", - "ruleContent": "Tube Frames ... 37", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.7", - "ruleContent": "Monocoque ... 39", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.8", - "ruleContent": "Front Chassis Protection ... 43", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.9", - "ruleContent": "Fuel System (IC Only) ... 48", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.10", - "ruleContent": "Accumulator Container (EV Only) ... 49", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.11", - "ruleContent": "Tractive System (EV Only) ... 52 T - Technical Aspects ... 54", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "T.1", - "ruleContent": "Cockpit... 54", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.2", - "ruleContent": "Driver Accommodation ... 58", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.3", - "ruleContent": "Brakes ... 63", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.4", - "ruleContent": "Electronic Throttle Components ... 64", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.5", - "ruleContent": "Powertrain... 66 Version 1.0 31 Aug 2024", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.6", - "ruleContent": "Pressurized Systems ... 68", - "parentRuleCode": "T", - "pageNumber": "3" - }, - { - "ruleCode": "T.7", - "ruleContent": "Bodywork and Aerodynamic Devices ... 69", - "parentRuleCode": "T", - "pageNumber": "3" - }, - { - "ruleCode": "T.8", - "ruleContent": "Fasteners ... 71", - "parentRuleCode": "T", - "pageNumber": "3" - }, - { - "ruleCode": "T.9", - "ruleContent": "Electrical Equipment ... 72 VE - Vehicle and Driver Equipment ... 75", - "parentRuleCode": "T", - "pageNumber": "3" - }, - { - "ruleCode": "VE.1", - "ruleContent": "Vehicle Identification ... 75", - "parentRuleCode": "VE", - "pageNumber": "3" - }, - { - "ruleCode": "VE.2", - "ruleContent": "Vehicle Equipment ... 75", - "parentRuleCode": "VE", - "pageNumber": "3" - }, - { - "ruleCode": "VE.3", - "ruleContent": "Driver Equipment ... 77 IC - Internal Combustion Engine Vehicles ... 79", - "parentRuleCode": "VE", - "pageNumber": "3" - }, - { - "ruleCode": "IC.1", - "ruleContent": "General Requirements ... 79", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.2", - "ruleContent": "Air Intake System ... 79", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.3", - "ruleContent": "Throttle ... 80", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.4", - "ruleContent": "Electronic Throttle Control... 81", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.5", - "ruleContent": "Fuel and Fuel System ... 84", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.6", - "ruleContent": "Fuel Injection ... 86", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.7", - "ruleContent": "Exhaust and Noise Control ... 87", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.8", - "ruleContent": "Electrical ... 88", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.9", - "ruleContent": "Shutdown System... 88 EV - Electric Vehicles ... 90", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "EV.1", - "ruleContent": "Definitions ... 90", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.2", - "ruleContent": "Documentation ... 90", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.3", - "ruleContent": "Electrical Limitations ... 90", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.4", - "ruleContent": "Components ... 91", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.5", - "ruleContent": "Energy Storage ... 94", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.6", - "ruleContent": "Electrical System ... 98", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.7", - "ruleContent": "Shutdown System... 102", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.8", - "ruleContent": "Charger Requirements ... 107", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.9", - "ruleContent": "Vehicle Operations ... 108", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.10", - "ruleContent": "Event Site Activities ... 109", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.11", - "ruleContent": "Work Practices ... 109 IN - Technical Inspection ... 112", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "IN.1", - "ruleContent": "Inspection Requirements ... 112", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.2", - "ruleContent": "Inspection Conduct ... 112", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.3", - "ruleContent": "Initial Inspection ... 113", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.4", - "ruleContent": "Electrical Technical Inspection (EV Only) ... 113", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.5", - "ruleContent": "Driver Cockpit Checks... 114", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.6", - "ruleContent": "Driver Template Inspections ... 115", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.7", - "ruleContent": "Cockpit Template Inspections ... 115", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.8", - "ruleContent": "Mechanical Technical Inspection ... 115", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.9", - "ruleContent": "Tilt Test ... 116", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.10", - "ruleContent": "Noise and Switch Test (IC Only) ... 117", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.11", - "ruleContent": "Rain Test (EV Only) ... 118", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.12", - "ruleContent": "Brake Test... 118", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.13", - "ruleContent": "Inspection Approval ... 119", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.14", - "ruleContent": "Modifications and Repairs ... 119", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.15", - "ruleContent": "Reinspection ... 120 Version 1.0 31 Aug 2024 S - Static Events... 121", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "S.1", - "ruleContent": "General Static ... 121", - "parentRuleCode": "S", - "pageNumber": "4" - }, - { - "ruleCode": "S.2", - "ruleContent": "Presentation Event ... 121", - "parentRuleCode": "S", - "pageNumber": "4" - }, - { - "ruleCode": "S.3", - "ruleContent": "Cost and Manufacturing Event... 122", - "parentRuleCode": "S", - "pageNumber": "4" - }, - { - "ruleCode": "S.4", - "ruleContent": "Design Event... 126 D - Dynamic Events ... 128", - "parentRuleCode": "S", - "pageNumber": "4" - }, - { - "ruleCode": "D.1", - "ruleContent": "General Dynamic ... 128", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.2", - "ruleContent": "Pit and Paddock... 128", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.3", - "ruleContent": "Driving ... 129", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.4", - "ruleContent": "Flags ... 130", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.5", - "ruleContent": "Weather Conditions ... 130", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.6", - "ruleContent": "Tires and Tire Changes ... 131", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.7", - "ruleContent": "Driver Limitations ... 132", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.8", - "ruleContent": "Definitions ... 132", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.9", - "ruleContent": "Acceleration Event ... 132", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.10", - "ruleContent": "Skidpad Event ... 133", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.11", - "ruleContent": "Autocross Event ... 135", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.12", - "ruleContent": "Endurance Event ... 137", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.13", - "ruleContent": "Efficiency Event ... 141", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.14", - "ruleContent": "Post Endurance ... 143 Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com REVISION SUMMARY Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 Allowance for Late Submissions DR.3.3.1 Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, EV.5.9, EV.7.8.4 Version 1.0 31 Aug 2024", - "parentRuleCode": "D", - "pageNumber": "4" - }, { "ruleCode": "GR", "ruleContent": "GENERAL REGULATIONS", @@ -2492,7 +1898,7 @@ "pageNumber": "25" }, { - "ruleCode": "F.2.1", + "ruleCode": "F.2.1.dup", "ruleContent": "Structural Equivalency Spreadsheet - SES", "parentRuleCode": "F.2", "pageNumber": "25" @@ -3560,7 +2966,7 @@ "pageNumber": "35" }, { - "ruleCode": "F.1.11", + "ruleCode": "F.1.11.dup", "ruleContent": "defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other tube nodes or composite attachments", "parentRuleCode": "F.1", "pageNumber": "35" @@ -4058,7 +3464,7 @@ "pageNumber": "39" }, { - "ruleCode": "F.5.2", + "ruleCode": "F.5.2.dup", "ruleContent": "are met.", "parentRuleCode": "F.5", "pageNumber": "39" @@ -5606,7 +5012,7 @@ "pageNumber": "52" }, { - "ruleCode": "F.11.1.2", + "ruleCode": "F.11.1.2.dup", "ruleContent": "above must be contained inside one or two of: • The Rollover Protection Envelope F.1.13 • Structure meeting F.5.16 Component Protection", "parentRuleCode": "F.11.1", "pageNumber": "52" @@ -6595,7 +6001,7 @@ "pageNumber": "60" }, { - "ruleCode": "T.2.4.3", + "ruleCode": "T.2.4.3.dup", "ruleContent": ") loaded in tension on the Shoulder Harness Mounting bar", "parentRuleCode": "T.2.4", "pageNumber": "60" @@ -10486,7 +9892,7 @@ "pageNumber": "91" }, { - "ruleCode": "F.11.1.3", + "ruleCode": "F.11.1.3.dup", "ruleContent": "to the extent possible Version 1.0 31 Aug 2024", "parentRuleCode": "F.11.1", "pageNumber": "91" @@ -11776,7 +11182,7 @@ "pageNumber": "100" }, { - "ruleCode": "EV.5.10", + "ruleCode": "EV.5.10.dup", "ruleContent": "the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator Container.", "parentRuleCode": "EV.5", "pageNumber": "100" @@ -17527,6 +16933,6 @@ "pageNumber": "143" } ], - "totalRules": 2923, - "generatedAt": "2025-11-03T19:31:31.769Z" + "totalRules": 2824, + "generatedAt": "2025-11-05T20:43:25.314Z" } \ No newline at end of file diff --git a/scripts/document-parser/parsers/FHEParser.ts b/scripts/document-parser/parsers/FHEParser.ts index 32963a8b4c..7da848837a 100644 --- a/scripts/document-parser/parsers/FHEParser.ts +++ b/scripts/document-parser/parsers/FHEParser.ts @@ -73,6 +73,10 @@ export class FHEParser extends RuleParser { return rules; } + protected extractToc(text: string): RuleData[] { + return []; + } + private parseRuleNumber(line: string): Rule | null { // Match FHE rule patterns like "1T3.17.1" followed by text const rulePattern = /^(\d+[A-Z]+\d+(?:\.\d+)*)\s+(.+)$/; diff --git a/scripts/document-parser/parsers/FSAEParser.ts b/scripts/document-parser/parsers/FSAEParser.ts index 9332d8b6d4..59330ce511 100644 --- a/scripts/document-parser/parsers/FSAEParser.ts +++ b/scripts/document-parser/parsers/FSAEParser.ts @@ -6,6 +6,7 @@ export class FSAEParser extends RuleParser { protected extractRules(text: string): RuleData[] { const rules: RuleData[] = []; const lines = text.split('\n'); + const seenRuleCodes = new Map(); let currentRule: { code: string; text: string; pageNumber: string } | null = null; let currentPageNumber = '1'; @@ -16,16 +17,19 @@ export class FSAEParser extends RuleParser { const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); if (subRules.length > 0) { - // Add the main rule and all sub-rules - rules.push(...subRules); + // Fixes unique ruleCode issue + for (const subRule of subRules) { + rules.push(this.handleDuplicateCodes(subRule, seenRuleCodes)); + } } else { // No sub-rules, just add the main rule - rules.push({ + const rule: RuleData = { ruleCode: currentRule.code, - ruleContent: this.cleanTocDots(currentRule.text.trim()), + ruleContent: currentRule.text.trim(), parentRuleCode: this.findParentRuleCode(currentRule.code), pageNumber: currentRule.pageNumber - }); + }; + rules.push(this.handleDuplicateCodes(rule, seenRuleCodes)); } } }; @@ -41,6 +45,11 @@ export class FSAEParser extends RuleParser { continue; } + // skip table of contents + if (this.isTocEntry(trimmedLine)) { + continue; + } + // Check if this line starts a new rule const rule = this.parseRuleNumber(trimmedLine); if (rule) { @@ -61,9 +70,71 @@ export class FSAEParser extends RuleParser { return rules; } - // Cleaned extensive dots from table of contents rules + /** + * Adds .dup suffix to duplicate rule codes + */ + private handleDuplicateCodes(rule: RuleData, seenRuleCodes: Map): RuleData { + const originalCode = rule.ruleCode; + const count = seenRuleCodes.get(originalCode) || 0; + seenRuleCodes.set(originalCode, count + 1); + + if (count > 0) { + const suffix = count === 1 ? '.dup' : `.dup${count}`; + console.log(`Duplicate rule found: ${originalCode} -> ${originalCode}${suffix}`); + return { + ...rule, + ruleCode: `${originalCode}${suffix}` + }; + } + return rule; + } + + protected extractToc(text: string): RuleData[] { + const tocEntries: RuleData[] = []; + const lines = text.split('\n'); + let currentPageNumber = '1'; + + for (const line of lines) { + const trimmedLine = line.trim(); + if (!trimmedLine) continue; + + // Update page number if found + const pageMatch = this.extractPageNumber(trimmedLine); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + if (this.isTocEntry(trimmedLine)) { + const rule = this.parseRuleNumber(trimmedLine); + if (rule) { + // removing excessive dots + const cleanContent = this.cleanTocDots(rule.ruleContent); + tocEntries.push({ + ruleCode: rule.ruleCode, + ruleContent: cleanContent, + parentRuleCode: this.findParentRuleCode(rule.ruleCode), + pageNumber: currentPageNumber + }); + } + } + } + + return tocEntries; + } + + /** + * Checks if a line is a table of contents entry + * Ex: "GR.1 Formula SAE Competition Objective ... 5" + */ + private isTocEntry(line: string): boolean { + // multiple dots and a number at the end + return /\.{4,}\s+\d+\s*$/.test(line); + } + + // clean excessive dots from table of contents rules private cleanTocDots(content: string): string { - return content.replace(/\.{4,}/g, '...'); + return content.replace(/\.{3,}/g, '...'); } private parseRuleNumber(line: string): Rule | null { From d4d04482537bdbc674729eab87197ffbaaeca2df Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Tue, 18 Nov 2025 22:58:31 -0500 Subject: [PATCH 08/25] #3622 comments added + small updates --- scripts/document-parser/RuleParser.ts | 4 +++- scripts/document-parser/index.ts | 10 +++++++--- .../document-parser/jsonOutput/FHE_images.json | 2 +- scripts/document-parser/jsonOutput/FHE_toc.json | 5 +++++ scripts/document-parser/jsonOutput/FSAE_toc.json | 2 +- .../document-parser/jsonOutput/fhe_rules.json | 2 +- .../document-parser/jsonOutput/fsae_rules.json | 16 ++++++++-------- scripts/document-parser/package.json | 3 +-- scripts/document-parser/parsers/FHEParser.ts | 2 ++ scripts/document-parser/parsers/FSAEParser.ts | 4 ++-- 10 files changed, 31 insertions(+), 19 deletions(-) create mode 100644 scripts/document-parser/jsonOutput/FHE_toc.json diff --git a/scripts/document-parser/RuleParser.ts b/scripts/document-parser/RuleParser.ts index 3c3b3adbd6..35e327e8b8 100644 --- a/scripts/document-parser/RuleParser.ts +++ b/scripts/document-parser/RuleParser.ts @@ -264,6 +264,7 @@ export abstract class RuleParser { parserType: ParserType, userId: string, carId: string, + organizationId: string, pdfFileName: string ): Promise { try { @@ -271,7 +272,8 @@ export abstract class RuleParser { const rulesetType = await prisma.ruleset_Type.create({ data: { name: parserType, - createdByUserId: userId + createdByUserId: userId, + organizationId: organizationId } }); // create new ruleset diff --git a/scripts/document-parser/index.ts b/scripts/document-parser/index.ts index 698ea976ac..7965f7ea0c 100644 --- a/scripts/document-parser/index.ts +++ b/scripts/document-parser/index.ts @@ -2,11 +2,15 @@ import { FSAEParser } from './parsers/FSAEParser'; import { FHEParser } from './parsers/FHEParser'; import { ParserType, RuleParser } from './RuleParser'; +// For manual testing of parsers +// Run 'npm start FHE FHE.pdf' or 'npm start FSAE FSAE.pdf' async function main() { const type = (process.argv[2]?.toUpperCase() as ParserType) || ParserType.FSAE; const pdfFileName = process.argv[3]; - const userId = process.argv[4] || 'c8ff9535-8b88-40dd-8e99-ba1b800bb380'; - const carId = process.argv[5] || '3cdd8115-c48b-4775-9c46-136b0d157a72'; + // these are values from prisma:studio so not a permanent fix + const userId = process.argv[4] || 'f9f1f920-82c2-45ff-98f3-b30f759330fc'; + const carId = process.argv[5] || 'a24e6261-0ca1-47a8-9f49-5e1db76713bd'; + const organizationId = process.argv[6] || 'ecf53ed9-d91d-42d2-8b7c-811a3cf10021'; if (!pdfFileName) { console.error('Usage: npm start '); @@ -23,7 +27,7 @@ async function main() { const result = await parser.parsePdf(pdfFileName); await parser.saveToJSON(result.rules, outputPath, result.tocEntries, tocPath, result.imgInfo, imgPath); await parser.saveToTxt(result.text, txtPath); - await parser.saveToDatabase(result.rules, type, userId, carId, pdfFileName); + await parser.saveToDatabase(result.rules, type, userId, carId, organizationId, pdfFileName); console.log(`${type} parsing completed`); } catch (error) { diff --git a/scripts/document-parser/jsonOutput/FHE_images.json b/scripts/document-parser/jsonOutput/FHE_images.json index 6577abe462..ca64272731 100644 --- a/scripts/document-parser/jsonOutput/FHE_images.json +++ b/scripts/document-parser/jsonOutput/FHE_images.json @@ -361,5 +361,5 @@ "pageNumber": "171" } ], - "generatedAt": "2025-11-03T19:26:20.823Z" + "generatedAt": "2025-11-19T03:42:03.983Z" } \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/FHE_toc.json b/scripts/document-parser/jsonOutput/FHE_toc.json new file mode 100644 index 0000000000..53a1e8af85 --- /dev/null +++ b/scripts/document-parser/jsonOutput/FHE_toc.json @@ -0,0 +1,5 @@ +{ + "rules": [], + "totalRules": 0, + "generatedAt": "2025-11-19T03:42:03.983Z" +} \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/FSAE_toc.json b/scripts/document-parser/jsonOutput/FSAE_toc.json index 224dfd5308..46bd4901ba 100644 --- a/scripts/document-parser/jsonOutput/FSAE_toc.json +++ b/scripts/document-parser/jsonOutput/FSAE_toc.json @@ -596,5 +596,5 @@ } ], "totalRules": 99, - "generatedAt": "2025-11-05T20:43:25.315Z" + "generatedAt": "2025-11-19T03:47:50.094Z" } \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/fhe_rules.json b/scripts/document-parser/jsonOutput/fhe_rules.json index 9364cd2315..2534a73d8e 100644 --- a/scripts/document-parser/jsonOutput/fhe_rules.json +++ b/scripts/document-parser/jsonOutput/fhe_rules.json @@ -5031,5 +5031,5 @@ } ], "totalRules": 849, - "generatedAt": "2025-11-03T19:26:20.822Z" + "generatedAt": "2025-11-19T03:42:03.982Z" } \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/fsae_rules.json b/scripts/document-parser/jsonOutput/fsae_rules.json index 0ba93090c8..53865f33cb 100644 --- a/scripts/document-parser/jsonOutput/fsae_rules.json +++ b/scripts/document-parser/jsonOutput/fsae_rules.json @@ -1898,7 +1898,7 @@ "pageNumber": "25" }, { - "ruleCode": "F.2.1.dup", + "ruleCode": "F.2.1.duplicate", "ruleContent": "Structural Equivalency Spreadsheet - SES", "parentRuleCode": "F.2", "pageNumber": "25" @@ -2966,7 +2966,7 @@ "pageNumber": "35" }, { - "ruleCode": "F.1.11.dup", + "ruleCode": "F.1.11.duplicate", "ruleContent": "defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other tube nodes or composite attachments", "parentRuleCode": "F.1", "pageNumber": "35" @@ -3464,7 +3464,7 @@ "pageNumber": "39" }, { - "ruleCode": "F.5.2.dup", + "ruleCode": "F.5.2.duplicate", "ruleContent": "are met.", "parentRuleCode": "F.5", "pageNumber": "39" @@ -5012,7 +5012,7 @@ "pageNumber": "52" }, { - "ruleCode": "F.11.1.2.dup", + "ruleCode": "F.11.1.2.duplicate", "ruleContent": "above must be contained inside one or two of: • The Rollover Protection Envelope F.1.13 • Structure meeting F.5.16 Component Protection", "parentRuleCode": "F.11.1", "pageNumber": "52" @@ -6001,7 +6001,7 @@ "pageNumber": "60" }, { - "ruleCode": "T.2.4.3.dup", + "ruleCode": "T.2.4.3.duplicate", "ruleContent": ") loaded in tension on the Shoulder Harness Mounting bar", "parentRuleCode": "T.2.4", "pageNumber": "60" @@ -9892,7 +9892,7 @@ "pageNumber": "91" }, { - "ruleCode": "F.11.1.3.dup", + "ruleCode": "F.11.1.3.duplicate", "ruleContent": "to the extent possible Version 1.0 31 Aug 2024", "parentRuleCode": "F.11.1", "pageNumber": "91" @@ -11182,7 +11182,7 @@ "pageNumber": "100" }, { - "ruleCode": "EV.5.10.dup", + "ruleCode": "EV.5.10.duplicate", "ruleContent": "the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator Container.", "parentRuleCode": "EV.5", "pageNumber": "100" @@ -16934,5 +16934,5 @@ } ], "totalRules": 2824, - "generatedAt": "2025-11-05T20:43:25.314Z" + "generatedAt": "2025-11-19T03:47:50.093Z" } \ No newline at end of file diff --git a/scripts/document-parser/package.json b/scripts/document-parser/package.json index 2998841211..7962b7b790 100644 --- a/scripts/document-parser/package.json +++ b/scripts/document-parser/package.json @@ -3,8 +3,7 @@ "version": "1.0.0", "scripts": { "build": "tsc", - "start": "ts-node index.ts", - "dev": "ts-node index.ts" + "start": "ts-node index.ts" }, "dependencies": { "pdf-parse-new": "^1.4.1" diff --git a/scripts/document-parser/parsers/FHEParser.ts b/scripts/document-parser/parsers/FHEParser.ts index 7da848837a..64dd6ced90 100644 --- a/scripts/document-parser/parsers/FHEParser.ts +++ b/scripts/document-parser/parsers/FHEParser.ts @@ -73,6 +73,8 @@ export class FHEParser extends RuleParser { return rules; } + // TOC extraction for FHE not yet implemented + // However FHE rules json DOES exclude toc data atm protected extractToc(text: string): RuleData[] { return []; } diff --git a/scripts/document-parser/parsers/FSAEParser.ts b/scripts/document-parser/parsers/FSAEParser.ts index 59330ce511..2321ea7e70 100644 --- a/scripts/document-parser/parsers/FSAEParser.ts +++ b/scripts/document-parser/parsers/FSAEParser.ts @@ -71,7 +71,7 @@ export class FSAEParser extends RuleParser { } /** - * Adds .dup suffix to duplicate rule codes + * Adds .duplicate suffix to duplicate rule codes */ private handleDuplicateCodes(rule: RuleData, seenRuleCodes: Map): RuleData { const originalCode = rule.ruleCode; @@ -79,7 +79,7 @@ export class FSAEParser extends RuleParser { seenRuleCodes.set(originalCode, count + 1); if (count > 0) { - const suffix = count === 1 ? '.dup' : `.dup${count}`; + const suffix = count === 1 ? '.duplicate' : `.duplicate${count}`; console.log(`Duplicate rule found: ${originalCode} -> ${originalCode}${suffix}`); return { ...rule, From 9edeb0f22934926831c797726cccfc3efd8de0f5 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Tue, 2 Dec 2025 22:01:22 -0500 Subject: [PATCH 09/25] #3622 basic endpoint setup --- .../src/controllers/rules.controllers.ts | 18 +++++++ src/backend/src/routes/rules.routes.ts | 9 ++++ src/backend/src/services/rules.services.ts | 51 +++++++++++++++++++ src/backend/src/utils/parse.utils.ts | 0 4 files changed, 78 insertions(+) create mode 100644 src/backend/src/utils/parse.utils.ts diff --git a/src/backend/src/controllers/rules.controllers.ts b/src/backend/src/controllers/rules.controllers.ts index 3172bbc31b..599fc51100 100644 --- a/src/backend/src/controllers/rules.controllers.ts +++ b/src/backend/src/controllers/rules.controllers.ts @@ -125,4 +125,22 @@ export default class RulesController { next(error); } } + + static async parseRuleset(req: Request, res: Response, next: NextFunction) { + try { + const { fileId, rulesetId, parserType } = req.body; + + const parseResult = await RulesService.parseRuleset( + req.currentUser, + req.organization.organizationId, + fileId, + rulesetId, + parserType + ); + + res.status(200).json(parseResult); + } catch (error: unknown) { + next(error); + } + } } diff --git a/src/backend/src/routes/rules.routes.ts b/src/backend/src/routes/rules.routes.ts index 4aa663ff53..6eaa3cfe5c 100644 --- a/src/backend/src/routes/rules.routes.ts +++ b/src/backend/src/routes/rules.routes.ts @@ -45,4 +45,13 @@ rulesRouter.post( rulesRouter.post('/rulesetType/:rulesetTypeId/delete', RulesController.deleteRulesetType); +rulesRouter.post( + '/ruleset/:rulesetId/parse', + nonEmptyString(body('fileId')), + nonEmptyString(body('rulesetId')), + nonEmptyString(body('parserType')), // 'FSAE' or 'FHE' + validateInputs, + RulesController.parseRuleset +); + export default rulesRouter; diff --git a/src/backend/src/services/rules.services.ts b/src/backend/src/services/rules.services.ts index a695c1d765..705f0235a3 100644 --- a/src/backend/src/services/rules.services.ts +++ b/src/backend/src/services/rules.services.ts @@ -23,6 +23,7 @@ import { rulesetTypeTransformer, rulesetPreviewTransformer } from '../transformers/rules.transformer'; +import { downloadFile } from '../utils/google-integration.utils'; export default class RulesService { /** @@ -584,4 +585,54 @@ export default class RulesService { return projectRuleTransformer(deletedProjectRule); } + + static async parseRuleset( + user: User, + organizationId: string, + fileId: string, + rulesetId: string, + parserType: 'FSAE' | 'FHE' + ) { + if (!(await userHasPermission(user.userId, organizationId, isLeadership))) { + throw new AccessDeniedException('You do not have permissions to upload and parse rulesets'); + } + + // Verify ruleset exists and belongs to organization + const ruleset = await prisma.ruleset.findUnique({ + where: { rulesetId }, + include: { + car: { + include: { + wbsElement: true + } + } + } + }); + + if (!ruleset) { + throw new NotFoundException('Ruleset', rulesetId); + } + if (ruleset.deletedByUserId) { + throw new DeletedException('Ruleset', rulesetId); + } + if (ruleset.car.wbsElement.organizationId !== organizationId) { + throw new AccessDeniedException('Cannot parse rules into a ruleset from another organization'); + } + + // get file from Google Drive + const { buffer, type } = await downloadFile(fileId); + + // ensure the file is a PDF + if (type !== 'application/pdf') { + throw new HttpException(400, 'Ruleset File must be a PDF'); + } + + const parsedRules = await parseRulesFromPdf(buffer, parserType); + + if (parsedRules.length === 0) { + throw new HttpException(400, 'No rules found in provided file'); + } + + return parsedRules.map(ruleTransformer); + } } diff --git a/src/backend/src/utils/parse.utils.ts b/src/backend/src/utils/parse.utils.ts new file mode 100644 index 0000000000..e69de29bb2 From c7c31ea2e003151e8c40422596de15d4bb0ec977 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Wed, 3 Dec 2025 13:22:52 -0500 Subject: [PATCH 10/25] #3622 parse util functions progress --- src/backend/src/utils/parse.utils.ts | 324 +++++++++++++++++++++++++++ 1 file changed, 324 insertions(+) diff --git a/src/backend/src/utils/parse.utils.ts b/src/backend/src/utils/parse.utils.ts index e69de29bb2..2685251fae 100644 --- a/src/backend/src/utils/parse.utils.ts +++ b/src/backend/src/utils/parse.utils.ts @@ -0,0 +1,324 @@ +import pdf from 'pdf-parse-new'; + +export interface RuleData { + ruleCode: string; + ruleContent: string; + parentRuleCode?: string; + pageNumber: string; +} + +export interface RuleString { + ruleCode: string; + ruleContent: string; +} + +export const parseRulesFromPdf = async (buffer: Buffer, parserType: 'FSAE' | 'FHE') => { + const options = { + // max page number to parse, 0 = all pages + max: 0, + // errors: 0, warnings: 1, infos: 5 + verbosityLevel: 0 as const + }; + const pdfData = await pdf(buffer, options); + return parserType === 'FSAE' ? parseFSAERules(pdfData.text) : parseFHERules(pdfData.text); +}; + +const saveToDatabase = async (parsedRules: RuleData[]) => { + // Placeholder for saving to database +} + + +const extractSubRules = (ruleCode: string, content: string, pageNumber: string): RuleData[] => { + const subRules: RuleData[] = []; + + // Pattern for lettered bullets like "a. Some text" or "b. Some text" + const letterPattern = /\s+([a-z])\.\s+/g; + const matches = [...content.matchAll(letterPattern)]; + + if (matches.length === 0) { + // No sub-rules found + return []; + } + + // Extract the main rule content (everything before the first lettered item) + const firstMatchIndex = matches[0].index!; + const mainContent = content.substring(0, firstMatchIndex).trim(); + + // Add the main rule + subRules.push({ + ruleCode, + ruleContent: mainContent, + parentRuleCode: findParentRuleCode(ruleCode), + pageNumber + }); + + // Extract the lettered sub-rules + for (let i = 0; i < matches.length; i++) { + const letter = matches[i][1]; + const startIndex = matches[i].index! + matches[i][0].length; + + // Find where this sub-rule ends (either at next letter or end of rule content) + const endIndex = i < matches.length - 1 ? matches[i + 1].index! : content.length; + + const subRuleContent = content.substring(startIndex, endIndex).trim(); + const subRuleCode = `${ruleCode}.${letter}`; + + subRules.push({ + ruleCode: subRuleCode, + ruleContent: subRuleContent, + parentRuleCode: ruleCode, + pageNumber + }); + } + return subRules; +}; + +const findParentRuleCode = (ruleCode: string): string | undefined => { + const parts = ruleCode.split('.'); + if (parts.length <= 1) { + return undefined; + } + return parts.slice(0, -1).join('.'); +}; + +/** + * Looks for page indicators like "Page 5 of 143" + * @param line current rule line being observed + * @returns the page number if found, otherwise null + */ +const extractPageNumber = (line: string): string | null => { + const pagePattern = /Page\s+(\d+)\s+of\s+\d+/i; + const match = line.match(pagePattern); + return match ? match[1] : null; +}; + +/**************** FSAE ****************/ + +const parseFSAERules = (text: string) => { + const rules: RuleData[] = []; + const lines = text.split('\n'); + const seenRuleCodes = new Map(); + + let currentRule: { code: string; text: string; pageNumber: string } | null = null; + let currentPageNumber = '1'; + + const saveCurrentRule = () => { + if (currentRule) { + // Check if the rule has lettered sub-items + const subRules = extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); + + if (subRules.length > 0) { + // Fixes unique ruleCode issue + for (const subRule of subRules) { + rules.push(handleDuplicateCodesFSAE(subRule, seenRuleCodes)); + } + } else { + // No sub-rules, just add the main rule + const rule: RuleData = { + ruleCode: currentRule.code, + ruleContent: currentRule.text.trim(), + parentRuleCode: findParentRuleCode(currentRule.code), + pageNumber: currentRule.pageNumber + }; + rules.push(handleDuplicateCodesFSAE(rule, seenRuleCodes)); + } + } + }; + for (const line of lines) { + const trimmedLine = line.trim(); + if (!trimmedLine) continue; + + // Update page number if found + const pageMatch = extractPageNumber(trimmedLine); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + // skip table of contents + if (isTocFSAE(trimmedLine)) { + continue; + } + + // Check if this line starts a new rule + const rule = parseRuleNumberFSAE(trimmedLine); + if (rule) { + saveCurrentRule(); + + currentRule = { + code: rule.ruleCode, + text: rule.ruleContent, + pageNumber: currentPageNumber + }; + } else if (currentRule) { + // Append to existing rule + currentRule.text += ' ' + trimmedLine; + } + } + saveCurrentRule(); + return rules; +}; + +const extractTocFSAE = (text: string): RuleData[] => { + const tocEntries: RuleData[] = []; + const lines = text.split('\n'); + let currentPageNumber = '1'; + + for (const line of lines) { + const trimmedLine = line.trim(); + if (!trimmedLine) continue; + + // Update page number if found + const pageMatch = extractPageNumber(trimmedLine); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + if (isTocFSAE(trimmedLine)) { + const rule = parseRuleNumberFSAE(trimmedLine); + if (rule) { + // removing excessive dots from table of contents + const cleanContent = rule.ruleContent.replace(/\.{3,}/g, '...'); + tocEntries.push({ + ruleCode: rule.ruleCode, + ruleContent: cleanContent, + parentRuleCode: findParentRuleCode(rule.ruleCode), + pageNumber: currentPageNumber + }); + } + } + } + return tocEntries; +}; + +const handleDuplicateCodesFSAE = (rule: RuleData, seenRuleCodes: Map): RuleData => { + const originalCode = rule.ruleCode; + const count = seenRuleCodes.get(originalCode) || 0; + seenRuleCodes.set(originalCode, count + 1); + + if (count > 0) { + const suffix = count === 1 ? '.duplicate' : `.duplicate${count}`; + console.log(`Duplicate rule found: ${originalCode} -> ${originalCode}${suffix}`); + return { + ...rule, + ruleCode: `${originalCode}${suffix}` + }; + } + return rule; +}; + +const isTocFSAE = (line: string): Boolean => { + // multiple dots and a number at the end + return /\.{4,}\s+\d+\s*$/.test(line); +}; + +const parseRuleNumberFSAE = (line: string): RuleString | null => { + // Match rule patterns like "GR.1.1" followed by text + const rulePattern = /^([A-Z]{1,4}(?:\.[\d]+)+)\s+(.+)$/; + // Match section patterns like "GR - GENERAL REGULATIONS" + const sectionPattern = /^([A-Z]{1,4})\s*-\s*([A-Z][A-Z\s]+)$/; + + const match = line.match(rulePattern) || line.match(sectionPattern); + if (match) { + return { + ruleCode: match[1], + ruleContent: match[2] + }; + } + + return null; +}; + +/**************** FHE *****************/ + +const parseFHERules = (text: string) => { + const rules: RuleData[] = []; + const lines = text.split('\n'); + + let inRulesSection = false; + let currentRule: { code: string; text: string; pageNumber: string } | null = null; + let currentPageNumber = '0'; + + const saveCurrentRule = () => { + if (currentRule) { + // Check if the rule has lettered sub-items + const subRules = extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); + + if (subRules.length > 0) { + // Add the main rule and all sub-rules + rules.push(...subRules); + } else { + // No sub-rules, just add the main rule + rules.push({ + ruleCode: currentRule.code, + ruleContent: currentRule.text.trim(), + parentRuleCode: findParentRuleCode(currentRule.code), + pageNumber: currentRule.pageNumber + }); + } + } + }; + + for (const line of lines) { + const trimmedLine = line.trim(); + if (!trimmedLine) continue; + if (/^Index of Tables/i.test(trimmedLine)) { + inRulesSection = true; + } + // Skip table of contents + if (inRulesSection) { + if (/^2025 Formula Hybrid.*Rules/i.test(trimmedLine)) { + saveCurrentRule(); + currentRule = null; + continue; + } + + // Update page number if found + const pageMatch = extractPageNumber(trimmedLine); + if (pageMatch) { + currentPageNumber = pageMatch; + continue; + } + + // Check if this line starts a new rule + const rule = parseRuleNumberFHE(trimmedLine); + if (rule) { + saveCurrentRule(); + + currentRule = { + code: rule.ruleCode, + text: rule.ruleContent, + pageNumber: currentPageNumber + }; + } else if (currentRule) { + // Append to existing rule + currentRule.text += ' ' + trimmedLine; + } + } + } + + saveCurrentRule(); + return rules; +}; + +const parseRuleNumberFHE = (line: string): RuleString | null => { + // Match FHE rule patterns like "1T3.17.1" followed by text + const rulePattern = /^(\d+[A-Z]+\d+(?:\.\d+)*)\s+(.+)$/; + + // "PART A1 - ADMINISTRATIVE REGULATIONS" + const partPattern = /^(PART\s+[A-Z0-9]+)\s+-\s+(.+)$/; + + // "ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW" + const articlePattern = /^(ARTICLE\s+[A-Z]+\d+)\s+(.+)$/; + + const match = line.match(rulePattern) || line.match(partPattern) || line.match(articlePattern); + if (match) { + return { + ruleCode: match[1], + ruleContent: match[2] + }; + } + + return null; +}; From 07eb8f1d72884908e6391a57c6ef852cd8363853 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Fri, 5 Dec 2025 19:41:17 -0500 Subject: [PATCH 11/25] #3622 simplified util functions --- src/backend/src/utils/parse.utils.ts | 254 ++++++++++----------------- 1 file changed, 88 insertions(+), 166 deletions(-) diff --git a/src/backend/src/utils/parse.utils.ts b/src/backend/src/utils/parse.utils.ts index 2685251fae..30e5848135 100644 --- a/src/backend/src/utils/parse.utils.ts +++ b/src/backend/src/utils/parse.utils.ts @@ -1,18 +1,12 @@ import pdf from 'pdf-parse-new'; -export interface RuleData { +export interface ParsedRule { ruleCode: string; ruleContent: string; parentRuleCode?: string; - pageNumber: string; } -export interface RuleString { - ruleCode: string; - ruleContent: string; -} - -export const parseRulesFromPdf = async (buffer: Buffer, parserType: 'FSAE' | 'FHE') => { +export const parseRulesFromPdf = async (buffer: Buffer, parserType: 'FSAE' | 'FHE'): Promise => { const options = { // max page number to parse, 0 = all pages max: 0, @@ -23,56 +17,70 @@ export const parseRulesFromPdf = async (buffer: Buffer, parserType: 'FSAE' | 'FH return parserType === 'FSAE' ? parseFSAERules(pdfData.text) : parseFHERules(pdfData.text); }; -const saveToDatabase = async (parsedRules: RuleData[]) => { - // Placeholder for saving to database -} - - -const extractSubRules = (ruleCode: string, content: string, pageNumber: string): RuleData[] => { - const subRules: RuleData[] = []; - - // Pattern for lettered bullets like "a. Some text" or "b. Some text" +/** + * Extracts lettered sub-rules from rule content (a, b, c, etc.) + * "EV.5.2 Main text a. Sub-rule" becomes: + * - EV.5.2 Main text + * - EV.5.2.a Sub-rule + * If no subrules exist, returns the original rule + * @param ruleCode parent rule code + * @param content rule content to extract from + * @returns array of parsed rules including main rule and any subrules + */ +const extractSubRules = (ruleCode: string, content: string): ParsedRule[] => { const letterPattern = /\s+([a-z])\.\s+/g; const matches = [...content.matchAll(letterPattern)]; if (matches.length === 0) { - // No sub-rules found - return []; + // no subrules found, return original rule + return [ + { + ruleCode, + ruleContent: content.trim(), + parentRuleCode: findParentRuleCode(ruleCode) + } + ]; } + const subRules: ParsedRule[] = []; // Extract the main rule content (everything before the first lettered item) const firstMatchIndex = matches[0].index!; const mainContent = content.substring(0, firstMatchIndex).trim(); - // Add the main rule + // add main rule subRules.push({ ruleCode, ruleContent: mainContent, - parentRuleCode: findParentRuleCode(ruleCode), - pageNumber + parentRuleCode: findParentRuleCode(ruleCode) }); - // Extract the lettered sub-rules + // Extract lettered sub-rules for (let i = 0; i < matches.length; i++) { - const letter = matches[i][1]; + const [, letter] = matches[i]; const startIndex = matches[i].index! + matches[i][0].length; // Find where this sub-rule ends (either at next letter or end of rule content) const endIndex = i < matches.length - 1 ? matches[i + 1].index! : content.length; - const subRuleContent = content.substring(startIndex, endIndex).trim(); const subRuleCode = `${ruleCode}.${letter}`; subRules.push({ ruleCode: subRuleCode, ruleContent: subRuleContent, - parentRuleCode: ruleCode, - pageNumber + parentRuleCode: ruleCode }); } return subRules; }; +/** + * Determines parent rule code by removing last value. + * Top level rules return undefined. + * EV.5.2.2 -> EV.5.2 + * GR -> undefined + * @param ruleCode rule code to find a parent for + * @returns Parent rule code, or undefined if top level + */ const findParentRuleCode = (ruleCode: string): string | undefined => { const parts = ruleCode.split('.'); if (parts.length <= 1) { @@ -82,61 +90,52 @@ const findParentRuleCode = (ruleCode: string): string | undefined => { }; /** - * Looks for page indicators like "Page 5 of 143" - * @param line current rule line being observed - * @returns the page number if found, otherwise null + * Fixes rules with duplicate rule code by appending .duplicate suffix + * @param rules array of parsed rules + * @returns array of rules without duplicate rule codes */ -const extractPageNumber = (line: string): string | null => { - const pagePattern = /Page\s+(\d+)\s+of\s+\d+/i; - const match = line.match(pagePattern); - return match ? match[1] : null; +const handleDuplicateCodes = (rules: ParsedRule[]): ParsedRule[] => { + const seenRuleCodes = new Map(); + + return rules.map((rule) => { + const originalCode = rule.ruleCode; + + if (seenRuleCodes.has(originalCode)) { + // duplicate found + const count = seenRuleCodes.get(originalCode)!; + seenRuleCodes.set(originalCode, count + 1); + const suffix = count === 1 ? '.duplicate' : `.duplicate${count}`; + + return { + ...rule, + ruleCode: `${originalCode}${suffix}` + }; + } + seenRuleCodes.set(originalCode, 1); + return rule; + }); }; /**************** FSAE ****************/ -const parseFSAERules = (text: string) => { - const rules: RuleData[] = []; +const parseFSAERules = (text: string): ParsedRule[] => { + const rules: ParsedRule[] = []; const lines = text.split('\n'); - const seenRuleCodes = new Map(); - let currentRule: { code: string; text: string; pageNumber: string } | null = null; - let currentPageNumber = '1'; + let currentRule: { code: string; text: string } | null = null; const saveCurrentRule = () => { - if (currentRule) { - // Check if the rule has lettered sub-items - const subRules = extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); - - if (subRules.length > 0) { - // Fixes unique ruleCode issue - for (const subRule of subRules) { - rules.push(handleDuplicateCodesFSAE(subRule, seenRuleCodes)); - } - } else { - // No sub-rules, just add the main rule - const rule: RuleData = { - ruleCode: currentRule.code, - ruleContent: currentRule.text.trim(), - parentRuleCode: findParentRuleCode(currentRule.code), - pageNumber: currentRule.pageNumber - }; - rules.push(handleDuplicateCodesFSAE(rule, seenRuleCodes)); - } - } + if (!currentRule) return; + const parsedRules = extractSubRules(currentRule.code, currentRule.text); + rules.push(...parsedRules); }; + for (const line of lines) { const trimmedLine = line.trim(); if (!trimmedLine) continue; - // Update page number if found - const pageMatch = extractPageNumber(trimmedLine); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - - // skip table of contents - if (isTocFSAE(trimmedLine)) { + // Skip table of contents + if (/\.{4,}\s+\d+\s*$/.test(trimmedLine)) { continue; } @@ -144,76 +143,25 @@ const parseFSAERules = (text: string) => { const rule = parseRuleNumberFSAE(trimmedLine); if (rule) { saveCurrentRule(); - currentRule = { code: rule.ruleCode, - text: rule.ruleContent, - pageNumber: currentPageNumber + text: rule.ruleContent }; } else if (currentRule) { - // Append to existing rule - currentRule.text += ' ' + trimmedLine; + currentRule.text += ' ' + trimmedLine; // else append to existing rule } } saveCurrentRule(); - return rules; -}; - -const extractTocFSAE = (text: string): RuleData[] => { - const tocEntries: RuleData[] = []; - const lines = text.split('\n'); - let currentPageNumber = '1'; - - for (const line of lines) { - const trimmedLine = line.trim(); - if (!trimmedLine) continue; - - // Update page number if found - const pageMatch = extractPageNumber(trimmedLine); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - - if (isTocFSAE(trimmedLine)) { - const rule = parseRuleNumberFSAE(trimmedLine); - if (rule) { - // removing excessive dots from table of contents - const cleanContent = rule.ruleContent.replace(/\.{3,}/g, '...'); - tocEntries.push({ - ruleCode: rule.ruleCode, - ruleContent: cleanContent, - parentRuleCode: findParentRuleCode(rule.ruleCode), - pageNumber: currentPageNumber - }); - } - } - } - return tocEntries; + return handleDuplicateCodes(rules); }; -const handleDuplicateCodesFSAE = (rule: RuleData, seenRuleCodes: Map): RuleData => { - const originalCode = rule.ruleCode; - const count = seenRuleCodes.get(originalCode) || 0; - seenRuleCodes.set(originalCode, count + 1); - - if (count > 0) { - const suffix = count === 1 ? '.duplicate' : `.duplicate${count}`; - console.log(`Duplicate rule found: ${originalCode} -> ${originalCode}${suffix}`); - return { - ...rule, - ruleCode: `${originalCode}${suffix}` - }; - } - return rule; -}; - -const isTocFSAE = (line: string): Boolean => { - // multiple dots and a number at the end - return /\.{4,}\s+\d+\s*$/.test(line); -}; - -const parseRuleNumberFSAE = (line: string): RuleString | null => { +/** + * Extracts code and content of a rule from a line of text + * Catches rule pattern (e.g. GR.1.1 some text) and section pattern (e.g. GR - TEXT) + * @param line + * @returns + */ +const parseRuleNumberFSAE = (line: string): ParsedRule | null => { // Match rule patterns like "GR.1.1" followed by text const rulePattern = /^([A-Z]{1,4}(?:\.[\d]+)+)\s+(.+)$/; // Match section patterns like "GR - GENERAL REGULATIONS" @@ -221,43 +169,27 @@ const parseRuleNumberFSAE = (line: string): RuleString | null => { const match = line.match(rulePattern) || line.match(sectionPattern); if (match) { + const cleanContent = match[2].replace(/\.{3,}/g, '...'); return { ruleCode: match[1], - ruleContent: match[2] + ruleContent: cleanContent }; } - return null; }; /**************** FHE *****************/ -const parseFHERules = (text: string) => { - const rules: RuleData[] = []; +const parseFHERules = (text: string): ParsedRule[] => { + const rules: ParsedRule[] = []; const lines = text.split('\n'); - let inRulesSection = false; - let currentRule: { code: string; text: string; pageNumber: string } | null = null; - let currentPageNumber = '0'; + let currentRule: { code: string; text: string } | null = null; const saveCurrentRule = () => { - if (currentRule) { - // Check if the rule has lettered sub-items - const subRules = extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); - - if (subRules.length > 0) { - // Add the main rule and all sub-rules - rules.push(...subRules); - } else { - // No sub-rules, just add the main rule - rules.push({ - ruleCode: currentRule.code, - ruleContent: currentRule.text.trim(), - parentRuleCode: findParentRuleCode(currentRule.code), - pageNumber: currentRule.pageNumber - }); - } - } + if (!currentRule) return; + const parsedRules = extractSubRules(currentRule.code, currentRule.text); + rules.push(...parsedRules); }; for (const line of lines) { @@ -274,22 +206,13 @@ const parseFHERules = (text: string) => { continue; } - // Update page number if found - const pageMatch = extractPageNumber(trimmedLine); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - // Check if this line starts a new rule const rule = parseRuleNumberFHE(trimmedLine); if (rule) { saveCurrentRule(); - currentRule = { code: rule.ruleCode, - text: rule.ruleContent, - pageNumber: currentPageNumber + text: rule.ruleContent }; } else if (currentRule) { // Append to existing rule @@ -297,12 +220,11 @@ const parseFHERules = (text: string) => { } } } - saveCurrentRule(); - return rules; + return handleDuplicateCodes(rules); }; -const parseRuleNumberFHE = (line: string): RuleString | null => { +const parseRuleNumberFHE = (line: string): ParsedRule | null => { // Match FHE rule patterns like "1T3.17.1" followed by text const rulePattern = /^(\d+[A-Z]+\d+(?:\.\d+)*)\s+(.+)$/; From ce707edd2fea19c58923c5205d6c9672d239f43e Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Fri, 5 Dec 2025 20:07:28 -0500 Subject: [PATCH 12/25] #3622 service update + added pdf parser dependency --- src/backend/package.json | 1 + .../src/controllers/rules.controllers.ts | 3 +- src/backend/src/routes/rules.routes.ts | 1 - src/backend/src/services/rules.services.ts | 75 +++++++++++++++++-- src/backend/src/utils/parse.utils.ts | 36 +++++---- yarn.lock | 18 +++++ 6 files changed, 112 insertions(+), 22 deletions(-) diff --git a/src/backend/package.json b/src/backend/package.json index 92ec84d984..8b046fd7e1 100644 --- a/src/backend/package.json +++ b/src/backend/package.json @@ -32,6 +32,7 @@ "jsonwebtoken": "^8.5.1", "multer": "^1.4.5-lts.1", "nodemailer": "^6.9.1", + "pdf-parse-new": "^1.4.1", "prisma": "^6.2.1", "shared": "1.0.0" }, diff --git a/src/backend/src/controllers/rules.controllers.ts b/src/backend/src/controllers/rules.controllers.ts index 599fc51100..94f793aa4f 100644 --- a/src/backend/src/controllers/rules.controllers.ts +++ b/src/backend/src/controllers/rules.controllers.ts @@ -128,7 +128,8 @@ export default class RulesController { static async parseRuleset(req: Request, res: Response, next: NextFunction) { try { - const { fileId, rulesetId, parserType } = req.body; + const { fileId, parserType } = req.body; + const { rulesetId } = req.params; const parseResult = await RulesService.parseRuleset( req.currentUser, diff --git a/src/backend/src/routes/rules.routes.ts b/src/backend/src/routes/rules.routes.ts index 6eaa3cfe5c..257f0e7880 100644 --- a/src/backend/src/routes/rules.routes.ts +++ b/src/backend/src/routes/rules.routes.ts @@ -48,7 +48,6 @@ rulesRouter.post('/rulesetType/:rulesetTypeId/delete', RulesController.deleteRul rulesRouter.post( '/ruleset/:rulesetId/parse', nonEmptyString(body('fileId')), - nonEmptyString(body('rulesetId')), nonEmptyString(body('parserType')), // 'FSAE' or 'FHE' validateInputs, RulesController.parseRuleset diff --git a/src/backend/src/services/rules.services.ts b/src/backend/src/services/rules.services.ts index 705f0235a3..10ac3a84f6 100644 --- a/src/backend/src/services/rules.services.ts +++ b/src/backend/src/services/rules.services.ts @@ -1,5 +1,5 @@ import { Organization, Rule, User, Rule_Completion } from '@prisma/client'; -import { isAdmin, isLeadership, ProjectRule, RulesetType, notGuest, RulesetPreview } from 'shared'; +import { isAdmin, isLeadership, ProjectRule, RulesetType, notGuest, RulesetPreview, Rule as SharedRule } from 'shared'; import prisma from '../prisma/prisma'; import { AccessDeniedAdminOnlyException, @@ -24,6 +24,7 @@ import { rulesetPreviewTransformer } from '../transformers/rules.transformer'; import { downloadFile } from '../utils/google-integration.utils'; +import { ParsedRule, parseRulesFromPdf } from '../utils/parse.utils'; export default class RulesService { /** @@ -586,13 +587,22 @@ export default class RulesService { return projectRuleTransformer(deletedProjectRule); } + /** + * + * @param user + * @param organizationId + * @param fileId + * @param rulesetId + * @param parserType + * @returns + */ static async parseRuleset( user: User, organizationId: string, fileId: string, rulesetId: string, parserType: 'FSAE' | 'FHE' - ) { + ): Promise { if (!(await userHasPermission(user.userId, organizationId, isLeadership))) { throw new AccessDeniedException('You do not have permissions to upload and parse rulesets'); } @@ -626,13 +636,64 @@ export default class RulesService { if (type !== 'application/pdf') { throw new HttpException(400, 'Ruleset File must be a PDF'); } + let parsedRules: ParsedRule[]; + try { + parsedRules = await parseRulesFromPdf(buffer, parserType); + if (parsedRules.length === 0) { + throw new HttpException(400, 'No rules found in provided file'); + } + } catch (error) { + throw new HttpException(500, 'Error parsing rules from PDF file'); + } - const parsedRules = await parseRulesFromPdf(buffer, parserType); + await prisma.$transaction(async (tx) => { + await tx.rule.createMany({ + data: parsedRules.map((rule) => ({ + ruleCode: rule.ruleCode, + ruleContent: rule.ruleContent, + imageFileIds: [], + rulesetId, + createdByUserId: user.userId + })) + }); - if (parsedRules.length === 0) { - throw new HttpException(400, 'No rules found in provided file'); - } + const createdRules = await tx.rule.findMany({ + where: { rulesetId }, + select: { + ruleId: true, + ruleCode: true + } + }); + + const ruleMap = new Map(); + createdRules.forEach((rule) => { + ruleMap.set(rule.ruleCode, rule.ruleId); + }); + + // update parent relationships + const parentUpdates = parsedRules + .filter((rule) => rule.parentRuleCode) + .map((rule) => { + const parentId = ruleMap.get(rule.parentRuleCode!); + const ruleId = ruleMap.get(rule.ruleCode); + + if (!parentId || !ruleId) return null; + + return tx.rule.update({ + where: { ruleId }, + data: { parentRuleId: parentId } + }); + }) + .filter(Boolean); + + await Promise.all(parentUpdates); + }); + + const savedRules = await prisma.rule.findMany({ + where: { rulesetId }, + ...getRulePreviewQueryArgs() + }); - return parsedRules.map(ruleTransformer); + return savedRules.map(ruleTransformer); } } diff --git a/src/backend/src/utils/parse.utils.ts b/src/backend/src/utils/parse.utils.ts index 30e5848135..dccdd13fcd 100644 --- a/src/backend/src/utils/parse.utils.ts +++ b/src/backend/src/utils/parse.utils.ts @@ -7,14 +7,18 @@ export interface ParsedRule { } export const parseRulesFromPdf = async (buffer: Buffer, parserType: 'FSAE' | 'FHE'): Promise => { - const options = { - // max page number to parse, 0 = all pages - max: 0, - // errors: 0, warnings: 1, infos: 5 - verbosityLevel: 0 as const - }; - const pdfData = await pdf(buffer, options); - return parserType === 'FSAE' ? parseFSAERules(pdfData.text) : parseFHERules(pdfData.text); + try { + const options = { + // max page number to parse, 0 = all pages + max: 0, + // errors: 0, warnings: 1, infos: 5 + verbosityLevel: 0 as const + }; + const pdfData = await pdf(buffer, options); + return parserType === 'FSAE' ? parseFSAERules(pdfData.text) : parseFHERules(pdfData.text); + } catch (error) { + throw error; + } }; /** @@ -90,7 +94,7 @@ const findParentRuleCode = (ruleCode: string): string | undefined => { }; /** - * Fixes rules with duplicate rule code by appending .duplicate suffix + * Updates rules with duplicate rule codes by appending .duplicate suffix * @param rules array of parsed rules * @returns array of rules without duplicate rule codes */ @@ -156,10 +160,10 @@ const parseFSAERules = (text: string): ParsedRule[] => { }; /** - * Extracts code and content of a rule from a line of text - * Catches rule pattern (e.g. GR.1.1 some text) and section pattern (e.g. GR - TEXT) - * @param line - * @returns + * Determines if this line starts a new rule, if so extracts code and content of the rule + * Matches rule pattern (e.g. GR.1.1 some text) or section pattern (e.g. GR - TEXT) + * @param line single line in the extracted text from the ruleset pdf + * @returns rule code and content, or null if this line does not start a new rule */ const parseRuleNumberFSAE = (line: string): ParsedRule | null => { // Match rule patterns like "GR.1.1" followed by text @@ -224,6 +228,12 @@ const parseFHERules = (text: string): ParsedRule[] => { return handleDuplicateCodes(rules); }; +/** + * Determines if this line starts a new rule, if so extracts code and content of the rule + * Matches three patterns: rule ("1T3.17.1 Text"), part ("PART A1 - Text"), and article ("ARTICLE A1 Text") + * @param line single line in the extracted text from the ruleset pdf + * @returns rule code and content, or null if this line does not start a new rule + */ const parseRuleNumberFHE = (line: string): ParsedRule | null => { // Match FHE rule patterns like "1T3.17.1" followed by text const rulePattern = /^(\d+[A-Z]+\d+(?:\.\d+)*)\s+(.+)$/; diff --git a/yarn.lock b/yarn.lock index 3052d16cf3..01ea98f120 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6922,6 +6922,7 @@ __metadata: multer: ^1.4.5-lts.1 nodemailer: ^6.9.1 nodemon: ^2.0.16 + pdf-parse-new: ^1.4.1 prisma: ^6.2.1 shared: 1.0.0 supertest: ^6.2.4 @@ -14938,6 +14939,13 @@ __metadata: languageName: node linkType: hard +"node-ensure@npm:^0.0.0": + version: 0.0.0 + resolution: "node-ensure@npm:0.0.0" + checksum: 1124623beb1dec66889794286ec1761ac3bfac42ce93b8652903efa5af14227edce5bafa06c4e0675cdc850360931d7c9413e3b5406150f05b2c9bf5bb3ccce4 + languageName: node + linkType: hard + "node-fetch-native@npm:^1.6.6": version: 1.6.7 resolution: "node-fetch-native@npm:1.6.7" @@ -15645,6 +15653,16 @@ __metadata: languageName: node linkType: hard +"pdf-parse-new@npm:^1.4.1": + version: 1.4.1 + resolution: "pdf-parse-new@npm:1.4.1" + dependencies: + debug: ^4.3.4 + node-ensure: ^0.0.0 + checksum: 77eb3b3896a84c8cf6a75edffc58d0a0f7cbe21dd745e3b6a3291885778f26ab855f03568083037baa7653369283a57cb2a4f49e2764ce34b5c440a59d8fb9a6 + languageName: node + linkType: hard + "pdfjs-dist@npm:4.8.69": version: 4.8.69 resolution: "pdfjs-dist@npm:4.8.69" From 0b07c8edaec961cd144e743b60bd009dca29d9fe Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Fri, 5 Dec 2025 20:14:06 -0500 Subject: [PATCH 13/25] #3622 remove parser script version --- scripts/document-parser/README.md | 5 - scripts/document-parser/RuleParser.ts | 330 - scripts/document-parser/index.ts | 41 - .../jsonOutput/FHE_images.json | 365 - .../document-parser/jsonOutput/FHE_toc.json | 5 - .../document-parser/jsonOutput/FSAE_toc.json | 600 - .../document-parser/jsonOutput/fhe_rules.json | 5035 ----- .../jsonOutput/fsae_rules.json | 16938 ---------------- scripts/document-parser/package-lock.json | 280 - scripts/document-parser/package.json | 16 - scripts/document-parser/parsers/FHEParser.ts | 102 - scripts/document-parser/parsers/FSAEParser.ts | 156 - scripts/document-parser/ruleDocs/FHE.pdf | Bin 4853960 -> 0 bytes scripts/document-parser/ruleDocs/FSAE.pdf | Bin 2079246 -> 0 bytes scripts/document-parser/tsconfig.json | 16 - scripts/document-parser/txtVersions/FHE.txt | 6429 ------ scripts/document-parser/txtVersions/FSAE.txt | 5628 ----- 17 files changed, 35946 deletions(-) delete mode 100644 scripts/document-parser/README.md delete mode 100644 scripts/document-parser/RuleParser.ts delete mode 100644 scripts/document-parser/index.ts delete mode 100644 scripts/document-parser/jsonOutput/FHE_images.json delete mode 100644 scripts/document-parser/jsonOutput/FHE_toc.json delete mode 100644 scripts/document-parser/jsonOutput/FSAE_toc.json delete mode 100644 scripts/document-parser/jsonOutput/fhe_rules.json delete mode 100644 scripts/document-parser/jsonOutput/fsae_rules.json delete mode 100644 scripts/document-parser/package-lock.json delete mode 100644 scripts/document-parser/package.json delete mode 100644 scripts/document-parser/parsers/FHEParser.ts delete mode 100644 scripts/document-parser/parsers/FSAEParser.ts delete mode 100644 scripts/document-parser/ruleDocs/FHE.pdf delete mode 100644 scripts/document-parser/ruleDocs/FSAE.pdf delete mode 100644 scripts/document-parser/tsconfig.json delete mode 100644 scripts/document-parser/txtVersions/FHE.txt delete mode 100644 scripts/document-parser/txtVersions/FSAE.txt diff --git a/scripts/document-parser/README.md b/scripts/document-parser/README.md deleted file mode 100644 index f4037e1e63..0000000000 --- a/scripts/document-parser/README.md +++ /dev/null @@ -1,5 +0,0 @@ -cd scripts/document-parser -npm install - -npm start FHE FHE.pdf -npm start FSAE FSAE.pdf \ No newline at end of file diff --git a/scripts/document-parser/RuleParser.ts b/scripts/document-parser/RuleParser.ts deleted file mode 100644 index 35e327e8b8..0000000000 --- a/scripts/document-parser/RuleParser.ts +++ /dev/null @@ -1,330 +0,0 @@ -import * as fs from 'fs'; -import pdf from 'pdf-parse-new'; -import { PrismaClient } from '@prisma/client'; - -const prisma = new PrismaClient(); - -export interface RuleData { - ruleCode: string; - ruleContent: string; - parentRuleCode?: string; - pageNumber: string; -} - -export interface Rule { - ruleCode: string; - ruleContent: string; -} - -interface ParsedOutput { - rules: RuleData[]; - totalRules: number; - generatedAt: string; -} - -// FHE only -interface imgData { - label: string; - description: string; - pageNumber: string; -} - -interface ParsedImgOutput { - imgInfo: imgData[]; - generatedAt: string; -} - -export enum ParserType { - FHE = 'FHE', - FSAE = 'FSAE' -} - -export abstract class RuleParser { - protected abstract extractRules(text: string): RuleData[]; - protected abstract extractToc(text: string): RuleData[]; - protected abstract hasImgInfo: boolean; - - async parsePdf(path: string): Promise<{ rules: RuleData[]; tocEntries: RuleData[]; imgInfo?: imgData[]; text: string }> { - let options = { - // max page number to parse, 0 = all pages - max: 0, - // errors: 0, warnings: 1, infos: 5 - verbosityLevel: 0 as const - }; - - const filePath = 'ruleDocs/' + path; - console.log(`Reading ${filePath}`); - - const dataBuffer = fs.readFileSync(filePath); - const pdfData = await pdf(dataBuffer, options); - - console.log(`PDF Stats: ${pdfData.numpages} pages, ${pdfData.text.length} characters`); - - const rules = this.extractRules(pdfData.text); - const tocEntries = this.extractToc(pdfData.text); - - if (this.hasImgInfo) { - const imgInfo = this.extractImageInfo(pdfData.text); - return { rules, tocEntries, imgInfo, text: pdfData.text }; - } - return { rules, tocEntries, text: pdfData.text }; - } - - /** - * Extracts the list of figures and tables from FHE document text - * Note: Only works for FHE due to specific formatting - * @param text full text of the FHE document - * @returns array of imgData objects containing label, description, and page number - */ - private extractImageInfo(text: string): imgData[] { - const imgInfo: imgData[] = []; - const lines = text.split('\n'); - - const imgPattern = /^(FIGURE|TABLE)\s+(\d+(?:[A-C])?)\s*[-–—:]?\s*(.+?)?\s*(\d+)\s*$/i; - let inIndexSection = false; - let inTablesSection = false; - - for (const line of lines) { - const trimmedLine = line.trim(); - - // start capturing in Index of Figures section - if (/^Index of Figures/i.test(trimmedLine)) { - inIndexSection = true; - continue; - } - - if (/^Index of Tables/i.test(trimmedLine)) { - inTablesSection = true; - continue; - } - - if (inIndexSection) { - const match = trimmedLine.match(imgPattern); - if (match) { - const label = `${match[1].charAt(0).toUpperCase() + match[1].slice(1).toLowerCase()} ${match[2]}`; - const description = match[3]?.trim() || ''; - const pageNumber = match[4]; - - // check for another figure/table inside description (specific case fix) - const secondPattern = /^(.+?)\s+(FIGURE|TABLE)\s+(\d+(?:[A-C])?)\s*[-–—:]?\s*(.+)$/i; - const secondMatch = description.match(secondPattern); - - imgInfo.push({ - label, - description: secondMatch ? secondMatch[1].trim() : description, - pageNumber - }); - if (secondMatch) { - imgInfo.push({ - label: `${secondMatch[2].charAt(0).toUpperCase() + secondMatch[2].slice(1).toLowerCase()} ${secondMatch[3]}`, - description: secondMatch[4].trim(), - pageNumber - }); - } - } - } - if (inTablesSection && /^2025 Formula Hybrid/i.test(trimmedLine)) { - inIndexSection = false; - break; - } - } - return imgInfo; - } - - /** - * Extracts bulleted child rules (a, b, c, etc.) from a rule's content - * and adds them as separate rules - * @param ruleCode The parent rule code (e.g., "EV.5.2.2") - * @param content The full rule content - * @param pageNumber The page number - * @returns Array of RuleData including the main rule and new subrules - */ - protected extractSubRules(ruleCode: string, content: string, pageNumber: string): RuleData[] { - const subRules: RuleData[] = []; - - // Pattern for lettered bullets like "a. Some text" or "b. Some text" - const letterPattern = /\s+([a-z])\.\s+/g; - const matches = [...content.matchAll(letterPattern)]; - - if (matches.length === 0) { - // No sub-rules found - return []; - } - - // Extract the main rule content (everything before the first lettered item) - const firstMatchIndex = matches[0].index!; - const mainContent = content.substring(0, firstMatchIndex).trim(); - - // Add the main rule - subRules.push({ - ruleCode: ruleCode, - ruleContent: mainContent, - parentRuleCode: this.findParentRuleCode(ruleCode), - pageNumber: pageNumber - }); - - // Extract the lettered sub-rules - for (let i = 0; i < matches.length; i++) { - const letter = matches[i][1]; - const startIndex = matches[i].index! + matches[i][0].length; - - // Find where this sub-rule ends (either at next letter or end of rule content) - const endIndex = i < matches.length - 1 ? matches[i + 1].index! : content.length; - - const subRuleContent = content.substring(startIndex, endIndex).trim(); - const subRuleCode = `${ruleCode}.${letter}`; - - subRules.push({ - ruleCode: subRuleCode, - ruleContent: subRuleContent, - parentRuleCode: ruleCode, - pageNumber: pageNumber - }); - } - return subRules; - } - - /** - * Looks for page indicators like "Page 5 of 143" - * @param line current rule line being observed - * @returns the page number if found, otherwise null - */ - protected extractPageNumber(line: string): string | null { - const pagePattern = /Page\s+(\d+)\s+of\s+\d+/i; - const match = line.match(pagePattern); - return match ? match[1] : null; - } - - /** - * Gets parent rule code by removing the last code segment - * E.g., "EV.5.2.2" -> "EV.5.2" - * @param ruleCode rule code to find parent for - * @returns string of parent rule code or undefined if none - */ - protected findParentRuleCode(ruleCode: string): string | undefined { - const parts = ruleCode.split('.'); - if (parts.length <= 1) { - return undefined; - } - return parts.slice(0, -1).join('.'); - } - - async saveToJSON( - rules: RuleData[], - outputPath: string, - tocEntries?: RuleData[], - tocPath?: string, - imgInfo?: imgData[], - imgInfoPath?: string - ): Promise { - const output: ParsedOutput = { - rules: rules, - totalRules: rules.length, - generatedAt: new Date().toISOString() - }; - - if (tocEntries && tocPath) { - const tocOutput: ParsedOutput = { - rules: tocEntries, - totalRules: tocEntries.length, - generatedAt: new Date().toISOString() - }; - fs.writeFileSync(tocPath, JSON.stringify(tocOutput, null, 2), 'utf-8'); - console.log(`Saved ${tocEntries.length} TOC entries to ${tocPath}`); - } - - if (imgInfo && imgInfoPath) { - const imgOutput: ParsedImgOutput = { - imgInfo: imgInfo, - generatedAt: new Date().toISOString() - }; - fs.writeFileSync(imgInfoPath, JSON.stringify(imgOutput, null, 2), 'utf-8'); - console.log(`Saved image info to ${imgInfoPath}`); - } - fs.writeFileSync(outputPath, JSON.stringify(output, null, 2), 'utf-8'); - console.log(`Saved ${rules.length} rules to ${outputPath}`); - } - - async saveToTxt(text: string, txtOutputFile: string): Promise { - // "./txtVersions/FHE.txt" or "./txtVersions/FSAE.txt" - fs.writeFileSync(txtOutputFile, text, 'utf-8'); - console.log(`Saved text version to ${txtOutputFile}`); - } - - /** - * Adds parsed rules into the database - * @param rules Array of parsed rules - * @param parserType Type of parser (FSAE or FHE) - * @param userId The user ID creating these rules - * @param carId The car ID this ruleset applies to - * @param pdfFileName The original filename - */ - async saveToDatabase( - rules: RuleData[], - parserType: ParserType, - userId: string, - carId: string, - organizationId: string, - pdfFileName: string - ): Promise { - try { - // create new ruleset type - const rulesetType = await prisma.ruleset_Type.create({ - data: { - name: parserType, - createdByUserId: userId, - organizationId: organizationId - } - }); - // create new ruleset - const revisionName = `Revision ${new Date().toISOString()}`; - const ruleset = await prisma.ruleset.create({ - data: { - fileId: pdfFileName, - name: revisionName, - active: true, - rulesetTypeId: rulesetType.rulesetTypeId, - carId: carId, - createdByUserId: userId - } - }); - console.log(`Created ruleset: ${revisionName} (${ruleset.rulesetId})`); - // insert all rules - const ruleMap = new Map(); // ruleCode : ruleId - for (const rule of rules) { - const createdRule = await prisma.rule.create({ - data: { - ruleCode: rule.ruleCode, - ruleContent: rule.ruleContent, - imageFileIds: [], - rulesetId: ruleset.rulesetId, - createdByUserId: userId - } - }); - ruleMap.set(rule.ruleCode, createdRule.ruleId); - } - // update parent relationships - for (const rule of rules) { - if (rule.parentRuleCode) { - const parentId = ruleMap.get(rule.parentRuleCode); - const ruleId = ruleMap.get(rule.ruleCode); - - if (parentId && ruleId) { - await prisma.rule.update({ - where: { ruleId: ruleId }, - data: { parentRuleId: parentId } - }); - } - } - } - console.log(`Successfully inserted ${rules.length} rules`); - } catch (error) { - console.error('Error inserting rules into database:', error); - throw error; - } - } - - static async disconnect(): Promise { - await prisma.$disconnect(); - } -} diff --git a/scripts/document-parser/index.ts b/scripts/document-parser/index.ts deleted file mode 100644 index 7965f7ea0c..0000000000 --- a/scripts/document-parser/index.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { FSAEParser } from './parsers/FSAEParser'; -import { FHEParser } from './parsers/FHEParser'; -import { ParserType, RuleParser } from './RuleParser'; - -// For manual testing of parsers -// Run 'npm start FHE FHE.pdf' or 'npm start FSAE FSAE.pdf' -async function main() { - const type = (process.argv[2]?.toUpperCase() as ParserType) || ParserType.FSAE; - const pdfFileName = process.argv[3]; - // these are values from prisma:studio so not a permanent fix - const userId = process.argv[4] || 'f9f1f920-82c2-45ff-98f3-b30f759330fc'; - const carId = process.argv[5] || 'a24e6261-0ca1-47a8-9f49-5e1db76713bd'; - const organizationId = process.argv[6] || 'ecf53ed9-d91d-42d2-8b7c-811a3cf10021'; - - if (!pdfFileName) { - console.error('Usage: npm start '); - process.exit(1); - } - - const parser = type === ParserType.FHE ? new FHEParser() : new FSAEParser(); - const outputPath = `./jsonOutput/${type}_rules.json`; - const txtPath = `./txtVersions/${type}.txt`; - const tocPath = `./jsonOutput/${type}_toc.json`; - const imgPath = type === ParserType.FHE ? `./jsonOutput/${type}_images.json` : undefined; - - try { - const result = await parser.parsePdf(pdfFileName); - await parser.saveToJSON(result.rules, outputPath, result.tocEntries, tocPath, result.imgInfo, imgPath); - await parser.saveToTxt(result.text, txtPath); - await parser.saveToDatabase(result.rules, type, userId, carId, organizationId, pdfFileName); - - console.log(`${type} parsing completed`); - } catch (error) { - console.error('Error:', error); - process.exit(1); - } finally { - await RuleParser.disconnect(); - } -} - -main(); diff --git a/scripts/document-parser/jsonOutput/FHE_images.json b/scripts/document-parser/jsonOutput/FHE_images.json deleted file mode 100644 index ca64272731..0000000000 --- a/scripts/document-parser/jsonOutput/FHE_images.json +++ /dev/null @@ -1,365 +0,0 @@ -{ - "imgInfo": [ - { - "label": "Figure 1", - "description": "FORMULA HYBRID + ELECTRIC SUPPORT PAGE", - "pageNumber": "16" - }, - { - "label": "Figure 2", - "description": "OPEN WHEEL DEFINITION", - "pageNumber": "19" - }, - { - "label": "Figure 3", - "description": "TRIANGULATION", - "pageNumber": "21" - }, - { - "label": "Figure 5", - "description": "PERCY -- 95TH PERCENTILE MALE WITH HELMET", - "pageNumber": "26" - }, - { - "label": "Figure 6", - "description": "95TH PERCENTILE TEMPLATE POSITIONING", - "pageNumber": "27" - }, - { - "label": "Figure 7", - "description": "MAIN AND FRONT HOOP BRACING", - "pageNumber": "29" - }, - { - "label": "Figure 8", - "description": "DOUBLE-LUG JOINT", - "pageNumber": "30" - }, - { - "label": "Figure 9", - "description": "DOUBLE LUG JOINT", - "pageNumber": "30" - }, - { - "label": "Figure 10", - "description": "SLEEVED BUTT JOINT", - "pageNumber": "30" - }, - { - "label": "Figure 11", - "description": "SIDE IMPACT STRUCTURE", - "pageNumber": "35" - }, - { - "label": "Figure 12", - "description": "SIDE IMPACT ZONE DEFINITION FOR A MONOCOQUE", - "pageNumber": "39" - }, - { - "label": "Figure 13", - "description": "ALTERNATE SINGLE BOLT ATTACHMENT", - "pageNumber": "40" - }, - { - "label": "Figure 14", - "description": "COCKPIT OPENING TEMPLATE", - "pageNumber": "41" - }, - { - "label": "Figure 15", - "description": "COCKPIT INTERNAL CROSS SECTION TEMPLATE", - "pageNumber": "42" - }, - { - "label": "Figure 16", - "description": "EXAMPLES OF FIREWALL CONFIGURATIONS", - "pageNumber": "45" - }, - { - "label": "Figure 17", - "description": "SEAT BELT THREADING EXAMPLES", - "pageNumber": "48" - }, - { - "label": "Figure 18", - "description": "LAP BELT ANGLES WITH UPRIGHT DRIVER", - "pageNumber": "49" - }, - { - "label": "Figure 19", - "description": "SHOULDER HARNESS MOUNTING – TOP VIEW", - "pageNumber": "50" - }, - { - "label": "Figure 20", - "description": "SHOULDER HARNESS MOUNTING – SIDE VIEW", - "pageNumber": "50" - }, - { - "label": "Figure 21", - "description": "OVER-TRAVEL SWITCHES", - "pageNumber": "57" - }, - { - "label": "Figure 22", - "description": "FINAL DRIVE SCATTER SHIELD EXAMPLE", - "pageNumber": "59" - }, - { - "label": "Figure 23", - "description": "EXAMPLES OF POSITIVE LOCKING NUTS", - "pageNumber": "62" - }, - { - "label": "Figure 24", - "description": "EXAMPLE CAR NUMBER", - "pageNumber": "64" - }, - { - "label": "Figure 25", - "description": "SURFACE ENVELOPE", - "pageNumber": "70" - }, - { - "label": "Figure 26", - "description": "HOSE CLAMPS", - "pageNumber": "73" - }, - { - "label": "Figure 27", - "description": "FILLER NECK", - "pageNumber": "75" - }, - { - "label": "Figure 28", - "description": "ACCUMULATOR STICKER", - "pageNumber": "80" - }, - { - "label": "Figure 29", - "description": "EXAMPLE NP3S CONFIGURATION", - "pageNumber": "83" - }, - { - "label": "Figure 30", - "description": "EXAMPLE 5S4P CONFIGURATION", - "pageNumber": "84" - }, - { - "label": "Figure 31", - "description": "EXAMPLE ACCUMULATOR SEGMENTING", - "pageNumber": "86" - }, - { - "label": "Figure 32", - "description": "VIRTUAL ACCUMULATOR EXAMPLE", - "pageNumber": "91" - }, - { - "label": "Figure 33", - "description": "FINGER PROBE", - "pageNumber": "92" - }, - { - "label": "Figure 34", - "description": "HIGH VOLTAGE LABEL", - "pageNumber": "92" - }, - { - "label": "Figure 35", - "description": "CONNECTION STACK-UP", - "pageNumber": "95" - }, - { - "label": "Figure 36", - "description": "CREEPAGE DISTANCE EXAMPLE", - "pageNumber": "101" - }, - { - "label": "Figure 37", - "description": "PRIORITY OF SHUTDOWN SOURCES", - "pageNumber": "104" - }, - { - "label": "Figure 38", - "description": "EXAMPLE MASTER SWITCH AND SHUTDOWN CIRCUIT CONFIGURATION", - "pageNumber": "106" - }, - { - "label": "Figure 39", - "description": "TYPICAL MASTER SWITCH", - "pageNumber": "107" - }, - { - "label": "Figure 40", - "description": "INTERNATIONAL KILL SWITCH SYMBOL", - "pageNumber": "108" - }, - { - "label": "Figure 41", - "description": "EXAMPLE SHUTDOWN STATE DIAGRAM", - "pageNumber": "110" - }, - { - "label": "Figure 42", - "description": "TYPICAL ESOK LAMP", - "pageNumber": "114" - }, - { - "label": "Figure 43", - "description": "INSULATION MONITORING DEVICE TEST", - "pageNumber": "116" - }, - { - "label": "Figure 44", - "description": "1", - "pageNumber": "18" - }, - { - "label": "Figure 45", - "description": "PLOT OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT", - "pageNumber": "159" - }, - { - "label": "Figure 46", - "description": "SCORING GUIDELINES: PROJECT PLAN COMPONENT", - "pageNumber": "164" - }, - { - "label": "Figure 47", - "description": "CHANGE MANAGEMENT REPORT SCORING GUIDELINES", - "pageNumber": "166" - }, - { - "label": "Figure 48", - "description": "EVALUATION CRITERIA", - "pageNumber": "168" - }, - { - "label": "Figure 49", - "description": "PROJECT MANAGEMENT SCORING SHEET", - "pageNumber": "169" - }, - { - "label": "Figure 50", - "description": "LATCHING FOR ACTIVE-HIGH OUTPUT", - "pageNumber": "173" - }, - { - "label": "Figure 51", - "description": "LATCHING FOR ACTIVE-LOW OUTPUT", - "pageNumber": "173" - }, - { - "label": "Table 1", - "description": "2024 ENERGY AND ACCUMULATOR LIMITS", - "pageNumber": "1" - }, - { - "label": "Table 2", - "description": "EVENT POINTS", - "pageNumber": "2" - }, - { - "label": "Table 3", - "description": "REQUIRED DOCUMENTS", - "pageNumber": "12" - }, - { - "label": "Table 4", - "description": "BASELINE STEEL", - "pageNumber": "22" - }, - { - "label": "Table 5", - "description": "STEEL TUBING MINIMUM WALL THICKNESSES", - "pageNumber": "23" - }, - { - "label": "Table 6", - "description": "95TH PERCENTILE MALE TEMPLATE DIMENSIONS", - "pageNumber": "25" - }, - { - "label": "Table 7", - "description": "SFI / FIA STANDARDS LOGOS", - "pageNumber": "66" - }, - { - "label": "Table 8", - "description": "VOLTAGE AND ENERGY LIMITS", - "pageNumber": "79" - }, - { - "label": "Table 9", - "description": "AMS VOLTAGE MONITORING", - "pageNumber": "89" - }, - { - "label": "Table 10", - "description": "AMS TEMPERATURE MONITORING", - "pageNumber": "89" - }, - { - "label": "Table 11", - "description": "RECOMMENDED TS CONNECTION FASTENERS", - "pageNumber": "96" - }, - { - "label": "Table 12", - "description": "MINIMUM SPACINGS", - "pageNumber": "100" - }, - { - "label": "Table 13", - "description": "INSULATING MATERIAL - MINIMUM TEMPERATURES AND THICKNESSES", - "pageNumber": "100" - }, - { - "label": "Table 14", - "description": "PCB TS/GLV SPACINGS", - "pageNumber": "102" - }, - { - "label": "Table 15", - "description": "STATIC EVENT MAXIMUM SCORES", - "pageNumber": "126" - }, - { - "label": "Table 16", - "description": "PROJECT MANAGEMENT SCORING", - "pageNumber": "129" - }, - { - "label": "Table 17", - "description": "DYNAMIC EVENT MAXIMUM SCORES", - "pageNumber": "137" - }, - { - "label": "Table 18", - "description": "FLAGS", - "pageNumber": "151" - }, - { - "label": "Table 19", - "description": "ACCUMULATOR DEVICE ENERGY CALCULATIONS", - "pageNumber": "157" - }, - { - "label": "Table 20", - "description": "FUEL ENERGY EQUIVALENCIES", - "pageNumber": "157" - }, - { - "label": "Table 21", - "description": "EXAMPLE OF LAPSUM(N) CALCULATION FOR A 44-LAP ENDURANCE EVENT", - "pageNumber": "158" - }, - { - "label": "Table 22", - "description": "WIRE CURRENT CAPACITY (SINGLE CONDUCTOR IN AIR)", - "pageNumber": "171" - } - ], - "generatedAt": "2025-11-19T03:42:03.983Z" -} \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/FHE_toc.json b/scripts/document-parser/jsonOutput/FHE_toc.json deleted file mode 100644 index 53a1e8af85..0000000000 --- a/scripts/document-parser/jsonOutput/FHE_toc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "rules": [], - "totalRules": 0, - "generatedAt": "2025-11-19T03:42:03.983Z" -} \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/FSAE_toc.json b/scripts/document-parser/jsonOutput/FSAE_toc.json deleted file mode 100644 index 46bd4901ba..0000000000 --- a/scripts/document-parser/jsonOutput/FSAE_toc.json +++ /dev/null @@ -1,600 +0,0 @@ -{ - "rules": [ - { - "ruleCode": "GR.1", - "ruleContent": "Formula SAE Competition Objective ... 5", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.2", - "ruleContent": "Organizer Authority... 6", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.3", - "ruleContent": "Team Responsibility ... 6", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.4", - "ruleContent": "Rules Authority and Issue... 7", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.5", - "ruleContent": "Rules of Conduct ... 7", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.6", - "ruleContent": "Rules Format and Use ... 8", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.7", - "ruleContent": "Rules Questions... 9", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.8", - "ruleContent": "Protests ... 9", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "GR.9", - "ruleContent": "Vehicle Eligibility ... 10", - "parentRuleCode": "GR", - "pageNumber": "2" - }, - { - "ruleCode": "AD.1", - "ruleContent": "The Formula SAE Series ... 11", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.2", - "ruleContent": "Official Information Sources ... 11", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.3", - "ruleContent": "Individual Participation Requirements... 11", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.4", - "ruleContent": "Individual Registration Requirements ... 12", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.5", - "ruleContent": "Team Advisors and Officers... 12", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.6", - "ruleContent": "Competition Registration ... 13", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "AD.7", - "ruleContent": "Competition Site ... 14", - "parentRuleCode": "AD", - "pageNumber": "2" - }, - { - "ruleCode": "DR.1", - "ruleContent": "Documentation ... 16", - "parentRuleCode": "DR", - "pageNumber": "2" - }, - { - "ruleCode": "DR.2", - "ruleContent": "Submission Details ... 16", - "parentRuleCode": "DR", - "pageNumber": "2" - }, - { - "ruleCode": "DR.3", - "ruleContent": "Submission Penalties... 17", - "parentRuleCode": "DR", - "pageNumber": "2" - }, - { - "ruleCode": "V.1", - "ruleContent": "Configuration ... 19", - "parentRuleCode": "V", - "pageNumber": "2" - }, - { - "ruleCode": "V.2", - "ruleContent": "Driver... 20", - "parentRuleCode": "V", - "pageNumber": "2" - }, - { - "ruleCode": "V.3", - "ruleContent": "Suspension and Steering ... 20", - "parentRuleCode": "V", - "pageNumber": "2" - }, - { - "ruleCode": "V.4", - "ruleContent": "Wheels and Tires ... 21", - "parentRuleCode": "V", - "pageNumber": "2" - }, - { - "ruleCode": "F.1", - "ruleContent": "Definitions ... 23", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.2", - "ruleContent": "Documentation ... 25", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.3", - "ruleContent": "Tubing and Material ... 25", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.4", - "ruleContent": "Composite and Other Materials ... 28", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.5", - "ruleContent": "Chassis Requirements ... 30", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.6", - "ruleContent": "Tube Frames ... 37", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.7", - "ruleContent": "Monocoque ... 39", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.8", - "ruleContent": "Front Chassis Protection ... 43", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.9", - "ruleContent": "Fuel System (IC Only) ... 48", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.10", - "ruleContent": "Accumulator Container (EV Only) ... 49", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "F.11", - "ruleContent": "Tractive System (EV Only) ... 52", - "parentRuleCode": "F", - "pageNumber": "2" - }, - { - "ruleCode": "T.1", - "ruleContent": "Cockpit... 54", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.2", - "ruleContent": "Driver Accommodation ... 58", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.3", - "ruleContent": "Brakes ... 63", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.4", - "ruleContent": "Electronic Throttle Components ... 64", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.5", - "ruleContent": "Powertrain... 66", - "parentRuleCode": "T", - "pageNumber": "2" - }, - { - "ruleCode": "T.6", - "ruleContent": "Pressurized Systems ... 68", - "parentRuleCode": "T", - "pageNumber": "3" - }, - { - "ruleCode": "T.7", - "ruleContent": "Bodywork and Aerodynamic Devices ... 69", - "parentRuleCode": "T", - "pageNumber": "3" - }, - { - "ruleCode": "T.8", - "ruleContent": "Fasteners ... 71", - "parentRuleCode": "T", - "pageNumber": "3" - }, - { - "ruleCode": "T.9", - "ruleContent": "Electrical Equipment ... 72", - "parentRuleCode": "T", - "pageNumber": "3" - }, - { - "ruleCode": "VE.1", - "ruleContent": "Vehicle Identification ... 75", - "parentRuleCode": "VE", - "pageNumber": "3" - }, - { - "ruleCode": "VE.2", - "ruleContent": "Vehicle Equipment ... 75", - "parentRuleCode": "VE", - "pageNumber": "3" - }, - { - "ruleCode": "VE.3", - "ruleContent": "Driver Equipment ... 77", - "parentRuleCode": "VE", - "pageNumber": "3" - }, - { - "ruleCode": "IC.1", - "ruleContent": "General Requirements ... 79", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.2", - "ruleContent": "Air Intake System ... 79", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.3", - "ruleContent": "Throttle ... 80", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.4", - "ruleContent": "Electronic Throttle Control... 81", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.5", - "ruleContent": "Fuel and Fuel System ... 84", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.6", - "ruleContent": "Fuel Injection ... 86", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.7", - "ruleContent": "Exhaust and Noise Control ... 87", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.8", - "ruleContent": "Electrical ... 88", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "IC.9", - "ruleContent": "Shutdown System... 88", - "parentRuleCode": "IC", - "pageNumber": "3" - }, - { - "ruleCode": "EV.1", - "ruleContent": "Definitions ... 90", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.2", - "ruleContent": "Documentation ... 90", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.3", - "ruleContent": "Electrical Limitations ... 90", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.4", - "ruleContent": "Components ... 91", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.5", - "ruleContent": "Energy Storage ... 94", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.6", - "ruleContent": "Electrical System ... 98", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.7", - "ruleContent": "Shutdown System... 102", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.8", - "ruleContent": "Charger Requirements ... 107", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.9", - "ruleContent": "Vehicle Operations ... 108", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.10", - "ruleContent": "Event Site Activities ... 109", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "EV.11", - "ruleContent": "Work Practices ... 109", - "parentRuleCode": "EV", - "pageNumber": "3" - }, - { - "ruleCode": "IN.1", - "ruleContent": "Inspection Requirements ... 112", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.2", - "ruleContent": "Inspection Conduct ... 112", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.3", - "ruleContent": "Initial Inspection ... 113", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.4", - "ruleContent": "Electrical Technical Inspection (EV Only) ... 113", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.5", - "ruleContent": "Driver Cockpit Checks... 114", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.6", - "ruleContent": "Driver Template Inspections ... 115", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.7", - "ruleContent": "Cockpit Template Inspections ... 115", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.8", - "ruleContent": "Mechanical Technical Inspection ... 115", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.9", - "ruleContent": "Tilt Test ... 116", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.10", - "ruleContent": "Noise and Switch Test (IC Only) ... 117", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.11", - "ruleContent": "Rain Test (EV Only) ... 118", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.12", - "ruleContent": "Brake Test... 118", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.13", - "ruleContent": "Inspection Approval ... 119", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.14", - "ruleContent": "Modifications and Repairs ... 119", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "IN.15", - "ruleContent": "Reinspection ... 120", - "parentRuleCode": "IN", - "pageNumber": "3" - }, - { - "ruleCode": "S.1", - "ruleContent": "General Static ... 121", - "parentRuleCode": "S", - "pageNumber": "4" - }, - { - "ruleCode": "S.2", - "ruleContent": "Presentation Event ... 121", - "parentRuleCode": "S", - "pageNumber": "4" - }, - { - "ruleCode": "S.3", - "ruleContent": "Cost and Manufacturing Event... 122", - "parentRuleCode": "S", - "pageNumber": "4" - }, - { - "ruleCode": "S.4", - "ruleContent": "Design Event... 126", - "parentRuleCode": "S", - "pageNumber": "4" - }, - { - "ruleCode": "D.1", - "ruleContent": "General Dynamic ... 128", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.2", - "ruleContent": "Pit and Paddock... 128", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.3", - "ruleContent": "Driving ... 129", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.4", - "ruleContent": "Flags ... 130", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.5", - "ruleContent": "Weather Conditions ... 130", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.6", - "ruleContent": "Tires and Tire Changes ... 131", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.7", - "ruleContent": "Driver Limitations ... 132", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.8", - "ruleContent": "Definitions ... 132", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.9", - "ruleContent": "Acceleration Event ... 132", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.10", - "ruleContent": "Skidpad Event ... 133", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.11", - "ruleContent": "Autocross Event ... 135", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.12", - "ruleContent": "Endurance Event ... 137", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.13", - "ruleContent": "Efficiency Event ... 141", - "parentRuleCode": "D", - "pageNumber": "4" - }, - { - "ruleCode": "D.14", - "ruleContent": "Post Endurance ... 143", - "parentRuleCode": "D", - "pageNumber": "4" - } - ], - "totalRules": 99, - "generatedAt": "2025-11-19T03:47:50.094Z" -} \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/fhe_rules.json b/scripts/document-parser/jsonOutput/fhe_rules.json deleted file mode 100644 index 2534a73d8e..0000000000 --- a/scripts/document-parser/jsonOutput/fhe_rules.json +++ /dev/null @@ -1,5035 +0,0 @@ -{ - "rules": [ - { - "ruleCode": "PART A1", - "ruleContent": "ADMINISTRATIVE REGULATIONS", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A1", - "ruleContent": "FORMULA HYBRID + ELECTRIC OVERVIEW AND COMPETITION", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.1", - "ruleContent": "Formula Hybrid + Electric Competition Objective", - "parentRuleCode": "1A1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.1.1", - "ruleContent": "The Formula Hybrid + Electric competition challenges teams of university undergraduate and graduate students to conceive, design, fabricate, develop and compete with small, formula- style, hybrid-powered and electric cars.", - "parentRuleCode": "1A1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.1.2", - "ruleContent": "The Formula Hybrid + Electric competition is intended as an educational program requiring students to work across disciplinary boundaries, such as those of electrical and mechanical engineering.", - "parentRuleCode": "1A1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.1.3", - "ruleContent": "To give teams the maximum design flexibility and the freedom to express their creativity and imagination there are very few restrictions on the overall vehicle design apart from the requirement for a mechanical/electrical hybrid or electric-only drivetrain.", - "parentRuleCode": "1A1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.1.4", - "ruleContent": "Teams typically spend eight to twelve months designing, building, testing and preparing their vehicles before a competition. The competitions themselves give teams the chance to demonstrate and prove both their creativity and their engineering skills in comparison to teams from other universities around the world.", - "parentRuleCode": "1A1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.2", - "ruleContent": "Energy Limits", - "parentRuleCode": "1A1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.2.1", - "ruleContent": "Competitiveness and high efficiency designs are encouraged through limits on accumulator capacities and the amount of energy that a team has available to complete the endurance event.", - "parentRuleCode": "1A1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.2.2", - "ruleContent": "The accumulator capacities and endurance energy allocation will be reviewed by the Formula Hybrid + Electric rules committee each year, and posted as early in the season as possible. Hybrid (and Hybrid In Progress) Endurance Energy Allocation 31.25 MJ Maximum Accumulator Capacity 4,449 Wh Electric Maximum Accumulator Capacity 5,400 Wh Table 1 – 2024 Energy and Accumulator Limits", - "parentRuleCode": "1A1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.2.3", - "ruleContent": "Vehicles may run with accumulator capacities greater than the Table 1 value if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted. See also D7.5.1- Energy for Endurance Event.", - "parentRuleCode": "1A1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.2.4", - "ruleContent": "Accumulator capacities are calculated as: Energy (Wh) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 80% Segment Energy (Table 8) is calculated as Energy (MJ) = Number of Cells x Vnom x Cell Capacity (Inom in AH) x 0.0036. See Appendix A for energy calculations for capacitors.", - "parentRuleCode": "1A1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.3", - "ruleContent": "Vehicle Design Objectives For the purpose of this competition, the students are to assume that a manufacturing firm has engaged them to design, fabricate and demonstrate a prototype hybrid-electric or all electric vehicle for evaluation as a production item. The intended market is the nonprofessional weekend autocross competitor. Therefore, the car must balance exceptional performance with fuel efficiency. Performance will be evaluated in terms of its acceleration, braking, and handling qualities. Fuel efficiency will be evaluated during the 44 km endurance event. The car must be easy to maintain and reliable. It should accommodate drivers whose stature varies from a 5th percentile female to a 95th percentile male. In addition, the car’s marketability is enhanced by other factors such as aesthetics, comfort and use of common parts. The manufacturing firm is planning to produce four (4) cars per day for a limited production run. The challenge to the design team is to develop a prototype car that best meets these goals and intents. Each design will be compared and judged with other competing designs to determine the best overall car.", - "parentRuleCode": "1A1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.4", - "ruleContent": "Good Engineering Practices", - "parentRuleCode": "1A1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.4.1", - "ruleContent": "Vehicles entered into Formula Hybrid + Electric competitions are expected to be designed and fabricated in accordance with good engineering practices. Note in particular, that the high-voltage electrical systems in a Formula Hybrid + Electric car present health and safety risks unique to a hybrid/electric vehicle, and that carelessness or poor engineering can result in serious injury or death.", - "parentRuleCode": "1A1.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.4.2", - "ruleContent": "The organizers have produced several advisory publications that are available on the Formula Hybrid + Electric website. It is expected that all team members will familiarize themselves with these publications, and will apply the information in them appropriately.", - "parentRuleCode": "1A1.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.5", - "ruleContent": "Judging Categories The cars are judged in a series of static and dynamic events including: technical inspections, project management skills, engineering design, solo performance trials, and high-performance track endurance. These events are scored to determine how well the car performs. Static Events Project Management 150 Engineering Design 200 Virtual Racing Challenge 1 0 Dynamic Events Acceleration 100 Autocross 200 Endurance 350 Total Points 1000 Table 2 - Event Points 1 Virtual Racing Challenge will be awarded trophies without points going towards the Event Points", - "parentRuleCode": "1A1", - "pageNumber": "0" - }, - { - "ruleCode": "1A1.5.1", - "ruleContent": "A team’s final score will equal the sum of their event scores plus or minus penalty and/or bonus points. Note: If a team’s penalty points exceed the sum of their event scores, their final score will be Zero (0). i.e. negative final scores will not be given.", - "parentRuleCode": "1A1.5", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A2", - "ruleContent": "FORMULA HYBRID + ELECTRIC VEHICLE CATEGORIES", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.1", - "ruleContent": "Hybrid", - "parentRuleCode": "1A2", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.1.1", - "ruleContent": "A Hybrid vehicle is defined as a vehicle using a propulsion system which comprises both a 4- stroke Internal Combustion Engine (ICE) and electrical storage (accumulator) with electric motor drive.", - "parentRuleCode": "1A2.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.1.2", - "ruleContent": "A hybrid drive system may deploy the ICE and electric motor(s) in any configuration, including series and/or parallel. Coupling through the road surface is permitted.", - "parentRuleCode": "1A2.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.1.3", - "ruleContent": "To qualify as a hybrid, vehicles must have a drive system utilizing one or more electric motors with a minimum continuous power rating of 2.5 kW (sum total of all motors) and one or more I.C engines with a minimum (sum total) power rating of 2.5 kW.", - "parentRuleCode": "1A2.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.2", - "ruleContent": "Electric An Electric vehicle is defined as a vehicle wherein the accumulator is charged from an external electrical source (and/or through regenerative braking) and propelled by electric drive only. There is no minimum power requirement for electric-only drive motors.", - "parentRuleCode": "1A2", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.3", - "ruleContent": "Hybrid in Progress (HIP) A Hybrid-in-Progress is a not-yet-completed hybrid vehicle, which includes both an internal combustion engine and electric motor. Note: The purpose of the HIP category is to give teams that are on a 2-year development/build cycle an opportunity to enter and compete their vehicle alongside the regular entries. The HIP is regarded, for all scoring purposes, as a hybrid, but will run the dynamic events on electric power only.", - "parentRuleCode": "1A2", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.3.1", - "ruleContent": "To qualify as an HIP, a vehicle must have been designed, and intended for completion as a hybrid vehicle.", - "parentRuleCode": "1A2.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.3.2", - "ruleContent": "Teams planning to enter a vehicle in the HIP category will initially register as a Hybrid. To change to the HIP category, the team must submit a request to the organizers in writing before the start of the design event. Note: The advantages of entering as an HIP are: (a) Receive a full technical inspection of the vehicle and electrical drive systems. (b) Participate in all the competition events. (Provided tech inspection is passed). (c) Receive feedback from the design judges. Note: Teams can maximize the benefits of an HIP entry by including the full-hybrid designs in their document submissions and design event presentations, as well as including the full multi- year program in their Project Management materials. (d) When the vehicle is completed and entered as a hybrid, in a subsequent competition, it is considered an all-new vehicle, and not a second-year entry.", - "parentRuleCode": "1A2.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.4", - "ruleContent": "Static Events Only (SEO)", - "parentRuleCode": "1A2", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.4.1", - "ruleContent": "SEO is a category that may only be declared after arrival at the competition. All teams must initially register as either Hybrid/HIP or Electric.", - "parentRuleCode": "1A2.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.4.2", - "ruleContent": "A team may declare themselves as SEO and participate in the design 2 and other static events even if the vehicle is in an unfinished state. (a) An SEO vehicle may not participate in any of the dynamic events. (b) An SEO vehicle may continue the technical inspection process, but will be given a lower priority than the non-SEO teams.", - "parentRuleCode": "1A2.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.4.3", - "ruleContent": "An SEO declaration must be submitted in writing to the organizers before the scheduled start of the design events.", - "parentRuleCode": "1A2.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.4.4", - "ruleContent": "A vehicle that declares SEO in one year, will not be penalized by the design judges as a multi- year vehicle the following year per A7.5.", - "parentRuleCode": "1A2.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.5", - "ruleContent": "Electric vs. Hybrid Vehicles", - "parentRuleCode": "1A2", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.5.1", - "ruleContent": "The Electric and Hybrid categories are separate. Although they compete in the same events, and may be on the endurance course at the same time, they are scored separately and receive separate awards.", - "parentRuleCode": "1A2.5", - "pageNumber": "0" - }, - { - "ruleCode": "1A2.5.2", - "ruleContent": "The event scoring formulas will maintain separate baselines (T max , T min ) for Hybrid and Electric categories. Note: Electric vehicles, because they are not carrying the extra weight of engines and generating systems, may demonstrate higher performances in some of the dynamic events. Design scores should not be compared, as the engineering challenge between the two classes is different and scored accordingly.", - "parentRuleCode": "1A2.5", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A3", - "ruleContent": "THE FORMULA HYBRID + ELECTRIC COMPETITION", - "pageNumber": "0" - }, - { - "ruleCode": "1A3.1", - "ruleContent": "Open Registration The Formula Hybrid + Electric Competition has an open registration policy and will accept registrations by student teams representing universities in any country.", - "parentRuleCode": "1A3", - "pageNumber": "0" - }, - { - "ruleCode": "1A3.2", - "ruleContent": "Official Announcements and Competition Information", - "parentRuleCode": "1A3", - "pageNumber": "0" - }, - { - "ruleCode": "1A3.2.1", - "ruleContent": "Teams should read any newsletters published by SAE or Formula Hybrid + Electric and to be familiar with all official announcements concerning the competition and rules interpretations released by the Formula Hybrid + Electric Rules Committee.", - "parentRuleCode": "1A3.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A3.2.2", - "ruleContent": "Formula Hybrid + Electric posts announcements to the “Announcements” page of the Formula Hybrid + Electric website at https://www.formula-hybrid.org/announcements", - "parentRuleCode": "1A3.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A3.3", - "ruleContent": "Official Language The official language of the Formula Hybrid + Electric competition is English. 2 Provided the team has met the document submission requirements of A9.3(c)", - "parentRuleCode": "1A3", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A4", - "ruleContent": "FORMULA HYBRID + ELECTRIC RULES AND ORGANIZER AUTHORITY", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.1", - "ruleContent": "Rules Authority", - "parentRuleCode": "1A4", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.1.1", - "ruleContent": "The Formula Hybrid + Electric Rules are the responsibility of the Formula Hybrid + Electric Rules Committee and are issued under the authority of the SAE Collegiate Design Series Committee. Official announcements from the Formula Hybrid + Electric Rules Committee are to be considered part of, and have the same validity as, these rules.", - "parentRuleCode": "1A4.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.1.2", - "ruleContent": "Ambiguities or questions concerning the meaning or intent of these rules will be resolved by the Formula Hybrid + Electric Rules Committee, SAE or by the individual competition organizers as appropriate. (See ARTICLE A12)", - "parentRuleCode": "1A4.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.2", - "ruleContent": "Rules Validity The Formula Hybrid + Electric Rules posted on the Formula Hybrid + Electric website and dated for the calendar year of the competition are the rules in effect for the competition. Rule sets dated for other years are invalid.", - "parentRuleCode": "1A4", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.3", - "ruleContent": "Rules Compliance", - "parentRuleCode": "1A4", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.3.1", - "ruleContent": "By entering a Formula Hybrid + Electric competition the team, members of the team as individuals, faculty advisors and other personnel of the entering university agree to comply with, and be bound by, these rules and all rule interpretations or procedures issued or announced by SAE, the Formula Hybrid + Electric Rules Committee or the organizers.", - "parentRuleCode": "1A4.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.3.2", - "ruleContent": "Any rules or regulations pertaining to the use of the competition site by teams or individuals and which are posted, announced and/or otherwise publicly available are incorporated into these rules by reference. As examples, all event site waiver requirements, speed limits, parking and facility use rules apply to Formula Hybrid + Electric participants.", - "parentRuleCode": "1A4.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.3.3", - "ruleContent": "All team members, faculty advisors and other university representatives are required to cooperate with, and follow all instructions from, competition organizers, officials and judges.", - "parentRuleCode": "1A4.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.4", - "ruleContent": "Understanding the Rules Teams, team members as individuals and faculty advisors, are responsible for reading and understanding the rules in effect for the competition in which they are participating.", - "parentRuleCode": "1A4", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.5", - "ruleContent": "Participating in the Competition Teams, team members as individuals, faculty advisors and other representatives of a registered university who are present on-site at a competition are considered to be “participating in the competition” from the time they arrive at the event site until they depart the site at the conclusion of the competition or earlier by withdrawing.", - "parentRuleCode": "1A4", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.6", - "ruleContent": "Violations of Intent", - "parentRuleCode": "1A4", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.6.1", - "ruleContent": "The violation of intent of a rule will be considered a violation of the rule itself.", - "parentRuleCode": "1A4.6", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.6.2", - "ruleContent": "Questions about the intent or meaning of a rule may be addressed to the Formula Hybrid + Electric Rules Committee or by the individual competition organizers as appropriate.", - "parentRuleCode": "1A4.6", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.7", - "ruleContent": "Right to Impound SAE and other competition organizing bodies reserve the right to impound any onsite registered vehicles at any time during a competition for inspection and examination by the organizers, officials and technical inspectors. The organizers may also impound any equipment deemed hazardous by the technical inspectors.", - "parentRuleCode": "1A4", - "pageNumber": "0" - }, - { - "ruleCode": "1A4.8", - "ruleContent": "Restriction on Vehicle Use Teams are cautioned that the vehicles designed in compliance with these Formula Hybrid + Electric Rules are intended for competition operation only at the official Formula Hybrid + Electric competitions.", - "parentRuleCode": "1A4", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A5", - "ruleContent": "RULES FORMAT AND USE", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.1.1", - "ruleContent": "Definition of Terms Must - designates a requirement Must NOT - designates a prohibition or restriction Should - gives an expectation May - gives permission, not a requirement and not a recommendation", - "parentRuleCode": "1A5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.1.2", - "ruleContent": "Capitalized Terms Items or areas which have specific definitions or are covered by specific rules are capitalized. For example, “Rules Questions” or “Primary Structure”.", - "parentRuleCode": "1A5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.1.3", - "ruleContent": "Headings The article, section and paragraph headings in these rules are provided only to facilitate reading: they do not affect the paragraph contents.", - "parentRuleCode": "1A5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.1.4", - "ruleContent": "Applicability Unless otherwise designated, all rules apply to all vehicles at all times.", - "parentRuleCode": "1A5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.1.5", - "ruleContent": "Figures and Illustrations Figures and illustrations give clarification or guidance, but are rules only when referred to in the text of a rule.", - "parentRuleCode": "1A5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.1.6", - "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes.", - "parentRuleCode": "1A5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.2", - "ruleContent": "General Authority SAE and the competition organizing bodies reserve the right to revise the schedule of any competition and/or interpret or modify the competition rules at any time and in any manner that is, in their sole judgment, required for the efficient operation of the event or the Formula Hybrid + Electric series as a whole.", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.3", - "ruleContent": "SAE Technical Standards Access", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.3.1", - "ruleContent": "A cooperative program of SAE International University Programs and Technical Standards Board is making some of SAE’s Technical Standards available to teams registered for any SAE International hosted competition at no cost. A list of accessible standards can be found online www.fsaeonline.com and accessed under the team’s registration online www.sae.org.", - "parentRuleCode": "1A5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.4", - "ruleContent": "Eligibility Limits Eligibility is limited to undergraduate and graduate students to ensure that this is an engineering design competition.", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.5", - "ruleContent": "Student Status", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.5.1", - "ruleContent": "Team members must be enrolled as degree seeking undergraduate or graduate students in the college or university of the team with which they are participating. Team members who have graduated during the twelve (12) month period prior to the competition remain eligible to participate.", - "parentRuleCode": "1A5.5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.5.2", - "ruleContent": "Teams which are formed with members from two or more Universities are treated as a single team. A student at any University making up the team may compete at any event where the team participates. The multiple Universities are in effect treated as one University with two campuses and all eligibility requirements are enforced.", - "parentRuleCode": "1A5.5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.6", - "ruleContent": "Society Membership", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.6.1", - "ruleContent": "Team members must be members of at least one of the following societies: (a) SAE (b) IEEE (c) SAE Australasia (d) SAE Brazil (e) ATA (f) IMechE (g) VDI", - "parentRuleCode": "1A5.6", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.6.2", - "ruleContent": "Proof of membership, such as membership card, is required at the competition. Students who are members of one of the societies listed above are not required to join any of the other societies in order to participate in the Formula Hybrid + Electric competition.", - "parentRuleCode": "1A5.6", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.6.3", - "ruleContent": "Students can join SAE at: http://www.sae.org/students IEEE at https://www.ieee.org/membership/join/index.html Note: SAE membership is required to complete the on-line vehicle registration process, so at least one team member must be a member of SAE.", - "parentRuleCode": "1A5.6", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.7", - "ruleContent": "Age Team members must be at least eighteen (18) years of age.", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.8", - "ruleContent": "Driver’s License Team members who will drive a competition vehicle at any time during a competition must hold a valid, government issued driver’s license. All drivers will be required to submit copies of their driver’s licenses prior to the competition. Additional instructions will be sent to teams 6 weeks before the competition.", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.9", - "ruleContent": "Driver Restrictions Drivers who have driven for a professional racing team in a national or international series at any time may not drive in any competition event. A “professional racing team” is defined as a team that provides racing cars and enables drivers to compete in national or international racing series and employs full time staff in order to achieve this.", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.10", - "ruleContent": "Liability Waiver All on-site participants, including students, faculty, volunteers and guests, are required to sign a liability waiver upon registering on-site.", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "1A5.11", - "ruleContent": "Medical Insurance Individual medical insurance coverage is required and is the sole responsibility of the participant.", - "parentRuleCode": "1A5", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A6", - "ruleContent": "INDIVIDUAL REGISTRATION REQUIREMENTS", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.1", - "ruleContent": "SAE Student Members", - "parentRuleCode": "1A6", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.1.1", - "ruleContent": "If your qualifying professional society membership is with the SAE, you should link yourself to your respective school, and complete the following information on the SAE website: (a) Medical insurance (provider, policy/ID number, telephone number) (b) Driver’s license (state/country, ID number) (c) Emergency contact data (point of contact (parent/guardian, spouse), relationship, and phone number)", - "parentRuleCode": "1A6.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.1.2", - "ruleContent": "To do this you will need to go to “Registration” page under the specific event the team is registered and then click on the “Register Your Team / Update Team Information” link. At this point, if you are properly affiliated to the school/college/university, a link will appear with your team name to select. Once you have selected the link, the registration page will appear. Selecting the “Add New Member” button will allow individuals to include themselves with the rest of the team. This can also be completed by team captain and faculty advisor for all team members.", - "parentRuleCode": "1A6.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.1.3", - "ruleContent": "All students, both domestic and international, must affiliate themselves online or submit the International Student Registration form by March 1, 2025. For additional assistance, please contact collegiatecompetitions@sae.org", - "parentRuleCode": "1A6.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.2", - "ruleContent": "Onsite Registration Requirement", - "parentRuleCode": "1A6", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.2.1", - "ruleContent": "Onsite registration is required of all team members and faculty advisors", - "parentRuleCode": "1A6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.2.2", - "ruleContent": "Registration must be completed and the credentials and/or other identification issued by the organizers properly worn before the car can be unloaded, uncrated or worked upon in any manner.", - "parentRuleCode": "1A6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.2.3", - "ruleContent": "The following is required at registration: (a) Government issued driver’s license or passport and (b) Medical insurance card or documentation (c) Proof of professional society membership (such as card or member number)", - "parentRuleCode": "1A6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.2.4", - "ruleContent": "All international student participants (or unaffiliated faculty advisors) who are not SAE members are required to complete the International Student Registration form for the entire team found under “Competition Resources” on the event specific webpage. Upon completion, email the form to collegiatecompetitions@sae.org", - "parentRuleCode": "1A6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.2.5", - "ruleContent": "All students, both domestic and international, must affiliate themselves online or submit the International Student Registration form prior to the date shown in the Action Deadlines on the Formula Hybrid + Electric website. For additional assistance, please contact collegiatecompetitions@sae.org NOTE: When your team is registering for a competition, only the student or faculty advisor completing the registration needs to be linked to the school. All other students and faculty can affiliate themselves after registration has been completed.", - "parentRuleCode": "1A6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.3", - "ruleContent": "Team Advisor", - "parentRuleCode": "1A6", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.3.1", - "ruleContent": "Each team must have a Professional Advisor appointed by the university. The Advisor, or an official university representative, must accompany the team to the competition and will be considered by competition officials to be the official university representative. If the appointed advisor cannot attend the competition, the team must have an alternate college or university approved adult attend.", - "parentRuleCode": "1A6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.3.2", - "ruleContent": "Advisors are expected to review their team’s Structural Equivalency, Impact Attenuator data and both ESFs prior to submission. Advisors are not required to certify the accuracy of these documents, but should perform a “sanity check” and look for omissions.", - "parentRuleCode": "1A6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.3.3", - "ruleContent": "Advisors may advise their teams on general engineering and engineering project management theory, but must not design any part of the vehicle nor directly participate in the development of any documentation or presentation. Additionally, Advisors may neither fabricate nor assemble any components nor assist in the preparation, maintenance, testing or operation of the vehicle. In Brief –Advisors must not design, build or repair any part of the car.", - "parentRuleCode": "1A6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.4", - "ruleContent": "Rules and Safety Officer (RSO)", - "parentRuleCode": "1A6", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.4.1", - "ruleContent": "Each team must appoint a person to be the “Rules and Safety Officer (RSO)”.", - "parentRuleCode": "1A6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.4.2", - "ruleContent": "The RSO must: (a) Be present at the entire Formula Hybrid + Electric event. (b) Be responsible for understanding the Formula Hybrid + Electric rules prior to the competition and ensuring that competing vehicles comply with all those rules requirements. (c) System Documentation – Have vehicle designs, plans, schematics and supporting documents available for review by the officials as needed. (d) Component Documentation – Have manufacturer’s documentation and information available on all components of the electrical system. (e) Be responsible for team safety while at the event. This includes issues such as: (i) Use of safety glasses and other safety equipment (ii) Control of shock hazards such as charging equipment and accessible high voltage sources", - "parentRuleCode": "1A6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.4.3", - "ruleContent": "If the RSO is also a driver in a dynamic event, a backup RSO must be appointed who will take responsibility for sections A6.4.2(e) and A6.4.2(f) (above) while the primary RSO is in the vehicle.", - "parentRuleCode": "1A6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.4.4", - "ruleContent": "Preferably, the RSO should be the team's faculty advisor or a member of the university's professional staff, but the position may be held by a student member of the team.", - "parentRuleCode": "1A6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1A6.4.5", - "ruleContent": "Contact information for the primary and backup RSOs (Name, Cell Phone number, etc.) must be provided to the organizers during registration.", - "parentRuleCode": "1A6.4", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A7", - "ruleContent": "VEHICLE ELIGIBILITY", - "pageNumber": "0" - }, - { - "ruleCode": "1A7.1", - "ruleContent": "Student Developed Vehicle Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained by the student team members without direct involvement from professional engineers, automotive engineers, racers, machinists or related professionals.", - "parentRuleCode": "1A7", - "pageNumber": "0" - }, - { - "ruleCode": "1A7.2", - "ruleContent": "Information Sources The student team may use any literature or knowledge related to car design and information from professionals or from academics as long as the information is given as a discussion of alternatives with their pros and cons.", - "parentRuleCode": "1A7", - "pageNumber": "0" - }, - { - "ruleCode": "1A7.3", - "ruleContent": "Professional Assistance Professionals may not make design decisions or drawings and the Faculty Advisor may be required to sign a statement of compliance with this restriction.", - "parentRuleCode": "1A7", - "pageNumber": "0" - }, - { - "ruleCode": "1A7.4", - "ruleContent": "Student Fabrication It is the intent of the SAE Collegiate Design Series competitions to provide direct hands-on experience to the students. Therefore, students should perform all fabrication tasks whenever possible.", - "parentRuleCode": "1A7", - "pageNumber": "0" - }, - { - "ruleCode": "1A7.5", - "ruleContent": "Vehicles Entered for Multiple Years Formula Hybrid + Electric does not require that teams design and build a new vehicle from scratch each year.", - "parentRuleCode": "1A7", - "pageNumber": "0" - }, - { - "ruleCode": "1A7.5.1", - "ruleContent": "Teams may enter the same vehicle used in previous competitions, provided it complies with all the Formula Hybrid + Electric rules in effect at the competition in which it is entered.", - "parentRuleCode": "1A7.5", - "pageNumber": "0" - }, - { - "ruleCode": "1A7.5.2", - "ruleContent": "Rules waivers issued to vehicles are valid for only one year. It is assumed that teams will address the issues requiring a waiver before entering the vehicle in a subsequent year. NOTE 1: Design judges will look more favorably on vehicles that have clearly documented upgrades and improvements since last entered in a Formula Hybrid + Electric competition. NOTE 2: Because the Formula Hybrid + Electric competition emphasizes high-efficiency drive systems, engineered improvements to the drive train and control systems will be weighted more heavily by the design judges than updates to the chassis, suspension etc.", - "parentRuleCode": "1A7.5", - "pageNumber": "0" - }, - { - "ruleCode": "1A7.6", - "ruleContent": "Entries per University Universities may enter up to two vehicles per competition. Note that there will be a registration wait period imposed for a second vehicle.", - "parentRuleCode": "1A7", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A8", - "ruleContent": "REGISTRATION Registration for the Formula Hybrid + Electric competition must be completed on-line. Online registration must be done by either (a) an SAE member or (b) the official faculty advisor connected with the registering university and recorded as such in the SAE record system. Note: It typically takes at least 1 working day between the time you complete an online SAE membership application and our system recognizes you as eligible to register your team.", - "pageNumber": "0" - }, - { - "ruleCode": "1A8.1", - "ruleContent": "Registration Cap The Formula Hybrid + Electric competition is capped at 35 entries. Registrations received after the entry cap is reached will be placed on a waiting list. If no slots become available prior to the competition, the entry fee will be refunded. Registration Fees", - "parentRuleCode": "1A8", - "pageNumber": "0" - }, - { - "ruleCode": "1A8.1.1", - "ruleContent": "Registration fees must be paid to the organizer by the deadline specified on the Formula Hybrid +Electric website.", - "parentRuleCode": "1A8.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A8.1.2", - "ruleContent": "Registration fees are not refundable.", - "parentRuleCode": "1A8.1", - "pageNumber": "0" - }, - { - "ruleCode": "1A8.2", - "ruleContent": "Withdrawals Registered teams that find that they will not be able to attend the Formula Hybrid + Electric competition are requested to officially withdraw by notifying the organizers at the following address not later than one (1) week before the event: formulahybridcomp@gmail.com", - "parentRuleCode": "1A8", - "pageNumber": "0" - }, - { - "ruleCode": "1A8.3", - "ruleContent": "United States Visas", - "parentRuleCode": "1A8", - "pageNumber": "0" - }, - { - "ruleCode": "1A8.3.1", - "ruleContent": "Teams requiring visas to enter to the United States are advised to apply at least sixty (60) days prior to the competition. Although many visa applications go through without an unreasonable delay, occasionally teams have had difficulties and in several instances visas were not issued before the competition. Don’t wait – apply early for your visa. Note: After your team has registered for the Formula Hybrid + Electric competition, the organizers can provide an acknowledgement your registration. We do not issue letters of invitation or participation certificates.", - "parentRuleCode": "1A8.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A8.3.2", - "ruleContent": "Neither SAE staff nor any competition organizers are permitted to give advice on visas, customs regulations or vehicle shipping regulations concerning the United States or any other country.", - "parentRuleCode": "1A8.3", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A9", - "ruleContent": "VEHICLE DOCUMENTS, DEADLINES AND PENALTIES", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.1", - "ruleContent": "Required Documents The following documents supporting each vehicle must be submitted by the action deadlines posted on the Formula Hybrid + Electric website or otherwise published by the organizers.", - "parentRuleCode": "1A9", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.2", - "ruleContent": "Document Submission Policies Note: Volunteer examiners and judges evaluate all the required submissions and it is essential that they have enough time to complete their work. There are no exceptions to the document submission deadlines and late submissions will incur penalties.", - "parentRuleCode": "1A9", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.2.1", - "ruleContent": "Document submission penalties or bonus points are factored into a team’s final score. They do not alter the individual event scores.", - "parentRuleCode": "1A9.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.2.2", - "ruleContent": "All documents must be submitted using the following document title, unless otherwise noted in individual document requirements: Car Number_University_Document_Competition Year i.e. 000_Oxford University_SES_2025 Teams are responsible for submitting properly labeled documents and will accrue applicable penalty points if documents with corrected formatting are late.", - "parentRuleCode": "1A9.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.2.3", - "ruleContent": "Teams must submit the required documents online at https://formulahybridupload.supportsystem.com/", - "parentRuleCode": "1A9.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.2.4", - "ruleContent": "Document submission deadlines are listed in GMT (Greenwich Mean Time) unless otherwise explicitly stated. This means that deadlines are typically 7:00 PM Eastern Standard Time. Please use this website for time conversions or https://time.is/GMT .", - "parentRuleCode": "1A9.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.2.5", - "ruleContent": "The time and date that the document is uploaded is recorded in GMT (Greenwich Mean Time) and constitutes the official record for deadline compliance.", - "parentRuleCode": "1A9.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.2.6", - "ruleContent": "The official time and date of document receipt will be posted on the Formula Hybrid + Electric website. Teams are responsible for ensuring the accuracy of these postings and must notify the organizers within three days of their submission to report a discrepancy. After three days the submission time and date will become final.", - "parentRuleCode": "1A9.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.3", - "ruleContent": "Late submissions Documents received after their deadlines will be penalized as follows: (a) Structural Equivalency Spreadsheet (SES) – The penalty for late SES submission is 10 points per day and is capped at negative fifty (-50) points. However, teams are advised", - "parentRuleCode": "1A9", - "pageNumber": "0" - }, - { - "ruleCode": "1A9.4", - "ruleContent": "Early submissions In some cases, documents submitted before their deadline can earn a team bonus points as follows: (a) Structural Equivalency Spreadsheet (SES) (i) Approved documents that were submitted 30 days or more before the SES deadline will receive 20 bonus points. (ii) Approved documents that were submitted between 29 and 15 days before the SES deadline will receive 10 bonus points. (b) Electrical System Forms (ESF-1 and ESF-2) (i) Approved documents that were submitted 30 days or more before each ESF deadline will receive 10 bonus points. (ii) Approved documents that were submitted between 29 and 15 days before each ESF deadline will receive 5 bonus points. Note 1: The qualifying dates for bonus points will be listed on the Formula Hybrid + Electric website.", - "parentRuleCode": "1A9", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A10", - "ruleContent": "FORMS AND DOCUMENTS The following forms and documents are available on the Formula Hybrid + Electric website: (a) 2025 Formula Hybrid + Electric Rules (This Document) (b) Structural Equivalency Spreadsheet (SES) (c) Impact Attenuator (IA) Data Sheet (d) Electrical Systems Form (ESF-1) template (e) Electrical Systems Form (ESF-2) template (f) Program Information Sheet (Team information for the Event Program) (g) Mechanical Inspection Sheet (For reference) (h) Electrical Inspection Sheet (For reference) (i) Design Specification Sheet (j) Design Event Judging Form (For reference) (k) Project Management Judging Form (For reference) (l) Site pre-registration form Note: Formula Hybrid + Electric strives to provide student engineering teams with timely and useful information to assist in the design and construction of their vehicles. Check the Formula Hybrid + Electric website often for new or updated advisory publications.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A11", - "ruleContent": "PROTESTS", - "pageNumber": "0" - }, - { - "ruleCode": "1A11.1", - "ruleContent": "Protests - General It is recognized that thousands of hours of work have gone into fielding a vehicle and that teams are entitled to all the points they can earn. We also recognize that there can be differences in the interpretation of rules, the application of penalties and the understanding of procedures. The officials and SAE staff will make every effort to fully review all questions and resolve problems and discrepancies quickly and equitably", - "parentRuleCode": "1A11", - "pageNumber": "0" - }, - { - "ruleCode": "1A11.2", - "ruleContent": "Preliminary Review – Required If a team has a question about scoring, judging, policies, or any official action it must be brought to the organizer’s or SAE staff’s attention for an informal preliminary review before a protest can be filed.", - "parentRuleCode": "1A11", - "pageNumber": "0" - }, - { - "ruleCode": "1A11.3", - "ruleContent": "Cause for Protest A team may protest any rule interpretation, score, or official action (unless specifically excluded from protest) which they feel has caused some actual, non-trivial, harm to their team, or has had substantive effect on their score. Teams may not protest rule interpretations or actions that have not caused them any substantive damage.", - "parentRuleCode": "1A11", - "pageNumber": "0" - }, - { - "ruleCode": "1A11.4", - "ruleContent": "Protest Format and Forfeit All protests must be filed in writing and presented to the organizer or SAE staff by the team captain. In order to have a protest considered, a team must post a twenty-five (25) point protest bond which will be forfeited if their protest is rejected.", - "parentRuleCode": "1A11", - "pageNumber": "0" - }, - { - "ruleCode": "1A11.5", - "ruleContent": "Protest Period Protests concerning any aspect of the competition must be filed within one-half hour (30 minutes) of the posting of the scores of the event to which the protest relates.", - "parentRuleCode": "1A11", - "pageNumber": "0" - }, - { - "ruleCode": "1A11.6", - "ruleContent": "Decision The decision of the competition protest committee regarding any protest is final.", - "parentRuleCode": "1A11", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE A12", - "ruleContent": "QUESTIONS ABOUT THE FORMULA HYBRID + ELECTRIC RULES", - "pageNumber": "0" - }, - { - "ruleCode": "1A12.1", - "ruleContent": "Question Publication By submitting, a question to the Formula Hybrid + Electric Rules Committee or the competition’s organizing body you and your team agree that both your question and the official answer can be reproduced and distributed by SAE or Formula Hybrid + Electric, in both complete and edited versions, in any medium or format anywhere in the world.", - "parentRuleCode": "1A12", - "pageNumber": "0" - }, - { - "ruleCode": "1A12.2", - "ruleContent": "Question Types", - "parentRuleCode": "1A12", - "pageNumber": "0" - }, - { - "ruleCode": "1A12.2.1", - "ruleContent": "The Committee will answer questions that are not already answered in the rules or FAQs or that require new or novel rule interpretations. The Committee will not respond to questions that are already answered in the rules. For example, if a rule specifies a minimum dimension for a part the Committee will not answer questions asking if a smaller dimension can be used.", - "parentRuleCode": "1A12.2", - "pageNumber": "0" - }, - { - "ruleCode": "1A12.3", - "ruleContent": "Frequently Asked Questions", - "parentRuleCode": "1A12", - "pageNumber": "0" - }, - { - "ruleCode": "1A12.3.1", - "ruleContent": "Before submitting a question, check the Frequently Asked Questions section of the Formula Hybrid + Electric website.", - "parentRuleCode": "1A12.3", - "pageNumber": "0" - }, - { - "ruleCode": "1A12.4", - "ruleContent": "Question Submission Questions must be submitted on the Formula Hybrid + Electric Support page: https://formulahybridelectric.supportsystem.com/ Figure 1 - Formula Hybrid + Electric Support Page", - "parentRuleCode": "1A12", - "pageNumber": "0" - }, - { - "ruleCode": "1A12.5", - "ruleContent": "Question Format The following information is required: (a) Submitter’s Name (b) Submitter’s Email (c) Topic (Select from the pull-down menu) (d) University Name (Registered teams will find their University name in a pull-down list) You may type your question into the “Message” box, or upload a document. You will receive a confirmation email with a link to enable you to check on your question’s status.", - "parentRuleCode": "1A12", - "pageNumber": "0" - }, - { - "ruleCode": "1A12.6", - "ruleContent": "Response Time Please allow a minimum of 3 days for a response. The Rules Committee will respond as quickly as possible, however, responses to questions presenting new issues, or of unusual complexity, may take more than one week. Please do not resend questions.", - "parentRuleCode": "1A12", - "pageNumber": "0" - }, - { - "ruleCode": "PART T1", - "ruleContent": "GENERAL TECHNICAL REQUIREMENTS", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T1", - "ruleContent": "VEHICLE REQUIREMENTS AND RESTRICTIONS ***", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.1", - "ruleContent": "Technical Inspection", - "parentRuleCode": "1T1", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.1.1", - "ruleContent": "The following requirements and restrictions will be enforced through technical inspection. Noncompliance must be corrected and the car re-inspected before the car is allowed to operate under power.", - "parentRuleCode": "1T1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.2", - "ruleContent": "Modifications and Repairs", - "parentRuleCode": "1T1", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.2.1", - "ruleContent": "Once the vehicle has been presented for judging in the Design Events, or submitted for Technical Inspection, and until the vehicle is approved to compete in the dynamic events, i.e. all the inspection stickers are awarded, the only modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the Inspection Form.", - "parentRuleCode": "1T1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.2.2", - "ruleContent": "Once the vehicle is approved to compete in the dynamic events, the ONLY modifications permitted to the vehicle are: (a) Adjustment of belts, chains and clutches (b) Adjustment of brake bias (c) Adjustment of the driver restraint system, head restraint, seat and pedal assembly (d) Substitution of the head restraint or seat inserts for different drivers (e) Adjustment to engine operating parameters, e.g. fuel mixture and ignition timing and any software calibration changes (f) Adjustment of mirrors (g) Adjustment of the suspension where no part substitution is required, (except that springs, sway bars and shims may be changed) (h) Adjustment of tire pressure (i) Adjustment of wing angle (but not the location) (j) Replenishment of fluids (k) Replacement of worn tires or brake pads The replacement tires and/or brake pads must be identical in material, composition and size to those presented and approved at Technical Inspection. (l) The changing of wheels and tires for “wet” or “damp” conditions as allowed in D3.1 of the Formula Hybrid + Electric Rules. (m) Recharging of Grounded Low Voltage (GLV) supplies. (n) Recharging of Accumulators. (See EV12.2) (o) Adjustment of motor controller operating parameters.", - "parentRuleCode": "1T1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.2.3", - "ruleContent": "The vehicle must maintain all required specifications, e.g. ride height, suspension travel, braking capacity, sound level and wing location throughout the competition.", - "parentRuleCode": "1T1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.2.4", - "ruleContent": "Once the vehicle is approved for competition, any damage to the vehicle that requires repair, e.g. crash damage, electrical or mechanical damage will void the Inspection Approval. Upon", - "parentRuleCode": "1T1.2", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T2", - "ruleContent": "GENERAL DESIGN REQUIREMENTS", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.1", - "ruleContent": "Vehicle Configuration", - "parentRuleCode": "1T2", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.1.1", - "ruleContent": "The vehicle must be open-wheeled and open-cockpit (a formula style body) with four (4) wheels that are not in a straight line.", - "parentRuleCode": "1T2.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.1.2", - "ruleContent": "Definition of \"Open Wheel\" – Open Wheel vehicles must satisfy all of the following criteria: (a) The top 180 degrees of the wheels/tires must be unobstructed when viewed from vertically above the wheel. (b) The wheels/tires must be unobstructed when viewed from the side. (c) No part of the vehicle may enter a keep-out-zone defined by two lines extending vertically from positions 75 mm in front of and 75 mm behind the outer diameter of the front and rear tires in side view elevation of the vehicle with the tires steered straight ahead. This keep-out zone will extend laterally from the outside plane of the wheel/tire to the inboard plane of the wheel/tire. See Figure 2 below. Note: The dry tires will be used for all inspections. Figure 2 - Open Wheel Definition", - "parentRuleCode": "1T2.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.2", - "ruleContent": "Bodywork There must be no openings through the bodywork into the driver compartment from the front of the vehicle back to the roll bar main hoop or firewall other than that required for the cockpit opening. Minimal openings around the front suspension components are allowed.", - "parentRuleCode": "1T2", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.3", - "ruleContent": "Wheelbase The car must have a wheelbase of at least 1524 mm. The wheelbase is measured from the center of ground contact of the front and rear tires with the wheels pointed straight ahead.", - "parentRuleCode": "1T2", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.4", - "ruleContent": "Vehicle Track The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track.", - "parentRuleCode": "1T2", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.5", - "ruleContent": "Visible Access All items on the Inspection Form must be clearly visible to the technical inspectors without using instruments such as endoscopes or mirrors. Visible access can be provided by removing body panels or by providing removable access panels.", - "parentRuleCode": "1T2", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T3", - "ruleContent": "DRIVER’S CELL", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.1", - "ruleContent": "General Requirements", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.1.1", - "ruleContent": "Among other requirements, the vehicle’s structure must include two roll hoops that are braced, a front bulkhead with support system and Impact Attenuator, and side impact structures. Note: Many teams will be retrofitting Formula SAE cars for Formula Hybrid + Electric. In most cases these vehicles will be considerably heavier than what the original frame and suspension was designed to carry. It is important to analyze the structure of the car and to strengthen it as required to insure that it will handle the additional stresses. The technical inspectors will also be paying close attention to the mounting of accumulator systems. These can be very heavy and must be adequately fastened to the main structure of the vehicle.", - "parentRuleCode": "1T3.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.2", - "ruleContent": "Definitions The following definitions apply throughout the Rules document: (a) Main Hoop - A roll bar located alongside or just behind the driver’s torso. (b) Front Hoop - A roll bar located above the driver’s legs, in proximity to the steering wheel. (c) Roll Hoops – Both the Front Hoop and the Main Hoop are classified as “Roll Hoops” (d) Roll Hoop Bracing Supports – The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). (e) Frame Member - A minimum representative single piece of uncut, continuous tubing. (f) Frame - The “Frame” is the fabricated structural assembly that supports all functional vehicle systems. This assembly may be a single welded structure, multiple welded structures or a combination of composite and welded structures. (g) Primary Structure – The Primary Structure is comprised of the following Frame components: (i) Main Hoop (ii) Front Hoop (iii) Roll Hoop Braces and Supports (iv) Side Impact Structure", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.3", - "ruleContent": "Minimum Material Requirements", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.3.1", - "ruleContent": "Baseline Steel Material The Primary Structure of the car must be constructed of: Either: Round, mild or alloy, steel tubing (minimum 0.1% carbon) of the minimum dimensions specified in Table 4 . Or: Approved alternatives per Rules T3.3, T3.3.2, T3.5 and T3.6.", - "parentRuleCode": "1T3.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.3.2", - "ruleContent": "When a cutout, or a hole greater in diameter than 3/16 inch (4 mm), is made in a regulated tube, e.g. to mount the safety harness or suspension and steering components, in order to regain the baseline, cold rolled strength of the original tubing, the tubing must be reinforced by the use of a welded insert or other reinforcement. The welded strength figures given above must be used for the additional material. And the details, including dimensioned drawings, must be included in the SES.", - "parentRuleCode": "1T3.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.4", - "ruleContent": "Alternative Tubing and Material - General", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.4.1", - "ruleContent": "Alternative tubing geometry and/or materials may be used except that the Main Roll Hoop and Main Roll Hoop Bracing must be made from steel, i.e. the use of aluminum or titanium tubing or composites for these components is prohibited.", - "parentRuleCode": "1T3.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.4.2", - "ruleContent": "Titanium or magnesium on which welding has been utilized may not be used for any part of the Primary Structure. This includes the attachment of brackets to the tubing or the attachment of the tubing to other components.", - "parentRuleCode": "1T3.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.4.3", - "ruleContent": "If a team chooses to use alternative tubing and/or materials they must still submit a “Structural Equivalency Spreadsheet” per Rule T3.8. The teams must submit calculations for the material they have chosen, demonstrating equivalence to the minimum requirements found in Section T3.3.1 for yield and ultimate strengths in bending, buckling and tension, for buckling modulus and for energy dissipation. Note: The Buckling Modulus is defined as EI, where, E = modulus of Elasticity, and I = area moment of inertia about the weakest axis.", - "parentRuleCode": "1T3.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.4.4", - "ruleContent": "To be considered as a structural tube in the SES Submission (T3.8) tubing cannot have an outside dimension less than 25 mm or a wall thickness less than that listed in T3.5 or T3.6.", - "parentRuleCode": "1T3.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.4.5", - "ruleContent": "If a bent tube is used anywhere in the primary structure, other than the front and main roll hoops, an additional tube must be attached to support it. The attachment point must be the position along the tube where it deviates farthest from a straight line connecting both ends. The support tube must have the same diameter and thickness as the bent tube. The support tube must terminate at a node of the chassis.", - "parentRuleCode": "1T3.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.4.6", - "ruleContent": "Any chassis design that is a hybrid of the baseline and monocoque rules, must meet all relevant rules requirements, e.g. a sandwich panel side impact structure in a tube frame chassis must meet the requirements of rules T3.27, T3.28, T3.29, T3.30 and T3.33. Note: It is allowable for the properties of tubes and laminates to be combined to prove equivalence. E.g. in a side-impact structure consisting of one tube as per T3.3 and a laminate panel, the panel only needs to be equivalent to two side-impact tubes.", - "parentRuleCode": "1T3.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.5", - "ruleContent": "Alternative Steel Tubing Minimum Wall Thickness Allowed: MATERIAL & APPLICATION MINIMUM WALL THICKNESS Front and Main Roll Hoops Shoulder Harness Mounting Bar 2.0 mm Roll Hoop Bracing Roll Hoop Bracing Supports Side Impact Structure Front Bulkhead Front Bulkhead Support Driver’s Harness Attachment (Except for Shoulder Harness Mounting Bar - above) Protection of accumulators Protection of TSV components 1.2 mm Table 5 - Steel Tubing Minimum Wall Thicknesses", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.6", - "ruleContent": "Aluminum Tubing Requirements", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.6.1", - "ruleContent": "Minimum Wall Thickness of Aluminum Tubing is 3.0 mm", - "parentRuleCode": "1T3.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.6.2", - "ruleContent": "The equivalent yield strength must be considered in the “as-welded” condition, (Reference: WELDING ALUMINUM (latest Edition) by the Aluminum Association, or THE WELDING HANDBOOK, Volume 4, 9th Ed., by The American Welding Society), unless the team demonstrates and shows proof that the frame has been properly solution heat treated and artificially aged.", - "parentRuleCode": "1T3.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.6.3", - "ruleContent": "Should aluminum tubing be solution heat-treated and age hardened to increase its strength after welding; the team must supply sufficient documentation as to how the process was performed. This includes, but is not limited to, the heat-treating facility used, the process applied, and the fixturing used.", - "parentRuleCode": "1T3.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.7", - "ruleContent": "Composite Materials", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.7.1", - "ruleContent": "If any composite or other material is used, the team must present documentation of material type, e.g. purchase receipt, shipping document or letter of donation, and of the material properties. Details of the composite lay-up technique as well as the structural material used (cloth type, weight, and resin type, number of layers, core material, and skin material if metal) must also be submitted. The team must submit calculations demonstrating equivalence of their composite structure to one of similar geometry made to the minimum requirements found in Section T3.3.1. Equivalency calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, buckling, and tension. Submit the completed “Structural Equivalency Spreadsheet” per Section T3.8 Note: Some composite materials present unique electrical shock hazards, and may require additional engineering and fabrication effort to minimize those hazards. See: ARTICLE EV8.", - "parentRuleCode": "1T3.7", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.7.2", - "ruleContent": "Composite materials are not allowed for the Main Hoop or the Front Hoop.", - "parentRuleCode": "1T3.7", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8", - "ruleContent": "Structural Documentation – SES Submission All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010.", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8.1", - "ruleContent": "All teams must submit a Structural Equivalency Spreadsheet (SES) even if they are not planning to use alternative materials or tubing sizes to those specified in T3.3.1 Baseline Steel Materials.", - "parentRuleCode": "1T3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8.2", - "ruleContent": "The use of alternative materials or tubing sizes to those specified in T3.3.1 “Baseline Steel Material,” is allowed, provided they have been judged by a technical review to have equal or superior properties to those specified in T3.3.1.", - "parentRuleCode": "1T3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8.3", - "ruleContent": "Approval of alternative material or tubing sizes will be based upon the engineering judgment and experience of the chief technical inspector or their appointee.", - "parentRuleCode": "1T3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8.4", - "ruleContent": "The technical review is initiated by completing the “Structural Equivalency Spreadsheet” (SES) which can be downloaded from the Formula Hybrid + Electric website.", - "parentRuleCode": "1T3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8.5", - "ruleContent": "Structural Equivalency Spreadsheet – Submission", - "parentRuleCode": "1T3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8.6", - "ruleContent": "Vehicles completed under an approved SES must be fabricated in accordance with the materials and processes described in the SES.", - "parentRuleCode": "1T3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8.7", - "ruleContent": "Teams must bring a copy of the approved SES with them to Technical Inspection. Comment - The resubmission of an SES that was written and submitted for a competition in a previous year is strongly discouraged. Each team is expected to perform their own tests and to submit SESs based on their original work. Understanding the engineering that justifies the equivalency is essential to discussing your work with the officials.", - "parentRuleCode": "1T3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.8.8", - "ruleContent": "An approved SES for a Formula SAE 2024 or 2025 competition may be submitted in place of the Formula Hybrid + Electric specific SES required by T3.8.4.", - "parentRuleCode": "1T3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.9", - "ruleContent": "Main and Front Roll Hoops – General Requirements", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.9.1", - "ruleContent": "The driver’s head and hands must not contact the ground in any rollover attitude.", - "parentRuleCode": "1T3.9", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.9.2", - "ruleContent": "The Frame must include both a Main Hoop and a Front Hoop as shown in Figures from Top: 4.", - "parentRuleCode": "1T3.9", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.9.3", - "ruleContent": "When seated normally and restrained by the Driver’s Restraint System, the helmet of a 95th percentile male (anthropometrical data; See Table 6 and Figure 5) and all of the team’s drivers must: (a) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the top of the front hoop. (Figures from Top: 4a) (b) Be a minimum of 50.8 mm from the straight line drawn from the top of the main hoop to the lower end of the main hoop bracing if the bracing extends rearwards. (Figures from Top: 4b) (c) Be no further rearwards than the rear surface of the main hoop if the main hoop bracing extends forwards. (Figures from Top: 4c)", - "parentRuleCode": "1T3.9", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.9.4", - "ruleContent": "The 95th percentile male template (Percy) will be positioned as follows: (See Figure 6) (a) The seat will be adjusted to the rearmost position, (b) The pedals will be placed in the most forward position. (c) The bottom 200 mm circle will be placed on the seat bottom such that the distance between the center of this circle and the rearmost face of the pedals is no less than 915 mm. (d) The middle 200 mm circle, representing the shoulders, will be positioned on the seat back. (e) The upper 300 mm circle will be positioned no more than 25.4 mm away from the head restraint (i.e. where the driver’s helmet would normally be located while driving).", - "parentRuleCode": "1T3.9", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.9.5", - "ruleContent": "Drivers who do not meet the helmet clearance requirements of T3.9.3 will not be allowed to drive in the competition.", - "parentRuleCode": "1T3.9", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.9.6", - "ruleContent": "The minimum radius of any bend, measured at the tube centerline, must be at least three times the tube outside diameter. Bends must be smooth and continuous with no evidence of crimping or wall failure.", - "parentRuleCode": "1T3.9", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.9.7", - "ruleContent": "The Main Hoop and Front Hoop must be securely integrated into the Primary Structure using gussets and/or tube triangulation.", - "parentRuleCode": "1T3.9", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.10", - "ruleContent": "Main Hoop", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.10.1", - "ruleContent": "The Main Hoop must be constructed of a single piece of uncut, continuous, closed section steel tubing per Rule T3.3.1", - "parentRuleCode": "1T3.10", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.10.2", - "ruleContent": "The use of aluminum alloys, titanium alloys or composite materials for the Main Hoop is prohibited.", - "parentRuleCode": "1T3.10", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.10.3", - "ruleContent": "The Main Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down the lowest Frame Member on the other side of the Frame.", - "parentRuleCode": "1T3.10", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.10.4", - "ruleContent": "In the side view of the vehicle, the portion of the Main Roll Hoop that lies above its attachment point to the Major Structure of the Frame must be within ten degrees (10°) of the vertical.", - "parentRuleCode": "1T3.10", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.10.5", - "ruleContent": "In the side view of the vehicle, any bends in the Main Roll Hoop above its attachment point to the Major Structure of the Frame must be braced to a node of the Main Hoop Bracing Support structure with tubing meeting the requirements of Roll Hoop Bracing as per Rule T3.3.1", - "parentRuleCode": "1T3.10", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.10.6", - "ruleContent": "In the front view of the vehicle, the vertical members of the Main Hoop must be at least 380 mm apart (inside dimension) at the location where the Main Hoop is attached to the Major Structure of the Frame.", - "parentRuleCode": "1T3.10", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.11", - "ruleContent": "Front Hoop", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.11.1", - "ruleContent": "The Front Hoop must be constructed of closed section metal tubing per Rule T3.3.1.", - "parentRuleCode": "1T3.11", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.11.2", - "ruleContent": "The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down to the lowest Frame Member on the other side of the Frame.", - "parentRuleCode": "1T3.11", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.11.3", - "ruleContent": "With proper gusseting and/or triangulation, it is permissible to fabricate the Front Hoop from more than one piece of tubing.", - "parentRuleCode": "1T3.11", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.11.4", - "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position.", - "parentRuleCode": "1T3.11", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.11.5", - "ruleContent": "The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance must be measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight- ahead position.", - "parentRuleCode": "1T3.11", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.11.6", - "ruleContent": "In side view, no part of the Front Hoop can be inclined at more than twenty degrees (20°) from the vertical.", - "parentRuleCode": "1T3.11", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.12", - "ruleContent": "Main Hoop Bracing", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.12.1", - "ruleContent": "Main Hoop braces must be constructed of closed section steel tubing per Rule T3.3.1.", - "parentRuleCode": "1T3.12", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.12.2", - "ruleContent": "The Main Hoop must be supported by two braces extending in the forward or rearward direction on both the left and right sides of the Main Hoop.", - "parentRuleCode": "1T3.12", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.12.3", - "ruleContent": "In the side view of the Frame, the Main Hoop and the Main Hoop braces must not lie on the same side of the vertical line through the top of the Main Hoop, i.e. if the Main Hoop leans forward, the braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, the braces must be rearward of the Main Hoop.", - "parentRuleCode": "1T3.12", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.12.4", - "ruleContent": "The Main Hoop braces must be attached as near as possible to the top of the Main Hoop but not more than 160 mm below the top-most surface of the Main Hoop. The included angle formed by the Main Hoop and the Main Hoop braces must be at least thirty degrees (30°). See: Figure 7 Figure 7 - Main and Front Hoop Bracing", - "parentRuleCode": "1T3.12", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.12.5", - "ruleContent": "The Main Hoop braces must be straight, i.e. without any bends.", - "parentRuleCode": "1T3.12", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.12.6", - "ruleContent": "The attachment of the Main Hoop braces must be capable of transmitting all loads from the Main Hoop into the Major Structure of the Frame without failing. From the lower end of the braces there must be a properly triangulated structure back to the lowest part of the Main Hoop and the node at which the upper side impact tube meets the Main Hoop. This structure must meet the minimum requirements for Main Hoop Bracing Supports (see Rule T3.3) or an SES approved alternative. Bracing loads must not be fed solely into the engine, transmission or differential, or through suspension components.", - "parentRuleCode": "1T3.12", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.12.7", - "ruleContent": "If any item which is outside the envelope of the Primary Structure is attached to the Main Hoop braces, then additional bracing must be added to prevent bending loads in the braces in any rollover attitude.", - "parentRuleCode": "1T3.12", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.13", - "ruleContent": "Front Hoop Bracing", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.13.1", - "ruleContent": "Front Hoop braces must be constructed of material per Rule T3.3.1.", - "parentRuleCode": "1T3.13", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.13.2", - "ruleContent": "The Front Hoop must be supported by two braces extending in the forward direction, one on the left side and one on the right side of the Front Hoop.", - "parentRuleCode": "1T3.13", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.13.3", - "ruleContent": "The Front Hoop braces must be constructed such that they protect the driver’s legs and should extend to the structure in front of the driver’s feet.", - "parentRuleCode": "1T3.13", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.13.4", - "ruleContent": "The Front Hoop braces must be attached as near as possible to the top of the Front Hoop but not more than 50.8 mm below the top-most surface of the Front Hoop. See: Figure 7", - "parentRuleCode": "1T3.13", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.13.5", - "ruleContent": "If the Front Hoop leans rearwards by more than ten degrees (10°) from the vertical, it must be supported by additional bracing to the rear. This bracing must be constructed of material per Rule T3.3.1.", - "parentRuleCode": "1T3.13", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.14", - "ruleContent": "Other Bracing Requirements Where the braces are not welded to steel Frame Members, the braces must be securely attached to the Frame using 8 mm Metric Grade 8.8 (5/16 in SAE Grade 5), or stronger, bolts. Mounting plates welded to the Roll Hoop braces must be at least 2.0 mm thick steel.", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.15", - "ruleContent": "Other Side Tube Requirements If there is a Roll Hoop brace or other frame tube alongside the driver, at the height of the neck of any of the team’s drivers, a metal tube or piece of sheet metal must be firmly attached to the Frame to prevent the drivers’ shoulders from passing under the roll hoop brace or frame tube, and his/her neck contacting this brace or tube.", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16", - "ruleContent": "Mechanically Attached Roll Hoop Bracing", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16.1", - "ruleContent": "Roll Hoop bracing may be mechanically attached.", - "parentRuleCode": "1T3.16", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16.2", - "ruleContent": "Any non-permanent joint at either end must be either a double-lug joint as shown in Figure 8 and Figure 9 or a sleeved butt joint as shown in Figure 10.", - "parentRuleCode": "1T3.16", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16.3", - "ruleContent": "The threaded fasteners used to secure non-permanent joints are considered critical fasteners and must comply with ARTICLE T11.", - "parentRuleCode": "1T3.16", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16.4", - "ruleContent": "No spherical rod ends are allowed.", - "parentRuleCode": "1T3.16", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16.5", - "ruleContent": "For double-lug joints, each lug must be at least 4.5 mm thick steel, measure 25 mm minimum perpendicular to the axis of the bracing and be as short as practical along the axis of the bracing.", - "parentRuleCode": "1T3.16", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16.6", - "ruleContent": "All double-lug joints, whether fitted at the top or bottom of the tube, must include a capping arrangement. (See Figure 8 and Figure 9)", - "parentRuleCode": "1T3.16", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16.7", - "ruleContent": "In a double-lug joint the pin or bolt must be 10 mm Grade 9.8 or 3/8 inch SAE Grade 8 minimum. The attachment holes in the lugs and in the attached bracing must be a close fit with the pin or bolt.", - "parentRuleCode": "1T3.16", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.16.8", - "ruleContent": "For sleeved butt joints (Figure 10), the sleeve must have a minimum length of 76 mm (38 mm on either side of the joint) and be a close-fit around the base tubes. The wall thickness of the sleeve must be at least that of the base tubes. The bolts must be 6 mm Grade 9.8 or 1/4", - "parentRuleCode": "1T3.16", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.17", - "ruleContent": "Frontal Impact Structure", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.17.1", - "ruleContent": "The driver’s feet and legs must be completely contained within the Major Structure of the Frame. While the driver’s feet are touching the pedals, in side and front views no part of the driver’s feet or legs can extend above or outside of the Major Structure of the Frame.", - "parentRuleCode": "1T3.17", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.17.2", - "ruleContent": "Forward of the Front Bulkhead must be an energy-absorbing Impact Attenuator.", - "parentRuleCode": "1T3.17", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.18", - "ruleContent": "Bulkhead", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.18.1", - "ruleContent": "The Front Bulkhead must be constructed of closed section tubing per Rule T3.3.1.", - "parentRuleCode": "1T3.18", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.18.2", - "ruleContent": "Except as allowed byT3.22.2, The Front Bulkhead must be located forward of all non- crushable objects, e.g. batteries, master cylinders, hydraulic reservoirs.", - "parentRuleCode": "1T3.18", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.18.3", - "ruleContent": "The Front Bulkhead must be located such that the soles of the driver’s feet, when touching but not applying the pedals, are rearward of the bulkhead plane. (This plane is defined by the forward-most surface of the tubing.) Adjustable pedals must be in the forward most position.", - "parentRuleCode": "1T3.18", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.19", - "ruleContent": "Front Bulkhead Support", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.19.1", - "ruleContent": "The Front Bulkhead must be securely integrated into the Frame.", - "parentRuleCode": "1T3.19", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.19.2", - "ruleContent": "The Front Bulkhead must be supported back to the Front Roll Hoop by a minimum of three (3) Frame Members on each side of the vehicle with one at the top (within 50.8 mm of its top-most surface), one (1) at the bottom, and one (1) as a diagonal brace to provide triangulation.", - "parentRuleCode": "1T3.19", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.19.3", - "ruleContent": "The triangulation must be node-to-node, with triangles being formed by the Front Bulkhead, the diagonal and one of the other two required Front Bulkhead Support Frame Members.", - "parentRuleCode": "1T3.19", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.19.4", - "ruleContent": "All the Frame Members of the Front Bulkhead Support system listed above must be constructed of closed section tubing per Section T3.3.1.", - "parentRuleCode": "1T3.19", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20", - "ruleContent": "Impact Attenuator (IA)", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.1", - "ruleContent": "On all cars there must be an Impact Attenuator and an Anti-Intrusion Plate forward of the Front Bulkhead, with the Anti-Intrusion Plate between the Impact Attenuator and the Front Bulkhead. All methods of attachment of the IA to the Ant-Intrusion Plate and of the Anti-Intrusion Plate to the Front Bulkhead must provide adequate load paths for transverse and vertical loads in the event of off-axis impacts.", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.2", - "ruleContent": "The Anti-Intrusion Plate must: (a) Be a 1.5 mm (0.060 in) thick solid steel or 4.0 mm (0.157 in) thick solid aluminum plate. Monocoques may use an approved alternative as per T3.38. (b) Be attached securely and directly to the Front Bulkhead. (c) Have an outer profile that meets the requirements of T3.20.3.", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.3", - "ruleContent": "Alternative designs of the Anti-Intrusion Plate required by T3.20.2 that do not comply with the minimum specifications given above require an approved “Structural Equivalency Spreadsheet”, per T3.8. Equivalency must also be proven for perimeter shear strength of the proposed design.", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.4", - "ruleContent": "The requirements for the outside profile of the Anti-Intrusion Plate are dependent on the method of attachment to the Front Bulkhead: ● For welded joints the profile must extend at least to the centerline of the Front Bulkhead tubes on all sides. ● For bolted joints the profile must match the outside dimensions of the Front Bulkhead around the entire periphery.", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.5", - "ruleContent": "For tube frame cars, the accepted methods of attaching the Anti-Intrusion Plate to the Front Bulkhead are: (a) Welding, where the welds are either continuous or interrupted. If interrupted, the weld/space ratio must be at least 1:1. All weld lengths must be greater than 25 mm (1”). (b) Bolted joints, using a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2”). NOTE: Holes in mandated tubes will require appropriate measures to ensure compliance with T3.3.1 Note 3, and T3.3.2", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.6", - "ruleContent": "For monocoque cars, the attachment of the Anti-Intrusion Plate to the monocoque structure must be documented in the team’s SES submission. This must prove the attachment method is equivalent to the bolted joints described in T3.20.5 and that the attachment method utilized will fail before any other part of the monocoque.", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.7", - "ruleContent": "The Impact Attenuator must be: (a) At least 200 mm (7.8 in) long, with its length oriented along the fore/aft axis of the Frame. (b) At least 100 mm (3.9 in) high and 200 mm (7.8 in) wide for a minimum distance of 200 mm (7.8 in) forward of the Front Bulkhead. (c) Attached securely to the Anti-Intrusion Plate. Segmented foam attenuators must have all segments bonded together to prevent sliding or parallelogramming.", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.8", - "ruleContent": "The accepted methods of attaching the Impact Attenuator to the Anti-Intrusion Plate are: (a) Bolted joints, using a minimum of four (4) 8 mm Metric Grade 8.8 (5/16” SAE Grade 5) bolts with positive locking. The distance between any two bolt centers must be at least 50 mm (2”). (b) By the use of a structural adhesive. The adhesive must be appropriate for use with both substrate types. Appropriate adhesive choice, substrate preparation, and equivalency of this bonded joint to the bolted joint in T3.20.8(a) must be documented in the team’s IAD Report. Note: Foam IA’s cannot be attached solely by the bolted method.", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.20.9", - "ruleContent": "If a team uses the “standard” FSAE Impact Attenuator 3 , and the outside profile of the Anti- Intrusion Plate extends beyond the “standard” Impact Attenuator by more than 25 mm (1”) on 3 The officially approved “standard” Formula SAE Impact Attenuator may be found here on the Formula SAE website", - "parentRuleCode": "1T3.20", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21", - "ruleContent": "Impact Attenuator Test Data Report Requirement", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.1", - "ruleContent": "Impact Attenuator Test Data Report Requirement All teams, whether they are using their own design of Impact Attenuator (IA) or the “standard” FSAE Impact Attenuator, must submit an Impact Attenuator Data Report using the Impact Attenuator Data (IAD) Template found on the Formula Hybrid + Electric Document page at: https://www.formula-hybrid.org/documents", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.2", - "ruleContent": "All teams must submit calculations and/or test data to show that their Impact Attenuator, when mounted on the front of their vehicle and run into a solid, non-yielding impact barrier with a velocity of impact of 7.0 meters/second, would give an average deceleration of the vehicle not to exceed 20 g, with a peak deceleration less than or equal to 40 g's. NOTE 1: Quasi-static testing is allowed. NOTE 2: The calculations of how the reported absorbed energy, average deceleration and peak deceleration figures have been derived from the test data MUST be included in the report and appended to the report template.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.3", - "ruleContent": "Calculations must be based on the actual vehicle mass with a 175 lb. driver, full fluids, and rounded up to the nearest 100 lb. Note: Teams may only use the “Standard” FSAE impact attenuator design and data submission process if their vehicle mass with driver is 300 kgs (661 lbs) or less. To be eligible to utilize the “Standard” FSAE impact attenuator, teams must either have previously brought a Formula Hybrid + Electric vehicle that weighs under 300 kgs (661 lbs) with driver to a Formula Hybrid + Electric competition, or submit a detailed mass measurement spreadsheet covering all the vehicle’s components as part of the Impact Attenuator Data Report, showing that the new vehicle meets the above requirements.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.4", - "ruleContent": "Teams using a front wing must prove that the combination of the Impact Attenuator and front wing, when used together, do not exceed the peak deceleration of rule T3.21.2. Teams can use the following methods to show the design does not exceed the limits given in T3.21.2. (a) Physical testing of the Impact Attenuator with wing mounts, links, vertical plates, and a structural representation of the airfoil section to determine the peak force. See http://formula-hybrid.org/students/tech-support/ FAQs for an example of the structure to be included in the test. Or (b) Combine the peak force from physical testing of the Impact Attenuator Assembly with the wing mount failure load calculated from fastener shear and/or link buckling. Or (c) If they are using the Standard FSAE Impact Attenuator (see T3.21.3 above), combine the peak load of 95 kN exerted by the Standard FSAE Impact Attenuator with the wing mount failure load calculated from fastener shear and/or buckling.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.5", - "ruleContent": "When using acceleration data, the average deceleration must be calculated based on the raw data. The peak deceleration can be assessed based on the raw data, and if peaks above the 40g limit are apparent in the data, it can then be filtered with a Channel Filter Class (CFC) 60 (100 Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Tests”, or a 100 Hz, 3rd order, lowpass Butterworth (-3dB at 100 Hz) filter.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.6", - "ruleContent": "A schematic of the test method must be supplied along with photos of the attenuator before and after testing.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.7", - "ruleContent": "The test piece must be presented at technical inspection for comparison to the photographs and the attenuator fitted to the vehicle.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.8", - "ruleContent": "The report must be submitted electronically in Adobe Acrobat ® format (*.pdf file) to the address and by the date provided in the Action Deadlines provided on the Formula Hybrid + Electric website. This material must be a single file (text, drawings, data or whatever you are including).", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.9", - "ruleContent": "The Impact Attenuator Data Report must be named as follows: carnumber_schoolname_competitioncode_IAD.pdf using the assigned car number, the complete school name and competition code e.g. 087_University of SAE_FHE_IAD.pdf", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.10", - "ruleContent": "Teams that submit their Impact Attenuator Data Report after the due date will be penalized as listed in section A9.2.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.11", - "ruleContent": "Impact Attenuator Reports will be evaluated by the organizers and the evaluations will be passed to the Design Event Captain for consideration in that event.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.12", - "ruleContent": "During the test, the attenuator must be attached to the Anti-Intrusion Plate using the intended vehicle attachment method. The Anti-Intrusion Plate must be spaced at least 50 mm from any rigid surface. No part of the Anti-Intrusion Plate may permanently deflect more than 25.4 mm beyond the position of the Anti-Intrusion Plate before the test. Note: The 25.4 mm spacing represents the front bulkhead support and insures that the plate does not intrude excessively into the cockpit.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.21.13", - "ruleContent": "Dynamic testing (sled, pendulum, drop tower, etc.) of the impact attenuator may only be done at a dedicated test facility. The test facility may be part of the University but must be supervised by professional staff or University faculty. Teams are not allowed to construct their own dynamic test apparatus. Quasi-static testing may be performed by teams using their universities facilities/equipment, but teams are advised to exercise due care when performing all tests.", - "parentRuleCode": "1T3.21", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.22", - "ruleContent": "Non-Crushable Objects", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.22.1", - "ruleContent": "Except as allowed by T3.22.2, all non-crushable objects (e.g. batteries, master cylinders, hydraulic reservoirs) inside the primary structure must have 25 mm (1”) clearance to the rear face of the Impact Attenuator Anti-Intrusion Plate.", - "parentRuleCode": "1T3.22", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.22.2", - "ruleContent": "The front wing and wing supports may be forward of the Front Bulkhead, but may NOT be located in or pass through the Impact Attenuator. If the wing supports are in front of the Front Bulkhead, the supports must be included in the test of the Impact Attenuator. See T3.21.", - "parentRuleCode": "1T3.22", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.23", - "ruleContent": "Front Bodywork", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.23.1", - "ruleContent": "Sharp edges on the forward facing bodywork or other protruding components are prohibited.", - "parentRuleCode": "1T3.23", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.23.2", - "ruleContent": "All forward facing edges on the bodywork that could impact people, e.g. the nose, must have forward facing radii of at least 38 mm. This minimum radius must extend to at least forty-five degrees (45°) relative to the forward direction, along the top, sides and bottom of all affected edges.", - "parentRuleCode": "1T3.23", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.24", - "ruleContent": "Side Impact Structure for Tube Frame Cars The Side Impact Structure must meet the requirements listed below.", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.24.1", - "ruleContent": "The Side Impact Structure for tube frame cars must be comprised of at least three (3) tubular members located on each side of the driver while seated in the normal driving position, as shown in Figure 11 Figure 11 – Side Impact Structure", - "parentRuleCode": "1T3.24", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.24.2", - "ruleContent": "The three (3) required tubular members must be constructed of material per Section T3.3.", - "parentRuleCode": "1T3.24", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.24.3", - "ruleContent": "The locations for the three (3) required tubular members are as follows: (a) The upper Side Impact Structural member must connect the Main Hoop and the Front Hoop. With a 77 kg driver seated in the normal driving position all of the member must be at a height between 300 mm and 350 mm above the ground. The upper frame rail may be used as this member if it meets the height, diameter and thickness requirements. (b) The lower Side Impact Structural member must connect the bottom of the Main Hoop and the bottom of the Front Hoop. The lower frame rail/frame member may be this member if it meets the diameter and wall thickness requirements. (c) The diagonal Side Impact Structural member must connect the upper and lower Side Impact Structural members forward of the Main Hoop and rearward of the Front Hoop.", - "parentRuleCode": "1T3.24", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.24.4", - "ruleContent": "With proper gusseting and/or triangulation, it is permissible to fabricate the Side Impact Structural members from more than one piece of tubing.", - "parentRuleCode": "1T3.24", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.24.5", - "ruleContent": "Alternative geometry that does not comply with the minimum requirements given above requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8.", - "parentRuleCode": "1T3.24", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.25", - "ruleContent": "Inspection Holes", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.25.1", - "ruleContent": "To allow the verification of tubing wall thicknesses, 4.5 mm inspection holes must be drilled in a non-critical location of both the Main Hoop and the Front Hoop.", - "parentRuleCode": "1T3.25", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.25.2", - "ruleContent": "In addition, the Technical Inspectors may check the compliance of other tubes that have minimum dimensions specified in T3.3.1. This may be done by the use of ultra-sonic testing or by the drilling of additional inspection holes at the inspector’s request.", - "parentRuleCode": "1T3.25", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.25.3", - "ruleContent": "Inspection holes must be located so that the outside diameter can be measured across the inspection hole with a caliper, i.e. there must be access for the caliper to the inspection hole and to the outside of the tube one hundred eighty degrees (180°) from the inspection hole.", - "parentRuleCode": "1T3.25", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.26", - "ruleContent": "Composite Tubular Space Frames", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.26.1", - "ruleContent": "Composite tubular space frames are not permitted in the Primary Structure of the vehicle (See T3.2(g))", - "parentRuleCode": "1T3.26", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.26.2", - "ruleContent": "Composite tubular structures may be used for other tubes regulated under T3.3 provided the team receives prior approval from the Formula Hybrid + Electric chief technical examiner. This will require submission of the following data: (a) Test data on the joints used in the structure. (b) Static strength testing on all proposed configurations within the frame. (c) An assessment of the ability of all joints to handle cyclic loading. (d) The equivalency of the composite tubes to withstand maximum forces and moments (when compared to baseline materials). This information must also be included in the structural equivalency submission.", - "parentRuleCode": "1T3.26", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.27", - "ruleContent": "Monocoque General Requirements", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.27.1", - "ruleContent": "All equivalency calculations must prove equivalency relative to steel grade SAE/AISI 1010.", - "parentRuleCode": "1T3.27", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.27.2", - "ruleContent": "All sections of the rules apply to monocoque structures except for the following sections which supplement or supersede other rule sections.", - "parentRuleCode": "1T3.27", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.27.3", - "ruleContent": "Monocoque construction requires an approved Structural Equivalency Spreadsheet, per Section T3.8. The form must demonstrate that the design is equivalent to a welded frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension. Information must include: material type(s), cloth weights, resin type, fiber orientation, number of layers, core material, and lay-up technique. The 3 point bend test and shear test data and pictures must also be included as per T3.30 Monocoque Laminate Testing. The Structural Equivalency must address each of the items below. Data from the laminate testing results must be used as the basis for any strength or stiffness calculations.", - "parentRuleCode": "1T3.27", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.27.4", - "ruleContent": "Composite and metallic monocoques have the same requirements.", - "parentRuleCode": "1T3.27", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.27.5", - "ruleContent": "Composite monocoques must meet the materials requirements in Rule T3.7 Composite Materials.", - "parentRuleCode": "1T3.27", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.28", - "ruleContent": "Monocoque Inspections", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.28.1", - "ruleContent": "Due to the monocoque rules and methods of manufacture it is not always possible to inspect all aspects of a monocoque during technical inspection. For items which cannot be verified by an inspector it is the responsibility of the team to provide documentation, both visual", - "parentRuleCode": "1T3.28", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.29", - "ruleContent": "Monocoque Buckling Modulus – Equivalent Flat Panel Calculation When specified in the rules, the EI of the monocoque must be calculated as the EI of a flat panel with the same composition as the monocoque about the neutral axis of the laminate. The curvature of the panel and geometric cross section of the monocoque must be ignored for these calculations. Note: Calculations of EI that do not reference T3.29 may take into account the actual geometry of the monocoque.", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.30", - "ruleContent": "Monocoque Laminate Testing", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.30.1", - "ruleContent": "Teams must build a representative flat panel section of the monocoque side impact zone (“zone” is defined in T3.32.2 and T3.2(k)) and perform a 3 point bending test on this panel. They must prove by physical test that a section 200 mm x 500 mm has at least the same properties as a baseline steel side impact tube (See T3.3.1 “Baseline Steel Materials”) for bending stiffness and two side impact tubes for yield and ultimate strength. The data from these tests and pictures of the test samples must be included in the SES, the test results will be used to derive strength and stiffness properties used in the SES formulae for all laminate panels. The test specimen must be presented at technical inspection. If the test specimen does not meet these requirements then the monocoque side impact zone must be strengthened appropriately. Note: Teams are advised to make an equivalent test with the base line steel tubes such that any compliance in the test rig can be accounted for.", - "parentRuleCode": "1T3.30", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.30.2", - "ruleContent": "If laminates with a lay-up different to that of the side-impact structure are used then additional physical tests must be completed for any part of the monocoque that forms part of the primary structure. The material properties derived from these tests must then be used in the SES for the appropriate equivalency calculations. Note: A laminate with more or less plies, of the same lay-up as the side-impact structure, does not constitute a “different lay-up” and the material properties may be scaled accordingly.", - "parentRuleCode": "1T3.30", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.30.3", - "ruleContent": "Perimeter shear tests must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample.", - "parentRuleCode": "1T3.30", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.31", - "ruleContent": "Monocoque Front Bulkhead See Rule T3.27 for general requirements that apply to all aspects of the monocoque. In addition, when modeled as an “L” shaped section the EI of the front bulkhead about both vertical and lateral axis must be equivalent to that of the tubes specified for the front bulkhead under T3.18. The length of the section perpendicular to the bulkhead may be a maximum of 25.4 mm measured from the rearmost face of the bulkhead. Furthermore, any front bulkhead which supports the IA plate must have a perimeter shear strength equivalent to a 1.5 mm thick steel plate.", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.32", - "ruleContent": "Monocoque Front Bulkhead Support", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.32.1", - "ruleContent": "In addition to proving that the strength of the monocoque is adequate, the monocoque must have equivalent EI to the sum of the EI of the six (6) baseline steel tubes that it replaces.", - "parentRuleCode": "1T3.32", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.32.2", - "ruleContent": "The EI of the vertical side of the front bulkhead support structure must be equivalent to at least the EI of one baseline steel tube that it replaces when calculated as per rule T3.29 Monocoque Buckling Modulus.", - "parentRuleCode": "1T3.32", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.32.3", - "ruleContent": "The perimeter shear strength of the monocoque laminate in the front bulkhead support structure should be at least 4 kN for a section with a diameter of 25 mm. This must be proven by a physical test completed as per T3.30.3 and the results include in the SES", - "parentRuleCode": "1T3.32", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.33", - "ruleContent": "Monocoque Side Impact", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.33.1", - "ruleContent": "In addition to proving that the strength of the monocoque is adequate, the side of the monocoque must have equivalent EI to the sum of the EI of the three (3) baseline steel tubes that it replaces.", - "parentRuleCode": "1T3.33", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.33.2", - "ruleContent": "The side of the monocoque between the upper surface of the floor and 350 mm above the ground (Side Impact Zone) must have an EI of at least 50% of the sum of the EI of the three (3) baseline steel tubes that it replaces when calculated as per Rule T3.29 Monocoque Buckling Modulus.", - "parentRuleCode": "1T3.33", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.33.3", - "ruleContent": "The perimeter shear strength of the monocoque laminate should be at least 7.5 kN for a section with a diameter of 25 mm. This must be proven by physical test completed as per T3.30.3 and the results included in the SES.", - "parentRuleCode": "1T3.33", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.34", - "ruleContent": "Monocoque Main Hoop", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.34.1", - "ruleContent": "The Main Hoop must be constructed of a single piece of uncut, continuous, closed section steel tubing per T3.3.1 and extend down to the bottom of the monocoque.", - "parentRuleCode": "1T3.34", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.34.2", - "ruleContent": "The Main Hoop must be mechanically attached at the top and bottom of the monocoque and at intermediate locations as needed to show equivalency.", - "parentRuleCode": "1T3.34", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.34.3", - "ruleContent": "Mounting plates welded to the Roll Hoop must be at least 2.0 mm thick steel.", - "parentRuleCode": "1T3.34", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.34.4", - "ruleContent": "Attachment of the Main Hoop to the monocoque must comply with T3.39.", - "parentRuleCode": "1T3.34", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.35", - "ruleContent": "Monocoque Front Hoop", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.35.1", - "ruleContent": "Composite materials are not allowed for the front hoop. See Rule T3.27 for general requirements that apply to all aspects of the monocoque.", - "parentRuleCode": "1T3.35", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.35.2", - "ruleContent": "Attachment of the Front Hoop to the monocoque must comply with Rule T3.39.", - "parentRuleCode": "1T3.35", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.36", - "ruleContent": "Monocoque Front and Main Hoop Bracing", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.36.1", - "ruleContent": "See Rule T3.27 for general requirements that apply to all aspects of the monocoque.", - "parentRuleCode": "1T3.36", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.36.2", - "ruleContent": "Attachment of tubular Front or Main Hoop Bracing to the monocoque must comply with Rule T3.39.", - "parentRuleCode": "1T3.36", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.37", - "ruleContent": "Monocoque Impact Attenuator and Anti-Intrusion Plate Attachment The attachment of the Impact Attenuator and Anti-Intrusion Plate to a monocoque structure requires an approved “Structural Equivalency Spreadsheet” per Rule T3.8 that shows the equivalency to a minimum of eight (8) 8 mm Metric Grade 8.8 (5/16 inch SAE Grade 5) bolts for the Anti-Intrusion Plate attachment and a minimum of four (4) bolts to the same minimum specification for the Impact Attenuator attachment.", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.38", - "ruleContent": "Monocoque Impact Attenuator Anti-Intrusion Plate", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.38.1", - "ruleContent": "See Rule T3.27 for general requirements that apply to all aspects of the monocoque and Rule T3.20.3 for alternate Anti-Intrusion Plate designs.", - "parentRuleCode": "1T3.38", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.39", - "ruleContent": "Monocoque Attachments", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.39.1", - "ruleContent": "In any direction, each attachment point between the monocoque and the other primary structure must be able to carry a load of 30 kN.", - "parentRuleCode": "1T3.39", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.39.2", - "ruleContent": "The laminate, mounting plates, backing plates and inserts must have sufficient shear area, weld area and strength to carry the specified 30 kN load in any direction. Data obtained from the laminate perimeter shear strength test (T3.33.3) should be used to prove adequate shear area is provided", - "parentRuleCode": "1T3.39", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.39.3", - "ruleContent": "Each attachment point requires a minimum of two (2) 8 mm Metric Grade 8.8 or 5/16 inch SAE Grade 5 bolts", - "parentRuleCode": "1T3.39", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.39.4", - "ruleContent": "Each attachment point requires steel backing plates with a minimum thickness of 2.0 mm. Alternate materials may be used for backing plates if equivalency is approved.", - "parentRuleCode": "1T3.39", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.39.5", - "ruleContent": "The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports only may use one (1) 10 mm Metric Grade 8.8 or 3/8 inch SAE Grade 5 bolt as an alternative to T3.39.3 if the bolt is on the centerline of tube similar to the figure below. Figure 13 – Alternate Single Bolt Attachment", - "parentRuleCode": "1T3.39", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.39.6", - "ruleContent": "No crushing of the core is permitted", - "parentRuleCode": "1T3.39", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.39.7", - "ruleContent": "Main Hoop bracing attached to a monocoque (i.e. not welded to a rear space frame) is always considered “mechanically attached” and must comply with Rule T3.16.", - "parentRuleCode": "1T3.39", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.40", - "ruleContent": "Monocoque Driver’s Harness Attachment Points", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.40.1", - "ruleContent": "The monocoque attachment points for the shoulder and lap belts must support a load of 13 kN before failure.", - "parentRuleCode": "1T3.40", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.40.2", - "ruleContent": "The monocoque attachment points for the ant-submarine belts must support a load of 6.5 kN before failure.", - "parentRuleCode": "1T3.40", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.40.3", - "ruleContent": "If the lap belts and anti-submarine belts are attached to the same attachment point, then this point must support a load of 19.5 kN before failure.", - "parentRuleCode": "1T3.40", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.40.4", - "ruleContent": "The strength of lap belt attachment and shoulder belt attachment must be proven by physical test where the required load is applied to a representative attachment point where the proposed layup and attachment bracket is used.", - "parentRuleCode": "1T3.40", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T4", - "ruleContent": "COCKPIT", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.1", - "ruleContent": "Cockpit Opening Important Note: Teams are advised that cockpit template and Percy (Figure 5) compliance will be strictly enforced during mechanical technical inspection. Check the Formula Hybrid + Electric website for an instructional video on template and Percy inspection procedures.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.1.1", - "ruleContent": "In order to ensure that the opening giving access to the cockpit is of adequate size, a template shown in Figure 14 will be inserted downwards into the cockpit opening. It will be held horizontally and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it has passed below the top bar of the Side Impact Structure (or until it is 350 mm (13.8 inches) above the ground for monocoque cars). Fore and aft translation of the template (while maintaining its position parallel to the ground) will be permitted during insertion. Figure 14 – Cockpit Opening Template", - "parentRuleCode": "1T4.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.1.2", - "ruleContent": "During this test, the steering wheel, steering column, seat and all padding may be removed. The shifter or shift mechanism may not be removed unless it is integral with the steering wheel and is removed with the steering wheel. The firewall may not be moved or removed.", - "parentRuleCode": "1T4.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.2", - "ruleContent": "Cockpit Internal Cross Section:", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.2.1", - "ruleContent": "A free vertical cross section, which allows the template shown in Figure 15 to be passed horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost pedal when in the inoperative position, must be maintained over its entire length. If the pedals are adjustable, they will be put in their most forward position. Figure 15 – Cockpit Internal Cross Section Template", - "parentRuleCode": "1T4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.2.2", - "ruleContent": "The template, with maximum thickness of 7 mm, will be held vertically and inserted into the cockpit opening rearward of the rear-most portion of the steering column. Note: At the discretion of the technical inspectors, the internal cross-section template may be moved vertically by small increments during fore and aft travel to clear height deviations in the floor of the vehicle (e.g. those caused by the steering rack, etc.). The template must still fit through the cross-section at the location of vertical deviation. A video demonstrating the template procedure can be found on YouTube: https://youtu.be/azz5kbmiQbw", - "parentRuleCode": "1T4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.2.3", - "ruleContent": "The only items that may be removed for this test are the steering wheel, and any padding required by Rule T5.8 “Driver’s Leg Protection” that can be easily removed without the use", - "parentRuleCode": "1T4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.2.4", - "ruleContent": "Teams whose cars do not comply with T4.1 or T4.2 will not be given a Technical Inspection Sticker and will not be allowed to compete in the dynamic events. Note: Cables, wires, hoses, tubes, etc. must not impede the passage of the templates required by T4.1 and T4.2.", - "parentRuleCode": "1T4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.3", - "ruleContent": "Driver’s Seat", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.3.1", - "ruleContent": "In side view the lowest point of the driver’s seat must be no lower than the top surface of the lower frame rails or by having a longitudinal tube (or tubes) that meets the requirements for Side Impact tubing, passing underneath the lowest point of the seat.", - "parentRuleCode": "1T4.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.3.2", - "ruleContent": "When seated in the normal driving position, adequate heat insulation must be provided to ensure that the driver will not contact any metal or other materials which may become heated to a surface temperature above sixty degrees C (60°C). The insulation may be external to the cockpit or incorporated with the driver’s seat or firewall. The design must show evidence of addressing all three (3) types of heat transfer, namely conduction, convection and radiation, with the following between the heat source, e.g. an exhaust pipe or coolant hose/tube and the panel that the driver could contact, e.g. the seat or floor: (a) Conduction Isolation by: (i) No direct contact between the heat source and the panel, or (ii) a heat resistant, conduction isolation material with a minimum thickness of 8 mm between the heat source and the panel. (b) Convection Isolation by a minimum air gap of 25 mm between the heat source and the panel. (c) Radiation Isolation by: (i) A solid metal heat shield with a minimum thickness of 0.4 mm or (ii) reflective foil or tape when combined with T4.3.2(a)(ii) above.", - "parentRuleCode": "1T4.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.4", - "ruleContent": "Floor Close-out All vehicles must have a floor closeout made of one or more panels, which separate the driver from the pavement. If multiple panels are used, gaps between panels are not to exceed 3 mm. The closeout must extend from the foot area to the firewall and prevent track debris from entering the car. The panels must be made of a solid, non-brittle material.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5", - "ruleContent": "Firewall", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.1", - "ruleContent": "Firewall(s) must separate the driver compartment from the following components: (a) Fuel Tanks. (b) Accumulators. (c) All components of the fuel supply. (d) External engine oil systems including hoses, oil coolers, tanks, etc. (e) Liquid cooling systems including those for I.C. engine and electrical components. (f) Lithium-based GLV batteries.", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.2", - "ruleContent": "The firewall(s) must be a rigid, non-permeable surface made from 1.5 mm or thicker aluminum or proven equivalent. See Appendix H – Firewall Equivalency Test.", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.3", - "ruleContent": "The firewall(s) must seal completely against the passage of fluids and hot gasses, including at the sides and the floor of the cockpit, e.g. there can be no holes in a firewall through which seat belts pass.", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.4", - "ruleContent": "Pass-throughs for GLV wiring, cables, etc. are allowable if grommets are used to seal the pass- throughs. Multiple panels may be used to form the firewall but must be mechanically fastened in place and sealed at the joints.", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.5", - "ruleContent": "For those components listed in T4.5.1 that are mounted behind the driver, the firewall(s) must extend sufficiently far upwards and/or rearwards such that a straight line from any part of any listed component to any part of the tallest driver that is more than 150 mm below the top of his/her helmet, must pass through the firewall.", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.6", - "ruleContent": "For those components listed in section T4.5.1 positioned under the driver, the firewall must extend: (a) Continuously rearwards the full width of the cockpit from the Front Bulkhead, under and up behind the driver to a point where the helmet of the 95th percentile male template (T3.9.4) touches the head restraint, and (b) Alongside the driver, from the top of the Side Impact Structure down to the lower portion of the firewall required by T4.5.6(a) and from the rearmost front suspension mounting point to connect (without holes or gaps) behind the driver with the firewall required by T4.5.6(a). See Figure 16(a).", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.7", - "ruleContent": "For those components listed in section T4.5.1 that are mounted outboard of the Side Impact System (e.g. in side pods), the firewall(s) must extend from 100 mm forward to 100 mm rearward of the of the listed components and (a) alongside the driver at the full height of the listed component, and (b) cover the top of the listed components and (c) run either (i) under the cockpit between the firewall(s) required by T4.5.7(a), or (ii) extend 100 mm out under the listed components from the firewall(s) that are required by T4.5.8 See Figure 16(b&c).", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.8", - "ruleContent": "For the components listed in section T4.5.1 that are mounted in ways that do not fall clearly under any of sections T4.5.5, T4.5.6 or T4.5.7, the firewall must be configured to provide equivalent protection to the driver, and the firewall configuration must be approved by the Rules Committee.", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5.9", - "ruleContent": "Containers that meet the firewall requirements of T4.5.2, including accumulator containers, may be accepted as part of the firewall system; redundant barriers are not required. Tractive", - "parentRuleCode": "1T4.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.6", - "ruleContent": "Accessibility of Controls All vehicle controls, including the shifter, must be operated from inside the cockpit without any part of the driver, e.g. hands, arms or elbows, being outside the planes of the Side Impact Structure defined in Rule T3.24 and T3.33.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.7", - "ruleContent": "Driver Visibility", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.7.1", - "ruleContent": "The driver must have adequate visibility to the front and sides of the car. With the driver seated in a normal driving position he/she must have a minimum field of vision of two hundred degrees (200°) (a minimum one hundred degrees (100°) to either side of the driver). The required visibility may be obtained by the driver turning his/her head and/or the use of mirrors. 4 The firewalls shown in red in Figure 16 are examples only and are not meant to imply that a firewall must lie outside the frame rails.", - "parentRuleCode": "1T4.7", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.7.2", - "ruleContent": "If mirrors are required to meet Rule T4.7.1, they must remain in place and adjusted to enable the required visibility throughout all dynamic events.", - "parentRuleCode": "1T4.7", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.8", - "ruleContent": "Driver Egress All drivers must be able to exit to the side of the vehicle in no more than 5 seconds. Egress time begins with the driver in the fully seated position, hands in driving position on the connected steering wheel and wearing the required driver equipment. Egress time will stop when the driver has both feet on the pavement.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.9", - "ruleContent": "Emergency Shut Down Test", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.9.1", - "ruleContent": "With their vision obscured, all drivers must be able to operate the cockpit Big Red Button (BRB) in less than one second. Time begins with the driver in the fully seated position, hands in driving position on the connected steering wheel, and wearing the required driver equipment.", - "parentRuleCode": "1T4.9", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T5", - "ruleContent": "DRIVER’S EQUIPMENT (BELTS AND COCKPIT PADDING)", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1", - "ruleContent": "Belts - General", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1.1", - "ruleContent": "Definitions (Note: Belt dimensions listed are nominal widths.) (a) 5-point system – consists of a lap belt, two (2) shoulder straps and a single anti-submarine strap. (b) 6-point system – consists of a lap belt, two (2) shoulder straps and two (2) leg or anti- submarine straps. (c) 7-point system – system is the same as the 6-point except it has three (3) anti-submarine straps, two (2) from the 6-point system and one (1) from the 5-point system. (d) Upright driving position - is defined as one with a seat back angled at thirty degrees (30°) or less from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in Table 6 and positioned per T3.9.4. (e) Reclined driving position - is defined as one with a seat back angled at more than thirty degrees (30°) from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in Table 6 and positioned per T3.9.4. (f) Chest-groin line - is the straight line that in side view follows the line of the shoulder belts from the chest to the release buckle.", - "parentRuleCode": "1T5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1.2", - "ruleContent": "Harness Requirements All drivers must use a 5, 6 or 7 point restraint harness meeting the following specifications: (a) SFI Specification 16.1, SFI Specification 16.5, SFI Specification 16.6, or FIA specification 8853/98 or FIA specification 8853-2016. Note: FIA harnesses with 44 mm (“2 inch”) shoulder straps meeting T5.1.2 and T5.1.3 are approved for use at FH+E (b) To accommodate drivers of differing builds, all lap belts must incorporate a tilt lock adjuster (“quick adjuster”).", - "parentRuleCode": "1T5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1.3", - "ruleContent": "Harness Replacement - Harnesses must be replaced following December 31 st of the year of the expiration date shown on the label. (Note: SFI belts are normally certified for two (2) years from the date of manufacture while FIA belts are normally certified for five (5) years from the date of manufacture.)", - "parentRuleCode": "1T5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1.4", - "ruleContent": "The restraint system must be worn tightly at all times.", - "parentRuleCode": "1T5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.2", - "ruleContent": "Belt, Strap and Harness Installation - General", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.2.1", - "ruleContent": "The lap belt, shoulder harness and anti-submarine strap(s) must be securely mounted to the Primary Structure. Such structure and any guide or support for the belts must meet the minimum requirements of T3.3.1. Note: Rule T3.4.5 applies to these tubes as well so a non-straight shoulder harness bar would require support per T3.4.5", - "parentRuleCode": "1T5.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.2.2", - "ruleContent": "The tab or bracket to which any harness is attached must fulfill the following requirements: (a) Have a minimum cross sectional area of 60 sq. mm (0.093 sq. in) of steel to be sheared or failed in tension at any point of the tab, and (b) Have a minimum thickness of 1.6 mm (0.063 inch). (c) Where lap belts and anti-submarine belts use the same attachment point, there must be a minimum cross sectional area of 90 sq. mm (0.140 sq. in) of steel to be sheared or failed in tension at any point of the tab. (d) Where brackets are fastened to the chassis, two 6mm Metric Grade 8.8 (1/4 inch SAE Grade 5) fasteners or stronger must be used to attach the bracket to the chassis. (e) Where a single shear tab is welded to the chassis, the tab to tube welding must be on both sides of the base of the tab. (f) The bracket or tab should be aligned such that it is not put in bending when that portion of the harness is put under load. NOTE: Double shear attachments are preferred. Where possible, the tabs and brackets for double shear mounts should also be welded on both sides.", - "parentRuleCode": "1T5.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.2.3", - "ruleContent": "Harnesses, belts and straps must not pass through a firewall, i.e. all harness attachment points must be on the driver’s side of any firewall.", - "parentRuleCode": "1T5.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.2.4", - "ruleContent": "The attachment of the Driver’s Restraint System to a monocoque structure requires an approved Structural Equivalency Spreadsheet per Rule T3.8.", - "parentRuleCode": "1T5.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.2.5", - "ruleContent": "All adjusters must be threaded in accordance with manufacturer’s instructions. Examples are given in Figure 17. Figure 17 - Seat Belt Threading Examples", - "parentRuleCode": "1T5.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.2.6", - "ruleContent": "The restraint system installation is subject to approval of the Chief Technical Inspector.", - "parentRuleCode": "1T5.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3", - "ruleContent": "Lap Belt Mounting", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3.1", - "ruleContent": "The lap belt must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip bones).", - "parentRuleCode": "1T5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3.2", - "ruleContent": "The lap belts must not be routed over the sides of the seat. The lap belts must come through the seat at the bottom of the sides of the seat to maximize the wrap of the pelvic surface and continue in a straight line to the anchorage point.", - "parentRuleCode": "1T5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3.3", - "ruleContent": "Where the belts or harness pass through a hole in the seat, the seat must be rolled or grommeted to prevent chafing of the belts.", - "parentRuleCode": "1T5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3.4", - "ruleContent": "To fit drivers of differing statures correctly, in side view, the lap belt must be capable of pivoting freely by using either a shouldered bolt or an eye bolt attachment, i.e. mounting lap belts by wrapping them around frame tubes is no longer acceptable.", - "parentRuleCode": "1T5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3.5", - "ruleContent": "With an “upright driving position”, in side view the lap belt must be at an angle of between forty-five degrees (45°) and sixty-five degrees (65°) to the horizontal. This means that the centerline of the lap belt at the seat bottom should be between 0 – 76 mm forward of the seat back to seat bottom junction. (See Figure 18)", - "parentRuleCode": "1T5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3.6", - "ruleContent": "With a “reclined driving position”, in side view the lap belt must be between an angle of sixty degrees (60°) and eighty degrees (80°) to the horizontal.", - "parentRuleCode": "1T5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3.7", - "ruleContent": "Any bolt used to attach a lap belt, either directly to the chassis or to an intermediate bracket, must be a minimum of either: (a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR (b) The bolt diameter specified by the harness manufacturer.", - "parentRuleCode": "1T5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.4", - "ruleContent": "Shoulder Harness", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.4.1", - "ruleContent": "The shoulder harness must be mounted behind the driver to structure that meets the requirements of T3.3.1. However, it cannot be mounted to the Main Roll Hoop Bracing or attendant structure without additional bracing to prevent loads being transferred into the Main Hoop Bracing.", - "parentRuleCode": "1T5.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.4.2", - "ruleContent": "If the harness is mounted to a tube that is not straight, the joints between this tube and the structure to which it is mounted must be reinforced in side view by gussets or triangulation tubes to prevent torsional rotation of the harness mounting tube.", - "parentRuleCode": "1T5.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.4.3", - "ruleContent": "The shoulder harness mounting points must be between 178 mm and 229 mm apart. (See Figure 19)", - "parentRuleCode": "1T5.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.4.4", - "ruleContent": "From the driver’s shoulders rearwards to the mounting point or structural guide, the shoulder harness must be between ten degrees (10°) above the horizontal and twenty degrees (20°) below the horizontal. (See Figure 20). Figure 20 - Shoulder Harness Mounting – Side View", - "parentRuleCode": "1T5.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.4.5", - "ruleContent": "Any bolt used to attach a shoulder harness belt, either directly to the chassis or to an intermediate bracket, must be must be a minimum of either: (a) 10mm Metric Grade 8.8 (3/8 inch SAE Grade 5) OR (b) The bolt diameter specified by the harness manufacturer.", - "parentRuleCode": "1T5.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.5", - "ruleContent": "Anti-Submarine Belt Mounting", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.5.1", - "ruleContent": "The anti-submarine belt of a 5-point harness must be mounted so that the mounting point is in line with, or angled slightly forward (up to twenty degrees (20°)) of, the driver’s chest-groin line.", - "parentRuleCode": "1T5.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.5.2", - "ruleContent": "The anti-submarine belts of a 6 point harness must be mounted either: (a) With the belts going vertically down from the groin, or angled up to twenty degrees (20°) rearwards. The anchorage points should be approximately 100 mm apart. Or (b) With the anchorage points on the Primary Structure at or near the lap belt anchorages, the driver sitting on the anti-submarine belts, and the belts coming up around the groin to the release buckle.", - "parentRuleCode": "1T5.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.5.3", - "ruleContent": "All anti-submarine belts must be installed so that they go in a straight line from the anchorage point(s) to: ● Either the harness release buckle for the 5-point mounting per T5.5.1,", - "parentRuleCode": "1T5.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.5.4", - "ruleContent": "Any bolt used to attach an anti-submarine belt, either directly to the chassis or to an intermediate bracket, must be a must be a minimum of either: (a) 8mm Metric Grade 8.8 (5/16 inch SAE Grade 5) OR (b) The bolt diameter specified by the belt manufacturer.", - "parentRuleCode": "1T5.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.6", - "ruleContent": "Head Restraint", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.6.1", - "ruleContent": "A head restraint must be provided on the car to limit the rearward motion of the driver’s head.", - "parentRuleCode": "1T5.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.6.2", - "ruleContent": "The restraint must: (a) Be vertical or near vertical in side view. (b) Be padded with a minimum thickness of 38 mm (1.5 inches) of an energy absorbing material that meets either SFI Standard 45.2, or is listed on the FIA Technical List No. 17 as a “Type A or a Type B Material for single seater cars”, i.e. CONFOR™ foam CF- 42AC (pink) or CF-42M (pink) or CF45 (blue) or CF45M (blue) . (c) Have a minimum width of 15 cm (6 inches). (d) Have a minimum area of 235 sq. cms (36 sq. inches) AND have a minimum height adjustment of 17.5 cm (7 inches), OR have a minimum height of 28 cm (11 inches). (e) Be covered in a thin, flexible cover with a hole with a minimum dimeter of 20 mm in a surface other than the front surface, through which the energy absorbing material can be seen. (f) Be located so that for each driver: (i) The restraint is no more than 25 mm (1 inch) away from the back of the driver’s helmet, with the driver in their normal driving position. (ii) The contact point of the back of the driver’s helmet on the head restraint is no less than 50 mm (2 inches) from any edge of the head restraint. Note 1: Head restraints may be changed to accommodate different drivers (See T1.2.2(d)). Note 2: The above requirements must be met for all drivers. Note 3: Approximately 100 mm (4 inches) longitudinal adjustment is required to accommodate 5th to 95th Percentile drivers. This is not a specific rules requirement, but teams must have sufficient longitudinal adjustment and/or alternative thickness head restraints available, such that the above requirements are met by all their drivers.", - "parentRuleCode": "1T5.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.6.3", - "ruleContent": "The restraint, its attachment and mounting must be strong enough to withstand a force of 890 Newtons applied in a rearward direction.", - "parentRuleCode": "1T5.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.7", - "ruleContent": "Roll Bar Padding Any portion of the roll bar, roll bar bracing or frame which might be contacted by the driver’s helmet must be covered with a minimum thickness of 12 mm (0.5 inches) of padding which meets SFI spec 45.1 or FIA 8857-2001.", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.8", - "ruleContent": "Driver’s Leg Protection", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.8.1", - "ruleContent": "To keep the driver’s legs away from moving or sharp components, all moving suspension and steering components, and other sharp edges inside the cockpit between the front roll hoop and a vertical plane 100 mm rearward of the pedals, must be shielded with a shield made of a solid material. Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti-roll/sway bars, steering racks and steering column CV joints.", - "parentRuleCode": "1T5.8", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.8.2", - "ruleContent": "Covers over suspension and steering components must be removable to allow inspection of the mounting points.", - "parentRuleCode": "1T5.8", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T6", - "ruleContent": "GENERAL CHASSIS RULES", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.1", - "ruleContent": "Suspension", - "parentRuleCode": "1T6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.1.1", - "ruleContent": "The car must be equipped with a fully operational suspension system with shock absorbers, front and rear, with usable wheel travel of at least 50.8 mm, 25.4 mm jounce and 25.4 mm rebound, with driver seated. The judges reserve the right to disqualify cars which do not represent a serious attempt at an operational suspension system or which demonstrate handling inappropriate for an autocross circuit.", - "parentRuleCode": "1T6.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.1.2", - "ruleContent": "All suspension mounting points must be visible at Technical Inspection, either by direct view or by removing any covers.", - "parentRuleCode": "1T6.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.2", - "ruleContent": "Ground Clearance The ground clearance must be sufficient to prevent any portion of the car (other than tires) from touching the ground during track events, and with the driver aboard there must be a minimum of 25.4 mm of static ground clearance under the complete car at all times.", - "parentRuleCode": "1T6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.3", - "ruleContent": "Wheels", - "parentRuleCode": "1T6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.3.1", - "ruleContent": "The wheels of the car must be 8 inches (203.2 mm) or more in diameter.", - "parentRuleCode": "1T6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.3.2", - "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel in the event that the nut loosens. A second nut (“jam nut”) does not meet these requirements.", - "parentRuleCode": "1T6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.3.3", - "ruleContent": "Standard wheel lug bolts are considered engineering fasteners and any modification will be subject to extra scrutiny during technical inspection. Teams using modified lug bolts or custom designs will be required to provide proof that good engineering practices have been followed in their design.", - "parentRuleCode": "1T6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.3.4", - "ruleContent": "Aluminum wheel nuts may be used, but they must be hard anodized and in pristine condition.", - "parentRuleCode": "1T6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.4", - "ruleContent": "Tires", - "parentRuleCode": "1T6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.4.1", - "ruleContent": "Vehicles may have two types of tires as follows: (a) Dry Tires – The tires on the vehicle when it is presented for technical inspection are defined as its “Dry Tires”. The dry tires may be any size or type. They may be slicks or treaded.", - "parentRuleCode": "1T6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.4.2", - "ruleContent": "Within each tire set, the tire compound or size, or wheel type or size may not be changed after static judging has begun. Tire warmers are not allowed. No traction enhancers may be applied to the tires after the static judging has begun.", - "parentRuleCode": "1T6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5", - "ruleContent": "Steering", - "parentRuleCode": "1T6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.1", - "ruleContent": "The steering wheel must be mechanically connected to the wheels, i.e. “steer-by-wire” or electrically actuated steering is prohibited.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.2", - "ruleContent": "The steering system must have positive steering stops that prevent the steering linkages from locking up (the inversion of a four-bar linkage at one of the pivots). The stops may be placed on the uprights or on the rack and must prevent the tires from contacting suspension, body, or frame members during the track events.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.3", - "ruleContent": "Allowable steering system free play is limited to seven degrees (7°) total measured at the steering wheel.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.4", - "ruleContent": "The steering wheel must be attached to the column with a quick disconnect. The driver must be able to operate the quick disconnect while in the normal driving position with gloves on.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.5", - "ruleContent": "Rear wheel steering, which can be electrically actuated, is permitted but only if mechanical stops limit the range of angular movement of the rear wheels to a maximum of six degrees (6°). This must be demonstrated with a driver in the car and the team must provide the facility for the steering angle range to be verified at Technical Inspection.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.6", - "ruleContent": "The steering wheel must have a continuous perimeter that is near circular or near oval, i.e. the outer perimeter profile can have some straight sections, but no concave sections. “H”, “Figure 8”, or cutout wheels are not allowed.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.7", - "ruleContent": "In any angular position, the top of the steering wheel must be no higher than the top-most surface of the Front Hoop. See Figure 7.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.8", - "ruleContent": "Steering systems using cables for actuation are not prohibited by T6.5.1 but additional documentation must be submitted. The team must submit a failure modes and effects analysis report with design details of the proposed system as part of the structural equivalency spreadsheet (SES). The report must outline the analysis that was done to show the steering system will function properly, potential failure modes and the effects of each failure mode and finally failure mitigation strategies used by the team. The organizing committee will review the submission and advise the team if the design is approved. If not approved, a non-cable based steering system must be used instead.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.9", - "ruleContent": "The steering rack must be mechanically attached to the frame. If fasteners are used they must be compliant with ARTICLE T11.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.5.10", - "ruleContent": "Joints between all components attaching the steering wheel to the steering rack must be mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup are not permitted.", - "parentRuleCode": "1T6.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.6", - "ruleContent": "Jacking Point", - "parentRuleCode": "1T6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.6.1", - "ruleContent": "A jacking point, which is capable of supporting the car’s weight and of engaging the organizers’ “quick jacks”, must be provided at the rear of the car.", - "parentRuleCode": "1T6.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.6.2", - "ruleContent": "The jacking point is required to be: (a) Visible to a person standing 1 meter behind the car. (b) Painted orange. (c) Oriented horizontally and perpendicular to the centerline of the car (d) Made from round, 25–29 mm O.D. aluminum or steel tube (e) A minimum of 300 mm long (f) Exposed around the lower 180 degrees (180°) of its circumference over a minimum length of 280 mm (g) The height of the tube is required to be such that: (i) There is a minimum of 75 mm clearance from the bottom of the tube to the ground measured at tech inspection. (ii) With the bottom of the tube 200 mm above ground, the wheels do not touch the ground when they are in full rebound. Comment on Disabled Cars – The organizers and the Rules Committee remind teams that cars disabled on course must be removed as quickly as possible. A variety of tools may be used to move disabled cars including quick jacks, dollies of different types, tow ropes and occasionally even boards. We expect cars to be strong enough to be easily moved without damage. Speed is important in clearing the course and although the course crew exercises due care, parts of a vehicle can be damaged during removal. The organizers are not responsible for damage that occurs when moving disabled vehicles. Removal/recovery workers will jack, lift, carry or tow the car at whatever points they find easiest to access. Accordingly, we advise teams to consider the strength and location of all obvious jacking, lifting and towing points during the design process.", - "parentRuleCode": "1T6.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.7", - "ruleContent": "Rollover Stability", - "parentRuleCode": "1T6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.7.1", - "ruleContent": "The track and center of gravity of the car must combine to provide adequate rollover stability.", - "parentRuleCode": "1T6.7", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.7.2", - "ruleContent": "Rollover stability will be evaluated on a tilt table using a pass/fail test. The vehicle must not roll when tilted at an angle of sixty degrees (60°) to the horizontal in either direction, corresponding to 1.7 G’s. The tilt test will be conducted with the tallest driver in the normal driving position.", - "parentRuleCode": "1T6.7", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T7", - "ruleContent": "BRAKE SYSTEM", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1", - "ruleContent": "Brake System - General", - "parentRuleCode": "1T7", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.1", - "ruleContent": "The car must be equipped with a braking system that acts on all four wheels and is operated by a single control.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.2", - "ruleContent": "It must have two (2) independent hydraulic circuits such that in the case of a leak or failure at any point in the system, effective braking power is maintained on at least two (2) wheels. Each hydraulic circuit must have its own fluid reserve, either by the use of separate reservoirs or by the use of a dammed, OEM-style reservoir.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.3", - "ruleContent": "A single brake acting on a limited-slip differential is acceptable.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.4", - "ruleContent": "The brake system must be capable of locking all four (4) wheels during the test specified in section T7.2.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.5", - "ruleContent": "“Brake-by-wire” systems are prohibited.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.6", - "ruleContent": "Unarmored plastic brake lines are prohibited.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.7", - "ruleContent": "The braking systems must be protected with scatter shields from failure of the drive train (see T8.4) or from minor collisions.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.8", - "ruleContent": "In side view no portion of the brake system that is mounted on the sprung part of the car can project below the lower surface of the frame or the monocoque, whichever is applicable.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.9", - "ruleContent": "The brake pedal must be designed to withstand a force of 2000 N without any failure of the brake system or pedal box. This may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.10", - "ruleContent": "The brake pedal must be fabricated from steel or aluminum or machined from steel, aluminum or titanium.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.1.11", - "ruleContent": "The first 50% of the brake pedal travel may be used to control regeneration without necessarily actuating the hydraulic brake system. The remaining brake pedal travel must directly actuate the hydraulic brake system, but brake energy regeneration may remain active. Note: Any strategy to regenerate energy while coasting or braking must be covered by the ESF.", - "parentRuleCode": "1T7.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.2", - "ruleContent": "Brake Test", - "parentRuleCode": "1T7", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.2.1", - "ruleContent": "The brake system will be dynamically tested and must demonstrate the capability of locking all four (4) wheels and stopping the vehicle in a straight line at the end of an acceleration run specified by the brake inspectors 5 .", - "parentRuleCode": "1T7.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.2.2", - "ruleContent": "After accelerating, the tractive system must be switched off by the driver and the driver has to lock all four wheels of the vehicle by braking. The brake test is passed if all four wheels simultaneously lock while the tractive system is shut down. Note: It is acceptable if the Tractive System Active Light switches off shortly after the vehicle has come to a complete stop as the reduction of the system voltage may take up to 5 seconds.", - "parentRuleCode": "1T7.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.3", - "ruleContent": "Brake Over-Travel Switch", - "parentRuleCode": "1T7", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.3.1", - "ruleContent": "A brake pedal over-travel switch must be installed on the car as part of the shutdown system and wired in series with the shutdown buttons (EV7.1). This switch must be installed so that in the event of brake system failure such that the brake pedal over travels it will result in the shutdown system being activated. 5 It is a persistent source of mystery to the organizers, how a small percentage of teams, after passing all the required inspections, appear to have never checked to see if they can lock all four wheels. Check this early!", - "parentRuleCode": "1T7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.3.2", - "ruleContent": "Repeated actuation of the switch must not restore power to these components, and it must be designed so that the driver cannot reset it.", - "parentRuleCode": "1T7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.3.3", - "ruleContent": "The brake over-travel switch must not be used as a mechanical stop for the brake pedal and must be installed in such a way that it and its mounting will remain intact and operational when actuated.", - "parentRuleCode": "1T7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.3.4", - "ruleContent": "The switch must be implemented directly. i.e. It may not operate through programmable logic controllers, engine control units, or digital controllers", - "parentRuleCode": "1T7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.3.5", - "ruleContent": "The Brake Over-Travel switch must be a mechanical single pole, single throw (commonly known as a two-position) switch (push-pull or flip type) as shown below. Figure 21 – Over-travel Switches", - "parentRuleCode": "1T7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.4", - "ruleContent": "Brake Light", - "parentRuleCode": "1T7", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.4.1", - "ruleContent": "The car must be equipped with a red brake light.", - "parentRuleCode": "1T7.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.4.2", - "ruleContent": "The brake light itself must have a black background and a rectangular, triangular or near round shape with a minimum shining surface of at least 15 cm 2 .", - "parentRuleCode": "1T7.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.4.3", - "ruleContent": "The brake light must be clearly visible from the rear in bright sunlight.", - "parentRuleCode": "1T7.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.4.4", - "ruleContent": "When LED lights are used without an optical diffuser, they may not be more than 20 mm apart. If a single line of LEDs is used, the minimum length is 150 mm.", - "parentRuleCode": "1T7.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T7.4.5", - "ruleContent": "The light must be mounted between the wheel centerline and driver’s shoulder level vertically and approximately on vehicle centerline laterally.", - "parentRuleCode": "1T7.4", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T8", - "ruleContent": "POWERTRAIN", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.1", - "ruleContent": "Coolant Fluid Limitations", - "parentRuleCode": "1T8", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.1.1", - "ruleContent": "Water-cooled engines must use only plain water. Glycol-based antifreeze, “water wetter”, water pump lubricants of any kind, or any other additives are strictly prohibited.", - "parentRuleCode": "1T8.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.1.2", - "ruleContent": "Electric motors, accumulators or electronics must use plain water or approved 6 fluids as the coolant. 6 “Opticool” (http://dsiventures.com/electronics-cooling/opticool-a-fluid/) is permitted.", - "parentRuleCode": "1T8.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.2", - "ruleContent": "System Sealing", - "parentRuleCode": "1T8", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.2.1", - "ruleContent": "Any cooling or lubrication system must be sealed to prevent leakage.", - "parentRuleCode": "1T8.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.2.2", - "ruleContent": "Any vent on a cooling or lubrication system must employ a catch-can to retain any fluid that is expelled. A separate catch-can is required for each vent.", - "parentRuleCode": "1T8.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.2.3", - "ruleContent": "Each catch-can on a cooling or lubrication system must have a minimum volume of ten (10) percent of the fluid being contained, or 0.9 liter whichever is greater.", - "parentRuleCode": "1T8.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.2.4", - "ruleContent": "Any vent on other systems containing liquid lubricant, e.g. a differential or gearbox, etc., must have a catch-can with a minimum volume of ten (10) percent of the fluid being contained or 0.5 liter, whichever is greater.", - "parentRuleCode": "1T8.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.2.5", - "ruleContent": "Catch-cans must be capable of containing liquids at temperatures in excess of 100 deg. C without deformation, be shielded by a firewall, be below the driver’s shoulder level, and be positively retained, i.e. no tie-wraps or tape as the primary method of retention.", - "parentRuleCode": "1T8.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.2.6", - "ruleContent": "Any catch-can for a cooling system must vent through a hose with a minimum internal diameter of 3 mm down to the bottom levels of the Frame.", - "parentRuleCode": "1T8.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.3", - "ruleContent": "Transmission and Drive Any transmission may be used.", - "parentRuleCode": "1T8", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.4", - "ruleContent": "Drive Train Shields and Guards", - "parentRuleCode": "1T8", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.4.1", - "ruleContent": "Exposed high-speed final drivetrain equipment such as Continuously Variable Transmissions (CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives and clutch drives, must be fitted with scatter shields in case of failure. The final drivetrain shield must cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley. The final drivetrain shield must start and end parallel to the lowest point of the chain wheel/belt/pulley. (See Figure 22) Body panels or other existing covers are not acceptable unless constructed from approved materials per T8.4.3 or T8.4.4. Note: If equipped, the engine drive sprocket cover may be used as part of the scatter shield system.", - "parentRuleCode": "1T8.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.4.2", - "ruleContent": "Perforated material may not be used for the construction of scatter shields.", - "parentRuleCode": "1T8.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.4.3", - "ruleContent": "Chain Drive - Scatter shields for chains must be made of at least 2.6 mm steel or stainless steel (no alternatives are allowed), and have a minimum width equal to three (3) times the width of the chain. The guard must be centered on the center line of the chain and remain aligned with the chain under all conditions.", - "parentRuleCode": "1T8.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.4.4", - "ruleContent": "Non-metallic Belt Drive - Scatter shields for belts must be made from at least 3.0 mm Aluminum Alloy 6061-T6, and have a minimum width that is equal to 1.7 times the width of the belt.", - "parentRuleCode": "1T8.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.4.5", - "ruleContent": "The guard must be centered on the center line of the belt and remain aligned with the belt under all conditions.", - "parentRuleCode": "1T8.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.4.6", - "ruleContent": "Attachment Fasteners - All fasteners attaching scatter shields and guards must be a minimum 6mm Metric Grade 8.8 or 1/4 inch SAE Grade 5 or stronger.", - "parentRuleCode": "1T8.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.4.7", - "ruleContent": "Finger Guards – Finger guards are required to cover any drivetrain parts that spin while the car is stationary with the engine running. Finger guards may be made of lighter material, sufficient to resist finger forces. Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard. Comment: Finger guards are intended to prevent finger intrusion into rotating equipment while the vehicle is at rest.", - "parentRuleCode": "1T8.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.5", - "ruleContent": "Integrity of systems carrying fluids – Tilt Test", - "parentRuleCode": "1T8", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.5.1", - "ruleContent": "During technical inspection, the car must be capable of being tilted to a forty-five degree (45°) angle without leaking fluid of any type.", - "parentRuleCode": "1T8.5", - "pageNumber": "0" - }, - { - "ruleCode": "1T8.5.2", - "ruleContent": "The tilt test will be conducted on hybrid cars with the fuel tank filled with either 3.7 litres of fuel or to 50 mm below the top of the filler neck (whichever is less), and on all cars with all other vehicle systems that contain fluids filled to their normal maximum capacity.", - "parentRuleCode": "1T8.5", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T9", - "ruleContent": "AERODYNAMIC DEVICES", - "pageNumber": "0" - }, - { - "ruleCode": "1T9.1", - "ruleContent": "Aero Dynamics and Ground Effects - General All aerodynamic devices must satisfy the following requirements:", - "parentRuleCode": "1T9", - "pageNumber": "0" - }, - { - "ruleCode": "1T9.2", - "ruleContent": "Location In plan view, no part of any aerodynamic device, wing, under tray or splitter can be: (a) Further forward than 460 mm forward of the fronts of the front tires (b) No further rearward than the rear of the rear tires. (c) No wider than the outside of the front tires or rear tires measured at the height of the hubs, whichever is wider.", - "parentRuleCode": "1T9", - "pageNumber": "0" - }, - { - "ruleCode": "1T9.3", - "ruleContent": "Wing Edges - Minimum Radii All wing leading edges must have a minimum radius 12.7 mm. Wing leading edges must be as blunt or blunter than the required radii for an arc of plus or minus 45 degrees (± 45°) centered on a plane parallel to the ground or similar reference plane for all incidence angles which lie within the range of adjustment of the wing or wing element. If leading edge slats or slots are used, both the fronts of the slats or slots and of the main body of the wings must meet the minimum radius rules.", - "parentRuleCode": "1T9", - "pageNumber": "0" - }, - { - "ruleCode": "1T9.4", - "ruleContent": "Other Edge Radii Limitations All wing edges, end plates, Gurney flaps, wicker bills, splitters undertrays and any other wing accessories must have minimum edge radii of at least 3 mm i.e., this means at least a 6 mm thick edge.", - "parentRuleCode": "1T9", - "pageNumber": "0" - }, - { - "ruleCode": "1T9.5", - "ruleContent": "Ground Effect Devices No power device may be used to move or remove air from under the vehicle except fans designed exclusively for cooling. Power ground effects are prohibited.", - "parentRuleCode": "1T9", - "pageNumber": "0" - }, - { - "ruleCode": "1T9.6", - "ruleContent": "Driver Egress Requirements", - "parentRuleCode": "1T9", - "pageNumber": "0" - }, - { - "ruleCode": "1T9.6.1", - "ruleContent": "Egress from the vehicle within the time set in Rule T4.8 “Driver Egress,” must not require any movement of the wing or wings or their mountings.", - "parentRuleCode": "1T9.6", - "pageNumber": "0" - }, - { - "ruleCode": "1T9.6.2", - "ruleContent": "The wing or wings must be mounted in such positions, and sturdily enough, that any accident is unlikely to deform the wings or their mountings in such a way to block the driver’s egress.", - "parentRuleCode": "1T9.6", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T10", - "ruleContent": "COMPRESSED GAS SYSTEMS AND HIGH PRESSURE HYDRAULICS", - "pageNumber": "0" - }, - { - "ruleCode": "1T10.1", - "ruleContent": "Compressed Gas Cylinders and Lines Any system on the vehicle that uses a compressed gas as an actuating medium must comply with the following requirements: (a) Working Gas -The working gas must be nonflammable, e.g. air, nitrogen, carbon dioxide.", - "parentRuleCode": "1T10", - "pageNumber": "0" - }, - { - "ruleCode": "1T10.2", - "ruleContent": "High Pressure Hydraulic Pumps and Lines The driver and anyone standing outside the car must be shielded from any hydraulic pumps and lines with line pressures of 300 psi (2100 kPa) or higher. The shields must be steel or aluminum with a minimum thickness of 1 mm. Note: Brake and hydraulic clutch lines are not classified as “hydraulic pump lines” and as such, are excluded from T10.2.", - "parentRuleCode": "1T10", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T11", - "ruleContent": "FASTENERS", - "pageNumber": "0" - }, - { - "ruleCode": "1T11.1", - "ruleContent": "Fastener Grade Requirements", - "parentRuleCode": "1T11", - "pageNumber": "0" - }, - { - "ruleCode": "1T11.1.1", - "ruleContent": "All threaded fasteners utilized in the driver’s cell structure, plus the steering, braking, driver’s harness and suspension systems must meet or exceed, SAE Grade 5, Metric Grade 8.8 and/or AN/MS specifications.", - "parentRuleCode": "1T11.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T11.1.2", - "ruleContent": "The use of button head cap, pan head, flat head, round head or countersunk screws or bolts in ANY location in the following systems is prohibited: (a) Driver’s cell structure, (b) Impact attenuator attachment (c) Driver’s harness attachment (d) Steering system (e) Brake system (f) Suspension system.", - "parentRuleCode": "1T11.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T11.2", - "ruleContent": "Securing Fasteners", - "parentRuleCode": "1T11", - "pageNumber": "0" - }, - { - "ruleCode": "1T11.2.1", - "ruleContent": "All critical bolt, nuts, and other fasteners on the steering, braking, driver’s harness, and suspension must be secured from unintentional loosening by the use of positive locking mechanisms. Positive locking mechanisms are defined as those that: (a) The Technical Inspectors (and the team members) are able to see that the device/system is in place, i.e. it is visible, AND (b) The “positive locking mechanism” does not rely on the clamping force to apply the “locking” or anti-vibration feature. In other words, if it loosens a bit, it still prevents the nut or bolt from coming completely loose. See Figure 23 Positive locking mechanisms include: (a) Correctly installed safety wiring (b) Cotter pins (c) Nylon lock nuts (where the temperature does not exceed 80 O C) (d) Prevailing torque lock nuts Note: Lock washers, bolts with nylon patches, and thread locking compounds, e.g. Loctite®, DO NOT meet the positive locking requirement. Figure 23 - Examples of positive locking nuts", - "parentRuleCode": "1T11.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.1.2", - "ruleContent": "There must be a minimum of two (2) full threads projecting from any lock nut.", - "parentRuleCode": "1T1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.1.3", - "ruleContent": "All spherical rod ends and spherical bearings on the steering or suspension must be in double shear or captured by having a screw/bolt head or washer with an O.D. that is larger than spherical bearing housing I.D.", - "parentRuleCode": "1T1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T1.1.4", - "ruleContent": "Adjustable tie-rod ends must be constrained with a jam nut to prevent loosening.", - "parentRuleCode": "1T1.1", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T2", - "ruleContent": "TRANSPONDERS", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.1", - "ruleContent": "Transponders", - "parentRuleCode": "1T2", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.1.1", - "ruleContent": "Transponders will be used as part of the timing system for the Formula Hybrid + Electric competition.", - "parentRuleCode": "1T2.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.1.2", - "ruleContent": "Each team is responsible for having a functional, properly mounted transponder of the specified type on their vehicle. Vehicles without a specified transponder will not be allowed to compete in any event for which a transponder is used for timing and scoring.", - "parentRuleCode": "1T2.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.1.3", - "ruleContent": "All vehicles must be equipped with at least one MYLAPS Car/Bike Rechargeable Power Transponder or MYLAPS Car/Bike Direct Power Transponder 7 . Note 1: Except for their name, AMB TranX260 transponders are identical to MYLAPS Car/Bike Transponders and comply with this rule. If you own a functional AMB TranX260 it does not need to be replaced. Note 2: It is the responsibility of the team to ensure that electrical interference from their vehicle does not stop the transponder from functioning correctly", - "parentRuleCode": "1T2.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T2.2", - "ruleContent": "Transponder Mounting – All Events The transponder mounting requirements are: (a) Orientation – The transponder must be mounted vertically and orientated so the number can be read “right-side up”. (b) Location – The transponder must be mounted on the driver’s right side of the car forward of the front roll hoop. The transponder must be no more than 60 cm above the track. (c) Obstructions – There must be an open, unobstructed line between the antenna on the bottom of the transponder and the ground. Metal and carbon fiber may interrupt the transponder signal. The signal will normally transmit through fiberglass and plastic. If the signal will be obstructed by metal or carbon fiber, a 10.2 cm diameter opening can be cut, the transponder mounted flush with the opening, and the opening covered with a material transparent to the signal. (d) Protection – Mount the transponder where it will be protected from obstacles. 7 Transponders are usually available for loan at the competition. Please ask the organizers well in advance to confirm availability.", - "parentRuleCode": "1T2", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T3", - "ruleContent": "VEHICLE IDENTIFICATION", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.1", - "ruleContent": "Car Number", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.1.1", - "ruleContent": "Each car will be assigned a number at the time of its entry into a competition.", - "parentRuleCode": "1T3.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.1.2", - "ruleContent": "Car numbers must appear on the vehicle as follows: (a) Locations: In three (3) locations: the front and both sides; (b) Height: At least 15.24 cm high; (c) Font: Block numbers (i.e. sans-serif characters). Italic, outline, serif, shadow, or cursive numbers are prohibited. (d) Stroke Width and Spacing between Numbers: At least 2.0 cm. (e) Color: Either white numbers on a black background or black numbers on a white background. No other color combinations will be approved. (f) Background shape: The number background must be one of the following: round, oval, square or rectangular. There must be at least 2.5 cm between the edge of the numbers and the edge of the background. (g) Clear: The numbers must not be obscured by parts of the car, e.g. wheels, side pods, exhaust system, etc.", - "parentRuleCode": "1T3.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.1.3", - "ruleContent": "While car numbers for teams registered for Formula Hybrid + Electric can be found on the “Registered Teams” section of the SAE Collegiate Design Series website, please be sure to check with Formula Hybrid +Electric officials to ensure these numbers are correct. Comment: Car numbers must be quickly read by course marshals when your car is moving at speed. Make your numbers easy to see and easy to read. Figure 24 - Example Car Number", - "parentRuleCode": "1T3.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.2", - "ruleContent": "School Name", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.2.1", - "ruleContent": "Each car must clearly display the school name (or initials – if unique and generally recognized) in roman characters at least 5 cm high on both sides of the vehicle. The characters must be placed on a high contrast background in an easily visible location.", - "parentRuleCode": "1T3.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.2.2", - "ruleContent": "The school name may also appear in non-roman characters, but the roman character version must be uppermost on the sides.", - "parentRuleCode": "1T3.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.3", - "ruleContent": "SAE & IEEE Logos", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.3.1", - "ruleContent": "SAE and IEEE logos must be prominently displayed on the front and/or both sides of the vehicle. Each logo must be at least 7 cm x 20 cm. The organizers will provide the following decals at the competition: (a) SAE, 7.6 cm x 20.3 cm in either White or Black. (b) IEEE, 11.4 cm x 30.5 cm (Blue only). Actual-size JPEGs may be downloaded from the Formula Hybrid + Electric website.", - "parentRuleCode": "1T3.3", - "pageNumber": "0" - }, - { - "ruleCode": "1T3.4", - "ruleContent": "Technical Inspection Sticker Space Technical inspection stickers will be placed on the upper nose of the vehicle. Cars must have a clear and unobstructed area at least 25.4 cm wide x 20.3cm high on the upper front surface of the nose along the vehicle centerline.", - "parentRuleCode": "1T3", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T4", - "ruleContent": "EQUIPMENT REQUIREMENTS", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.1", - "ruleContent": "Driver’s Equipment The equipment specified below must be worn by the driver anytime he or she is in the cockpit with the engine running or with the tractive system energized.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.2", - "ruleContent": "Helmet", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.2.1", - "ruleContent": "A well-fitting, closed face helmet that meets one of the following certifications and is labeled as such: (a) Snell K2010, K2015, K2020, M2010, M2015, M2020, SA2010, SAH2010, SA2015, SA2020, EA2016 (b) SFI 31.1/2020, SFI 41.1/2020 (c) FIA 8859-2015, FIA 8860-2004, FIA 8860-2010, FIA 8860-2016, FIA 8860-2018. Open faced helmets and off-road/motocross helmets (helmets without integrated face shields) are not approved.", - "parentRuleCode": "1T4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.2.2", - "ruleContent": "All helmets to be used in the competition must be presented during Technical Inspection where approved helmets will be stickered. The organizer reserves the right to impound all non- approved helmets until the end of the competition.", - "parentRuleCode": "1T4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.3", - "ruleContent": "Balaclava A balaclava which covers the driver’s head, hair and neck, made from acceptable fire resistant material as defined in T14.12, or a full helmet skirt of acceptable fire resistant material. The balaclava requirement applies to drivers of either gender, with any hair length.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.4", - "ruleContent": "Eye Protection An impact resistant face shield, made from approved impact resistant materials. The face shields supplied with approved helmets (See T14.2 above) meet this requirement.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.5", - "ruleContent": "Suit A fire-resistant suit that covers the body from the neck down to the ankles and the wrists. One (1) piece suits are required. The suit must be in good condition, i.e. it must have no tears or open seams, or oil stains that could compromise its fire-resistant capability. The suit must be certified to one of the following standards and be labeled as such: Table 7 – SFI / FIA Standards Logos Note: An SFI 3-2A/1 or 3.4/1 (single layer) suit is ONLY allowed WITH fire resistant underwear. -FIA 8856-2018 -SFI 3.4/5 -FIA Standard 8856-1986 -SFI 3-2A/1 but only when used with fire resistant, e.g. Nomex, underwear that covers the body from wrist to ankles. -SFI 3-2A/5 (or higher) - FIA Standard 8856-2000", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.6", - "ruleContent": "Underclothing All drivers should wear fire resistant underwear (long pants and long sleeve top) under their approved driving suit. This fire resistant underwear must be made from acceptable fire resistant material and cover the driver’s body completely from the neck down to the ankles and wrists. Note: If drivers do not wear fire resistant long underwear, they should wear cotton underwear under the approved driving suit. Tee-shirts, or other undergarments made from Nylon or any other synthetic materials may melt when exposed to high heat.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.7", - "ruleContent": "Socks Socks made from an accepted fire resistant material, e.g. Nomex, which cover the bare skin between the driver’s suit and the boots or shoes. Socks made from wool or cotton are acceptable. Socks of nylon or polyester are not acceptable.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.8", - "ruleContent": "Shoes Shoes of durable fire resistant material and which are in good condition (no holes worn in the soles or uppers).", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.9", - "ruleContent": "Gloves Fire resistant gloves made from made from acceptable fire resistant material as defined in T14.12.Gloves of all leather construction or fire resistant gloves constructed using leather palms with no insulating fire resisting material underneath are not acceptable.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.10", - "ruleContent": "Arm Restraints Arm restraints certified and labeled to SF1 standard 3.3, or a commercially manufactured equivalent, must be worn such that the driver can release them and exit the vehicle unassisted regardless of the vehicle’s position.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.11", - "ruleContent": "Driver’s Equipment Condition All driving apparel covered by ARTICLE T14 must be in good condition. Specifically, driving apparel must not have any tears, rips, open seams, areas of significant wear or abrasion or stains which might compromise fire resistant performance.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.12", - "ruleContent": "Fire Resistant Material For the purpose of this section some, but not all, of the approved fire resistant materials are: Carbon X, Indura, Nomex, Polybenzimidazole (commonly known as PBI) and Proban.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "1T4.13", - "ruleContent": "Synthetic Material – Prohibited T-shirts, socks or other undergarments (not to be confused with FR underwear) made from nylon or any other synthetic material which will melt when exposed to high heat are prohibited.", - "parentRuleCode": "1T4", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T5", - "ruleContent": "OTHER REQUIRED EQUIPMENT", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1", - "ruleContent": "Fire Extinguishers", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1.1", - "ruleContent": "Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers.", - "parentRuleCode": "1T5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1.2", - "ruleContent": "Extinguishers of larger capacity (higher numerical ratings) are acceptable.", - "parentRuleCode": "1T5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.1.3", - "ruleContent": "All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows “FULL”.", - "parentRuleCode": "1T5.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.2", - "ruleContent": "Special Requirements Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at least two (2) additional extinguishers/material (at least 5 lb or equivalent) of the required type must be procured and accompany the car at all times. As recommendations vary, teams are advised to consult the rules committee before purchasing expensive extinguishers that may not be necessary.", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.3", - "ruleContent": "Chemical Spill Absorbent Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must be presented at technical inspection.", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.4", - "ruleContent": "Insulated Gloves Insulated gloves are required, rated for at least the voltage in the TSV system, with protective over-gloves.", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.4.1", - "ruleContent": "Electrical gloves require testing by a qualified company and must have a test date printed on them that is within 14 months of the competition.", - "parentRuleCode": "1T5.4", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.5", - "ruleContent": "Safety Glasses Safety glasses must be worn as specified in section D10.7", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.6", - "ruleContent": "MSDS Sheets Materials Safety Data Sheets (MSDS) for the accumulator devices are required and must be included in the ESF.", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "1T5.7", - "ruleContent": "Additional Any special safety equipment called for in the MSDS, for example correct gloves recommended for handling any electrolyte material in the accumulator.", - "parentRuleCode": "1T5", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE T6", - "ruleContent": "ON-BOARD CAMERAS", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.1", - "ruleContent": "Mounts The mounts for video/photographic cameras must be of a safe and secure design.", - "parentRuleCode": "1T6", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.1.1", - "ruleContent": "All camera installations must be approved at Technical Inspection.", - "parentRuleCode": "1T6.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.1.2", - "ruleContent": "Helmet mounted cameras are prohibited.", - "parentRuleCode": "1T6.1", - "pageNumber": "0" - }, - { - "ruleCode": "1T6.1.3", - "ruleContent": "The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a minimum of 2 points on different sides of the camera body. Plastic or elastic attachments are not permitted. If a tether is used to restrain the camera, the tether length must be limited so that the camera cannot contact the driver.", - "parentRuleCode": "1T6.1", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE IC1", - "ruleContent": "INTERNAL COMBUSTION ENGINE IC1.1 Engine Limitation Engines must be Internal Combustion, four-stroke piston engines, with a maximum displacement of 250cc for spark ignition engines and 310cc for diesel engines and be either: (a) Modified or custom fabricated. (See section IC1.2) OR (b) Stock – defined as: (i) Any single cylinder engine, OR (ii) Any twin cylinder engine from a motorcycle approved for licensed use on public roads, OR (iii) Any commercially available “industrial” IC engine meeting the above displacement limits. Note: If you are not sure whether or not your engine qualifies as “stock”, contact the organizers. IC1.2 Permitted modifications to a stock engine are: (a) Modification or removal of the clutch, primary drive and/or transmission. (b) Changes to fuel mixture, ignition or cam timings. (c) Replacement of camshaft. (Any lobe profile may be used.) (d) Replacement or modification of any exhaust system component. (e) Replacement or modification of any intake system component; i.e., components upstream of (but NOT including) the cylinder head. The addition of forced induction will move the engine into the modified category. (f) Modifications to the engine casings. (This does not include the cylinders or cylinder head). (g) Replacement or modification of crankshafts for the purpose of simplifying mechanical connections. (Stroke must remain stock.) IC1.3 Engine Inspection The organizers reserve the right to tear down any number of engines to confirm conformance to the rules. The initial measurement will be made externally with a measurement accuracy of one (1) percent. When installed to and coaxially with spark plug hole, the measurement tool has dimensions of 381 mm long and 30 mm diameter. Teams may choose to design in access space for this tool above each spark plug hole to reduce time should their vehicle be inspected.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE IC2", - "ruleContent": "FUEL AND FUEL SYSTEM IC2.1 Fuel IC2.1.1 All fuel at the Formula Hybrid + Electric Competition will be provided by the organizer. IC2.1.2 During all performance events the cars must be operated with the fuels provided by the organizer. IC2.1.3 The fuels provided at the Formula Hybrid + Electric Competition are: (a) Gasoline (Sunoco Optima) Note: More information including the fuel energy equivalencies, and a link for the Sunoco fuel specifications are given in Appendix A", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE IC3", - "ruleContent": "EXHAUST SYSTEM AND NOISE CONTROL IC3.1 Exhaust System General IC3.1.1 Exhaust Outlet The exhaust must be routed so that the driver is not subjected to fumes at any speed considering the draft of the car. IC3.1.2 The exhaust outlet(s) must not extend more than 45 cm behind the centerline of the rear wheels, and must be no more than 60 cm above the ground.", - "pageNumber": "0" - }, - { - "ruleCode": "PART EV", - "ruleContent": "ELECTRICAL POWERTRAINS AND SYSTEMS", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV1", - "ruleContent": "ELECTRICAL SYSTEMS OVERVIEW EV1.1 Definitions ● Accumulator - Batteries and/or capacitors that store the electrical energy to be used by the tractive system. This term includes both electrochemical batteries and ultracapacitor devices. ● Accumulator Container - A housing that encloses the accumulator devices, isolating them both physically and electrically from the rest of the vehicle. ● Accumulator Segment - A subgroup of accumulator devices that must adhere to the voltage and energy limits listed in Table 8. ● AMS – Accumulator Monitoring System. EV9.6 ● Barrier – A material, usually rigid, that resists a flow of charge. Most often used to provide a structural barrier and/or increase the creepage distance between two conductors. See Figure 36. ● BRB – Big Red Button. EV7.5 and EV7.6 ● Creepage Distance - The shortest distance measured along the surface of the insulating material between two conductors. See Figure 36. ● Enclosure – An insulated housing containing electrical circuitry. ● GLV Grounded Low Voltage system - Every conductive part that is not part of the tractive system. (This includes the GLV electrical system, frame, conductive housings, carbon-fiber components etc.) ● GLVMS – Grounded Low Voltage Master Switch. EV7.3 ● IMD – Insulation Monitoring Device. EV9.4 ● Insulation – A material that physically resists a flow of charge. May be rigid or flexible. ● Isolation - Electrical, or “Galvanic” isolation between two or more electrical conductors such that if a voltage potential exists between them, no current will flow. ● Region – A design/construction methodology wherein enclosures are divided by insulating barriers and/or spacing into TS and GLV sections, simplifying the electrical isolation of the two systems. ● Separation – A physical distance (“spacing”) maintained between conductors. ● SMD – Segment Maintenance Disconnect. EV2.7 ● ESOK – Electrical Systems OK. EV9.3 ● Tractive System (TS) - The drive motors, the accumulators and every part that is electrically connected to either of those components. ● Tractive System Enclosure - A housing that contains TS components other than accumulator devices. ● TSAL – Tractive System Active Lamp. EV9.1 ● TS/GLV – The relationship between two electrical conductors; one being part of the TS system and the other GLV. ● TS/TS – The relationship between two TS conductors. This designation implies that they are at different potentials and/or polarities. ● TSMP – Tractive System Measuring Points. EV10.3", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV2", - "ruleContent": "ENERGY STORAGE (ACCUMULATORS) EV2.1 Permitted Devices EV1.1.4 The following accumulator devices are acceptable: batteries (e.g. lithium-ion, NiMH, lead acid and similar battery chemistries) and capacitors, such as super caps or ultracaps. The following accumulator devices are not permitted: molten salt batteries, thermal batteries, fuel cells, mechanical storage such as flywheels or hydraulic accumulators. EV1.1.5 Accumulator systems using pouch-type lithium-ion cells must be commercially constructed and specifically approved by the Formula Hybrid + Electric rules committee or must comply with the requirements detailed in ARTICLE EV11. EV1.1.6 Manufacturers data sheets showing the rated specification of the accumulator cell(s) which are used must be provided in the ESF along with their number and configurations. EV2.2 Accumulator Segments EV1.1.7 The accumulator segments must be separated so that the segment limits in Table 8 are met by an electrically insulating barrier meeting the TS/GLV requirements in EV5.4. For all lithium based cell chemistries, these barriers must also be fire resistant (according to UL94-V0, FAR25 or equivalent). EV1.1.8 The barrier must be non-conducting, fire retardant (UL94V0) and provide a complete barrier to the spread of arc or fire. It must have a fire resistance equal to 1/8\" FR4 fiberglass, such as Garolite G-9 11 . EV2.3 Accumulator Containers EV1.1.9 All devices which store the tractive system energy must be enclosed in (an) accumulator container(s). EV1.1.10 Each accumulator container must be labeled with the words “ACCUMULATOR – ALWAYS ENERGIZED”. (This is in addition to the TSV label requirements in EV3.1.5). Labels must be 3 inches by 9 inches with bold red lettering on a white background and be clearly visible on all sides of the accumulator container that could be exposed during operation and/or maintenance of the car and at least one such label must be visible with the bodywork in place 12 . Figure 28 - Accumulator Sticker 11 https://www.mcmaster.com/grade-g-9-garolite/ 12 Self-adhesive stickers are available from the organizers on request.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV2", - "ruleContent": "TRACTIVE SYSTEM WIRING AND CONSTRUCTION EV2.13 Positioning of tractive system parts EV2.1.1 Housings and/or covers must prevent inadvertent human contact with any part of the tractive system circuitry. This includes people working on or inside the vehicle. Covers must be secure and adequately rigid. Body panels that must be removed to access other components, etc. are not a substitute for enclosing tractive system conductors. EV2.1.2 Tractive system components and wiring must be physically protected from damage by rotating and/or moving parts and must be isolated from fuel system components. EV2.1.3 Finger Probe Test: Inspectors must not be able to touch any tractive system electrical connection using a 10 cm long, 0.6 cm diameter non-conductive test probe. Figure 33 - Finger Probe EV2.1.4 Housings constructed of electrically conductive material must have a minimum-resistance connection to GLV system ground. (See: ARTICLE EV8). EV2.1.5 Every housing or enclosure containing parts of the tractive system must be labeled with the words “Danger”, “High Voltage” and a black lightning bolt on a yellow background. The label must be at least 4 x 6 cm. (See Figure 34 below.) Figure 34 - High Voltage Label", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV3", - "ruleContent": "GROUNDED LOW VOLTAGE SYSTEM EV2.19 Grounded Low Voltage System (GLV) EV3.1.1 The GLV system may not have a voltage greater than that listed in Table 8. EV3.1.2 All GLV batteries must be attached securely to the frame. EV3.1.3 The hot (ungrounded) terminal of the battery must be insulated. EV3.1.4 One terminal of the GLV battery or other GLV power source must be connected to the chassis by a stranded ground wire or flexible strap, with a minimum size of 12 AWG or equivalent cross-section. For vehicles without metal chassis members, the GLV system must be connected to conductive parts to meet the grounding requirements in EV8.1.2. EV3.1.5 The ground wire must run directly from the battery to the nearest frame ground and must be properly secured at both ends. Note: Through-bolting a ring terminal to a gusset plate or dedicated tab welded to the frame is highly recommended. EV3.1.6 Any wet-cell battery located in the driver compartment must be enclosed in a nonconductive marine-type container or equivalent and include a layer of 1.5 mm aluminum or equivalent between the container and driver. EV3.1.7 GLV Battery Pack 1. Team-constructed GLV batteries are allowed. (i) GLV batteries up to 16.8V (4s LiIon) may be used without a battery management system. (ii) GLV batteries 16.8V< MaxV<60V must measure the voltage of all series cells and the temperature of 30% of cells. 2. The GLV battery shall have appropriate over-current circuit protection. 3. Cells wired in parallel must have branch-level overcurrent protection. 4. Team-constructed GLV batteries shall be housed in a container meeting min. firewall rules (1.6mm aluminum baseline) with a vent/pressure relief path directed away from the driver. 5. GLV / TSV isolation rules still apply. EV3.1.8 Orange wire and/or conduit may not be used in GLV wiring. Exception: multi-conductor telecom-type cables containing orange color-coded wires may be used.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV4", - "ruleContent": "TRACTIVE SYSTEM VOLTAGE ISOLATION Most Formula Hybrid + Electric vehicles contain voltages that could cause injury or death if they came in contact with a human body. In addition, all Formula Hybrid + Electric accumulator systems are capable of storing enough energy to cause injury, blindness or death if that energy is released unintentionally. To minimize these risks, all tractive system components and wiring must at a minimum comply with the following rules. EV2.20 Isolation Requirements EV4.1.1 All TS wiring and components must be galvanically (electrically) isolated from GLV by separation and/or insulation. EV4.1.2 All interaction between TS and GLV must be by means of galvanically isolated devices such as opto-couplers, transformers, digital isolators or isolated dc-dc converters. EV4.1.3 All connections from external devices such as laptops to a tractive system component must be galvanically isolated, and include a connection between the external device ground and the vehicle frame ground. EV4.1.4 All isolation devices must be rated for an isolation voltage of at least twice the maximum TS voltage. EV2.21 General EV4.1.5 Tractive system and GLV conductors must not run through the same conduit. EV4.1.6 Tractive system and GLV wiring must not both be present in one connector. Connectors with an integral interlock such as the Amphenol SurLok Plus are exempted from this requirement. EV4.1.7 TS wiring must be separated from the driver's compartment by a firewall. EV4.1.8 TS wiring must not be present behind the instrument panel. TS wiring must not be present in the cockpit unless enclosed in conduit and separated from the driver by a firewall. TS potential must not be present on accelerator pedal or other controls in the cockpit. EV2.22 Insulation, Spacing and Segregation EV4.1.9 Tractive system main current path wiring and any TS circuits that are not protected by over- current devices must be constructed using spacing, insulation, or both, in order to prevent short circuits between TS conductors. Minimum spacings are listed in Table 12. Insulation used to meet this requirement must adhere to EV5.4. EV4.1.10 Where GLV and TS circuits are present in the same enclosure, they must be segregated (in addition to any insulating covering on the wire) by: 1. at least the distance specified in Table 12 OR 2. a barrier material meeting the TS/GLV requirements of EV5.4 EV4.1.11 All required spacings must be clearly defined. Components and cables must be securely restrained to prevent movement and maintain spacing. Note: Grouping TS and GLV wiring into separate regions of an enclosure makes it easier to implement spacing or barriers to meet EV5.3.2", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV3", - "ruleContent": "FUSING - GENERAL EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging system) must be appropriately fused. EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating of any electrical component that it protects. This includes wires, bus bars, battery cells or other conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current rating may be used for TS wiring if greater than the Appendix E value. Note: Many fuses have a peak current capability significantly higher than their continuous current capability. Using such a fuse allows using a relatively small wire for a high peak current, because the rules only require the wire to be sized for the continuous current rating of the fuse. EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating equal to or greater than the maximum voltage of the system in which they are used 25 . EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit current of the system that it protects. EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an uncontrolled energy source (e.g., a battery). Note: For this rule, a battery is considered an energy source even for wiring intended for charging the battery, because current could flow in the opposite direction in a fault scenario. EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at the branching point, if the branch wire is too small to be protected by the main fuse for the circuit. Note: For further guidance on fusing, see the Fusing Tutorial found here: https://drive.google.com/drive/u/0/search?q=fusing%20tutorial 25 Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating must be specifically called out in order for the fuse to be accepted as DC rated.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV4", - "ruleContent": "SHUTDOWN CIRCUIT AND SYSTEMS EV4.1 Shutdown Circuit The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the flow of current through this loop is interrupted, the AIRs will open, disconnecting the vehicle’s high voltage systems from the source of that voltage within the accumulator container. Shutdown may be initiated by several devices having different priorities as shown in the following table. Figure 37 - Priority of shutdown sources EV4.1.28 The shutdown circuit must consist of at least: 1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 2. Tractive System Master Switch (TSMS) See: EV7.4 3. Two side mounted shutdown buttons (BRBs) See: EV7.5 4. Cockpit-mounted shutdown button. See: EV7.6 5. Brake over-travel switch. See: T7.3 6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: EV7.9 and Figure 38. 7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). See: EV2.11 and Figure 38. 8. All required interlocks. 9. Both IMD and AMS must use mechanical latching means as described in Appendix G. Latch reset must be by manual push button. Logic-controlled reset is not allowed.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV5", - "ruleContent": "GROUNDING EV4.10 General EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a resistance below 300 mΩ to GLV system ground. Accessible parts are defined as those that are exposed in the normal driving configuration or when the vehicle is partially disassembled for maintenance or charging. EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon fiber parts, etc.) that could potentially become energized (including post collision or accident), no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system ground. NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or similar modifications to keep the ground resistance below 100 ohms. EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV system ground. EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 AWG and be stranded. Note: For GLV system grounding conductor size see EV4.1.4. EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the vehicle which is likely to be conductive, for example the driver's harness attachment bolts. Where no convenient conductive point is available then an area of coating may be removed. Note: If the resistance measurement displayed by a conventional two-wire meter is slightly higher than the requirement, a four-terminal measurement technique may be used. If the four- terminal measurement (which is more accurate) meets the requirement, then the vehicle passes the test. See: https://en.wikipedia.org/wiki/Four-terminal_sensing EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS communication) will be required to document and demonstrate shutdown equivalent to BRB operation if CAN communication is interrupted. A solution to this requirement may be a separate device with relay output that monitors CAN traffic.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV6", - "ruleContent": "SYSTEM STATUS INDICATORS EV4.11 Tractive System Active Lamp (TSAL) EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop which must be lit and clearly visible any time the AIR coils are energized. EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green for TS not present are also acceptable. EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles which are covered by the main roll hoop) even in very bright sunlight. EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The person's minimum eye height is 1.6", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV6.m", - "ruleContent": "NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily visible during track operations the team may not be allowed to compete in any dynamic event before the problem is solved. EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator containers is above a threshold calculated as the higher value of 60V or 50% of the nominal accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at voltages below 20V. The TSAL system must be powered entirely by the tractive system and must be directly controlled by voltage being present at the output of the accumulator (no software control is permitted). EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. Note: This requirement may be met by locating an isolated dc-dc converter inside a TS enclosure, and connecting the output of the dc-dc converter to the lamp. (Because the voltage driving the lamp is considered GLV, one side of the voltage driving the lamps must be ground-referenced by connecting it to the frame in order to comply with EV4.1.4.) EV4.12 Ready-to-Drive Sound EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 seconds, when it is ready to drive. (See EV7.7) Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque encoder / accelerator pedal. EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter 28 . EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one in the front, and one from each side of the vehicle. 28 Some compliant devices can be found here: https://www.mspindy.com/", - "parentRuleCode": "ARTICLE EV6", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV5", - "ruleContent": "ELECTRICAL SYSTEM TESTS Note: During electrical tech inspection, these tests will normally be done in the following order: IMD test, insulation measurement, AMS function then Rain test. EV5.1 Insulation Monitoring Device (IMD) Test EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive vehicle parts while the tractive system is active, as shown in the example below. EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault resistance of 250 ohm/volt (50% below the response value). Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take part in any dynamic event if any of the seals are broken until the IMD test is successfully passed again. Figure 43 – Insulation Monitoring Device Test EV5.2 Insulation Measurement Test EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive system and control system ground. The available measurement voltages are 250 V, 500 V and 750 V DC. All cars will be measured with the next available voltage level. For example, a 175 V system will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V system will be measured with 750 V etc. EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least 500 ohm/volt related to the maximum nominal tractive system operation voltage. EV5.3 Tractive System Measuring Points (TSMP) The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, EV2.8.3.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV1", - "ruleContent": "POUCH TYPE LITHIUM-ION CELLS Important Note: Designing an accumulator system utilizing pouch cells is a substantial engineering undertaking, which may be avoided by using prismatic or cylindrical cells. EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion and compression requirements, mechanical constraint, and tab connections. EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, for review, in their ESF1 and ESF2 submissions.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV6", - "ruleContent": "HIGH VOLTAGE PROCEDURES & TOOLS The following rules relate to procedures that must be followed during the Formula Hybrid + Electric competition. It is strongly recommended that these or similar rules be instituted at the team's home institutions. It is also important that all team members view the Formula Hybrid + Electric electrical safety lecture, which can be found here: https://www.youtube.com/watch?v=f_zLdzp1egI&feature=youtu.be EV6.1 Working on Tractive Systems or accumulators EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and that all team members know and follow. EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated by using the maintenance plugs. (See EV2.7). EV6.1.42 If the organizers have provided a “Designated Charging Area”, then opening of or working on accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical Tech Inspection. EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. EV6.1.44 Whenever the accumulator is open or being worked on, a “Danger High Voltage” sign (or other warning device provided by the organizers) must be displayed. Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. EV6.2 Charging EV6.1.45 If the organizers have provided a “Designated Charging Area”, then charging tractive system accumulators is only allowed inside this area. EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a (minimum) 16 AWG green wire during charging. Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the competition site. EV6.1.47 If the organizers have provided “High Voltage” signs and/or beacons, these must be displayed prominently while charging. EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable accumulator container. EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the accumulators are charged externally or internally) must have a prominent sign with the following data: 1. Team name 2. RSO Name with cell phone number(s). EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV7", - "ruleContent": "REQUIRED ELECTRICAL DOCUMENTATION EV7.1 Electrical System Form – Part 1 Part 1 of the ESF requests preliminary design information. This is so that the technical reviewers can identify areas of concern early and provide feedback to the teams. EV7.2 Electrical System Form – Part 2 Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. This information must be reentered in Part 2. However it is not expected that the fields will contain identical information, since many aspects of a design will change as a project evolves. EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the voltage level, the topology, the wiring in the car and the construction and build of the accumulator(s). EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and show that none of these ratings are exceeded (including wiring components). This includes stress caused by the environment e.g. high temperatures, vibration, etc. EV6.1.67 A template containing the required structure for the ESF will be made available online. EV6.1.68 The ESF must be submitted as a Microsoft Word format file.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE EV7", - "ruleContent": "- ACRONYMS AC Alternating Current AIR Accumulator Isolation Relay AMS Accumulator Management System BRB Big Red Buttons (Emergency shutdown switches) ESF Electrical System Form ESOK Electrical Systems OK Lamp GLV Grounded Low Voltage GLVMS Grounded Low Voltage Master Switch HVD High Voltage Disconnect IMD Insulation Monitoring Device PCB Printed Circuit Board SMD Segment Maintenance Disconnect TS Tractive System TSMP Tractive System Measuring Point TSMS Tractive System Master Switch TSV Tractive System Voltage TSAL Tractive System Active Lamp", - "pageNumber": "0" - }, - { - "ruleCode": "PART S1", - "ruleContent": "STATIC EVENTS Presentation 150 points Design 200 points Total 350 points Table 15 – Static Event Maximum Scores", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE S1", - "ruleContent": "TECHNICAL INSPECTION", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.1", - "ruleContent": "Objective", - "parentRuleCode": "1S1", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.1.1", - "ruleContent": "The objective of technical inspection is to determine if the vehicle meets the FH+E rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules.", - "parentRuleCode": "1S1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.1.2", - "ruleContent": "For purposes of interpretation and inspection the violation of the intent of a rule is considered a violation of the rule itself.", - "parentRuleCode": "1S1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.1.3", - "ruleContent": "Technical inspection is a non-scored activity.", - "parentRuleCode": "1S1.1", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2", - "ruleContent": "Inspection & Testing Requirement", - "parentRuleCode": "1S1", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2.1", - "ruleContent": "Each vehicle must pass all parts of technical inspection and testing, and bear the inspection stickers, before it is permitted to participate in any dynamic event or to run on the practice track. The exact procedures and instruments employed for inspection and testing are entirely at the discretion of the Chief Technical Inspector.", - "parentRuleCode": "1S1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2.2", - "ruleContent": "Technical inspection will examine all items included on the Inspection Form found on the Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) plus any other items the inspectors may wish to examine to ensure conformance with the Rules.", - "parentRuleCode": "1S1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2.3", - "ruleContent": "All items on the Inspection Form must be clearly visible to the technical inspectors.", - "parentRuleCode": "1S1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2.4", - "ruleContent": "Visible access can be provided by removing body panels or by providing removable access panels.", - "parentRuleCode": "1S1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2.5", - "ruleContent": "Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification and Repairs, it must remain in the “As-approved” condition throughout the competition and must not be modified.", - "parentRuleCode": "1S1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2.6", - "ruleContent": "Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final and are not permitted to be appealed.", - "parentRuleCode": "1S1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2.7", - "ruleContent": "Technical inspection is conducted only to determine if the vehicle complies with the requirements and restrictions of the Formula Hybrid + Electric rules.", - "parentRuleCode": "1S1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.2.8", - "ruleContent": "Technical approval is valid only for the duration of the specific Formula Hybrid + Electric competition during which the inspection is conducted.", - "parentRuleCode": "1S1.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.3", - "ruleContent": "Inspection Condition Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, complete and ready-to-run. Technical inspectors will not inspect any vehicle presented for inspection in an unfinished state. This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished.", - "parentRuleCode": "1S1", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.4", - "ruleContent": "Inspection Process Vehicle inspection will consist of five separate parts as follows: (a) Part 1: Preliminary Electrical Inspection Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the Preliminary Electrical Inspection. (b) Part 2: Scrutineering - Mechanical", - "parentRuleCode": "1S1", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.5", - "ruleContent": "Correction and Re-inspection", - "parentRuleCode": "1S1", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.5.1", - "ruleContent": "If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, then the team must correct the problem and have the car re-inspected.", - "parentRuleCode": "1S1.5", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.5.2", - "ruleContent": "The judges and inspectors have the right to re-inspect any vehicle at any time during the competition and require correction of non-compliance.", - "parentRuleCode": "1S1.5", - "pageNumber": "0" - }, - { - "ruleCode": "1S1.6", - "ruleContent": "Inspection Stickers Inspection stickers issued following the completion of any part of technical inspection must be placed on the upper nose of the vehicle as specified in T13.4 “Technical Inspection Sticker Space”. Inspection stickers are issued contingent on the vehicle remaining in the required condition throughout the competition. Inspection stickers may be removed from vehicles that are not in compliance with the rules or which are required to be re-inspected.", - "parentRuleCode": "1S1", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE S2", - "ruleContent": "PROJECT MANAGEMENT", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.1", - "ruleContent": "Project Management Objective The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team’s ability to structure and execute a project management plan that helps the team define and meet its goals. A well written project management plan will not only aid each team in producing a functional, rules compliant race car on-time, it will make it much easier to create the Change Management Report and Final Presentation components of the Project Management Event. Several resources are available to guide work in these areas. They can be found in Appendix C. No team should begin developing its project management plan without FIRST: (a) Reviewing “Application of the Project Management Method to Formula Hybrid + Electric”, by Dr. Edward March, former Formula Hybrid + Electric Chief Project Management Judge. (b) Viewing in its entirety Dr. March’s 12-part video series”Formula Hybrid + Electric Project Management”. (c) Reading “Formula Hybrid + Electric Project Management Event Scoring Criteria”, found in Appendix C of the Formula Hybrid + Electric Rules. (d) Watching an example of a “perfect score” presentation, from a previous competiton.", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.2", - "ruleContent": "Project Management Segments The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of a written project plan (2) a written change management report, and, (3) an oral final presentation assessing the overall project management experience to be delivered before a review board at the competition. Segment Points Project Plan Report 55 Change Management Report 40 Presentation 55 Total 150 Table 16 - Project Management Scoring", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.3", - "ruleContent": "Submission 1 -- Project Plan Report", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.3.1", - "ruleContent": "Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that reflects its goals and objectives for the upcoming competition, the management structure, the tasks that will be required to accomplish these objectives, and the time schedule over which these tasks will be performed. The topics covered in the Project Plan Report should include: (a) Scope: What will be accomplished, “SMART” goals and objectives (see Appendix C for more information), major deliverables and milestones.", - "parentRuleCode": "1S2.3", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.3.2", - "ruleContent": "This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of text. Appendices with supporting information may be attached to the back of the Project Plan. Note 1: Title pages, appendices and table-of-contents do not count as “pages”. Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date. Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project Management judges a one half hour online review session may be made available to each team.", - "parentRuleCode": "1S2.3", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.4", - "ruleContent": "Submission 2 – Change Management Report", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.4.1", - "ruleContent": "Following completion and acceptance of the formal project plan by student team members, the project team begins the execution phase. During this phase, members of the student team and other stakeholders must be updated on progress being made and on issues identified that put the project schedule at risk. The ability of the team to change direction or “pivot” in the face of risks is often a key factor in a team’s successful completion of the project. Changes to the plan are adopted and formally communicated through a change management report. Each team must submit one change management report. See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact due date.", - "parentRuleCode": "1S2.4", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.4.2", - "ruleContent": "These reports are not lengthy but are intended to clearly and concisely communicate the documented changes to the project scope and plan to the team that have been approved using the Change Management Process. See Appendix C for details on scoring criteria for this report. The topics covered in the progress report should include: A) Change Management Process: Detail the Change Management processes and platforms used by the team. At a minimum, the report is expected to cover:", - "parentRuleCode": "1S2.4", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.4.2.a", - "ruleContent": "what triggers the process", - "parentRuleCode": "1S2.4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.4.2.b", - "ruleContent": "how does information flow through the process", - "parentRuleCode": "1S2.4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.4.2.c", - "ruleContent": "how are final decisions transmitted to all team members", - "parentRuleCode": "1S2.4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.4.2.d", - "ruleContent": "team-created process flow diagram", - "parentRuleCode": "1S2.4.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.4.3", - "ruleContent": "The Change Management Report must not exceed two (2) pages. Appendices may be included with the Report Note 1: Appendix content does not count as “pages”. Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- hybrid.org/deadlines for the due date of the Change Management Report.", - "parentRuleCode": "1S2.4", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.5", - "ruleContent": "Submission Formats", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.5.1", - "ruleContent": "The Project Plan and Change Management Report must be submitted electronically in separate Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, drawings, and optional content).", - "parentRuleCode": "1S2.5", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.5.2", - "ruleContent": "These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g.: 999_University of SAE_Project Plan.doc(x) 999_University of SAE_ChangeManagement.doc(x)", - "parentRuleCode": "1S2.5", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.6", - "ruleContent": "Submission Deadlines The Project Plan and Change Management Report must be submitted by the date and time shown in the Action Deadlines. Submission instructions are in section A9.2. See section A9.3 for late submission penalties.", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.7", - "ruleContent": "Presentation", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.7.1", - "ruleContent": "Objective: Teams must convince a review board that the team’s project has been carefully planned and effectively and dynamically executed.", - "parentRuleCode": "1S2.7", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.7.2", - "ruleContent": "The Project Management presentation will be made on the static events day. Presentation times will be scheduled by the organizers and either posted in advance on the competition website or released during on-site registration (or both). Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable.", - "parentRuleCode": "1S2.7", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.7.3", - "ruleContent": "Teams that fail to make their presentation during their assigned time period will receive zero (0) points for that section of the event.", - "parentRuleCode": "1S2.7", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.8", - "ruleContent": "Presentation Format The presentation judges should be regarded as a project management or executive review board.", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.8.1", - "ruleContent": "Evaluation Criteria - Project Management presentations will be evaluated based on team’s accomplishments in project planning, execution, change management, and succession planning. Presentation organization and quality of visual aids as well as the presenters’ delivery, timing and the team’s response to questions will also be factors in the evaluation.", - "parentRuleCode": "1S2.8", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.8.2", - "ruleContent": "One or more team members will give the presentation to the judges. It is strongly suggested, although not required, that the project manager accompany the presentation team. All team members who will give any part of the presentation, or who will respond to the judge’s questions, must be in the podium area when the presentation starts and must be introduced to the judges. Team members who are part of this “presentation group” may answer the judge’s questions even if they did not speak during the presentation itself.", - "parentRuleCode": "1S2.8", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.8.3", - "ruleContent": "Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, posters, etc. to convey information relevant to their project management case that cannot be contained within a 12-minute presentation.", - "parentRuleCode": "1S2.8", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.8.4", - "ruleContent": "The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt the presentation itself.", - "parentRuleCode": "1S2.8", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.8.5", - "ruleContent": "Feedback on presentations will take place immediately following the eight (8) minute question and answer session. Judges and any team members present may ask questions. The maximum feedback time for each team is eight (8) minutes.", - "parentRuleCode": "1S2.8", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.8.6", - "ruleContent": "Formula Hybrid + Electric may record a team’s presentation for publication or educational purposes. Students have the right to opt out of being recorded - however they must notify the chief presentation judge in writing prior to the beginning of their presentation.", - "parentRuleCode": "1S2.8", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.9", - "ruleContent": "Data Projection Equipment Projection equipment is provided by the organizers. However, teams are advised to bring their own computer equipment in the event the organizer’s equipment malfunctions or is not compatible with their presentation software.", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "1S2.10", - "ruleContent": "Scoring Formula The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is then normalized as follows: 𝐹𝐼𝑁𝐴𝐿 𝑃𝑅𝑂𝐽𝐸𝐶𝑇 𝑀𝐴𝑁𝐴𝐺𝐸𝑀𝐸𝑁𝑇 𝑆𝐶𝑂𝑅𝐸 = 150 * (𝑃 𝑦𝑜𝑢𝑟 /𝑃 𝑚𝑎𝑥 ) Where: P max is the highest point score awarded to any team P your is the point score awarded to your team. Notes:", - "parentRuleCode": "1S2", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE S3", - "ruleContent": "DESIGN EVENT", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.1", - "ruleContent": "Design Event Objective The concept of the design event is to evaluate the engineering effort that went into the design of the car (or the substantial modifications to a prior year car), and how the engineering meets the intent of the market. The car that illustrates the best use of engineering to meet the design goals and the best understanding of the design by the team members will win the design event. Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and that in the Design event, teams are evaluated on their design. Components and systems that are incorporated into the design as finished items are not evaluated as a student designed unit, but are only assessed on the team’s selection and application of that unit. For example, teams that design and fabricate their own shocks are evaluated on the shock design itself as well as the shock’s application within the suspension system. Teams using commercially available shocks are evaluated only on selection and application within the suspension system.", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.2", - "ruleContent": "Submission Requirements", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.2.1", - "ruleContent": "Design Report - Judging will start with a Design Review before the event. The principal document submitted for the Design Review is a Design Report. This report must not exceed ten (10) pages, consisting drawings (see S3.4, “Vehicle Drawings”) and content to be defined by the team (photos, graphs, etc…). This document should contain a brief description of the vehicle and each category listed in Appendix D with the majority of the report specifically addressing the engineering, design features, and vehicle concepts new for this year's event. Include a list of different analysis and testing techniques (FEA, dynamometer testing, etc.). Evidence of this analysis and back-up data should be brought to the competition and be available, on request, for review by the judges. These documents will be used by the judges to sort teams into the appropriate design groups based on the quality of their review. Comment: Consider your Design Report to be the “resume of your car”.", - "parentRuleCode": "1S3.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.2.2", - "ruleContent": "Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the FH+E website. (Do not alter or re-format the template prior to submission.) Note: The design judges realize that final design refinements and vehicle development may cause the submitted figures to diverge slightly from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate.", - "parentRuleCode": "1S3.2", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.3", - "ruleContent": "Sustainability Requirement", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.3.1", - "ruleContent": "Instead of a Sustainability Report please add a Sustainability section to the Design Report answering both of the following prompts: (a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How have you improved these quantities compared to previous year vehicles? How might you improve this in your next vehicle? What components or design decisions are the biggest contributors to the emissions or efficiency, positively or negatively? (b) How does the vehicle's design and construction contribute to the recyclability and re-use of your vehicle, especially when it comes to accumulator storage?", - "parentRuleCode": "1S3.3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.4", - "ruleContent": "Vehicle Drawings", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.4.1", - "ruleContent": "The Design report must include all of the following drawings: (a) One set of 3 view drawings showing the vehicle from the front, top, and side. (b) A schematic of the high voltage wiring showing the wiring between the major components. (See section EV13.1) (c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all major high voltage components and the routing of high voltage wiring. The components shown must (at a minimum) include all those listed in the major sections of the ESF (See section EV13.1)", - "parentRuleCode": "1S3.4", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.5", - "ruleContent": "Submission Formats", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.5.1", - "ruleContent": "The Design Report must be submitted electronically in Adobe Acrobat™ Format files (*.pdf file). These documents must each be a single file (text, drawings, and optional content). These Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E assigned car number and the complete school name, e.g.: 999_University of SAE_Design.pdf", - "parentRuleCode": "1S3.5", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.5.2", - "ruleContent": "Design Spec Sheets must be submitted electronically in Microsoft Excel™ Format. The format of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula Hybrid + Electric assigned car number and the complete school name, e.g. 999_University of SAE_Specs.xls (or) 999_University of SAE_Specs.xlsx WARNING – Failure to exactly follow the above submission requirements may result in exclusion from the Design Event. If your files are not submitted in the required format or are not properly named then they cannot be included in the documents provided to the design judges and your team will be excluded from the event.", - "parentRuleCode": "1S3.5", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.6", - "ruleContent": "Excess Size Design Reports If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read and evaluated by the judges. Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text information on them will be scored.", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.7", - "ruleContent": "Submission Deadlines The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the event website once report is reviewed for accuracy. Teams should have a printed copy of this reply available at the competition as proof of submission in the event of discrepancy.", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.8", - "ruleContent": "Penalty for Late Submission or Non-Submission See section A9.3 for late submission penalties.", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.9", - "ruleContent": "Penalty for Unsatisfactory Submissions", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.9.1", - "ruleContent": "Teams that submit a Design Report or a Design Spec Sheet which is deemed to be unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. They may be allowed to compete, but receive a penalty of up to seventy five (75) points. Failure to fully document the changes made for the current year’s event to a vehicle used in prior FH+E events, or reuse of any part of a prior year design report, are just two examples of Unsatisfactory Submissions", - "parentRuleCode": "1S3.9", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.10", - "ruleContent": "Vehicle Condition", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.10.1", - "ruleContent": "With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, complete and ready-to-run. The judges will not evaluate any car that is presented at the design event in what they consider to be an unfinished state. Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. Note: Cars can be presented for design judging without having passed technical inspection, or if final tuning and setup is still in progress.", - "parentRuleCode": "1S3.10", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.11", - "ruleContent": "Judging Criteria The design judges will evaluate the engineering effort based upon the team’s Design Report, Spec Sheet, responses to questions and an inspection of the car. The design judges will inspect the car to determine if the design concepts are adequate and appropriate for the application (relative to the objectives set forth in the rules). It is the responsibility of the judges to deduct points on the design judging form, as given in Appendix D if the team cannot adequately explain the engineering and construction of the car.", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.12", - "ruleContent": "Judging Sequence The actual format of the design event may change from year to year as determined by the organizing body. In general, the design event includes a brief overview presentation in front of the physical vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve two parts: (a) Initial judging of all vehicles", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.13", - "ruleContent": "Scoring Formula The scoring of the event is based on either the average of the scores from the Design Judging Forms (see Appendix C) or the consensus of the judging team. 𝐷𝐸𝑆𝐼𝐺𝑁 𝑆𝐶𝑂𝑅𝐸 = 200 𝑃 𝑦𝑜𝑢𝑟 𝑃 𝑚𝑎𝑥 Where: P max is the highest point score awarded to any team in your vehicle category P your is the point score awarded to your team Notes: It is intended that the scores will range from near zero (0) to two hundred (200) to provide good separation. ● The Lead Design Judge may, at his/her discretion, normalize the scores of different judging teams. ● Penalties applied during the Design Event (see Appendix D “Design Judging Form - Miscellaneous”) are applied before the scores are normalized. ● Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are applied after the scores are normalized up to a maximum of the teams normalized Design Score.", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "1S3.14", - "ruleContent": "Support Materials Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process.", - "parentRuleCode": "1S3", - "pageNumber": "0" - }, - { - "ruleCode": "PART 1D", - "ruleContent": "DYNAMIC EVENTS", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D1", - "ruleContent": "DYNAMIC EVENTS GENERAL", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.1", - "ruleContent": "Maximum Scores Event Acceleration 100 Points Autocross 200 Points Endurance 350 Points Total 650 Points Table 17 - Dynamic Event Maximum Scores", - "parentRuleCode": "1D1", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.2", - "ruleContent": "Driving Behavior During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to an official, worker, spectator or other driver, will result in a penalty. Depending on the potential consequences of the behavior, the penalty will range from an admonishment, to disqualification of that driver from all events, to disqualification of the team from that event, to exclusion of the team from the Competition.", - "parentRuleCode": "1D1", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.3", - "ruleContent": "Safety Procedures", - "parentRuleCode": "1D1", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.3.1", - "ruleContent": "Drivers must properly use all required safety equipment at all times while staged for an event, while running the event, and while stopped on track during an event. Required safety equipment includes all drivers gear and all restraint harnesses.", - "parentRuleCode": "1D1.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.3.2", - "ruleContent": "In the event it is necessary to stop on track during an event the driver must attempt to position the vehicle in a safe position off of the racing line.", - "parentRuleCode": "1D1.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.3.3", - "ruleContent": "Drivers must not exit a vehicle stopped on track during an event until directed to do so by an event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or electrical problems.", - "parentRuleCode": "1D1.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.4", - "ruleContent": "Vehicle Integrity and Disqualification", - "parentRuleCode": "1D1", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.4.1", - "ruleContent": "During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged suspension, brakes or steering components, electrical tractive system fault, or any condition that could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid reason for exclusion by the officials.", - "parentRuleCode": "1D1.4", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.4.2", - "ruleContent": "The safety systems monitoring the electrical tractive system must be functional as indicated by an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event.", - "parentRuleCode": "1D1.4", - "pageNumber": "0" - }, - { - "ruleCode": "1D1.4.3", - "ruleContent": "If vehicle integrity is compromised during the Endurance Event, scoring for that segment will be terminated as of the last completed lap.", - "parentRuleCode": "1D1.4", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D2", - "ruleContent": "WEATHER CONDITIONS The organizer reserves the right to alter the conduct and scoring of the competition based on weather conditions.", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D3", - "ruleContent": "RUNNING IN RAIN A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See EV10.5)", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.1", - "ruleContent": "Operating Conditions The following operating conditions will be recognized at Formula Hybrid + Electric: (a) Dry – Overall the track surface is dry. (b) Damp – Significant sections of the track surface are damp. (c) Wet – The entire track surface is wet and there may be puddles of water. (d) Weather Delay/Cancellation – Any situation in which all, or part, of an event is delayed, rescheduled or canceled in response to weather conditions.", - "parentRuleCode": "1D3", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.2", - "ruleContent": "Decision on Operating Conditions The operating condition in effect at any time during the competition will be decided by the competition officials.", - "parentRuleCode": "1D3", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.3", - "ruleContent": "Notification If the competition officials declare the track(s) to be \"Damp\" or \"Wet\", (a) This decision will be announced over the public address system, and (b) A sign with either \"Damp\" or \"Wet\" will be prominently displayed at both the starting line(s) and the start-finish line of the event(s), and the entry gate to the \"hot\" area.", - "parentRuleCode": "1D3", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.4", - "ruleContent": "Tire Requirements The operating conditions will determine the type of tires a car may run as follows: (a) Dry – Cars must run their Dry Tires, except as covered in D3.8. (b) Damp – Cars may run either their Dry Tires or Rain Tires, at each team’s option. (c) Wet – Cars must run their Rain Tires.", - "parentRuleCode": "1D3", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.5", - "ruleContent": "Event Rules All event rules remain in effect.", - "parentRuleCode": "1D3", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.6", - "ruleContent": "Penalties All penalties remain in effect.", - "parentRuleCode": "1D3", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.7", - "ruleContent": "Scoring No adjustments will be made to teams' times for running in \"Damp\" or \"Wet\" conditions. The minimum performance levels to score points may be adjusted if deemed appropriate by the officials.", - "parentRuleCode": "1D3", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.8", - "ruleContent": "Tire Changing", - "parentRuleCode": "1D3", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.8.1", - "ruleContent": "During the Acceleration or Autocross Events:", - "parentRuleCode": "1D3.8", - "pageNumber": "0" - }, - { - "ruleCode": "1D3.8.2", - "ruleContent": "During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any time while their car is in the staging area inside the \"hot\" area. All tire changes after a car has received the \"green flag\" to start the Endurance Event must take place in the Driver Change Area. (a) If the track was \"Dry\" and is declared \"Damp\": (i) Teams may start on either Dry or Rain Tires at their option. (ii) Teams that are on the track when it is declared \"Damp\", may elect, at their option, to pit in the Driver Change Area and change to Rain Tires under the terms spelled out below in \"Tire Changes in the Driver Change Area\". (b) If the track is declared \"Wet\": (i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver Change Area. (ii) Those cars that are already fitted with \"Rain\" tires will be allowed restart without delay subject to the discretion of the Event Captain/Clerk of the Course. (iii)Those cars without \"Rain\" tires will be required to fit them under the terms spelled out below in \"Tire Changes in the Driver Change Area\". They will then be allowed to re- start at the discretion of the Event Captain/Clerk of the Course. (c) If the track is declared \"Dry\" after being \"Damp\" or \"Wet\": The teams will NOT be required to change back to “Dry” tires. (d) Tire Changes at Team's Option: (i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to change tires at their option. (ii) If a team elects to change from “Dry” to “Rain” tires, the time to make the change will NOT be included in the team’s total time. (iii) If a team elects to change from “Rain” tires back to “Dry” tires, the time taken to make the change WILL be included in the team’s total time for the event, i.e. it will not be subtracted from the total elapsed time. However, a change from “Rain” tires back to “Dry” tires will not be permitted during the driver change. (iv) To make such a change, the following procedure must be followed: 1. Team makes the decision 2. Team has tires and equipment ready near Driver Change Area 3. The team informs the Event Captain/Clerk of the Course they wish their car to be brought in for a tire change 4. Officials inform the driver by means of a sign or flag at the checker flag station 5. Driver exits the track and enters the Driver Change Area in the normal manner. (e) Tire Changes in the Driver Change Area:", - "parentRuleCode": "1D3.8", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D4", - "ruleContent": "DRIVER LIMITATIONS", - "pageNumber": "0" - }, - { - "ruleCode": "1D4.1", - "ruleContent": "Two Event Limit", - "parentRuleCode": "1D4", - "pageNumber": "0" - }, - { - "ruleCode": "1D4.1.1", - "ruleContent": "An individual team member may not drive in more than two (2) events. Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum of four (4) drivers is required to participate in all possible runs in all of the dynamic events.", - "parentRuleCode": "1D4.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D4.1.2", - "ruleContent": "It is the team’s option to participate in any event. The team may forfeit any runs in any performance event.", - "parentRuleCode": "1D4.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D4.1.3", - "ruleContent": "In order to drive in the endurance event, a driver must have attended the mandatory drivers meeting and walked the endurance track with an official.", - "parentRuleCode": "1D4.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D4.1.4", - "ruleContent": "The time and location of the meeting and walk-around will be announced at the event.", - "parentRuleCode": "1D4.1", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D5", - "ruleContent": "ACCELERATION EVENT", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.1", - "ruleContent": "Acceleration Objective The acceleration event evaluates the car’s acceleration in a straight line on flat pavement.", - "parentRuleCode": "1D5", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.2", - "ruleContent": "Acceleration Procedure The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be used to indicate the approval to begin, however, time starts only after the vehicle crosses the start line. There will be no particular order of the cars in the event. A driver has the option to take a second run immediately after the first.", - "parentRuleCode": "1D5", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.3", - "ruleContent": "Acceleration Event", - "parentRuleCode": "1D5", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.3.1", - "ruleContent": "All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the acceleration runs.", - "parentRuleCode": "1D5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.3.2", - "ruleContent": "Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during any of their acceleration runs.", - "parentRuleCode": "1D5.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.4", - "ruleContent": "Tire Traction – Limitations Special agents that increase traction may not be added to the tires or track surface and “burnouts” are not allowed.", - "parentRuleCode": "1D5", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.5", - "ruleContent": "Acceleration Scoring The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the time the car crosses the starting line until it crosses the finish line.", - "parentRuleCode": "1D5", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.6", - "ruleContent": "Acceleration Penalties", - "parentRuleCode": "1D5", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.6.1", - "ruleContent": "Cones Down Or Out (DOO) A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred on that particular run to give the corrected elapsed time.", - "parentRuleCode": "1D5.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.6.2", - "ruleContent": "Off Course An Off Course (OC) will result in a DNF for that run.", - "parentRuleCode": "1D5.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.7", - "ruleContent": "Did Not Attempt The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Finish (DNF).", - "parentRuleCode": "1D5", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.8", - "ruleContent": "Acceleration Scoring Formula The equation below is used to determine the scores for the Acceleration Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”.", - "parentRuleCode": "1D5", - "pageNumber": "0" - }, - { - "ruleCode": "1D5.8.1", - "ruleContent": "A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded “Performance Points” based on its corrected elapsed time relative to the time of the best team in its class. 𝐴𝐶𝐶𝐸𝐿𝐸𝑅𝐴𝑇𝐼𝑂𝑁 𝑆𝐶𝑂𝑅𝐸 = 10 + 15 + (75 × 𝑇 𝑚𝑖𝑛 𝑇 𝑦𝑜𝑢𝑟 ) Where: T your is the lowest corrected elapsed time (including penalties) recorded by your team. T min is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category. Note: A Did Not Start (DNS) will score (0) points for the event", - "parentRuleCode": "1D5.8", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D6", - "ruleContent": "AUTOCROSS EVENT", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.1", - "ruleContent": "Autocross Objective The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a tight course without the hindrance of competing cars. The autocross course will combine the performance features of acceleration, braking, and cornering into one event.", - "parentRuleCode": "1D6", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.2", - "ruleContent": "Autocross Procedure", - "parentRuleCode": "1D6", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.2.1", - "ruleContent": "There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) timed laps will be run (weather and time permitting) by each driver and the best lap time will stand as the time for that heat.", - "parentRuleCode": "1D6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.2.2", - "ruleContent": "The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. The timer starts only after the car crosses the start line.", - "parentRuleCode": "1D6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.2.3", - "ruleContent": "There will be no particular order of the cars to run each heat, but a driver has the option to take a second run immediately after the first.", - "parentRuleCode": "1D6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.2.4", - "ruleContent": "The organizer will determine the allowable windows for each event and retains the right to adjust for weather or technical delays. Cars that have not run by the end of the event will be scored as a Did Not Start (DNS).", - "parentRuleCode": "1D6.2", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.3", - "ruleContent": "Autocross Course Specifications & Speeds", - "parentRuleCode": "1D6", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.3.1", - "ruleContent": "The following specifications will suggest the maximum speeds that will be encountered on the course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). (a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 m (150 feet) with wide turns on the ends. (b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. (c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). (d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. (e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track width will be 3.5 m (11.5 feet).", - "parentRuleCode": "1D6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.3.2", - "ruleContent": "The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete a specified number of runs.", - "parentRuleCode": "1D6.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.4", - "ruleContent": "Autocross Penalties The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed time:", - "parentRuleCode": "1D6", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.4.1", - "ruleContent": "Cone Down or Out (DOO) Two (2) seconds per cone, including any after the finish line.", - "parentRuleCode": "1D6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.4.2", - "ruleContent": "Off Course Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be assessed. Penalties will not be assessed for accident avoidance or other reasons deemed sufficient by the track officials. If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off the paved surface will count as an \"off course\". Two (2) wheels off will not incur an immediate penalty; however, consistent driving of this type may be penalized at the discretion of the event officials.", - "parentRuleCode": "1D6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.4.3", - "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one \"off-course\" per occurrence. Each occurrence will incur a twenty (20) second penalty.", - "parentRuleCode": "1D6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.4.4", - "ruleContent": "Stalled & Disabled Vehicles", - "parentRuleCode": "1D6.4", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.5", - "ruleContent": "Corrected Elapsed Time The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time.", - "parentRuleCode": "1D6", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.6", - "ruleContent": "Best Run Scored The time required to complete each run will be recorded and the team’s best corrected elapsed time will be used to determine the score.", - "parentRuleCode": "1D6", - "pageNumber": "0" - }, - { - "ruleCode": "1D6.7", - "ruleContent": "Autocross Scoring Formula The equation below is used to determine the scores for the Autocross Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”. A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded “Performance Points” based on its corrected elapsed time relative to the time of the best team in its vehicle category. 𝐴𝑈𝑇𝑂𝐶𝑅𝑂𝑆𝑆 𝑆𝐶𝑂𝑅𝐸 = 20 + 30 + (150 × 𝑇 𝑚𝑖𝑛 𝑇 𝑦𝑜𝑢𝑟 ) Where: T min is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your vehicle category over their four heats. T your is the lowest corrected elapsed time (including penalties) recorded by your team over the four heats. Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event.", - "parentRuleCode": "1D6", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D7", - "ruleContent": "ENDURANCE EVENT", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.1", - "ruleContent": "Right to Change Procedure The following are general guidelines for conducting the endurance event. The organizers reserve the right to establish procedures specific to the conduct of the event at the site. All such procedures will be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or on the official bulletin board at the event.", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.2", - "ruleContent": "Endurance Objective The endurance event is designed to evaluate the vehicle’s overall performance, reliability and efficiency. Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated distance on a fixed amount of energy in the least amount of time.", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.3", - "ruleContent": "Endurance General Procedure", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.3.1", - "ruleContent": "In general, the team completing the most laps in the shortest time will earn the maximum points available for this event. Formula Hybrid + Electric uses an endurance scoring formula that rewards both speed and distance traveled. (See D7.18)", - "parentRuleCode": "1D7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.3.2", - "ruleContent": "The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 mile) segments.", - "parentRuleCode": "1D7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.3.3", - "ruleContent": "Driver changes will be made between each segment.", - "parentRuleCode": "1D7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.3.4", - "ruleContent": "Wheel to wheel racing is prohibited.", - "parentRuleCode": "1D7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.3.5", - "ruleContent": "Passing another vehicle may only be done in an established passing zone or under the control of a course marshal.", - "parentRuleCode": "1D7.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.4", - "ruleContent": "Endurance Course Specifications & Speeds Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr (29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). Endurance courses will be configured, where possible, in a manner which maximizes the advantage of regenerative braking. (a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than 61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several locations. (b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. (c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). (d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. (e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). (f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius turns, elevation changes, etc.", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.5", - "ruleContent": "Energy", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.5.1", - "ruleContent": "All vehicles competing in the endurance event must complete the event using only the energy stored on board the vehicle at the start of the event plus any energy reclaimed through regenerative braking during the event. Alternatively, vehicles may compete in the endurance event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy value will not be counted towards the endurance score. If energy meter data is missing or appears inaccurate, the vehicle may receive start and performance points as appropriate, but “performance points” may be forfeited at organizers discretion.", - "parentRuleCode": "1D7.5", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.5.2", - "ruleContent": "Prior to the beginning of the endurance event, all competitors may charge their electric accumulators from any approved power source they wish.", - "parentRuleCode": "1D7.5", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.5.3", - "ruleContent": "Once a vehicle has begun the endurance event, recharging accumulators from an off-board source is not permitted.", - "parentRuleCode": "1D7.5", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.6", - "ruleContent": "Hybrid Vehicles", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.6.1", - "ruleContent": "All Hybrid vehicles will begin the endurance event with the defined amount of energy on board.", - "parentRuleCode": "1D7.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.6.2", - "ruleContent": "The amount of energy allotted to each team is determined by the Formula Hybrid + Electric Rules Committee and is listed in Table 1 – 2024 Energy and Accumulator Limits", - "parentRuleCode": "1D7.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.6.3", - "ruleContent": "The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by an amount equal to the stated energy capacity of the vehicle’s accumulator(s).", - "parentRuleCode": "1D7.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.6.4", - "ruleContent": "There will be no extra points given for fuel remaining at the end of the endurance event.", - "parentRuleCode": "1D7.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.7", - "ruleContent": "Fueling - Hybrid Vehicles", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.7.1", - "ruleContent": "Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will then be added to the tank by the organizers and the filler will be sealed.", - "parentRuleCode": "1D7.7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.7.2", - "ruleContent": "Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and supporting the vehicle to facilitate draining the fuel tank.", - "parentRuleCode": "1D7.7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.7.3", - "ruleContent": "Once fueled, the vehicle must proceed directly to the endurance staging area.", - "parentRuleCode": "1D7.7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.8", - "ruleContent": "Charging - Electric Vehicles Each Electric vehicle will begin the endurance event with whatever energy can be stored in its accumulator(s).", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.9", - "ruleContent": "Endurance Run Order Endurance run order will be determined by the team’s corrected elapsed time in the autocross. Teams with the best autocross corrected elapsed time will run first. If a team did not score in the autocross event, the run order will then continue based on acceleration event times, followed by any vehicles that may not have completed either previous dynamic event. Endurance run order will be published at least one hour before the endurance event is run.", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.10", - "ruleContent": "Entering the Track At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter based on traffic conditions.", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.11", - "ruleContent": "Endurance Vehicle Restarting", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.11.1", - "ruleContent": "The vehicle must be capable of restarting without external assistance at all times once the vehicle has begun the event.", - "parentRuleCode": "1D7.11", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.11.2", - "ruleContent": "If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following it (approximately one (1) minute) to restart.", - "parentRuleCode": "1D7.11", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.11.3", - "ruleContent": "At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8).", - "parentRuleCode": "1D7.11", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.11.4", - "ruleContent": "If restarts are not accomplished within the above times, the vehicle will be deemed disabled and scored as a DNF for the event.", - "parentRuleCode": "1D7.11", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.12", - "ruleContent": "Breakdowns & Stalls", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.12.1", - "ruleContent": "If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter the course.", - "parentRuleCode": "1D7.12", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.12.2", - "ruleContent": "If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course where it went off, but no work may be performed on the vehicle", - "parentRuleCode": "1D7.12", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.12.3", - "ruleContent": "If a vehicle stops on track and cannot be restarted without external assistance, the track workers will push the vehicle clear of the track. At the discretion of event officials, two (2) team members may retrieve the vehicle under direction of the track workers.", - "parentRuleCode": "1D7.12", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13", - "ruleContent": "Endurance Driver Change Procedure", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.1", - "ruleContent": "There must be a minimum of two (2) drivers for the endurance event, with a maximum of four (4) drivers. One driver may not drive in two consecutive segments.", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.2", - "ruleContent": "Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the driver change area. If a driver elects to come into driver change before the end of their 11km segment, they will not be allowed to make up the laps remaining in that segment.", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.3", - "ruleContent": "Only three (3) team members, including the driver or drivers, will be allowed in the driver change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers and/or change tires will be carried into this area (no tool chests, electronic test equipment, computers, etc.). Extra people entering the driver change area will result in a twenty (20) point penalty to the final endurance score for each extra person entering the area. Note: Teams are permitted to “tag-team” in and out of the driver change area as long as there are no more than three (3) team members present at any one time.", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.4", - "ruleContent": "The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. These systems must remain shut down until the new driver is in place. (See D7.13.8)", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.5", - "ruleContent": "The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be secured in the vehicle.", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.6", - "ruleContent": "Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle comes to a halt in the driver change area and stops when the correct adjustment of the driver restraints and safety equipment has been verified by the driver change area official. Any time taken over the allowed time will incur a penalty. (See D7.17.2(k))", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.7", - "ruleContent": "During the driver change, teams are not permitted to do any work on, or make any adjustments to the vehicle with the following exceptions: (a) Changes required to accommodate each driver (b) Tire changing as covered by D3.8 “Tire Changing”, (c) Actuation of the following buttons/switches to assist the driver with re-energizing the electrical tractive system (i) Ground Low Voltage Master Switch (ii) Tractive System Master Switch (iii) Side Mounted BRBs (iv) IMD Reset (Button/Switch must be clearly marked “IMD RESET”) (v) AMS Reset (Button/Switch must be clearly marked “AMS RESET”)", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.8", - "ruleContent": "Once the new driver is in place and an official has verified the correct adjustment of the driver restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive system (IC engine, electrical tractive system, or both) and begin moving out of the driver change area.", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.9", - "ruleContent": "The process given in Error! Reference source not found. through D7.13.8 will be repeated for each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km (27.34 miles) distance or until the endurance event track closing time, at which point the vehicle will be signaled off the course.", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.10", - "ruleContent": "The driver change area will be placed such that the timing system will see the driver change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this extra-long lap will not count into a team’s final time. If a driver change takes longer than three minutes, the extra time will be added to the team’s final time.", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.13.11", - "ruleContent": "Once the vehicle has begun the event, electronic adjustment to the vehicle may only be made by the driver using driver-accessible controls.", - "parentRuleCode": "1D7.13", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.14", - "ruleContent": "Endurance Lap Timing", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.14.1", - "ruleContent": "Each lap of the endurance event will be individually timed either by electronic means, or by hand.", - "parentRuleCode": "1D7.14", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.14.2", - "ruleContent": "Each team is required to time their vehicle during the endurance event as a backup in case of a timing equipment malfunction. An area will be provided where a maximum of two team members can perform this function. All laps, including the extra-long laps must be recorded legibly and turned in to the organizers at the end of the endurance event. Standardized lap timing forms will be provided by the organizers.", - "parentRuleCode": "1D7.14", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.15", - "ruleContent": "Exiting the Course", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.15.1", - "ruleContent": "Timing will stop when the vehicle crosses the start/finish line.", - "parentRuleCode": "1D7.15", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.15.2", - "ruleContent": "Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter the driver change area before coming to a stop. There will be no “cool down” laps.", - "parentRuleCode": "1D7.15", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.15.3", - "ruleContent": "The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be penalized.", - "parentRuleCode": "1D7.15", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.16", - "ruleContent": "Endurance Minimum Speed Requirement", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.16.1", - "ruleContent": "A car's allotted number of laps, including driver’s changes, must be completed in a maximum of 120 minutes elapsed time from the start of that car's first lap. Cars that are unable to comply will be flagged off the course and their actual completed laps tallied.", - "parentRuleCode": "1D7.16", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.16.2", - "ruleContent": "If a vehicle’s lap time becomes greater than Max Average Lap Time (See: D7.18) it may be declared “out of energy”, and flagged off the course. The vehicle will be deemed disabled and scored as a DNF for the event. Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring formulas. Attempting to complete additional laps at too low a speed can cost a team points.", - "parentRuleCode": "1D7.16", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.17", - "ruleContent": "Endurance Penalties", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.17.1", - "ruleContent": "Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the track official.", - "parentRuleCode": "1D7.17", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.17.2", - "ruleContent": "The penalties in effect during the endurance event are listed below. (a) Cone down or out (DOO)", - "parentRuleCode": "1D7.17", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.18", - "ruleContent": "Endurance Scoring Formula The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, etc.), plus any penalty time and penalty points assessed against all drivers and team members. Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the DNF.", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.18.1", - "ruleContent": "The equation below is used to determine the scores for the Endurance Event. The first term represents the “Start Points”, the second term the “Participation Points” and the last term the “Performance Points”. A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded “Participation Points” if it completes a minimum of one (1) lap. A team is awarded “Performance Points” based on the number of laps it completes relative to the best team in its vehicle category (distance factor) and its corrected average lap time relative to the event standard time and the time of the best team in its vehicle category (speed factor). 𝐸𝑁𝐷𝑈𝑅𝐴𝑁𝐶𝐸 𝑆𝐶𝑂𝑅𝐸 = 35 + 52.5 + 262.5 ( 𝐿𝑎𝑝𝑆𝑢𝑚 ( 𝑛 ) 𝑦𝑜𝑢𝑟 𝐿𝑎𝑝𝑆𝑢𝑚 ( 𝑛 ) 𝑚𝑎𝑥 ) ( 𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 𝑇 𝑦𝑜𝑢𝑟 ) − 1 ( 𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 𝑇 𝑚𝑖𝑛 ) − 1 Where: Max Average Lap Time is the event standard time in minutes and is calculated as 𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 = 105 𝑡ℎ𝑒 𝑛𝑢𝑚𝑏𝑒𝑟 𝑜𝑓 𝑙𝑎𝑝𝑠 𝑟𝑒𝑞𝑢𝑖𝑟𝑒𝑑 𝑡𝑜 𝑐𝑜𝑚𝑝𝑙𝑒𝑡𝑒 44 𝑘𝑚 T min = the lowest corrected average lap time (including penalties) recorded by the fastest team in your vehicle category over their completed laps. T your = the corrected average lap time (including penalties) recorded by your team over your completed laps. LapSum(n) max = The value of LapSum corresponding to number of complete laps credited to the team in your vehicle category that covered the greatest distance. LapSum(n) your = The value of LapSum corresponding to the number of complete laps credited to your team Notes: (a) If your team completes all of the required laps, then LapSum(n) your will equal the maximum possible value of LapSum(n). (990 for a 44 lap event). (b) If your team does not complete the required number of laps, then LapSum(n) your will be based on the number of laps completed. See Appendix B for LapSum(n) calculation methodology.", - "parentRuleCode": "1D7.18", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.18.2", - "ruleContent": "Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their results truncated at the last lap completed within the 120 minute limit.", - "parentRuleCode": "1D7.18", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.19", - "ruleContent": "Post Event Engine and Energy Check The organizer reserves the right to impound any vehicle immediately after the event to check accumulator capacity, engine displacement (method to be determined by the organizer) and restrictor size (if fitted).", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.20", - "ruleContent": "Endurance Event – Driving", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.20.1", - "ruleContent": "During the endurance event when multiple vehicles are running on the course it is paramount that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion in the penalty box with course officials. The amount of time spent in the penalty box is at the discretion of the officials and is included in the run time. Penalty box time serves as a reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware that contact between open wheel racers is especially dangerous because tires touching can throw one vehicle into the air.", - "parentRuleCode": "1D7.20", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.20.2", - "ruleContent": "Endurance is a timed event in which drivers compete only against the clock not against other vehicles. Aggressive driving is unnecessary.", - "parentRuleCode": "1D7.20", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.21", - "ruleContent": "Endurance Event – Passing", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.21.1", - "ruleContent": "Passing during the endurance event may only be done in the designated passing zones and under the control of the track officials. Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the slow lane and decelerate. The following faster vehicle will continue in the fast lane and make the pass. The vehicle that had been passed may reenter traffic only under the control of the passing zone exit marshal. The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on the design of the specific course.", - "parentRuleCode": "1D7.21", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.21.2", - "ruleContent": "These passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", - "parentRuleCode": "1D7.21", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.21.3", - "ruleContent": "Under normal driving conditions when not being passed all vehicles use the fast lane.", - "parentRuleCode": "1D7.21", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.22", - "ruleContent": "Endurance Event – Driver’s Course Walk The endurance course will be available for walk by drivers prior to the event. All endurance drivers should walk the course before the event starts.", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.23", - "ruleContent": "Flags", - "parentRuleCode": "1D7", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.23.1", - "ruleContent": "The flag signals convey the commands described below, and must be obeyed immediately and without question.", - "parentRuleCode": "1D7.23", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.23.2", - "ruleContent": "There are two kinds of flags for the competition: Command Flags and Informational Flags. Command Flags are just that, flags that send a message to the competitor that the competitor", - "parentRuleCode": "1D7.23", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.23.3", - "ruleContent": "Command Flags (a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations or other official concerning an incident. A time penalty may be assessed for such incident. (b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) (“Meatball”) - Pull into the penalty box for a mechanical inspection of your vehicle, something has been observed that needs closer inspection. (c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor or competitors. Obey the course marshal’s hand or flag signals at the end of the passing zone to merge into competition. (d) CHECKER FLAG - Your segment has been completed. Exit the course at the first opportunity after crossing the finish line. (e) GREEN FLAG - Your segment has started, enter the course under direction of the starter. NOTE: If you are unable to enter the course when directed, await another green flag as the opening in traffic may have closed. (f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow course marshal’s directions.", - "parentRuleCode": "1D7.23", - "pageNumber": "0" - }, - { - "ruleCode": "1D7.23.4", - "ruleContent": "Informational Flags (a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course marshals may be able to point out what and where it is located, but do not expect it.) (b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than you are. Be prepared to approach it at a cautious rate.", - "parentRuleCode": "1D7.23", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D8", - "ruleContent": "RULES OF CONDUCT", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.1", - "ruleContent": "Competition Objective – A Reminder The Formula Hybrid + Electric event is a design engineering competition that requires performance demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. It is also recognized that this event is an “engineering educational experience” but that it often times becomes confused with a high stakes race. In the heat of competition, emotions peak and disputes arise. Our officials are trained volunteers and maximum human effort will be made to settle problems in an equitable, professional manner.", - "parentRuleCode": "1D8", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.2", - "ruleContent": "Unsportsmanlike Conduct In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second violation will result in expulsion of the team from the competition.", - "parentRuleCode": "1D8", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.3", - "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a twenty five (25) point penalty. Note: This penalty can be individually applied to all members of a team.", - "parentRuleCode": "1D8", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.4", - "ruleContent": "Arguments with Officials Argument with, or disobedience to, any official may result in the team being eliminated from the competition. All members of the team may be immediately escorted from the grounds.", - "parentRuleCode": "1D8", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.5", - "ruleContent": "Alcohol and Illegal Material Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the competition. This rule will be in effect during the entire competition. Any violation of this rule by a team member will cause the expulsion of the entire team. This applies to both team members and faculty advisors. Any use of drugs, or the use of alcohol by an underage individual, will be reported to the local authorities for prosecution.", - "parentRuleCode": "1D8", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.6", - "ruleContent": "Parties Disruptive parties either on or off-site must be prevented by the Faculty Advisor.", - "parentRuleCode": "1D8", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.7", - "ruleContent": "Trash Clean-up", - "parentRuleCode": "1D8", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.7.1", - "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. The team’s work area should be kept uncluttered. At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock.", - "parentRuleCode": "1D8.7", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.7.2", - "ruleContent": "Teams are required to remove all of their material and trash when leaving the site at the end of the competition. Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs.", - "parentRuleCode": "1D8.7", - "pageNumber": "0" - }, - { - "ruleCode": "1D8.7.3", - "ruleContent": "All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, capped containers and left at the hazardous waste collection building. The track must be notified as soon as the material is deposited by calling the phone number posted on the building. See the map in the registration packet for the building location.", - "parentRuleCode": "1D8.7", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D9", - "ruleContent": "GENERAL RULES", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.1", - "ruleContent": "Dynamometer Usage", - "parentRuleCode": "1D9", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.1.1", - "ruleContent": "If a dynamometer is available, it may be used by any competing team. Vehicles to be dynamometer tested must have passed all parts of technical inspection.", - "parentRuleCode": "1D9.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.1.2", - "ruleContent": "Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer.", - "parentRuleCode": "1D9.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.2", - "ruleContent": "Problem Resolution Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric management team and the decision will be final.", - "parentRuleCode": "1D9", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.3", - "ruleContent": "Forfeit for Non-Appearance It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups for missed appearances.", - "parentRuleCode": "1D9", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.4", - "ruleContent": "Safety Class – Attendance Required An electrical safety class is required for all team members. The time and location will be provided in the team’s registration packet.", - "parentRuleCode": "1D9", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.5", - "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", - "parentRuleCode": "1D9", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.6", - "ruleContent": "Personal Vehicles", - "parentRuleCode": "1D9", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.6.1", - "ruleContent": "Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E competition vehicles will be allowed in the track areas. All vehicles and trailers must be parked behind the white “Fire Lane” lines.", - "parentRuleCode": "1D9.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.6.2", - "ruleContent": "Some self-powered transport such as bicycles and skate boards are permitted, subject to restrictions posted in the event guide", - "parentRuleCode": "1D9.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.6.3", - "ruleContent": "The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited.", - "parentRuleCode": "1D9.6", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.7", - "ruleContent": "Exam Proctoring", - "parentRuleCode": "1D9", - "pageNumber": "0" - }, - { - "ruleCode": "1D9.7.1", - "ruleContent": "Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for students attending the competition. The team Advisor, or designated representative (A6.3.1) attending the competition will be responsible for communicating with college and university officials, administering exams, and ensuring all exam materials are returned to the college and university. Students who need to take exams during the competition may use designated spaces provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to the Officials.", - "parentRuleCode": "1D9.7", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D10", - "ruleContent": "PIT/PADDOCK/GARAGE RULES", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.1", - "ruleContent": "Vehicle Movement", - "parentRuleCode": "1D10", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.1.1", - "ruleContent": "Vehicles may not move under their own power anywhere outside of an officially designated dynamic area.", - "parentRuleCode": "1D10.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.1.2", - "ruleContent": "When being moved outside the dynamic area: (a) The vehicle TSV must be deactivated. (b) The vehicle must be pushed at a normal walking pace by means of a “Push Bar” (D10.2). (c) The vehicle’s steering and braking must be functional. (d) A team member must be sitting in the cockpit and must be able to operate the steering and braking in a normal manner. (e) A team member must be walking beside the car. (f) The team has the option to move the car either with (i) all four (4) wheels on the ground OR (ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that the external wheels supporting the rear of the car are non-pivoting such that the vehicle will travel only where the front wheels are steered.", - "parentRuleCode": "1D10.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.1.3", - "ruleContent": "Cars with wings are required to have two team members walking on either side of the vehicle whenever the vehicle is being pushed. NOTE: During performance events when the excitement is high, it is particularly important that the car be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of twenty-five (25) points will be assessed for each violation.", - "parentRuleCode": "1D10.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.2", - "ruleContent": "Push Bar Each car must have a removable device that attaches to the rear of the car that allows two (2) people, standing erect behind the vehicle, to push the car around the event site. This device must also be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by pulling it rearwards. It must be presented with the car at Technical Inspection.", - "parentRuleCode": "1D10", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.3", - "ruleContent": "Smoking – Prohibited Smoking is prohibited in all competition areas.", - "parentRuleCode": "1D10", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.4", - "ruleContent": "Fueling and Refueling Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and no other activities (including any mechanical or electrical work) are allowed while refueling.", - "parentRuleCode": "1D10", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.5", - "ruleContent": "Energized Vehicles in the Paddock or Garage Area Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the drive wheels must be removed or properly supported clear of the ground.", - "parentRuleCode": "1D10", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.6", - "ruleContent": "Engine Running in the Paddock Engines may be run in the paddock provided: (a) The car has passed all technical inspections. AND (b) The drive wheels are removed or properly supported clear of the ground.", - "parentRuleCode": "1D10", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.7", - "ruleContent": "Safety Glasses Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 meters) of a vehicle that is being worked on.", - "parentRuleCode": "1D10", - "pageNumber": "0" - }, - { - "ruleCode": "1D10.8", - "ruleContent": "Curfews A curfew period may be imposed on working in the garages. Be sure to check the event guide for further information", - "parentRuleCode": "1D10", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D11", - "ruleContent": "DRIVING RULES", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.1", - "ruleContent": "Driving Under Power", - "parentRuleCode": "1D11", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.1.1", - "ruleContent": "Cars may only be driven under power: (a) When running in an event. (b) When on the practice track. (c) During the brake test. (d) During any powered vehicle movement specified and authorized by the organizers.", - "parentRuleCode": "1D11.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.1.2", - "ruleContent": "For all other movements cars must be pushed at a normal walking pace using a push bar.", - "parentRuleCode": "1D11.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.1.3", - "ruleContent": "Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred (200) point penalty for the first violation and expulsion of the team for a second violation.", - "parentRuleCode": "1D11.1", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.2", - "ruleContent": "Driving Off-Site - Prohibited Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location during the period of the competition will be disqualified from the competition.", - "parentRuleCode": "1D11", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.3", - "ruleContent": "Practice Track", - "parentRuleCode": "1D11", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.3.1", - "ruleContent": "A practice track for testing and tuning cars may be available at the discretion of the organizers. The practice area will be controlled and may only be used during the scheduled practice times.", - "parentRuleCode": "1D11.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.3.2", - "ruleContent": "Practice or testing at any location other than the practice track is absolutely forbidden.", - "parentRuleCode": "1D11.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.3.3", - "ruleContent": "Cars using the practice track must have passed all parts of the technical inspection.", - "parentRuleCode": "1D11.3", - "pageNumber": "0" - }, - { - "ruleCode": "1D11.4", - "ruleContent": "Situational Awareness Drivers must maintain a high state of situational awareness at all times and be ready to respond to the track conditions and incidents. Flag signals and hand signals from course marshals and officials must be immediately obeyed.", - "parentRuleCode": "1D11", - "pageNumber": "0" - }, - { - "ruleCode": "ARTICLE D12", - "ruleContent": "DEFINITIONS DOO - A cone is “Down or Out”—if the cone has been knocked over or the entire base of the cone lies outside the box marked around the cone in its undisturbed position. DNF- Did Not Finish Gate - The path between two cones through which the car must pass. Two cones, one on each side of the course define a gate: Two sequential cones in a slalom define a gate. Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course. Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course. Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about to start. OC - A car is Off Course if it does not pass through a gate in the required direction.", - "pageNumber": "0" - } - ], - "totalRules": 849, - "generatedAt": "2025-11-19T03:42:03.982Z" -} \ No newline at end of file diff --git a/scripts/document-parser/jsonOutput/fsae_rules.json b/scripts/document-parser/jsonOutput/fsae_rules.json deleted file mode 100644 index 53865f33cb..0000000000 --- a/scripts/document-parser/jsonOutput/fsae_rules.json +++ /dev/null @@ -1,16938 +0,0 @@ -{ - "rules": [ - { - "ruleCode": "GR", - "ruleContent": "GENERAL REGULATIONS", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1", - "ruleContent": "FORMULA SAE COMPETITION OBJECTIVE", - "parentRuleCode": "GR", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.1", - "ruleContent": "Collegiate Design Series SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and graduate engineering students in a variety of disciplines for future employment in mobility- related industries by challenging them with a real world, engineering application. Through the Engineering Design Process, experiences may include but are not limited to: • Project management, budgeting, communication, and resource management skills • Team collaboration • Applying industry rules and regulations • Design, build, and test the performance of a real vehicle • Interact and compete with other students from around the globe • Develop and prepare technical documentation Students also gain valuable exposure to and engagement with industry professionals to enhance 21st century learning skills, to build their own network and help prepare them for the workforce after graduation.", - "parentRuleCode": "GR.1", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.2", - "ruleContent": "Formula SAE Concept The Formula SAE® competitions challenge teams of university undergraduate and graduate students to conceive, design, fabricate, develop and compete with small, formula style vehicles.", - "parentRuleCode": "GR.1", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.3", - "ruleContent": "Engineering Competition Formula SAE® is an engineering education competition that requires performance demonstration of vehicles in a series of events, off track and on track against the clock. Each competition gives teams the chance to demonstrate their creativity and engineering skills in comparison to teams from other universities around the world.", - "parentRuleCode": "GR.1", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.4", - "ruleContent": "Vehicle Design Objectives", - "parentRuleCode": "GR.1", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.4.1", - "ruleContent": "Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and demonstrate a prototype vehicle", - "parentRuleCode": "GR.1.4", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.4.2", - "ruleContent": "The vehicle should have high performance and be sufficiently durable to successfully complete all the events at the Formula SAE competitions.", - "parentRuleCode": "GR.1.4", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.4.3", - "ruleContent": "Additional design factors include: aesthetics, cost, ergonomics, maintainability, and manufacturability.", - "parentRuleCode": "GR.1.4", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.4.4", - "ruleContent": "Each design will be judged and evaluated against other competing designs in a series of Static and Dynamic events to determine the vehicle that best meets the design goals and may be profitably built and marketed.", - "parentRuleCode": "GR.1.4", - "pageNumber": "5" - }, - { - "ruleCode": "GR.1.5", - "ruleContent": "Good Engineering Practices Vehicles entered into Formula SAE competitions should be designed and fabricated in accordance with good engineering practices. Version 1.0 31 Aug 2024", - "parentRuleCode": "GR.1", - "pageNumber": "5" - }, - { - "ruleCode": "GR.2", - "ruleContent": "ORGANIZER AUTHORITY", - "parentRuleCode": "GR", - "pageNumber": "6" - }, - { - "ruleCode": "GR.2.1", - "ruleContent": "General Authority SAE International and the competition organizing bodies reserve the right to revise the schedule of any competition and/or interpret or modify the competition rules at any time and in any manner that is, in their sole judgment, required for the efficient operation of the event or the Formula SAE series as a whole.", - "parentRuleCode": "GR.2", - "pageNumber": "6" - }, - { - "ruleCode": "GR.2.2", - "ruleContent": "Right to Impound", - "parentRuleCode": "GR.2", - "pageNumber": "6" - }, - { - "ruleCode": "GR.2.2.1", - "ruleContent": "SAE International and other competition organizing bodies may impound any onsite vehicle or part of the vehicle at any time during a competition.", - "parentRuleCode": "GR.2.2", - "pageNumber": "6" - }, - { - "ruleCode": "GR.2.2.2", - "ruleContent": "Team access to the vehicle or impound may be restricted.", - "parentRuleCode": "GR.2.2", - "pageNumber": "6" - }, - { - "ruleCode": "GR.2.3", - "ruleContent": "Problem Resolution Any problems that arise during the competition will be resolved through the onsite organizers and the decision will be final.", - "parentRuleCode": "GR.2", - "pageNumber": "6" - }, - { - "ruleCode": "GR.2.4", - "ruleContent": "Restriction on Vehicle Use SAE International, competition organizer(s) and officials are not responsible for use of vehicles designed in compliance with these Formula SAE Rules outside of the official Formula SAE competitions.", - "parentRuleCode": "GR.2", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3", - "ruleContent": "TEAM RESPONSIBILITY", - "parentRuleCode": "GR", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.1", - "ruleContent": "Rules Compliance By registering for a Formula SAE competition, the team, members of the team as individuals, faculty advisors and other personnel of the entering university agree to comply with, and be bound by, these rules and all rule interpretations or procedures issued or announced by SAE International, the Formula SAE Rules Committee and the other organizing bodies.", - "parentRuleCode": "GR.3", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.2", - "ruleContent": "Student Project By registering for any university program, the University registered assumes liability of the student project.", - "parentRuleCode": "GR.3", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.3", - "ruleContent": "Understanding the Rules Teams, team members as individuals and faculty advisors, are responsible for reading and understanding the rules in effect for the competition in which they are participating.", - "parentRuleCode": "GR.3", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.4", - "ruleContent": "Participating in the Competition", - "parentRuleCode": "GR.3", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.4.1", - "ruleContent": "Teams, individual team members, faculty advisors and other representatives of a registered university who are present onsite at a competition are “participating in the competition” from the time they arrive at the competition site until they depart the site at the conclusion of the competition or earlier by withdrawing.", - "parentRuleCode": "GR.3.4", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.4.2", - "ruleContent": "All team members, faculty advisors and other university representatives must cooperate with, and follow all instructions from, competition organizers, officials and judges.", - "parentRuleCode": "GR.3.4", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.5", - "ruleContent": "Forfeit for Non Appearance", - "parentRuleCode": "GR.3", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.5.1", - "ruleContent": "It is the responsibility of each team to be in the right location at the right time.", - "parentRuleCode": "GR.3.5", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.5.2", - "ruleContent": "If a team is not present and ready to compete at the scheduled time, they forfeit their attempt at that event. Version 1.0 31 Aug 2024", - "parentRuleCode": "GR.3.5", - "pageNumber": "6" - }, - { - "ruleCode": "GR.3.5.3", - "ruleContent": "There are no makeups for missed appearances.", - "parentRuleCode": "GR.3.5", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4", - "ruleContent": "RULES AUTHORITY AND ISSUE", - "parentRuleCode": "GR", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.1", - "ruleContent": "Rules Authority The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are issued under the authority of the SAE International Collegiate Design Series.", - "parentRuleCode": "GR.4", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.2", - "ruleContent": "Rules Validity", - "parentRuleCode": "GR.4", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.2.1", - "ruleContent": "The Formula SAE Rules posted on the website and dated for the calendar year of the competition are the rules in effect for the competition.", - "parentRuleCode": "GR.4.2", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.2.2", - "ruleContent": "Rules appendices or supplements may be posted on the website and incorporated into the rules by reference.", - "parentRuleCode": "GR.4.2", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.2.3", - "ruleContent": "Additional guidance or reference documents may be posted on the website.", - "parentRuleCode": "GR.4.2", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.2.4", - "ruleContent": "Any rules, questions, or resolutions from previous years are not valid for the current competition year.", - "parentRuleCode": "GR.4.2", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.3", - "ruleContent": "Rules Alterations", - "parentRuleCode": "GR.4", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.3.1", - "ruleContent": "The Formula SAE rules may be revised, updated, or amended at any time", - "parentRuleCode": "GR.4.3", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.3.2", - "ruleContent": "Official designated communications from the Formula SAE Rules Committee, SAE International or the other organizing bodies are to be considered part of, and have the same validity as, these rules", - "parentRuleCode": "GR.4.3", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.3.3", - "ruleContent": "Draft rules or proposals may be issued for comments, however they are a courtesy, are not valid for any competitions, and may or may not be implemented in whole or in part.", - "parentRuleCode": "GR.4.3", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.4", - "ruleContent": "Rules Compliance", - "parentRuleCode": "GR.4", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.4.1", - "ruleContent": "All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE Online Website to verify the current version.", - "parentRuleCode": "GR.4.4", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.4.2", - "ruleContent": "Teams and team members must comply with the general rules and any specific rules for each competition they enter.", - "parentRuleCode": "GR.4.4", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.4.3", - "ruleContent": "Any regulations pertaining to the use of the competition site by teams or individuals and which are posted, announced and/or otherwise publicly available are incorporated into the Formula SAE Rules by reference. As examples, all competition site waiver requirements, speed limits, parking and facility use rules apply to Formula SAE participants.", - "parentRuleCode": "GR.4.4", - "pageNumber": "7" - }, - { - "ruleCode": "GR.4.5", - "ruleContent": "Violations on Intent The violation of the intent of a rule will be considered a violation of the rule itself.", - "parentRuleCode": "GR.4", - "pageNumber": "7" - }, - { - "ruleCode": "GR.5", - "ruleContent": "RULES OF CONDUCT", - "parentRuleCode": "GR", - "pageNumber": "7" - }, - { - "ruleCode": "GR.5.1", - "ruleContent": "Unsportsmanlike Conduct If unsportsmanlike conduct occurs, the team gets a warning from an official. A second violation will result in expulsion of the team from the competition.", - "parentRuleCode": "GR.5", - "pageNumber": "7" - }, - { - "ruleCode": "GR.5.2", - "ruleContent": "Official Instructions Failure of a team member to follow an instruction or command directed specifically to that team or team member will result in a 25 point penalty. Version 1.0 31 Aug 2024", - "parentRuleCode": "GR.5", - "pageNumber": "7" - }, - { - "ruleCode": "GR.5.3", - "ruleContent": "Arguments with Officials Argument with, or disobedience of, any official may result in the team being eliminated from the competition. All members of the team may be immediately escorted from the grounds.", - "parentRuleCode": "GR.5", - "pageNumber": "8" - }, - { - "ruleCode": "GR.5.4", - "ruleContent": "Alcohol and Illegal Material", - "parentRuleCode": "GR.5", - "pageNumber": "8" - }, - { - "ruleCode": "GR.5.4.1", - "ruleContent": "Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site during the entire competition.", - "parentRuleCode": "GR.5.4", - "pageNumber": "8" - }, - { - "ruleCode": "GR.5.4.2", - "ruleContent": "Any violation of this rule by any team member or faculty advisor will cause immediate disqualification and expulsion of the entire team.", - "parentRuleCode": "GR.5.4", - "pageNumber": "8" - }, - { - "ruleCode": "GR.5.4.3", - "ruleContent": "Any use of drugs, or the use of alcohol by an underage individual will be reported to the local authorities.", - "parentRuleCode": "GR.5.4", - "pageNumber": "8" - }, - { - "ruleCode": "GR.5.5", - "ruleContent": "Smoking – Prohibited Smoking and e-cigarette use is prohibited in all competition areas.", - "parentRuleCode": "GR.5", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6", - "ruleContent": "RULES FORMAT AND USE", - "parentRuleCode": "GR", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6.1", - "ruleContent": "Definition of Terms • Must - designates a requirement • Must NOT - designates a prohibition or restriction • Should - gives an expectation • May - gives permission, not a requirement and not a recommendation", - "parentRuleCode": "GR.6", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6.2", - "ruleContent": "Capitalized Terms Items or areas which have specific definitions or have specific rules are capitalized. For example, “Rules Questions” or “Primary Structure”", - "parentRuleCode": "GR.6", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6.3", - "ruleContent": "Headings The article, section and paragraph headings in these rules are provided only to facilitate reading: they do not affect the paragraph contents.", - "parentRuleCode": "GR.6", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6.4", - "ruleContent": "Applicability", - "parentRuleCode": "GR.6", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6.4.1", - "ruleContent": "Unless otherwise specified, all rules apply to all vehicles at all times", - "parentRuleCode": "GR.6.4", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6.4.2", - "ruleContent": "Rules specific to vehicles based on their powertrain will be specified as such in the rule text: • Internal Combustion “IC” or “IC Only” • Electric Vehicle “EV” or “EV Only”", - "parentRuleCode": "GR.6.4", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6.5", - "ruleContent": "Figures and Illustrations Figures and illustrations give clarification or guidance, but are Rules only when referred to in the text of a rule", - "parentRuleCode": "GR.6", - "pageNumber": "8" - }, - { - "ruleCode": "GR.6.6", - "ruleContent": "Change Identification Any summary of changed rules and/or changed portions marked in the rules themselves are provided for courtesy, and may or may not include all changes. Version 1.0 31 Aug 2024", - "parentRuleCode": "GR.6", - "pageNumber": "8" - }, - { - "ruleCode": "GR.7", - "ruleContent": "RULES QUESTIONS", - "parentRuleCode": "GR", - "pageNumber": "9" - }, - { - "ruleCode": "GR.7.1", - "ruleContent": "Question Types Designated officials will answer questions that are not already answered in the rules or FAQs or that require new or novel rule interpretations. Rules Questions may also be used to request approval, as specified in these rules.", - "parentRuleCode": "GR.7", - "pageNumber": "9" - }, - { - "ruleCode": "GR.7.2", - "ruleContent": "Question Format", - "parentRuleCode": "GR.7", - "pageNumber": "9" - }, - { - "ruleCode": "GR.7.2.1", - "ruleContent": "All Rules Questions must include: • Full name and contact information of the person submitting the question • University name – no abbreviations • The specific competition your team has, or is planning to, enter • Number of the applicable rule(s)", - "parentRuleCode": "GR.7.2", - "pageNumber": "9" - }, - { - "ruleCode": "GR.7.2.2", - "ruleContent": "Response Time • Please allow a minimum of two weeks for a response • Do not resubmit questions", - "parentRuleCode": "GR.7.2", - "pageNumber": "9" - }, - { - "ruleCode": "GR.7.2.3", - "ruleContent": "Submission Addresses", - "parentRuleCode": "GR.7.2", - "pageNumber": "9" - }, - { - "ruleCode": "GR.7.2.3.a", - "ruleContent": "Teams entering Formula SAE competitions: Follow the link and instructions published on the FSAE Online Website to \"Submit a Rules Question\"", - "parentRuleCode": "GR.7.2.3", - "pageNumber": "9" - }, - { - "ruleCode": "GR.7.2.3.b", - "ruleContent": "Teams entering other competitions please visit those respective competition websites for further instructions.", - "parentRuleCode": "GR.7.2.3", - "pageNumber": "9" - }, - { - "ruleCode": "GR.7.3", - "ruleContent": "Question Publication Any submitted question and the official answer may be reproduced and freely distributed, in complete and edited versions.", - "parentRuleCode": "GR.7", - "pageNumber": "9" - }, - { - "ruleCode": "GR.8", - "ruleContent": "PROTESTS", - "parentRuleCode": "GR", - "pageNumber": "9" - }, - { - "ruleCode": "GR.8.1", - "ruleContent": "Cause for Protest A team may protest any rule interpretation, score or official action (unless specifically excluded from Protest) which they feel has caused some actual, non trivial, harm to their team, or has had a substantive effect on their score.", - "parentRuleCode": "GR.8", - "pageNumber": "9" - }, - { - "ruleCode": "GR.8.2", - "ruleContent": "Preliminary Review – Required Questions about scoring, judging, policies or any official action must be brought to the attention of the organizer or SAE International staff for an informal preliminary review before a protest may be filed.", - "parentRuleCode": "GR.8", - "pageNumber": "9" - }, - { - "ruleCode": "GR.8.3", - "ruleContent": "Protest Format • All protests must be filed in writing • The completed protest must be presented to the organizer or SAE International staff by the team captain. • Team video or data acquisition will not be reviewed as part of a protest.", - "parentRuleCode": "GR.8", - "pageNumber": "9" - }, - { - "ruleCode": "GR.8.4", - "ruleContent": "Protest Point Bond A team must post a 25 point protest bond which will be forfeited if their protest is rejected. Version 1.0 31 Aug 2024", - "parentRuleCode": "GR.8", - "pageNumber": "9" - }, - { - "ruleCode": "GR.8.5", - "ruleContent": "Protest Period Protests concerning any aspect of the competition must be filed in the protest period announced by the competition organizers or 30 minutes of the posting of the scores of the event to which the protest relates.", - "parentRuleCode": "GR.8", - "pageNumber": "10" - }, - { - "ruleCode": "GR.8.6", - "ruleContent": "Decision The decision regarding any protest is final.", - "parentRuleCode": "GR.8", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9", - "ruleContent": "VEHICLE ELIGIBILITY", - "parentRuleCode": "GR", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.1", - "ruleContent": "Student Developed Vehicle", - "parentRuleCode": "GR.9", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.1.1", - "ruleContent": "Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and maintained by the student team members without direct involvement from professional engineers, automotive engineers, racers, machinists or related professionals.", - "parentRuleCode": "GR.9.1", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.1.2", - "ruleContent": "Information Sources The student team may use any literature or knowledge related to design and information from professionals or from academics as long as the information is given as a discussion of alternatives with their pros and cons.", - "parentRuleCode": "GR.9.1", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.1.3", - "ruleContent": "Professional Assistance Professionals must not make design decisions or drawings. The Faculty Advisor may be required to sign a statement of compliance with this restriction.", - "parentRuleCode": "GR.9.1", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.1.4", - "ruleContent": "Student Fabrication Students should do all fabrication tasks", - "parentRuleCode": "GR.9.1", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.2", - "ruleContent": "Definitions", - "parentRuleCode": "GR.9", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.2.1", - "ruleContent": "Competition Year The period beginning at the event of the Formula SAE series where the vehicle first competes and continuing until the start of the corresponding event held approximately 12 months later.", - "parentRuleCode": "GR.9.2", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.2.2", - "ruleContent": "First Year Vehicle A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year", - "parentRuleCode": "GR.9.2", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.2.3", - "ruleContent": "Second Year Vehicle A vehicle which has competed in a previous Competition Year", - "parentRuleCode": "GR.9.2", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.2.4", - "ruleContent": "Third Year Vehicle A vehicle which has competed in more than one previous Competition Year", - "parentRuleCode": "GR.9.2", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.3", - "ruleContent": "Formula SAE Competition Eligibility", - "parentRuleCode": "GR.9", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.3.1", - "ruleContent": "Only First Year Vehicles may enter the Formula SAE Competitions", - "parentRuleCode": "GR.9.3", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.3.1.a", - "ruleContent": "If there is any question about the status as a First Year Vehicle, the team must provide additional information and/or evidence.", - "parentRuleCode": "GR.9.3.1", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.3.2", - "ruleContent": "Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the organizer of the specific competition. The Formula SAE and Formula SAE Electric events in North America do not allow Second Year Vehicles", - "parentRuleCode": "GR.9.3", - "pageNumber": "10" - }, - { - "ruleCode": "GR.9.3.3", - "ruleContent": "Third Year Vehicles must not enter any Formula SAE Competitions Version 1.0 31 Aug 2024", - "parentRuleCode": "GR.9.3", - "pageNumber": "10" - }, - { - "ruleCode": "AD", - "ruleContent": "ADMINISTRATIVE REGULATIONS", - "pageNumber": "11" - }, - { - "ruleCode": "AD.1", - "ruleContent": "THE FORMULA SAE SERIES", - "parentRuleCode": "AD", - "pageNumber": "11" - }, - { - "ruleCode": "AD.1.1", - "ruleContent": "Rule Variations All competitions in the Formula SAE Series may post rule variations specific to the operation of the events in their countries. Vehicle design requirements and restrictions will remain unchanged. Any rule variations will be posted on the websites specific to those competitions.", - "parentRuleCode": "AD.1", - "pageNumber": "11" - }, - { - "ruleCode": "AD.1.2", - "ruleContent": "Official Announcements and Competition Information Teams must read the published announcements by SAE International and the other organizing bodies and be familiar with all official announcements concerning the competitions and any released rules interpretations.", - "parentRuleCode": "AD.1", - "pageNumber": "11" - }, - { - "ruleCode": "AD.1.3", - "ruleContent": "Official Languages The official language of the Formula SAE series is English. Document submissions, presentations and discussions in English are acceptable at all competitions in the series.", - "parentRuleCode": "AD.1", - "pageNumber": "11" - }, - { - "ruleCode": "AD.2", - "ruleContent": "OFFICIAL INFORMATION SOURCES These websites are referenced in these rules. Refer to the websites for additional information and resources.", - "parentRuleCode": "AD", - "pageNumber": "11" - }, - { - "ruleCode": "AD.2.1", - "ruleContent": "Event Website The Event Website for Formula SAE is specific to each competition, refer to: https://www.sae.org/attend/student-events", - "parentRuleCode": "AD.2", - "pageNumber": "11" - }, - { - "ruleCode": "AD.2.2", - "ruleContent": "FSAE Online Website The FSAE Online website is at: http://fsaeonline.com/", - "parentRuleCode": "AD.2", - "pageNumber": "11" - }, - { - "ruleCode": "AD.2.2.1", - "ruleContent": "Documents, forms, and information are accessed from the “Series Resources” link", - "parentRuleCode": "AD.2.2", - "pageNumber": "11" - }, - { - "ruleCode": "AD.2.2.2", - "ruleContent": "Each registered team must have an account on the FSAE Online Website.", - "parentRuleCode": "AD.2.2", - "pageNumber": "11" - }, - { - "ruleCode": "AD.2.2.3", - "ruleContent": "Each team must have one or more persons as Team Captain. The Team Captain must accept Team Members.", - "parentRuleCode": "AD.2.2", - "pageNumber": "11" - }, - { - "ruleCode": "AD.2.2.4", - "ruleContent": "Only persons designated Team Members or Team Captains are able to upload documents to the website.", - "parentRuleCode": "AD.2.2", - "pageNumber": "11" - }, - { - "ruleCode": "AD.2.3", - "ruleContent": "Contacts Contact collegiatecompetitions@sae.org with any problems/comments/concerns Consult the specific website for the other competitions requirements.", - "parentRuleCode": "AD.2", - "pageNumber": "11" - }, - { - "ruleCode": "AD.3", - "ruleContent": "INDIVIDUAL PARTICIPATION REQUIREMENTS", - "parentRuleCode": "AD", - "pageNumber": "11" - }, - { - "ruleCode": "AD.3.1", - "ruleContent": "Eligibility", - "parentRuleCode": "AD.3", - "pageNumber": "11" - }, - { - "ruleCode": "AD.3.1.1", - "ruleContent": "Team members must be enrolled as degree seeking undergraduate or graduate students in the college or university of the team with which they are participating.", - "parentRuleCode": "AD.3.1", - "pageNumber": "11" - }, - { - "ruleCode": "AD.3.1.2", - "ruleContent": "Team members who have graduated during the seven month period prior to the competition remain eligible to participate. Version 1.0 31 Aug 2024", - "parentRuleCode": "AD.3.1", - "pageNumber": "11" - }, - { - "ruleCode": "AD.3.1.3", - "ruleContent": "Teams which are formed with members from two or more universities are treated as a single team. A student at any university making up the team may compete at any competition where the team participates. The multiple universities are treated as one university with the same eligibility requirements.", - "parentRuleCode": "AD.3.1", - "pageNumber": "12" - }, - { - "ruleCode": "AD.3.1.4", - "ruleContent": "Each team member may participate at a competition for only one team. This includes competitions where the University enters both IC and EV teams.", - "parentRuleCode": "AD.3.1", - "pageNumber": "12" - }, - { - "ruleCode": "AD.3.2", - "ruleContent": "Age Team members must be minimum 18 years of age.", - "parentRuleCode": "AD.3", - "pageNumber": "12" - }, - { - "ruleCode": "AD.3.3", - "ruleContent": "Driver’s License Team members who will drive a competition vehicle at any time during a competition must hold a valid, government issued driver’s license.", - "parentRuleCode": "AD.3", - "pageNumber": "12" - }, - { - "ruleCode": "AD.3.4", - "ruleContent": "Society Membership Team members must be members of SAE International Proof of membership, such as membership card, is required at the competition.", - "parentRuleCode": "AD.3", - "pageNumber": "12" - }, - { - "ruleCode": "AD.3.5", - "ruleContent": "Medical Insurance Individual medical insurance coverage is required and is the sole responsibility of the participant.", - "parentRuleCode": "AD.3", - "pageNumber": "12" - }, - { - "ruleCode": "AD.3.6", - "ruleContent": "Disabled Accessibility Team members who require accessibility for areas outside of ADA Compliance must contact organizers at collegiatecompetitions@sae.org prior to start of competition.", - "parentRuleCode": "AD.3", - "pageNumber": "12" - }, - { - "ruleCode": "AD.4", - "ruleContent": "INDIVIDUAL REGISTRATION REQUIREMENTS", - "parentRuleCode": "AD", - "pageNumber": "12" - }, - { - "ruleCode": "AD.4.1", - "ruleContent": "Preliminary Registration", - "parentRuleCode": "AD.4", - "pageNumber": "12" - }, - { - "ruleCode": "AD.4.1.1", - "ruleContent": "All students and faculty must be affiliated to your respective school /college/university on the Event Website before the deadline shown on the Event Website", - "parentRuleCode": "AD.4.1", - "pageNumber": "12" - }, - { - "ruleCode": "AD.4.1.2", - "ruleContent": "International student participants (or unaffiliated Faculty Advisors) who are not SAE International members must create a free customer account profile on www.sae.org. Upon completion, please email collegiatecompetitions@sae.org the assigned customer number stating also the event and university affiliation.", - "parentRuleCode": "AD.4.1", - "pageNumber": "12" - }, - { - "ruleCode": "AD.4.2", - "ruleContent": "Onsite Registration", - "parentRuleCode": "AD.4", - "pageNumber": "12" - }, - { - "ruleCode": "AD.4.2.1", - "ruleContent": "All team members and faculty advisors must register at the competition site", - "parentRuleCode": "AD.4.2", - "pageNumber": "12" - }, - { - "ruleCode": "AD.4.2.2", - "ruleContent": "All onsite participants, including students, faculty and volunteers, must sign a liability waiver upon registering onsite.", - "parentRuleCode": "AD.4.2", - "pageNumber": "12" - }, - { - "ruleCode": "AD.4.2.3", - "ruleContent": "Onsite registration must be completed before the vehicle may be unloaded, uncrated or worked upon in any manner.", - "parentRuleCode": "AD.4.2", - "pageNumber": "12" - }, - { - "ruleCode": "AD.5", - "ruleContent": "TEAM ADVISORS AND OFFICERS", - "parentRuleCode": "AD", - "pageNumber": "12" - }, - { - "ruleCode": "AD.5.1", - "ruleContent": "Faculty Advisor", - "parentRuleCode": "AD.5", - "pageNumber": "12" - }, - { - "ruleCode": "AD.5.1.1", - "ruleContent": "Each team must have a Faculty Advisor appointed by their university.", - "parentRuleCode": "AD.5.1", - "pageNumber": "12" - }, - { - "ruleCode": "AD.5.1.2", - "ruleContent": "The Faculty Advisor should accompany the team to the competition and will be considered by the officials to be the official university representative. Version 1.0 31 Aug 2024", - "parentRuleCode": "AD.5.1", - "pageNumber": "12" - }, - { - "ruleCode": "AD.5.1.3", - "ruleContent": "Faculty Advisors:", - "parentRuleCode": "AD.5.1", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.1.3.a", - "ruleContent": "May advise their teams on general engineering and engineering project management theory", - "parentRuleCode": "AD.5.1.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.1.3.b", - "ruleContent": "Must not design, build or repair any part of the vehicle", - "parentRuleCode": "AD.5.1.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.1.3.c", - "ruleContent": "Must not develop any documentation or presentation", - "parentRuleCode": "AD.5.1.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.2", - "ruleContent": "Electrical System Officer (EV Only) The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle during the event", - "parentRuleCode": "AD.5", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.2.1", - "ruleContent": "Each participating team must appoint one or more ESO for the event", - "parentRuleCode": "AD.5.2", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.2.2", - "ruleContent": "The ESO must be:", - "parentRuleCode": "AD.5.2", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.2.2.a", - "ruleContent": "A valid team member, see AD.3 Individual Participation Requirements", - "parentRuleCode": "AD.5.2.2", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.2.2.b", - "ruleContent": "One or more ESO must not be a driver", - "parentRuleCode": "AD.5.2.2", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.2.2.c", - "ruleContent": "Certified or has received appropriate practical training whether formal or informal for working with High Voltage systems in automotive vehicles Give details of the training on the ESO/ESA form", - "parentRuleCode": "AD.5.2.2", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.2.3", - "ruleContent": "Duties of the ESO - see EV.11.1.1", - "parentRuleCode": "AD.5.2", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.3", - "ruleContent": "Electric System Advisor (EV Only)", - "parentRuleCode": "AD.5", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.3.1", - "ruleContent": "The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated by the team who can advise on the electrical and control systems that will be integrated into the vehicle. The faculty advisor may also be the ESA if all the requirements below are met.", - "parentRuleCode": "AD.5.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.3.2", - "ruleContent": "The ESA must supply details of their experience of electrical and/or control systems engineering as used in the vehicle on the ESO/ESA form", - "parentRuleCode": "AD.5.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.3.3", - "ruleContent": "The ESA must be sufficiently qualified to advise the team on their proposed electrical and control system designs based on significant experience of the technology being developed and its implementation into vehicles or other safety critical systems. More than one person may be needed.", - "parentRuleCode": "AD.5.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.3.4", - "ruleContent": "The ESA must advise the team on the merits of any relevant engineering solutions. Solutions should be discussed, questioned and approved before they are implemented into the final vehicle design.", - "parentRuleCode": "AD.5.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.3.5", - "ruleContent": "The ESA should advise the students on any required training to work with the systems on the vehicle.", - "parentRuleCode": "AD.5.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.3.6", - "ruleContent": "The ESA must review the Electrical System Form and to confirm that in principle the vehicle has been designed using good engineering practices.", - "parentRuleCode": "AD.5.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.5.3.7", - "ruleContent": "The ESA must make sure that the team communicates any unusual aspects of the design to reduce the risk of exclusion or significant changes being required to pass Technical Inspection.", - "parentRuleCode": "AD.5.3", - "pageNumber": "13" - }, - { - "ruleCode": "AD.6", - "ruleContent": "COMPETITION REGISTRATION", - "parentRuleCode": "AD", - "pageNumber": "13" - }, - { - "ruleCode": "AD.6.1", - "ruleContent": "General Information", - "parentRuleCode": "AD.6", - "pageNumber": "13" - }, - { - "ruleCode": "AD.6.1.1", - "ruleContent": "Registration for Formula SAE competitions must be completed on the Event Website.", - "parentRuleCode": "AD.6.1", - "pageNumber": "13" - }, - { - "ruleCode": "AD.6.1.2", - "ruleContent": "Refer to the individual competition websites for registration requirements for other competitions Version 1.0 31 Aug 2024", - "parentRuleCode": "AD.6.1", - "pageNumber": "13" - }, - { - "ruleCode": "AD.6.2", - "ruleContent": "Registration Details", - "parentRuleCode": "AD.6", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.2.1", - "ruleContent": "Refer to the Event Website for specific registration requirements and details. • Registration limits and Waitlist limits will be posted on the Event Website. • Registration will open at the date and time posted on the Event Website. • Registration(s) may have limitations", - "parentRuleCode": "AD.6.2", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.2.2", - "ruleContent": "Once a competition reaches the registration limit, a Waitlist will open.", - "parentRuleCode": "AD.6.2", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.2.3", - "ruleContent": "Beginning on the date and time posted on the Event Website, any remaining slots will be available to any team on a first come, first serve basis.", - "parentRuleCode": "AD.6.2", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.2.4", - "ruleContent": "Registration and the Waitlist will close at the date and time posted on the Event Website or when all available slots have been taken, whichever occurs first.", - "parentRuleCode": "AD.6.2", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.3", - "ruleContent": "Registration Fees", - "parentRuleCode": "AD.6", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.3.1", - "ruleContent": "Registration fees must be paid by the deadline specified on the respective competition website", - "parentRuleCode": "AD.6.3", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.3.2", - "ruleContent": "Registration fees are not refundable and not transferrable to any other competition.", - "parentRuleCode": "AD.6.3", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.4", - "ruleContent": "Waitlist", - "parentRuleCode": "AD.6", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.4.1", - "ruleContent": "Waitlisted teams must submit all documents by the same deadlines as registered teams to remain on the Waitlist.", - "parentRuleCode": "AD.6.4", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.4.2", - "ruleContent": "Once a team withdraws from the competition, the organizer will inform the next team on the Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the registered list has opened.", - "parentRuleCode": "AD.6.4", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.4.3", - "ruleContent": "The team will then have 24 hours to accept or reject the position and an additional 24 hours to have the registration payment completed or in process.", - "parentRuleCode": "AD.6.4", - "pageNumber": "14" - }, - { - "ruleCode": "AD.6.5", - "ruleContent": "Withdrawals Registered teams that will not attend the competition must inform SAE International or the organizer, as posted on the Event Website", - "parentRuleCode": "AD.6", - "pageNumber": "14" - }, - { - "ruleCode": "AD.7", - "ruleContent": "COMPETITION SITE", - "parentRuleCode": "AD", - "pageNumber": "14" - }, - { - "ruleCode": "AD.7.1", - "ruleContent": "Personal Vehicles Personal cars and trailers must be parked in designated areas only. Only authorized vehicles will be allowed in the track areas.", - "parentRuleCode": "AD.7", - "pageNumber": "14" - }, - { - "ruleCode": "AD.7.2", - "ruleContent": "Motorcycles, Bicycles, Rollerblades, etc. - Prohibited The use of motorcycles, quads, bicycles, scooters, skateboards, rollerblades or similar person- carrying devices by team members and spectators in any part of the competition area, including the paddocks, is prohibited.", - "parentRuleCode": "AD.7", - "pageNumber": "14" - }, - { - "ruleCode": "AD.7.3", - "ruleContent": "Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any part of the competition site, including the paddocks, is prohibited.", - "parentRuleCode": "AD.7", - "pageNumber": "14" - }, - { - "ruleCode": "AD.7.4", - "ruleContent": "Trash Cleanup", - "parentRuleCode": "AD.7", - "pageNumber": "14" - }, - { - "ruleCode": "AD.7.4.1", - "ruleContent": "Cleanup of trash and debris is the responsibility of the teams. • The team’s work area should be kept uncluttered Version 1.0 31 Aug 2024 • At the end of the day, each team must clean all debris from their area and help with maintaining a clean paddock", - "parentRuleCode": "AD.7.4", - "pageNumber": "14" - }, - { - "ruleCode": "AD.7.4.2", - "ruleContent": "Teams must remove all of their material and trash when leaving the site at the end of the competition.", - "parentRuleCode": "AD.7.4", - "pageNumber": "15" - }, - { - "ruleCode": "AD.7.4.3", - "ruleContent": "Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be billed for removal and/or cleanup costs. Version 1.0 31 Aug 2024", - "parentRuleCode": "AD.7.4", - "pageNumber": "15" - }, - { - "ruleCode": "DR", - "ruleContent": "DOCUMENT REQUIREMENTS", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1", - "ruleContent": "DOCUMENTATION", - "parentRuleCode": "DR", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.1", - "ruleContent": "Requirements", - "parentRuleCode": "DR.1", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.1.1", - "ruleContent": "The documents supporting each vehicle must be submitted before the deadlines posted on the Event Website or otherwise published by the organizer.", - "parentRuleCode": "DR.1.1", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.1.2", - "ruleContent": "The procedures for submitting documents are published on the Event Website or otherwise identified by the organizer.", - "parentRuleCode": "DR.1.1", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2", - "ruleContent": "Definitions", - "parentRuleCode": "DR.1", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2.1", - "ruleContent": "Submission Date The date and time of upload to the website", - "parentRuleCode": "DR.1.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2.2", - "ruleContent": "Submission Deadline The date and time by which the document must be uploaded or submitted", - "parentRuleCode": "DR.1.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2.3", - "ruleContent": "No Submissions Accepted After The last date and time that documents may be uploaded or submitted", - "parentRuleCode": "DR.1.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2.4", - "ruleContent": "Late Submission • Uploaded after the Submission Deadline and prior to No Submissions Accepted After • Submitted largely incomplete prior to or after the Submission Deadline", - "parentRuleCode": "DR.1.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2.5", - "ruleContent": "Not Submitted • Not uploaded prior to No Submissions Accepted After • Not in the specified form or format", - "parentRuleCode": "DR.1.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2.6", - "ruleContent": "Amount Late The number of days between the Submission Deadline and the Submission Date. Any partial day is rounded up to a full day. Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late would be two days penalty", - "parentRuleCode": "DR.1.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2.7", - "ruleContent": "Grounds for Removal A designated document that if Not Submitted may cause Removal of Team Entry", - "parentRuleCode": "DR.1.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.1.2.8", - "ruleContent": "Reviewer A designated event official who is assigned to review and accept a Submission", - "parentRuleCode": "DR.1.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.2", - "ruleContent": "SUBMISSION DETAILS", - "parentRuleCode": "DR", - "pageNumber": "16" - }, - { - "ruleCode": "DR.2.1", - "ruleContent": "Submission Location Teams entering Formula SAE competitions in North America must upload the required documents to the team account on the FSAE Online Website, see AD.2.2", - "parentRuleCode": "DR.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.2.2", - "ruleContent": "Submission Format Requirements Refer to Table DR-1 Submission Information", - "parentRuleCode": "DR.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.2.2.1", - "ruleContent": "Template files with the required format must be used when specified in Table DR-1", - "parentRuleCode": "DR.2.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.2.2.2", - "ruleContent": "Template files are available on the FSAE Online Website, see AD.2.2.1 Version 1.0 31 Aug 2024", - "parentRuleCode": "DR.2.2", - "pageNumber": "16" - }, - { - "ruleCode": "DR.2.2.3", - "ruleContent": "Do Not alter the format of any provided template files", - "parentRuleCode": "DR.2.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.2.2.4", - "ruleContent": "Each submission must be one single file in the specified format (PDF - Portable Document File, XLSX - Microsoft Excel Worksheet File)", - "parentRuleCode": "DR.2.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3", - "ruleContent": "SUBMISSION PENALTIES", - "parentRuleCode": "DR", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.1", - "ruleContent": "Submissions", - "parentRuleCode": "DR.3", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.1.1", - "ruleContent": "Each team is responsible for confirming that their documents have been properly uploaded or submitted and that the deadlines have been met", - "parentRuleCode": "DR.3.1", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.1.2", - "ruleContent": "Prior to the Submission Deadline:", - "parentRuleCode": "DR.3.1", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.1.2.a", - "ruleContent": "Documents may be uploaded at any time", - "parentRuleCode": "DR.3.1.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.1.2.b", - "ruleContent": "Uploads may be replaced with new uploads without penalty", - "parentRuleCode": "DR.3.1.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.1.3", - "ruleContent": "If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline for the revised document may apply", - "parentRuleCode": "DR.3.1", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.1.4", - "ruleContent": "Teams will not be notified if a document is submitted incorrectly", - "parentRuleCode": "DR.3.1", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.2", - "ruleContent": "Penalty Detail", - "parentRuleCode": "DR.3", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.2.1", - "ruleContent": "Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion.", - "parentRuleCode": "DR.3.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.2.2", - "ruleContent": "Additional penalties will apply if Not Submitted, subject to official discretion", - "parentRuleCode": "DR.3.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.2.3", - "ruleContent": "Penalties up to and including Removal of Team Entry may apply based on document reviews, subject to official discretion", - "parentRuleCode": "DR.3.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.3", - "ruleContent": "Removal of Team Entry", - "parentRuleCode": "DR.3", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.3.1", - "ruleContent": "The organizer may remove the team entry when a:", - "parentRuleCode": "DR.3.3", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.3.1.a", - "ruleContent": "Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. Removals will occur after each Document Submission deadline", - "parentRuleCode": "DR.3.3.1", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.3.1.b", - "ruleContent": "Team does not respond to Reviewer requests or organizer communications", - "parentRuleCode": "DR.3.3.1", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.3.2", - "ruleContent": "When a team entry will be removed:", - "parentRuleCode": "DR.3.3", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.3.2.a", - "ruleContent": "The team will be notified prior to cancelling registration", - "parentRuleCode": "DR.3.3.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.3.2.b", - "ruleContent": "No refund of entry fees will be given", - "parentRuleCode": "DR.3.3.2", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.4", - "ruleContent": "Specific Penalties", - "parentRuleCode": "DR.3", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.4.1", - "ruleContent": "Electronic Throttle Control (ETC) (IC Only)", - "parentRuleCode": "DR.3.4", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.4.1.a", - "ruleContent": "There is no point penalty for ETC documents", - "parentRuleCode": "DR.3.4.1", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.4.1.b", - "ruleContent": "The team will not be allowed to run ETC on their vehicle and must use mechanical throttle operation when: • The ETC Notice of Intent is Not Submitted • The ETC Systems Form is Not Submitted, or is not accepted", - "parentRuleCode": "DR.3.4.1", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.4.2", - "ruleContent": "Fuel Type IC.5.1 There is no point penalty for a late fuel type order. Once the deadline has passed, the team will be allocated the basic fuel type.", - "parentRuleCode": "DR.3.4", - "pageNumber": "17" - }, - { - "ruleCode": "DR.3.4.3", - "ruleContent": "Program Submissions Please submit material requested for the Event Program by the published deadlines Version 1.0 31 Aug 2024 Table DR-1 Submission Information Submission Refer to: Required Format: Submit in File Format: Penalty Group Structural Equivalency Spreadsheet (SES) as applicable to your design", - "parentRuleCode": "DR.3.4", - "pageNumber": "17" - }, - { - "ruleCode": "F.2.1", - "ruleContent": "see below XLSX Tech ETC - Notice of Intent IC.4.3 see below PDF ETC ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC EV – Electrical Systems Officer and Electrical Systems Advisor Form AD.5.2, AD.5.3 see below PDF Tech EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other Cost Report S.3.4 see S.3.4.2 (1) Other Cost Addendum S.3.7 see below see S.3.7 none Design Briefing S.4.3 see below PDF Other Vehicle Drawings S.4.4 see S.4.4.1 PDF Other Design Spec Sheet S.4.5 see below XLSX Other Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 Note (1): Refer to the FSAE Online website for submission requirements Table DR-2 Submission Penalty Information Penalty Group Penalty Points per 24 Hours Not Submitted after the Deadline ETC none Not Approved to use ETC - see DR.3.4.1 Tech -20 Grounds for Removal - see DR.3.3 Other -10 Removed from Cost/Design/Presentation Event and Score 0 points – see DR.3.2.2 Version 1.0 31 Aug 2024", - "parentRuleCode": "F.2", - "pageNumber": "18" - }, - { - "ruleCode": "V", - "ruleContent": "VEHICLE REQUIREMENTS", - "pageNumber": "19" - }, - { - "ruleCode": "V.1", - "ruleContent": "CONFIGURATION The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels that are not in a straight line.", - "parentRuleCode": "V", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.1", - "ruleContent": "Open Wheel Open Wheel vehicles must satisfy all of these criteria:", - "parentRuleCode": "V.1", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.1.a", - "ruleContent": "The top 180° of the wheels/tires must be unobstructed when viewed from vertically above the wheel.", - "parentRuleCode": "V.1.1", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.1.b", - "ruleContent": "The wheels/tires must be unobstructed when viewed from the side.", - "parentRuleCode": "V.1.1", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.1.c", - "ruleContent": "No part of the vehicle may enter a keep out zone defined by two lines extending vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the front and rear tires in the side view elevation of the vehicle, with tires steered straight ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire to the inboard plane of the wheel/tire.", - "parentRuleCode": "V.1.1", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.2", - "ruleContent": "Wheelbase The vehicle must have a minimum wheelbase of 1525 mm", - "parentRuleCode": "V.1", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.3", - "ruleContent": "Vehicle Track", - "parentRuleCode": "V.1", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.3.1", - "ruleContent": "The track and center of gravity must combine to provide sufficient rollover stability. See IN.9.2", - "parentRuleCode": "V.1.3", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.3.2", - "ruleContent": "The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. Version 1.0 31 Aug 2024", - "parentRuleCode": "V.1.3", - "pageNumber": "19" - }, - { - "ruleCode": "V.1.4", - "ruleContent": "Ground Clearance", - "parentRuleCode": "V.1", - "pageNumber": "20" - }, - { - "ruleCode": "V.1.4.1", - "ruleContent": "Ground clearance must be sufficient to prevent any portion of the vehicle except the tires from touching the ground during dynamic events", - "parentRuleCode": "V.1.4", - "pageNumber": "20" - }, - { - "ruleCode": "V.1.4.2", - "ruleContent": "The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less.", - "parentRuleCode": "V.1.4", - "pageNumber": "20" - }, - { - "ruleCode": "V.1.4.2.a", - "ruleContent": "There must be an opening for measuring the ride height at that point without removing aerodynamic devices", - "parentRuleCode": "V.1.4.2", - "pageNumber": "20" - }, - { - "ruleCode": "V.1.4.3", - "ruleContent": "Intentional or excessive ground contact of any portion of the vehicle other than the tires will forfeit a run or an entire dynamic event The intent is that sliding skirts or other devices that by design, fabrication or as a consequence of moving, contact the track surface are prohibited and any unintended contact with the ground which causes damage, or in the opinion of the Dynamic Event Officials could result in damage to the track, will result in forfeit of a run or an entire dynamic event", - "parentRuleCode": "V.1.4", - "pageNumber": "20" - }, - { - "ruleCode": "V.2", - "ruleContent": "DRIVER", - "parentRuleCode": "V", - "pageNumber": "20" - }, - { - "ruleCode": "V.2.1", - "ruleContent": "Accommodation", - "parentRuleCode": "V.2", - "pageNumber": "20" - }, - { - "ruleCode": "V.2.1.1", - "ruleContent": "The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female up to 95th percentile male. • Accommodation includes driver position, driver controls, and driver equipment • Anthropometric data may be found on the FSAE Online Website", - "parentRuleCode": "V.2.1", - "pageNumber": "20" - }, - { - "ruleCode": "V.2.1.2", - "ruleContent": "The driver’s head and hands must not contact the ground in any rollover attitude", - "parentRuleCode": "V.2.1", - "pageNumber": "20" - }, - { - "ruleCode": "V.2.2", - "ruleContent": "Visibility", - "parentRuleCode": "V.2", - "pageNumber": "20" - }, - { - "ruleCode": "V.2.2.a", - "ruleContent": "The driver must have sufficient visibility to the front and sides of the vehicle", - "parentRuleCode": "V.2.2", - "pageNumber": "20" - }, - { - "ruleCode": "V.2.2.b", - "ruleContent": "When seated in a normal driving position, the driver must have a minimum field of vision of 100° to the left and the right sides", - "parentRuleCode": "V.2.2", - "pageNumber": "20" - }, - { - "ruleCode": "V.2.2.c", - "ruleContent": "If mirrors are required for this rule, they must remain in position and adjusted to enable the required visibility throughout all Dynamic Events", - "parentRuleCode": "V.2.2", - "pageNumber": "20" - }, - { - "ruleCode": "V.3", - "ruleContent": "SUSPENSION AND STEERING", - "parentRuleCode": "V", - "pageNumber": "20" - }, - { - "ruleCode": "V.3.1", - "ruleContent": "Suspension", - "parentRuleCode": "V.3", - "pageNumber": "20" - }, - { - "ruleCode": "V.3.1.1", - "ruleContent": "The vehicle must have a fully operational suspension system with shock absorbers, front and rear, with usable minimum wheel travel of 50 mm, with a driver seated.", - "parentRuleCode": "V.3.1", - "pageNumber": "20" - }, - { - "ruleCode": "V.3.1.2", - "ruleContent": "Officials may disqualify vehicles which do not represent a serious attempt at an operational suspension system, or which demonstrate handling inappropriate for an autocross circuit.", - "parentRuleCode": "V.3.1", - "pageNumber": "20" - }, - { - "ruleCode": "V.3.1.3", - "ruleContent": "All suspension mounting points must be visible at Technical Inspection by direct view or by removing any covers.", - "parentRuleCode": "V.3.1", - "pageNumber": "20" - }, - { - "ruleCode": "V.3.1.4", - "ruleContent": "Fasteners in the Suspension system are Critical Fasteners, see T.8.2", - "parentRuleCode": "V.3.1", - "pageNumber": "20" - }, - { - "ruleCode": "V.3.1.5", - "ruleContent": "All spherical rod ends and spherical bearings on the suspension and steering must be one of: • Mounted in double shear • Captured by having a screw/bolt head or washer with an outside diameter that is larger than spherical bearing housing inside diameter. Version 1.0 31 Aug 2024", - "parentRuleCode": "V.3.1", - "pageNumber": "20" - }, - { - "ruleCode": "V.3.2", - "ruleContent": "Steering", - "parentRuleCode": "V.3", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.1", - "ruleContent": "The Steering Wheel must be mechanically connected to the front wheels", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.2", - "ruleContent": "Electrically operated steering of the front wheels is prohibited", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.3", - "ruleContent": "Steering systems must use a rigid mechanical linkage capable of tension and compression loads for operation", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.4", - "ruleContent": "The steering system must have positive steering stops that prevent the steering linkages from locking up (the inversion of a four bar linkage at one of the pivots). The stops:", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.4.a", - "ruleContent": "Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis during the track events", - "parentRuleCode": "V.3.2.4", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.4.b", - "ruleContent": "May be put on the uprights or on the rack", - "parentRuleCode": "V.3.2.4", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.5", - "ruleContent": "Allowable steering system free play is limited to seven degrees (7°) total measured at the steering wheel.", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.6", - "ruleContent": "The steering rack must be mechanically attached to the Chassis F.5.14", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.7", - "ruleContent": "Joints between all components attaching the Steering Wheel to the steering rack must be mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup are not permitted.", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.8", - "ruleContent": "Fasteners in the steering system are Critical Fasteners, see T.8.2", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.9", - "ruleContent": "Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.10", - "ruleContent": "Rear wheel steering may be used.", - "parentRuleCode": "V.3.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.10.a", - "ruleContent": "Rear wheel steering must incorporate mechanical stops to limit the range of angular movement of the rear wheels to a maximum of six degrees (6°)", - "parentRuleCode": "V.3.2.10", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.10.b", - "ruleContent": "The team must provide the ability for the steering angle range to be verified at Technical Inspection with a driver in the vehicle", - "parentRuleCode": "V.3.2.10", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.2.10.c", - "ruleContent": "Rear wheel steering may be electrically operated", - "parentRuleCode": "V.3.2.10", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.3", - "ruleContent": "Steering Wheel", - "parentRuleCode": "V.3", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.3.1", - "ruleContent": "In any angular position, the Steering Wheel must meet T.1.4.4", - "parentRuleCode": "V.3.3", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.3.2", - "ruleContent": "The Steering Wheel must be attached to the column with a quick disconnect.", - "parentRuleCode": "V.3.3", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.3.3", - "ruleContent": "The driver must be able to operate the quick disconnect while in the normal driving position with gloves on.", - "parentRuleCode": "V.3.3", - "pageNumber": "21" - }, - { - "ruleCode": "V.3.3.4", - "ruleContent": "The Steering Wheel must have a continuous perimeter that is near circular or near oval. The outer perimeter profile may have some straight sections, but no concave sections. “H”, “Figure 8”, or cutout wheels are not allowed.", - "parentRuleCode": "V.3.3", - "pageNumber": "21" - }, - { - "ruleCode": "V.4", - "ruleContent": "WHEELS AND TIRES", - "parentRuleCode": "V", - "pageNumber": "21" - }, - { - "ruleCode": "V.4.1", - "ruleContent": "Wheel Size Wheels must be 203.2 mm (8.0 inches) or more in diameter.", - "parentRuleCode": "V.4", - "pageNumber": "21" - }, - { - "ruleCode": "V.4.2", - "ruleContent": "Wheel Attachment", - "parentRuleCode": "V.4", - "pageNumber": "21" - }, - { - "ruleCode": "V.4.2.1", - "ruleContent": "Any wheel mounting system that uses a single retaining nut must incorporate a device to retain the nut and the wheel if the nut loosens. A second nut (jam nut) does not meet this requirement Version 1.0 31 Aug 2024", - "parentRuleCode": "V.4.2", - "pageNumber": "21" - }, - { - "ruleCode": "V.4.2.2", - "ruleContent": "Teams using modified lug bolts or custom designs must provide proof that Good Engineering Practices have been followed in their design.", - "parentRuleCode": "V.4.2", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.2.3", - "ruleContent": "If used, aluminum wheel nuts must be hard anodized and in pristine condition.", - "parentRuleCode": "V.4.2", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3", - "ruleContent": "Tires Vehicles may have two types of tires, Dry and Wet", - "parentRuleCode": "V.4", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.1", - "ruleContent": "Dry Tires", - "parentRuleCode": "V.4.3", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.1.a", - "ruleContent": "The tires on the vehicle when it is presented for Technical Inspection.", - "parentRuleCode": "V.4.3.1", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.1.b", - "ruleContent": "May be any size or type, slicks or treaded.", - "parentRuleCode": "V.4.3.1", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.2", - "ruleContent": "Wet Tires Any size or type of treaded or grooved tire where: • The tread pattern or grooves were molded in by the tire manufacturer, or were cut by the tire manufacturer or appointed agent. Any grooves that have been cut must have documented proof that this rule was met • There is a minimum tread depth of 2.4 mm", - "parentRuleCode": "V.4.3", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.3", - "ruleContent": "Tire Set", - "parentRuleCode": "V.4.3", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.3.a", - "ruleContent": "All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be identical.", - "parentRuleCode": "V.4.3.3", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.3.b", - "ruleContent": "Once each tire set has been presented for Technical Inspection, any tire compound or size, or wheel type or size must not be changed.", - "parentRuleCode": "V.4.3.3", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.4", - "ruleContent": "Tire Pressure", - "parentRuleCode": "V.4.3", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.4.a", - "ruleContent": "Tire Pressure must be in the range allowed by the manufacturer at all times.", - "parentRuleCode": "V.4.3.4", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.4.b", - "ruleContent": "Tire Pressure may be inspected at any time", - "parentRuleCode": "V.4.3.4", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.5", - "ruleContent": "Requirements for All Tires", - "parentRuleCode": "V.4.3", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.5.a", - "ruleContent": "Teams must not do any hand cutting, grooving or modification of the tires.", - "parentRuleCode": "V.4.3.5", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.5.b", - "ruleContent": "Tire warmers are not allowed.", - "parentRuleCode": "V.4.3.5", - "pageNumber": "22" - }, - { - "ruleCode": "V.4.3.5.c", - "ruleContent": "No traction enhancers may be applied to the tires at any time onsite at the competition. Version 1.0 31 Aug 2024", - "parentRuleCode": "V.4.3.5", - "pageNumber": "22" - }, - { - "ruleCode": "F", - "ruleContent": "CHASSIS AND STRUCTURAL", - "pageNumber": "23" - }, - { - "ruleCode": "F.1", - "ruleContent": "DEFINITIONS", - "parentRuleCode": "F", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.1", - "ruleContent": "Chassis The fabricated structural assembly that supports all functional vehicle systems. This assembly may be a single fabricated structure, multiple fabricated structures or a combination of composite and welded structures.", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.2", - "ruleContent": "Frame Member A minimum representative single piece of uncut, continuous tubing.", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.3", - "ruleContent": "Monocoque A type of Chassis where loads are supported by the external panels", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.4", - "ruleContent": "Main Hoop A roll bar located alongside or immediately aft of the driver’s torso.", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.5", - "ruleContent": "Front Hoop A roll bar located above the driver’s legs, in proximity to the steering wheel.", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.6", - "ruleContent": "Roll Hoop(s) Referring to the Front Hoop AND the Main Hoop", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.7", - "ruleContent": "Roll Hoop Bracing Supports The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s).", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.8", - "ruleContent": "Front Bulkhead A planar structure that provides protection for the driver’s feet.", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.9", - "ruleContent": "Impact Attenuator A deformable, energy absorbing device located forward of the Front Bulkhead.", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.10", - "ruleContent": "Primary Structure The combination of these components: • Front Bulkhead and Front Bulkhead Support • Front Hoop, Main Hoop, Roll Hoop Braces and Supports • Side Impact Structure • (EV Only) Tractive System Protection and Rear Impact Protection • Any Frame Members, guides, or supports that transfer load from the Driver Restraint System", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.11", - "ruleContent": "Primary Structure Envelope A volume enclosed by multiple tangent planes, each of which follows the exact outline of the Primary Structure Frame Members", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.12", - "ruleContent": "Major Structure The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of the Upper Side Impact Member or top of the Side Impact Zone. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.1", - "pageNumber": "23" - }, - { - "ruleCode": "F.1.13", - "ruleContent": "Rollover Protection Envelope The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * If there are no Triangulated Structural members aft of the Main Hoop, the Rollover Protection Envelope ends at the rear plane of the Main Hoop", - "parentRuleCode": "F.1", - "pageNumber": "24" - }, - { - "ruleCode": "F.1.14", - "ruleContent": "Tire Surface Envelope The volume enclosed by tangent lines between the Main Hoop and the outside edge of each of the four tires.", - "parentRuleCode": "F.1", - "pageNumber": "24" - }, - { - "ruleCode": "F.1.15", - "ruleContent": "Component Envelope The area that is inside a plane from the top of the Main Hoop to the top of the Front Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural tube, or monocoque equivalent. * see note in step F.1.13 above", - "parentRuleCode": "F.1", - "pageNumber": "24" - }, - { - "ruleCode": "F.1.16", - "ruleContent": "Buckling Modulus (EI) Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the weakest axis", - "parentRuleCode": "F.1", - "pageNumber": "24" - }, - { - "ruleCode": "F.1.17", - "ruleContent": "Triangulation An arrangement of Frame Members where all members and segments of members between bends or nodes with Structural tubes form a structure composed entirely of triangles.", - "parentRuleCode": "F.1", - "pageNumber": "24" - }, - { - "ruleCode": "F.1.17.a", - "ruleContent": "This is generally required between an upper member and a lower member, each may have multiple segments requiring a diagonal to form multiple triangles.", - "parentRuleCode": "F.1.17", - "pageNumber": "24" - }, - { - "ruleCode": "F.1.17.b", - "ruleContent": "This is also what is meant by “properly triangulated” Version 1.0 31 Aug 2024", - "parentRuleCode": "F.1.17", - "pageNumber": "24" - }, - { - "ruleCode": "F.1.18", - "ruleContent": "Nonflammable Material Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent", - "parentRuleCode": "F.1", - "pageNumber": "25" - }, - { - "ruleCode": "F.2", - "ruleContent": "DOCUMENTATION", - "parentRuleCode": "F", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.1.duplicate", - "ruleContent": "Structural Equivalency Spreadsheet - SES", - "parentRuleCode": "F.2", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.1.1", - "ruleContent": "The SES is a supplement to the Formula SAE Rules and may provide guidance or further details in addition to those of the Formula SAE Rules.", - "parentRuleCode": "F.2.1", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.1.2", - "ruleContent": "The SES provides the means to:", - "parentRuleCode": "F.2.1", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.1.2.a", - "ruleContent": "Document the Primary Structure and show compliance with the Formula SAE Rules", - "parentRuleCode": "F.2.1.2", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.1.2.b", - "ruleContent": "Determine Equivalence to Formula SAE Rules using an accepted basis", - "parentRuleCode": "F.2.1.2", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.2", - "ruleContent": "Structural Documentation", - "parentRuleCode": "F.2", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.2.1", - "ruleContent": "All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR - Document Requirements", - "parentRuleCode": "F.2.2", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.3", - "ruleContent": "Equivalence", - "parentRuleCode": "F.2", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.3.1", - "ruleContent": "Equivalency in the structural context is determined and documented with the methods in the SES", - "parentRuleCode": "F.2.3", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.3.2", - "ruleContent": "Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same application", - "parentRuleCode": "F.2.3", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.3.3", - "ruleContent": "The properties of tubes and laminates may be combined to prove Equivalence. For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate panel, the panel only needs to be Equivalent to two Side Impact Tubes.", - "parentRuleCode": "F.2.3", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.4", - "ruleContent": "Tolerance Tolerance on dimensions given in the rules is allowed and is addressed in the SES.", - "parentRuleCode": "F.2", - "pageNumber": "25" - }, - { - "ruleCode": "F.2.5", - "ruleContent": "Fabrication Vehicles must be fabricated in accordance with the design, materials, and processes described in the SES.", - "parentRuleCode": "F.2", - "pageNumber": "25" - }, - { - "ruleCode": "F.3", - "ruleContent": "TUBING AND MATERIAL", - "parentRuleCode": "F", - "pageNumber": "25" - }, - { - "ruleCode": "F.3.1", - "ruleContent": "Dimensions Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for commonly available tubing. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.3", - "pageNumber": "25" - }, - { - "ruleCode": "F.3.2", - "ruleContent": "Tubing Requirements", - "parentRuleCode": "F.3", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1", - "ruleContent": "Requirements by Application Application Steel Tube Must Meet Size per F.3.4: Alternative Tubing Material Permitted per F.3.5 ?", - "parentRuleCode": "F.3.2", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.a", - "ruleContent": "Front Bulkhead Size B Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.b", - "ruleContent": "Front Bulkhead Support Size C Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.c", - "ruleContent": "Front Hoop Size A Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.d", - "ruleContent": "Front Hoop Bracing Size B Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.e", - "ruleContent": "Side Impact Structure Size B Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.f", - "ruleContent": "Bent / Multi Upper Side Impact Member Size D Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.g", - "ruleContent": "Main Hoop Size A NO", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.h", - "ruleContent": "Main Hoop Bracing Size B NO", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.i", - "ruleContent": "Main Hoop Bracing Supports Size C Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.j", - "ruleContent": "Driver Restraint Harness Attachment Size B Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.k", - "ruleContent": "Shoulder Harness Mounting Bar Size A NO", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.l", - "ruleContent": "Shoulder Harness Mounting Bar Bracing Size C Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.m", - "ruleContent": "Accumulator Mounting and Protection Size B Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.n", - "ruleContent": "Component Protection Size C Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.2.1.o", - "ruleContent": "Structural Tubing Size C Yes", - "parentRuleCode": "F.3.2.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.3", - "ruleContent": "Non Structural Tubing", - "parentRuleCode": "F.3", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.3.1", - "ruleContent": "Definition Any tubing which does NOT meet F.3.2.1.o Structural Tubing", - "parentRuleCode": "F.3.3", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.3.2", - "ruleContent": "Applicability Non Structural Tubing is ignored when assessing compliance to any rule", - "parentRuleCode": "F.3.3", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.4", - "ruleContent": "Steel Tubing and Material", - "parentRuleCode": "F.3", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.4.1", - "ruleContent": "Minimum Requirements for Steel Tubing A tube must have all four minimum requirements for each Size specified: Tube Minimum Area Moment of Inertia Minimum Cross Sectional Area Minimum Outside Diameter or Square Width Minimum Wall Thickness Example Sizes of Round Tube", - "parentRuleCode": "F.3.4", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.4.1.a", - "ruleContent": "Size A 11320 mm 4 173 mm 2 25.0 mm 2.0 mm 1.0” x 0.095” 25 x 2.5 mm", - "parentRuleCode": "F.3.4.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.4.1.b", - "ruleContent": "Size B 8509 mm 4 114 mm 2 25.0 mm 1.2 mm 1.0” x 0.065” 25.4 x 1.6 mm", - "parentRuleCode": "F.3.4.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.4.1.c", - "ruleContent": "Size C 6695 mm 4 91 mm 2 25.0 mm 1.2 mm 1.0” x 0.049” 25.4 x 1.2 mm", - "parentRuleCode": "F.3.4.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.4.1.d", - "ruleContent": "Size D 18015 mm 4 126 mm 2 35.0 mm 1.2 mm 1.375” x 0.049” 35 x 1.2 mm Version 1.0 31 Aug 2024", - "parentRuleCode": "F.3.4.1", - "pageNumber": "26" - }, - { - "ruleCode": "F.3.4.2", - "ruleContent": "Properties for ANY steel material for calculations submitted in an SES must be:", - "parentRuleCode": "F.3.4", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.4.2.a", - "ruleContent": "Non Welded Properties for continuous material calculations: Young’s Modulus (E) = 200 GPa (29,000 ksi) Yield Strength (Sy) = 305 MPa (44.2 ksi) Ultimate Strength (Su) = 365 MPa (52.9 ksi)", - "parentRuleCode": "F.3.4.2", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.4.2.b", - "ruleContent": "Welded Properties for discontinuous material such as joint calculations: Yield Strength (Sy) = 180 MPa (26 ksi) Ultimate Strength (Su) = 300 MPa (43.5 ksi)", - "parentRuleCode": "F.3.4.2", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.4.3", - "ruleContent": "Where Welded tubing reinforcements are required (such as inserts for bolt holes or material to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be shown to the original Non Welded tube in the SES", - "parentRuleCode": "F.3.4", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5", - "ruleContent": "Alternative Tubing Materials", - "parentRuleCode": "F.3", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.1", - "ruleContent": "Alternative Materials may be used for applications shown as permitted in F.3.2.1", - "parentRuleCode": "F.3.5", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.2", - "ruleContent": "If any Alternative Materials are used, the SES must contain:", - "parentRuleCode": "F.3.5", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.2.a", - "ruleContent": "Documentation of material type, (purchase receipt, shipping document or letter of donation) and the material properties.", - "parentRuleCode": "F.3.5.2", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.2.b", - "ruleContent": "Calculations that show equivalent to or better than the minimum requirements for steel tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for buckling modulus and for energy dissipation", - "parentRuleCode": "F.3.5.2", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.2.c", - "ruleContent": "Details of the manufacturing technique and process", - "parentRuleCode": "F.3.5.2", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.3", - "ruleContent": "Aluminum Tubing", - "parentRuleCode": "F.3.5", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.3.a", - "ruleContent": "Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm Welded 3.0 mm", - "parentRuleCode": "F.3.5.3", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.3.b", - "ruleContent": "Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Young’s Modulus (E) 69 GPa (10,000 ksi) Yield Strength (Sy) 240 MPa (34.8 ksi) Ultimate Strength (Su) 290 MPa (42.1 ksi)", - "parentRuleCode": "F.3.5.3", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.3.c", - "ruleContent": "Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: Yield Strength (Sy) 115 MPa (16.7 ksi) Ultimate Strength (Su) 175 MPa (25.4 ksi)", - "parentRuleCode": "F.3.5.3", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.3.d", - "ruleContent": "If welding is used on a regulated aluminum structure, the equivalent yield strength must be considered in the “as welded” condition for the alloy used unless the team provides detailed proof that the frame or component has been properly solution heat treated, artificially aged, and not subject to heating during team manufacturing.", - "parentRuleCode": "F.3.5.3", - "pageNumber": "27" - }, - { - "ruleCode": "F.3.5.3.e", - "ruleContent": "If aluminum was solution heat treated and age hardened to increase its strength after welding, the team must supply evidence of the process. This includes, but is not limited to, the heat treating facility used, the process applied, and the fixturing used. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.3.5.3", - "pageNumber": "27" - }, - { - "ruleCode": "F.4", - "ruleContent": "COMPOSITE AND OTHER MATERIALS", - "parentRuleCode": "F", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.1", - "ruleContent": "Requirements If any composite or other material is used, the SES must contain:", - "parentRuleCode": "F.4", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.1.1", - "ruleContent": "Documentation of material type, (purchase receipt, shipping document or letter of donation) and the material properties.", - "parentRuleCode": "F.4.1", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.1.2", - "ruleContent": "Details of the manufacturing technique and/or composite layup technique as well as the structural material used (examples - cloth type, weight, and resin type, number of layers, core material, and skin material if metal).", - "parentRuleCode": "F.4.1", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.1.3", - "ruleContent": "Calculations that show equivalence of the structure to one of similar geometry made to meet the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, buckling, and tension.", - "parentRuleCode": "F.4.1", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.1.4", - "ruleContent": "Construction dates of the test panel(s) and monocoque, and approximate age(s) of the materials used.", - "parentRuleCode": "F.4.1", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2", - "ruleContent": "Laminate and Material Testing", - "parentRuleCode": "F.4", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.1", - "ruleContent": "Testing Requirements", - "parentRuleCode": "F.4.2", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.1.a", - "ruleContent": "Any tested samples must be engraved with the full date of construction and sample name", - "parentRuleCode": "F.4.2.1", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.1.b", - "ruleContent": "The same set of test results must not be used for different monocoques in different years. The intent is for the test panel to use the same material batch, material age, material storage, and student layup quality as the monocoque.", - "parentRuleCode": "F.4.2.1", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.2", - "ruleContent": "Primary Structure Laminate Testing Teams must build new representative test panels for each ply schedule used in the regulated regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer to F.4.2.4", - "parentRuleCode": "F.4.2", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.2.a", - "ruleContent": "Test panels must: • Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm • Be supported by a span distance of 400 mm • Have equal surface area for the top and bottom skin • Have bare edges, without skin material", - "parentRuleCode": "F.4.2.2", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.2.b", - "ruleContent": "The SES must include: • Data from the 3 point bending tests • Pictures of the test samples • A picture of the test sample and test setup showing a measurement documenting the supported span distance used in the SES", - "parentRuleCode": "F.4.2.2", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.2.c", - "ruleContent": "Test panel results must be used to derive stiffness, yield strength, ultimate strength and absorbed energy properties by the SES formula and limits for the purpose of calculating laminate panels equivalency corresponding to Primary Structure regions of the chassis.", - "parentRuleCode": "F.4.2.2", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.2.d", - "ruleContent": "Test panels must use the thickest core associated with each skin layup Version 1.0 31 Aug 2024 Designs may use core thickness that is 50% - 100% of the test panel core thickness associated with each skin layup", - "parentRuleCode": "F.4.2.2", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.2.e", - "ruleContent": "Calculation of derived properties must use the part of test data where deflection is 50 mm or less", - "parentRuleCode": "F.4.2.2", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.2.f", - "ruleContent": "Calculation of absorbed energy must use the integral of force times displacement", - "parentRuleCode": "F.4.2.2", - "pageNumber": "28" - }, - { - "ruleCode": "F.4.2.3", - "ruleContent": "Comparison Test Teams must make an equivalent test that will determine any compliance in the test rig and establish an absorbed energy value of the baseline tubes.", - "parentRuleCode": "F.4.2", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.3.a", - "ruleContent": "The comparison test must use two Side Impact steel tubes (F.3.2.1.e)", - "parentRuleCode": "F.4.2.3", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.3.b", - "ruleContent": "The steel tubes must be tested to a minimum displacement of 19.0 mm", - "parentRuleCode": "F.4.2.3", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.3.c", - "ruleContent": "The calculation of absorbed energy must use the integral of force times displacement from the initiation of load to a displacement of 19.0 mm", - "parentRuleCode": "F.4.2.3", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.4", - "ruleContent": "Test Conduct", - "parentRuleCode": "F.4.2", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.4.a", - "ruleContent": "The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture", - "parentRuleCode": "F.4.2.4", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.4.b", - "ruleContent": "The load applicator used to test any panel/tubes as required in this section F.4.2 must be: • Metallic • Radius 50 mm", - "parentRuleCode": "F.4.2.4", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.4.c", - "ruleContent": "The load applicator must overhang the test piece to prevent edge loading", - "parentRuleCode": "F.4.2.4", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.4.d", - "ruleContent": "Any other material must not be put between the load applicator and the items on test", - "parentRuleCode": "F.4.2.4", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5", - "ruleContent": "Perimeter Shear Test", - "parentRuleCode": "F.4.2", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5.a", - "ruleContent": "The Perimeter Shear Test must be completed by measuring the force required to push or pull a 25 mm diameter flat punch through a flat laminate sample.", - "parentRuleCode": "F.4.2.5", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5.b", - "ruleContent": "The sample must: • Measure 100 mm x 100 mm minimum • Have core and skin thicknesses identical to those used in the actual application • Be manufactured using the same materials and processes", - "parentRuleCode": "F.4.2.5", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5.c", - "ruleContent": "The fixture must support the entire sample, except for a 32 mm hole aligned coaxially with the punch.", - "parentRuleCode": "F.4.2.5", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5.d", - "ruleContent": "The sample must not be clamped to the fixture", - "parentRuleCode": "F.4.2.5", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5.e", - "ruleContent": "The edge of the punch and hole in the fixture may include an optional fillet up to a maximum radius of 1 mm.", - "parentRuleCode": "F.4.2.5", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5.f", - "ruleContent": "The SES must include force and displacement data and photos of the test setup. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.4.2.5", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5.g", - "ruleContent": "The first peak in the load-deflection curve must be used to determine the skin shear strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5", - "parentRuleCode": "F.4.2.5", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.5.h", - "ruleContent": "The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5", - "parentRuleCode": "F.4.2.5", - "pageNumber": "29" - }, - { - "ruleCode": "F.4.2.6", - "ruleContent": "Lap Joint Test The Lap Joint Test measures the force required to pull apart a joint of two laminate samples that are bonded together", - "parentRuleCode": "F.4.2", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.2.6.a", - "ruleContent": "A joint design with two perpendicular bond areas may show equivalence using the shear performance of the smaller of the two areas", - "parentRuleCode": "F.4.2.6", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.2.6.b", - "ruleContent": "A joint design with a single bond area must have two separate pull tests with different orientations of the adhesive joint: • Parallel to the pull direction, with the adhesive joint in pure shear • T peel normal to the pull direction, with the adhesive joint in peel", - "parentRuleCode": "F.4.2.6", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.2.6.c", - "ruleContent": "The samples used must: • Have skin thicknesses identical to those used in the actual monocoque • Be manufactured using the same materials and processes The intent is to perform a test of the actual bond overlap, and fail the skin before the bond", - "parentRuleCode": "F.4.2.6", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.2.6.d", - "ruleContent": "The force and displacement data and photos of the test setup must be included in the SES.", - "parentRuleCode": "F.4.2.6", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.2.6.e", - "ruleContent": "The shear strength * normal area of the bond must be more than the UTS * cross sectional area of the skin", - "parentRuleCode": "F.4.2.6", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.3", - "ruleContent": "Use of Laminates", - "parentRuleCode": "F.4", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.3.1", - "ruleContent": "Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the nearest plies to core material.", - "parentRuleCode": "F.4.3", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.3.2", - "ruleContent": "The monocoque must have the tested layup direction normal to the cross sections used for Equivalence in the SES, with allowance for taper of the monocoque normal to the cross section.", - "parentRuleCode": "F.4.3", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.3.3", - "ruleContent": "Results from the 3 point bending test will be assigned to the 0 layup direction.", - "parentRuleCode": "F.4.3", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.3.4", - "ruleContent": "All material properties in the directions designated by the SES must be 50% or more of those in the tested “0” direction as calculated by the SES", - "parentRuleCode": "F.4.3", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.4", - "ruleContent": "Equivalent Flat Panel Calculation", - "parentRuleCode": "F.4", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.4.1", - "ruleContent": "When specified, the Equivalence of the chassis must be calculated as a flat panel with the same composition as the chassis about the neutral axis of the laminate.", - "parentRuleCode": "F.4.4", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.4.2", - "ruleContent": "The curvature of the panel and geometric cross section of the chassis must be ignored for these calculations.", - "parentRuleCode": "F.4.4", - "pageNumber": "30" - }, - { - "ruleCode": "F.4.4.3", - "ruleContent": "Calculations of Equivalence that do not reference this section F.4.3 may use the actual geometry of the chassis.", - "parentRuleCode": "F.4.4", - "pageNumber": "30" - }, - { - "ruleCode": "F.5", - "ruleContent": "CHASSIS REQUIREMENTS This section applies to all Chassis, regardless of material or construction Version 1.0 31 Aug 2024", - "parentRuleCode": "F", - "pageNumber": "30" - }, - { - "ruleCode": "F.5.1", - "ruleContent": "Primary Structure", - "parentRuleCode": "F.5", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.1.1", - "ruleContent": "The Primary Structure must be constructed from one or a combination of: • Steel Tubing and Material F.3.2 F.3.4 • Alternative Tubing Materials F.3.2 F.3.5 • Composite Material F.4", - "parentRuleCode": "F.5.1", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.1.2", - "ruleContent": "Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite types must:", - "parentRuleCode": "F.5.1", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.1.2.a", - "ruleContent": "Meet all relevant requirements F.5.1.1", - "parentRuleCode": "F.5.1.2", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.1.2.b", - "ruleContent": "Show Equivalence F.2.3, as applicable", - "parentRuleCode": "F.5.1.2", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.1.2.c", - "ruleContent": "Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent.", - "parentRuleCode": "F.5.1.2", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.2", - "ruleContent": "Bent Tubes or Multiple Tubes", - "parentRuleCode": "F.5", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.2.1", - "ruleContent": "The minimum radius of any bend, measured at the tube centerline, must be three or more times the tube outside diameter (3 x OD).", - "parentRuleCode": "F.5.2", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.2.2", - "ruleContent": "Bends must be smooth and continuous with no evidence of crimping or wall failure.", - "parentRuleCode": "F.5.2", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.2.3", - "ruleContent": "If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be attached to support it.", - "parentRuleCode": "F.5.2", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.2.3.a", - "ruleContent": "The support tube attachment point must be at the position along the bent tube where it deviates farthest from a straight line connecting the two ends", - "parentRuleCode": "F.5.2.3", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.2.3.b", - "ruleContent": "The support tube must terminate at a node of the chassis", - "parentRuleCode": "F.5.2.3", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.2.3.c", - "ruleContent": "The support tube for any bent tube (other than the Upper Side Impact Member or Shoulder Harness Mounting Bar) must be: • The same diameter and thickness as the bent tube • Angled no more than 30° from the plane of the bent tube", - "parentRuleCode": "F.5.2.3", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.3", - "ruleContent": "Holes and Openings in Regulated Tubing", - "parentRuleCode": "F.5", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.3.1", - "ruleContent": "Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES.", - "parentRuleCode": "F.5.3", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.3.2", - "ruleContent": "Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic testing or by the drilling of inspection holes on request.", - "parentRuleCode": "F.5.3", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.3.3", - "ruleContent": "Regulated tubing other than the open lower ends of Roll Hoops must have any open ends closed by a welded cap or inserted metal plug.", - "parentRuleCode": "F.5.3", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.4", - "ruleContent": "Fasteners in Primary Structure", - "parentRuleCode": "F.5", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.4.1", - "ruleContent": "Bolted connections in the Primary Structure must use a removable bolt and nut. Bonded fasteners and blind nuts and bolts do not meet this requirement", - "parentRuleCode": "F.5.4", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.4.2", - "ruleContent": "Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2", - "parentRuleCode": "F.5.4", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.4.3", - "ruleContent": "Bolted connections in the Primary Structure using tabs or brackets must have an edge distance ratio “e/D” of 1.5 or higher “D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest free edge Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” Version 1.0 31 Aug 2024", - "parentRuleCode": "F.5.4", - "pageNumber": "31" - }, - { - "ruleCode": "F.5.5", - "ruleContent": "Bonding in Regulated Structure", - "parentRuleCode": "F.5", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.5.1", - "ruleContent": "Adhesive used and referenced bonding strength must be correct for the two substrate types", - "parentRuleCode": "F.5.5", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.5.2", - "ruleContent": "Document the adhesive choice, age and expiration date, substrate preparation, and the equivalency of the bonded joint in the SES", - "parentRuleCode": "F.5.5", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.5.3", - "ruleContent": "The SES will reduce any referenced or tested adhesive values by 50%", - "parentRuleCode": "F.5.5", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6", - "ruleContent": "Roll Hoops", - "parentRuleCode": "F.5", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.1", - "ruleContent": "The Chassis must include a Main Hoop and a Front Hoop", - "parentRuleCode": "F.5.6", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.2", - "ruleContent": "The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with Structural Tubing", - "parentRuleCode": "F.5.6", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.3", - "ruleContent": "Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of the two:", - "parentRuleCode": "F.5.6", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.3.a", - "ruleContent": "Triangulated at a side view node", - "parentRuleCode": "F.5.6.3", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.3.b", - "ruleContent": "Less than 25 mm from an Attachment point F.7.8", - "parentRuleCode": "F.5.6.3", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.4", - "ruleContent": "Roll Hoop and Driver Position When seated normally and restrained by the Driver Restraint System, the helmet of a 95th percentile male (see V.2.1.1) and all of the team’s drivers must:", - "parentRuleCode": "F.5.6", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.4.a", - "ruleContent": "Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to the top of the Front Hoop.", - "parentRuleCode": "F.5.6.4", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.4.b", - "ruleContent": "Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to the lower end of the Main Hoop Bracing if the bracing extends rearwards.", - "parentRuleCode": "F.5.6.4", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.4.c", - "ruleContent": "Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing extends forwards.", - "parentRuleCode": "F.5.6.4", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.5", - "ruleContent": "Driver Template A two dimensional template used to represent the 95th percentile male is made to these dimensions (see figure below): • A circle of diameter 200 mm will represent the hips and buttocks. • A circle of diameter 200 mm will represent the shoulder/cervical region. • A circle of diameter 300 mm will represent the head (with helmet). • A straight line measuring 490 mm will connect the centers of the two 200 mm circles. • A straight line measuring 280 mm will connect the centers of the upper 200 mm circle and the 300 mm head circle. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.5.6", - "pageNumber": "32" - }, - { - "ruleCode": "F.5.6.6", - "ruleContent": "Driver Template Position The Driver Template will be positioned as follows: • The seat will be adjusted to the rearmost position • The pedals will be put in the most forward position • The bottom 200 mm circle will be put on the seat bottom where the distance between the center of this circle and the rearmost face of the pedals is no less than 915 mm • The middle 200 mm circle, representing the shoulders, will be positioned on the seat back • The upper 300 mm circle will be positioned no more than 25 mm away from the head restraint (where the driver’s helmet would normally be located while driving)", - "parentRuleCode": "F.5.6", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.7", - "ruleContent": "Front Hoop", - "parentRuleCode": "F.5", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.7.1", - "ruleContent": "The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c", - "parentRuleCode": "F.5.7", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.7.2", - "ruleContent": "With proper Triangulation, the Front Hoop may be fabricated from more than one piece of tubing", - "parentRuleCode": "F.5.7", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.7.3", - "ruleContent": "The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, over and down to the lowest Frame Member on the other side of the Frame.", - "parentRuleCode": "F.5.7", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.7.4", - "ruleContent": "The top-most surface of the Front Hoop must be no lower than the top of the steering wheel in any angular position. See figure after F.5.9.6 below", - "parentRuleCode": "F.5.7", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.7.5", - "ruleContent": "The Front Hoop must be no more than 250 mm forward of the steering wheel. This distance is measured horizontally, on the vehicle centerline, from the rear surface of the Front Hoop to the forward most surface of the steering wheel rim with the steering in the straight ahead position.", - "parentRuleCode": "F.5.7", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.7.6", - "ruleContent": "In side view, any part of the Front Hoop above the Upper Side Impact Structure must be inclined less than 20° from the vertical.", - "parentRuleCode": "F.5.7", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.7.7", - "ruleContent": "A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during Technical Inspection", - "parentRuleCode": "F.5.7", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.8", - "ruleContent": "Main Hoop", - "parentRuleCode": "F.5", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.8.1", - "ruleContent": "The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.g Version 1.0 31 Aug 2024", - "parentRuleCode": "F.5.8", - "pageNumber": "33" - }, - { - "ruleCode": "F.5.8.2", - "ruleContent": "The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque on the other side of the Frame.", - "parentRuleCode": "F.5.8", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.8.3", - "ruleContent": "In the side view of the vehicle,", - "parentRuleCode": "F.5.8", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.8.3.a", - "ruleContent": "The part of the Main Hoop that lies above its attachment point to the upper Side Impact Tube must be less than 10° from vertical.", - "parentRuleCode": "F.5.8.3", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.8.3.b", - "ruleContent": "The part of the Main Hoop below the Upper Side Impact Member attachment: • May be forward at any angle • Must not be rearward more than 10° from vertical", - "parentRuleCode": "F.5.8.3", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.8.4", - "ruleContent": "In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom tubes of the Major Structure of the Chassis.", - "parentRuleCode": "F.5.8", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9", - "ruleContent": "Main Hoop Braces", - "parentRuleCode": "F.5", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.1", - "ruleContent": "Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h", - "parentRuleCode": "F.5.9", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.2", - "ruleContent": "The Main Hoop must be supported by two Braces extending in the forward or rearward direction, one on each of the left and right sides of the Main Hoop.", - "parentRuleCode": "F.5.9", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.3", - "ruleContent": "In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the same side of the vertical line through the top of the Main Hoop. (If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the Main Hoop leans rearward, the Braces must be rearward of the Main Hoop)", - "parentRuleCode": "F.5.9", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.4", - "ruleContent": "The Main Hoop Braces must be attached 160 mm or less below the top most surface of the Main Hoop. The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop", - "parentRuleCode": "F.5.9", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.5", - "ruleContent": "The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more.", - "parentRuleCode": "F.5.9", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.6", - "ruleContent": "The Main Hoop Braces must be straight, without any bends.", - "parentRuleCode": "F.5.9", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.7", - "ruleContent": "The Main Hoop Braces must be:", - "parentRuleCode": "F.5.9", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.7.a", - "ruleContent": "Securely integrated into the Frame", - "parentRuleCode": "F.5.9.7", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.9.7.b", - "ruleContent": "Capable of transmitting all loads from the Main Hoop into the Major Structure of the Chassis without failing Version 1.0 31 Aug 2024", - "parentRuleCode": "F.5.9.7", - "pageNumber": "34" - }, - { - "ruleCode": "F.5.10", - "ruleContent": "Head Restraint Protection An additional frame member may be added to meet T.2.8.3.b", - "parentRuleCode": "F.5", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.10.1", - "ruleContent": "If used, the Head Restraint Protection frame member must:", - "parentRuleCode": "F.5.10", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.10.1.a", - "ruleContent": "Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop", - "parentRuleCode": "F.5.10.1", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.10.1.b", - "ruleContent": "Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting F.3.2.1.h", - "parentRuleCode": "F.5.10.1", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.10.1.c", - "ruleContent": "Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3)", - "parentRuleCode": "F.5.10.1", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.10.2", - "ruleContent": "The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection", - "parentRuleCode": "F.5.10", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11", - "ruleContent": "External Items", - "parentRuleCode": "F.5", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.1", - "ruleContent": "Definition - items outside the exact outline of the part of the Primary Structure Envelope", - "parentRuleCode": "F.5.11", - "pageNumber": "35" - }, - { - "ruleCode": "F.1.11.duplicate", - "ruleContent": "defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other tube nodes or composite attachments", - "parentRuleCode": "F.1", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.2", - "ruleContent": "External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if the mount is one of the two:", - "parentRuleCode": "F.5.11", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.2.a", - "ruleContent": "Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis", - "parentRuleCode": "F.5.11.2", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.2.b", - "ruleContent": "Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will fail below the allowable load as calculated by the SES", - "parentRuleCode": "F.5.11.2", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.3", - "ruleContent": "If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above:", - "parentRuleCode": "F.5.11", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.3.a", - "ruleContent": "Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service Disconnect, Master Switches or Shutdown Buttons", - "parentRuleCode": "F.5.11.3", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.3.b", - "ruleContent": "Lightweight mounts for items inside the Main Hoop Braces", - "parentRuleCode": "F.5.11.3", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.4", - "ruleContent": "Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the Main Hoop Braces or Main Hoop above other tube nodes or composite attachments", - "parentRuleCode": "F.5.11", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.5", - "ruleContent": "Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must be longitudinally offset to avoid point loading in a rollover", - "parentRuleCode": "F.5.11", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.11.6", - "ruleContent": "External Items should not point at the driver", - "parentRuleCode": "F.5.11", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.12", - "ruleContent": "Mechanically Attached Roll Hoop Bracing", - "parentRuleCode": "F.5", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.12.1", - "ruleContent": "When Roll Hoop Bracing is mechanically attached:", - "parentRuleCode": "F.5.12", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.12.1.a", - "ruleContent": "The threaded fasteners used to secure non permanent joints are Critical Fasteners, see T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7", - "parentRuleCode": "F.5.12.1", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.12.1.b", - "ruleContent": "No spherical rod ends are allowed", - "parentRuleCode": "F.5.12.1", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.12.1.c", - "ruleContent": "The attachment holes in the lugs, the attached bracing and the sleeves and tubes must be a close fit with the pin or bolt", - "parentRuleCode": "F.5.12.1", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.12.2", - "ruleContent": "Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint Version 1.0 31 Aug 2024 Figure – Double Lug Joint", - "parentRuleCode": "F.5.12", - "pageNumber": "35" - }, - { - "ruleCode": "F.5.12.3", - "ruleContent": "For Double Lug Joints, each lug must:", - "parentRuleCode": "F.5.12", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.3.a", - "ruleContent": "Be minimum 4.5 mm (0.177 in) thickness steel", - "parentRuleCode": "F.5.12.3", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.3.b", - "ruleContent": "Measure 25 mm minimum perpendicular to the axis of the bracing", - "parentRuleCode": "F.5.12.3", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.3.c", - "ruleContent": "Be as short as practical along the axis of the bracing.", - "parentRuleCode": "F.5.12.3", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.4", - "ruleContent": "All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must include a capping arrangement", - "parentRuleCode": "F.5.12", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.5", - "ruleContent": "In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above Figure – Sleeved Butt Joint", - "parentRuleCode": "F.5.12", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.6", - "ruleContent": "For Sleeved Butt Joints, the sleeve must:", - "parentRuleCode": "F.5.12", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.6.a", - "ruleContent": "Have a minimum length of 75 mm; 37.5 mm to each side of the joint", - "parentRuleCode": "F.5.12.6", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.6.b", - "ruleContent": "Be external to the base tubes, with a close fit around the base tubes.", - "parentRuleCode": "F.5.12.6", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.6.c", - "ruleContent": "Have a wall thickness of 2.0 mm or more", - "parentRuleCode": "F.5.12.6", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.12.7", - "ruleContent": "In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 minimum diameter and grade. See F.5.12.1 above", - "parentRuleCode": "F.5.12", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.13", - "ruleContent": "Other Bracing Requirements", - "parentRuleCode": "F.5", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.13.1", - "ruleContent": "Where the braces are not welded to steel Frame Members, the braces must be securely attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2", - "parentRuleCode": "F.5.13", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.13.2", - "ruleContent": "Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness steel. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.5.13", - "pageNumber": "36" - }, - { - "ruleCode": "F.5.14", - "ruleContent": "Steering Protection Steering system racks or mounting components that are external (vertically above or below) to the Primary Structure must be protected from frontal impact. The protective structure must:", - "parentRuleCode": "F.5", - "pageNumber": "37" - }, - { - "ruleCode": "F.5.14.a", - "ruleContent": "Be F.3.2.1.n or Equivalent", - "parentRuleCode": "F.5.14", - "pageNumber": "37" - }, - { - "ruleCode": "F.5.14.b", - "ruleContent": "Extend to the vertical limit of the steering component(s)", - "parentRuleCode": "F.5.14", - "pageNumber": "37" - }, - { - "ruleCode": "F.5.14.c", - "ruleContent": "Extend to the local width of the Chassis", - "parentRuleCode": "F.5.14", - "pageNumber": "37" - }, - { - "ruleCode": "F.5.14.d", - "ruleContent": "Meet F.7.8 if not welded to the Chassis", - "parentRuleCode": "F.5.14", - "pageNumber": "37" - }, - { - "ruleCode": "F.5.15", - "ruleContent": "Other Side Tube Requirements If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the Frame This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or frame tube, and the driver’s neck contacting this brace or tube.", - "parentRuleCode": "F.5", - "pageNumber": "37" - }, - { - "ruleCode": "F.5.16", - "ruleContent": "Component Protection When specified in the rules, components must be protected by one or two of:", - "parentRuleCode": "F.5", - "pageNumber": "37" - }, - { - "ruleCode": "F.5.16.a", - "ruleContent": "Fully Triangulated structure with tubes meeting F.3.2.1.n", - "parentRuleCode": "F.5.16", - "pageNumber": "37" - }, - { - "ruleCode": "F.5.16.b", - "ruleContent": "Structure Equivalent to the above, as determined per F.4.1.3", - "parentRuleCode": "F.5.16", - "pageNumber": "37" - }, - { - "ruleCode": "F.6", - "ruleContent": "TUBE FRAMES", - "parentRuleCode": "F", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.1", - "ruleContent": "Front Bulkhead The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a", - "parentRuleCode": "F.6", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2", - "ruleContent": "Front Bulkhead Support", - "parentRuleCode": "F.6", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2.1", - "ruleContent": "Frame Members of the Front Bulkhead Support system must be constructed of closed section tubing meeting F.3.2.1.b", - "parentRuleCode": "F.6.2", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2.2", - "ruleContent": "The Front Bulkhead must be securely integrated into the Frame.", - "parentRuleCode": "F.6.2", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2.3", - "ruleContent": "The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame Members on each side of the vehicle; an upper member; lower member and diagonal brace to provide Triangulation.", - "parentRuleCode": "F.6.2", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2.3.a", - "ruleContent": "The top of the upper support member must be attached 50 mm or less from the top surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 mm above and 50 mm below the Upper Side Impact member.", - "parentRuleCode": "F.6.2.3", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2.3.b", - "ruleContent": "If the upper support member is further than 100 mm above the top of the Upper Side Impact member, then properly Triangulated bracing is required to transfer load to the Main Hoop by one of: • the Upper Side Impact member • an additional member transmitting load from the junction of the Upper Support Member with the Front Hoop", - "parentRuleCode": "F.6.2.3", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2.3.c", - "ruleContent": "The lower support member must be attached to the base of the Front Bulkhead and the base of the Front Hoop", - "parentRuleCode": "F.6.2.3", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2.3.d", - "ruleContent": "The diagonal brace must properly Triangulate the upper and lower support members Version 1.0 31 Aug 2024", - "parentRuleCode": "F.6.2.3", - "pageNumber": "37" - }, - { - "ruleCode": "F.6.2.4", - "ruleContent": "Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 are met", - "parentRuleCode": "F.6.2", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.2.5", - "ruleContent": "Examples of acceptable configurations of members may be found in the SES", - "parentRuleCode": "F.6.2", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.3", - "ruleContent": "Front Hoop Bracing", - "parentRuleCode": "F.6", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.3.1", - "ruleContent": "Front Hoop Braces must be constructed of material meeting F.3.2.1.d", - "parentRuleCode": "F.6.3", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.3.2", - "ruleContent": "The Front Hoop must be supported by two Braces extending in the forward direction, one on each of the left and right sides of the Front Hoop.", - "parentRuleCode": "F.6.3", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.3.3", - "ruleContent": "The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to the structure in front of the driver’s feet.", - "parentRuleCode": "F.6.3", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.3.4", - "ruleContent": "The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 above", - "parentRuleCode": "F.6.3", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.3.5", - "ruleContent": "If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully Triangulated structural node.", - "parentRuleCode": "F.6.3", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.3.6", - "ruleContent": "The Front Hoop Braces must be straight, without any bends", - "parentRuleCode": "F.6.3", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4", - "ruleContent": "Side Impact Structure", - "parentRuleCode": "F.6", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4.1", - "ruleContent": "Frame Members of the Side Impact Structure must be constructed of closed section tubing meeting F.3.2.1.e or F.3.2.1.f, as applicable", - "parentRuleCode": "F.6.4", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4.2", - "ruleContent": "With proper Triangulation, Side Impact Structure members may be fabricated from more than one piece of tubing.", - "parentRuleCode": "F.6.4", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4.3", - "ruleContent": "The Side Impact Structure must include three or more tubular members located on each side of the driver while seated in the normal driving position", - "parentRuleCode": "F.6.4", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4.4", - "ruleContent": "The Upper Side Impact Member must:", - "parentRuleCode": "F.6.4", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4.4.a", - "ruleContent": "Connect the Main Hoop and the Front Hoop.", - "parentRuleCode": "F.6.4.4", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4.4.b", - "ruleContent": "Have its top edge entirely in a zone that is parallel to the ground between 265 mm and 320 mm above the lowest point of the top surface of the Lower Side Impact Member", - "parentRuleCode": "F.6.4.4", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4.5", - "ruleContent": "The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the bottom of the Front Hoop. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.6.4", - "pageNumber": "38" - }, - { - "ruleCode": "F.6.4.6", - "ruleContent": "The Diagonal Side Impact Member must:", - "parentRuleCode": "F.6.4", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.4.6.a", - "ruleContent": "Connect the Upper Side Impact Member and Lower Side Impact Member forward of the Main Hoop and rearward of the Front Hoop", - "parentRuleCode": "F.6.4.6", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.4.6.b", - "ruleContent": "Completely Triangulate the bays created by the Upper and Lower Side Impact Members.", - "parentRuleCode": "F.6.4.6", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.5", - "ruleContent": "Shoulder Harness Mounting", - "parentRuleCode": "F.6", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.5.1", - "ruleContent": "The Shoulder Harness Mounting Bar must:", - "parentRuleCode": "F.6.5", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.5.1.a", - "ruleContent": "Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k", - "parentRuleCode": "F.6.5.1", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.5.1.b", - "ruleContent": "Attach to the Main Hoop on the left and right sides of the chassis", - "parentRuleCode": "F.6.5.1", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.5.2", - "ruleContent": "Bent Shoulder Harness Mounting Bars must:", - "parentRuleCode": "F.6.5", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.5.2.a", - "ruleContent": "Meet F.5.2.1 and F.5.2.2", - "parentRuleCode": "F.6.5.2", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.5.2.b", - "ruleContent": "Have bracing members attached at the bend(s) and to the Main Hoop. • Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l • The included angle in side view between the Shoulder Harness Bar and the braces must be no less than 30°.", - "parentRuleCode": "F.6.5.2", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.5.3", - "ruleContent": "The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar", - "parentRuleCode": "F.6.5", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.6", - "ruleContent": "Main Hoop Bracing Supports", - "parentRuleCode": "F.6", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.6.1", - "ruleContent": "Frame Members of the Main Hoop Bracing Support system must be constructed of closed section tubing meeting F.3.2.1.i", - "parentRuleCode": "F.6.6", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.6.2", - "ruleContent": "The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a minimum of two Frame Members on each side of the vehicle: an upper member and a lower member in a properly Triangulated configuration.", - "parentRuleCode": "F.6.6", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.6.2.a", - "ruleContent": "The upper support member must attach to the node where the upper Side Impact Member attaches to the Main Hoop.", - "parentRuleCode": "F.6.6.2", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.6.2.b", - "ruleContent": "The lower support member must attach to the node where the lower Side Impact Member attaches to the Main Hoop.", - "parentRuleCode": "F.6.6.2", - "pageNumber": "39" - }, - { - "ruleCode": "F.6.6.2.c", - "ruleContent": "Each of the above members may be multiple or bent tubes provided the requirements of", - "parentRuleCode": "F.6.6.2", - "pageNumber": "39" - }, - { - "ruleCode": "F.5.2.duplicate", - "ruleContent": "are met.", - "parentRuleCode": "F.5", - "pageNumber": "39" - }, - { - "ruleCode": "F.5.2.d", - "ruleContent": "Examples of acceptable configurations of members may be found in the SES.", - "parentRuleCode": "F.5.2", - "pageNumber": "39" - }, - { - "ruleCode": "F.7", - "ruleContent": "MONOCOQUE", - "parentRuleCode": "F", - "pageNumber": "39" - }, - { - "ruleCode": "F.7.1", - "ruleContent": "General Requirements", - "parentRuleCode": "F.7", - "pageNumber": "39" - }, - { - "ruleCode": "F.7.1.1", - "ruleContent": "The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and tension", - "parentRuleCode": "F.7.1", - "pageNumber": "39" - }, - { - "ruleCode": "F.7.1.2", - "ruleContent": "Composite and metallic monocoques have the same requirements", - "parentRuleCode": "F.7.1", - "pageNumber": "39" - }, - { - "ruleCode": "F.7.1.3", - "ruleContent": "Corners between panels used for structural equivalence must contain core", - "parentRuleCode": "F.7.1", - "pageNumber": "39" - }, - { - "ruleCode": "F.7.1.4", - "ruleContent": "An inspection hole approximately 4mm in diameter must be drilled through a low stress location of each monocoque section regulated by the Structural Equivalency Spreadsheet This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b Version 1.0 31 Aug 2024", - "parentRuleCode": "F.7.1", - "pageNumber": "39" - }, - { - "ruleCode": "F.7.1.5", - "ruleContent": "Composite monocoques must:", - "parentRuleCode": "F.7.1", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.1.5.a", - "ruleContent": "Meet the materials requirements in F.4 Composite and Other Materials", - "parentRuleCode": "F.7.1.5", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.1.5.b", - "ruleContent": "Use data from the laminate testing results as the basis for any strength or stiffness calculations", - "parentRuleCode": "F.7.1.5", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.2", - "ruleContent": "Front Bulkhead", - "parentRuleCode": "F.7", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.2.1", - "ruleContent": "When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1", - "parentRuleCode": "F.7.2", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.2.2", - "ruleContent": "The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm measured from the rearmost face of the Front Bulkhead", - "parentRuleCode": "F.7.2", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.2.3", - "ruleContent": "Any Front Bulkhead which supports the IA plate must have a perimeter shear strength equivalent to a 1.5 mm thick steel plate", - "parentRuleCode": "F.7.2", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.3", - "ruleContent": "Front Bulkhead Support", - "parentRuleCode": "F.7", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.3.1", - "ruleContent": "In addition to proving that the strength of the monocoque is sufficient, the monocoque must have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces.", - "parentRuleCode": "F.7.3", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.3.2", - "ruleContent": "The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or more than the EI of one steel tube that it replaces when calculated as per F.4.3", - "parentRuleCode": "F.7.3", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.3.3", - "ruleContent": "The perimeter shear strength of the monocoque laminate in the Front Bulkhead support structure must be 4 kN or more for a section with a diameter of 25 mm. This must be proven by a physical test completed per F.4.2.5 and the results included in the SES.", - "parentRuleCode": "F.7.3", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4", - "ruleContent": "Front Hoop Attachment", - "parentRuleCode": "F.7", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.1", - "ruleContent": "The Front Hoop must be mechanically attached to the monocoque", - "parentRuleCode": "F.7.4", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.1.a", - "ruleContent": "Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c", - "parentRuleCode": "F.7.4.1", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.1.b", - "ruleContent": "The Front Hoop tube must be mechanically connected to the Mounting Plate with Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop tube along the two sides of the mounting plate", - "parentRuleCode": "F.7.4.1", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.2", - "ruleContent": "Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any bends and nodes that are not at the top center of the Front Hoop", - "parentRuleCode": "F.7.4", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.3", - "ruleContent": "The Front Hoop may be fully laminated into the monocoque if:", - "parentRuleCode": "F.7.4", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.3.a", - "ruleContent": "The Front Hoop has core fit tightly around its entire circumference. Expanding foam is not permitted", - "parentRuleCode": "F.7.4.3", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.3.b", - "ruleContent": "Equivalence to six or more mounts compliant with F.7.8 must show in the SES", - "parentRuleCode": "F.7.4.3", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.3.c", - "ruleContent": "A small gap in the laminate (approximately 25 mm) exists for inspection of the Front Hoop F.5.7.7", - "parentRuleCode": "F.7.4.3", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.4.4", - "ruleContent": "Adhesive must not be the sole method of attaching the Front Hoop to the monocoque Version 1.0 31 Aug 2024", - "parentRuleCode": "F.7.4", - "pageNumber": "40" - }, - { - "ruleCode": "F.7.5", - "ruleContent": "Side Impact Structure", - "parentRuleCode": "F.7", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.5.1", - "ruleContent": "Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front Hoop consisting of the combination of a vertical section minimum 290 mm in height from the bottom surface of the floor of the monocoque and half the horizontal floor", - "parentRuleCode": "F.7.5", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.5.2", - "ruleContent": "The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it replaces", - "parentRuleCode": "F.7.5", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.5.3", - "ruleContent": "The portion of the Side Impact Zone that is vertically between the upper surface of the floor and 320 mm above the lowest point of the upper surface of the floor (see figure above) must have:", - "parentRuleCode": "F.7.5", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.5.3.a", - "ruleContent": "Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3", - "parentRuleCode": "F.7.5.3", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.5.3.b", - "ruleContent": "No openings in Side View between the Front Hoop and Main Hoop", - "parentRuleCode": "F.7.5.3", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.5.4", - "ruleContent": "Horizontal floor Equivalence must be calculated per F.4.3", - "parentRuleCode": "F.7.5", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.5.5", - "ruleContent": "The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a section with a diameter of 25 mm. This must be proven by physical test completed per F.4.2.5 and the results included in the SES.", - "parentRuleCode": "F.7.5", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.6", - "ruleContent": "Main Hoop Attachment", - "parentRuleCode": "F.7", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.6.1", - "ruleContent": "The Main Hoop must be mechanically attached to the monocoque", - "parentRuleCode": "F.7.6", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.6.1.a", - "ruleContent": "Main Hoop mounting plates must be 2.0 mm minimum thickness steel", - "parentRuleCode": "F.7.6.1", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.6.1.b", - "ruleContent": "The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 mm minimum thickness steel plates parallel to the two sides of the tube, with gussets from the Main Hoop tube along the two sides of the mounting plate", - "parentRuleCode": "F.7.6.1", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.6.2", - "ruleContent": "Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and nodes that are below the top of the monocoque", - "parentRuleCode": "F.7.6", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.7", - "ruleContent": "Roll Hoop Bracing Attachment Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8.", - "parentRuleCode": "F.7", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.8", - "ruleContent": "Attachments", - "parentRuleCode": "F.7", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.8.1", - "ruleContent": "Each attachment point between the monocoque or composite panels and the other Primary Structure must be able to carry a minimum load of 30 kN in any direction.", - "parentRuleCode": "F.7.8", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.8.1.a", - "ruleContent": "When a Roll Hoop attaches in three locations on each side, the attachments must be located at the bottom, top, and a location near the midpoint Version 1.0 31 Aug 2024", - "parentRuleCode": "F.7.8.1", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.8.1.b", - "ruleContent": "When a Roll Hoop attaches at only the bottom and a point between the top and the midpoint on each side, each of the four attachments must show load strength of 45 kN in all directions", - "parentRuleCode": "F.7.8.1", - "pageNumber": "41" - }, - { - "ruleCode": "F.7.8.2", - "ruleContent": "If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must obey one of the two:", - "parentRuleCode": "F.7.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.2.a", - "ruleContent": "Parallel brackets attached to the two sides of the Main Hoop and the two sides of the Side Impact Structure", - "parentRuleCode": "F.7.8.2", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.2.b", - "ruleContent": "Two mostly perpendicular brackets attached to the Main Hoop and the side and back of the monocoque", - "parentRuleCode": "F.7.8.2", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.3", - "ruleContent": "The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient shear area is provided.", - "parentRuleCode": "F.7.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.4", - "ruleContent": "Proof that the brackets are sufficiently stiff must be documented in the SES.", - "parentRuleCode": "F.7.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.5", - "ruleContent": "Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2", - "parentRuleCode": "F.7.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.6", - "ruleContent": "Each attachment point requires backing plates which meet one of: • Steel with a minimum thickness of 2 mm • Alternate materials if Equivalency is approved", - "parentRuleCode": "F.7.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.7", - "ruleContent": "The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in bending, similar to the figure below.", - "parentRuleCode": "F.7.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.8", - "ruleContent": "Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the two:", - "parentRuleCode": "F.7.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.8.a", - "ruleContent": "A solid insert that is fully enclosed by the inner and outer skin", - "parentRuleCode": "F.7.8.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.8.8.b", - "ruleContent": "Local elimination of any gap between inner and outer skin, with or without repeating skin layups", - "parentRuleCode": "F.7.8.8", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.9", - "ruleContent": "Driver Harness Attachment", - "parentRuleCode": "F.7", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.9.1", - "ruleContent": "Required Loads", - "parentRuleCode": "F.7.9", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.9.1.a", - "ruleContent": "Each attachment point for the Shoulder Belts must support a minimum load of 15 kN before failure with a required load of 30 kN distributed across the two belt attachments", - "parentRuleCode": "F.7.9.1", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.9.1.b", - "ruleContent": "Each attachment point for the Lap Belts must support a minimum load of 15 kN before failure. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.7.9.1", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.9.1.c", - "ruleContent": "Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 kN before failure.", - "parentRuleCode": "F.7.9.1", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.9.1.d", - "ruleContent": "If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or are attached to the same attachment point, then each mounting point must support a minimum load of 30 kN before failure.", - "parentRuleCode": "F.7.9.1", - "pageNumber": "42" - }, - { - "ruleCode": "F.7.9.2", - "ruleContent": "Load Testing The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven by physical tests where the required load is applied to a representative attachment point where the proposed layup and attachment bracket are used.", - "parentRuleCode": "F.7.9", - "pageNumber": "43" - }, - { - "ruleCode": "F.7.9.2.a", - "ruleContent": "Edges of the test fixture supporting the sample must be a minimum of 125 mm from the load application point (load vector intersecting a plane)", - "parentRuleCode": "F.7.9.2", - "pageNumber": "43" - }, - { - "ruleCode": "F.7.9.2.b", - "ruleContent": "Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 degrees) to the plane of the test sample", - "parentRuleCode": "F.7.9.2", - "pageNumber": "43" - }, - { - "ruleCode": "F.7.9.2.c", - "ruleContent": "Shoulder Belt Test Load application must meet: Installed Shoulder Belt Angle: Test Load Application Angle must be: should be: Between 90° and 45° Between 90° and the installed Shoulder Belt Angle 90° Between 45° and 0° Between 90° and 45° 90° The angles are measured from the plane of the Test Sample (90° is normal to the Test Sample and 0° is parallel to the Test Sample)", - "parentRuleCode": "F.7.9.2", - "pageNumber": "43" - }, - { - "ruleCode": "F.7.9.2.d", - "ruleContent": "The Shoulder Harness test sample must not be any larger than the section of the monocoque as built", - "parentRuleCode": "F.7.9.2", - "pageNumber": "43" - }, - { - "ruleCode": "F.7.9.2.e", - "ruleContent": "The width of the Shoulder Harness test sample must not be any wider than the Shoulder Harness \"panel height\" (see Structural Equivalency Spreadsheet) used to show equivalency for the Shoulder Harness mounting bar", - "parentRuleCode": "F.7.9.2", - "pageNumber": "43" - }, - { - "ruleCode": "F.7.9.2.f", - "ruleContent": "Designs with attachments near a free edge must not support the free edge during the test The intent is that the test specimen, to the best extent possible, represents the vehicle as driven at competition. Teams are expected to test a panel that is manufactured in as close a configuration to what is built in the vehicle as possible", - "parentRuleCode": "F.7.9.2", - "pageNumber": "43" - }, - { - "ruleCode": "F.8", - "ruleContent": "FRONT CHASSIS PROTECTION", - "parentRuleCode": "F", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.1", - "ruleContent": "Requirements", - "parentRuleCode": "F.8", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.1.1", - "ruleContent": "Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion Plate between the Impact Attenuator and the Front Bulkhead.", - "parentRuleCode": "F.8.1", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.1.2", - "ruleContent": "All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse and vertical loads if off-axis impacts occur.", - "parentRuleCode": "F.8.1", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.2", - "ruleContent": "Anti Intrusion Plate - AIP", - "parentRuleCode": "F.8", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.2.1", - "ruleContent": "The Anti Intrusion Plate must be one of the three:", - "parentRuleCode": "F.8.2", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.2.1.a", - "ruleContent": "1.5 mm minimum thickness solid steel", - "parentRuleCode": "F.8.2.1", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.2.1.b", - "ruleContent": "4.0 mm minimum thickness solid aluminum plate Version 1.0 31 Aug 2024", - "parentRuleCode": "F.8.2.1", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.2.1.c", - "ruleContent": "Composite material per F.8.3", - "parentRuleCode": "F.8.2.1", - "pageNumber": "43" - }, - { - "ruleCode": "F.8.2.2", - "ruleContent": "The outside profile requirement of the Anti Intrusion Plate depends on the method of attachment to the Front Bulkhead:", - "parentRuleCode": "F.8.2", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.2.2.a", - "ruleContent": "Welded joints: the profile must align with or be more than the centerline of the Front Bulkhead tubes on all sides", - "parentRuleCode": "F.8.2.2", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.2.2.b", - "ruleContent": "Bolted joints, bonding, laminating: the profile must align with or be more than the outside dimensions of the Front Bulkhead around the entire periphery", - "parentRuleCode": "F.8.2.2", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.2.3", - "ruleContent": "Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in the team’s SES submission. The accepted methods of attachment are:", - "parentRuleCode": "F.8.2", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.2.3.a", - "ruleContent": "Welding • All weld lengths must be 25 mm or longer • If interrupted, the weld/space ratio must be 1:1 or higher", - "parentRuleCode": "F.8.2.3", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.2.3.b", - "ruleContent": "Bolted joints • Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. • The distance between any two bolt centers must be 50 mm minimum. • Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN", - "parentRuleCode": "F.8.2.3", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.2.3.c", - "ruleContent": "Bonding • The Front Bulkhead must have no openings • The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel strength higher than 120 kN", - "parentRuleCode": "F.8.2.3", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.2.3.d", - "ruleContent": "Laminating • The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead • The lamination must fully enclose the Anti Intrusion Plate and have shear capability higher than 120 kN", - "parentRuleCode": "F.8.2.3", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.3", - "ruleContent": "Composite Anti Intrusion Plate", - "parentRuleCode": "F.8", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.3.1", - "ruleContent": "Composite Anti Intrusion Plates:", - "parentRuleCode": "F.8.3", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.3.1.a", - "ruleContent": "Must not fail in a frontal impact", - "parentRuleCode": "F.8.3.1", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.3.1.b", - "ruleContent": "Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm minimum Impact Attenuator area", - "parentRuleCode": "F.8.3.1", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.3.2", - "ruleContent": "Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods:", - "parentRuleCode": "F.8.3", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.3.2.a", - "ruleContent": "Physical testing of the AIP attached to a structurally representative section of the intended chassis • The test fixture must have equivalent strength and stiffness to a baseline front bulkhead or must be the same as the first 50 mm of the Chassis • Test data is valid for only one Competition Year", - "parentRuleCode": "F.8.3.2", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.3.2.b", - "ruleContent": "Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending and perimeter shear Version 1.0 31 Aug 2024", - "parentRuleCode": "F.8.3.2", - "pageNumber": "44" - }, - { - "ruleCode": "F.8.4", - "ruleContent": "Impact Attenuator - IA", - "parentRuleCode": "F.8", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.1", - "ruleContent": "Teams must do one of: • Use an approved Standard Impact Attenuator from the FSAE Online Website • Build and test a Custom Impact Attenuator of their own design F.8.8", - "parentRuleCode": "F.8.4", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.2", - "ruleContent": "The Custom Impact Attenuator must meet these:", - "parentRuleCode": "F.8.4", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.2.a", - "ruleContent": "Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis.", - "parentRuleCode": "F.8.4.2", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.2.b", - "ruleContent": "Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm (parallel to the ground) for a minimum distance of 200 mm forward of the Front Bulkhead.", - "parentRuleCode": "F.8.4.2", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.2.c", - "ruleContent": "Segmented foam attenuators must have all segments bonded together to prevent sliding or parallelogramming.", - "parentRuleCode": "F.8.4.2", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.2.d", - "ruleContent": "Honeycomb attenuators made of multiple segments must have a continuous panel between each segment.", - "parentRuleCode": "F.8.4.2", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.3", - "ruleContent": "If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses the Standard Honeycomb Impact Attenuator, and then one of the two must be met:", - "parentRuleCode": "F.8.4", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.3.a", - "ruleContent": "The Front Bulkhead must include an additional support that is a diagonal or X-brace that meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 • The structure must go across the entire Front Bulkhead opening on the diagonal • Attachment points at each end must carry a minimum load of 30 kN in any direction", - "parentRuleCode": "F.8.4.3", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.4.3.b", - "ruleContent": "Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion Plate does not permanently deflect more than 25 mm.", - "parentRuleCode": "F.8.4.3", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5", - "ruleContent": "Impact Attenuator Attachment", - "parentRuleCode": "F.8", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.1", - "ruleContent": "The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must be documented in the SES submission", - "parentRuleCode": "F.8.5", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.2", - "ruleContent": "The Impact Attenuator must attach with an approved method: Impact Attenuator Type Construction Attachment Method(s):", - "parentRuleCode": "F.8.5", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.2.a", - "ruleContent": "Standard or Custom Foam, Honeycomb Bonding", - "parentRuleCode": "F.8.5.2", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.2.b", - "ruleContent": "Custom other Bonding, Welding, Bolting", - "parentRuleCode": "F.8.5.2", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.3", - "ruleContent": "If the Impact Attenuator is attached by bonding:", - "parentRuleCode": "F.8.5", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.3.a", - "ruleContent": "Bonding must meet F.5.5", - "parentRuleCode": "F.8.5.3", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.3.b", - "ruleContent": "The shear strength of the bond must be higher than: • 95 kN for foam Impact Attenuators • 38.5 kN for honeycomb Impact Attenuators • The maximum compressive force for custom Impact Attenuators", - "parentRuleCode": "F.8.5.3", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.3.c", - "ruleContent": "The entire surface of a foam Impact Attenuator must be bonded", - "parentRuleCode": "F.8.5.3", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.3.d", - "ruleContent": "Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond equivalence", - "parentRuleCode": "F.8.5.3", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.4", - "ruleContent": "If the Impact Attenuator is attached by welding:", - "parentRuleCode": "F.8.5", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.4.a", - "ruleContent": "Welds may be continuous or interrupted", - "parentRuleCode": "F.8.5.4", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.4.b", - "ruleContent": "If interrupted, the weld/space ratio must be 1:1 or higher Version 1.0 31 Aug 2024", - "parentRuleCode": "F.8.5.4", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.4.c", - "ruleContent": "All weld lengths must be more than 25 mm", - "parentRuleCode": "F.8.5.4", - "pageNumber": "45" - }, - { - "ruleCode": "F.8.5.5", - "ruleContent": "If the Impact Attenuator is attached by bolting:", - "parentRuleCode": "F.8.5", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.5.a", - "ruleContent": "Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2", - "parentRuleCode": "F.8.5.5", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.5.b", - "ruleContent": "The distance between any two bolt centers must be 50 mm minimum", - "parentRuleCode": "F.8.5.5", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.5.c", - "ruleContent": "Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN", - "parentRuleCode": "F.8.5.5", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.5.d", - "ruleContent": "Must be bolted directly to the Primary Structure", - "parentRuleCode": "F.8.5.5", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.6", - "ruleContent": "Impact Attenuator Position", - "parentRuleCode": "F.8.5", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.6.a", - "ruleContent": "All Impact Attenuators must mount with the bottom leading edge 150 mm or less above the lowest point on the top of the Lower Side Impact Structure", - "parentRuleCode": "F.8.5.6", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.6.b", - "ruleContent": "A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 mm or more wide that intersects a plane parallel to the ground that is 150 mm or less above the lowest point on the top of the Lower Side Impact Structure", - "parentRuleCode": "F.8.5.6", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.7", - "ruleContent": "Impact Attenuator Orientation", - "parentRuleCode": "F.8.5", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.7.a", - "ruleContent": "The Impact Attenuator must be centered laterally on the Front Bulkhead", - "parentRuleCode": "F.8.5.7", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.7.b", - "ruleContent": "Standard Honeycomb must be mounted 200mm width x 100mm height", - "parentRuleCode": "F.8.5.7", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.5.7.c", - "ruleContent": "Standard Foam may be mounted laterally or vertically", - "parentRuleCode": "F.8.5.7", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6", - "ruleContent": "Front Impact Objects", - "parentRuleCode": "F.8", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.1", - "ruleContent": "The only items allowed forward of the Anti Intrusion Plate in front view are the Impact Attenuator, fastener heads, and light bodywork / nosecones Fasteners should be oriented with the nuts rearwards", - "parentRuleCode": "F.8.6", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.2", - "ruleContent": "Front Wing and Bodywork Attachment", - "parentRuleCode": "F.8.6", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.2.a", - "ruleContent": "The front wing and front wing mounts must be able to move completely aft of the Anti Intrusion Plate and not touch the front bulkhead during a frontal impact", - "parentRuleCode": "F.8.6.2", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.2.b", - "ruleContent": "The attachment points for the front wing and bodywork mounts should be aft of the Anti Intrusion Plate", - "parentRuleCode": "F.8.6.2", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.2.c", - "ruleContent": "Tabs for wing and bodywork attachment must not extend more than 25 mm forward of the Anti Intrusion Plate", - "parentRuleCode": "F.8.6.2", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.3", - "ruleContent": "Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the:", - "parentRuleCode": "F.8.6", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.3.a", - "ruleContent": "Rear face of the Anti Intrusion Plate", - "parentRuleCode": "F.8.6.3", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.3.b", - "ruleContent": "All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3", - "parentRuleCode": "F.8.6.3", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.6.3.c", - "ruleContent": "All Non Crushable Items inside the Primary Structure Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic reservoirs", - "parentRuleCode": "F.8.6.3", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.7", - "ruleContent": "Front Impact Verification", - "parentRuleCode": "F.8", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.7.1", - "ruleContent": "The combination of the Impact Attenuator assembly and the force to crush or detach all other items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in F.8.8.2 Ignore light bodywork, light nosecones, and outboard wheel assemblies Version 1.0 31 Aug 2024", - "parentRuleCode": "F.8.7", - "pageNumber": "46" - }, - { - "ruleCode": "F.8.7.2", - "ruleContent": "The peak load for the type of Impact Attenuator: • Standard Foam Impact Attenuator 95 kN • Standard Honeycomb Impact Attenuator 60 kN • Tested Impact Attenuator peak as measured", - "parentRuleCode": "F.8.7", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.7.3", - "ruleContent": "Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement", - "parentRuleCode": "F.8.7", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.7.4", - "ruleContent": "Test Method Get the peak force from physical testing of the Impact Attenuator and any Non Crushable Object(s) as one of the two:", - "parentRuleCode": "F.8.7", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.7.4.a", - "ruleContent": "Tested together with the Impact Attenuator", - "parentRuleCode": "F.8.7.4", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.7.4.b", - "ruleContent": "Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2", - "parentRuleCode": "F.8.7.4", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.7.5", - "ruleContent": "Calculation Method", - "parentRuleCode": "F.8.7", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.7.5.a", - "ruleContent": "Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener shear, tearout, and/or link buckling", - "parentRuleCode": "F.8.7.5", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.7.5.b", - "ruleContent": "Add the peak attenuator load from F.8.7.2", - "parentRuleCode": "F.8.7.5", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8", - "ruleContent": "Impact Attenuator Data - IAD", - "parentRuleCode": "F.8", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.1", - "ruleContent": "All teams must include an Impact Attenuator Data (IAD) report as part of the SES.", - "parentRuleCode": "F.8.8", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.2", - "ruleContent": "Impact Attenuator Functional Requirements These are not test requirements", - "parentRuleCode": "F.8.8", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.2.a", - "ruleContent": "Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak", - "parentRuleCode": "F.8.8.2", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.2.b", - "ruleContent": "Energy absorbed must be more than 7350 J When: • Total mass of Vehicle is 300 kg • Impact velocity is 7.0 m/s", - "parentRuleCode": "F.8.8.2", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.3", - "ruleContent": "When using the Standard Impact Attenuator, the SES must meet these:", - "parentRuleCode": "F.8.8", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.3.a", - "ruleContent": "Test data will not be submitted", - "parentRuleCode": "F.8.8.3", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.3.b", - "ruleContent": "All other requirements of this section must be included.", - "parentRuleCode": "F.8.8.3", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.3.c", - "ruleContent": "Photos of the actual attenuator must be included", - "parentRuleCode": "F.8.8.3", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.3.d", - "ruleContent": "Evidence that the Standard IA meets the design criteria provided in the Standard Impact Attenuator specification must be included with the SES. This may be a receipt or packing slip from the supplier.", - "parentRuleCode": "F.8.8.3", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.4", - "ruleContent": "The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must include:", - "parentRuleCode": "F.8.8", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.4.a", - "ruleContent": "Test data that proves that the Impact Attenuator Assembly meets the Functional Requirements F.8.8.2", - "parentRuleCode": "F.8.8.4", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.4.b", - "ruleContent": "Calculations showing how the reported absorbed energy and decelerations have been derived.", - "parentRuleCode": "F.8.8.4", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.4.c", - "ruleContent": "A schematic of the test method.", - "parentRuleCode": "F.8.8.4", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.4.d", - "ruleContent": "Photos of the attenuator, annotated with the height of the attenuator before and after testing. Version 1.0 31 Aug 2024", - "parentRuleCode": "F.8.8.4", - "pageNumber": "47" - }, - { - "ruleCode": "F.8.8.5", - "ruleContent": "The Impact Attenuator Test is valid for only one Competition Year", - "parentRuleCode": "F.8.8", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.6", - "ruleContent": "Impact Attenuator Test Setup", - "parentRuleCode": "F.8.8", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.6.a", - "ruleContent": "During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using the intended vehicle attachment method.", - "parentRuleCode": "F.8.8.6", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.6.b", - "ruleContent": "The Impact Attenuator Assembly must be attached to a structurally representative section of the intended chassis. The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. A solid block of material in the shape of the front bulkhead is not “structurally representative”.", - "parentRuleCode": "F.8.8.6", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.6.c", - "ruleContent": "There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the test fixture.", - "parentRuleCode": "F.8.8.6", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.6.d", - "ruleContent": "No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond the position of the Anti Intrusion Plate before the test. The 25 mm spacing represents the front bulkhead support and insures that the plate does not intrude excessively into the cockpit.", - "parentRuleCode": "F.8.8.6", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.7", - "ruleContent": "Test Conduct", - "parentRuleCode": "F.8.8", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.7.a", - "ruleContent": "Composite Impact Attenuators must be Dynamic Tested. Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested", - "parentRuleCode": "F.8.8.7", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.7.b", - "ruleContent": "Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be conducted at a dedicated test facility. This facility may be part of the University, but must be supervised by professional staff or the University faculty. Teams must not construct their own dynamic test apparatus.", - "parentRuleCode": "F.8.8.7", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.7.c", - "ruleContent": "Quasi-Static Testing may be done by teams using their University’s facilities/equipment, but teams are advised to exercise due care", - "parentRuleCode": "F.8.8.7", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.8", - "ruleContent": "Test Analysis", - "parentRuleCode": "F.8.8", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.8.a", - "ruleContent": "When using acceleration data from the dynamic test, the average deceleration must be calculated based on the raw unfiltered data.", - "parentRuleCode": "F.8.8.8", - "pageNumber": "48" - }, - { - "ruleCode": "F.8.8.8.b", - "ruleContent": "If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 (100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied.", - "parentRuleCode": "F.8.8.8", - "pageNumber": "48" - }, - { - "ruleCode": "F.9", - "ruleContent": "FUEL SYSTEM (IC ONLY) Fuel System Location and Protection are subject to approval during SES review and Technical Inspection.", - "parentRuleCode": "F", - "pageNumber": "48" - }, - { - "ruleCode": "F.9.1", - "ruleContent": "Location", - "parentRuleCode": "F.9", - "pageNumber": "48" - }, - { - "ruleCode": "F.9.1.1", - "ruleContent": "These components must be inside the Primary Structure (F.1.10):", - "parentRuleCode": "F.9.1", - "pageNumber": "48" - }, - { - "ruleCode": "F.9.1.1.a", - "ruleContent": "Any part of the Fuel System that is below the Upper Side Impact Structure", - "parentRuleCode": "F.9.1.1", - "pageNumber": "48" - }, - { - "ruleCode": "F.9.1.1.b", - "ruleContent": "Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper Side Impact Structure IC.1.2", - "parentRuleCode": "F.9.1.1", - "pageNumber": "48" - }, - { - "ruleCode": "F.9.1.2", - "ruleContent": "In side view, any portion of the Fuel System must not project below the lower surface of the chassis Version 1.0 31 Aug 2024", - "parentRuleCode": "F.9.1", - "pageNumber": "48" - }, - { - "ruleCode": "F.9.2", - "ruleContent": "Protection All Fuel Tanks must be shielded from side or rear impact", - "parentRuleCode": "F.9", - "pageNumber": "49" - }, - { - "ruleCode": "F.10", - "ruleContent": "ACCUMULATOR CONTAINER (EV ONLY)", - "parentRuleCode": "F", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.1", - "ruleContent": "General Requirements", - "parentRuleCode": "F.10", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.1.1", - "ruleContent": "All Accumulator Containers must be:", - "parentRuleCode": "F.10.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.1.1.a", - "ruleContent": "Designed to withstand forces from deceleration in all directions", - "parentRuleCode": "F.10.1.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.1.1.b", - "ruleContent": "Made from a Nonflammable Material ( F.1.18 )", - "parentRuleCode": "F.10.1.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.1.2", - "ruleContent": "Design of the Accumulator Container must be documented in the SES. Documentation includes materials used, drawings/images, fastener locations, cell/segment weight and cell/segment position.", - "parentRuleCode": "F.10.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.1.3", - "ruleContent": "The Accumulator Containers and mounting systems are subject to approval during SES review and Technical Inspection", - "parentRuleCode": "F.10.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.1.4", - "ruleContent": "If the Accumulator Container is not constructed from steel or aluminum, the material properties should be established at a temperature of 60°C", - "parentRuleCode": "F.10.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.1.5", - "ruleContent": "If adhesives are used for credited bonding, the bond properties should be established for a temperature of 60°C", - "parentRuleCode": "F.10.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2", - "ruleContent": "Structure", - "parentRuleCode": "F.10", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.1", - "ruleContent": "The Floor or Bottom must be made from one of the three:", - "parentRuleCode": "F.10.2", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.1.a", - "ruleContent": "Steel 1.25 mm minimum thickness", - "parentRuleCode": "F.10.2.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.1.b", - "ruleContent": "Aluminum 3.2 mm minimum thickness", - "parentRuleCode": "F.10.2.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.1.c", - "ruleContent": "Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", - "parentRuleCode": "F.10.2.1", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.2", - "ruleContent": "Walls, Covers and Lids must be made from one of the three:", - "parentRuleCode": "F.10.2", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.2.a", - "ruleContent": "Steel 0.9 mm minimum thickness", - "parentRuleCode": "F.10.2.2", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.2.b", - "ruleContent": "Aluminum 2.3 mm minimum thickness", - "parentRuleCode": "F.10.2.2", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.2.c", - "ruleContent": "Equivalent Alternate / Composite materials ( F.4.1, F.4.2 )", - "parentRuleCode": "F.10.2.2", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.3", - "ruleContent": "Internal Vertical Walls:", - "parentRuleCode": "F.10.2", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.3.a", - "ruleContent": "Must surround and separate each Accumulator Segment EV.5.1.2", - "parentRuleCode": "F.10.2.3", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.3.b", - "ruleContent": "Must have minimum height of the full height of the Accumulator Segments The Internal Walls should extend to the lid above any Segment", - "parentRuleCode": "F.10.2.3", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.3.c", - "ruleContent": "Must surround no more than 12 kg on each side The intent is to have each Segment fully enclosed in its own six sided box", - "parentRuleCode": "F.10.2.3", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.4", - "ruleContent": "If segments are arranged vertically above other segments, each layer of segments must have a load path to the Chassis attachments that does not pass through another layer of segments", - "parentRuleCode": "F.10.2", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.5", - "ruleContent": "Floors and all Wall sections must be joined on each side The accepted methods of joining walls to walls and walls to floor are:", - "parentRuleCode": "F.10.2", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.5.a", - "ruleContent": "Welding • Welds may be continuous or interrupted. • If interrupted, the weld/space ratio must be 1:1 or higher Version 1.0 31 Aug 2024 • All weld lengths must be more than 25 mm", - "parentRuleCode": "F.10.2.5", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.5.b", - "ruleContent": "Fasteners Combined strength of the fasteners must be Equivalent to the strength of the welded joint ( F.10.2.5.a above )", - "parentRuleCode": "F.10.2.5", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.5.c", - "ruleContent": "Bonding • Bonding must meet F.5.5 • Strength of the bonded joint must be Equivalent to the strength of the welded joint ( F.10.2.5.a above ) • Bonds must run the entire length of the joint Folding or bending plate material to create flanges or to eliminate joints between walls is recommended.", - "parentRuleCode": "F.10.2.5", - "pageNumber": "49" - }, - { - "ruleCode": "F.10.2.6", - "ruleContent": "Covers and Lids must be mechanically attached and include Positive Locking Mechanisms", - "parentRuleCode": "F.10.2", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3", - "ruleContent": "Cells and Segments", - "parentRuleCode": "F.10", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3.1", - "ruleContent": "The structure of the Segments (without the structure of the Accumulator Container and without the structure of the cells) must prevent cells from being crushed in any direction under the following accelerations:", - "parentRuleCode": "F.10.3", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3.1.a", - "ruleContent": "40 g in the longitudinal direction (forward/aft)", - "parentRuleCode": "F.10.3.1", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3.1.b", - "ruleContent": "40 g in the lateral direction (left/right)", - "parentRuleCode": "F.10.3.1", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3.1.c", - "ruleContent": "20 g in the vertical direction (up/down)", - "parentRuleCode": "F.10.3.1", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3.2", - "ruleContent": "Segments must be held by one of the two:", - "parentRuleCode": "F.10.3", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3.2.a", - "ruleContent": "Mechanical Cover and Lid attachments must show equivalence to the strength of a welded joint F.10.2.5.a", - "parentRuleCode": "F.10.3.2", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3.2.b", - "ruleContent": "Mechanical Segment attachments to the container must show they can support the acceleration loads F.10.3.1 above in the direction of removal", - "parentRuleCode": "F.10.3.2", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.3.3", - "ruleContent": "Calculations and/or tests proving these requirements are met must be included in the SES", - "parentRuleCode": "F.10.3", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.4", - "ruleContent": "Holes and Openings", - "parentRuleCode": "F.10", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.4.1", - "ruleContent": "The Accumulator Container(s) exterior or interior walls may contain holes or openings, see EV.4.3.4", - "parentRuleCode": "F.10.4", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.4.2", - "ruleContent": "Any Holes and Openings must be the minimum area necessary", - "parentRuleCode": "F.10.4", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.4.3", - "ruleContent": "Exterior and interior walls must cover a minimum of 75% of each face of the battery segments", - "parentRuleCode": "F.10.4", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.4.4", - "ruleContent": "Holes and Openings for airflow:", - "parentRuleCode": "F.10.4", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.4.4.a", - "ruleContent": "Must be round. Slots are prohibited", - "parentRuleCode": "F.10.4.4", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.4.4.b", - "ruleContent": "Should be maximum 10 mm diameter", - "parentRuleCode": "F.10.4.4", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.4.4.c", - "ruleContent": "Must not have line of sight to the driver, with the Firewall installed or removed", - "parentRuleCode": "F.10.4.4", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.5", - "ruleContent": "Attachment", - "parentRuleCode": "F.10", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.5.1", - "ruleContent": "Attachment of the Accumulator Container must be documented in the SES", - "parentRuleCode": "F.10.5", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.5.2", - "ruleContent": "Accumulator Containers must:", - "parentRuleCode": "F.10.5", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.5.2.a", - "ruleContent": "Attach to the Major Structure of the chassis Version 1.0 31 Aug 2024 A maximum of two attachment points may be on a chassis tube between two triangulated nodes.", - "parentRuleCode": "F.10.5.2", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.5.2.b", - "ruleContent": "Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing", - "parentRuleCode": "F.10.5.2", - "pageNumber": "50" - }, - { - "ruleCode": "F.10.5.3", - "ruleContent": "Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2", - "parentRuleCode": "F.10.5", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.4", - "ruleContent": "Each fastened attachment point to a composite Accumulator Container requires backing plates that are one of the two:", - "parentRuleCode": "F.10.5", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.4.a", - "ruleContent": "Steel with a thickness of 2 mm minimum", - "parentRuleCode": "F.10.5.4", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.4.b", - "ruleContent": "Alternate materials Equivalent to 2 mm thickness steel", - "parentRuleCode": "F.10.5.4", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.5", - "ruleContent": "Teams must justify the Accumulator Container attachment using one of the two methods: • Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 • Load Based Analysis per F.10.5.7 and F.10.5.8", - "parentRuleCode": "F.10.5", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.6", - "ruleContent": "Accumulator Attachment – Corner Attachments", - "parentRuleCode": "F.10.5", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.6.a", - "ruleContent": "Eight or more attachments are required for any configuration. • One attachment for each corner of a rectangular structure of multiple Accumulator Segments • More than the minimum number of fasteners may be required for non rectangular arrangements Examples: If not filled in with additional structure, an extruded L shape would require attachments at 10 convex corners (the corners at the inside of the L are not convex); an extruded hexagon would require 12 attachments", - "parentRuleCode": "F.10.5.6", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.6.b", - "ruleContent": "The mechanical connections at each corner must be 50 mm or less from the corner of the Segment", - "parentRuleCode": "F.10.5.6", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.6.c", - "ruleContent": "Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass of the container accelerating at 40 g", - "parentRuleCode": "F.10.5.6", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.7", - "ruleContent": "Accumulator Attachment – Load Based", - "parentRuleCode": "F.10.5", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.7.a", - "ruleContent": "The minimum number of attachment points depends on the total mass of the container: Accumulator Weight Minimum Attachment Points < 20 kg 4 20 – 30 kg 6 30 – 40 kg 8 > 40 kg 10", - "parentRuleCode": "F.10.5.7", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.7.b", - "ruleContent": "Each attachment point, including any brackets, backing plates and inserts, must be able to withstand 15 kN minimum in any direction", - "parentRuleCode": "F.10.5.7", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.8", - "ruleContent": "Accumulator Attachment – All Types", - "parentRuleCode": "F.10.5", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.8.a", - "ruleContent": "Each fastener must withstand the Test Load in pure shear, using the minor diameter if any threads are in shear", - "parentRuleCode": "F.10.5.8", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.8.b", - "ruleContent": "Each Accumulator bracket, chassis bracket, or monocoque attachment point must withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if welded, and pure bond shear and pure bond tensile if bonded.", - "parentRuleCode": "F.10.5.8", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.8.c", - "ruleContent": "Monocoque attachment points must meet F.7.8.8 Version 1.0 31 Aug 2024", - "parentRuleCode": "F.10.5.8", - "pageNumber": "51" - }, - { - "ruleCode": "F.10.5.8.d", - "ruleContent": "Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment points", - "parentRuleCode": "F.10.5.8", - "pageNumber": "51" - }, - { - "ruleCode": "F.11", - "ruleContent": "TRACTIVE SYSTEM (EV ONLY) Tractive System Location and Protection are subject to approval during SES review and Technical Inspection.", - "parentRuleCode": "F", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.1", - "ruleContent": "Location", - "parentRuleCode": "F.11", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.1.1", - "ruleContent": "All Accumulator Containers must lie inside the Primary Structure (F.1.10).", - "parentRuleCode": "F.11.1", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.1.2", - "ruleContent": "Motors mounted to a suspension upright and their connections must meet EV.4.1.3", - "parentRuleCode": "F.11.1", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.1.3", - "ruleContent": "Tractive System (EV.1.1) components including Motors, cables and wiring other than those in", - "parentRuleCode": "F.11.1", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.1.2.duplicate", - "ruleContent": "above must be contained inside one or two of: • The Rollover Protection Envelope F.1.13 • Structure meeting F.5.16 Component Protection", - "parentRuleCode": "F.11.1", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.2", - "ruleContent": "Side Impact Protection", - "parentRuleCode": "F.11", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.2.1", - "ruleContent": "All Accumulator Containers must be protected from side impact by structure Equivalent to Side Impact Structure (F.6.4, F.7.5)", - "parentRuleCode": "F.11.2", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.2.2", - "ruleContent": "The Accumulator Container must not be part of the Equivalent structure.", - "parentRuleCode": "F.11.2", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.2.3", - "ruleContent": "Accumulator Container side impact protection must go to a minimum height that is the lower of the two: • The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 • The top of the Accumulator Container at that point", - "parentRuleCode": "F.11.2", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.2.4", - "ruleContent": "Tractive System components other than Accumulator Containers in a position below 350 mm from the ground must be protected from side impact by structure that meets F.5.16 Component Protection", - "parentRuleCode": "F.11.2", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3", - "ruleContent": "Rear Impact Protection", - "parentRuleCode": "F.11", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.1", - "ruleContent": "All Tractive System components must be protected from rear impact by a Rear Bulkhead", - "parentRuleCode": "F.11.3", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.1.a", - "ruleContent": "When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure must be Equivalent to Side Impact Structure (F.6.4, F.7.5)", - "parentRuleCode": "F.11.3.1", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.1.b", - "ruleContent": "When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the structure must meet F.5.16 Component Protection", - "parentRuleCode": "F.11.3.1", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.1.c", - "ruleContent": "The Accumulator Container must not be part of the Equivalent structure", - "parentRuleCode": "F.11.3.1", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.2", - "ruleContent": "The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1", - "parentRuleCode": "F.11.3", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.3", - "ruleContent": "The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead", - "parentRuleCode": "F.11.3", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.4", - "ruleContent": "The Rear Bulkhead Support must have:", - "parentRuleCode": "F.11.3", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.4.a", - "ruleContent": "A structural and triangulated load path from the top of the Rear Impact Protection to the Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop", - "parentRuleCode": "F.11.3.4", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.4.b", - "ruleContent": "A structural and triangulated load path from the bottom of the Rear Impact Protection to the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop Version 1.0 31 Aug 2024", - "parentRuleCode": "F.11.3.4", - "pageNumber": "52" - }, - { - "ruleCode": "F.11.3.5", - "ruleContent": "In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal structure or X brace that meets F.11.3.1 above", - "parentRuleCode": "F.11.3", - "pageNumber": "53" - }, - { - "ruleCode": "F.11.3.5.a", - "ruleContent": "Differential mounts, two vertical tubes with similar spacing, a metal plate, or an Equivalent composite panel may replace a diagonal If used, the mounts, plate, or panel must: • Be aft of the upper and lower Rear Bulkhead structures • Overlap at least 25 mm vertically at the top and the bottom", - "parentRuleCode": "F.11.3.5", - "pageNumber": "53" - }, - { - "ruleCode": "F.11.3.5.b", - "ruleContent": "A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. If used, the plate must: • Fully overlap the Rear Bulkhead Support F.11.3.3 above • Attach by one of the two, as determined by the SES: - Fully laminated to the Rear Bulkhead or Rear Bulkhead Support - Attachment strength greater than 120 kN", - "parentRuleCode": "F.11.3.5", - "pageNumber": "53" - }, - { - "ruleCode": "F.11.4", - "ruleContent": "Clearance and Non Crushable Items", - "parentRuleCode": "F.11", - "pageNumber": "53" - }, - { - "ruleCode": "F.11.4.1", - "ruleContent": "Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself Accumulator mounts do not require clearance", - "parentRuleCode": "F.11.4", - "pageNumber": "53" - }, - { - "ruleCode": "F.11.4.2", - "ruleContent": "The Accumulator Container should have a minimum 25 mm total clearance to each of the front, side, and rear impact structures The clearance may be put together on either side of any Non Crushable items around the accumulator", - "parentRuleCode": "F.11.4", - "pageNumber": "53" - }, - { - "ruleCode": "F.11.4.3", - "ruleContent": "Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through the Rear Bulkhead Version 1.0 31 Aug 2024", - "parentRuleCode": "F.11.4", - "pageNumber": "53" - }, - { - "ruleCode": "T", - "ruleContent": "TECHNICAL ASPECTS", - "pageNumber": "54" - }, - { - "ruleCode": "T.1", - "ruleContent": "COCKPIT", - "parentRuleCode": "T", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1", - "ruleContent": "Cockpit Opening", - "parentRuleCode": "T.1", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.1", - "ruleContent": "The template shown below must pass through the cockpit opening", - "parentRuleCode": "T.1.1", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.2", - "ruleContent": "The template will be held horizontally, parallel to the ground, and inserted vertically from a height above any Primary Structure or bodywork that is between the Front Hoop and the Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 )", - "parentRuleCode": "T.1.1", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.2.a", - "ruleContent": "Has passed 25 mm below the lowest point of the top of the Side Impact Structure", - "parentRuleCode": "T.1.1.2", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.2.b", - "ruleContent": "Is less than or equal to 320 mm above the lowest point inside the cockpit", - "parentRuleCode": "T.1.1.2", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.3", - "ruleContent": "Fore and aft translation of the template is permitted during insertion.", - "parentRuleCode": "T.1.1", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.4", - "ruleContent": "During this test:", - "parentRuleCode": "T.1.1", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.4.a", - "ruleContent": "The steering wheel, steering column, seat and all padding may be removed", - "parentRuleCode": "T.1.1.4", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.4.b", - "ruleContent": "The shifter, shift mechanism, or clutch mechanism must not be removed unless it is integral with the steering wheel and is removed with the steering wheel", - "parentRuleCode": "T.1.1.4", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.4.c", - "ruleContent": "The firewall must not be moved or removed", - "parentRuleCode": "T.1.1.4", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.1.4.d", - "ruleContent": "Cables, wires, hoses, tubes, etc. must not block movement of the template During inspection, the steering column, for practical purposes, will not be removed. The template may be maneuvered around the steering column, but not any fixed supports. For ease of use, the template may contain a slot at the front center that the steering column may pass through. Version 1.0 31 Aug 2024", - "parentRuleCode": "T.1.1.4", - "pageNumber": "54" - }, - { - "ruleCode": "T.1.2", - "ruleContent": "Internal Cross Section", - "parentRuleCode": "T.1", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.1", - "ruleContent": "Requirement:", - "parentRuleCode": "T.1.2", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.1.a", - "ruleContent": "The cockpit must have a free internal cross section", - "parentRuleCode": "T.1.2.1", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.1.b", - "ruleContent": "The template shown below must pass through the cockpit Template maximum thickness: 7 mm", - "parentRuleCode": "T.1.2.1", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.2", - "ruleContent": "Conduct of the test. The template:", - "parentRuleCode": "T.1.2", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.2.a", - "ruleContent": "Will be held vertically and inserted into the cockpit opening rearward of the rearmost portion of the steering column.", - "parentRuleCode": "T.1.2.2", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.2.b", - "ruleContent": "Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the face of the rearmost pedal when in the inoperative position", - "parentRuleCode": "T.1.2.2", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.2.c", - "ruleContent": "May be moved vertically inside the cockpit", - "parentRuleCode": "T.1.2.2", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.3", - "ruleContent": "During this test:", - "parentRuleCode": "T.1.2", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.3.a", - "ruleContent": "If the pedals are adjustable, they must be in their most forward position.", - "parentRuleCode": "T.1.2.3", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.3.b", - "ruleContent": "The steering wheel may be removed", - "parentRuleCode": "T.1.2.3", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.3.c", - "ruleContent": "Padding may be removed if it can be easily removed without the use of tools with the driver in the seat", - "parentRuleCode": "T.1.2.3", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.3.d", - "ruleContent": "The seat and any seat insert(s) that may be used must stay in the cockpit", - "parentRuleCode": "T.1.2.3", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.3.e", - "ruleContent": "Cables, wires, hoses, tubes, etc. must not block movement of the template", - "parentRuleCode": "T.1.2.3", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.2.3.f", - "ruleContent": "The steering column and associated components may pass through the 50 mm wide center band of the template. For ease of use, the template may contain a full or partial slot in the shaded area shown on the figure", - "parentRuleCode": "T.1.2.3", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.3", - "ruleContent": "Driver Protection", - "parentRuleCode": "T.1", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.3.1", - "ruleContent": "The driver’s feet and legs must be completely contained inside the Major Structure of the Chassis. Version 1.0 31 Aug 2024", - "parentRuleCode": "T.1.3", - "pageNumber": "55" - }, - { - "ruleCode": "T.1.3.2", - "ruleContent": "While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s feet or legs must not extend above or outside of the Major Structure of the Chassis.", - "parentRuleCode": "T.1.3", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.3.3", - "ruleContent": "All moving suspension and steering components and other sharp edges inside the cockpit between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered by a shield made of a solid material. Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti- roll/sway bars, steering racks and steering column CV joints.", - "parentRuleCode": "T.1.3", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.3.4", - "ruleContent": "Covers over suspension and steering components must be removable to allow inspection of the mounting points", - "parentRuleCode": "T.1.3", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4", - "ruleContent": "Vehicle Controls", - "parentRuleCode": "T.1", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.1", - "ruleContent": "Accelerator Pedal", - "parentRuleCode": "T.1.4", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.1.a", - "ruleContent": "An Accelerator Pedal must control the Powertrain output", - "parentRuleCode": "T.1.4.1", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.1.b", - "ruleContent": "Pedal Travel is the percent of travel from a fully released position to a fully applied position. 0% is fully released and 100% is fully applied.", - "parentRuleCode": "T.1.4.1", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.1.c", - "ruleContent": "The Accelerator Pedal must: • Return to 0% Pedal Travel when not pushed • Have a positive stop to prevent any cable, actuation system or sensor from damage or overstress", - "parentRuleCode": "T.1.4.1", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.2", - "ruleContent": "Any mechanism in the throttle system that could become jammed must be covered. This is to prevent debris or interference and includes but is not limited to a gear mechanism", - "parentRuleCode": "T.1.4", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.3", - "ruleContent": "All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) must be operated from inside the cockpit without any part of the driver, including hands, arms or elbows, being outside of:", - "parentRuleCode": "T.1.4", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.3.a", - "ruleContent": "The Side Impact Structure defined in F.6.4 / F.7.5", - "parentRuleCode": "T.1.4.3", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.3.b", - "ruleContent": "Two longitudinal vertical planes parallel to the centerline of the chassis touching the uppermost member of the Side Impact Structure", - "parentRuleCode": "T.1.4.3", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.4.4", - "ruleContent": "All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational position", - "parentRuleCode": "T.1.4", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.5", - "ruleContent": "Driver’s Seat", - "parentRuleCode": "T.1", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.5.1", - "ruleContent": "The Driver’s Seat must be protected by one of the two:", - "parentRuleCode": "T.1.5", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.5.1.a", - "ruleContent": "In side view, the lowest point of any Driver’s Seat must be no lower than the upper surface of the lowest structural tube or equivalent", - "parentRuleCode": "T.1.5.1", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.5.1.b", - "ruleContent": "A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing (F.3.2.1.e), passing underneath the lowest point of the Driver Seat.", - "parentRuleCode": "T.1.5.1", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.6", - "ruleContent": "Thermal Protection", - "parentRuleCode": "T.1", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.6.1", - "ruleContent": "When seated in the normal driving position, sufficient heat insulation must be provided to make sure that the driver will not contact any metal or other materials which may become heated to a surface temperature above 60°C.", - "parentRuleCode": "T.1.6", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.6.2", - "ruleContent": "Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. Version 1.0 31 Aug 2024", - "parentRuleCode": "T.1.6", - "pageNumber": "56" - }, - { - "ruleCode": "T.1.6.3", - "ruleContent": "The design must address all three types of heat transfer between the heat source (examples include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a place that the driver could contact (including seat or floor):", - "parentRuleCode": "T.1.6", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.6.3.a", - "ruleContent": "Conduction Isolation by one of the two: • No direct contact between the heat source and the panel • A heat resistant, conduction isolation material with a minimum thickness of 8 mm between the heat source and the panel", - "parentRuleCode": "T.1.6.3", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.6.3.b", - "ruleContent": "Convection Isolation by a minimum air gap of 25 mm between the heat source and the panel", - "parentRuleCode": "T.1.6.3", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.6.3.c", - "ruleContent": "Radiation Isolation by one of the two: • A solid metal heat shield with a minimum thickness of 0.4 mm • Reflective foil or tape when combined with conduction insulation", - "parentRuleCode": "T.1.6.3", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.7", - "ruleContent": "Floor Closeout", - "parentRuleCode": "T.1", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.7.1", - "ruleContent": "All vehicles must have a Floor Closeout to prevent track debris from entering", - "parentRuleCode": "T.1.7", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.7.2", - "ruleContent": "The Floor Closeout must extend from the foot area to the firewall", - "parentRuleCode": "T.1.7", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.7.3", - "ruleContent": "The panel(s) must be made of a solid, non brittle material", - "parentRuleCode": "T.1.7", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.7.4", - "ruleContent": "If multiple panels are used, gaps between panels must not exceed 3 mm", - "parentRuleCode": "T.1.7", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8", - "ruleContent": "Firewall", - "parentRuleCode": "T.1", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.1", - "ruleContent": "A Firewall(s) must separate the driver compartment and any portion of the Driver Harness from:", - "parentRuleCode": "T.1.8", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.1.a", - "ruleContent": "All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium batteries", - "parentRuleCode": "T.1.8.1", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.1.b", - "ruleContent": "(EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 and cable to those Motors where mounted at the wheels or on the front control arms", - "parentRuleCode": "T.1.8.1", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.2", - "ruleContent": "The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest driver must not be in direct line of sight with any part given in T.1.8.1 above", - "parentRuleCode": "T.1.8", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.3", - "ruleContent": "Any Firewall must be:", - "parentRuleCode": "T.1.8", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.3.a", - "ruleContent": "A non permeable surface made from a rigid, Nonflammable Material", - "parentRuleCode": "T.1.8.3", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.3.b", - "ruleContent": "Mounted tightly", - "parentRuleCode": "T.1.8.3", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.4", - "ruleContent": "(EV only) The Firewall or the part of the Firewall on the Tractive System side must be:", - "parentRuleCode": "T.1.8", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.4.a", - "ruleContent": "Made of aluminum. The Firewall layer itself must not be aluminum tape.", - "parentRuleCode": "T.1.8.4", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.4.b", - "ruleContent": "Grounded, refer to EV.6.7 Grounding", - "parentRuleCode": "T.1.8.4", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.5", - "ruleContent": "(EV only) The Accumulator Container must not be part of the Firewall", - "parentRuleCode": "T.1.8", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.6", - "ruleContent": "Sealing", - "parentRuleCode": "T.1.8", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.6.a", - "ruleContent": "Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, edges, any pass throughs and Floor Closeout)", - "parentRuleCode": "T.1.8.6", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.6.b", - "ruleContent": "Firewalls that have multiple panels must overlap and be sealed at the joints", - "parentRuleCode": "T.1.8.6", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.6.c", - "ruleContent": "Sealing between Firewalls must not be a stressed part of the Firewall", - "parentRuleCode": "T.1.8.6", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.6.d", - "ruleContent": "Grommets must be used to seal any pass through for wiring, cables, etc Version 1.0 31 Aug 2024", - "parentRuleCode": "T.1.8.6", - "pageNumber": "57" - }, - { - "ruleCode": "T.1.8.6.e", - "ruleContent": "Any seals or adhesives used with the Firewall must be rated for the application environment", - "parentRuleCode": "T.1.8.6", - "pageNumber": "57" - }, - { - "ruleCode": "T.2", - "ruleContent": "DRIVER ACCOMMODATION", - "parentRuleCode": "T", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.1", - "ruleContent": "Harness Definitions", - "parentRuleCode": "T.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.1.a", - "ruleContent": "5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine Belt.", - "parentRuleCode": "T.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.1.b", - "ruleContent": "6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or Anti- Submarine Belts.", - "parentRuleCode": "T.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.1.c", - "ruleContent": "7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or Anti- Submarine Belts and a negative g or Z Belt.", - "parentRuleCode": "T.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.1.d", - "ruleContent": "Upright Driving Position - with a seat back angled at 30° or less from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in F.5.6.5 and positioned per F.5.6.6", - "parentRuleCode": "T.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.1.e", - "ruleContent": "Reclined Driving Position - with a seat back angled at more than 30° from the vertical as measured along the line joining the two 200 mm circles of the template of the 95th percentile male as defined in F.5.6.5 and positioned per F.5.6.6", - "parentRuleCode": "T.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.1.f", - "ruleContent": "Chest to Groin Line - the straight line that in side view follows the line of the Shoulder Belts from the chest to the release buckle.", - "parentRuleCode": "T.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2", - "ruleContent": "Harness Specification", - "parentRuleCode": "T.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.1", - "ruleContent": "The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three:", - "parentRuleCode": "T.2.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.1.a", - "ruleContent": "SFI Specification 16.1", - "parentRuleCode": "T.2.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.1.b", - "ruleContent": "SFI Specification 16.5", - "parentRuleCode": "T.2.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.1.c", - "ruleContent": "FIA specification 8853/2016", - "parentRuleCode": "T.2.2.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.2", - "ruleContent": "The belts must have the original manufacturers labels showing the specification and expiration date", - "parentRuleCode": "T.2.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.3", - "ruleContent": "The Harness must be in or before the year of expiration shown on the labels. Harnesses expiring on or before Dec 31 of the calendar year of the competition are permitted.", - "parentRuleCode": "T.2.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.4", - "ruleContent": "The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or other issues", - "parentRuleCode": "T.2.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.5", - "ruleContent": "All Harness hardware must be installed and threaded in accordance with manufacturer’s instructions", - "parentRuleCode": "T.2.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.2.6", - "ruleContent": "All Harness hardware must be used as received from the manufacturer. No modification (including drilling, cutting, grinding, etc) is permitted.", - "parentRuleCode": "T.2.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.3", - "ruleContent": "Harness Requirements", - "parentRuleCode": "T.2", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.3.1", - "ruleContent": "Vehicles with a Reclined Driving Position must have:", - "parentRuleCode": "T.2.3", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.3.1.a", - "ruleContent": "A 6 Point Harness or a 7 Point Harness", - "parentRuleCode": "T.2.3.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.3.1.b", - "ruleContent": "Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of Anti- Submarine Belts installed.", - "parentRuleCode": "T.2.3.1", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.3.2", - "ruleContent": "All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. Version 1.0 31 Aug 2024", - "parentRuleCode": "T.2.3", - "pageNumber": "58" - }, - { - "ruleCode": "T.2.3.3", - "ruleContent": "The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed.", - "parentRuleCode": "T.2.3", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4", - "ruleContent": "Belt, Strap and Harness Installation - General", - "parentRuleCode": "T.2", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.1", - "ruleContent": "The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the Primary Structure.", - "parentRuleCode": "T.2.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.2", - "ruleContent": "Any guide or support for the belts must be material meeting F.3.2.1.j", - "parentRuleCode": "T.2.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.3", - "ruleContent": "Each tab, bracket or eye to which any part of the Harness is attached must:", - "parentRuleCode": "T.2.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.3.a", - "ruleContent": "Support a minimum load in pullout and tearout before failure of: • If one belt is attached to the tab, bracket or eye 15 kN • If two belts are attached to the tab, bracket or eye 30 kN", - "parentRuleCode": "T.2.4.3", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.3.b", - "ruleContent": "Be 1.6 mm minimum thickness", - "parentRuleCode": "T.2.4.3", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.3.c", - "ruleContent": "Not cause abrasion to the belt webbing Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest radial cross section.", - "parentRuleCode": "T.2.4.3", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.4", - "ruleContent": "Attachment of tabs or brackets must meet these:", - "parentRuleCode": "T.2.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.4.a", - "ruleContent": "Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to the chassis", - "parentRuleCode": "T.2.4.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.4.b", - "ruleContent": "Welded tabs or eyes must have a base at least as large as the outer diameter of the tab or eye", - "parentRuleCode": "T.2.4.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.4.c", - "ruleContent": "Where a single shear tab is welded to the chassis, the tab to tube welding must be on the two sides of the base of the tab Double shear attachments are preferred. Tabs and brackets for double shear mounts should be welded on the two sides.", - "parentRuleCode": "T.2.4.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.5", - "ruleContent": "Eyebolts or weld eyes must:", - "parentRuleCode": "T.2.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.5.a", - "ruleContent": "Be one piece. No eyenuts or swivels.", - "parentRuleCode": "T.2.4.5", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.5.b", - "ruleContent": "Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum Threads should be 7/16-20 or greater", - "parentRuleCode": "T.2.4.5", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.5.c", - "ruleContent": "Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other harness brackets (lap and anti sub) or other vehicle parts", - "parentRuleCode": "T.2.4.5", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.5.d", - "ruleContent": "Have a positive locking feature on threads or by the belt itself", - "parentRuleCode": "T.2.4.5", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.6", - "ruleContent": "For the belt itself to be considered a positive locking feature, the eyebolt must:", - "parentRuleCode": "T.2.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.6.a", - "ruleContent": "Have minimum 10 threads engaged in a threaded insert", - "parentRuleCode": "T.2.4.6", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.6.b", - "ruleContent": "Be shimmed to fully tight", - "parentRuleCode": "T.2.4.6", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.6.c", - "ruleContent": "Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt creating a torque on the eyebolt.", - "parentRuleCode": "T.2.4.6", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.4.7", - "ruleContent": "Harness installation must meet T.1.8.1 Version 1.0 31 Aug 2024", - "parentRuleCode": "T.2.4", - "pageNumber": "59" - }, - { - "ruleCode": "T.2.5", - "ruleContent": "Lap Belt Mounting", - "parentRuleCode": "T.2", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.1", - "ruleContent": "The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the hip bones)", - "parentRuleCode": "T.2.5", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.2", - "ruleContent": "Installation of the Lap Belts must go in a straight line from the mounting point until they reach the driver's body without touching any hole in the seat or any other intermediate structure", - "parentRuleCode": "T.2.5", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.3", - "ruleContent": "The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the seat", - "parentRuleCode": "T.2.5", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.4", - "ruleContent": "With an Upright Driving Position:", - "parentRuleCode": "T.2.5", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.4.a", - "ruleContent": "The Lap Belt Side View Angle must be between 45° and 65° to the horizontal.", - "parentRuleCode": "T.2.5.4", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.4.b", - "ruleContent": "The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward of the seat back to seat bottom junction.", - "parentRuleCode": "T.2.5.4", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.5", - "ruleContent": "With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to the horizontal.", - "parentRuleCode": "T.2.5", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.6", - "ruleContent": "The Lap Belts must attach by one of the two:", - "parentRuleCode": "T.2.5", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.6.a", - "ruleContent": "Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9", - "parentRuleCode": "T.2.5.6", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.6.b", - "ruleContent": "Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame", - "parentRuleCode": "T.2.5.6", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.7", - "ruleContent": "In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an eye bolt attachment", - "parentRuleCode": "T.2.5", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.5.8", - "ruleContent": "Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 10 mm or 3/8”", - "parentRuleCode": "T.2.5", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.6", - "ruleContent": "Shoulder Harness", - "parentRuleCode": "T.2", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.6.1", - "ruleContent": "From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal.", - "parentRuleCode": "T.2.6", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.6.2", - "ruleContent": "The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center", - "parentRuleCode": "T.2.6", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.6.3", - "ruleContent": "The Shoulder Belts must attach by one of the four:", - "parentRuleCode": "T.2.6", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.6.3.a", - "ruleContent": "Wrap around the Shoulder Harness Mounting bar", - "parentRuleCode": "T.2.6.3", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.6.3.b", - "ruleContent": "Bolt through a welded tube insert or tested monocoque attachment F.7.9", - "parentRuleCode": "T.2.6.3", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.6.3.c", - "ruleContent": "Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye (", - "parentRuleCode": "T.2.6.3", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.4.3.duplicate", - "ruleContent": ") loaded in tension on the Shoulder Harness Mounting bar", - "parentRuleCode": "T.2.4", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.4.3.d", - "ruleContent": "Wrap around physically tested hardware attached to a monocoque Version 1.0 31 Aug 2024", - "parentRuleCode": "T.2.4.3", - "pageNumber": "60" - }, - { - "ruleCode": "T.2.6.4", - "ruleContent": "Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 10 mm or 3/8”", - "parentRuleCode": "T.2.6", - "pageNumber": "61" - }, - { - "ruleCode": "T.2.7", - "ruleContent": "Anti-Submarine Belt Mounting", - "parentRuleCode": "T.2", - "pageNumber": "61" - }, - { - "ruleCode": "T.2.7.1", - "ruleContent": "The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt Side View Angle no more than 20°", - "parentRuleCode": "T.2.7", - "pageNumber": "61" - }, - { - "ruleCode": "T.2.7.2", - "ruleContent": "The Anti-Submarine Belts of a 6 point harness must mount in one of the two:", - "parentRuleCode": "T.2.7", - "pageNumber": "61" - }, - { - "ruleCode": "T.2.7.2.a", - "ruleContent": "With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side View Angle up to 20° rearwards. The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart.", - "parentRuleCode": "T.2.7.2", - "pageNumber": "61" - }, - { - "ruleCode": "T.2.7.2.b", - "ruleContent": "With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming up around the groin to the release buckle. Version 1.0 31 Aug 2024", - "parentRuleCode": "T.2.7.2", - "pageNumber": "61" - }, - { - "ruleCode": "T.2.7.3", - "ruleContent": "Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt Mounting Point(s) without touching any hole in the seat or any other intermediate structure until they reach:", - "parentRuleCode": "T.2.7", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.7.3.a", - "ruleContent": "The release buckle for the 5 Point Harness mounting per T.2.7.1", - "parentRuleCode": "T.2.7.3", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.7.3.b", - "ruleContent": "The first point where the belt touches the driver’s body for the 6 Point Harness mounting per T.2.7.2", - "parentRuleCode": "T.2.7.3", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.7.4", - "ruleContent": "The Anti Submarine Belts must attach by one of the three:", - "parentRuleCode": "T.2.7", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.7.4.a", - "ruleContent": "Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9", - "parentRuleCode": "T.2.7.4", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.7.4.b", - "ruleContent": "Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame", - "parentRuleCode": "T.2.7.4", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.7.4.c", - "ruleContent": "Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. The belt must not be able to touch the ground.", - "parentRuleCode": "T.2.7.4", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.7.5", - "ruleContent": "Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: • The bolt diameter specified by the manufacturer • 8 mm or 5/16”", - "parentRuleCode": "T.2.7", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8", - "ruleContent": "Head Restraint", - "parentRuleCode": "T.2", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.1", - "ruleContent": "A Head Restraint must be provided to limit the rearward motion of the driver’s head.", - "parentRuleCode": "T.2.8", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.2", - "ruleContent": "The Head Restraint must be vertical or near vertical in side view.", - "parentRuleCode": "T.2.8", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.3", - "ruleContent": "All material and structure of the Head Restraint must be inside one or the two of:", - "parentRuleCode": "T.2.8", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.3.a", - "ruleContent": "Rollover Protection Envelope F.1.13", - "parentRuleCode": "T.2.8.3", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.3.b", - "ruleContent": "Head Restraint Protection (if used) F.5.10", - "parentRuleCode": "T.2.8.3", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.4", - "ruleContent": "The Head Restraint, attachment and mounting must be strong enough to withstand a minimum force of:", - "parentRuleCode": "T.2.8", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.4.a", - "ruleContent": "900 N applied in a rearward direction", - "parentRuleCode": "T.2.8.4", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.4.b", - "ruleContent": "300 N applied in a lateral or vertical direction", - "parentRuleCode": "T.2.8.4", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.5", - "ruleContent": "For all drivers, the Head Restraint must be located and adjusted where:", - "parentRuleCode": "T.2.8", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.5.a", - "ruleContent": "The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, with the driver in their normal driving position.", - "parentRuleCode": "T.2.8.5", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.5.b", - "ruleContent": "The contact point of the back of the driver’s helmet on the Head Restraint is no less than 50 mm from any edge of the Head Restraint. Approximately 100 mm of longitudinal adjustment should accommodate range of specified drivers. Several Head Restraints with different thicknesses may be used", - "parentRuleCode": "T.2.8.5", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.6", - "ruleContent": "The Head Restraint padding must:", - "parentRuleCode": "T.2.8", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.6.a", - "ruleContent": "Be an energy absorbing material that is one of the two: • Meets SFI Spec 45.2 • CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17", - "parentRuleCode": "T.2.8.6", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.6.b", - "ruleContent": "Have a minimum thickness of 38 mm", - "parentRuleCode": "T.2.8.6", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.6.c", - "ruleContent": "Have a minimum width of 15 cm Version 1.0 31 Aug 2024", - "parentRuleCode": "T.2.8.6", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.6.d", - "ruleContent": "Meet one of the two: • minimum area of 235 cm 2 AND minimum total height adjustment of 17.5 cm • minimum height of 28 cm", - "parentRuleCode": "T.2.8.6", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.8.6.e", - "ruleContent": "Be covered with a thin, flexible material that contains a ~20 mm diameter inspection hole in a surface other than the front surface", - "parentRuleCode": "T.2.8.6", - "pageNumber": "62" - }, - { - "ruleCode": "T.2.9", - "ruleContent": "Roll Bar Padding Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec 45.1 or FIA 8857-2001.", - "parentRuleCode": "T.2", - "pageNumber": "63" - }, - { - "ruleCode": "T.3", - "ruleContent": "BRAKES", - "parentRuleCode": "T", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1", - "ruleContent": "Brake System", - "parentRuleCode": "T.3", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.1", - "ruleContent": "The vehicle must have a Brake System", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.2", - "ruleContent": "The Brake System must:", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.2.a", - "ruleContent": "Act on all four wheels", - "parentRuleCode": "T.3.1.2", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.2.b", - "ruleContent": "Be operated by a single control", - "parentRuleCode": "T.3.1.2", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.2.c", - "ruleContent": "Be capable of locking all four wheels", - "parentRuleCode": "T.3.1.2", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.3", - "ruleContent": "The Brake System must have two independent hydraulic circuits A leak or failure at any point in the Brake System must maintain effective brake power on minimum two wheels", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.4", - "ruleContent": "Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM style reservoir", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.5", - "ruleContent": "A single brake acting on a limited slip differential may be used", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.6", - "ruleContent": "“Brake by Wire” systems are prohibited", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.7", - "ruleContent": "Unarmored plastic brake lines are prohibited", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.8", - "ruleContent": "The Brake System must be protected with scatter shields from failure of the drive train (see T.5.2) or from minor collisions.", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.9", - "ruleContent": "In side view any portion of the Brake System that is mounted on the sprung part of the vehicle must not project below the lower surface of the chassis", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.1.10", - "ruleContent": "Fasteners in the Brake System are Critical Fasteners, see T.8.2", - "parentRuleCode": "T.3.1", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.2", - "ruleContent": "Brake Pedal, Pedal Box and Mounting", - "parentRuleCode": "T.3", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.2.1", - "ruleContent": "The Brake Pedal must be one of: • Fabricated from steel or aluminum • Machined from steel, aluminum or titanium", - "parentRuleCode": "T.3.2", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.2.2", - "ruleContent": "The Brake Pedal and associated components design must withstand a minimum force of 2000 N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the pedal with the maximum force that can be exerted by any official when seated normally", - "parentRuleCode": "T.3.2", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.2.3", - "ruleContent": "Failure of non-loadbearing components in the Brake System or pedal box must not interfere with Brake Pedal operation or Brake System function Version 1.0 31 Aug 2024", - "parentRuleCode": "T.3.2", - "pageNumber": "63" - }, - { - "ruleCode": "T.3.2.4", - "ruleContent": "(EV only) Additional requirements for Electric Vehicles:", - "parentRuleCode": "T.3.2", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.2.4.a", - "ruleContent": "The first 90% of the Brake Pedal travel may be used to regenerate energy without actuating the hydraulic brake system", - "parentRuleCode": "T.3.2.4", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.2.4.b", - "ruleContent": "The remaining Brake Pedal travel must directly operate the hydraulic brake system. Brake energy regeneration may stay active", - "parentRuleCode": "T.3.2.4", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.3", - "ruleContent": "Brake Over Travel Switch - BOTS", - "parentRuleCode": "T.3", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.3.1", - "ruleContent": "The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the normal range will operate the switch", - "parentRuleCode": "T.3.3", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.3.2", - "ruleContent": "The BOTS must:", - "parentRuleCode": "T.3.3", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.3.2.a", - "ruleContent": "Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or flip type)", - "parentRuleCode": "T.3.3.2", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.3.2.b", - "ruleContent": "Hold if operated to the OFF position", - "parentRuleCode": "T.3.3.2", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.3.3", - "ruleContent": "Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2", - "parentRuleCode": "T.3.3", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.3.4", - "ruleContent": "The driver must not be able to reset the BOTS", - "parentRuleCode": "T.3.3", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.3.5", - "ruleContent": "The BOTS must be implemented with analog components, and not using programmable logic controllers, engine control units, or similar functioning digital controllers.", - "parentRuleCode": "T.3.3", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.4", - "ruleContent": "Brake Light", - "parentRuleCode": "T.3", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.4.1", - "ruleContent": "The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight.", - "parentRuleCode": "T.3.4", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.4.2", - "ruleContent": "The Brake Light must be:", - "parentRuleCode": "T.3.4", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.4.2.a", - "ruleContent": "Red in color on a Black background", - "parentRuleCode": "T.3.4.2", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.4.2.b", - "ruleContent": "Rectangular, triangular or near round shape with a minimum shining surface of 15 cm 2", - "parentRuleCode": "T.3.4.2", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.4.2.c", - "ruleContent": "Mounted between the wheel centerline and driver’s shoulder level vertically and approximately on vehicle centerline laterally.", - "parentRuleCode": "T.3.4.2", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.4.3", - "ruleContent": "When LED lights are used without a diffuser, they must not be more than 20 mm apart.", - "parentRuleCode": "T.3.4", - "pageNumber": "64" - }, - { - "ruleCode": "T.3.4.4", - "ruleContent": "If a single line of LEDs is used, the minimum length is 150 mm.", - "parentRuleCode": "T.3.4", - "pageNumber": "64" - }, - { - "ruleCode": "T.4", - "ruleContent": "ELECTRONIC THROTTLE COMPONENTS", - "parentRuleCode": "T", - "pageNumber": "64" - }, - { - "ruleCode": "T.4.1", - "ruleContent": "Applicability This section T.4 applies only for: • IC vehicles using Electronic Throttle Control (ETC) IC.4 • EV vehicles", - "parentRuleCode": "T.4", - "pageNumber": "64" - }, - { - "ruleCode": "T.4.2", - "ruleContent": "Accelerator Pedal Position Sensor - APPS", - "parentRuleCode": "T.4", - "pageNumber": "64" - }, - { - "ruleCode": "T.4.2.1", - "ruleContent": "The Accelerator Pedal must operate the APPS T.1.4.1", - "parentRuleCode": "T.4.2", - "pageNumber": "64" - }, - { - "ruleCode": "T.4.2.1.a", - "ruleContent": "Two springs must be used to return the foot pedal to 0% Pedal Travel", - "parentRuleCode": "T.4.2.1", - "pageNumber": "64" - }, - { - "ruleCode": "T.4.2.1.b", - "ruleContent": "Each spring must be capable of returning the pedal to 0% Pedal Travel with the other disconnected. The springs in the APPS are not acceptable pedal return springs.", - "parentRuleCode": "T.4.2.1", - "pageNumber": "64" - }, - { - "ruleCode": "T.4.2.2", - "ruleContent": "Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS with two completely separate sensors in a single housing is acceptable. Version 1.0 31 Aug 2024", - "parentRuleCode": "T.4.2", - "pageNumber": "64" - }, - { - "ruleCode": "T.4.2.3", - "ruleContent": "The APPS sensors must have different transfer functions which meet one of the two: • Each sensor has different gradients and/or offsets to the other(s). The circuit must have a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel • An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor configurations require prior approval. The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.4", - "ruleContent": "Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel require justification in the ETC Systems Form and may not be approved", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.5", - "ruleContent": "If an Implausibility occurs between the values of the APPSs and persists for more than 100 msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped completely. (EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping the power to the Motor(s) is sufficient.", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.6", - "ruleContent": "If three sensors are used, then in the case of an APPS failure, any two sensors that agree within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target and the 3rd APPS may be ignored.", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.7", - "ruleContent": "Each APPS must be able to be checked during Technical Inspection by having one of the two: • A separate detachable connector that enables a check of functions by unplugging it • An inline switchable breakout box available that allows disconnection of each APPS signal.", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.8", - "ruleContent": "The APPS signals must be sent directly to a controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay.", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.9", - "ruleContent": "Any failure of the APPS or APPS wiring must be detectable by the controller and must be treated like an Implausibility, see T.4.2.4 above", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.10", - "ruleContent": "When an analogue signal is used, the APPS will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.11", - "ruleContent": "When any kind of digital data transmission is used to transmit the APPS signal,", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.11.a", - "ruleContent": "The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works.", - "parentRuleCode": "T.4.2.11", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.11.b", - "ruleContent": "The failures to be considered must include but are not limited to the failure of the APPS, APPS signals being out of range, corruption of the message and loss of messages and the associated time outs.", - "parentRuleCode": "T.4.2.11", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.2.12", - "ruleContent": "The current rules are written to only apply to the APPS (pedal), but the integrity of the torque command signal is important in all stages.", - "parentRuleCode": "T.4.2", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.3", - "ruleContent": "Brake System Encoder - BSE", - "parentRuleCode": "T.4", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.3.1", - "ruleContent": "The vehicle must have a sensor or switch to measure brake pedal position or brake system pressure Version 1.0 31 Aug 2024", - "parentRuleCode": "T.4.3", - "pageNumber": "65" - }, - { - "ruleCode": "T.4.3.2", - "ruleContent": "The BSE must be able to be checked during Technical Inspection by having one of: • A separate detachable connector(s) for any BSE signal(s) to the main ECU without affecting any other connections • An inline switchable breakout box available that allows disconnection of each BSE signal(s) to the main ECU without affecting any other connections", - "parentRuleCode": "T.4.3", - "pageNumber": "66" - }, - { - "ruleCode": "T.4.3.3", - "ruleContent": "The BSE or switch signals must be sent directly to a controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) Motor(s) must be immediately stopped completely. (EV only) It is not necessary to completely deactivate the Tractive System, the motor controller(s) stopping power to the motor(s) is sufficient.", - "parentRuleCode": "T.4.3", - "pageNumber": "66" - }, - { - "ruleCode": "T.4.3.4", - "ruleContent": "When an analogue signal is used, the BSE sensors will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", - "parentRuleCode": "T.4.3", - "pageNumber": "66" - }, - { - "ruleCode": "T.4.3.5", - "ruleContent": "When any kind of digital data transmission is used to transmit the BSE signal:", - "parentRuleCode": "T.4.3", - "pageNumber": "66" - }, - { - "ruleCode": "T.4.3.5.a", - "ruleContent": "The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works.", - "parentRuleCode": "T.4.3.5", - "pageNumber": "66" - }, - { - "ruleCode": "T.4.3.5.b", - "ruleContent": "The failures modes must include but are not limited to the failure of the sensor, sensor signals being out of range, corruption of the message and loss of messages and the associated time outs.", - "parentRuleCode": "T.4.3.5", - "pageNumber": "66" - }, - { - "ruleCode": "T.4.3.5.c", - "ruleContent": "In all cases a sensor failure must immediately shutdown power to the motor(s).", - "parentRuleCode": "T.4.3.5", - "pageNumber": "66" - }, - { - "ruleCode": "T.5", - "ruleContent": "POWERTRAIN", - "parentRuleCode": "T", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.1", - "ruleContent": "Transmission and Drive Any transmission and drivetrain may be used.", - "parentRuleCode": "T.5", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.2", - "ruleContent": "Drivetrain Shields and Guards", - "parentRuleCode": "T.5", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.2.1", - "ruleContent": "Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions (CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case of radial failure", - "parentRuleCode": "T.5.2", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.2.2", - "ruleContent": "The final drivetrain shield must:", - "parentRuleCode": "T.5.2", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.2.2.a", - "ruleContent": "Be made with solid material (not perforated)", - "parentRuleCode": "T.5.2.2", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.2.2.b", - "ruleContent": "Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt or pulley", - "parentRuleCode": "T.5.2.2", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.2.2.c", - "ruleContent": "Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: Version 1.0 31 Aug 2024", - "parentRuleCode": "T.5.2.2", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.2.2.d", - "ruleContent": "Cover the bottom of the chain or belt or rotating component when fuel, brake lines T.3.1.8, control, pressurized, electrical components are located below", - "parentRuleCode": "T.5.2.2", - "pageNumber": "66" - }, - { - "ruleCode": "T.5.2.3", - "ruleContent": "Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8", - "parentRuleCode": "T.5.2", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.4", - "ruleContent": "Frame Members or existing components that exceed the scatter shield material requirements may be used as part of the shield.", - "parentRuleCode": "T.5.2", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.5", - "ruleContent": "Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm)", - "parentRuleCode": "T.5.2", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.6", - "ruleContent": "If equipped, the engine drive sprocket cover may be used as part of the scatter shield system.", - "parentRuleCode": "T.5.2", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.7", - "ruleContent": "Chain Drive - Scatter shields for chains must:", - "parentRuleCode": "T.5.2", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.7.a", - "ruleContent": "Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed)", - "parentRuleCode": "T.5.2.7", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.7.b", - "ruleContent": "Have a minimum width equal to three times the width of the chain", - "parentRuleCode": "T.5.2.7", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.7.c", - "ruleContent": "Be centered on the center line of the chain", - "parentRuleCode": "T.5.2.7", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.7.d", - "ruleContent": "Stay aligned with the chain under all conditions", - "parentRuleCode": "T.5.2.7", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.8", - "ruleContent": "Non-metallic Belt Drive - Scatter shields for belts must:", - "parentRuleCode": "T.5.2", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.8.a", - "ruleContent": "Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6", - "parentRuleCode": "T.5.2.8", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.8.b", - "ruleContent": "Have a minimum width that is equal to 1.7 times the width of the belt.", - "parentRuleCode": "T.5.2.8", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.8.c", - "ruleContent": "Be centered on the center line of the belt", - "parentRuleCode": "T.5.2.8", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.8.d", - "ruleContent": "Stay aligned with the belt under all conditions", - "parentRuleCode": "T.5.2.8", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.9", - "ruleContent": "Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or 1/4” minimum diameter Critical Fasteners, see T.8.2", - "parentRuleCode": "T.5.2", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.10", - "ruleContent": "Finger Guards", - "parentRuleCode": "T.5.2", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.10.a", - "ruleContent": "Must cover any drivetrain parts that spin while the vehicle is stationary with the engine running.", - "parentRuleCode": "T.5.2.10", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.10.b", - "ruleContent": "Must be made of material sufficient to resist finger forces.", - "parentRuleCode": "T.5.2.10", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.2.10.c", - "ruleContent": "Mesh or perforated material may be used but must prevent the passage of a 12 mm diameter object through the guard.", - "parentRuleCode": "T.5.2.10", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.3", - "ruleContent": "Motor Protection (EV Only)", - "parentRuleCode": "T.5", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.3.1", - "ruleContent": "The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. The motor casing may be the original motor casing, a team built motor casing or the original casing with additional material added to achieve the minimum required thickness. • Minimum thickness for aluminum alloy 6061-T6: 3.0 mm If lower grade aluminum alloy is used, then the material must be thicker to provide an equivalent strength. • Minimum thickness for steel: 2.0 mm", - "parentRuleCode": "T.5.3", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.3.2", - "ruleContent": "A Scatter Shield must be included around the Motor(s) when one or the two: • The motor casing rotates around the stator • The motor case is perforated", - "parentRuleCode": "T.5.3", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.3.3", - "ruleContent": "The Motor Scatter Shield must be: • Made from aluminum alloy 6061-T6 or steel • Minimum thickness: 1.0 mm Version 1.0 31 Aug 2024", - "parentRuleCode": "T.5.3", - "pageNumber": "67" - }, - { - "ruleCode": "T.5.4", - "ruleContent": "Coolant Fluid", - "parentRuleCode": "T.5", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.4.1", - "ruleContent": "Water cooled engines must use only plain water with no additives of any kind", - "parentRuleCode": "T.5.4", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.4.2", - "ruleContent": "Liquid coolant for electric motors, Accumulators or HV electronics must be one of: • plain water with no additives • oil", - "parentRuleCode": "T.5.4", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.4.3", - "ruleContent": "(EV only) Liquid coolant must not directly touch the cells in the Accumulator", - "parentRuleCode": "T.5.4", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5", - "ruleContent": "System Sealing", - "parentRuleCode": "T.5", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5.1", - "ruleContent": "Any cooling or lubrication system must be sealed to prevent leakage", - "parentRuleCode": "T.5.5", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5.2", - "ruleContent": "The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type.", - "parentRuleCode": "T.5.5", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5.3", - "ruleContent": "Flammable liquid and vapors or other leaks must not collect or contact the driver", - "parentRuleCode": "T.5.5", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5.4", - "ruleContent": "Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at the locations:", - "parentRuleCode": "T.5.5", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5.4.a", - "ruleContent": "The lowest point of the chassis", - "parentRuleCode": "T.5.5.4", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5.4.b", - "ruleContent": "Rearward of the driver position, forward of a fuel tank or other liquid source", - "parentRuleCode": "T.5.5.4", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5.4.c", - "ruleContent": "If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is necessary", - "parentRuleCode": "T.5.5.4", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.5.5", - "ruleContent": "Absorbent material and open collection devices (regardless of material) are prohibited in compartments containing engine, drivetrain, exhaust and fuel systems below the highest point on the exhaust system.", - "parentRuleCode": "T.5.5", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6", - "ruleContent": "Catch Cans", - "parentRuleCode": "T.5", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6.1", - "ruleContent": "The vehicle must have separate containers (catch cans) to retain fluids from any vents from the powertrain systems.", - "parentRuleCode": "T.5.6", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6.2", - "ruleContent": "Catch cans must be:", - "parentRuleCode": "T.5.6", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6.2.a", - "ruleContent": "Capable of containing boiling water without deformation", - "parentRuleCode": "T.5.6.2", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6.2.b", - "ruleContent": "Located rearwards of the Firewall below the driver’s shoulder level", - "parentRuleCode": "T.5.6.2", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6.2.c", - "ruleContent": "Positively retained, using no tie wraps or tape", - "parentRuleCode": "T.5.6.2", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6.3", - "ruleContent": "Catch cans for the engine coolant system and engine lubrication system must have a minimum capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher", - "parentRuleCode": "T.5.6", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6.4", - "ruleContent": "Catch cans for any vent on other systems containing liquid lubricant or coolant, including a differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid being contained or 0.5 liter, whichever is higher", - "parentRuleCode": "T.5.6", - "pageNumber": "68" - }, - { - "ruleCode": "T.5.6.5", - "ruleContent": "Any catch can on the cooling system must vent through a hose with a minimum internal diameter of 3 mm down to the bottom levels of the Chassis.", - "parentRuleCode": "T.5.6", - "pageNumber": "68" - }, - { - "ruleCode": "T.6", - "ruleContent": "PRESSURIZED SYSTEMS", - "parentRuleCode": "T", - "pageNumber": "68" - }, - { - "ruleCode": "T.6.1", - "ruleContent": "Compressed Gas Cylinders and Lines Any system on the vehicle that uses a compressed gas as an actuating medium must meet:", - "parentRuleCode": "T.6", - "pageNumber": "68" - }, - { - "ruleCode": "T.6.1.1", - "ruleContent": "Working Gas - The working gas must be non flammable Version 1.0 31 Aug 2024", - "parentRuleCode": "T.6.1", - "pageNumber": "68" - }, - { - "ruleCode": "T.6.1.2", - "ruleContent": "Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed and built for the pressure being used, certified by an accredited testing laboratory in the country of its origin, and labeled or stamped appropriately.", - "parentRuleCode": "T.6.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.3", - "ruleContent": "Pressure Regulation - The pressure regulator must be mounted directly onto the gas cylinder/tank", - "parentRuleCode": "T.6.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.4", - "ruleContent": "Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible operating pressure of the system.", - "parentRuleCode": "T.6.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.5", - "ruleContent": "Insulation - The gas cylinder/tank must be insulated from any heat sources", - "parentRuleCode": "T.6.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.6", - "ruleContent": "Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system must meet one of the two: • Made from metal • Meet the thermal protection requirements of T.1.6.3", - "parentRuleCode": "T.6.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.7", - "ruleContent": "Cylinder Location - The gas cylinder/tank and the pressure regulator must be:", - "parentRuleCode": "T.6.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.7.a", - "ruleContent": "Securely mounted inside the Chassis", - "parentRuleCode": "T.6.1.7", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.7.b", - "ruleContent": "Located outside of the Cockpit", - "parentRuleCode": "T.6.1.7", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.7.c", - "ruleContent": "In a position below the height of the Shoulder Belt Mount T.2.6", - "parentRuleCode": "T.6.1.7", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.7.d", - "ruleContent": "Aligned so the axis of the gas cylinder/tank does not point at the driver", - "parentRuleCode": "T.6.1.7", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.8", - "ruleContent": "Protection – The gas cylinder/tank and lines must be protected from rollover, collision from any direction, or damage resulting from the failure of rotating equipment", - "parentRuleCode": "T.6.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.1.9", - "ruleContent": "The driver must be protected from failure of the cylinder/tank and regulator", - "parentRuleCode": "T.6.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.2", - "ruleContent": "High Pressure Hydraulic Pumps and Lines This section T.6.2 does not apply to Brake lines or hydraulic clutch lines", - "parentRuleCode": "T.6", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.2.1", - "ruleContent": "The driver and anyone standing outside the vehicle must be shielded from any hydraulic pumps and lines with line pressures of 2100 kPa or higher.", - "parentRuleCode": "T.6.2", - "pageNumber": "69" - }, - { - "ruleCode": "T.6.2.2", - "ruleContent": "The shields must be steel or aluminum with a minimum thickness of 1 mm.", - "parentRuleCode": "T.6.2", - "pageNumber": "69" - }, - { - "ruleCode": "T.7", - "ruleContent": "BODYWORK AND AERODYNAMIC DEVICES", - "parentRuleCode": "T", - "pageNumber": "69" - }, - { - "ruleCode": "T.7.1", - "ruleContent": "Aerodynamic Devices", - "parentRuleCode": "T.7", - "pageNumber": "69" - }, - { - "ruleCode": "T.7.1.1", - "ruleContent": "Aerodynamic Device A part on the vehicle which guides airflow for purposes including generation of downforce and/or change of drag. Examples include but are not limited to: wings, undertray, splitter, endplates, vanes", - "parentRuleCode": "T.7.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.7.1.2", - "ruleContent": "No power device may be used to move or remove air from under the vehicle. Power ground effects are strictly prohibited.", - "parentRuleCode": "T.7.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.7.1.3", - "ruleContent": "All Aerodynamic Devices must meet:", - "parentRuleCode": "T.7.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.7.1.3.a", - "ruleContent": "The mounting system provides sufficient rigidity in the static condition", - "parentRuleCode": "T.7.1.3", - "pageNumber": "69" - }, - { - "ruleCode": "T.7.1.3.b", - "ruleContent": "The Aerodynamic Devices do not oscillate or move excessively when the vehicle is moving. Refer to IN.8.2", - "parentRuleCode": "T.7.1.3", - "pageNumber": "69" - }, - { - "ruleCode": "T.7.1.4", - "ruleContent": "All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. Version 1.0 31 Aug 2024 This may be the radius of the edges themselves, or additional permanently attached pieces designed to meet this requirement.", - "parentRuleCode": "T.7.1", - "pageNumber": "69" - }, - { - "ruleCode": "T.7.1.5", - "ruleContent": "Other edges that a person may touch must not be sharp", - "parentRuleCode": "T.7.1", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.2", - "ruleContent": "Bodywork", - "parentRuleCode": "T.7", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.2.1", - "ruleContent": "Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device", - "parentRuleCode": "T.7.2", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.2.2", - "ruleContent": "Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic Device if is designed to, or may possibly, produce force due to aerodynamic effects", - "parentRuleCode": "T.7.2", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.2.3", - "ruleContent": "Bodywork must not contain openings into the cockpit from the front of the vehicle back to the Main Hoop or Firewall. The cockpit opening and minimal openings around the front suspension components are allowed.", - "parentRuleCode": "T.7.2", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.2.4", - "ruleContent": "All forward facing edges on the Bodywork that could contact people, including the nose, must have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more relative to the forward direction, along the top, sides and bottom of all affected edges.", - "parentRuleCode": "T.7.2", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.3", - "ruleContent": "Measurement", - "parentRuleCode": "T.7", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.3.1", - "ruleContent": "All Aerodynamic Device limitations are measured:", - "parentRuleCode": "T.7.3", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.3.1.a", - "ruleContent": "With the wheels pointing in the straight ahead position", - "parentRuleCode": "T.7.3.1", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.3.1.b", - "ruleContent": "Without a driver in the vehicle The intent is to standardize the measurement, see GR.6.4.1", - "parentRuleCode": "T.7.3.1", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.3.2", - "ruleContent": "Head Restraint Plane A transverse vertical plane through the rearmost portion of the front face of the driver head restraint support, excluding any padding, set (if adjustable) in its fully rearward position", - "parentRuleCode": "T.7.3", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.3.3", - "ruleContent": "Rear Aerodynamic Zone The volume that is: • Rearward of the Head Restraint Plane • Inboard of two vertical planes parallel to the centerline of the chassis touching the inside of the rear tires at the height of the hub centerline", - "parentRuleCode": "T.7.3", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.4", - "ruleContent": "Location Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1", - "parentRuleCode": "T.7", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.5", - "ruleContent": "Length In plan view, any part of any Aerodynamic Device must be:", - "parentRuleCode": "T.7", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.5.a", - "ruleContent": "No more than 700 mm forward of the fronts of the front tires", - "parentRuleCode": "T.7.5", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.5.b", - "ruleContent": "No more than 250 mm rearward of the rear of the rear tires", - "parentRuleCode": "T.7.5", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.6", - "ruleContent": "Width In plan view, any part of any Aerodynamic Device must be:", - "parentRuleCode": "T.7", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.6.1", - "ruleContent": "When forward of the centerline of the front wheel axles: Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of the front tires at the height of the hubs.", - "parentRuleCode": "T.7.6", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.6.2", - "ruleContent": "When between the centerlines of the front and rear wheel axles: Version 1.0 31 Aug 2024 Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height of the wheel centers", - "parentRuleCode": "T.7.6", - "pageNumber": "70" - }, - { - "ruleCode": "T.7.6.3", - "ruleContent": "When rearward of the centerline of the rear wheel axles: In the Rear Aerodynamic Zone", - "parentRuleCode": "T.7.6", - "pageNumber": "71" - }, - { - "ruleCode": "T.7.7", - "ruleContent": "Height", - "parentRuleCode": "T.7", - "pageNumber": "71" - }, - { - "ruleCode": "T.7.7.1", - "ruleContent": "Any part of any Aerodynamic Device that is located:", - "parentRuleCode": "T.7.7", - "pageNumber": "71" - }, - { - "ruleCode": "T.7.7.1.a", - "ruleContent": "In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground", - "parentRuleCode": "T.7.7.1", - "pageNumber": "71" - }, - { - "ruleCode": "T.7.7.1.b", - "ruleContent": "Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the ground", - "parentRuleCode": "T.7.7.1", - "pageNumber": "71" - }, - { - "ruleCode": "T.7.7.1.c", - "ruleContent": "Forward of the centerline of the front wheel axles and outboard of two vertical planes parallel to the centerline of the chassis touching the inside of the front tires at the height of the hubs must be no higher than 250 mm above the ground", - "parentRuleCode": "T.7.7.1", - "pageNumber": "71" - }, - { - "ruleCode": "T.7.7.2", - "ruleContent": "Bodywork height is not restricted when the Bodywork is located: • Between the transverse vertical planes positioned at the front and rear axle centerlines • Inside two vertical fore and aft planes 400 mm outboard from the centerline on each side of the vehicle", - "parentRuleCode": "T.7.7", - "pageNumber": "71" - }, - { - "ruleCode": "T.8", - "ruleContent": "FASTENERS", - "parentRuleCode": "T", - "pageNumber": "71" - }, - { - "ruleCode": "T.8.1", - "ruleContent": "Critical Fasteners A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule", - "parentRuleCode": "T.8", - "pageNumber": "71" - }, - { - "ruleCode": "T.8.2", - "ruleContent": "Critical Fastener Requirements", - "parentRuleCode": "T.8", - "pageNumber": "71" - }, - { - "ruleCode": "T.8.2.1", - "ruleContent": "Any Critical Fastener must meet, at minimum, one of these:", - "parentRuleCode": "T.8.2", - "pageNumber": "71" - }, - { - "ruleCode": "T.8.2.1.a", - "ruleContent": "SAE Grade 5", - "parentRuleCode": "T.8.2.1", - "pageNumber": "71" - }, - { - "ruleCode": "T.8.2.1.b", - "ruleContent": "Metric Class 8.8", - "parentRuleCode": "T.8.2.1", - "pageNumber": "71" - }, - { - "ruleCode": "T.8.2.1.c", - "ruleContent": "AN/MS Specifications Version 1.0 31 Aug 2024", - "parentRuleCode": "T.8.2.1", - "pageNumber": "71" - }, - { - "ruleCode": "T.8.2.1.d", - "ruleContent": "Equivalent to or better than above, as approved by a Rules Question or at Technical Inspection", - "parentRuleCode": "T.8.2.1", - "pageNumber": "71" - }, - { - "ruleCode": "T.8.2.2", - "ruleContent": "All threaded Critical Fasteners must be one of the two: • Hex head • Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts)", - "parentRuleCode": "T.8.2", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.2.3", - "ruleContent": "All Critical Fasteners must be secured from unintentional loosening with Positive Locking Mechanisms see T.8.3", - "parentRuleCode": "T.8.2", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.2.4", - "ruleContent": "A minimum of two full threads must project from any lock nut.", - "parentRuleCode": "T.8.2", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.2.5", - "ruleContent": "Some Critical Fastener applications have additional requirements that are provided in the applicable section.", - "parentRuleCode": "T.8.2", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3", - "ruleContent": "Positive Locking Mechanisms", - "parentRuleCode": "T.8", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.1", - "ruleContent": "Positive Locking Mechanisms are defined as those which:", - "parentRuleCode": "T.8.3", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.1.a", - "ruleContent": "Technical Inspectors / team members can see that the device/system is in place (visible).", - "parentRuleCode": "T.8.3.1", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.1.b", - "ruleContent": "Do not rely on the clamping force to apply the locking or anti vibration feature. Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming completely loose", - "parentRuleCode": "T.8.3.1", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.2", - "ruleContent": "Examples of acceptable Positive Locking Mechanisms include, but are not limited to:", - "parentRuleCode": "T.8.3", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.2.a", - "ruleContent": "Correctly installed safety wiring", - "parentRuleCode": "T.8.3.2", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.2.b", - "ruleContent": "Cotter pins", - "parentRuleCode": "T.8.3.2", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.2.c", - "ruleContent": "Nylon lock nuts (where temperature does not exceed 80°C)", - "parentRuleCode": "T.8.3.2", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.2.d", - "ruleContent": "Prevailing torque lock nuts Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT meet the positive locking requirement", - "parentRuleCode": "T.8.3.2", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.3", - "ruleContent": "If the Positive Locking Mechanism is by prevailing torque lock nuts:", - "parentRuleCode": "T.8.3", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.3.a", - "ruleContent": "Locking fasteners must be in as new condition", - "parentRuleCode": "T.8.3.3", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.3.3.b", - "ruleContent": "A supply of replacement fasteners must be presented in Technical Inspection, including any attachment method", - "parentRuleCode": "T.8.3.3", - "pageNumber": "72" - }, - { - "ruleCode": "T.8.4", - "ruleContent": "Requirements for All Fasteners Adjustable tie rod ends must be constrained with a jam nut to prevent loosening.", - "parentRuleCode": "T.8", - "pageNumber": "72" - }, - { - "ruleCode": "T.9", - "ruleContent": "ELECTRICAL EQUIPMENT", - "parentRuleCode": "T", - "pageNumber": "72" - }, - { - "ruleCode": "T.9.1", - "ruleContent": "Definitions", - "parentRuleCode": "T.9", - "pageNumber": "72" - }, - { - "ruleCode": "T.9.1.1", - "ruleContent": "High Voltage – HV Any voltage more than 60 V DC or 25 V AC RMS", - "parentRuleCode": "T.9.1", - "pageNumber": "72" - }, - { - "ruleCode": "T.9.1.2", - "ruleContent": "Low Voltage - LV Any voltage less than and including 60 V DC or 25 V AC RMS", - "parentRuleCode": "T.9.1", - "pageNumber": "72" - }, - { - "ruleCode": "T.9.1.3", - "ruleContent": "Normally Open A type of electrical relay or contactor that allows current flow only in the energized state Version 1.0 31 Aug 2024", - "parentRuleCode": "T.9.1", - "pageNumber": "72" - }, - { - "ruleCode": "T.9.2", - "ruleContent": "Low Voltage Batteries", - "parentRuleCode": "T.9", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.2.1", - "ruleContent": "All Low Voltage Batteries and onboard power supplies must be securely mounted inside the Chassis below the height of the Shoulder Belt Mount T.2.6", - "parentRuleCode": "T.9.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.2.2", - "ruleContent": "All Low Voltage batteries must have Overcurrent Protection that trips at or below the maximum specified discharge current of the cells", - "parentRuleCode": "T.9.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.2.3", - "ruleContent": "The hot (ungrounded) terminal must be insulated.", - "parentRuleCode": "T.9.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.2.4", - "ruleContent": "Any wet cell battery located in the driver compartment must be enclosed in a nonconductive marine type container or equivalent.", - "parentRuleCode": "T.9.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.2.5", - "ruleContent": "Batteries or battery packs based on lithium chemistry must meet one of the two:", - "parentRuleCode": "T.9.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.2.5.a", - "ruleContent": "Have a rigid, sturdy casing made from Nonflammable Material", - "parentRuleCode": "T.9.2.5", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.2.5.b", - "ruleContent": "A commercially available battery designed as an OEM style replacement", - "parentRuleCode": "T.9.2.5", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.2.6", - "ruleContent": "All batteries using chemistries other than lead acid must be presented at Technical Inspection with markings identifying it for comparison to a datasheet or other documentation proving the pack and supporting electronics meet all rules requirements", - "parentRuleCode": "T.9.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3", - "ruleContent": "Master Switches Each Master Switch ( IC.9.3 / EV.7.9 ) must meet:", - "parentRuleCode": "T.9", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.1", - "ruleContent": "Location", - "parentRuleCode": "T.9.3", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.1.a", - "ruleContent": "On the driver’s right hand side of the vehicle", - "parentRuleCode": "T.9.3.1", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.1.b", - "ruleContent": "In proximity to the Main Hoop", - "parentRuleCode": "T.9.3.1", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.1.c", - "ruleContent": "At the driver's shoulder height", - "parentRuleCode": "T.9.3.1", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.1.d", - "ruleContent": "Able to be easily operated from outside the vehicle", - "parentRuleCode": "T.9.3.1", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.2", - "ruleContent": "Characteristics", - "parentRuleCode": "T.9.3", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.2.a", - "ruleContent": "Be of the rotary mechanical type", - "parentRuleCode": "T.9.3.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.2.b", - "ruleContent": "Be rigidly mounted to the vehicle and must not be removed during maintenance", - "parentRuleCode": "T.9.3.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.2.c", - "ruleContent": "Mounted where the rotary axis of the key is near horizontal and across the vehicle", - "parentRuleCode": "T.9.3.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.2.d", - "ruleContent": "The ON position must be in the horizontal position and must be marked accordingly", - "parentRuleCode": "T.9.3.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.2.e", - "ruleContent": "The OFF position must be clearly marked", - "parentRuleCode": "T.9.3.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.3.2.f", - "ruleContent": "(EV Only) Operated with a red removable key that must only be removable in the electrically open position", - "parentRuleCode": "T.9.3.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.4", - "ruleContent": "Inertia Switch", - "parentRuleCode": "T.9", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.4.1", - "ruleContent": "Inertia Switch Requirement • (EV) Must have an Inertia Switch • (IC) Should have an Inertia Switch", - "parentRuleCode": "T.9.4", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.4.2", - "ruleContent": "The Inertia Switch must be:", - "parentRuleCode": "T.9.4", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.4.2.a", - "ruleContent": "A Sensata Resettable Crash Sensor or equivalent", - "parentRuleCode": "T.9.4.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.4.2.b", - "ruleContent": "Mechanically and rigidly attached to the vehicle", - "parentRuleCode": "T.9.4.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.4.2.c", - "ruleContent": "Removable to test functionality Version 1.0 31 Aug 2024", - "parentRuleCode": "T.9.4.2", - "pageNumber": "73" - }, - { - "ruleCode": "T.9.4.3", - "ruleContent": "Inertia Switch operation:", - "parentRuleCode": "T.9.4", - "pageNumber": "74" - }, - { - "ruleCode": "T.9.4.3.a", - "ruleContent": "Must trigger due to a longitudinal impact load which decelerates the vehicle at between 8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the Sensata device)", - "parentRuleCode": "T.9.4.3", - "pageNumber": "74" - }, - { - "ruleCode": "T.9.4.3.b", - "ruleContent": "Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered", - "parentRuleCode": "T.9.4.3", - "pageNumber": "74" - }, - { - "ruleCode": "T.9.4.3.c", - "ruleContent": "Must latch until manually reset", - "parentRuleCode": "T.9.4.3", - "pageNumber": "74" - }, - { - "ruleCode": "T.9.4.3.d", - "ruleContent": "May be reset by the driver from inside the driver's cell Version 1.0 31 Aug 2024", - "parentRuleCode": "T.9.4.3", - "pageNumber": "74" - }, - { - "ruleCode": "VE", - "ruleContent": "VEHICLE AND DRIVER EQUIPMENT", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1", - "ruleContent": "VEHICLE IDENTIFICATION", - "parentRuleCode": "VE", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1", - "ruleContent": "Vehicle Number", - "parentRuleCode": "VE.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1", - "ruleContent": "The assigned vehicle number must appear on the vehicle as follows:", - "parentRuleCode": "VE.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1.a", - "ruleContent": "Locations: in three places, on the front of the chassis and the left and right sides", - "parentRuleCode": "VE.1.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1.b", - "ruleContent": "Height: 150 mm minimum", - "parentRuleCode": "VE.1.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1.c", - "ruleContent": "Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive numbers)", - "parentRuleCode": "VE.1.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1.d", - "ruleContent": "Stroke Width and Spacing between numbers: 18 mm minimum", - "parentRuleCode": "VE.1.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1.e", - "ruleContent": "Color: White numbers on a black background OR black numbers on a white background", - "parentRuleCode": "VE.1.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1.f", - "ruleContent": "Background: round, oval, square or rectangular", - "parentRuleCode": "VE.1.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1.g", - "ruleContent": "Spacing: 25 mm minimum between the edge of the numbers and the edge of the background", - "parentRuleCode": "VE.1.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.1.h", - "ruleContent": "The numbers must not be obscured by parts of the vehicle", - "parentRuleCode": "VE.1.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.1.2", - "ruleContent": "Additional letters or numerals must not show before or after the vehicle number", - "parentRuleCode": "VE.1.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.2", - "ruleContent": "School Name Each vehicle must clearly display the school name.", - "parentRuleCode": "VE.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.2.a", - "ruleContent": "Abbreviations are allowed if unique and generally recognized", - "parentRuleCode": "VE.1.2", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.2.b", - "ruleContent": "The name must be in Roman characters minimum 50 mm high on the left and right sides of the vehicle.", - "parentRuleCode": "VE.1.2", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.2.c", - "ruleContent": "The characters must be put on a high contrast background in an easily visible location", - "parentRuleCode": "VE.1.2", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.2.d", - "ruleContent": "The school name may also appear in non Roman characters, but the Roman character version must be uppermost on the sides.", - "parentRuleCode": "VE.1.2", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.3", - "ruleContent": "SAE Logo The SAE International Logo must be displayed on the front and/or the left and right sides of the vehicle in a prominent location.", - "parentRuleCode": "VE.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.4", - "ruleContent": "Inspection Sticker The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: • A clear and unobstructed area, minimum 25 cm wide x 20 cm high • Located on the upper front surface of the nose along the vehicle centerline", - "parentRuleCode": "VE.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.5", - "ruleContent": "Transponder / RFID Tag", - "parentRuleCode": "VE.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.5.1", - "ruleContent": "Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the specified type(s)", - "parentRuleCode": "VE.1.5", - "pageNumber": "75" - }, - { - "ruleCode": "VE.1.5.2", - "ruleContent": "Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information and mounting details", - "parentRuleCode": "VE.1.5", - "pageNumber": "75" - }, - { - "ruleCode": "VE.2", - "ruleContent": "VEHICLE EQUIPMENT", - "parentRuleCode": "VE", - "pageNumber": "75" - }, - { - "ruleCode": "VE.2.1", - "ruleContent": "Jacking Point", - "parentRuleCode": "VE.2", - "pageNumber": "75" - }, - { - "ruleCode": "VE.2.1.1", - "ruleContent": "A Jacking Point must be provided at the rear of the vehicle Version 1.0 31 Aug 2024", - "parentRuleCode": "VE.2.1", - "pageNumber": "75" - }, - { - "ruleCode": "VE.2.1.2", - "ruleContent": "The Jacking Point must be:", - "parentRuleCode": "VE.2.1", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.a", - "ruleContent": "Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the FSAE Online website", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.b", - "ruleContent": "Visible to a person standing 1 m behind the vehicle", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.c", - "ruleContent": "Color: Orange", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.d", - "ruleContent": "Oriented laterally and perpendicular to the centerline of the vehicle", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.e", - "ruleContent": "Made from round, 25 - 30 mm OD aluminum or steel tube", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.f", - "ruleContent": "Exposed around the lower 180° of its circumference over a minimum length of 280 mm", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.g", - "ruleContent": "Access from the rear of the tube must be unobstructed for 300 mm or more of its length", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.h", - "ruleContent": "The height of the tube must allow 75 mm minimum clearance from the bottom of the tube to the ground", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.1.2.i", - "ruleContent": "When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the wheels do not touch the ground when they are in full rebound", - "parentRuleCode": "VE.2.1.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.2", - "ruleContent": "Push Bar Each vehicle must have a removable device which attaches to the rear of the vehicle that:", - "parentRuleCode": "VE.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.2.a", - "ruleContent": "Allows two people, standing erect behind the vehicle, to push the vehicle around the competition site", - "parentRuleCode": "VE.2.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.2.b", - "ruleContent": "Is capable of slowing and stopping the forward motion of the vehicle and pulling it rearwards", - "parentRuleCode": "VE.2.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3", - "ruleContent": "Fire Extinguisher", - "parentRuleCode": "VE.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.1", - "ruleContent": "Each team must have two or more fire extinguishers.", - "parentRuleCode": "VE.2.3", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.1.a", - "ruleContent": "One extinguisher must readily be available in the team’s paddock area", - "parentRuleCode": "VE.2.3.1", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.1.b", - "ruleContent": "One extinguisher must accompany the vehicle when moved using the Push Bar A commercially available on board fire system may be used instead of the fire extinguisher that accompanies the vehicle", - "parentRuleCode": "VE.2.3.1", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.2", - "ruleContent": "Hand held fire extinguishers must NOT be mounted on or in the vehicle", - "parentRuleCode": "VE.2.3", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.3", - "ruleContent": "Each fire extinguisher must meet these:", - "parentRuleCode": "VE.2.3", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.3.a", - "ruleContent": "Capacity: 0.9 kg (2 lbs)", - "parentRuleCode": "VE.2.3.3", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.3.b", - "ruleContent": "Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and Halon extinguishers and systems are prohibited.", - "parentRuleCode": "VE.2.3.3", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.3.c", - "ruleContent": "Equipped with a manufacturer installed pressure/charge gauge.", - "parentRuleCode": "VE.2.3.3", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.3.d", - "ruleContent": "Minimum acceptable ratings: • USA, Canada & Brazil: 10BC or 1A 10BC • Europe: 34B or 5A 34B • Australia: 20BE or 1A 10BE", - "parentRuleCode": "VE.2.3.3", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.3.3.e", - "ruleContent": "Extinguishers of larger capacity (higher numerical ratings) are acceptable.", - "parentRuleCode": "VE.2.3.3", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.4", - "ruleContent": "Electrical Equipment (EV Only) These items must accompany the vehicle at all times: • Two pairs of High Voltage insulating gloves Version 1.0 31 Aug 2024 • A multimeter", - "parentRuleCode": "VE.2", - "pageNumber": "76" - }, - { - "ruleCode": "VE.2.5", - "ruleContent": "Camera Mounts", - "parentRuleCode": "VE.2", - "pageNumber": "77" - }, - { - "ruleCode": "VE.2.5.1", - "ruleContent": "The mounts for video/photographic cameras must be of a safe and secure design.", - "parentRuleCode": "VE.2.5", - "pageNumber": "77" - }, - { - "ruleCode": "VE.2.5.2", - "ruleContent": "All camera installations must be approved at Technical Inspection.", - "parentRuleCode": "VE.2.5", - "pageNumber": "77" - }, - { - "ruleCode": "VE.2.5.3", - "ruleContent": "Helmet mounted cameras and helmet camera mounts are prohibited.", - "parentRuleCode": "VE.2.5", - "pageNumber": "77" - }, - { - "ruleCode": "VE.2.5.4", - "ruleContent": "The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a minimum of two points on different sides of the camera body.", - "parentRuleCode": "VE.2.5", - "pageNumber": "77" - }, - { - "ruleCode": "VE.2.5.5", - "ruleContent": "If a tether is used to restrain the camera, the tether length must be limited to prevent contact with the driver.", - "parentRuleCode": "VE.2.5", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3", - "ruleContent": "DRIVER EQUIPMENT", - "parentRuleCode": "VE", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.1", - "ruleContent": "General", - "parentRuleCode": "VE.3", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.1.1", - "ruleContent": "Any Driver Equipment:", - "parentRuleCode": "VE.3.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.1.1.a", - "ruleContent": "Must be in good condition with no tears, rips, open seams, areas of significant wear, abrasions or stains which might compromise performance.", - "parentRuleCode": "VE.3.1.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.1.1.b", - "ruleContent": "Must fit properly", - "parentRuleCode": "VE.3.1.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.1.1.c", - "ruleContent": "May be inspected at any time", - "parentRuleCode": "VE.3.1.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.1.2", - "ruleContent": "Flame Resistant Material For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, Polybenzimidazole (common name PBI) and Proban.", - "parentRuleCode": "VE.3.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.1.3", - "ruleContent": "Synthetic Material – Prohibited Shirts, socks or other undergarments (not to be confused with flame resistant underwear) made from nylon or any other synthetic material which could melt when exposed to high heat are prohibited.", - "parentRuleCode": "VE.3.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.1.4", - "ruleContent": "Officials may impound any non approved Driver Equipment until the end of the competition.", - "parentRuleCode": "VE.3.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2", - "ruleContent": "Helmet", - "parentRuleCode": "VE.3", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.1", - "ruleContent": "The driver must wear a helmet which:", - "parentRuleCode": "VE.3.2", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.1.a", - "ruleContent": "Is closed face with an integral, immovable chin guard", - "parentRuleCode": "VE.3.2.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.1.b", - "ruleContent": "Contains an integrated visor/face shield supplied with the helmet", - "parentRuleCode": "VE.3.2.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.1.c", - "ruleContent": "Meets an approved standard", - "parentRuleCode": "VE.3.2.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.1.d", - "ruleContent": "Is properly labeled for that standard", - "parentRuleCode": "VE.3.2.1", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.2", - "ruleContent": "Acceptable helmet standards are listed below. Any additional approved standards are shown on the Technical Inspection Form or the FAQ on the FSAE Online website", - "parentRuleCode": "VE.3.2", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.2.a", - "ruleContent": "Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, SA2025", - "parentRuleCode": "VE.3.2.2", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.2.b", - "ruleContent": "SFI Specs 31.1/2015, 41.1/2015", - "parentRuleCode": "VE.3.2.2", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.2.2.c", - "ruleContent": "FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) Version 1.0 31 Aug 2024", - "parentRuleCode": "VE.3.2.2", - "pageNumber": "77" - }, - { - "ruleCode": "VE.3.3", - "ruleContent": "Driver Gear The driver must wear:", - "parentRuleCode": "VE.3", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.1", - "ruleContent": "Driver Suit A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers the body from the neck to the ankles and the wrists. Each suit must meet one or more of these standards and be labeled as such: • SFI 3.2A/5 (or higher ex: /10, /15, /20) • SFI 3.4/5 (or higher ex: /10, /15, /20) • FIA Standard 1986 • FIA Standard 8856-2000 • FIA Standard 8856-2018", - "parentRuleCode": "VE.3.3", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.2", - "ruleContent": "Underclothing All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under their approved Driver Suit.", - "parentRuleCode": "VE.3.3", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.3", - "ruleContent": "Balaclava A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame Resistant Material", - "parentRuleCode": "VE.3.3", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.4", - "ruleContent": "Socks Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit and the Shoes.", - "parentRuleCode": "VE.3.3", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.5", - "ruleContent": "Shoes Shoes or boots made from Flame Resistant Material that meet an approved standard and labeled as such: • SFI Spec 3.3 • FIA Standard 8856-2000 • FIA Standard 8856-2018", - "parentRuleCode": "VE.3.3", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.6", - "ruleContent": "Gloves Gloves made from Flame Resistant Material. Gloves of all leather construction or fire retardant gloves constructed using leather palms with no insulating Flame Resistant Material underneath are not acceptable.", - "parentRuleCode": "VE.3.3", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.7", - "ruleContent": "Arm Restraints", - "parentRuleCode": "VE.3.3", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.7.a", - "ruleContent": "Arm restraints must be worn in a way that the driver can release them and exit the vehicle unassisted regardless of the vehicle’s position.", - "parentRuleCode": "VE.3.3.7", - "pageNumber": "78" - }, - { - "ruleCode": "VE.3.3.7.b", - "ruleContent": "Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec 3.3 and labeled as such meet this requirement. Version 1.0 31 Aug 2024", - "parentRuleCode": "VE.3.3.7", - "pageNumber": "78" - }, - { - "ruleCode": "IC", - "ruleContent": "INTERNAL COMBUSTION ENGINE VEHICLES", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1", - "ruleContent": "GENERAL REQUIREMENTS", - "parentRuleCode": "IC", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1.1", - "ruleContent": "Engine Limitations", - "parentRuleCode": "IC.1", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1.1.1", - "ruleContent": "The engine(s) used to power the vehicle must:", - "parentRuleCode": "IC.1.1", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1.1.1.a", - "ruleContent": "Be a piston engine(s) using a four stroke primary heat cycle", - "parentRuleCode": "IC.1.1.1", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1.1.1.b", - "ruleContent": "Have a total combined displacement less than or equal to 710 cc per cycle.", - "parentRuleCode": "IC.1.1.1", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1.1.2", - "ruleContent": "Hybrid powertrains, such as those using electric motors running off stored energy, are prohibited.", - "parentRuleCode": "IC.1.1", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1.1.3", - "ruleContent": "All waste/rejected heat from the primary heat cycle may be used. The method of conversion is not limited to the four stroke cycle.", - "parentRuleCode": "IC.1.1", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1.1.4", - "ruleContent": "The engine may be modified within the restrictions of the rules.", - "parentRuleCode": "IC.1.1", - "pageNumber": "79" - }, - { - "ruleCode": "IC.1.2", - "ruleContent": "Air Intake and Fuel System Location All parts of the engine air system and fuel control, delivery and storage systems (including the throttle or carburetor, and the complete air intake system, including the air cleaner and any air boxes) must lie inside the Tire Surface Envelope F.1.14", - "parentRuleCode": "IC.1", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2", - "ruleContent": "AIR INTAKE SYSTEM", - "parentRuleCode": "IC", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.1", - "ruleContent": "General", - "parentRuleCode": "IC.2", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.2", - "ruleContent": "Intake System Location", - "parentRuleCode": "IC.2", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.2.1", - "ruleContent": "The Intake System must meet IC.1.2", - "parentRuleCode": "IC.2.2", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.2.2", - "ruleContent": "Any portion of the air intake system that is less than 350 mm above the ground must be shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable.", - "parentRuleCode": "IC.2.2", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.3", - "ruleContent": "Intake System Mounting", - "parentRuleCode": "IC.2", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.3.1", - "ruleContent": "The intake manifold must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. • Hose clamps, plastic ties, or safety wires do not meet this requirement. • The use of rubber bushings or hose is acceptable for creating and sealing air passages, but is not a structural attachment.", - "parentRuleCode": "IC.2.3", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.3.2", - "ruleContent": "Threaded fasteners used to secure and/or seal the intake manifold must have a Positive Locking Mechanism, see T.8.3.", - "parentRuleCode": "IC.2.3", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.3.3", - "ruleContent": "Intake systems with significant mass or cantilever from the cylinder head must be supported to prevent stress to the intake system.", - "parentRuleCode": "IC.2.3", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.3.3.a", - "ruleContent": "Supports to the engine must be rigid.", - "parentRuleCode": "IC.2.3.3", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.3.3.b", - "ruleContent": "Supports to the Chassis must incorporate some isolation to allow for engine movement and chassis flex.", - "parentRuleCode": "IC.2.3.3", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.4", - "ruleContent": "Intake System Restrictor", - "parentRuleCode": "IC.2", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.4.1", - "ruleContent": "All airflow to the engine(s) must pass through a single circular restrictor in the intake system.", - "parentRuleCode": "IC.2.4", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.4.2", - "ruleContent": "The only allowed sequence of components is:", - "parentRuleCode": "IC.2.4", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.4.2.a", - "ruleContent": "For naturally aspirated engines, the sequence must be: throttle body, restrictor, and engine. Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.2.4.2", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.4.2.b", - "ruleContent": "For turbocharged or supercharged engines, the sequence must be: restrictor, compressor, throttle body, engine.", - "parentRuleCode": "IC.2.4.2", - "pageNumber": "79" - }, - { - "ruleCode": "IC.2.4.3", - "ruleContent": "The maximum restrictor diameters at any time during the competition are:", - "parentRuleCode": "IC.2.4", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.4.3.a", - "ruleContent": "Gasoline fueled vehicles 20.0 mm", - "parentRuleCode": "IC.2.4.3", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.4.3.b", - "ruleContent": "E85 fueled vehicles 19.0 mm", - "parentRuleCode": "IC.2.4.3", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.4.4", - "ruleContent": "The restrictor must be located to facilitate measurement during Technical Inspection", - "parentRuleCode": "IC.2.4", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.4.5", - "ruleContent": "The circular restricting cross section must NOT be movable or flexible in any way", - "parentRuleCode": "IC.2.4", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.4.6", - "ruleContent": "The restrictor must not be part of the movable portion of a barrel throttle body.", - "parentRuleCode": "IC.2.4", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5", - "ruleContent": "Turbochargers & Superchargers", - "parentRuleCode": "IC.2", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5.1", - "ruleContent": "The intake air may be cooled with an intercooler (a charge air cooler).", - "parentRuleCode": "IC.2.5", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5.1.a", - "ruleContent": "It must be located downstream of the throttle body", - "parentRuleCode": "IC.2.5.1", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5.1.b", - "ruleContent": "Only ambient air may be used to remove heat from the intercooler system", - "parentRuleCode": "IC.2.5.1", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5.1.c", - "ruleContent": "Air to air and water to air intercoolers are permitted", - "parentRuleCode": "IC.2.5.1", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5.1.d", - "ruleContent": "The coolant of a water to air intercooler system must meet T.5.4.1", - "parentRuleCode": "IC.2.5.1", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5.2", - "ruleContent": "If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be positioned in the intake system as shown in IC.2.4.2.b", - "parentRuleCode": "IC.2.5", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5.3", - "ruleContent": "Plenums must not be located anywhere upstream of the throttle body For the purpose of definition, a plenum is any tank or volume that is a significant enlargement of the normal intake runner system. Teams may submit their designs via a Rules Question for review prior to competition if the legality of their proposed system is in doubt.", - "parentRuleCode": "IC.2.5", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.5.4", - "ruleContent": "The maximum allowable area of the inner diameter of the intake runner system between the restrictor and throttle body is 2825 mm 2", - "parentRuleCode": "IC.2.5", - "pageNumber": "80" - }, - { - "ruleCode": "IC.2.6", - "ruleContent": "Connections to Intake Any crankcase or engine lubrication vent lines routed to the intake system must be connected upstream of the intake system restrictor.", - "parentRuleCode": "IC.2", - "pageNumber": "80" - }, - { - "ruleCode": "IC.3", - "ruleContent": "THROTTLE", - "parentRuleCode": "IC", - "pageNumber": "80" - }, - { - "ruleCode": "IC.3.1", - "ruleContent": "General", - "parentRuleCode": "IC.3", - "pageNumber": "80" - }, - { - "ruleCode": "IC.3.1.1", - "ruleContent": "The vehicle must have a carburetor or throttle body.", - "parentRuleCode": "IC.3.1", - "pageNumber": "80" - }, - { - "ruleCode": "IC.3.1.1.a", - "ruleContent": "The carburetor or throttle body may be of any size or design.", - "parentRuleCode": "IC.3.1.1", - "pageNumber": "80" - }, - { - "ruleCode": "IC.3.1.1.b", - "ruleContent": "Boosted applications must not use carburetors. Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.3.1.1", - "pageNumber": "80" - }, - { - "ruleCode": "IC.3.2", - "ruleContent": "Throttle Actuation Method The throttle may be operated:", - "parentRuleCode": "IC.3", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.2.a", - "ruleContent": "Mechanically by a cable or rod system IC.3.3", - "parentRuleCode": "IC.3.2", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.2.b", - "ruleContent": "By Electronic Throttle Control IC.4", - "parentRuleCode": "IC.3.2", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.3", - "ruleContent": "Throttle Actuation – Mechanical", - "parentRuleCode": "IC.3", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.3.1", - "ruleContent": "The throttle cable or rod must:", - "parentRuleCode": "IC.3.3", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.3.1.a", - "ruleContent": "Have smooth operation", - "parentRuleCode": "IC.3.3.1", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.3.1.b", - "ruleContent": "Have no possibility of binding or sticking", - "parentRuleCode": "IC.3.3.1", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.3.1.c", - "ruleContent": "Be minimum 50 mm from any exhaust system component and out of the exhaust stream", - "parentRuleCode": "IC.3.3.1", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.3.1.d", - "ruleContent": "Be protected from being bent or kinked by the driver’s foot when it is operated by the driver or when the driver enters or exits the vehicle", - "parentRuleCode": "IC.3.3.1", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.3.2", - "ruleContent": "The throttle actuation system must use two or more return springs located at the throttle body. Throttle Position Sensors (TPS) are NOT acceptable as return springs", - "parentRuleCode": "IC.3.3", - "pageNumber": "81" - }, - { - "ruleCode": "IC.3.3.3", - "ruleContent": "Failure of any component of the throttle system must not prevent the throttle returning to the closed position.", - "parentRuleCode": "IC.3.3", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4", - "ruleContent": "ELECTRONIC THROTTLE CONTROL This section IC.4 applies only when Electronic Throttle Control is used An Electronic Throttle Control (ETC) system may be used. This is a device or system which may change the engine throttle setting based on various inputs.", - "parentRuleCode": "IC", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.1", - "ruleContent": "General Design", - "parentRuleCode": "IC.4", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.1.1", - "ruleContent": "The electronic throttle must automatically close (return to idle) when power is removed.", - "parentRuleCode": "IC.4.1", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.1.2", - "ruleContent": "The electronic throttle must use minimum two sources of energy capable of returning the throttle to the idle position.", - "parentRuleCode": "IC.4.1", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.1.2.a", - "ruleContent": "One of the sources may be the device (such as a DC motor) that normally operates the throttle", - "parentRuleCode": "IC.4.1.2", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.1.2.b", - "ruleContent": "The other device(s) must be a throttle return spring that can return the throttle to the idle position if loss of actuator power occurs.", - "parentRuleCode": "IC.4.1.2", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.1.2.c", - "ruleContent": "Springs in the TPS are not acceptable throttle return springs", - "parentRuleCode": "IC.4.1.2", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.1.3", - "ruleContent": "The ETC system may blip the throttle during downshifts when proven that unintended acceleration can be prevented. Document the functional analysis in the ETC Systems Form", - "parentRuleCode": "IC.4.1", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.2", - "ruleContent": "Commercial ETC System", - "parentRuleCode": "IC.4", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.2.1", - "ruleContent": "An ETC system that is commercially available, but does not comply with the regulations, may be used, if approved prior to the event.", - "parentRuleCode": "IC.4.2", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.2.2", - "ruleContent": "To obtain approval, submit a Rules Question which includes: • Which ETC system the team is seeking approval to use. • The specific ETC rule(s) that the commercial system deviates from. • Sufficient technical details of these deviations to determine the acceptability of the commercial system. Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.4.2", - "pageNumber": "81" - }, - { - "ruleCode": "IC.4.3", - "ruleContent": "Documentation", - "parentRuleCode": "IC.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.3.1", - "ruleContent": "The ETC Notice of Intent: • Must be submitted to give the intent to run ETC • May be used to screen which teams are allowed to use ETC", - "parentRuleCode": "IC.4.3", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.3.2", - "ruleContent": "The ETC Systems Form must be submitted in order to use ETC", - "parentRuleCode": "IC.4.3", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.3.3", - "ruleContent": "Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document Requirements", - "parentRuleCode": "IC.4.3", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.3.4", - "ruleContent": "Late or non submission will prevent use of ETC, see DR.3.4.1", - "parentRuleCode": "IC.4.3", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4", - "ruleContent": "Throttle Position Sensor - TPS", - "parentRuleCode": "IC.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.1", - "ruleContent": "The TPS must measure the position of the throttle or the throttle actuator. Throttle position is defined as percent of travel from fully closed to wide open where 0% is fully closed and 100% is fully open.", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.2", - "ruleContent": "Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and reference lines only if effects of supply and/or reference line voltage offsets can be detected.", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.3", - "ruleContent": "Implausibility is defined as a deviation of more than 10% throttle position between the sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be considered on a case by case basis and require justification in the ETC Systems Form", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.4", - "ruleContent": "If an Implausibility occurs between the values of the two TPSs and persists for more than 100 msec, the power to the electronic throttle must be immediately shut down.", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.5", - "ruleContent": "If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% throttle position may be used to define the throttle position target and the 3rd TPS may be ignored.", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.6", - "ruleContent": "Each TPS must be able to be checked during Technical Inspection by having one of:", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.6.a", - "ruleContent": "A separate detachable connector(s) for any TPS signal(s) to the main ECU without affecting any other connections", - "parentRuleCode": "IC.4.4.6", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.6.b", - "ruleContent": "An inline switchable breakout box available that allows disconnection of each TPS signal(s) to the main ECU without affecting any other connections", - "parentRuleCode": "IC.4.4.6", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.7", - "ruleContent": "The TPS signals must be sent directly to the throttle controller using an analogue signal or via a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring must be detectable by the controller and must be treated like Implausibility.", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.8", - "ruleContent": "When an analogue signal is used, the TPSs will be considered to have failed when they achieve an open circuit or short circuit condition which generates a signal outside of the normal operating range, for example <0.5 V or >4.5 V. The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure that open circuit signals result in a failure being detected.", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.9", - "ruleContent": "When any kind of digital data transmission is used to transmit the TPS signal,", - "parentRuleCode": "IC.4.4", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.9.a", - "ruleContent": "The ETC Systems Form must contain a detailed description of all the potential failure modes that can occur, the strategy that is used to detect these failures and the tests that have been conducted to prove that the detection strategy works.", - "parentRuleCode": "IC.4.4.9", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.4.9.b", - "ruleContent": "The failures to be considered must include but are not limited to the failure of the TPS, TPS signals being out of range, corruption of the message and loss of messages and the associated time outs. Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.4.4.9", - "pageNumber": "82" - }, - { - "ruleCode": "IC.4.5", - "ruleContent": "Accelerator Pedal Position Sensor - APPS Refer to T.4.2 for specific requirements of the APPS", - "parentRuleCode": "IC.4", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.6", - "ruleContent": "Brake System Encoder - BSE Refer to T.4.3 for specific requirements of the BSE", - "parentRuleCode": "IC.4", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7", - "ruleContent": "Throttle Plausibility Checks", - "parentRuleCode": "IC.4", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.1", - "ruleContent": "Brakes and Throttle Position", - "parentRuleCode": "IC.4.7", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.1.a", - "ruleContent": "The power to the electronic throttle must be shut down if the mechanical brakes are operated and the TPS signals that the throttle is open by more than a permitted amount for more than one second.", - "parentRuleCode": "IC.4.7.1", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.1.b", - "ruleContent": "An interval of one second is allowed for the throttle to close (return to idle). Failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system.", - "parentRuleCode": "IC.4.7.1", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.1.c", - "ruleContent": "The permitted relationship between BSE and TPS may be defined by the team using a table. This functionality must be demonstrated at Technical Inspection.", - "parentRuleCode": "IC.4.7.1", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.2", - "ruleContent": "Throttle Position vs Target", - "parentRuleCode": "IC.4.7", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.2.a", - "ruleContent": "The power to the electronic throttle must be immediately shut down, if throttle position differs by more than 10% from the expected target TPS position for more than one second.", - "parentRuleCode": "IC.4.7.2", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.2.b", - "ruleContent": "An interval of one second is allowed for the difference to reduce to less than 10%, failure to achieve this in the required interval must result in immediate shut down of fuel flow and the ignition system.", - "parentRuleCode": "IC.4.7.2", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.2.c", - "ruleContent": "An error in TPS position and the resultant system shutdown must be demonstrated at Technical Inspection. Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. System states displayed using calibration software must be accompanied by a detailed explanation of the control system.", - "parentRuleCode": "IC.4.7.2", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.7.3", - "ruleContent": "The electronic throttle and fuel injector/ignition system shutdown must stay active until the TPS signals indicate the throttle is at or below the unpowered default position for one second or longer.", - "parentRuleCode": "IC.4.7", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8", - "ruleContent": "Brake System Plausibility Device - BSPD", - "parentRuleCode": "IC.4", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8.1", - "ruleContent": "A standalone nonprogrammable circuit must be used to monitor the electronic throttle control. The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7", - "parentRuleCode": "IC.4.8", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8.2", - "ruleContent": "Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may not be used in place of the raw sensor signals.", - "parentRuleCode": "IC.4.8", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8.3", - "ruleContent": "The BSPD must monitor for these conditions:", - "parentRuleCode": "IC.4.8", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8.3.a", - "ruleContent": "The two of these for more than one second: • Demand for Hard Braking IC.4.6 • Throttle more than 10% open IC.4.4", - "parentRuleCode": "IC.4.8.3", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8.3.b", - "ruleContent": "Loss of signal from the braking sensor(s) for more than 100 msec", - "parentRuleCode": "IC.4.8.3", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8.3.c", - "ruleContent": "Loss of signal from the throttle sensor(s) for more than 100 msec Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.4.8.3", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8.3.d", - "ruleContent": "Removal of power from the BSPD circuit", - "parentRuleCode": "IC.4.8.3", - "pageNumber": "83" - }, - { - "ruleCode": "IC.4.8.4", - "ruleContent": "When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2", - "parentRuleCode": "IC.4.8", - "pageNumber": "84" - }, - { - "ruleCode": "IC.4.8.5", - "ruleContent": "The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON", - "parentRuleCode": "IC.4.8", - "pageNumber": "84" - }, - { - "ruleCode": "IC.4.8.6", - "ruleContent": "The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF", - "parentRuleCode": "IC.4.8", - "pageNumber": "84" - }, - { - "ruleCode": "IC.4.8.7", - "ruleContent": "The BSPD signals and function must be able to be checked during Technical Inspection by having one of:", - "parentRuleCode": "IC.4.8", - "pageNumber": "84" - }, - { - "ruleCode": "IC.4.8.7.a", - "ruleContent": "A separate set of detachable connectors for any signals from the braking sensor(s), throttle sensor(s) and removal of power to only the BSPD device.", - "parentRuleCode": "IC.4.8.7", - "pageNumber": "84" - }, - { - "ruleCode": "IC.4.8.7.b", - "ruleContent": "An inline switchable breakout box available that allows disconnection of the brake sensor(s), throttle sensor(s) individually and power to only the BSPD device.", - "parentRuleCode": "IC.4.8.7", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5", - "ruleContent": "FUEL AND FUEL SYSTEM", - "parentRuleCode": "IC", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.1", - "ruleContent": "Fuel", - "parentRuleCode": "IC.5", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.1.1", - "ruleContent": "Vehicles must be operated with the fuels provided at the competition", - "parentRuleCode": "IC.5.1", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.1.2", - "ruleContent": "Fuels provided are expected to be Gasoline and E85. Consult the individual competition websites for fuel specifics and other information.", - "parentRuleCode": "IC.5.1", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.1.3", - "ruleContent": "No agents other than the provided fuel and air may go into the combustion chamber.", - "parentRuleCode": "IC.5.1", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.2", - "ruleContent": "Fuel System", - "parentRuleCode": "IC.5", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.2.1", - "ruleContent": "The Fuel System must meet these design criteria:", - "parentRuleCode": "IC.5.2", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.2.1.a", - "ruleContent": "The Fuel Tank is capable of being filled to capacity without manipulating the tank or the vehicle in any manner.", - "parentRuleCode": "IC.5.2.1", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.2.1.b", - "ruleContent": "During refueling on a level surface, the formation of air cavities or other effects that cause the fuel level observed at the sight tube to drop after movement or operation of the vehicle (other than due to consumption) are prevented.", - "parentRuleCode": "IC.5.2.1", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.2.1.c", - "ruleContent": "Spillage during refueling cannot contact the driver position, exhaust system, hot engine parts, or the ignition system.", - "parentRuleCode": "IC.5.2.1", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.2.2", - "ruleContent": "The Fuel System location must meet IC.1.2 and F.9", - "parentRuleCode": "IC.5.2", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.2.3", - "ruleContent": "A Firewall must separate the Fuel Tank from the driver, per T.1.8", - "parentRuleCode": "IC.5.2", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3", - "ruleContent": "Fuel Tank The part(s) of the fuel containment device that is in contact with the fuel.", - "parentRuleCode": "IC.5", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3.1", - "ruleContent": "Fuel Tanks made of a rigid material must:", - "parentRuleCode": "IC.5.3", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3.1.a", - "ruleContent": "Be securely attached to the vehicle structure. The mounting method must not allow chassis flex to load the Fuel Tank.", - "parentRuleCode": "IC.5.3.1", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3.1.b", - "ruleContent": "Not be used to carry any structural loads; from Roll Hoops, suspension, engine or gearbox mounts", - "parentRuleCode": "IC.5.3.1", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3.2", - "ruleContent": "Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag tank:", - "parentRuleCode": "IC.5.3", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3.2.a", - "ruleContent": "Must be enclosed inside a rigid fuel tank container which is securely attached to the vehicle structure.", - "parentRuleCode": "IC.5.3.2", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3.2.b", - "ruleContent": "The Fuel Tank container may be load carrying", - "parentRuleCode": "IC.5.3.2", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3.3", - "ruleContent": "Any size Fuel Tank may be used Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.5.3", - "pageNumber": "84" - }, - { - "ruleCode": "IC.5.3.4", - "ruleContent": "The Fuel Tank, by design, must not have a variable capacity.", - "parentRuleCode": "IC.5.3", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.3.5", - "ruleContent": "The Fuel System must have a provision for emptying the Fuel Tank if required.", - "parentRuleCode": "IC.5.3", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4", - "ruleContent": "Fuel Filler Neck & Sight Tube", - "parentRuleCode": "IC.5", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.1", - "ruleContent": "All Fuel Tanks must have a Fuel Filler Neck which must be:", - "parentRuleCode": "IC.5.4", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.1.a", - "ruleContent": "Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler cap", - "parentRuleCode": "IC.5.4.1", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.2", - "ruleContent": "The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be:", - "parentRuleCode": "IC.5.4", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.2.a", - "ruleContent": "Minimum 125 mm vertical height above the top level of the Fuel Tank", - "parentRuleCode": "IC.5.4.2", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.2.b", - "ruleContent": "Angled no more than 30° from the vertical", - "parentRuleCode": "IC.5.4.2", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.3", - "ruleContent": "The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the fuel level which must be:", - "parentRuleCode": "IC.5.4", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.3.a", - "ruleContent": "Visible vertical height: 125 mm minimum", - "parentRuleCode": "IC.5.4.3", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.3.b", - "ruleContent": "Inside diameter: 6 mm minimum", - "parentRuleCode": "IC.5.4.3", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.3.c", - "ruleContent": "Above the top surface of the Fuel Tank", - "parentRuleCode": "IC.5.4.3", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.4", - "ruleContent": "A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules Question or technical inspectors at the event.", - "parentRuleCode": "IC.5.4", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.5", - "ruleContent": "Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm and 25 mm below the top of the visible portion of the sight tube. This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure the amount of fuel used during the Endurance Event.", - "parentRuleCode": "IC.5.4", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.6", - "ruleContent": "The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, etc) or the need to remove any parts (body panels, etc).", - "parentRuleCode": "IC.5.4", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.7", - "ruleContent": "The individual filling the tank must have complete direct access to the filler neck opening with a standard two gallon gas can assembly. The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top", - "parentRuleCode": "IC.5.4", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.4.8", - "ruleContent": "The filler neck must have a fuel cap that can withstand severe vibrations or high pressures such as could occur during a vehicle rollover event Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.5.4", - "pageNumber": "85" - }, - { - "ruleCode": "IC.5.5", - "ruleContent": "Fuel Tank Filling", - "parentRuleCode": "IC.5", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.5.1", - "ruleContent": "Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials.", - "parentRuleCode": "IC.5.5", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.5.2", - "ruleContent": "The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point.", - "parentRuleCode": "IC.5.5", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.5.3", - "ruleContent": "If, for any reason, the fuel level changes after the team have moved the vehicle, then no additional fuel will be added, unless fueling after Endurance, see D.13.2.5", - "parentRuleCode": "IC.5.5", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.6", - "ruleContent": "Venting Systems", - "parentRuleCode": "IC.5", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.6.1", - "ruleContent": "Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during hard cornering or acceleration.", - "parentRuleCode": "IC.5.6", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.6.2", - "ruleContent": "All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted.", - "parentRuleCode": "IC.5.6", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.6.3", - "ruleContent": "All fuel vent lines must exit outside the bodywork.", - "parentRuleCode": "IC.5.6", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.7", - "ruleContent": "Fuel Lines", - "parentRuleCode": "IC.5", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.7.1", - "ruleContent": "Fuel lines must be securely attached to the vehicle and/or engine.", - "parentRuleCode": "IC.5.7", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.7.2", - "ruleContent": "All fuel lines must be shielded from possible rotating equipment failure or collision damage.", - "parentRuleCode": "IC.5.7", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.7.3", - "ruleContent": "Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited.", - "parentRuleCode": "IC.5.7", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.7.4", - "ruleContent": "Any rubber fuel line or hose used must meet the two:", - "parentRuleCode": "IC.5.7", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.7.4.a", - "ruleContent": "The components over which the hose is clamped must have annular bulb or barbed fittings to retain the hose", - "parentRuleCode": "IC.5.7.4", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.7.4.b", - "ruleContent": "Clamps specifically designed for fuel lines must be used. These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, and rolled edges to prevent the clamp cutting into the hose", - "parentRuleCode": "IC.5.7.4", - "pageNumber": "86" - }, - { - "ruleCode": "IC.5.7.5", - "ruleContent": "Worm gear type hose clamps must not be used on any fuel line.", - "parentRuleCode": "IC.5.7", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6", - "ruleContent": "FUEL INJECTION", - "parentRuleCode": "IC", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6.1", - "ruleContent": "Low Pressure Injection (LPI) Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most Port Fuel Injected (PFI) fuel systems are low pressure.", - "parentRuleCode": "IC.6", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6.1.1", - "ruleContent": "Any Low Pressure flexible fuel lines must be one of: • Metal braided hose with threaded fittings (crimped on or reusable) • Reinforced rubber hose with some form of abrasion resistant protection", - "parentRuleCode": "IC.6.1", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6.1.2", - "ruleContent": "Fuel rail and mounting requirements:", - "parentRuleCode": "IC.6.1", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6.1.2.a", - "ruleContent": "Unmodified OEM Fuel Rails are acceptable, regardless of material.", - "parentRuleCode": "IC.6.1.2", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6.1.2.b", - "ruleContent": "Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable materials are prohibited.", - "parentRuleCode": "IC.6.1.2", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6.1.2.c", - "ruleContent": "The fuel rail must be securely attached to the manifold, engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement.", - "parentRuleCode": "IC.6.1.2", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6.1.2.d", - "ruleContent": "Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.6.1.2", - "pageNumber": "86" - }, - { - "ruleCode": "IC.6.2", - "ruleContent": "High Pressure Injection (HPI) / Direct Injection (DI)", - "parentRuleCode": "IC.6", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.1", - "ruleContent": "Definitions", - "parentRuleCode": "IC.6.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.1.a", - "ruleContent": "High Pressure fuel systems - those functioning at 10 Bar pressure or above", - "parentRuleCode": "IC.6.2.1", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.1.b", - "ruleContent": "Direct Injection fuel systems - where the injection occurs directly into the combustion system Direct Injection systems often utilize a low pressure electric fuel pump and high pressure mechanical “boost” pump driven off the engine.", - "parentRuleCode": "IC.6.2.1", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.1.c", - "ruleContent": "High Pressure Fuel Lines - those between the boost pump and injectors", - "parentRuleCode": "IC.6.2.1", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.1.d", - "ruleContent": "Low Pressure Fuel Lines - from the electric supply pump to the boost pump", - "parentRuleCode": "IC.6.2.1", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.2", - "ruleContent": "All High Pressure Fuel Lines must:", - "parentRuleCode": "IC.6.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.2.a", - "ruleContent": "Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel reinforcement and visible Nomex tracer yarn. Equivalent products may be used with prior approval.", - "parentRuleCode": "IC.6.2.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.2.b", - "ruleContent": "Not incorporate elastomeric seals", - "parentRuleCode": "IC.6.2.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.2.c", - "ruleContent": "Be rigidly connected every 100 mm by mechanical fasteners to structural engine components such as cylinder heads or block", - "parentRuleCode": "IC.6.2.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.3", - "ruleContent": "Any Low Pressure flexible Fuel Lines must be one of: • Metal braided hose with threaded fittings (crimped on or reusable) • Reinforced rubber hose with some form of abrasion resistant protection", - "parentRuleCode": "IC.6.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.4", - "ruleContent": "Fuel rail mounting requirements:", - "parentRuleCode": "IC.6.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.4.a", - "ruleContent": "The fuel rail must be securely attached to the engine block or cylinder head with brackets and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this requirement.", - "parentRuleCode": "IC.6.2.4", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.4.b", - "ruleContent": "The fastening method must be sufficient to hold the fuel rail in place with the maximum regulated pressure acting on the injector internals and neglecting any assistance from cylinder pressure acting on the injector tip.", - "parentRuleCode": "IC.6.2.4", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.4.c", - "ruleContent": "Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2", - "parentRuleCode": "IC.6.2.4", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.5", - "ruleContent": "High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as the cylinder head or engine block.", - "parentRuleCode": "IC.6.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.6.2.6", - "ruleContent": "Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the fuel system in parallel with the DI boost pump. The external regulator must be used even if the DI boost pump comes equipped with an internal regulator.", - "parentRuleCode": "IC.6.2", - "pageNumber": "87" - }, - { - "ruleCode": "IC.7", - "ruleContent": "EXHAUST AND NOISE CONTROL", - "parentRuleCode": "IC", - "pageNumber": "87" - }, - { - "ruleCode": "IC.7.1", - "ruleContent": "Exhaust Protection", - "parentRuleCode": "IC.7", - "pageNumber": "87" - }, - { - "ruleCode": "IC.7.1.1", - "ruleContent": "The exhaust system must be separated from any of these components by means given in T.1.6.3:", - "parentRuleCode": "IC.7.1", - "pageNumber": "87" - }, - { - "ruleCode": "IC.7.1.1.a", - "ruleContent": "Flammable materials, including the fuel and fuel system, the oil and oil system", - "parentRuleCode": "IC.7.1.1", - "pageNumber": "87" - }, - { - "ruleCode": "IC.7.1.1.b", - "ruleContent": "Thermally sensitive components, including brake lines, composite materials, and batteries Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.7.1.1", - "pageNumber": "87" - }, - { - "ruleCode": "IC.7.2", - "ruleContent": "Exhaust Outlet", - "parentRuleCode": "IC.7", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.2.1", - "ruleContent": "The exhaust must be routed to prevent the driver from fumes at any speed considering the draft of the vehicle", - "parentRuleCode": "IC.7.2", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.2.2", - "ruleContent": "The Exhaust Outlet(s) must be:", - "parentRuleCode": "IC.7.2", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.2.2.a", - "ruleContent": "No more than 45 cm aft of the centerline of the rear axle", - "parentRuleCode": "IC.7.2.2", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.2.2.b", - "ruleContent": "No more than 60 cm above the ground.", - "parentRuleCode": "IC.7.2.2", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.2.3", - "ruleContent": "Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in front of the Main Hoop must be shielded to prevent contact by persons approaching the vehicle or a driver exiting the vehicle", - "parentRuleCode": "IC.7.2", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.2.4", - "ruleContent": "Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an exhaust manifold or exhaust system.", - "parentRuleCode": "IC.7.2", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.3", - "ruleContent": "Variable Exhaust", - "parentRuleCode": "IC.7", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.3.1", - "ruleContent": "Adjustable tuning or throttling devices are permitted.", - "parentRuleCode": "IC.7.3", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.3.2", - "ruleContent": "Manually adjustable tuning devices must require tools to change", - "parentRuleCode": "IC.7.3", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.3.3", - "ruleContent": "Refer to IN.10.2 for additional requirements during the Noise Test", - "parentRuleCode": "IC.7.3", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.4", - "ruleContent": "Connections to Exhaust Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum devices that connect directly to the exhaust system, are prohibited.", - "parentRuleCode": "IC.7", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.5", - "ruleContent": "Noise Level and Testing", - "parentRuleCode": "IC.7", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.5.1", - "ruleContent": "The vehicle must stay below the permitted sound level at all times IN.10.5", - "parentRuleCode": "IC.7.5", - "pageNumber": "88" - }, - { - "ruleCode": "IC.7.5.2", - "ruleContent": "Sound level will be verified during Technical Inspection, refer to IN.10", - "parentRuleCode": "IC.7.5", - "pageNumber": "88" - }, - { - "ruleCode": "IC.8", - "ruleContent": "ELECTRICAL", - "parentRuleCode": "IC", - "pageNumber": "88" - }, - { - "ruleCode": "IC.8.1", - "ruleContent": "Starter Each vehicle must start the engine using an onboard starter at all times", - "parentRuleCode": "IC.8", - "pageNumber": "88" - }, - { - "ruleCode": "IC.8.2", - "ruleContent": "Batteries Refer to T.9.2 for specific requirements of Low Voltage batteries", - "parentRuleCode": "IC.8", - "pageNumber": "88" - }, - { - "ruleCode": "IC.8.3", - "ruleContent": "Voltage Limit", - "parentRuleCode": "IC.8", - "pageNumber": "88" - }, - { - "ruleCode": "IC.8.3.1", - "ruleContent": "Voltage between any two electrical connections must be Low Voltage T.9.1.2", - "parentRuleCode": "IC.8.3", - "pageNumber": "88" - }, - { - "ruleCode": "IC.8.3.2", - "ruleContent": "This voltage limit does not apply to these systems: • High Voltage systems for ignition • High Voltage systems for injectors • Voltages internal to OEM charging systems designed for <60 V DC output.", - "parentRuleCode": "IC.8.3", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9", - "ruleContent": "SHUTDOWN SYSTEM", - "parentRuleCode": "IC", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9.1", - "ruleContent": "Shutdown Circuit", - "parentRuleCode": "IC.9", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9.1.1", - "ruleContent": "The Shutdown Circuit consists of these components:", - "parentRuleCode": "IC.9.1", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9.1.1.a", - "ruleContent": "Primary Master Switch IC.9.3", - "parentRuleCode": "IC.9.1.1", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9.1.1.b", - "ruleContent": "Cockpit Main Switch IC.9.4 Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.9.1.1", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9.1.1.c", - "ruleContent": "(ETC Only) Brake System Plausibility Device (BSPD) IC.4.8", - "parentRuleCode": "IC.9.1.1", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9.1.1.d", - "ruleContent": "Brake Overtravel Switch (BOTS) T.3.3", - "parentRuleCode": "IC.9.1.1", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9.1.1.e", - "ruleContent": "Inertia Switch (if used) T.9.4", - "parentRuleCode": "IC.9.1.1", - "pageNumber": "88" - }, - { - "ruleCode": "IC.9.1.2", - "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Technical Inspection", - "parentRuleCode": "IC.9.1", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.1.3", - "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near the Primary Master Switch and the Cockpit Main Switch.", - "parentRuleCode": "IC.9.1", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.2", - "ruleContent": "Shutdown Circuit Operation", - "parentRuleCode": "IC.9", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.2.1", - "ruleContent": "The Shutdown Circuit must Open upon operation of, or detection from any of the components listed in IC.9.1.1", - "parentRuleCode": "IC.9.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.2.2", - "ruleContent": "When the Shutdown Circuit Opens, it must:", - "parentRuleCode": "IC.9.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.2.2.a", - "ruleContent": "Stop the engine", - "parentRuleCode": "IC.9.2.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.2.2.b", - "ruleContent": "Disconnect power to the: • Fuel Pump(s) • Ignition • (ETC only) Electronic Throttle IC.4.1.1", - "parentRuleCode": "IC.9.2.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.3", - "ruleContent": "Primary Master Switch", - "parentRuleCode": "IC.9", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.3.1", - "ruleContent": "Configuration and Location - The Primary Master Switch must meet T.9.3", - "parentRuleCode": "IC.9.3", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.3.2", - "ruleContent": "Function - the Primary Master Switch must:", - "parentRuleCode": "IC.9.3", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.3.2.a", - "ruleContent": "Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel pump(s), ignition and electrical controls. All battery current must flow through this switch", - "parentRuleCode": "IC.9.3.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.3.2.b", - "ruleContent": "Be direct acting, not act through a relay or logic.", - "parentRuleCode": "IC.9.3.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4", - "ruleContent": "Cockpit Main Switch", - "parentRuleCode": "IC.9", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4.1", - "ruleContent": "Configuration - The Cockpit Main Switch must:", - "parentRuleCode": "IC.9.4", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4.1.a", - "ruleContent": "Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF position)", - "parentRuleCode": "IC.9.4.1", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4.1.b", - "ruleContent": "Have a diameter of 24 mm minimum", - "parentRuleCode": "IC.9.4.1", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4.2", - "ruleContent": "Location – The Cockpit Main Switch must be:", - "parentRuleCode": "IC.9.4", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4.2.a", - "ruleContent": "In easy reach of the driver when in a normal driving position wearing Harness", - "parentRuleCode": "IC.9.4.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4.2.b", - "ruleContent": "Adjacent to the Steering Wheel", - "parentRuleCode": "IC.9.4.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4.2.c", - "ruleContent": "Unobstructed by the Steering Wheel or any other part of the vehicle", - "parentRuleCode": "IC.9.4.2", - "pageNumber": "89" - }, - { - "ruleCode": "IC.9.4.3", - "ruleContent": "Function - the Cockpit Main Switch may act through a relay Version 1.0 31 Aug 2024", - "parentRuleCode": "IC.9.4", - "pageNumber": "89" - }, - { - "ruleCode": "EV", - "ruleContent": "ELECTRIC VEHICLES", - "pageNumber": "90" - }, - { - "ruleCode": "EV.1", - "ruleContent": "DEFINITIONS", - "parentRuleCode": "EV", - "pageNumber": "90" - }, - { - "ruleCode": "EV.1.1", - "ruleContent": "Tractive System – TS Every part electrically connected to the Motor(s) and/or Accumulator(s)", - "parentRuleCode": "EV.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.1.2", - "ruleContent": "Grounded Low Voltage - GLV Every electrical part that is not part of the Tractive System", - "parentRuleCode": "EV.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.1.3", - "ruleContent": "Accumulator All the battery cells or super capacitors that store the electrical energy to be used by the Tractive System", - "parentRuleCode": "EV.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.2", - "ruleContent": "DOCUMENTATION", - "parentRuleCode": "EV", - "pageNumber": "90" - }, - { - "ruleCode": "EV.2.1", - "ruleContent": "Electrical System Form - ESF", - "parentRuleCode": "EV.2", - "pageNumber": "90" - }, - { - "ruleCode": "EV.2.1.1", - "ruleContent": "Each team must submit an Electrical System Form (ESF) with a clearly structured documentation of the entire vehicle electrical system (including control and Tractive System). Submission and approval of the ESF does not mean that the vehicle will automatically pass Electrical Technical Inspection with the described items / parts.", - "parentRuleCode": "EV.2.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.2.1.2", - "ruleContent": "The ESF may provide guidance or more details than the Formula SAE Rules.", - "parentRuleCode": "EV.2.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.2.1.3", - "ruleContent": "Use the format provided and submit the ESF as given in section DR - Document Requirements", - "parentRuleCode": "EV.2.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.2.2", - "ruleContent": "Submission Penalties Penalties for the ESF are imposed as given in section DR - Document Requirements.", - "parentRuleCode": "EV.2", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3", - "ruleContent": "ELECTRICAL LIMITATIONS", - "parentRuleCode": "EV", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.1", - "ruleContent": "Operation", - "parentRuleCode": "EV.3", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.1.1", - "ruleContent": "Supplying power to the motor to drive the vehicle in reverse is prohibited", - "parentRuleCode": "EV.3.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.1.2", - "ruleContent": "Drive by wire control of wheel torque is permitted", - "parentRuleCode": "EV.3.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.1.3", - "ruleContent": "Any algorithm or electronic control unit that can adjust the requested wheel torque may only decrease the total driver requested torque and must not increase it", - "parentRuleCode": "EV.3.1", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.2", - "ruleContent": "Energy Meter", - "parentRuleCode": "EV.3", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.2.1", - "ruleContent": "All Electric Vehicles must run with the Energy Meter provided at the event Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter", - "parentRuleCode": "EV.3.2", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.2.2", - "ruleContent": "The Energy Meter must be installed in an easily accessible location", - "parentRuleCode": "EV.3.2", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.2.3", - "ruleContent": "All Tractive System power must flow through the Energy Meter", - "parentRuleCode": "EV.3.2", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.2.4", - "ruleContent": "Each team must download their Energy Meter data in a manner and timeframe specified by the organizer", - "parentRuleCode": "EV.3.2", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.2.5", - "ruleContent": "Power and Voltage limits will be checked by the Energy Meter data Energy is calculated as the time integrated value of the measured voltage multiplied by the measured current logged by the Energy Meter. Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.3.2", - "pageNumber": "90" - }, - { - "ruleCode": "EV.3.3", - "ruleContent": "Power and Voltage", - "parentRuleCode": "EV.3", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.3.1", - "ruleContent": "The maximum power measured by the Energy Meter must not exceed 80 kW", - "parentRuleCode": "EV.3.3", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.3.2", - "ruleContent": "The maximum permitted voltage that may occur between any two points must not exceed 600 V DC", - "parentRuleCode": "EV.3.3", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.3.3", - "ruleContent": "The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr", - "parentRuleCode": "EV.3.3", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.4", - "ruleContent": "Violations", - "parentRuleCode": "EV.3", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.4.1", - "ruleContent": "A Violation occurs when one or two of these exist:", - "parentRuleCode": "EV.3.4", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.4.1.a", - "ruleContent": "Use of more than the specified maximum power EV.3.3.1", - "parentRuleCode": "EV.3.4.1", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.4.1.b", - "ruleContent": "Exceed the maximum voltage EV.3.3.2 for one or the two conditions: • Continuously for 100 ms or more • After a moving average over 500 ms is applied", - "parentRuleCode": "EV.3.4.1", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.4.2", - "ruleContent": "Missing Energy Meter data may be treated as a Violation, subject to official discretion", - "parentRuleCode": "EV.3.4", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.4.3", - "ruleContent": "Tampering, or attempting to tamper with the Energy Meter or its data may result in Disqualification (DQ)", - "parentRuleCode": "EV.3.4", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.5", - "ruleContent": "Penalties", - "parentRuleCode": "EV.3", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.5.1", - "ruleContent": "Violations during the Acceleration, Skidpad, Autocross Events:", - "parentRuleCode": "EV.3.5", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.5.1.a", - "ruleContent": "Each run with one or more Violations will Disqualify (DQ) the best run of the team", - "parentRuleCode": "EV.3.5.1", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.5.1.b", - "ruleContent": "Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the two best runs", - "parentRuleCode": "EV.3.5.1", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.5.2", - "ruleContent": "Violations during the Endurance event: • Each Violation: 60 second penalty D.14.2.1", - "parentRuleCode": "EV.3.5", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.5.3", - "ruleContent": "Repeated Violations may void Inspection Approval or receive additional penalties up to and including Disqualification, subject to official discretion.", - "parentRuleCode": "EV.3.5", - "pageNumber": "91" - }, - { - "ruleCode": "EV.3.5.4", - "ruleContent": "The respective data of each run in which a team has a Violation and the resulting decision may be made public.", - "parentRuleCode": "EV.3.5", - "pageNumber": "91" - }, - { - "ruleCode": "EV.4", - "ruleContent": "COMPONENTS", - "parentRuleCode": "EV", - "pageNumber": "91" - }, - { - "ruleCode": "EV.4.1", - "ruleContent": "Motors", - "parentRuleCode": "EV.4", - "pageNumber": "91" - }, - { - "ruleCode": "EV.4.1.1", - "ruleContent": "Only electrical motors are allowed. The number of motors is not limited.", - "parentRuleCode": "EV.4.1", - "pageNumber": "91" - }, - { - "ruleCode": "EV.4.1.2", - "ruleContent": "Motors must meet T.5.3", - "parentRuleCode": "EV.4.1", - "pageNumber": "91" - }, - { - "ruleCode": "EV.4.1.3", - "ruleContent": "If Motors are mounted to the suspension uprights, their cables and wiring must:", - "parentRuleCode": "EV.4.1", - "pageNumber": "91" - }, - { - "ruleCode": "EV.4.1.3.a", - "ruleContent": "Include an Interlock EV.7.8 This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or knocked off the vehicle.", - "parentRuleCode": "EV.4.1.3", - "pageNumber": "91" - }, - { - "ruleCode": "EV.4.1.3.b", - "ruleContent": "Reduce the length of the portions of wiring and other connections that do not meet", - "parentRuleCode": "EV.4.1.3", - "pageNumber": "91" - }, - { - "ruleCode": "F.11.1.3.duplicate", - "ruleContent": "to the extent possible Version 1.0 31 Aug 2024", - "parentRuleCode": "F.11.1", - "pageNumber": "91" - }, - { - "ruleCode": "EV.4.2", - "ruleContent": "Motor Controller The Tractive System Motor(s) must be connected to the Accumulator through a Motor Controller. No direct connections between Motor(s) and Accumulator.", - "parentRuleCode": "EV.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3", - "ruleContent": "Accumulator Container", - "parentRuleCode": "EV.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.1", - "ruleContent": "Accumulator Containers must meet F.10", - "parentRuleCode": "EV.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.2", - "ruleContent": "The Accumulator Container(s) must be removable from the vehicle while still remaining rules compliant", - "parentRuleCode": "EV.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.3", - "ruleContent": "The Accumulator Container(s) must be completely closed at all times (when mounted to the vehicle and when removed from the vehicle) without the need to install extra protective covers", - "parentRuleCode": "EV.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.4", - "ruleContent": "The Accumulator Container(s) may contain Holes or Openings", - "parentRuleCode": "EV.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.4.a", - "ruleContent": "Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the Accumulator Container(s)", - "parentRuleCode": "EV.4.3.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.4.b", - "ruleContent": "Holes and Openings in the Accumulator Container must meet F.10.4", - "parentRuleCode": "EV.4.3.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.4.c", - "ruleContent": "External holes must meet EV.6.1", - "parentRuleCode": "EV.4.3.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.5", - "ruleContent": "Any Accumulators that may vent an explosive gas must have a ventilation system or pressure relief valve to release the vented gas", - "parentRuleCode": "EV.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.6", - "ruleContent": "Segments sealed in Accumulator Containers must have a path to a pressure relief valve", - "parentRuleCode": "EV.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.7", - "ruleContent": "Pressure relief valves must not have line of sight to the driver, with the Firewall installed or removed", - "parentRuleCode": "EV.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.8", - "ruleContent": "Each Accumulator Container must be labelled with the:", - "parentRuleCode": "EV.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.8.a", - "ruleContent": "School Name and Vehicle Number", - "parentRuleCode": "EV.4.3.8", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.8.b", - "ruleContent": "Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background) with: • Triangle side length of 100 mm minimum • Visibility from all angles, including when the lid is removed", - "parentRuleCode": "EV.4.3.8", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.8.c", - "ruleContent": "Text “Always Energized”", - "parentRuleCode": "EV.4.3.8", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.3.8.d", - "ruleContent": "Text “High Voltage” if the voltage meets T.9.1.1", - "parentRuleCode": "EV.4.3.8", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4", - "ruleContent": "Grounded Low Voltage System", - "parentRuleCode": "EV.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.1", - "ruleContent": "The GLV System must be:", - "parentRuleCode": "EV.4.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.1.a", - "ruleContent": "A Low Voltage system that is Grounded to the Chassis", - "parentRuleCode": "EV.4.4.1", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.1.b", - "ruleContent": "Able to operate with Accumulator removed from the vehicle", - "parentRuleCode": "EV.4.4.1", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.2", - "ruleContent": "The GLV System must include a Master Switch, see EV.7.9.1", - "parentRuleCode": "EV.4.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.3", - "ruleContent": "A GLV Measuring Point (GLVMP) must be installed which is:", - "parentRuleCode": "EV.4.4", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.3.a", - "ruleContent": "Connected to GLV System Ground", - "parentRuleCode": "EV.4.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.3.b", - "ruleContent": "Next to the TSMP EV.5.8", - "parentRuleCode": "EV.4.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.3.c", - "ruleContent": "4 mm shrouded banana jack", - "parentRuleCode": "EV.4.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.3.d", - "ruleContent": "Color: Black", - "parentRuleCode": "EV.4.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.3.e", - "ruleContent": "Marked “GND” Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.4.4.3", - "pageNumber": "92" - }, - { - "ruleCode": "EV.4.4.4", - "ruleContent": "Low Voltage Batteries must meet T.9.2", - "parentRuleCode": "EV.4.4", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.5", - "ruleContent": "Accelerator Pedal Position Sensor - APPS Refer to T.4.2 for specific requirements of the APPS", - "parentRuleCode": "EV.4", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.6", - "ruleContent": "Brake System Encoder - BSE Refer to T.4.3 for specific requirements of the BSE", - "parentRuleCode": "EV.4", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.7", - "ruleContent": "APPS / Brake Pedal Plausibility Check", - "parentRuleCode": "EV.4", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.7.1", - "ruleContent": "Must monitor for the two conditions: • The mechanical brakes are engaged EV.4.6, T.3.2.4 • The APPS signals more than 25% Pedal Travel EV.4.5", - "parentRuleCode": "EV.4.7", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.7.2", - "ruleContent": "If the two conditions in EV.4.7.1 occur at the same time:", - "parentRuleCode": "EV.4.7", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.7.2.a", - "ruleContent": "Power to the Motor(s) must be immediately and completely shut down", - "parentRuleCode": "EV.4.7.2", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.7.2.b", - "ruleContent": "The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, with or without brake operation The team must be able to demonstrate these actions at Technical Inspection", - "parentRuleCode": "EV.4.7.2", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.8", - "ruleContent": "Tractive System Part Positioning All parts belonging to the Tractive System must meet F.11", - "parentRuleCode": "EV.4", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.9", - "ruleContent": "Housings and Enclosures", - "parentRuleCode": "EV.4", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.9.1", - "ruleContent": "Each housing or enclosure containing parts of the Tractive System other than Motor housings, must be labelled with the:", - "parentRuleCode": "EV.4.9", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.9.1.a", - "ruleContent": "Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background)", - "parentRuleCode": "EV.4.9.1", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.9.1.b", - "ruleContent": "Text “High Voltage” if the voltage meets T.9.1.1", - "parentRuleCode": "EV.4.9.1", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.9.2", - "ruleContent": "If the material of the housing containing parts of the Tractive System is electrically conductive, it must have a low resistance connection to GLV System Ground, see EV.6.7", - "parentRuleCode": "EV.4.9", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.10", - "ruleContent": "Accumulator Hand Cart", - "parentRuleCode": "EV.4", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.10.1", - "ruleContent": "Teams must have a Hand Cart to transport their Accumulator Container(s)", - "parentRuleCode": "EV.4.10", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.10.2", - "ruleContent": "The Hand Cart must be used when the Accumulator Container(s) are transported on the competition site EV.11.4.2 EV.11.5.1", - "parentRuleCode": "EV.4.10", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.10.3", - "ruleContent": "The Hand Cart must:", - "parentRuleCode": "EV.4.10", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.10.3.a", - "ruleContent": "Be able to carry the load of the Accumulator Container(s) without tipping over", - "parentRuleCode": "EV.4.10.3", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.10.3.b", - "ruleContent": "Contain a minimum of two wheels", - "parentRuleCode": "EV.4.10.3", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.10.3.c", - "ruleContent": "Have a brake that must be: • Released only using a dead man type switch (where the brake is always on until released by pushing and holding a handle) or by manually lifting part of the cart off the ground • Able to stop the Hand Cart with a fully loaded Accumulator Container", - "parentRuleCode": "EV.4.10.3", - "pageNumber": "93" - }, - { - "ruleCode": "EV.4.10.4", - "ruleContent": "Accumulator Container(s) must be securely attached to the Hand Cart Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.4.10", - "pageNumber": "93" - }, - { - "ruleCode": "EV.5", - "ruleContent": "ENERGY STORAGE", - "parentRuleCode": "EV", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.1", - "ruleContent": "Accumulator", - "parentRuleCode": "EV.5", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.1.1", - "ruleContent": "All cells or super capacitors which store the Tractive System energy are built into Accumulator Segments and must be enclosed in (an) Accumulator Container(s).", - "parentRuleCode": "EV.5.1", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.1.2", - "ruleContent": "Each Accumulator Segment must contain: • Static voltage of 120 V DC maximum • Energy of 6 MJ maximum The contained energy of a stack is calculated by multiplying the maximum stack voltage with the nominal capacity of the used cell(s) • Mass of 12 kg maximum", - "parentRuleCode": "EV.5.1", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.1.3", - "ruleContent": "No further energy storage except for reasonably sized intermediate circuit capacitors are allowed after the Energy Meter EV.3.1", - "parentRuleCode": "EV.5.1", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.1.4", - "ruleContent": "All Accumulator Segments and/or Accumulator Containers (including spares and replacement parts) must be identical to the design documented in the ESF and SES", - "parentRuleCode": "EV.5.1", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2", - "ruleContent": "Electrical Configuration", - "parentRuleCode": "EV.5", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.1", - "ruleContent": "All Tractive System components must be rated for the maximum Tractive System voltage", - "parentRuleCode": "EV.5.2", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.2", - "ruleContent": "If the Accumulator Container is made from an electrically conductive material:", - "parentRuleCode": "EV.5.2", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.2.a", - "ruleContent": "The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner wall of the Accumulator Container with an insulating material that is rated for the maximum Tractive System voltage.", - "parentRuleCode": "EV.5.2.2", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.2.b", - "ruleContent": "All conductive surfaces on the outside of the Accumulator Container must have a low resistance connection to the GLV System Ground, see EV.6.7", - "parentRuleCode": "EV.5.2.2", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.2.c", - "ruleContent": "Any conductive penetrations, such as mounting hardware, must be protected against puncturing the insulating barrier.", - "parentRuleCode": "EV.5.2.2", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.3", - "ruleContent": "Each Accumulator Segment must be electrically insulated with suitable Nonflammable Material (F.1.18) (not air) for the two:", - "parentRuleCode": "EV.5.2", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.3.a", - "ruleContent": "Between the segments in the container", - "parentRuleCode": "EV.5.2.3", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.3.b", - "ruleContent": "On top of the segment The intent is to prevent arc flashes caused by inter segment contact or by parts/tools accidentally falling into the container during maintenance for example.", - "parentRuleCode": "EV.5.2.3", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.4", - "ruleContent": "Soldering electrical connections in the high current path is prohibited Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are not part of the high current path. Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.5.2", - "pageNumber": "94" - }, - { - "ruleCode": "EV.5.2.5", - "ruleContent": "Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, must be rated to the maximum Tractive System voltage.", - "parentRuleCode": "EV.5.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3", - "ruleContent": "Maintenance Plugs", - "parentRuleCode": "EV.5", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.1", - "ruleContent": "Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet:", - "parentRuleCode": "EV.5.3", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.1.a", - "ruleContent": "The separated Segments meet voltage and energy limits of EV.5.1.2", - "parentRuleCode": "EV.5.3.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.1.b", - "ruleContent": "The separation must affect the two poles of the Segment", - "parentRuleCode": "EV.5.3.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.2", - "ruleContent": "Maintenance Plugs must:", - "parentRuleCode": "EV.5.3", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.2.a", - "ruleContent": "Require the physical removal or separation of a component. Contactors or switches are not acceptable Maintenance Plugs", - "parentRuleCode": "EV.5.3.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.2.b", - "ruleContent": "Have access after opening the Accumulator Container and not necessary to move or remove any other components", - "parentRuleCode": "EV.5.3.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.2.c", - "ruleContent": "Not be physically possible to make electrical connection in any configuration other than the design intended configuration", - "parentRuleCode": "EV.5.3.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.2.d", - "ruleContent": "Not require tools to install or remove", - "parentRuleCode": "EV.5.3.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.2.e", - "ruleContent": "Include a positive locking feature which prevents the plug from unintentionally becoming loose", - "parentRuleCode": "EV.5.3.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.2.f", - "ruleContent": "Be nonconductive on surfaces that do not provide any electrical connection", - "parentRuleCode": "EV.5.3.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.3.3", - "ruleContent": "When the Accumulator Containers are opened or Segments are removed, the Accumulator Segments must be separated by using the Maintenance Plugs. See EV.11.4.1", - "parentRuleCode": "EV.5.3", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.4", - "ruleContent": "Isolation Relays - IR", - "parentRuleCode": "EV.5", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.4.1", - "ruleContent": "All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more Isolation Relays (IR)", - "parentRuleCode": "EV.5.4", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.4.2", - "ruleContent": "The Isolation Relays must:", - "parentRuleCode": "EV.5.4", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.4.2.a", - "ruleContent": "Be a Normally Open type", - "parentRuleCode": "EV.5.4.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.4.2.b", - "ruleContent": "Open the two poles of the Accumulator", - "parentRuleCode": "EV.5.4.2", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.4.3", - "ruleContent": "When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator Container", - "parentRuleCode": "EV.5.4", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.4.4", - "ruleContent": "The Isolation Relays and any fuses must be separated from the rest of the Accumulator with an electrically insulated and Nonflammable Material (F.1.18).", - "parentRuleCode": "EV.5.4", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.4.5", - "ruleContent": "A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit Opens EV.7.2.2", - "parentRuleCode": "EV.5.4", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5", - "ruleContent": "Manual Service Disconnect - MSD A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two poles of the Accumulator EV.11.3.2", - "parentRuleCode": "EV.5", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.1", - "ruleContent": "The Manual Service Disconnect (MSD) must be:", - "parentRuleCode": "EV.5.5", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.1.a", - "ruleContent": "A directly accessible element, fuse or connector that will visually show disconnected", - "parentRuleCode": "EV.5.5.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.1.b", - "ruleContent": "More than 350 mm from the ground", - "parentRuleCode": "EV.5.5.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.1.c", - "ruleContent": "Easily visible when standing behind the vehicle", - "parentRuleCode": "EV.5.5.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.1.d", - "ruleContent": "Operable in 10 seconds or less by an untrained person", - "parentRuleCode": "EV.5.5.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.1.e", - "ruleContent": "Operable without removing any bodywork or obstruction or using tools Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.5.5.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.1.f", - "ruleContent": "Directly operated. Remote operation through a long handle, rope or wire is not acceptable.", - "parentRuleCode": "EV.5.5.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.1.g", - "ruleContent": "Clearly marked with \"MSD\"", - "parentRuleCode": "EV.5.5.1", - "pageNumber": "95" - }, - { - "ruleCode": "EV.5.5.2", - "ruleContent": "The Energy Meter must not be used as the Manual Service Disconnect (MSD)", - "parentRuleCode": "EV.5.5", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.5.3", - "ruleContent": "An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed", - "parentRuleCode": "EV.5.5", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.5.4", - "ruleContent": "A dummy connector or similar may be used to restore isolation to meet EV.6.1.2", - "parentRuleCode": "EV.5.5", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6", - "ruleContent": "Precharge and Discharge Circuits", - "parentRuleCode": "EV.5", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.1", - "ruleContent": "The Accumulator must contain a Precharge Circuit. The Precharge Circuit must:", - "parentRuleCode": "EV.5.6", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.1.a", - "ruleContent": "Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage before closing the second IR", - "parentRuleCode": "EV.5.6.1", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.1.b", - "ruleContent": "Be supplied from the Shutdown Circuit EV.7.1", - "parentRuleCode": "EV.5.6.1", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.2", - "ruleContent": "The Intermediate Circuit must precharge before closing the second IR", - "parentRuleCode": "EV.5.6", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.2.a", - "ruleContent": "The end of precharge must be controlled by feedback by monitoring the voltage in the Intermediate Circuit", - "parentRuleCode": "EV.5.6.2", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.3", - "ruleContent": "The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be:", - "parentRuleCode": "EV.5.6", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.3.a", - "ruleContent": "Wired in a way that it is always active when the Shutdown Circuit is open", - "parentRuleCode": "EV.5.6.3", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.3.b", - "ruleContent": "Able to discharge the Intermediate Circuit capacitors if the MSD has been opened", - "parentRuleCode": "EV.5.6.3", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.3.c", - "ruleContent": "Not be fused", - "parentRuleCode": "EV.5.6.3", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.3.d", - "ruleContent": "Designed to handle the maximum Tractive System voltage for minimum 15 seconds", - "parentRuleCode": "EV.5.6.3", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.4", - "ruleContent": "Positive Temperature Coefficient (PTC) devices must not be used to limit current for the Precharge Circuit or Discharge Circuit", - "parentRuleCode": "EV.5.6", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.6.5", - "ruleContent": "The precharge relay must be a mechanical type relay", - "parentRuleCode": "EV.5.6", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.7", - "ruleContent": "Voltage Indicator Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is present at the vehicle side of the IRs", - "parentRuleCode": "EV.5", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.7.1", - "ruleContent": "The Voltage Indicator must always function, including when the Accumulator Container is disconnected or removed", - "parentRuleCode": "EV.5.7", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.7.2", - "ruleContent": "The voltage being present at the connectors must directly control the Voltage Indicator using hard wired electronics with no software control.", - "parentRuleCode": "EV.5.7", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.7.3", - "ruleContent": "The control signal which closes the IRs must not control the Voltage Indicator", - "parentRuleCode": "EV.5.7", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.7.4", - "ruleContent": "The Voltage Indicator must:", - "parentRuleCode": "EV.5.7", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.7.4.a", - "ruleContent": "Be located where it is clearly visible when connecting/disconnecting the Accumulator Tractive System connections", - "parentRuleCode": "EV.5.7.4", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.7.4.b", - "ruleContent": "Be labeled “High Voltage Present”", - "parentRuleCode": "EV.5.7.4", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.8", - "ruleContent": "Tractive System Measuring Points - TSMP", - "parentRuleCode": "EV.5", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.8.1", - "ruleContent": "Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are:", - "parentRuleCode": "EV.5.8", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.8.1.a", - "ruleContent": "Connected to the positive and negative motor controller/inverter supply lines", - "parentRuleCode": "EV.5.8.1", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.8.1.b", - "ruleContent": "Next to the Master Switches EV.7.9", - "parentRuleCode": "EV.5.8.1", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.8.1.c", - "ruleContent": "Protected by a nonconductive housing that can be opened without tools Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.5.8.1", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.8.1.d", - "ruleContent": "Protected from being touched with bare hands / fingers once the housing is opened", - "parentRuleCode": "EV.5.8.1", - "pageNumber": "96" - }, - { - "ruleCode": "EV.5.8.2", - "ruleContent": "Two TSMPs must be installed in the Charger EV.8.2 which are:", - "parentRuleCode": "EV.5.8", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.2.a", - "ruleContent": "Connected to the positive and negative Charger output lines", - "parentRuleCode": "EV.5.8.2", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.2.b", - "ruleContent": "Available during charging of any Accumulator(s)", - "parentRuleCode": "EV.5.8.2", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.3", - "ruleContent": "The TSMPs must be:", - "parentRuleCode": "EV.5.8", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.3.a", - "ruleContent": "4 mm shrouded banana jacks rated to an appropriate voltage level", - "parentRuleCode": "EV.5.8.3", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.3.b", - "ruleContent": "Color: Red", - "parentRuleCode": "EV.5.8.3", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.3.c", - "ruleContent": "Marked “HV+” and “HV-“", - "parentRuleCode": "EV.5.8.3", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.4", - "ruleContent": "Each TSMP must be secured with a current limiting resistor.", - "parentRuleCode": "EV.5.8", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.4.a", - "ruleContent": "The resistor must be sized for the voltage: Maximum TS Voltage (Vmax) Resistor Value Vmax <= 200 V DC 5 kOhm 200 V DC < Vmax <= 400 V DC 10 kOhm 400 V DC < Vmax <= 600 V DC 15 kOhm", - "parentRuleCode": "EV.5.8.4", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.4.b", - "ruleContent": "Resistor continuous power rating must be more than the power dissipated across the TSMPs if they are shorted together", - "parentRuleCode": "EV.5.8.4", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.4.c", - "ruleContent": "Direct measurement of the value of the resistor must be possible during Electrical Technical Inspection.", - "parentRuleCode": "EV.5.8.4", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.8.5", - "ruleContent": "Any TSMP must not contain additional Overcurrent Protection.", - "parentRuleCode": "EV.5.8", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.9", - "ruleContent": "Connectors Tractive System connectors outside of a housing must contain an Interlock EV.7.8", - "parentRuleCode": "EV.5", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10", - "ruleContent": "Ready to Move Light", - "parentRuleCode": "EV.5", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.1", - "ruleContent": "The vehicle must have two Ready to Move Lights:", - "parentRuleCode": "EV.5.10", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.1.a", - "ruleContent": "One pointed forward", - "parentRuleCode": "EV.5.10.1", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.1.b", - "ruleContent": "One pointed aft", - "parentRuleCode": "EV.5.10.1", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.2", - "ruleContent": "Each Ready to Move Light must be:", - "parentRuleCode": "EV.5.10", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.2.a", - "ruleContent": "A Marker Light that complies with DOT FMVSS 108", - "parentRuleCode": "EV.5.10.2", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.2.b", - "ruleContent": "Color: Amber", - "parentRuleCode": "EV.5.10.2", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.2.c", - "ruleContent": "Luminous area: minimum 1800 mm 2", - "parentRuleCode": "EV.5.10.2", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.3", - "ruleContent": "Mounting location of each Ready to Move Light must:", - "parentRuleCode": "EV.5.10", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.3.a", - "ruleContent": "Be near the Main Hoop near the highest point of the vehicle", - "parentRuleCode": "EV.5.10.3", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.3.b", - "ruleContent": "Be inside the Rollover Protection Envelope F.1.13", - "parentRuleCode": "EV.5.10.3", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.3.c", - "ruleContent": "Be no lower than 150 mm from the highest point of the Main Hoop", - "parentRuleCode": "EV.5.10.3", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.3.d", - "ruleContent": "Not allow contact with the driver’s helmet in any circumstances", - "parentRuleCode": "EV.5.10.3", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.3.e", - "ruleContent": "Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm horizontal radius from the light Visibility is checked with Bodywork and Aerodynamic Devices in place Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.5.10.3", - "pageNumber": "97" - }, - { - "ruleCode": "EV.5.10.4", - "ruleContent": "The Ready to Move Light must:", - "parentRuleCode": "EV.5.10", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.10.4.a", - "ruleContent": "Be powered by the GLV system", - "parentRuleCode": "EV.5.10.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.10.4.b", - "ruleContent": "Be directly controlled by the voltage present in the Tractive System using hard wired electronics. EV.6.5.4 Software control is not permitted.", - "parentRuleCode": "EV.5.10.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.10.4.c", - "ruleContent": "Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage outside the Accumulator Container(s) exceeds T.9.1.1", - "parentRuleCode": "EV.5.10.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.10.4.d", - "ruleContent": "Not do any other functions", - "parentRuleCode": "EV.5.10.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11", - "ruleContent": "Tractive System Status Indicator", - "parentRuleCode": "EV.5", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.1", - "ruleContent": "The vehicle must have a Tractive System Status Indicator", - "parentRuleCode": "EV.5.11", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.2", - "ruleContent": "The Tractive System Status Indicator must have two separate Red and Green Status Lights", - "parentRuleCode": "EV.5.11", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.3", - "ruleContent": "Each of the Status Lights:", - "parentRuleCode": "EV.5.11", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.3.a", - "ruleContent": "Must have a minimum luminous area of 130 mm 2", - "parentRuleCode": "EV.5.11.3", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.3.b", - "ruleContent": "Must be visible in direct sunlight", - "parentRuleCode": "EV.5.11.3", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.3.c", - "ruleContent": "May have one or more of the same elements", - "parentRuleCode": "EV.5.11.3", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.4", - "ruleContent": "Mounting location of the Tractive System Status Indicator must:", - "parentRuleCode": "EV.5.11", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.4.a", - "ruleContent": "Be near the Main Hoop at the highest point of the vehicle", - "parentRuleCode": "EV.5.11.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.4.b", - "ruleContent": "Be above the Ready to Move Light", - "parentRuleCode": "EV.5.11.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.4.c", - "ruleContent": "Be inside the Rollover Protection Envelope F.1.13", - "parentRuleCode": "EV.5.11.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.4.d", - "ruleContent": "Be no lower than 150 mm from the highest point of the Main Hoop", - "parentRuleCode": "EV.5.11.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.4.e", - "ruleContent": "Not allow contact with the driver’s helmet in any circumstances", - "parentRuleCode": "EV.5.11.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.4.f", - "ruleContent": "Easily visible to a person near the vehicle", - "parentRuleCode": "EV.5.11.4", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.5", - "ruleContent": "The Tractive System Status Indicator must show when the GLV System is energized: Condition Green Light Red Light", - "parentRuleCode": "EV.5.11", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.5.a", - "ruleContent": "No Faults Always ON OFF", - "parentRuleCode": "EV.5.11.5", - "pageNumber": "98" - }, - { - "ruleCode": "EV.5.11.5.b", - "ruleContent": "Fault in one or the two: BMS EV.7.3.5 or IMD EV.7.6.5 OFF Flash 2 Hz to 5 Hz, 50% duty cycle", - "parentRuleCode": "EV.5.11.5", - "pageNumber": "98" - }, - { - "ruleCode": "EV.6", - "ruleContent": "ELECTRICAL SYSTEM", - "parentRuleCode": "EV", - "pageNumber": "98" - }, - { - "ruleCode": "EV.6.1", - "ruleContent": "Covers", - "parentRuleCode": "EV.6", - "pageNumber": "98" - }, - { - "ruleCode": "EV.6.1.1", - "ruleContent": "Nonconductive material or covers must prevent inadvertent human contact with any Tractive System voltage. Covers must be secure and sufficiently rigid. Removable Bodywork is not suitable to enclose Tractive System connections.", - "parentRuleCode": "EV.6.1", - "pageNumber": "98" - }, - { - "ruleCode": "EV.6.1.2", - "ruleContent": "Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated test probe must not be possible when the Tractive System enclosures are in place.", - "parentRuleCode": "EV.6.1", - "pageNumber": "98" - }, - { - "ruleCode": "EV.6.1.3", - "ruleContent": "Tractive System components and Accumulator Containers must be protected from moisture, rain or puddles. A rating of IP65 is recommended Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.6.1", - "pageNumber": "98" - }, - { - "ruleCode": "EV.6.2", - "ruleContent": "Insulation", - "parentRuleCode": "EV.6", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.2.1", - "ruleContent": "Insulation material must:", - "parentRuleCode": "EV.6.2", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.2.1.a", - "ruleContent": "Be appropriate for the expected surrounding temperatures", - "parentRuleCode": "EV.6.2.1", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.2.1.b", - "ruleContent": "Have a minimum temperature rating of 90°C", - "parentRuleCode": "EV.6.2.1", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.2.2", - "ruleContent": "Insulating tape or paint may be part of the insulation, but must not be the only insulation.", - "parentRuleCode": "EV.6.2", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3", - "ruleContent": "Wiring", - "parentRuleCode": "EV.6", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.1", - "ruleContent": "All wires and terminals and other conductors used in the Tractive System must be sized for the continuous current they will conduct", - "parentRuleCode": "EV.6.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.2", - "ruleContent": "All Tractive System wiring must:", - "parentRuleCode": "EV.6.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.2.a", - "ruleContent": "Be marked with wire gauge, temperature rating and insulation voltage rating. A serial number or a norm printed on the wire is sufficient if this serial number or norm is clearly bound to the wire characteristics for example by a data sheet.", - "parentRuleCode": "EV.6.3.2", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.2.b", - "ruleContent": "Have temperature rating more than or equal to 90°C", - "parentRuleCode": "EV.6.3.2", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.3", - "ruleContent": "Tractive System wiring must be:", - "parentRuleCode": "EV.6.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.3.a", - "ruleContent": "Done to professional standards with sufficient strain relief", - "parentRuleCode": "EV.6.3.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.3.b", - "ruleContent": "Protected from loosening due to vibration", - "parentRuleCode": "EV.6.3.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.3.c", - "ruleContent": "Protected against damage by rotating and / or moving parts", - "parentRuleCode": "EV.6.3.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.3.d", - "ruleContent": "Located out of the way of possible snagging or damage", - "parentRuleCode": "EV.6.3.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.4", - "ruleContent": "Any Tractive System wiring that runs outside of electrical enclosures:", - "parentRuleCode": "EV.6.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.4.a", - "ruleContent": "Must meet one of the two: • Enclosed in separate orange nonconductive conduit • Use an orange shielded cable", - "parentRuleCode": "EV.6.3.4", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.4.b", - "ruleContent": "The conduit or shielded cable must be securely anchored at each end to allow it to withstand a force of 200 N without straining the cable end crimp", - "parentRuleCode": "EV.6.3.4", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.4.c", - "ruleContent": "Any shielded cable must have the shield grounded", - "parentRuleCode": "EV.6.3.4", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.3.5", - "ruleContent": "Wiring that is not part of the Tractive System must not use orange wiring or conduit.", - "parentRuleCode": "EV.6.3", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.4", - "ruleContent": "Connections", - "parentRuleCode": "EV.6", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.4.1", - "ruleContent": "All Tractive System connections must:", - "parentRuleCode": "EV.6.4", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.4.1.a", - "ruleContent": "Be designed to use intentional current paths through conductors designed for electrical current", - "parentRuleCode": "EV.6.4.1", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.4.1.b", - "ruleContent": "Not rely on steel bolts to be the primary conductor", - "parentRuleCode": "EV.6.4.1", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.4.1.c", - "ruleContent": "Not include compressible material such as plastic in the stack-up", - "parentRuleCode": "EV.6.4.1", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.4.2", - "ruleContent": "If external, uninsulated heat sinks are used, they must be properly grounded to the GLV System Ground, see EV.6.7", - "parentRuleCode": "EV.6.4", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.4.3", - "ruleContent": "Bolted electrical connections in the high current path of the Tractive System must include a positive locking feature to prevent unintentional loosening Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. Bolts with nylon patches are allowed for blind connections into OEM components. Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.6.4", - "pageNumber": "99" - }, - { - "ruleCode": "EV.6.4.4", - "ruleContent": "Information about the electrical connections supporting the high current path must be available at Electrical Technical Inspection", - "parentRuleCode": "EV.6.4", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5", - "ruleContent": "Voltage Separation", - "parentRuleCode": "EV.6", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.1", - "ruleContent": "Separation of Tractive System and GLV System:", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.1.a", - "ruleContent": "The entire Tractive System and GLV System must be completely galvanically separated.", - "parentRuleCode": "EV.6.5.1", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.1.b", - "ruleContent": "The border between Tractive System and GLV System is the galvanic isolation between the two systems. Some components, such as the Motor Controller, may be part of both systems.", - "parentRuleCode": "EV.6.5.1", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.2", - "ruleContent": "There must be no connection between the Chassis of the vehicle (or any other conductive surface that might be inadvertently touched by a person), and any part of any Tractive System circuits.", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.3", - "ruleContent": "Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.4", - "ruleContent": "GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.5.10.duplicate", - "ruleContent": "the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator Container.", - "parentRuleCode": "EV.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.5", - "ruleContent": "Where Tractive System and GLV are included inside the same enclosure, they must meet one of the two:", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.5.a", - "ruleContent": "Be separated by insulating barriers (in addition to the insulation on the wire) made of moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or higher (such as Nomex based electrical insulation)", - "parentRuleCode": "EV.6.5.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.5.b", - "ruleContent": "Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: U < 100 V DC 10 mm 100 V DC < U < 200 V DC 20 mm U > 200 V DC 30 mm", - "parentRuleCode": "EV.6.5.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.6", - "ruleContent": "Spacing must be clearly defined. Components and cables capable of movement must be positively restrained to maintain spacing.", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.7", - "ruleContent": "If Tractive System and GLV are on the same circuit board:", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.7.a", - "ruleContent": "They must be on separate, clearly defined and clearly marked areas of the board", - "parentRuleCode": "EV.6.5.7", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.7.b", - "ruleContent": "Required spacing related to the spacing between traces / board areas are as follows: Voltage Over Surface Thru Air (cut in board) Under Conformal Coating 0-50 V DC 1.6 mm 1.6 mm 1 mm 50-150 V DC 6.4 mm 3.2 mm 2 mm 150-300 V DC 9.5 mm 6.4 mm 3 mm 300-600 V DC 12.7 mm 9.5 mm 4 mm", - "parentRuleCode": "EV.6.5.7", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.8", - "ruleContent": "Teams must be prepared to show spacing on team built equipment For inaccessible circuitry, spare boards or appropriate photographs must be available for inspection", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.5.9", - "ruleContent": "All connections to external devices such as laptops from a Tractive System component must include galvanic isolation Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.6.5", - "pageNumber": "100" - }, - { - "ruleCode": "EV.6.6", - "ruleContent": "Overcurrent Protection", - "parentRuleCode": "EV.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.1", - "ruleContent": "All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent Protection/Fusing.", - "parentRuleCode": "EV.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.2", - "ruleContent": "Unless otherwise allowed in the Rules, all Overcurrent Protection devices must:", - "parentRuleCode": "EV.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.2.a", - "ruleContent": "Be rated for the highest voltage in the systems they protect. Overcurrent Protection devices used for DC must be rated for DC and must carry a DC rating equal to or more than the system voltage", - "parentRuleCode": "EV.6.6.2", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.2.b", - "ruleContent": "Have a continuous current rating less than or equal to the continuous current rating of any electrical component that it protects", - "parentRuleCode": "EV.6.6.2", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.2.c", - "ruleContent": "Have an interrupt current rating higher than the theoretical short circuit current of the system that it protects", - "parentRuleCode": "EV.6.6.2", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.3", - "ruleContent": "Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, strings of capacitors, or conductors must have individual Overcurrent Protection.", - "parentRuleCode": "EV.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.4", - "ruleContent": "Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of:", - "parentRuleCode": "EV.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.4.a", - "ruleContent": "Be appropriately sized for the total current that the individual Overcurrent Protection devices could transmit", - "parentRuleCode": "EV.6.6.4", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.4.b", - "ruleContent": "Contain additional Overcurrent Protection to protect the conductors", - "parentRuleCode": "EV.6.6.4", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.5", - "ruleContent": "Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be used when all three conditions are met: • An Overcurrent Protection device rated at less than or equal to one third the sum of the parallel fusible links and complying with EV.6.6.2.b above is connected in series. • The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a fault is detected. • Fusible link current rating is specified in manufacturer’s data or suitable test data is provided.", - "parentRuleCode": "EV.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.6", - "ruleContent": "If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, the reduced conductor longer than 150 mm must have additional Overcurrent Protection. This additional Overcurrent Protection must be:", - "parentRuleCode": "EV.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.6.a", - "ruleContent": "150 mm or less from the source end of the reduced conductor", - "parentRuleCode": "EV.6.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.6.b", - "ruleContent": "On the positive and the negative conductors in the Tractive System", - "parentRuleCode": "EV.6.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.6.c", - "ruleContent": "On the positive conductor in the Grounded Low Voltage System", - "parentRuleCode": "EV.6.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.6.7", - "ruleContent": "Cells with internal Overcurrent Protection may be used without external Overcurrent Protection if suitably rated. Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and conditions of EV.6.6.5 above will apply.", - "parentRuleCode": "EV.6.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.7", - "ruleContent": "Grounding", - "parentRuleCode": "EV.6", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.7.1", - "ruleContent": "Grounding is required for:", - "parentRuleCode": "EV.6.7", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.7.1.a", - "ruleContent": "Parts of the vehicle which are 100 mm or less from any Tractive System component", - "parentRuleCode": "EV.6.7.1", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.7.1.b", - "ruleContent": "(EV only) The Firewall T.1.8.4", - "parentRuleCode": "EV.6.7.1", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.7.2", - "ruleContent": "Grounded parts of the vehicle must have a resistance to GLV System Ground less than the values specified below. Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.6.7", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.7.2.a", - "ruleContent": "Electrically conductive parts 300 mOhms (measured with a current of 1 A) Examples: parts made of steel, (anodized) aluminum, any other metal parts", - "parentRuleCode": "EV.6.7.2", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.7.2.b", - "ruleContent": "Parts which may become electrically conductive 5 Ohm Example: carbon fiber parts Carbon fiber parts may need special measures such as using copper mesh or similar to keep the ground resistance below 5 Ohms.", - "parentRuleCode": "EV.6.7.2", - "pageNumber": "101" - }, - { - "ruleCode": "EV.6.7.3", - "ruleContent": "Electrical conductivity of any part may be tested by checking any point which is likely to be conductive. Where no convenient conductive point is available, an area of coating may be removed.", - "parentRuleCode": "EV.6.7", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7", - "ruleContent": "SHUTDOWN SYSTEM", - "parentRuleCode": "EV", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1", - "ruleContent": "Shutdown Circuit", - "parentRuleCode": "EV.7", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1", - "ruleContent": "The Shutdown Circuit consists of these components, connected in series:", - "parentRuleCode": "EV.7.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1.a", - "ruleContent": "Battery Management System (BMS) EV.7.3", - "parentRuleCode": "EV.7.1.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1.b", - "ruleContent": "Insulation Monitoring Device (IMD) EV.7.6", - "parentRuleCode": "EV.7.1.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1.c", - "ruleContent": "Brake System Plausibility Device (BSPD) EV.7.7", - "parentRuleCode": "EV.7.1.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1.d", - "ruleContent": "Interlocks (as required) EV.7.8", - "parentRuleCode": "EV.7.1.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1.e", - "ruleContent": "Master Switches (GLVMS, TSMS) EV.7.9", - "parentRuleCode": "EV.7.1.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1.f", - "ruleContent": "Shutdown Buttons EV.7.10", - "parentRuleCode": "EV.7.1.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1.g", - "ruleContent": "Brake Over Travel Switch (BOTS) T.3.3", - "parentRuleCode": "EV.7.1.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.1.h", - "ruleContent": "Inertia Switch T.9.4", - "parentRuleCode": "EV.7.1.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.2", - "ruleContent": "The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the Precharge Circuit Relay.", - "parentRuleCode": "EV.7.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.3", - "ruleContent": "The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open", - "parentRuleCode": "EV.7.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.4", - "ruleContent": "The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown Circuit. The design of the respective circuits must make sure that a failure cannot result in electrical power being fed back into the Shutdown Circuit.", - "parentRuleCode": "EV.7.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.5", - "ruleContent": "The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown Circuit current", - "parentRuleCode": "EV.7.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.1.6", - "ruleContent": "The team must be able to demonstrate all features and functions of the Shutdown Circuit and components at Electrical Technical Inspection. Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.7.1", - "pageNumber": "102" - }, - { - "ruleCode": "EV.7.2", - "ruleContent": "Shutdown Circuit Operation", - "parentRuleCode": "EV.7", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.1", - "ruleContent": "The Shutdown Circuit must Open when any of these exist:", - "parentRuleCode": "EV.7.2", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.1.a", - "ruleContent": "Operation of, or detection from any of the components listed in EV.7.1.1", - "parentRuleCode": "EV.7.2.1", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.1.b", - "ruleContent": "Any shutdown of the GLV System", - "parentRuleCode": "EV.7.2.1", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.2", - "ruleContent": "When the Shutdown Circuit Opens:", - "parentRuleCode": "EV.7.2", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.2.a", - "ruleContent": "The Tractive System must Shutdown", - "parentRuleCode": "EV.7.2.2", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.2.b", - "ruleContent": "All Accumulator current flow must stop immediately EV.5.4.3", - "parentRuleCode": "EV.7.2.2", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.2.c", - "ruleContent": "The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less", - "parentRuleCode": "EV.7.2.2", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.2.d", - "ruleContent": "The Motor(s) must spin free. Torque must not be applied to the Motor(s)", - "parentRuleCode": "EV.7.2.2", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.3", - "ruleContent": "When the BMS, IMD or BSPD Open the Shutdown Circuit:", - "parentRuleCode": "EV.7.2", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.3.a", - "ruleContent": "The Tractive System must stay disabled until manually reset", - "parentRuleCode": "EV.7.2.3", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.3.b", - "ruleContent": "The Tractive System must be reset only by manual action of a person directly at the vehicle", - "parentRuleCode": "EV.7.2.3", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.3.c", - "ruleContent": "The driver must not be able to reactivate the Tractive System from inside the vehicle", - "parentRuleCode": "EV.7.2.3", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.2.3.d", - "ruleContent": "Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close", - "parentRuleCode": "EV.7.2.3", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.3", - "ruleContent": "Battery Management System - BMS", - "parentRuleCode": "EV.7", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.3.1", - "ruleContent": "A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and Temperature EV.7.5 when the:", - "parentRuleCode": "EV.7.3", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.3.1.a", - "ruleContent": "Tractive System is Active EV.11.5", - "parentRuleCode": "EV.7.3.1", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.3.1.b", - "ruleContent": "Accumulator is connected to a Charger EV.8.3", - "parentRuleCode": "EV.7.3.1", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.3.2", - "ruleContent": "The BMS must have galvanic isolation at each segment to segment boundary, as approved in the ESF", - "parentRuleCode": "EV.7.3", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.3.3", - "ruleContent": "Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) Chas s is Master Switch Brake System Plausibility Device Ba ery Management System TSMP HV+ Trac ve System le right Shutdown Bu ons GLV System GLV System Trac ve System Accumulator Fuse(s) IR Accumulator Container(s) Trac ve System cockpit IR Precharge Precharge Control GLV Ba ery Interlock(s) GND GLVMP HV TSMP Iner a Switch Brake System Plausibility Device Insula on Monitoring Device Brake Over Travel Switch MSD Interlock LV TS le right GLV System Master Switch GLV System GLV Fuse Trac ve System Trac ve System Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.7.3", - "pageNumber": "103" - }, - { - "ruleCode": "EV.7.3.4", - "ruleContent": "The BMS must monitor for:", - "parentRuleCode": "EV.7.3", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.4.a", - "ruleContent": "Voltage values outside the allowable range EV.7.4.2", - "parentRuleCode": "EV.7.3.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.4.b", - "ruleContent": "Voltage sense Overcurrent Protection device(s) blown or tripped", - "parentRuleCode": "EV.7.3.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.4.c", - "ruleContent": "Temperature values outside the allowable range EV.7.5.2", - "parentRuleCode": "EV.7.3.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.4.d", - "ruleContent": "Missing or interrupted voltage or temperature measurements", - "parentRuleCode": "EV.7.3.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.4.e", - "ruleContent": "A fault in the BMS", - "parentRuleCode": "EV.7.3.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.5", - "ruleContent": "If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must:", - "parentRuleCode": "EV.7.3", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.5.a", - "ruleContent": "Open the Shutdown Circuit EV.7.2.2", - "parentRuleCode": "EV.7.3.5", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.5.b", - "ruleContent": "Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 The two lights must stay on until the BMS is manually reset EV.7.2.3", - "parentRuleCode": "EV.7.3.5", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.6", - "ruleContent": "The BMS Indicator Light must be:", - "parentRuleCode": "EV.7.3", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.6.a", - "ruleContent": "Color: Red", - "parentRuleCode": "EV.7.3.6", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.6.b", - "ruleContent": "Clearly visible to the seated driver in bright sunlight", - "parentRuleCode": "EV.7.3.6", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.3.6.c", - "ruleContent": "Clearly marked with the lettering “BMS”", - "parentRuleCode": "EV.7.3.6", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4", - "ruleContent": "Accumulator Voltage", - "parentRuleCode": "EV.7", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.1", - "ruleContent": "The BMS must measure the cell voltage of each cell When single cells are directly connected in parallel, only one voltage measurement is needed", - "parentRuleCode": "EV.7.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.2", - "ruleContent": "Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels stated in the cell data sheet. Measurement accuracy must be considered.", - "parentRuleCode": "EV.7.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.3", - "ruleContent": "All voltage sense wires to the BMS must meet one of:", - "parentRuleCode": "EV.7.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.3.a", - "ruleContent": "Have Overcurrent Protection EV.7.4.4 below", - "parentRuleCode": "EV.7.4.3", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.3.b", - "ruleContent": "Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below", - "parentRuleCode": "EV.7.4.3", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.4", - "ruleContent": "When used, Overcurrent Protection for the BMS voltage sense wires must meet the two:", - "parentRuleCode": "EV.7.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.4.a", - "ruleContent": "The Overcurrent Protection must occur in the conductor, wire or PCB trace which is directly connected to the cell tab.", - "parentRuleCode": "EV.7.4.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.4.b", - "ruleContent": "The voltage rating of the Overcurrent Protection must be equal to or higher than the maximum segment voltage", - "parentRuleCode": "EV.7.4.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.4.5", - "ruleContent": "Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: • BMS is a distributed BMS system (one cell measurement per board) • Sense wire length is less than 25 mm • BMS board has Overcurrent Protection", - "parentRuleCode": "EV.7.4", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.5", - "ruleContent": "Accumulator Temperature", - "parentRuleCode": "EV.7", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.5.1", - "ruleContent": "The BMS must measure the temperatures of critical points of the Accumulator", - "parentRuleCode": "EV.7.5", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.5.2", - "ruleContent": "Temperatures (considering measurement accuracy) must stay below the lower of the two: • The maximum cell temperature limit stated in the cell data sheet • 60°C", - "parentRuleCode": "EV.7.5", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.5.3", - "ruleContent": "Cell temperatures must be measured at the negative terminal of the respective cell Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.7.5", - "pageNumber": "104" - }, - { - "ruleCode": "EV.7.5.4", - "ruleContent": "The temperature sensor used must be in direct contact with one of: • The negative terminal itself • The negative terminal busbar less than 10 mm away from the spot weld or clamping source on the negative cell terminal", - "parentRuleCode": "EV.7.5", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.5.5", - "ruleContent": "For lithium based cells,", - "parentRuleCode": "EV.7.5", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.5.5.a", - "ruleContent": "The temperature of a minimum of 20% of the cells must be monitored by the BMS", - "parentRuleCode": "EV.7.5.5", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.5.5.b", - "ruleContent": "The monitored cells must be equally distributed inside the Accumulator Container(s) The temperature of each cell should be monitored", - "parentRuleCode": "EV.7.5.5", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.5.6", - "ruleContent": "Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells sensed by the sensor.", - "parentRuleCode": "EV.7.5", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.5.7", - "ruleContent": "Temperature sensors must have appropriate electrical isolation that meets one of the two: • Between the sensor and cell • In the sensing circuit The isolation must consider GLV/TS isolation as well as common mode voltages between sense locations.", - "parentRuleCode": "EV.7.5", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6", - "ruleContent": "Insulation Monitoring Device - IMD", - "parentRuleCode": "EV.7", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.1", - "ruleContent": "The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System", - "parentRuleCode": "EV.7.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.2", - "ruleContent": "The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved alternate equivalent IMD Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD", - "parentRuleCode": "EV.7.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.3", - "ruleContent": "The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the maximum Tractive System operation voltage.", - "parentRuleCode": "EV.7.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.4", - "ruleContent": "The IMD must monitor the Tractive System for:", - "parentRuleCode": "EV.7.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.4.a", - "ruleContent": "An isolation failure", - "parentRuleCode": "EV.7.6.4", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.4.b", - "ruleContent": "A failure in the IMD operation This must be done without the influence of any programmable logic.", - "parentRuleCode": "EV.7.6.4", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.5", - "ruleContent": "If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must:", - "parentRuleCode": "EV.7.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.5.a", - "ruleContent": "Open the Shutdown Circuit EV.7.2.2", - "parentRuleCode": "EV.7.6.5", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.5.b", - "ruleContent": "Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 The two lights must stay on until the IMD is manually reset EV.7.2.3", - "parentRuleCode": "EV.7.6.5", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.6", - "ruleContent": "The IMD Indicator Light must be:", - "parentRuleCode": "EV.7.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.6.a", - "ruleContent": "Color: Red", - "parentRuleCode": "EV.7.6.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.6.b", - "ruleContent": "Clearly visible to the seated driver in bright sunlight", - "parentRuleCode": "EV.7.6.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.6.6.c", - "ruleContent": "Clearly marked with the lettering “IMD”", - "parentRuleCode": "EV.7.6.6", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.7", - "ruleContent": "Brake System Plausibility Device - BSPD", - "parentRuleCode": "EV.7", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.7.1", - "ruleContent": "The vehicle must have a standalone nonprogrammable circuit to check for simultaneous braking and high power output The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7)", - "parentRuleCode": "EV.7.7", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.7.2", - "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: Version 1.0 31 Aug 2024 • Demand for Hard Braking EV.4.6 • Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit is delivered to the Motor(s) at the nominal battery voltage The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips", - "parentRuleCode": "EV.7.7", - "pageNumber": "105" - }, - { - "ruleCode": "EV.7.7.3", - "ruleContent": "The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in any sensor input", - "parentRuleCode": "EV.7.7", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.7.4", - "ruleContent": "The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection.", - "parentRuleCode": "EV.7.7", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.7.4.a", - "ruleContent": "Power must not be sent to the Motor(s) of the vehicle during the test", - "parentRuleCode": "EV.7.7.4", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.7.4.b", - "ruleContent": "The test must prove the function of the complete BSPD in the vehicle, including the current sensor The suggested test would introduce a current by a separate wire from an external power supply simulating the Tractive System current while pressing the brake pedal", - "parentRuleCode": "EV.7.7.4", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8", - "ruleContent": "Interlocks", - "parentRuleCode": "EV.7", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.1", - "ruleContent": "Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 )", - "parentRuleCode": "EV.7.8", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.2", - "ruleContent": "Additional Interlocks may be included in the Tractive System or components", - "parentRuleCode": "EV.7.8", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.3", - "ruleContent": "The Interlock is a wire or connection that must:", - "parentRuleCode": "EV.7.8", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.3.a", - "ruleContent": "Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted", - "parentRuleCode": "EV.7.8.3", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.3.b", - "ruleContent": "Not be in the low (ground) connection to the IR coils of the Shutdown Circuit", - "parentRuleCode": "EV.7.8.3", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.4", - "ruleContent": "Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive System wiring or components when the Interlock circuit is:", - "parentRuleCode": "EV.7.8", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.4.a", - "ruleContent": "In the same wiring harness as Tractive System wiring", - "parentRuleCode": "EV.7.8.4", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.4.b", - "ruleContent": "Part of a Tractive System Connector EV.5.9", - "parentRuleCode": "EV.7.8.4", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.8.4.c", - "ruleContent": "Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the connection to a Tractive System connector", - "parentRuleCode": "EV.7.8.4", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9", - "ruleContent": "Master Switches", - "parentRuleCode": "EV.7", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.1", - "ruleContent": "Each vehicle must have two Master Switches that must:", - "parentRuleCode": "EV.7.9", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.1.a", - "ruleContent": "Meet T.9.3 for Configuration and Location", - "parentRuleCode": "EV.7.9.1", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.1.b", - "ruleContent": "Be direct acting, not act through a relay or logic", - "parentRuleCode": "EV.7.9.1", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.2", - "ruleContent": "The Grounded Low Voltage Master Switch (GLVMS) must:", - "parentRuleCode": "EV.7.9", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.2.a", - "ruleContent": "Completely stop all power to the GLV System EV.4.4", - "parentRuleCode": "EV.7.9.2", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.2.b", - "ruleContent": "Be in the center of a completely red circular area of > 50 mm in diameter", - "parentRuleCode": "EV.7.9.2", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.2.c", - "ruleContent": "Be labeled “LV”", - "parentRuleCode": "EV.7.9.2", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.3", - "ruleContent": "The Tractive System Master Switch (TSMS) must:", - "parentRuleCode": "EV.7.9", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.3.a", - "ruleContent": "Open the Shutdown Circuit in the OFF position EV.7.2.2", - "parentRuleCode": "EV.7.9.3", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.3.b", - "ruleContent": "Be the last switch before the IRs except for Precharge circuitry and Interlocks.", - "parentRuleCode": "EV.7.9.3", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.3.c", - "ruleContent": "Be in the center of a completely orange circular area of > 50 mm in diameter", - "parentRuleCode": "EV.7.9.3", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.3.d", - "ruleContent": "Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow background).", - "parentRuleCode": "EV.7.9.3", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.9.3.e", - "ruleContent": "Be fitted with a \"lockout/tagout\" capability in the OFF position EV.11.3.1 Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.7.9.3", - "pageNumber": "106" - }, - { - "ruleCode": "EV.7.10", - "ruleContent": "Shutdown Buttons", - "parentRuleCode": "EV.7", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.1", - "ruleContent": "Three Shutdown Buttons must be installed on the vehicle", - "parentRuleCode": "EV.7.10", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.2", - "ruleContent": "Each Shutdown Button must:", - "parentRuleCode": "EV.7.10", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.2.a", - "ruleContent": "Be a push-pull or push-rotate emergency stop switch", - "parentRuleCode": "EV.7.10.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.2.b", - "ruleContent": "Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position", - "parentRuleCode": "EV.7.10.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.2.c", - "ruleContent": "Hold when operated to the OFF position", - "parentRuleCode": "EV.7.10.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.2.d", - "ruleContent": "Let the Shutdown Circuit Close when operated to the ON position", - "parentRuleCode": "EV.7.10.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.3", - "ruleContent": "One Shutdown Button must be on each side of the vehicle which:", - "parentRuleCode": "EV.7.10", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.3.a", - "ruleContent": "Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop Bracing F.5.9", - "parentRuleCode": "EV.7.10.3", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.3.b", - "ruleContent": "Has a diameter of 40 mm minimum", - "parentRuleCode": "EV.7.10.3", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.3.c", - "ruleContent": "Must not be easily removable or mounted onto removable body work", - "parentRuleCode": "EV.7.10.3", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.4", - "ruleContent": "One Shutdown Button must be mounted in the cockpit which:", - "parentRuleCode": "EV.7.10", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.4.a", - "ruleContent": "Is located in easy reach of the belted in driver, adjacent to the steering wheel, and unobstructed by the steering wheel or any other part of the vehicle", - "parentRuleCode": "EV.7.10.4", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.4.b", - "ruleContent": "Has diameter of 24 mm minimum", - "parentRuleCode": "EV.7.10.4", - "pageNumber": "107" - }, - { - "ruleCode": "EV.7.10.5", - "ruleContent": "The international electrical symbol (a red spark on a white edged blue triangle) must be near each Shutdown Button.", - "parentRuleCode": "EV.7.10", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8", - "ruleContent": "CHARGER REQUIREMENTS", - "parentRuleCode": "EV", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.1", - "ruleContent": "Charger Requirements", - "parentRuleCode": "EV.8", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.1.1", - "ruleContent": "All features and functions of the Charger and Charging Shutdown Circuit must be demonstrated at Electrical Technical Inspection. IN.4.1", - "parentRuleCode": "EV.8.1", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.1.2", - "ruleContent": "Chargers will be sealed after approval. IN.4.7.1", - "parentRuleCode": "EV.8.1", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2", - "ruleContent": "Charger Features", - "parentRuleCode": "EV.8", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.1", - "ruleContent": "The Charger must be galvanically isolated (AC) input to (DC) output.", - "parentRuleCode": "EV.8.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.2", - "ruleContent": "If the Charger housing is conductive it must be connected to the earth ground of the AC input.", - "parentRuleCode": "EV.8.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.3", - "ruleContent": "All connections of the Charger(s) must be isolated and covered.", - "parentRuleCode": "EV.8.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.4", - "ruleContent": "The Charger connector(s) must incorporate a feature to let the connector become live only when correctly connected to the Accumulator.", - "parentRuleCode": "EV.8.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.5", - "ruleContent": "High Voltage charging leads must be orange", - "parentRuleCode": "EV.8.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.6", - "ruleContent": "The Charger must have two TSMPs installed, see EV.5.8.2", - "parentRuleCode": "EV.8.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.7", - "ruleContent": "The Charger must include a Charger Shutdown Button which must:", - "parentRuleCode": "EV.8.2", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.7.a", - "ruleContent": "Be a push-pull or push-rotate emergency stop switch", - "parentRuleCode": "EV.8.2.7", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.7.b", - "ruleContent": "Have a minimum diameter of 25 mm", - "parentRuleCode": "EV.8.2.7", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.7.c", - "ruleContent": "Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position", - "parentRuleCode": "EV.8.2.7", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.7.d", - "ruleContent": "Hold when operated to the OFF position", - "parentRuleCode": "EV.8.2.7", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.2.7.e", - "ruleContent": "Be labelled with the international electrical symbol (a red spark on a white edged blue triangle) Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.8.2.7", - "pageNumber": "107" - }, - { - "ruleCode": "EV.8.3", - "ruleContent": "Charging Shutdown Circuit", - "parentRuleCode": "EV.8", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.3.1", - "ruleContent": "The Charging Shutdown Circuit consists of:", - "parentRuleCode": "EV.8.3", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.3.1.a", - "ruleContent": "Charger Shutdown Button EV.8.2.7", - "parentRuleCode": "EV.8.3.1", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.3.1.b", - "ruleContent": "Battery Management System (BMS) EV.7.3", - "parentRuleCode": "EV.8.3.1", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.3.1.c", - "ruleContent": "Insulation Monitoring Device (IMD) EV.7.6", - "parentRuleCode": "EV.8.3.1", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.3.2", - "ruleContent": "The BMS and IMD parts of the Charging Shutdown Circuit must:", - "parentRuleCode": "EV.8.3", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.3.2.a", - "ruleContent": "Be designed as Normally Open contacts", - "parentRuleCode": "EV.8.3.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.3.2.b", - "ruleContent": "Have completely independent circuits to Open the Charging Shutdown Circuit. Design of the respective circuits must make sure that a failure cannot result in electrical power being fed back into the Charging Shutdown Circuit.", - "parentRuleCode": "EV.8.3.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4", - "ruleContent": "Charging Shutdown Circuit Operation", - "parentRuleCode": "EV.8", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4.1", - "ruleContent": "When Charging, the BMS and IMD must:", - "parentRuleCode": "EV.8.4", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4.1.a", - "ruleContent": "Monitor the Accumulator", - "parentRuleCode": "EV.8.4.1", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4.1.b", - "ruleContent": "Open the Charging Shutdown Circuit if a fault is detected", - "parentRuleCode": "EV.8.4.1", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4.2", - "ruleContent": "When the Charging Shutdown Circuit Opens:", - "parentRuleCode": "EV.8.4", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4.2.a", - "ruleContent": "All current flow to the Accumulator must stop immediately", - "parentRuleCode": "EV.8.4.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4.2.b", - "ruleContent": "The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less", - "parentRuleCode": "EV.8.4.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4.2.c", - "ruleContent": "The Charger must be turned off", - "parentRuleCode": "EV.8.4.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.8.4.2.d", - "ruleContent": "The Charger must stay disabled until manually reset", - "parentRuleCode": "EV.8.4.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9", - "ruleContent": "VEHICLE OPERATIONS", - "parentRuleCode": "EV", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.1", - "ruleContent": "Activation Requirement The driver must complete the Activation Sequence without external assistance after the Master Switches EV.7.9 are ON", - "parentRuleCode": "EV.9", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.2", - "ruleContent": "Activation Sequence The vehicle systems must energize in this sequence:", - "parentRuleCode": "EV.9", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.2.a", - "ruleContent": "Low Voltage (GLV) System EV.9.3", - "parentRuleCode": "EV.9.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.2.b", - "ruleContent": "Tractive System Active EV.9.4", - "parentRuleCode": "EV.9.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.2.c", - "ruleContent": "Ready to Drive EV.9.5", - "parentRuleCode": "EV.9.2", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.3", - "ruleContent": "Low Voltage (GLV) System The Shutdown Circuit may be Closed when or after the GLV System is energized", - "parentRuleCode": "EV.9", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.4", - "ruleContent": "Tractive System Active", - "parentRuleCode": "EV.9", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.4.1", - "ruleContent": "Definition – High Voltage is present outside of the Accumulator Container", - "parentRuleCode": "EV.9.4", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.4.2", - "ruleContent": "Tractive System Active must not be possible until the two: • GLV System is Energized • Shutdown Circuit is Closed", - "parentRuleCode": "EV.9.4", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.5", - "ruleContent": "Ready to Drive", - "parentRuleCode": "EV.9", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.5.1", - "ruleContent": "Definition – the Motor(s) will respond to the input of the APPS Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.9.5", - "pageNumber": "108" - }, - { - "ruleCode": "EV.9.5.2", - "ruleContent": "Ready to Drive must not be possible until the three at the same time: • Tractive System Active EV.9.4 • The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 • The driver does a manual action to start Ready to Drive Such as pressing a specific button in the cockpit", - "parentRuleCode": "EV.9.5", - "pageNumber": "109" - }, - { - "ruleCode": "EV.9.6", - "ruleContent": "Ready to Drive Sound", - "parentRuleCode": "EV.9", - "pageNumber": "109" - }, - { - "ruleCode": "EV.9.6.1", - "ruleContent": "The vehicle must make a characteristic sound when it is Ready to Drive", - "parentRuleCode": "EV.9.6", - "pageNumber": "109" - }, - { - "ruleCode": "EV.9.6.2", - "ruleContent": "The Ready to Drive Sound must be:", - "parentRuleCode": "EV.9.6", - "pageNumber": "109" - }, - { - "ruleCode": "EV.9.6.2.a", - "ruleContent": "Sounded continuously for minimum 1 second and maximum 3 seconds", - "parentRuleCode": "EV.9.6.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.9.6.2.b", - "ruleContent": "A minimum sound level of 80 dBA, fast weighting IN.4.6", - "parentRuleCode": "EV.9.6.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.9.6.2.c", - "ruleContent": "Easily recognizable. No animal voices, song parts or sounds that could be interpreted as offensive will be accepted", - "parentRuleCode": "EV.9.6.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.9.6.3", - "ruleContent": "The vehicle must not make other sounds similar to the Ready to Drive Sound.", - "parentRuleCode": "EV.9.6", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10", - "ruleContent": "EVENT SITE ACTIVITIES", - "parentRuleCode": "EV", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10.1", - "ruleContent": "Onsite Registration", - "parentRuleCode": "EV.10", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10.1.1", - "ruleContent": "The Accumulator must be onsite at the time the team registers to be eligible for Accumulator Technical Inspection and Dynamic Events", - "parentRuleCode": "EV.10.1", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10.1.2", - "ruleContent": "Teams who register without the Accumulator:", - "parentRuleCode": "EV.10.1", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10.1.2.a", - "ruleContent": "Must not bring their Accumulator onsite for the duration of the competition", - "parentRuleCode": "EV.10.1.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10.1.2.b", - "ruleContent": "May participate in Technical Inspection and Static Events", - "parentRuleCode": "EV.10.1.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10.2", - "ruleContent": "Accumulator Removal", - "parentRuleCode": "EV.10", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10.2.1", - "ruleContent": "After the team registers onsite, the Accumulator must remain on the competition site until the end of the competition, or the team withdraws and leaves the site", - "parentRuleCode": "EV.10.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.10.2.2", - "ruleContent": "Violators will be disqualified from the competition and must leave immediately", - "parentRuleCode": "EV.10.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11", - "ruleContent": "WORK PRACTICES", - "parentRuleCode": "EV", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.1", - "ruleContent": "Personnel", - "parentRuleCode": "EV.11", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.1.1", - "ruleContent": "The Electrical System Officer (ESO): AD.5.2", - "parentRuleCode": "EV.11.1", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.1.1.a", - "ruleContent": "Is the only person on the team that may declare the vehicle electrically safe to allow work on any system", - "parentRuleCode": "EV.11.1.1", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.1.1.b", - "ruleContent": "Must accompany the vehicle when operated or moved at the competition site", - "parentRuleCode": "EV.11.1.1", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.1.1.c", - "ruleContent": "Must be immediately available by phone at all times during the event", - "parentRuleCode": "EV.11.1.1", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.2", - "ruleContent": "Maintenance", - "parentRuleCode": "EV.11", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.2.1", - "ruleContent": "All participating team members must wear safety glasses with side shields at any time when:", - "parentRuleCode": "EV.11.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.2.1.a", - "ruleContent": "Parts of the Tractive System are exposed while energized", - "parentRuleCode": "EV.11.2.1", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.2.1.b", - "ruleContent": "Work is done on the Accumulators", - "parentRuleCode": "EV.11.2.1", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.2.2", - "ruleContent": "Appropriate insulated tools must be used when working on the Accumulator or Tractive System Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.11.2", - "pageNumber": "109" - }, - { - "ruleCode": "EV.11.3", - "ruleContent": "Lockout", - "parentRuleCode": "EV.11", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.3.1", - "ruleContent": "The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle.", - "parentRuleCode": "EV.11.3", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.3.2", - "ruleContent": "The MSD EV.5.5 must be disconnected when vehicles are:", - "parentRuleCode": "EV.11.3", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.3.2.a", - "ruleContent": "Moved around the competition site", - "parentRuleCode": "EV.11.3.2", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.3.2.b", - "ruleContent": "Participating in Static Events", - "parentRuleCode": "EV.11.3.2", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4", - "ruleContent": "Accumulator", - "parentRuleCode": "EV.11", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.1", - "ruleContent": "These work activities at competition are allowed only in the designated area and during Electrical Technical Inspection IN.4 See EV.5.3.3", - "parentRuleCode": "EV.11.4", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.1.a", - "ruleContent": "Opening Accumulator Containers", - "parentRuleCode": "EV.11.4.1", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.1.b", - "ruleContent": "Any work on Accumulators, cells, or Segments", - "parentRuleCode": "EV.11.4.1", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.1.c", - "ruleContent": "Energized electrical work", - "parentRuleCode": "EV.11.4.1", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.2", - "ruleContent": "Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site inside one of the two:", - "parentRuleCode": "EV.11.4", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.2.a", - "ruleContent": "Completely closed Accumulator Container EV.4.3 See EV.4.10.2", - "parentRuleCode": "EV.11.4.2", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.2.b", - "ruleContent": "Segment/Cell Transport Container EV.11.4.3", - "parentRuleCode": "EV.11.4.2", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.3", - "ruleContent": "The Segment/Cell Transport Container(s) must be:", - "parentRuleCode": "EV.11.4", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.3.a", - "ruleContent": "Electrically insulated", - "parentRuleCode": "EV.11.4.3", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.3.b", - "ruleContent": "Protected from shock hazards and arc flash", - "parentRuleCode": "EV.11.4.3", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.4.4", - "ruleContent": "Segments/Cells inside the Transport Container must agree with the voltage and energy limits of EV.5.1.2", - "parentRuleCode": "EV.11.4", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.5", - "ruleContent": "Charging", - "parentRuleCode": "EV.11", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.5.1", - "ruleContent": "Accumulators must be removed from the vehicle inside the Accumulator Container and put on the Accumulator Container Hand Cart EV.4.10 for Charging", - "parentRuleCode": "EV.11.5", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.5.2", - "ruleContent": "Accumulator Charging must occur only inside the designated area", - "parentRuleCode": "EV.11.5", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.5.3", - "ruleContent": "A team member(s) who has knowledge of the Charging process must stay with the Accumulator(s) during Charging", - "parentRuleCode": "EV.11.5", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.5.4", - "ruleContent": "Each Accumulator Container(s) must have a label with this data during Charging: • Team Name • Electrical System Officer phone number(s)", - "parentRuleCode": "EV.11.5", - "pageNumber": "110" - }, - { - "ruleCode": "EV.11.5.5", - "ruleContent": "Additional site specific rules or policies may apply", - "parentRuleCode": "EV.11.5", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12", - "ruleContent": "RED CAR CONDITION", - "parentRuleCode": "EV", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12.1", - "ruleContent": "Definition A vehicle will be a Red Car if any of the following:", - "parentRuleCode": "EV.12", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12.1.a", - "ruleContent": "Actual or possible damage to the vehicle affecting the Tractive System", - "parentRuleCode": "EV.12.1", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12.1.b", - "ruleContent": "Vehicle fault indication (EV.5.11 or equivalent)", - "parentRuleCode": "EV.12.1", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12.1.c", - "ruleContent": "Other conditions, at the discretion of the officials", - "parentRuleCode": "EV.12.1", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12.2", - "ruleContent": "Actions", - "parentRuleCode": "EV.12", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12.2.a", - "ruleContent": "Isolate the vehicle Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.12.2", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12.2.b", - "ruleContent": "No contact with the vehicle unless the officials give permission Contact with the vehicle may require trained personnel with proper Personal Protective Equipment", - "parentRuleCode": "EV.12.2", - "pageNumber": "110" - }, - { - "ruleCode": "EV.12.2.c", - "ruleContent": "Call out designated Red Car responders Version 1.0 31 Aug 2024", - "parentRuleCode": "EV.12.2", - "pageNumber": "110" - }, - { - "ruleCode": "IN", - "ruleContent": "TECHNICAL INSPECTION The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules.", - "pageNumber": "112" - }, - { - "ruleCode": "IN.1", - "ruleContent": "INSPECTION REQUIREMENTS", - "parentRuleCode": "IN", - "pageNumber": "112" - }, - { - "ruleCode": "IN.1.1", - "ruleContent": "Inspection Required Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any Dynamic event.", - "parentRuleCode": "IN.1", - "pageNumber": "112" - }, - { - "ruleCode": "IN.1.2", - "ruleContent": "Technical Inspection Authority", - "parentRuleCode": "IN.1", - "pageNumber": "112" - }, - { - "ruleCode": "IN.1.2.1", - "ruleContent": "The exact procedures and instruments used for inspection and testing are entirely at the discretion of the Chief Technical Inspector(s).", - "parentRuleCode": "IN.1.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.1.2.2", - "ruleContent": "Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance are final.", - "parentRuleCode": "IN.1.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.1.3", - "ruleContent": "Team Responsibility Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE Rules before Technical Inspection.", - "parentRuleCode": "IN.1", - "pageNumber": "112" - }, - { - "ruleCode": "IN.1.4", - "ruleContent": "Reinspection Officials may Reinspect any vehicle at any time during the competition IN.15", - "parentRuleCode": "IN.1", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2", - "ruleContent": "INSPECTION CONDUCT", - "parentRuleCode": "IN", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.1", - "ruleContent": "Vehicle Condition", - "parentRuleCode": "IN.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.1.1", - "ruleContent": "Vehicles must be presented for Technical Inspection in finished condition, fully assembled, complete and ready to run.", - "parentRuleCode": "IN.2.1", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.1.2", - "ruleContent": "Technical inspectors will not inspect any vehicle presented for inspection in an unfinished state.", - "parentRuleCode": "IN.2.1", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.2", - "ruleContent": "Measurement", - "parentRuleCode": "IN.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.2.1", - "ruleContent": "Allowable dimensions are absolute, and do not have any tolerance unless specifically stated", - "parentRuleCode": "IN.2.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.2.2", - "ruleContent": "Measurement tools and methods may vary", - "parentRuleCode": "IN.2.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.2.3", - "ruleContent": "No allowance is given for measurement accuracy or error", - "parentRuleCode": "IN.2.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.3", - "ruleContent": "Visible Access All items on the Technical Inspection Form must be clearly visible to the technical inspectors without using instruments such as endoscopes or mirrors. Methods to provide visible access include but are not limited to removable body panels, access panels, and other components", - "parentRuleCode": "IN.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.4", - "ruleContent": "Inspection Items", - "parentRuleCode": "IN.2", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.4.1", - "ruleContent": "Technical Inspection will examine all items included on the Technical Inspection Form to make sure the vehicle and other equipment obeys the Rules.", - "parentRuleCode": "IN.2.4", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.4.2", - "ruleContent": "Technical Inspectors may examine any other items at their discretion Version 1.0 31 Aug 2024", - "parentRuleCode": "IN.2.4", - "pageNumber": "112" - }, - { - "ruleCode": "IN.2.5", - "ruleContent": "Correction If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team must: • Correct the problem • Continue Inspection or have the vehicle Reinspected", - "parentRuleCode": "IN.2", - "pageNumber": "113" - }, - { - "ruleCode": "IN.2.6", - "ruleContent": "Marked Items", - "parentRuleCode": "IN.2", - "pageNumber": "113" - }, - { - "ruleCode": "IN.2.6.1", - "ruleContent": "Officials may mark, seal, or designate items or areas which have been inspected to document the inspection and reduce the chance of tampering", - "parentRuleCode": "IN.2.6", - "pageNumber": "113" - }, - { - "ruleCode": "IN.2.6.2", - "ruleContent": "Damaged or lost marks or seals require Reinspection IN.15", - "parentRuleCode": "IN.2.6", - "pageNumber": "113" - }, - { - "ruleCode": "IN.3", - "ruleContent": "INITIAL INSPECTION Bring these to Initial Inspection: • Technical Inspection Form • All Driver Equipment per VE.3 to be used by each driver • Fire Extinguishers (for paddock and vehicle) VE.2.3 • Wet Tires V.4.3.2", - "parentRuleCode": "IN", - "pageNumber": "113" - }, - { - "ruleCode": "IN.4", - "ruleContent": "ELECTRICAL TECHNICAL INSPECTION (EV ONLY)", - "parentRuleCode": "IN", - "pageNumber": "113" - }, - { - "ruleCode": "IN.4.1", - "ruleContent": "Inspection Items Bring these to Electrical Technical Inspection: • Charger(s) for the Accumulator(s) EV.8.1 • Accumulator Container Hand Cart EV.4.10 • Spare Accumulator(s) (if applicable) EV.5.1.4 • Electrical Systems Form (ESF) and Component Data Sheets EV.2 • Copies of any submitted Rules Questions with the received answer GR.7 These basic tools in good condition: • Insulated cable shears • Insulated screw drivers • Multimeter with protected probe tips • Insulated tools, if screwed connections are used in the Tractive System • Face Shield • HV insulating gloves which are 12 months or less from their test date • Two HV insulating blankets of minimum 0.83 m² each • Safety glasses with side shields for all team members that might work on the Tractive System or Accumulator", - "parentRuleCode": "IN.4", - "pageNumber": "113" - }, - { - "ruleCode": "IN.4.2", - "ruleContent": "Accumulator Inspection The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected during Electrical Technical Inspection, or separately from the rest of Electrical Technical Inspection. Version 1.0 31 Aug 2024", - "parentRuleCode": "IN.4", - "pageNumber": "113" - }, - { - "ruleCode": "IN.4.3", - "ruleContent": "Accumulator Access", - "parentRuleCode": "IN.4", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.3.1", - "ruleContent": "If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, provide detailed pictures of the internals taken during assembly", - "parentRuleCode": "IN.4.3", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.3.2", - "ruleContent": "Tech inspectors may require access to check any Accumulator(s) for rules compliance", - "parentRuleCode": "IN.4.3", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.4", - "ruleContent": "Insulation Monitoring Device Test", - "parentRuleCode": "IN.4", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.4.1", - "ruleContent": "The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the Tractive System is active", - "parentRuleCode": "IN.4.4", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.4.2", - "ruleContent": "The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault resistance of 50% below the response value corresponding to 250 Ohm / Volt", - "parentRuleCode": "IN.4.4", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.5", - "ruleContent": "Insulation Measurement Test", - "parentRuleCode": "IN.4", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.5.1", - "ruleContent": "The insulation resistance between the Tractive System and GLV System Ground will be measured.", - "parentRuleCode": "IN.4.5", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.5.2", - "ruleContent": "The available measurement voltages are 250 V and 500 V. All vehicles with a maximum nominal operation voltage below 500 V will be measured with the next available voltage level. All teams with a system voltage of 500 V or more will be measured with 500 V.", - "parentRuleCode": "IN.4.5", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.5.3", - "ruleContent": "To pass the Insulation Measurement Test the measured insulation resistance must be minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage.", - "parentRuleCode": "IN.4.5", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.6", - "ruleContent": "Ready to Drive Sound The sound level will be measured with a free field microphone placed free from obstructions in a radius of 2 m around the vehicle against the criteria in EV.9.6", - "parentRuleCode": "IN.4", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.7", - "ruleContent": "Electrical Inspection Completion", - "parentRuleCode": "IN.4", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.7.1", - "ruleContent": "All or portions of the Tractive System, Charger and other components may be sealed IN.2.6", - "parentRuleCode": "IN.4.7", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.7.2", - "ruleContent": "Additional monitoring to verify conformance to rules may be installed. Refer to the Event Website for further information.", - "parentRuleCode": "IN.4.7", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.7.3", - "ruleContent": "A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle may be Tractive System Active EV.9.4", - "parentRuleCode": "IN.4.7", - "pageNumber": "114" - }, - { - "ruleCode": "IN.4.7.4", - "ruleContent": "Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection before the vehicle may attempt any further Inspections. See EV.11.3.2", - "parentRuleCode": "IN.4.7", - "pageNumber": "114" - }, - { - "ruleCode": "IN.5", - "ruleContent": "DRIVER COCKPIT CHECKS The Clearance Checks and Egress Test may be done separately or in conjunction with other parts of Technical Inspection", - "parentRuleCode": "IN", - "pageNumber": "114" - }, - { - "ruleCode": "IN.5.1", - "ruleContent": "Driver Clearance Each driver in the normal driving position is checked for the three: • Helmet clearance F.5.6.4 • Head Restraint positioning T.2.8.5 • Harness fit and adjustment T.2.5, T.2.6, T.2.7", - "parentRuleCode": "IN.5", - "pageNumber": "114" - }, - { - "ruleCode": "IN.5.2", - "ruleContent": "Egress Test", - "parentRuleCode": "IN.5", - "pageNumber": "114" - }, - { - "ruleCode": "IN.5.2.1", - "ruleContent": "Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. Version 1.0 31 Aug 2024", - "parentRuleCode": "IN.5.2", - "pageNumber": "114" - }, - { - "ruleCode": "IN.5.2.2", - "ruleContent": "The Egress Test will be conducted for each driver as follows:", - "parentRuleCode": "IN.5.2", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.2.2.a", - "ruleContent": "The driver must wear the specified Driver Equipment VE.3.2, VE.3.3", - "parentRuleCode": "IN.5.2.2", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.2.2.b", - "ruleContent": "Egress time begins with the driver in the fully seated position, with hands in driving position on the connected steering wheel.", - "parentRuleCode": "IN.5.2.2", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.2.2.c", - "ruleContent": "Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown Button EV.7.10.4", - "parentRuleCode": "IN.5.2.2", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.2.2.d", - "ruleContent": "Egress time will stop when the driver has two feet on the pavement", - "parentRuleCode": "IN.5.2.2", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.3", - "ruleContent": "Driver Clearance and Egress Test Completion", - "parentRuleCode": "IN.5", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.3.1", - "ruleContent": "To drive the vehicle, each team driver must:", - "parentRuleCode": "IN.5.3", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.3.1.a", - "ruleContent": "Meet the Driver Clearance requirements IN.5.1", - "parentRuleCode": "IN.5.3.1", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.3.1.b", - "ruleContent": "Successfully complete the Egress Test IN.5.2", - "parentRuleCode": "IN.5.3.1", - "pageNumber": "115" - }, - { - "ruleCode": "IN.5.3.2", - "ruleContent": "A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection", - "parentRuleCode": "IN.5.3", - "pageNumber": "115" - }, - { - "ruleCode": "IN.6", - "ruleContent": "DRIVER TEMPLATE INSPECTIONS The Driver Template Inspection will be conducted as part of the Mechanical Inspection", - "parentRuleCode": "IN", - "pageNumber": "115" - }, - { - "ruleCode": "IN.6.1", - "ruleContent": "Conduct The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6", - "parentRuleCode": "IN.6", - "pageNumber": "115" - }, - { - "ruleCode": "IN.6.2", - "ruleContent": "Driver Template Clearance Criteria To pass Mechanical Technical Inspection, the Driver Template must meet the clearance specified in F.5.6.4", - "parentRuleCode": "IN.6", - "pageNumber": "115" - }, - { - "ruleCode": "IN.7", - "ruleContent": "COCKPIT TEMPLATE INSPECTIONS The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection", - "parentRuleCode": "IN", - "pageNumber": "115" - }, - { - "ruleCode": "IN.7.1", - "ruleContent": "Conduct", - "parentRuleCode": "IN.7", - "pageNumber": "115" - }, - { - "ruleCode": "IN.7.1.1", - "ruleContent": "The Cockpit Opening will be checked using the template and procedure given in T.1.1", - "parentRuleCode": "IN.7.1", - "pageNumber": "115" - }, - { - "ruleCode": "IN.7.1.2", - "ruleContent": "The Internal Cross Section will be checked using the template and procedure given in T.1.2", - "parentRuleCode": "IN.7.1", - "pageNumber": "115" - }, - { - "ruleCode": "IN.7.2", - "ruleContent": "Cockpit Template Criteria To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described.", - "parentRuleCode": "IN.7", - "pageNumber": "115" - }, - { - "ruleCode": "IN.8", - "ruleContent": "MECHANICAL TECHNICAL INSPECTION", - "parentRuleCode": "IN", - "pageNumber": "115" - }, - { - "ruleCode": "IN.8.1", - "ruleContent": "Inspection Items Bring these to Mechanical Technical Inspection: • Vehicle on Dry Tires V.4.3.1 • Technical Inspection Form • Push Bar VE.2.2 • Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 • Monocoque Laminate Test Specimens (if applicable) F.4.2 • The Impact Attenuator that was tested (if applicable) F.8.8.7 • Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c Version 1.0 31 Aug 2024 • Electronic copies of any submitted Rules Questions with the received answer GR.7", - "parentRuleCode": "IN.8", - "pageNumber": "115" - }, - { - "ruleCode": "IN.8.2", - "ruleContent": "Aerodynamic Devices Stability and Strength", - "parentRuleCode": "IN.8", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.2.1", - "ruleContent": "Any Aerodynamic Devices may be checked by pushing on the device in any direction and at any point. This is guidance, but actual conformance will be up to technical inspectors at the respective competitions. The intent is to reduce the likelihood of wings detaching", - "parentRuleCode": "IN.8.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.2.2", - "ruleContent": "If any deflection is significant, then a force of approximately 200 N may be applied.", - "parentRuleCode": "IN.8.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.2.2.a", - "ruleContent": "Loaded deflection should not be more than 25 mm", - "parentRuleCode": "IN.8.2.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.2.2.b", - "ruleContent": "Any permanent deflection less than 5 mm", - "parentRuleCode": "IN.8.2.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.2.3", - "ruleContent": "If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic Devices, then officials may Black Flag the vehicle for IN.15 Reinspection.", - "parentRuleCode": "IN.8.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.3", - "ruleContent": "Monocoque Inspections", - "parentRuleCode": "IN.8", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.3.1", - "ruleContent": "Dimensions of the Monocoque will be confirmed F.7.1.4", - "parentRuleCode": "IN.8.3", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.3.2", - "ruleContent": "When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide:", - "parentRuleCode": "IN.8.3", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.3.2.a", - "ruleContent": "Documentation that shows dimensions on the tubes", - "parentRuleCode": "IN.8.3.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.3.2.b", - "ruleContent": "Pictures of the dimensioned tube being included in the layup", - "parentRuleCode": "IN.8.3.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.3.3", - "ruleContent": "For items which cannot be verified by an inspector, the team must provide documentation, visual and/or written, that the requirements have been met.", - "parentRuleCode": "IN.8.3", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.3.4", - "ruleContent": "A team found to be improperly presenting any evidence of the manufacturing process may be barred from competing with a monocoque.", - "parentRuleCode": "IN.8.3", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.4", - "ruleContent": "Engine Inspection (IC Only) The organizer may measure or tear down engines to confirm conformance to the rules.", - "parentRuleCode": "IN.8", - "pageNumber": "116" - }, - { - "ruleCode": "IN.8.5", - "ruleContent": "Mechanical Inspection Completion All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any further inspections.", - "parentRuleCode": "IN.8", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9", - "ruleContent": "TILT TEST", - "parentRuleCode": "IN", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.1", - "ruleContent": "Tilt Test Requirements", - "parentRuleCode": "IN.9", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.1.a", - "ruleContent": "The vehicle must contain the maximum amount of fluids it may carry", - "parentRuleCode": "IN.9.1", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.1.b", - "ruleContent": "The tallest driver must be seated in the normal driving position", - "parentRuleCode": "IN.9.1", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.1.c", - "ruleContent": "Tilt tests may be conducted in one, the other, or the two directions to pass", - "parentRuleCode": "IN.9.1", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.1.d", - "ruleContent": "(IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and pressure the system downstream of the High Pressure pump. See IC.6.2", - "parentRuleCode": "IN.9.1", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.2", - "ruleContent": "Tilt Test Criteria", - "parentRuleCode": "IN.9", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.2.1", - "ruleContent": "No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal", - "parentRuleCode": "IN.9.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.2.2", - "ruleContent": "Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g.", - "parentRuleCode": "IN.9.2", - "pageNumber": "116" - }, - { - "ruleCode": "IN.9.3", - "ruleContent": "Tilt Test Completion Tilt Tests must be passed before a vehicle may attempt any further inspections Version 1.0 31 Aug 2024", - "parentRuleCode": "IN.9", - "pageNumber": "116" - }, - { - "ruleCode": "IN.10", - "ruleContent": "NOISE AND SWITCH TEST (IC ONLY)", - "parentRuleCode": "IN", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.1", - "ruleContent": "Sound Level Measurement", - "parentRuleCode": "IN.10", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.1.1", - "ruleContent": "The sound level will be measured during a stationary test, with the vehicle gearbox in neutral at the defined Test Speed", - "parentRuleCode": "IN.10.1", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.1.2", - "ruleContent": "Measurements will be made with a free field microphone placed: • free from obstructions • at the Exhaust Outlet vertical level IC.7.2.2 • 0.5 m from the end of the Exhaust Outlet IC.7.2.2 • at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below)", - "parentRuleCode": "IN.10.1", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2", - "ruleContent": "Special Configurations", - "parentRuleCode": "IN.10", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.1", - "ruleContent": "Where the Exhaust has more than one Exhaust Outlet:", - "parentRuleCode": "IN.10.2", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.1.a", - "ruleContent": "The noise test is repeated for each outlet", - "parentRuleCode": "IN.10.2.1", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.1.b", - "ruleContent": "The highest sound level is used", - "parentRuleCode": "IN.10.2.1", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.2", - "ruleContent": "Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal plane.", - "parentRuleCode": "IN.10.2", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.3", - "ruleContent": "If the exhaust has any form of active tuning or throttling device or system, the exhaust must meet all requirements with the device or system in all positions.", - "parentRuleCode": "IN.10.2", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.4", - "ruleContent": "When the exhaust has a manually adjustable tuning device(s):", - "parentRuleCode": "IN.10.2", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.4.a", - "ruleContent": "The position of the device must be visible to the officials for the noise test", - "parentRuleCode": "IN.10.2.4", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.4.b", - "ruleContent": "The device must be manually operable by the officials during the noise test", - "parentRuleCode": "IN.10.2.4", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.2.4.c", - "ruleContent": "The device must not be moved or modified after the noise test is passed", - "parentRuleCode": "IN.10.2.4", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.3", - "ruleContent": "Industrial Engine An engine which, according to the manufacturers’ specifications and without the required restrictor, is capable of producing 5 hp per 100 cc or less. Submit a Rules Question to request approval of an Industrial Engine.", - "parentRuleCode": "IN.10", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.4", - "ruleContent": "Test Speeds", - "parentRuleCode": "IN.10", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.4.1", - "ruleContent": "Maximum Test Speed The engine speed that corresponds to an average piston speed of:", - "parentRuleCode": "IN.10.4", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.4.1.a", - "ruleContent": "Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min)", - "parentRuleCode": "IN.10.4.1", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.4.1.b", - "ruleContent": "Industrial Engines 731.5 m/min (2,400 ft/min) The calculated speed will be rounded to the nearest 500 rpm. Test Speeds for typical engines are published on the FSAE Online website", - "parentRuleCode": "IN.10.4.1", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.4.2", - "ruleContent": "Idle Test Speed", - "parentRuleCode": "IN.10.4", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.4.2.a", - "ruleContent": "Determined by the vehicle’s calibrated idle speed", - "parentRuleCode": "IN.10.4.2", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.4.2.b", - "ruleContent": "If the idle speed varies then the vehicle will be tested across the range of idle speeds determined by the team", - "parentRuleCode": "IN.10.4.2", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.4.3", - "ruleContent": "The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. Version 1.0 31 Aug 2024", - "parentRuleCode": "IN.10.4", - "pageNumber": "117" - }, - { - "ruleCode": "IN.10.5", - "ruleContent": "Maximum Permitted Sound Level", - "parentRuleCode": "IN.10", - "pageNumber": "118" - }, - { - "ruleCode": "IN.10.5.a", - "ruleContent": "At idle 103 dBC, fast weighting", - "parentRuleCode": "IN.10.5", - "pageNumber": "118" - }, - { - "ruleCode": "IN.10.5.b", - "ruleContent": "At all other speeds 110 dBC, fast weighting", - "parentRuleCode": "IN.10.5", - "pageNumber": "118" - }, - { - "ruleCode": "IN.10.6", - "ruleContent": "Noise Level Retesting", - "parentRuleCode": "IN.10", - "pageNumber": "118" - }, - { - "ruleCode": "IN.10.6.1", - "ruleContent": "Noise levels may be monitored at any time", - "parentRuleCode": "IN.10.6", - "pageNumber": "118" - }, - { - "ruleCode": "IN.10.6.2", - "ruleContent": "The Noise Test may be repeated at any time", - "parentRuleCode": "IN.10.6", - "pageNumber": "118" - }, - { - "ruleCode": "IN.10.7", - "ruleContent": "Switch Function The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, and/or BOTS T.3.3 will be verified during the Noise Test", - "parentRuleCode": "IN.10", - "pageNumber": "118" - }, - { - "ruleCode": "IN.10.8", - "ruleContent": "Noise Test Completion Noise Tests must be passed before a vehicle may attempt any further inspections", - "parentRuleCode": "IN.10", - "pageNumber": "118" - }, - { - "ruleCode": "IN.11", - "ruleContent": "RAIN TEST (EV ONLY)", - "parentRuleCode": "IN", - "pageNumber": "118" - }, - { - "ruleCode": "IN.11.1", - "ruleContent": "Rain Test Requirements • Tractive System must be Active • The vehicle must not be in Ready to Drive mode (EV.7) • Any driven wheels must not touch the ground • A driver must not be seated in the vehicle", - "parentRuleCode": "IN.11", - "pageNumber": "118" - }, - { - "ruleCode": "IN.11.2", - "ruleContent": "Rain Test Conduct The water spray will be rain like, not a direct high pressure water jet", - "parentRuleCode": "IN.11", - "pageNumber": "118" - }, - { - "ruleCode": "IN.11.2.a", - "ruleContent": "Spray water at the vehicle from any possible direction for 120 seconds", - "parentRuleCode": "IN.11.2", - "pageNumber": "118" - }, - { - "ruleCode": "IN.11.2.b", - "ruleContent": "Stop the water spray", - "parentRuleCode": "IN.11.2", - "pageNumber": "118" - }, - { - "ruleCode": "IN.11.2.c", - "ruleContent": "Observe the vehicle for 120 seconds", - "parentRuleCode": "IN.11.2", - "pageNumber": "118" - }, - { - "ruleCode": "IN.11.3", - "ruleContent": "Rain Test Completion The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire 240 seconds duration", - "parentRuleCode": "IN.11", - "pageNumber": "118" - }, - { - "ruleCode": "IN.12", - "ruleContent": "BRAKE TEST", - "parentRuleCode": "IN", - "pageNumber": "118" - }, - { - "ruleCode": "IN.12.1", - "ruleContent": "Objective The brake system will be dynamically tested and must demonstrate the capability of locking all four wheels when stopping the vehicle in a straight line at the end of an acceleration run specified by the brake inspectors", - "parentRuleCode": "IN.12", - "pageNumber": "118" - }, - { - "ruleCode": "IN.12.2", - "ruleContent": "Brake Test Conduct (IC Only)", - "parentRuleCode": "IN.12", - "pageNumber": "118" - }, - { - "ruleCode": "IN.12.2.1", - "ruleContent": "Brake Test procedure:", - "parentRuleCode": "IN.12.2", - "pageNumber": "118" - }, - { - "ruleCode": "IN.12.2.1.a", - "ruleContent": "Accelerate to speed (typically getting into 2nd gear) until reaching the designated area", - "parentRuleCode": "IN.12.2.1", - "pageNumber": "118" - }, - { - "ruleCode": "IN.12.2.1.b", - "ruleContent": "Apply the brakes with force sufficient to demonstrate full lockup of all four wheels", - "parentRuleCode": "IN.12.2.1", - "pageNumber": "118" - }, - { - "ruleCode": "IN.12.2.2", - "ruleContent": "The Brake Test passes if: • All four wheels lock up • The engine stays running during the complete test Version 1.0 31 Aug 2024", - "parentRuleCode": "IN.12.2", - "pageNumber": "118" - }, - { - "ruleCode": "IN.12.3", - "ruleContent": "Brake Test Conduct (EV Only)", - "parentRuleCode": "IN.12", - "pageNumber": "119" - }, - { - "ruleCode": "IN.12.3.1", - "ruleContent": "Brake Test procedure:", - "parentRuleCode": "IN.12.3", - "pageNumber": "119" - }, - { - "ruleCode": "IN.12.3.1.a", - "ruleContent": "Accelerate to speed until reaching the designated area", - "parentRuleCode": "IN.12.3.1", - "pageNumber": "119" - }, - { - "ruleCode": "IN.12.3.1.b", - "ruleContent": "Switch off the Tractive System EV.7.10.4", - "parentRuleCode": "IN.12.3.1", - "pageNumber": "119" - }, - { - "ruleCode": "IN.12.3.1.c", - "ruleContent": "Apply the brakes with force sufficient to demonstrate full lockup of all four wheels", - "parentRuleCode": "IN.12.3.1", - "pageNumber": "119" - }, - { - "ruleCode": "IN.12.3.2", - "ruleContent": "The Brake Test passes if all four wheels lock while the Tractive System is shut down", - "parentRuleCode": "IN.12.3", - "pageNumber": "119" - }, - { - "ruleCode": "IN.12.3.3", - "ruleContent": "The Tractive System Active Light may switch a short time after the vehicle has come to a complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c", - "parentRuleCode": "IN.12.3", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13", - "ruleContent": "INSPECTION APPROVAL", - "parentRuleCode": "IN", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.1", - "ruleContent": "Inspection Approval", - "parentRuleCode": "IN.13", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.1.1", - "ruleContent": "When all parts of Technical Inspection are complete as shown on the Technical Inspection sheet, the vehicle receives Inspection Approval", - "parentRuleCode": "IN.13.1", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.1.2", - "ruleContent": "The completed Inspection Sticker shows the Inspection Approval", - "parentRuleCode": "IN.13.1", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.1.3", - "ruleContent": "The Inspection Approval is contingent on the vehicle remaining in the required condition throughout the competition.", - "parentRuleCode": "IN.13.1", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.1.4", - "ruleContent": "The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any time for any reason", - "parentRuleCode": "IN.13.1", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.2", - "ruleContent": "Inspection Sticker", - "parentRuleCode": "IN.13", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.2.1", - "ruleContent": "Inspection Sticker(s) are issued after completion of all or part of Technical Inspection", - "parentRuleCode": "IN.13.2", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.2.2", - "ruleContent": "Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently", - "parentRuleCode": "IN.13.2", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.3", - "ruleContent": "Inspection Validity", - "parentRuleCode": "IN.13", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.3.1", - "ruleContent": "Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or are required to be Reinspected.", - "parentRuleCode": "IN.13.3", - "pageNumber": "119" - }, - { - "ruleCode": "IN.13.3.2", - "ruleContent": "Inspection Approval is valid only for the duration of the specific Formula SAE competition during which the inspection is conducted.", - "parentRuleCode": "IN.13.3", - "pageNumber": "119" - }, - { - "ruleCode": "IN.14", - "ruleContent": "MODIFICATIONS AND REPAIRS", - "parentRuleCode": "IN", - "pageNumber": "119" - }, - { - "ruleCode": "IN.14.1", - "ruleContent": "Prior to Inspection Approval Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for Technical Inspection, and until the vehicle has the full Inspection Approval, the only modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the Inspection Form.", - "parentRuleCode": "IN.14", - "pageNumber": "119" - }, - { - "ruleCode": "IN.14.2", - "ruleContent": "After Inspection Approval", - "parentRuleCode": "IN.14", - "pageNumber": "119" - }, - { - "ruleCode": "IN.14.2.1", - "ruleContent": "The vehicle must maintain all required specifications (including but not limited to ride height, suspension travel, braking capacity (pad material/composition), sound level and wing location) throughout the competition.", - "parentRuleCode": "IN.14.2", - "pageNumber": "119" - }, - { - "ruleCode": "IN.14.2.2", - "ruleContent": "Changes to fit the vehicle to different drivers are allowed. Permitted changes are: • Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly • Substitution of the Head Restraint or seat insert • Adjustment of mirrors Version 1.0 31 Aug 2024", - "parentRuleCode": "IN.14.2", - "pageNumber": "119" - }, - { - "ruleCode": "IN.14.2.3", - "ruleContent": "Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the vehicle are: • Adjustment of belts, chains and clutches • Adjustment of brake bias • Adjustment to engine / powertrain operating parameters, including fuel mixture and ignition timing, and any software calibration changes • Adjustment of the suspension • Changing springs, sway bars and shims in the suspension • Adjustment of Tire Pressure, subject to V.4.3.4 • Adjustment of wing or wing element(s) angle, but not the location T.7.1 • Replenishment of fluids • Replacement of worn tires or brake pads. Replacement tires and brake pads must be identical in material/composition/size to those presented and approved at Technical Inspection. • Changing of wheels and tires for weather conditions D.6 • Recharging Low Voltage batteries • Recharging High Voltage Accumulators", - "parentRuleCode": "IN.14.2", - "pageNumber": "120" - }, - { - "ruleCode": "IN.14.3", - "ruleContent": "Repairs or Changes After Inspection Approval The Inspection Approval may be voided for any reason including, but not limited to:", - "parentRuleCode": "IN.14", - "pageNumber": "120" - }, - { - "ruleCode": "IN.14.3.a", - "ruleContent": "Damage to the vehicle IN.13.1.3", - "parentRuleCode": "IN.14.3", - "pageNumber": "120" - }, - { - "ruleCode": "IN.14.3.b", - "ruleContent": "Changes beyond those allowed per IN.14.2 above", - "parentRuleCode": "IN.14.3", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15", - "ruleContent": "REINSPECTION", - "parentRuleCode": "IN", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.1", - "ruleContent": "Requirement", - "parentRuleCode": "IN.15", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.1.1", - "ruleContent": "Any vehicle may be Reinspected at any time for any reason", - "parentRuleCode": "IN.15.1", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.1.2", - "ruleContent": "Reinspection must be completed to restore Inspection Approval, if voided", - "parentRuleCode": "IN.15.1", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.2", - "ruleContent": "Conduct", - "parentRuleCode": "IN.15", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.2.1", - "ruleContent": "The Technical Inspection process may be repeated in entirety or in part", - "parentRuleCode": "IN.15.2", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.2.2", - "ruleContent": "Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector", - "parentRuleCode": "IN.15.2", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.3", - "ruleContent": "Result", - "parentRuleCode": "IN.15", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.3.1", - "ruleContent": "With Voided Inspection Approval Successful completion of Reinspection will restore Inspection Approval IN.13.1", - "parentRuleCode": "IN.15.3", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.3.2", - "ruleContent": "During Dynamic Events", - "parentRuleCode": "IN.15.3", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.3.2.a", - "ruleContent": "Issues found during Reinspection will void Inspection Approval", - "parentRuleCode": "IN.15.3.2", - "pageNumber": "120" - }, - { - "ruleCode": "IN.15.3.2.b", - "ruleContent": "Penalties may be applied to the Dynamic Events the vehicle has competed in Applied penalties may include additional time added to event(s), loss of one or more fastest runs, up to DQ, subject to official discretion. Version 1.0 31 Aug 2024", - "parentRuleCode": "IN.15.3.2", - "pageNumber": "120" - }, - { - "ruleCode": "S", - "ruleContent": "STATIC EVENTS", - "pageNumber": "121" - }, - { - "ruleCode": "S.1", - "ruleContent": "GENERAL STATIC Presentation 75 points Cost 100 points Design 150 points Total 325 points", - "parentRuleCode": "S", - "pageNumber": "121" - }, - { - "ruleCode": "S.2", - "ruleContent": "PRESENTATION EVENT", - "parentRuleCode": "S", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.1", - "ruleContent": "Presentation Event Objective The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive business, logistical, production, or technical case that will convince outside interests to invest in the team’s concept.", - "parentRuleCode": "S.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.2", - "ruleContent": "Presentation Concept", - "parentRuleCode": "S.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.2.1", - "ruleContent": "The concept for the Presentation Event will be provided on the FSAE Online website.", - "parentRuleCode": "S.2.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.2.2", - "ruleContent": "The concept for the Presentation Event may change for each competition", - "parentRuleCode": "S.2.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.2.3", - "ruleContent": "The team presentation must meet the concept", - "parentRuleCode": "S.2.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.2.4", - "ruleContent": "The team presentation must relate specifically to the vehicle as entered in the competition", - "parentRuleCode": "S.2.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.2.5", - "ruleContent": "Teams should assume that the judges represent different areas, including engineering, production, marketing and finance, and may not all be engineers.", - "parentRuleCode": "S.2.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.2.6", - "ruleContent": "The presentation may be given in different settings, such as a conference room, a group meeting, virtually, or in conjunction with other Static Events. Specific details will be included in the Presentation Concept or communicated separately.", - "parentRuleCode": "S.2.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.3", - "ruleContent": "Presentation Schedule Teams that fail to make their presentation during their assigned time period get zero points for the Presentation Event.", - "parentRuleCode": "S.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.4", - "ruleContent": "Presentation Submissions", - "parentRuleCode": "S.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.4.1", - "ruleContent": "The Presentation Concept may require information to be submitted prior to the event. Specific details will be included in the Presentation Concept.", - "parentRuleCode": "S.2.4", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.4.2", - "ruleContent": "Submissions may be graded as part of the Presentation Event score.", - "parentRuleCode": "S.2.4", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.4.3", - "ruleContent": "Pre event submissions will be subject to penalties imposed as given in section DR - Document Requirements or the Presentation Concept", - "parentRuleCode": "S.2.4", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.5", - "ruleContent": "Presentation Format", - "parentRuleCode": "S.2", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.5.1", - "ruleContent": "One or more team members will give the presentation to the judges.", - "parentRuleCode": "S.2.5", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.5.2", - "ruleContent": "All team members who will give any part of the presentation, or who will respond to judges’ questions must be: • In the presentation area when the presentation starts • Introduced and identified to the judges", - "parentRuleCode": "S.2.5", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.5.3", - "ruleContent": "Presentations will be time limited. The judges will stop any presentation exceeding the time limit. Version 1.0 31 Aug 2024", - "parentRuleCode": "S.2.5", - "pageNumber": "121" - }, - { - "ruleCode": "S.2.5.4", - "ruleContent": "The presentation itself will not be interrupted by questions. Immediately after the presentation there may be a question and answer session.", - "parentRuleCode": "S.2.5", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.5.5", - "ruleContent": "Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions.", - "parentRuleCode": "S.2.5", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.6", - "ruleContent": "Presentation Equipment Refer to the Presentation Concept for additional information", - "parentRuleCode": "S.2", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.7", - "ruleContent": "Evaluation Criteria", - "parentRuleCode": "S.2", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.7.1", - "ruleContent": "Presentations will be evaluated on content, organization, visual aids, delivery and the team’s response to the judges questions.", - "parentRuleCode": "S.2.7", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.7.2", - "ruleContent": "The actual quality of the prototype itself will not be considered as part of the presentation judging", - "parentRuleCode": "S.2.7", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.7.3", - "ruleContent": "Presentation Judging Score Sheet – available at the FSAE Online website", - "parentRuleCode": "S.2.7", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.8", - "ruleContent": "Judging Sequence Presentation judging may be conducted in one or more phases.", - "parentRuleCode": "S.2", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.9", - "ruleContent": "Presentation Event Scoring", - "parentRuleCode": "S.2", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.9.1", - "ruleContent": "The Presentation raw score is based on the average of the scores of each judge.", - "parentRuleCode": "S.2.9", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.9.2", - "ruleContent": "Presentation Event scores may range from 0 to 75 points, using a method at the discretion of the judges", - "parentRuleCode": "S.2.9", - "pageNumber": "122" - }, - { - "ruleCode": "S.2.9.3", - "ruleContent": "Presentation Event scoring may include normalizing the scores of different judging teams and scaling the overall results.", - "parentRuleCode": "S.2.9", - "pageNumber": "122" - }, - { - "ruleCode": "S.3", - "ruleContent": "COST AND MANUFACTURING EVENT", - "parentRuleCode": "S", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.1", - "ruleContent": "Cost Event Objective The Cost and Manufacturing Event evaluates the ability of the team to consider budget and incorporate production considerations for production and efficiency. Making tradeoff decisions between content and cost based on the performance of each part and assembly and accounting for each part and process to meet a budget is part of Project Management.", - "parentRuleCode": "S.3", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.2", - "ruleContent": "Cost Event Supplement", - "parentRuleCode": "S.3", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.2.a", - "ruleContent": "Additional specific information on the Cost and Manufacturing Event, including explanation and requirements, is provided in the Formula SAE Cost Event Supplement document.", - "parentRuleCode": "S.3.2", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.2.b", - "ruleContent": "Use the Formula SAE Cost Event Supplement to properly complete the requirements of the Cost and Manufacturing Event.", - "parentRuleCode": "S.3.2", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.2.c", - "ruleContent": "The Formula SAE Cost Event Supplement is available on the FSAE Online website", - "parentRuleCode": "S.3.2", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.3", - "ruleContent": "Cost Event Areas", - "parentRuleCode": "S.3", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.3.1", - "ruleContent": "Cost Report Preparation and submission of a report (the “Cost Report”)", - "parentRuleCode": "S.3.3", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.3.2", - "ruleContent": "Event Day Discussion Discussion at the Competition with the Cost Judges around the team’s vehicle. Version 1.0 31 Aug 2024", - "parentRuleCode": "S.3.3", - "pageNumber": "122" - }, - { - "ruleCode": "S.3.3.3", - "ruleContent": "Cost Scenario Teams will respond to a challenge related to cost or manufacturing of the vehicle.", - "parentRuleCode": "S.3.3", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.4", - "ruleContent": "Cost Report", - "parentRuleCode": "S.3", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.4.1", - "ruleContent": "The Cost Report must:", - "parentRuleCode": "S.3.4", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.4.1.a", - "ruleContent": "List and cost each part on the vehicle using the standardized Cost Tables", - "parentRuleCode": "S.3.4.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.4.1.b", - "ruleContent": "Base the cost on the actual manufacturing technique used on the prototype Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc.", - "parentRuleCode": "S.3.4.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.4.1.c", - "ruleContent": "Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it.", - "parentRuleCode": "S.3.4.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.4.1.d", - "ruleContent": "Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools).", - "parentRuleCode": "S.3.4.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.4.1.e", - "ruleContent": "Include supporting documentation to allow officials to verify part costing", - "parentRuleCode": "S.3.4.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.4.2", - "ruleContent": "Generate and submit the Cost Report using the FSAE Online website, see DR - Document Requirements", - "parentRuleCode": "S.3.4", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.5", - "ruleContent": "Bill of Materials - BOM", - "parentRuleCode": "S.3", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.5.1", - "ruleContent": "The BOM is a list of all vehicle parts, showing the relationships between the items.", - "parentRuleCode": "S.3.5", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.5.1.a", - "ruleContent": "The overall vehicle is broken down into separate Systems", - "parentRuleCode": "S.3.5.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.5.1.b", - "ruleContent": "Systems are made up of Assemblies", - "parentRuleCode": "S.3.5.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.5.1.c", - "ruleContent": "Assemblies are made up of Parts", - "parentRuleCode": "S.3.5.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.5.1.d", - "ruleContent": "Parts consist of Materials, Processes and Fasteners", - "parentRuleCode": "S.3.5.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.5.1.e", - "ruleContent": "Tooling is associated with each Process that requires production tooling", - "parentRuleCode": "S.3.5.1", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.6", - "ruleContent": "Late Submission Penalties for Late Submission of Cost Report will be imposed as given in section DR - Document Requirements.", - "parentRuleCode": "S.3", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7", - "ruleContent": "Cost Addendum", - "parentRuleCode": "S.3", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7.1", - "ruleContent": "A supplement to the Cost Report that reflects any changes or corrections made after the submission of the Cost Report may be submitted.", - "parentRuleCode": "S.3.7", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7.2", - "ruleContent": "The Cost Addendum must be submitted during Onsite Registration at the Event.", - "parentRuleCode": "S.3.7", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7.3", - "ruleContent": "The Cost Addendum must follow the format as given in section DR - Document Requirements", - "parentRuleCode": "S.3.7", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7.4", - "ruleContent": "Addenda apply only to the competition at which they are submitted.", - "parentRuleCode": "S.3.7", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7.5", - "ruleContent": "A separate Cost Addendum may be submitted at each competition a vehicle attends.", - "parentRuleCode": "S.3.7", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7.6", - "ruleContent": "Changes to the Cost Report in the Cost Addendum will incur additional cost:", - "parentRuleCode": "S.3.7", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7.6.a", - "ruleContent": "Added items will be cost at 125% of the table cost: + (1.25 x Cost)", - "parentRuleCode": "S.3.7.6", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.7.6.b", - "ruleContent": "Removed items will be credited 75% of the table cost: - (0.75 x Cost)", - "parentRuleCode": "S.3.7.6", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.8", - "ruleContent": "Cost Tables", - "parentRuleCode": "S.3", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.8.1", - "ruleContent": "All costs in the Cost Report must come from the standardized Cost Tables.", - "parentRuleCode": "S.3.8", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.8.2", - "ruleContent": "If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add Item Request must be submitted. See S.3.10 Version 1.0 31 Aug 2024", - "parentRuleCode": "S.3.8", - "pageNumber": "123" - }, - { - "ruleCode": "S.3.9", - "ruleContent": "Make versus Buy", - "parentRuleCode": "S.3", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.9.1", - "ruleContent": "Each part may be classified as Made or Bought Refer to the Formula SAE Cost Event Supplement for additional information", - "parentRuleCode": "S.3.9", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.9.2", - "ruleContent": "If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so.", - "parentRuleCode": "S.3.9", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.9.3", - "ruleContent": "Any part which is normally purchased that is optionally shown as a Made part must have supporting documentation submitted to prove team manufacture.", - "parentRuleCode": "S.3.9", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.9.4", - "ruleContent": "Teams costing Bought parts as Made parts will be penalized.", - "parentRuleCode": "S.3.9", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.10", - "ruleContent": "Add Item Request", - "parentRuleCode": "S.3", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.10.1", - "ruleContent": "An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost Tables for individual team requirements.", - "parentRuleCode": "S.3.10", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.10.2", - "ruleContent": "After review, the item may be added to the Cost Table with an appropriate cost. It will then be available to all teams.", - "parentRuleCode": "S.3.10", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.11", - "ruleContent": "Public Cost Reports", - "parentRuleCode": "S.3", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.11.1", - "ruleContent": "The competition organizers may publish all or part of the submitted Cost Reports.", - "parentRuleCode": "S.3.11", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.11.2", - "ruleContent": "Cost Reports for a given competition season will not be published before the end of the calendar year. Support materials, such as technical drawings, will not be released.", - "parentRuleCode": "S.3.11", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12", - "ruleContent": "Cost Report Penalties Process", - "parentRuleCode": "S.3", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.1", - "ruleContent": "This procedure will be used in determining penalties:", - "parentRuleCode": "S.3.12", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.1.a", - "ruleContent": "Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions", - "parentRuleCode": "S.3.12.1", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.1.b", - "ruleContent": "Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost Additions", - "parentRuleCode": "S.3.12.1", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.1.c", - "ruleContent": "The higher of the two penalties will be applied against the Cost Event score • Penalty A expressed in points will be deducted from the Cost Event score • Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle", - "parentRuleCode": "S.3.12.1", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.2", - "ruleContent": "Any error that results in a team over reporting a cost in their Cost Report will not be further penalized.", - "parentRuleCode": "S.3.12", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.3", - "ruleContent": "Any instance where a team’s score benefits by an intentional or unintentional error on the part of the students will be corrected on a case by case basis.", - "parentRuleCode": "S.3.12", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.4", - "ruleContent": "Penalty Method A - Fixed Point Deductions", - "parentRuleCode": "S.3.12", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.4.a", - "ruleContent": "From the Bill of Material, the Cost Judges will determine if all Parts and Processes have been included in the analysis.", - "parentRuleCode": "S.3.12.4", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.4.b", - "ruleContent": "In the case of any omission or error a penalty proportional to the BOM level of the error will be imposed: • Missing/inaccurate Material, Process, Fastener 1 point • Missing/inaccurate Part 3 point • Missing/inaccurate Assembly 5 point", - "parentRuleCode": "S.3.12.4", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.4.c", - "ruleContent": "Each of the penalties listed above supersedes the previous penalty. Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. Version 1.0 31 Aug 2024", - "parentRuleCode": "S.3.12.4", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.4.d", - "ruleContent": "Differences other than those listed above will be deducted at the discretion of the Cost Judges.", - "parentRuleCode": "S.3.12.4", - "pageNumber": "124" - }, - { - "ruleCode": "S.3.12.5", - "ruleContent": "Penalty Method B – Adjusted Cost Additions", - "parentRuleCode": "S.3.12", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.12.5.a", - "ruleContent": "The table cost for the missing or incomplete items will be calculated from the standard Cost Tables.", - "parentRuleCode": "S.3.12.5", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.12.5.b", - "ruleContent": "The penalty will be a value equal to twice the difference between the team cost and the correct cost for all items in error. Penalty = 2 x (Table Cost – Team Reported Cost) The table costs of all items in error are included in the calculation. A missing Assembly would include the price of all Parts, Materials, Processes and Fasteners making up the Assembly.", - "parentRuleCode": "S.3.12.5", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13", - "ruleContent": "Event Day and Discussion", - "parentRuleCode": "S.3", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13.1", - "ruleContent": "The team must present their vehicle at the designated time", - "parentRuleCode": "S.3.13", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13.2", - "ruleContent": "The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during Cost Event judging", - "parentRuleCode": "S.3.13", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13.3", - "ruleContent": "Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging", - "parentRuleCode": "S.3.13", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13.4", - "ruleContent": "The Cost Judges will:", - "parentRuleCode": "S.3.13", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13.4.a", - "ruleContent": "Review whether the Cost Report accurately reflects the vehicle as presented", - "parentRuleCode": "S.3.13.4", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13.4.b", - "ruleContent": "Review the manufacturing feasibility of the vehicle", - "parentRuleCode": "S.3.13.4", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13.4.c", - "ruleContent": "Assess supporting documentation based on its quality, accuracy and thoroughness", - "parentRuleCode": "S.3.13.4", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.13.4.d", - "ruleContent": "Apply penalties for missing or incorrect information in the Cost Report compared to the vehicle presented at inspection", - "parentRuleCode": "S.3.13.4", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.14", - "ruleContent": "Cost Audit", - "parentRuleCode": "S.3", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.14.1", - "ruleContent": "Teams may be selected for additional review to verify all processes and materials on their vehicle are in the Cost Report", - "parentRuleCode": "S.3.14", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.14.2", - "ruleContent": "Adjustments from the Cost Audit will be included in the final scores", - "parentRuleCode": "S.3.14", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.15", - "ruleContent": "Cost Scenario The Cost Scenario will be provided prior to the competition on the FSAE Online website The Cost Scenario will include detailed information about the conduct, scope, and conditions of the Cost Scenario", - "parentRuleCode": "S.3", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.16", - "ruleContent": "Cost Event Scoring", - "parentRuleCode": "S.3", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.16.1", - "ruleContent": "Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario", - "parentRuleCode": "S.3.16", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.16.2", - "ruleContent": "The Cost Event is worth 100 points", - "parentRuleCode": "S.3.16", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.16.3", - "ruleContent": "Cost Event Scores may be awarded in areas including, but not limited to: • Price Score • Discussion Score • Scenario Score", - "parentRuleCode": "S.3.16", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.16.4", - "ruleContent": "Penalty points may be subtracted from the Cost Score, with no limit.", - "parentRuleCode": "S.3.16", - "pageNumber": "125" - }, - { - "ruleCode": "S.3.16.5", - "ruleContent": "Cost Event scoring may include normalizing the scores of different judging teams and scaling the results. Version 1.0 31 Aug 2024", - "parentRuleCode": "S.3.16", - "pageNumber": "125" - }, - { - "ruleCode": "S.4", - "ruleContent": "DESIGN EVENT", - "parentRuleCode": "S", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.1", - "ruleContent": "Design Event Objective", - "parentRuleCode": "S.4", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.1.1", - "ruleContent": "The Design Event evaluates the engineering effort that went into the vehicle and how the engineering meets the intent of the market in terms of vehicle performance and overall value.", - "parentRuleCode": "S.4.1", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.1.2", - "ruleContent": "The team and vehicle that illustrate the best use of engineering to meet the design goals, a cost effective high performance vehicle, and the best understanding of the design by the team members will win the Design Event.", - "parentRuleCode": "S.4.1", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.1.3", - "ruleContent": "Components and systems that are incorporated into the design as finished items are not evaluated as a student designed unit, but are assessed on the team’s selection and application of that unit.", - "parentRuleCode": "S.4.1", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.2", - "ruleContent": "Design Documents", - "parentRuleCode": "S.4", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.2.1", - "ruleContent": "Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings", - "parentRuleCode": "S.4.2", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.2.2", - "ruleContent": "These Design Documents will be used for: • Design Judge reviews prior to the Design Event • Sorting teams into appropriate design groups based on the quality of their review.", - "parentRuleCode": "S.4.2", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.2.3", - "ruleContent": "Penalties for Late Submission of all or any one of the Design Documents will be imposed as given in section DR - Document Requirements", - "parentRuleCode": "S.4.2", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.2.4", - "ruleContent": "Teams that submit one or more Design Documents which do not represent a serious effort to comply with the requirements may be excluded from the Design Event or be awarded a lower score.", - "parentRuleCode": "S.4.2", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.3", - "ruleContent": "Design Briefing", - "parentRuleCode": "S.4", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.3.1", - "ruleContent": "The Design Briefing must use the template from the FSAE Online website.", - "parentRuleCode": "S.4.3", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.3.2", - "ruleContent": "Refer to the Design Briefing template for:", - "parentRuleCode": "S.4.3", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.3.2.a", - "ruleContent": "Specific content requirements, areas and details", - "parentRuleCode": "S.4.3.2", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.3.2.b", - "ruleContent": "Maximum slides that may be used per topic", - "parentRuleCode": "S.4.3.2", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.3.3", - "ruleContent": "Submit the Design Briefing as given in section DR - Document Requirements", - "parentRuleCode": "S.4.3", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.4", - "ruleContent": "Vehicle Drawings", - "parentRuleCode": "S.4", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.4.1", - "ruleContent": "The Vehicle Drawings must meet:", - "parentRuleCode": "S.4.4", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.4.1.a", - "ruleContent": "Three view line drawings showing the vehicle, from the front, top, and side", - "parentRuleCode": "S.4.4.1", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.4.1.b", - "ruleContent": "Each drawing must appear on a separate page", - "parentRuleCode": "S.4.4.1", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.4.1.c", - "ruleContent": "May be manually or computer generated", - "parentRuleCode": "S.4.4.1", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.4.2", - "ruleContent": "Submit the Vehicle Drawings as given in section DR - Document Requirements", - "parentRuleCode": "S.4.4", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.5", - "ruleContent": "Design Spec Sheet Use the format provided and submit the Design Spec Sheet as given in section DR - Document Requirements The Design Judges realize that final design refinements and vehicle development may cause the submitted values to differ from those of the completed vehicle. For specifications that are subject to tuning, an anticipated range of values may be appropriate. Version 1.0 31 Aug 2024", - "parentRuleCode": "S.4", - "pageNumber": "126" - }, - { - "ruleCode": "S.4.6", - "ruleContent": "Vehicle Condition", - "parentRuleCode": "S.4", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.6.1", - "ruleContent": "Inspection Approval IN.13.1.1 is not required prior to Design judging.", - "parentRuleCode": "S.4.6", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.6.2", - "ruleContent": "Vehicles must be presented for Design judging in finished condition, fully assembled, complete and ready to run.", - "parentRuleCode": "S.4.6", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.6.2.a", - "ruleContent": "The judges will not evaluate any vehicle that is presented at the Design event in what they consider to be an unfinished state.", - "parentRuleCode": "S.4.6.2", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.6.2.b", - "ruleContent": "Point penalties may be assessed for vehicles with obvious preparation issues", - "parentRuleCode": "S.4.6.2", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.7", - "ruleContent": "Support Material", - "parentRuleCode": "S.4", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.7.1", - "ruleContent": "Teams may bring to Design Judging any photographs, drawings, plans, charts, example components or other materials that they believe are needed to support the presentation of the vehicle and the discussion of their development process.", - "parentRuleCode": "S.4.7", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.7.2", - "ruleContent": "The available space in the Design Event judging area may be limited.", - "parentRuleCode": "S.4.7", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.8", - "ruleContent": "Judging Sequence Design judging may be conducted in one or more phases. Typical Design judging includes a first round review of all teams, then additional review of selected teams.", - "parentRuleCode": "S.4", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.9", - "ruleContent": "Judging Criteria", - "parentRuleCode": "S.4", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.9.1", - "ruleContent": "The Design Judges will:", - "parentRuleCode": "S.4.9", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.9.1.a", - "ruleContent": "Evaluate the engineering effort based upon the team’s Design Documents, discussion with the team, and an inspection of the vehicle", - "parentRuleCode": "S.4.9.1", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.9.1.b", - "ruleContent": "Inspect the vehicle to determine if the design concepts are adequate and appropriate for the application (relative to the objectives stated in the rules).", - "parentRuleCode": "S.4.9.1", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.9.1.c", - "ruleContent": "Deduct points if the team cannot adequately explain the engineering and construction of the vehicle", - "parentRuleCode": "S.4.9.1", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.9.2", - "ruleContent": "The Design Judges may assign a portion of the Design Event points to the Design Documents", - "parentRuleCode": "S.4.9", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.9.3", - "ruleContent": "Design Judging Score Sheets are available at the FSAE Online website.", - "parentRuleCode": "S.4.9", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.10", - "ruleContent": "Design Event Scoring", - "parentRuleCode": "S.4", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.10.1", - "ruleContent": "Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge", - "parentRuleCode": "S.4.10", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.10.2", - "ruleContent": "Penalty points may be subtracted from the Design score", - "parentRuleCode": "S.4.10", - "pageNumber": "127" - }, - { - "ruleCode": "S.4.10.3", - "ruleContent": "Vehicles that are excluded from Design judging or refused judging get zero points for Design, and may receive penalty points. Version 1.0 31 Aug 2024", - "parentRuleCode": "S.4.10", - "pageNumber": "127" - }, - { - "ruleCode": "D", - "ruleContent": "DYNAMIC EVENTS", - "pageNumber": "128" - }, - { - "ruleCode": "D.1", - "ruleContent": "GENERAL DYNAMIC", - "parentRuleCode": "D", - "pageNumber": "128" - }, - { - "ruleCode": "D.1.1", - "ruleContent": "Dynamic Events and Maximum Scores Acceleration 100 points Skid Pad 75 points Autocross 125 points Efficiency 100 points Endurance 275 points Total 675 points", - "parentRuleCode": "D.1", - "pageNumber": "128" - }, - { - "ruleCode": "D.1.2", - "ruleContent": "Definitions", - "parentRuleCode": "D.1", - "pageNumber": "128" - }, - { - "ruleCode": "D.1.2.1", - "ruleContent": "Dynamic Area – Any designated portion(s) of the competition site where the vehicles may move under their own power. This includes competition, inspection and practice areas.", - "parentRuleCode": "D.1.2", - "pageNumber": "128" - }, - { - "ruleCode": "D.1.2.2", - "ruleContent": "Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the purpose of gathering those vehicles that are about to start.", - "parentRuleCode": "D.1.2", - "pageNumber": "128" - }, - { - "ruleCode": "D.2", - "ruleContent": "PIT AND PADDOCK", - "parentRuleCode": "D", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1", - "ruleContent": "Vehicle Movement", - "parentRuleCode": "D.2", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1.1", - "ruleContent": "Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside", - "parentRuleCode": "D.2.1", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1.2", - "ruleContent": "The team may move the vehicle with", - "parentRuleCode": "D.2.1", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1.2.a", - "ruleContent": "All four wheels on the ground", - "parentRuleCode": "D.2.1.2", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1.2.b", - "ruleContent": "The rear wheels supported on dollies, by push bar mounted wheels The external wheels supporting the rear of the vehicle must be non pivoting so the vehicle travels only where the front wheels are steered. The driver must always be able to steer and brake the vehicle normally.", - "parentRuleCode": "D.2.1.2", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1.3", - "ruleContent": "When the Push Bar is attached, the engine must stay off, unless authorized by the officials", - "parentRuleCode": "D.2.1", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1.4", - "ruleContent": "Vehicles must be Shutdown when being moved around the paddock", - "parentRuleCode": "D.2.1", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1.5", - "ruleContent": "Vehicles with wings must have two team members, one walking on each side of the vehicle when the vehicle is being pushed", - "parentRuleCode": "D.2.1", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.1.6", - "ruleContent": "A 25 point penalty may be assessed for each violation", - "parentRuleCode": "D.2.1", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.2", - "ruleContent": "Fueling and Charging (IC only) Officials must conduct all fueling activities in the designated location. (EV only) Accumulator charging must be done in the designated location EV.11.5", - "parentRuleCode": "D.2", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.3", - "ruleContent": "Powertrain Operation In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three:", - "parentRuleCode": "D.2", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.3.a", - "ruleContent": "(IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR a Technical Inspector gives permission (EV only) The vehicle shows the OK to Energize sticker IN.4.7.3", - "parentRuleCode": "D.2.3", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.3.b", - "ruleContent": "The vehicle is supported on a stand Version 1.0 31 Aug 2024", - "parentRuleCode": "D.2.3", - "pageNumber": "128" - }, - { - "ruleCode": "D.2.3.c", - "ruleContent": "The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed", - "parentRuleCode": "D.2.3", - "pageNumber": "128" - }, - { - "ruleCode": "D.3", - "ruleContent": "DRIVING", - "parentRuleCode": "D", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.1", - "ruleContent": "Drivers Meetings – Attendance Required All drivers for an event must attend the drivers meeting(s). The driver for an event will be disqualified if he/she does not attend the driver meeting for the event.", - "parentRuleCode": "D.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.2", - "ruleContent": "Dynamic Area Limitations Refer to the Event Website for specific information", - "parentRuleCode": "D.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.2.1", - "ruleContent": "The organizer may specify restrictions for the Dynamic Area. These could include limiting the number of team members and what may be brought into the area.", - "parentRuleCode": "D.3.2", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.2.2", - "ruleContent": "The organizer may specify additional restrictions for the Staging Area. These could include limiting the number of team members and what may be brought into the area.", - "parentRuleCode": "D.3.2", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.2.3", - "ruleContent": "The organizer may establish requirements for persons in the Dynamic Area, such as closed toe shoes or long pants.", - "parentRuleCode": "D.3.2", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.3", - "ruleContent": "Driving Under Power", - "parentRuleCode": "D.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.3.1", - "ruleContent": "Vehicles must move under their own power only when inside the designated Dynamic Area(s), unless otherwise directed by the officials.", - "parentRuleCode": "D.3.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.3.2", - "ruleContent": "Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point penalty for the first violation and disqualification for a second violation.", - "parentRuleCode": "D.3.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.4", - "ruleContent": "Driving Offsite - Prohibited Teams found to have driven their vehicle at an offsite location during the period of the competition will be excluded from the competition.", - "parentRuleCode": "D.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.5", - "ruleContent": "Driver Equipment", - "parentRuleCode": "D.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.5.1", - "ruleContent": "All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with:", - "parentRuleCode": "D.3.5", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.5.1.a", - "ruleContent": "(IC) Engine running or (EV) Tractive System Active", - "parentRuleCode": "D.3.5.1", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.5.1.b", - "ruleContent": "Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run.", - "parentRuleCode": "D.3.5.1", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.5.2", - "ruleContent": "Removal of any Driver Equipment during a Dynamic event will result in Disqualification.", - "parentRuleCode": "D.3.5", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.6", - "ruleContent": "Starting Auxiliary batteries must not be used once a vehicle has moved to the starting line of any event. See IC.8.1", - "parentRuleCode": "D.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.7", - "ruleContent": "Practice Area", - "parentRuleCode": "D.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.7.1", - "ruleContent": "A practice area for testing and tuning may be available", - "parentRuleCode": "D.3.7", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.7.2", - "ruleContent": "The practice area will be controlled and may only be used during the scheduled times", - "parentRuleCode": "D.3.7", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.7.3", - "ruleContent": "Vehicles using the practice area must have a complete Inspection Sticker", - "parentRuleCode": "D.3.7", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.8", - "ruleContent": "Instructions from Officials Obey flags and hand signals from course marshals and officials immediately Version 1.0 31 Aug 2024", - "parentRuleCode": "D.3", - "pageNumber": "129" - }, - { - "ruleCode": "D.3.9", - "ruleContent": "Vehicle Integrity Officials may revoke the Inspection Approval for any vehicle condition that could compromise vehicle integrity, compromise the track surface, or pose a potential hazard. This could result in DNF or DQ of any Dynamic event.", - "parentRuleCode": "D.3", - "pageNumber": "130" - }, - { - "ruleCode": "D.3.10", - "ruleContent": "Stalled & Disabled Vehicles", - "parentRuleCode": "D.3", - "pageNumber": "130" - }, - { - "ruleCode": "D.3.10.1", - "ruleContent": "If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to complete the run, it will be scored DNF for that run", - "parentRuleCode": "D.3.10", - "pageNumber": "130" - }, - { - "ruleCode": "D.3.10.2", - "ruleContent": "Disabled vehicles will be cleared from the track by the track workers.", - "parentRuleCode": "D.3.10", - "pageNumber": "130" - }, - { - "ruleCode": "D.4", - "ruleContent": "FLAGS Any specific variations will be addressed at the drivers meeting.", - "parentRuleCode": "D", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1", - "ruleContent": "Command Flags", - "parentRuleCode": "D.4", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.1", - "ruleContent": "Any Command Flag must be obeyed immediately and without question.", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.2", - "ruleContent": "Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time penalty may be assessed.", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.3", - "ruleContent": "Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, something has been observed that needs closer inspection.", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.4", - "ruleContent": "Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the corner workers signals at the end of the passing zone to merge into competition.", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.5", - "ruleContent": "Checkered Flag - Run has been completed. Exit the course at the designated point.", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.6", - "ruleContent": "Green Flag – Approval to begin your run, enter the course under direction of the starter. If you stall the vehicle, please restart and await another Green Flag", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.7", - "ruleContent": "Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the course as much as possible to keep the course open. Follow corner worker directions.", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.8", - "ruleContent": "Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, something has happened beyond the flag station. NO PASSING unless directed by the corner workers.", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.1.9", - "ruleContent": "Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless directed by the corner workers.", - "parentRuleCode": "D.4.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.2", - "ruleContent": "Informational Flags", - "parentRuleCode": "D.4", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.2.1", - "ruleContent": "An Information Flag communicates to the driver, but requires no specific action.", - "parentRuleCode": "D.4.2", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.2.2", - "ruleContent": "Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be prepared for evasive maneuvers.", - "parentRuleCode": "D.4.2", - "pageNumber": "130" - }, - { - "ruleCode": "D.4.2.3", - "ruleContent": "White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a cautious rate.", - "parentRuleCode": "D.4.2", - "pageNumber": "130" - }, - { - "ruleCode": "D.5", - "ruleContent": "WEATHER CONDITIONS", - "parentRuleCode": "D", - "pageNumber": "130" - }, - { - "ruleCode": "D.5.1", - "ruleContent": "Operating Adjustments", - "parentRuleCode": "D.5", - "pageNumber": "130" - }, - { - "ruleCode": "D.5.1.1", - "ruleContent": "The organizer may alter the conduct and scoring of the competition based on weather conditions. Version 1.0 31 Aug 2024", - "parentRuleCode": "D.5.1", - "pageNumber": "130" - }, - { - "ruleCode": "D.5.1.2", - "ruleContent": "No adjustments will be made to times for running in differing Operating Conditions.", - "parentRuleCode": "D.5.1", - "pageNumber": "131" - }, - { - "ruleCode": "D.5.1.3", - "ruleContent": "The minimum performance levels to score points may be adjusted by the Officials.", - "parentRuleCode": "D.5.1", - "pageNumber": "131" - }, - { - "ruleCode": "D.5.2", - "ruleContent": "Operating Conditions", - "parentRuleCode": "D.5", - "pageNumber": "131" - }, - { - "ruleCode": "D.5.2.1", - "ruleContent": "These operating conditions will be recognized: • Dry • Damp • Wet", - "parentRuleCode": "D.5.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.5.2.2", - "ruleContent": "The current operating condition will be decided by the Officials and may change at any time.", - "parentRuleCode": "D.5.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.5.2.3", - "ruleContent": "The current operating condition will be prominently displayed at the Dynamic Area, and may be communicated by other means.", - "parentRuleCode": "D.5.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.6", - "ruleContent": "TIRES AND TIRE CHANGES", - "parentRuleCode": "D", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.1", - "ruleContent": "Tire Requirements", - "parentRuleCode": "D.6", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.1.1", - "ruleContent": "Teams must run the tires allowed for each Operating Condition: Operating Condition Tires Allowed Dry Dry ( V.4.3.1 ) Damp Dry or Wet Wet Wet ( V.4.3.2 )", - "parentRuleCode": "D.6.1", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.1.2", - "ruleContent": "When the operating condition is Damp, teams may change between Dry Tires and Wet Tires:", - "parentRuleCode": "D.6.1", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.1.2.a", - "ruleContent": "Any time during the Acceleration, Skidpad, and Autocross Events", - "parentRuleCode": "D.6.1.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.1.2.b", - "ruleContent": "Any time before starting their Endurance Event", - "parentRuleCode": "D.6.1.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.2", - "ruleContent": "Tire Changes during Endurance", - "parentRuleCode": "D.6", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.2.1", - "ruleContent": "All tire changes after a vehicle has received the Green flag to start the Endurance Event must occur in the Driver Change Area", - "parentRuleCode": "D.6.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.2.2", - "ruleContent": "If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or vehicles will be Black Flagged and brought into the Driver Change Area", - "parentRuleCode": "D.6.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.2.3", - "ruleContent": "The allowed tire changes and associated conditions are given in these tables. Existing Operating Condition Currently Running on: Operating Condition Changed to: Dry Damp Wet Dry Dry Tires ok A B Damp Dry Tires ok A B Damp Wet Tires C C ok Wet Wet Tires C C ok Requirement Allowed at Driver Change? A may change from Dry to Wet Yes B MUST change from Dry to Wet Yes C may change from Wet to Dry NO", - "parentRuleCode": "D.6.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.2.4", - "ruleContent": "Time allowed to change tires: Version 1.0 31 Aug 2024", - "parentRuleCode": "D.6.2", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.2.4.a", - "ruleContent": "Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 minutes with Driver Change, will be added to the team's total time for Endurance", - "parentRuleCode": "D.6.2.4", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.2.4.b", - "ruleContent": "Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s total time for Endurance", - "parentRuleCode": "D.6.2.4", - "pageNumber": "131" - }, - { - "ruleCode": "D.6.2.5", - "ruleContent": "If the vehicle has a tire puncture,", - "parentRuleCode": "D.6.2", - "pageNumber": "132" - }, - { - "ruleCode": "D.6.2.5.a", - "ruleContent": "The wheel and tire may be replaced with an identical wheel and tire", - "parentRuleCode": "D.6.2.5", - "pageNumber": "132" - }, - { - "ruleCode": "D.6.2.5.b", - "ruleContent": "When the puncture is caused by track debris and not a result of component failure or the vehicle itself, the tire change time will not count towards the team’s total time.", - "parentRuleCode": "D.6.2.5", - "pageNumber": "132" - }, - { - "ruleCode": "D.7", - "ruleContent": "DRIVER LIMITATIONS", - "parentRuleCode": "D", - "pageNumber": "132" - }, - { - "ruleCode": "D.7.1", - "ruleContent": "Three Event Limit", - "parentRuleCode": "D.7", - "pageNumber": "132" - }, - { - "ruleCode": "D.7.1.1", - "ruleContent": "An individual team member may not drive in more than three events.", - "parentRuleCode": "D.7.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.7.1.2", - "ruleContent": "The Efficiency Event is considered a separate event although it is conducted simultaneously with the Endurance Event. A minimum of four drivers are required to participate in all of the dynamic events.", - "parentRuleCode": "D.7.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8", - "ruleContent": "DEFINITIONS", - "parentRuleCode": "D", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.1", - "ruleContent": "DOO - Cone is Down or Out when one or the two:", - "parentRuleCode": "D.8.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.1.a", - "ruleContent": "Cone has been knocked over (Down)", - "parentRuleCode": "D.8.1.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.1.b", - "ruleContent": "The entire base of the cone lies outside the box marked around the cone in its undisturbed position (Out)", - "parentRuleCode": "D.8.1.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.2", - "ruleContent": "DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed to complete it", - "parentRuleCode": "D.8.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.3", - "ruleContent": "DQ - Disqualified - run(s) or event(s) no longer valid", - "parentRuleCode": "D.8.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.4", - "ruleContent": "Gate - The path between two cones through which the vehicle must pass. Two cones, one on each side of the course define a gate. Two sequential cones in a slalom define a gate.", - "parentRuleCode": "D.8.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.5", - "ruleContent": "Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter the course.", - "parentRuleCode": "D.8.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.6", - "ruleContent": "Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit the course.", - "parentRuleCode": "D.8.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.7", - "ruleContent": "OC – Off Course", - "parentRuleCode": "D.8.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.7.a", - "ruleContent": "The vehicle did not pass through a gate in the required direction.", - "parentRuleCode": "D.8.1.7", - "pageNumber": "132" - }, - { - "ruleCode": "D.8.1.7.b", - "ruleContent": "The vehicle has all four wheels outside the course boundary as indicated by cones, edge marking or the edge of the paved surface. Where more than one boundary indicator is used on the same course, the narrowest track will be used when determining Off Course penalties.", - "parentRuleCode": "D.8.1.7", - "pageNumber": "132" - }, - { - "ruleCode": "D.9", - "ruleContent": "ACCELERATION EVENT The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement.", - "parentRuleCode": "D", - "pageNumber": "132" - }, - { - "ruleCode": "D.9.1", - "ruleContent": "Acceleration Layout", - "parentRuleCode": "D.9", - "pageNumber": "132" - }, - { - "ruleCode": "D.9.1.1", - "ruleContent": "Course length will be 75 m from starting line to finish line Version 1.0 31 Aug 2024", - "parentRuleCode": "D.9.1", - "pageNumber": "132" - }, - { - "ruleCode": "D.9.1.2", - "ruleContent": "Course width will be minimum 4.9 m wide as measured between the inner edges of the bases of the course edge cones", - "parentRuleCode": "D.9.1", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.1.3", - "ruleContent": "Cones are put along the course edges at intervals, approximately 6 m", - "parentRuleCode": "D.9.1", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.1.4", - "ruleContent": "Cone locations are not marked on the pavement", - "parentRuleCode": "D.9.1", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2", - "ruleContent": "Acceleration Procedure", - "parentRuleCode": "D.9", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2.1", - "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver", - "parentRuleCode": "D.9.2", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2.2", - "ruleContent": "Runs with the first driver have priority", - "parentRuleCode": "D.9.2", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2.3", - "ruleContent": "Each Acceleration run is done as follows:", - "parentRuleCode": "D.9.2", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2.3.a", - "ruleContent": "The foremost part of the vehicle will be staged at 0.30 m behind the starting line", - "parentRuleCode": "D.9.2.3", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2.3.b", - "ruleContent": "A Green Flag or light signal will give the approval to begin the run", - "parentRuleCode": "D.9.2.3", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2.3.c", - "ruleContent": "Timing starts when the vehicle crosses the starting line", - "parentRuleCode": "D.9.2.3", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2.3.d", - "ruleContent": "Timing ends when the vehicle crosses the finish line", - "parentRuleCode": "D.9.2.3", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.2.4", - "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", - "parentRuleCode": "D.9.2", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.3", - "ruleContent": "Acceleration Penalties", - "parentRuleCode": "D.9", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.3.1", - "ruleContent": "Cones (DOO) Two second penalty for each DOO (including entry and exit gate cones) on that run", - "parentRuleCode": "D.9.3", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.3.2", - "ruleContent": "Off Course (OC) DNF for that run", - "parentRuleCode": "D.9.3", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.4", - "ruleContent": "Acceleration Scoring", - "parentRuleCode": "D.9", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.4.1", - "ruleContent": "Scoring Term Definitions: • Corrected Time = Acceleration Run Time + ( DOO * 2 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 150% of Tmin", - "parentRuleCode": "D.9.4", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Acceleration Score = 95.5 x ( Tmax / Tyour ) -1 + 4.5 ( Tmax / Tmin ) -1", - "parentRuleCode": "D.9.4", - "pageNumber": "133" - }, - { - "ruleCode": "D.9.4.3", - "ruleContent": "When Tyour > Tmax , Acceleration Score = 4.5", - "parentRuleCode": "D.9.4", - "pageNumber": "133" - }, - { - "ruleCode": "D.10", - "ruleContent": "SKIDPAD EVENT The Skidpad event measures the vehicle cornering ability on a flat surface while making a constant radius turn.", - "parentRuleCode": "D", - "pageNumber": "133" - }, - { - "ruleCode": "D.10.1", - "ruleContent": "Skidpad Layout", - "parentRuleCode": "D.10", - "pageNumber": "133" - }, - { - "ruleCode": "D.10.1.1", - "ruleContent": "Course Design • Two pairs of concentric circles in a figure of eight pattern • Centers of the circles 18.25 m apart • Inner circles 15.25 m in diameter Version 1.0 31 Aug 2024 • Outer circles 21.25 m in diameter • Driving path the 3.0 m wide path between the inner and outer circles", - "parentRuleCode": "D.10.1", - "pageNumber": "133" - }, - { - "ruleCode": "D.10.1.2", - "ruleContent": "Cone Placement", - "parentRuleCode": "D.10.1", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.1.2.a", - "ruleContent": "Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) pylons will be positioned around the outside of each outer circle in the pattern shown in the Skidpad layout diagram", - "parentRuleCode": "D.10.1.2", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.1.2.b", - "ruleContent": "Each circle will be marked with a chalk line, inside the inner circle and outside the outer circle The Skidpad layout diagram shows the circles for cone placement, not for course marking. Chalk lines are marked on the opposite side of the cones, outside the driving path", - "parentRuleCode": "D.10.1.2", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.1.2.c", - "ruleContent": "Additional pylons will establish the entry and exit gates", - "parentRuleCode": "D.10.1.2", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.1.2.d", - "ruleContent": "A cone may be put in the middle of the exit gate until the finish lap", - "parentRuleCode": "D.10.1.2", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.1.3", - "ruleContent": "Course Operation", - "parentRuleCode": "D.10.1", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.1.3.a", - "ruleContent": "Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the circles where they meet.", - "parentRuleCode": "D.10.1.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.1.3.b", - "ruleContent": "The line between the centers of the circles defines the start/stop line.", - "parentRuleCode": "D.10.1.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.1.3.c", - "ruleContent": "A lap is defined as traveling around one of the circles from the start/stop line and returning to the start/stop line.", - "parentRuleCode": "D.10.1.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2", - "ruleContent": "Skidpad Procedure", - "parentRuleCode": "D.10", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.1", - "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver.", - "parentRuleCode": "D.10.2", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.2", - "ruleContent": "Runs with the first driver have priority", - "parentRuleCode": "D.10.2", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.3", - "ruleContent": "Each Skidpad run is done as follows:", - "parentRuleCode": "D.10.2", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.3.a", - "ruleContent": "A Green Flag or light signal will give the approval to begin the run Version 1.0 31 Aug 2024", - "parentRuleCode": "D.10.2.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.3.b", - "ruleContent": "The vehicle will enter perpendicular to the figure eight and will take one full lap on the right circle", - "parentRuleCode": "D.10.2.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.3.c", - "ruleContent": "The next lap will be on the right circle and will be timed", - "parentRuleCode": "D.10.2.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.3.d", - "ruleContent": "Immediately after the second lap, the vehicle will enter the left circle for the third lap", - "parentRuleCode": "D.10.2.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.3.e", - "ruleContent": "The fourth lap will be on the left circle and will be timed", - "parentRuleCode": "D.10.2.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.3.f", - "ruleContent": "Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the intersection moving in the same direction as entered", - "parentRuleCode": "D.10.2.3", - "pageNumber": "134" - }, - { - "ruleCode": "D.10.2.4", - "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", - "parentRuleCode": "D.10.2", - "pageNumber": "135" - }, - { - "ruleCode": "D.10.3", - "ruleContent": "Skidpad Penalties", - "parentRuleCode": "D.10", - "pageNumber": "135" - }, - { - "ruleCode": "D.10.3.1", - "ruleContent": "Cones (DOO) A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run", - "parentRuleCode": "D.10.3", - "pageNumber": "135" - }, - { - "ruleCode": "D.10.3.2", - "ruleContent": "Off Course (OC) DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off Course.", - "parentRuleCode": "D.10.3", - "pageNumber": "135" - }, - { - "ruleCode": "D.10.3.3", - "ruleContent": "Incorrect Laps Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be DNF for that run.", - "parentRuleCode": "D.10.3", - "pageNumber": "135" - }, - { - "ruleCode": "D.10.4", - "ruleContent": "Skidpad Scoring", - "parentRuleCode": "D.10", - "pageNumber": "135" - }, - { - "ruleCode": "D.10.4.1", - "ruleContent": "Scoring Term Definitions • Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) • Tyour - the best Corrected Time for the team • Tmin - is the lowest Corrected Time recorded for any team • Tmax - 125% of Tmin", - "parentRuleCode": "D.10.4", - "pageNumber": "135" - }, - { - "ruleCode": "D.10.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Skidpad Score = 71.5 x ( Tmax / Tyour ) 2 -1 + 3.5 ( Tmax / Tmin ) 2 -1", - "parentRuleCode": "D.10.4", - "pageNumber": "135" - }, - { - "ruleCode": "D.10.4.3", - "ruleContent": "When Tyour > Tmax , Skidpad Score = 3.5", - "parentRuleCode": "D.10.4", - "pageNumber": "135" - }, - { - "ruleCode": "D.11", - "ruleContent": "AUTOCROSS EVENT The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight course", - "parentRuleCode": "D", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1", - "ruleContent": "Autocross Layout", - "parentRuleCode": "D.11", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1", - "ruleContent": "The Autocross course will be designed with these specifications. Average speeds should be 40 km/hr to 48 km/hr", - "parentRuleCode": "D.11.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1.a", - "ruleContent": "Straights: No longer than 60 m with hairpins at the two ends", - "parentRuleCode": "D.11.1.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1.b", - "ruleContent": "Straights: No longer than 45 m with wide turns on the ends", - "parentRuleCode": "D.11.1.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1.c", - "ruleContent": "Constant Turns: 23 m to 45 m diameter", - "parentRuleCode": "D.11.1.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1.d", - "ruleContent": "Hairpin Turns: 9 m minimum outside diameter (of the turn) Version 1.0 31 Aug 2024", - "parentRuleCode": "D.11.1.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1.e", - "ruleContent": "Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing", - "parentRuleCode": "D.11.1.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1.f", - "ruleContent": "Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc.", - "parentRuleCode": "D.11.1.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1.g", - "ruleContent": "Minimum track width: 3.5 m", - "parentRuleCode": "D.11.1.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.1.h", - "ruleContent": "Length of each run should be approximately 0.80 km", - "parentRuleCode": "D.11.1.1", - "pageNumber": "135" - }, - { - "ruleCode": "D.11.1.2", - "ruleContent": "The Autocross course specifications may deviate from the above to accommodate event site requirements.", - "parentRuleCode": "D.11.1", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2", - "ruleContent": "Autocross Procedure", - "parentRuleCode": "D.11", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2.1", - "ruleContent": "Each team may attempt up to four runs, using two drivers, limited to two runs for each driver", - "parentRuleCode": "D.11.2", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2.2", - "ruleContent": "Runs with the first driver have priority", - "parentRuleCode": "D.11.2", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2.3", - "ruleContent": "Each Autocross run is done as follows:", - "parentRuleCode": "D.11.2", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2.3.a", - "ruleContent": "The vehicle will be staged at a specific distance behind the starting line", - "parentRuleCode": "D.11.2.3", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2.3.b", - "ruleContent": "A Green Flag or light signal will give the approval to begin the run", - "parentRuleCode": "D.11.2.3", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2.3.c", - "ruleContent": "Timing starts when the vehicle crosses the starting line", - "parentRuleCode": "D.11.2.3", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2.3.d", - "ruleContent": "Timing ends when the vehicle crosses the finish line", - "parentRuleCode": "D.11.2.3", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.2.4", - "ruleContent": "Each driver may go to the front of the staging line immediately after their first run to make a second run", - "parentRuleCode": "D.11.2", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.3", - "ruleContent": "Autocross Penalties", - "parentRuleCode": "D.11", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.3.1", - "ruleContent": "Cones (DOO) Two second penalty for each DOO (including cones after the finish line) on that run", - "parentRuleCode": "D.11.3", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.3.2", - "ruleContent": "Off Course (OC)", - "parentRuleCode": "D.11.3", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.3.2.a", - "ruleContent": "When an OC occurs, the driver must reenter the track at or prior to the point of exit or receive a 20 second penalty", - "parentRuleCode": "D.11.3.2", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.3.2.b", - "ruleContent": "Penalties will not be assessed to bypass an accident or other reasons at the discretion of track officials.", - "parentRuleCode": "D.11.3.2", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.3.3", - "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one Off Course", - "parentRuleCode": "D.11.3", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.4", - "ruleContent": "Autocross Scoring", - "parentRuleCode": "D.11", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.4.1", - "ruleContent": "Scoring Term Definitions: • Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the best Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team • Tmax - 145% of Tmin", - "parentRuleCode": "D.11.4", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.4.2", - "ruleContent": "When Tyour < Tmax. the team score is calculated as: Autocross Score = 118.5 x ( Tmax / Tyour ) -1 + 6.5 ( Tmax / Tmin ) -1", - "parentRuleCode": "D.11.4", - "pageNumber": "136" - }, - { - "ruleCode": "D.11.4.3", - "ruleContent": "When Tyour > Tmax , Autocross Score = 6.5 Version 1.0 31 Aug 2024", - "parentRuleCode": "D.11.4", - "pageNumber": "136" - }, - { - "ruleCode": "D.12", - "ruleContent": "ENDURANCE EVENT The Endurance event evaluates the overall performance of the vehicle and tests the durability and reliability.", - "parentRuleCode": "D", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.1", - "ruleContent": "Endurance General Information", - "parentRuleCode": "D.12", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.1.1", - "ruleContent": "The organizer may establish one or more requirements to allow teams to compete in the Endurance event.", - "parentRuleCode": "D.12.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.1.2", - "ruleContent": "Each team may attempt the Endurance event once.", - "parentRuleCode": "D.12.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.1.3", - "ruleContent": "The Endurance event consists of two Endurance runs, each using a different driver, with a Driver Change between.", - "parentRuleCode": "D.12.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.1.4", - "ruleContent": "Teams may not work on their vehicles once their Endurance event has started", - "parentRuleCode": "D.12.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.1.5", - "ruleContent": "Multiple vehicles may be on the track at the same time", - "parentRuleCode": "D.12.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.1.6", - "ruleContent": "Wheel to Wheel racing is prohibited.", - "parentRuleCode": "D.12.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.1.7", - "ruleContent": "Vehicles must not be driven in reverse", - "parentRuleCode": "D.12.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2", - "ruleContent": "Endurance Layout", - "parentRuleCode": "D.12", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.1", - "ruleContent": "The Endurance event will consist of multiple laps over a closed course to a total distance of approximately 22 km.", - "parentRuleCode": "D.12.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2", - "ruleContent": "The Endurance course will be designed with these specifications. Average speed should be 48 km/hr to 57 km/hr with top speeds of approximately 105 km/hr.", - "parentRuleCode": "D.12.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2.a", - "ruleContent": "Straights: No longer than 77 m with hairpins at the two ends", - "parentRuleCode": "D.12.2.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2.b", - "ruleContent": "Straights: No longer than 61 m with wide turns on the ends", - "parentRuleCode": "D.12.2.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2.c", - "ruleContent": "Constant Turns: 30 m to 54 m diameter", - "parentRuleCode": "D.12.2.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2.d", - "ruleContent": "Hairpin Turns: 9 m minimum outside diameter (of the turn)", - "parentRuleCode": "D.12.2.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2.e", - "ruleContent": "Slaloms: Cones in a straight line with 9 m to 15 m spacing", - "parentRuleCode": "D.12.2.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2.f", - "ruleContent": "Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc.", - "parentRuleCode": "D.12.2.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2.g", - "ruleContent": "Minimum track width: 4.5 m", - "parentRuleCode": "D.12.2.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.2.h", - "ruleContent": "Designated passing zones at several locations", - "parentRuleCode": "D.12.2.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.2.3", - "ruleContent": "The Endurance course specifications may deviate from the above to accommodate event site requirements.", - "parentRuleCode": "D.12.2", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.3", - "ruleContent": "Endurance Run Order The Endurance Run Order is established to let vehicles of similar speed potential be on track together to reduce the need for passing.", - "parentRuleCode": "D.12", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.3.1", - "ruleContent": "The Endurance Run Order:", - "parentRuleCode": "D.12.3", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.3.1.a", - "ruleContent": "Should be primarily based on the Autocross event finish order", - "parentRuleCode": "D.12.3.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.3.1.b", - "ruleContent": "Should include the teams eligible for Endurance which did not compete in the Autocross event.", - "parentRuleCode": "D.12.3.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.3.1.c", - "ruleContent": "May be altered by the organizer to accommodate specific circumstances or event considerations", - "parentRuleCode": "D.12.3.1", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.3.2", - "ruleContent": "Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line and prepared to start when their turn to run arrives. Version 1.0 31 Aug 2024", - "parentRuleCode": "D.12.3", - "pageNumber": "137" - }, - { - "ruleCode": "D.12.4", - "ruleContent": "Endurance Vehicle Starting / Restarting", - "parentRuleCode": "D.12", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.4.1", - "ruleContent": "Teams that are not ready to run or cannot start their Endurance event in the allowed time when their turn in the Run Order arrives:", - "parentRuleCode": "D.12.4", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.4.1.a", - "ruleContent": "Get a time penalty (D.12.12.5)", - "parentRuleCode": "D.12.4.1", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.4.1.b", - "ruleContent": "May then run at the discretion of the Officials", - "parentRuleCode": "D.12.4.1", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.4.2", - "ruleContent": "After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) restart the engine or to (EV) enter Ready to Drive EV.9.5", - "parentRuleCode": "D.12.4", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.4.2.a", - "ruleContent": "The time will start when the driver first tries to restart the engine or to enable the Tractive System", - "parentRuleCode": "D.12.4.2", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.4.2.b", - "ruleContent": "The time to attempt start / restart is not counted towards the Endurance time", - "parentRuleCode": "D.12.4.2", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.4.3", - "ruleContent": "If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it (approximately 60 seconds) to restart. This time counts toward the Endurance time.", - "parentRuleCode": "D.12.4", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.4.4", - "ruleContent": "If starts / restarts are not accomplished in the above times, the vehicle may be DNF.", - "parentRuleCode": "D.12.4", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.5", - "ruleContent": "Endurance Event Procedure", - "parentRuleCode": "D.12", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.5.1", - "ruleContent": "Vehicles will be staged per the Endurance Run Order", - "parentRuleCode": "D.12.5", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.5.2", - "ruleContent": "Endurance Event sequence:", - "parentRuleCode": "D.12.5", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.5.2.a", - "ruleContent": "The first driver will do an Endurance Run per D.12.6 below", - "parentRuleCode": "D.12.5.2", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.5.2.b", - "ruleContent": "The Driver Change must then be done per D.12.8 below", - "parentRuleCode": "D.12.5.2", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.5.2.c", - "ruleContent": "The second driver will do an Endurance Run per D.12.6 below", - "parentRuleCode": "D.12.5.2", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.5.3", - "ruleContent": "The Endurance Event is complete when the two: • The team has completed the specified number of laps • The second driver crosses the finish line", - "parentRuleCode": "D.12.5", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.6", - "ruleContent": "Endurance Run Procedure", - "parentRuleCode": "D.12", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.6.1", - "ruleContent": "A Green Flag or light signal will give the approval to begin the run", - "parentRuleCode": "D.12.6", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.6.2", - "ruleContent": "The driver will drive approximately half of the Endurance distance", - "parentRuleCode": "D.12.6", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.6.3", - "ruleContent": "A Checkered Flag will be displayed", - "parentRuleCode": "D.12.6", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.6.4", - "ruleContent": "The vehicle must exit the track into the Driver Change Area", - "parentRuleCode": "D.12.6", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7", - "ruleContent": "Driver Change Limitations", - "parentRuleCode": "D.12", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.1", - "ruleContent": "The team may bring only these items into the Driver Change Area:", - "parentRuleCode": "D.12.7", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.1.a", - "ruleContent": "Three team members, including the driver or drivers", - "parentRuleCode": "D.12.7.1", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.1.b", - "ruleContent": "(EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers.", - "parentRuleCode": "D.12.7.1", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.1.c", - "ruleContent": "Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires Team members may only carry tools by hand (no carts, tool chests etc)", - "parentRuleCode": "D.12.7.1", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.1.d", - "ruleContent": "Each extra person entering the Driver Change Area: 20 point penalty", - "parentRuleCode": "D.12.7.1", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.2", - "ruleContent": "The only work permitted during Driver Change is:", - "parentRuleCode": "D.12.7", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.2.a", - "ruleContent": "Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons EV.7.10", - "parentRuleCode": "D.12.7.2", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.2.b", - "ruleContent": "Adjustments to fit the driver IN.14.2.2", - "parentRuleCode": "D.12.7.2", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.7.2.c", - "ruleContent": "Tire changes per D.6.2 Version 1.0 31 Aug 2024", - "parentRuleCode": "D.12.7.2", - "pageNumber": "138" - }, - { - "ruleCode": "D.12.8", - "ruleContent": "Driver Change Procedure", - "parentRuleCode": "D.12", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1", - "ruleContent": "The Driver Change will be done in this sequence:", - "parentRuleCode": "D.12.8", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.a", - "ruleContent": "Vehicle will stop in Driver Change Area", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.b", - "ruleContent": "First Driver turns off the engine / Tractive System. Driver Change time starts.", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.c", - "ruleContent": "First Driver exits the vehicle", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.d", - "ruleContent": "Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.e", - "ruleContent": "Second Driver is secured in the vehicle", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.f", - "ruleContent": "Second Driver is ready to start the engine / enable the Tractive System. Driver Change time stops.", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.g", - "ruleContent": "Second Driver receives permission to continue", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.h", - "ruleContent": "The vehicle engine is started or Tractive System enabled. See D.12.4", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.1.i", - "ruleContent": "The vehicle stages to go back onto course, at the direction of the event officials", - "parentRuleCode": "D.12.8.1", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.2", - "ruleContent": "Three minutes are allowed for the team to complete the Driver Change", - "parentRuleCode": "D.12.8", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.2.a", - "ruleContent": "Any additional time for inspection of the vehicle and the Driver Equipment is not included in the Driver Change time", - "parentRuleCode": "D.12.8.2", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.2.b", - "ruleContent": "Time in excess of the allowed will be added to the team Endurance time", - "parentRuleCode": "D.12.8.2", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.8.3", - "ruleContent": "The Driver Change Area will be in a location where the timing system will see the Driver Change as a long lap which will be deleted from the total time", - "parentRuleCode": "D.12.8", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.9", - "ruleContent": "Breakdowns & Stalls", - "parentRuleCode": "D.12", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.9.1", - "ruleContent": "If a vehicle breaks down or cannot restart, it will be removed from the course by track workers and scored DNF", - "parentRuleCode": "D.12.9", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.9.2", - "ruleContent": "If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 and D.12.4", - "parentRuleCode": "D.12.9", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10", - "ruleContent": "Endurance Event – Black Flags", - "parentRuleCode": "D.12", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.1", - "ruleContent": "A Black Flag will be shown at the designated location", - "parentRuleCode": "D.12.10", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.2", - "ruleContent": "The vehicle must pull into the Driver Change Area at the first opportunity", - "parentRuleCode": "D.12.10", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.3", - "ruleContent": "The amount of time spent in the Driver Change Area is at the discretion of the officials.", - "parentRuleCode": "D.12.10", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.4", - "ruleContent": "Driving Black Flag", - "parentRuleCode": "D.12.10", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.4.a", - "ruleContent": "May be shown for any reason such as aggressive driving, failing to obey signals, not yielding for passing, not driving inside the designated course, etc.", - "parentRuleCode": "D.12.10.4", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.4.b", - "ruleContent": "Course officials will discuss the situation with the driver", - "parentRuleCode": "D.12.10.4", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.4.c", - "ruleContent": "The time spent in Black Flag or a time penalty may be included in the Endurance Run time.", - "parentRuleCode": "D.12.10.4", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.4.d", - "ruleContent": "If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or during post event review, officials may impose a penalty D.14.2", - "parentRuleCode": "D.12.10.4", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.5", - "ruleContent": "Mechanical Black Flag", - "parentRuleCode": "D.12.10", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.5.a", - "ruleContent": "May be shown for any reason to question the vehicle condition", - "parentRuleCode": "D.12.10.5", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.5.b", - "ruleContent": "Time spent off track is not included in the Endurance Run time.", - "parentRuleCode": "D.12.10.5", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.10.6", - "ruleContent": "Based on the inspection or discussion during a Black Flag period, the vehicle may not be allowed to continue the Endurance Run and will be scored DNF Version 1.0 31 Aug 2024", - "parentRuleCode": "D.12.10", - "pageNumber": "139" - }, - { - "ruleCode": "D.12.11", - "ruleContent": "Endurance Event – Passing", - "parentRuleCode": "D.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.11.1", - "ruleContent": "Passing during Endurance may only be done in the designated passing zones, under the control of the track officials.", - "parentRuleCode": "D.12.11", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.11.2", - "ruleContent": "Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and a fast lane for vehicles that are making a pass.", - "parentRuleCode": "D.12.11", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.11.3", - "ruleContent": "When a pass is to be made:", - "parentRuleCode": "D.12.11", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.11.3.a", - "ruleContent": "A slower leading vehicle gets a Blue Flag", - "parentRuleCode": "D.12.11.3", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.11.3.b", - "ruleContent": "The slower vehicle must move into the slow lane and decelerate", - "parentRuleCode": "D.12.11.3", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.11.3.c", - "ruleContent": "The faster vehicle will continue in the fast lane and make the pass", - "parentRuleCode": "D.12.11.3", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.11.3.d", - "ruleContent": "The vehicle that had been passed may reenter traffic only under the control of the passing zone exit flag", - "parentRuleCode": "D.12.11.3", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.11.4", - "ruleContent": "Passing rules do not apply to vehicles that are passing disabled vehicles on the course or vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, slow down, drive cautiously and be aware of all the vehicles and track workers in the area.", - "parentRuleCode": "D.12.11", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12", - "ruleContent": "Endurance Penalties", - "parentRuleCode": "D.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.1", - "ruleContent": "Cones (DOO) Two second penalty for each DOO (including cones after the finish line) on that run", - "parentRuleCode": "D.12.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.2", - "ruleContent": "Off Course (OC)", - "parentRuleCode": "D.12.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.2.a", - "ruleContent": "When an OC occurs, the driver must reenter the track at or prior to the point of exit or receive a 20 second penalty", - "parentRuleCode": "D.12.12.2", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.2.b", - "ruleContent": "Penalties will not be assessed to bypass an accident or other reasons at the discretion of track officials.", - "parentRuleCode": "D.12.12.2", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.3", - "ruleContent": "Missed Slalom Missing one or more gates of a given slalom will be counted as one Off Course", - "parentRuleCode": "D.12.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.4", - "ruleContent": "Penalties for Moving or Post Event Violations", - "parentRuleCode": "D.12.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.4.a", - "ruleContent": "Black Flag penalties per D.12.10, if applicable", - "parentRuleCode": "D.12.12.4", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.4.b", - "ruleContent": "Post Event Inspection penalties per D.14.2, if applicable", - "parentRuleCode": "D.12.12.4", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.5", - "ruleContent": "Endurance Starting (D.12.4.1) Two minutes (120 seconds) penalty", - "parentRuleCode": "D.12.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.12.6", - "ruleContent": "Vehicle Operation The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for any reason including driver inexperience or mechanical problems, it is too slow or being driven in a manner that demonstrates an inability to properly control.", - "parentRuleCode": "D.12.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.13", - "ruleContent": "Endurance Scoring", - "parentRuleCode": "D.12", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.13.1", - "ruleContent": "Scoring Term Definitions: • Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 • Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) • Tyour - the Corrected Time for the team • Tmin - the lowest Corrected Time recorded for any team Version 1.0 31 Aug 2024 • Tmax - 145% of Tmin", - "parentRuleCode": "D.12.13", - "pageNumber": "140" - }, - { - "ruleCode": "D.12.13.2", - "ruleContent": "The vehicle must complete the Endurance Event to receive a score based on their Corrected Time", - "parentRuleCode": "D.12.13", - "pageNumber": "141" - }, - { - "ruleCode": "D.12.13.2.a", - "ruleContent": "If Tyour < Tmax, the team score is calculated as: Endurance Time Score = 250 x ( Tmax / Tyour ) -1 ( Tmax / Tmin ) -1", - "parentRuleCode": "D.12.13.2", - "pageNumber": "141" - }, - { - "ruleCode": "D.12.13.2.b", - "ruleContent": "If Tyour > Tmax, Endurance Time Score = 0", - "parentRuleCode": "D.12.13.2", - "pageNumber": "141" - }, - { - "ruleCode": "D.12.13.3", - "ruleContent": "The vehicle receives points based on the laps and/or parts of Endurance completed. The Endurance Laps Score is worth up to 25 points", - "parentRuleCode": "D.12.13", - "pageNumber": "141" - }, - { - "ruleCode": "D.12.13.4", - "ruleContent": "The Endurance Score is calculated as: Endurance Score = Endurance Time Score + Endurance Laps Score", - "parentRuleCode": "D.12.13", - "pageNumber": "141" - }, - { - "ruleCode": "D.13", - "ruleContent": "EFFICIENCY EVENT The Efficiency event evaluates the fuel/energy used to complete the Endurance event", - "parentRuleCode": "D", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.1", - "ruleContent": "Efficiency General Information", - "parentRuleCode": "D.13", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.1.1", - "ruleContent": "The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap time on the endurance course, averaged over the length of the event.", - "parentRuleCode": "D.13.1", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.1.2", - "ruleContent": "The Efficiency score is based only on the distance the vehicle runs on the course during the Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy will be made.", - "parentRuleCode": "D.13.1", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2", - "ruleContent": "Efficiency Procedure", - "parentRuleCode": "D.13", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.1", - "ruleContent": "For IC vehicles:", - "parentRuleCode": "D.13.2", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.1.a", - "ruleContent": "The fuel tank must be filled to the fuel level line (IC.5.4.5)", - "parentRuleCode": "D.13.2.1", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.1.b", - "ruleContent": "During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, or the entire vehicle is allowed.", - "parentRuleCode": "D.13.2.1", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.2", - "ruleContent": "(EV only) The vehicle may be fully charged", - "parentRuleCode": "D.13.2", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.3", - "ruleContent": "The vehicle will then compete in the Endurance event, refer to D.12.5", - "parentRuleCode": "D.13.2", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.4", - "ruleContent": "Vehicles must power down after leaving the course and be pushed to the fueling station or data download area", - "parentRuleCode": "D.13.2", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.5", - "ruleContent": "For Internal Combustion vehicles (IC):", - "parentRuleCode": "D.13.2", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.5.a", - "ruleContent": "The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. IC.5.5.1", - "parentRuleCode": "D.13.2.5", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.5.b", - "ruleContent": "If the fuel level changes after refuelling: • Additional fuel will be added to return the fuel tank level to the fuel level line. • Twice this amount will be added to the previously measured fuel consumption", - "parentRuleCode": "D.13.2.5", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.5.c", - "ruleContent": "If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the Fuel Tank will not be refilled D.13.3.4 Version 1.0 31 Aug 2024", - "parentRuleCode": "D.13.2.5", - "pageNumber": "141" - }, - { - "ruleCode": "D.13.2.6", - "ruleContent": "For Electric Vehicles (EV):", - "parentRuleCode": "D.13.2", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.2.6.a", - "ruleContent": "Energy Meter data must be downloaded to measure energy used and check for Violations EV.3.3", - "parentRuleCode": "D.13.2.6", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.2.6.b", - "ruleContent": "Penalties will be applied per EV.3.5 and/or D.13.3.4", - "parentRuleCode": "D.13.2.6", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.3", - "ruleContent": "Efficiency Eligibility", - "parentRuleCode": "D.13", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.3.1", - "ruleContent": "Maximum Time Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance laptime of the fastest team that completes the Endurance event get zero points", - "parentRuleCode": "D.13.3", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.3.2", - "ruleContent": "Maximum Fuel/Energy Used Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap exceeds the values in D.13.4.5 get zero points", - "parentRuleCode": "D.13.3", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.3.3", - "ruleContent": "Partial Completion of Endurance", - "parentRuleCode": "D.13.3", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.3.3.a", - "ruleContent": "Vehicles which cross the start line after Driver Change are eligible for Efficiency points", - "parentRuleCode": "D.13.3.3", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.3.3.b", - "ruleContent": "Other vehicles get zero points", - "parentRuleCode": "D.13.3.3", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.3.4", - "ruleContent": "Cannot Measure Fuel/Energy Used The vehicle gets zero points", - "parentRuleCode": "D.13.3", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4", - "ruleContent": "Efficiency Scoring", - "parentRuleCode": "D.13", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.1", - "ruleContent": "Conversion Factors Each fuel or energy used is converted using the factors:", - "parentRuleCode": "D.13.4", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.1.a", - "ruleContent": "Gasoline / Petrol 2.31 kg of CO 2 per liter", - "parentRuleCode": "D.13.4.1", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.1.b", - "ruleContent": "E85 1.65 kg of CO 2 per liter", - "parentRuleCode": "D.13.4.1", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.1.c", - "ruleContent": "Electric 0.65 kg of CO 2 per kWh", - "parentRuleCode": "D.13.4.1", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.2", - "ruleContent": "(EV only) Full credit is given for energy recovered through regenerative braking", - "parentRuleCode": "D.13.4", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.3", - "ruleContent": "Scoring Term Definitions: • CO 2 min - the smallest mass of CO 2 used by any competitor who is eligible for Efficiency • CO 2 your - the mass of CO 2 used by the team being scored • Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency • Tyour - same as Endurance (D.12.13.1) • Lapyours - the number of laps driven by the team being scored • Laptotal Tmin and Latptotal CO 2 min - be the number of laps completed by the teams which set Tmin and CO 2 min, respectively", - "parentRuleCode": "D.13.4", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.4", - "ruleContent": "The Efficiency Factor is calculated by: Efficiency Factor = Tmin / LapTotal Tmin X CO 2 min / LapTotal CO 2 min Tyours / Lap yours CO 2 your / Lap yours", - "parentRuleCode": "D.13.4", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.5", - "ruleContent": "EfficiencyFactor min is calculated using the above formula with: • CO 2 your (IC) equivalent to 60.06 kg CO 2 /100km (based on gasoline 26 ltr/100km) • CO 2 your (EV) equivalent to 20.02 kg CO 2 /100km • Tyour 1.45 times Tmin Version 1.0 31 Aug 2024", - "parentRuleCode": "D.13.4", - "pageNumber": "142" - }, - { - "ruleCode": "D.13.4.6", - "ruleContent": "When the team is eligible for Efficiency. the team score is calculated as: Efficiency Score = 100 x Efficiency Factor your - Efficiency Factor min Efficiency Factor max - Efficiency Factor min", - "parentRuleCode": "D.13.4", - "pageNumber": "143" - }, - { - "ruleCode": "D.14", - "ruleContent": "POST ENDURANCE", - "parentRuleCode": "D", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.1", - "ruleContent": "Technical Inspection Required", - "parentRuleCode": "D.14", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.1.1", - "ruleContent": "After Endurance and refuelling are completed, all vehicles must report to Technical Inspection.", - "parentRuleCode": "D.14.1", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.1.2", - "ruleContent": "Vehicles may then be subject to IN.15 Reinspection", - "parentRuleCode": "D.14.1", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.2", - "ruleContent": "Post Endurance Penalties", - "parentRuleCode": "D.14", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.2.1", - "ruleContent": "Penalties may be applied to the Endurance and/or Efficiency events based on:", - "parentRuleCode": "D.14.2", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.2.1.a", - "ruleContent": "Infractions or issues during the Endurance Event (including D.12.10.4.d)", - "parentRuleCode": "D.14.2.1", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.2.1.b", - "ruleContent": "Post Endurance Technical Inspection", - "parentRuleCode": "D.14.2.1", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.2.1.c", - "ruleContent": "(EV only) Energy Meter violations EV.3.3, EV.3.5.2", - "parentRuleCode": "D.14.2.1", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.2.2", - "ruleContent": "Any imposed penalty will be at the discretion of the officials.", - "parentRuleCode": "D.14.2", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.3", - "ruleContent": "Post Endurance Penalty Guidelines", - "parentRuleCode": "D.14", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.3.1", - "ruleContent": "One or more minor violations (rules compliance, but no advantage to team): 15-30 sec", - "parentRuleCode": "D.14.3", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.3.2", - "ruleContent": "Violation which is a potential or actual performance advantage to team: 120-360 sec", - "parentRuleCode": "D.14.3", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.3.3", - "ruleContent": "Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ", - "parentRuleCode": "D.14.3", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.3.4", - "ruleContent": "Team may be DNF or DQ for:", - "parentRuleCode": "D.14.3", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.3.4.a", - "ruleContent": "Multiple violations involving safety, environment, or performance advantage", - "parentRuleCode": "D.14.3.4", - "pageNumber": "143" - }, - { - "ruleCode": "D.14.3.4.b", - "ruleContent": "A single substantial violation", - "parentRuleCode": "D.14.3.4", - "pageNumber": "143" - } - ], - "totalRules": 2824, - "generatedAt": "2025-11-19T03:47:50.093Z" -} \ No newline at end of file diff --git a/scripts/document-parser/package-lock.json b/scripts/document-parser/package-lock.json deleted file mode 100644 index 275865aeb7..0000000000 --- a/scripts/document-parser/package-lock.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "name": "pdf-text-extractor", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "pdf-text-extractor", - "version": "1.0.0", - "dependencies": { - "pdf-parse-new": "^1.4.1" - }, - "devDependencies": { - "@types/node": "^20.0.0", - "ts-node": "^10.9.0", - "typescript": "^5.0.0" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", - "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", - "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "20.19.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.17.tgz", - "integrity": "sha512-gfehUI8N1z92kygssiuWvLiwcbOB3IRktR6hTDgJlXMYh5OvkPSRmgfoBUmfZt+vhwJtX7v1Yw4KvvAf7c5QKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "undici-types": "~6.21.0" - } - }, - "node_modules/acorn": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", - "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", - "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "acorn": "^8.11.0" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true, - "license": "MIT" - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true, - "license": "ISC" - }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "node_modules/node-ensure": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/node-ensure/-/node-ensure-0.0.0.tgz", - "integrity": "sha512-DRI60hzo2oKN1ma0ckc6nQWlHU69RH6xN0sjQTjMpChPfTYvKZdcQFfdYK2RWbJcKyUizSIy/l8OTGxMAM1QDw==", - "license": "MIT" - }, - "node_modules/pdf-parse-new": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/pdf-parse-new/-/pdf-parse-new-1.4.1.tgz", - "integrity": "sha512-6DAySxlMpTeQ77+adv01ckUB13/bFvwaXSN38umuItHJewLhJFMOUWJlFPCu+YB+sA9gkLQL8Av5SoG5yJD5vw==", - "license": "MIT", - "dependencies": { - "debug": "^4.3.4", - "node-ensure": "^0.0.0" - }, - "engines": { - "node": ">=20.11.0" - } - }, - "node_modules/pdf-parse-new/node_modules/debug": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", - "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/ts-node": { - "version": "10.9.2", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", - "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/typescript": { - "version": "5.9.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", - "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/undici-types": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", - "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true, - "license": "MIT" - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - } - } -} diff --git a/scripts/document-parser/package.json b/scripts/document-parser/package.json deleted file mode 100644 index 7962b7b790..0000000000 --- a/scripts/document-parser/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "pdf-text-extractor", - "version": "1.0.0", - "scripts": { - "build": "tsc", - "start": "ts-node index.ts" - }, - "dependencies": { - "pdf-parse-new": "^1.4.1" - }, - "devDependencies": { - "@types/node": "^20.0.0", - "ts-node": "^10.9.0", - "typescript": "^5.0.0" - } -} diff --git a/scripts/document-parser/parsers/FHEParser.ts b/scripts/document-parser/parsers/FHEParser.ts deleted file mode 100644 index 64dd6ced90..0000000000 --- a/scripts/document-parser/parsers/FHEParser.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { RuleParser, RuleData, Rule } from '../RuleParser'; - -export class FHEParser extends RuleParser { - protected hasImgInfo = true; - - protected extractRules(text: string): RuleData[] { - const rules: RuleData[] = []; - const lines = text.split('\n'); - - let inRulesSection = false; - let currentRule: { code: string; text: string; pageNumber: string } | null = null; - let currentPageNumber = '0'; - - const saveCurrentRule = () => { - if (currentRule) { - // Check if the rule has lettered sub-items - const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); - - if (subRules.length > 0) { - // Add the main rule and all sub-rules - rules.push(...subRules); - } else { - // No sub-rules, just add the main rule - rules.push({ - ruleCode: currentRule.code, - ruleContent: currentRule.text.trim(), - parentRuleCode: this.findParentRuleCode(currentRule.code), - pageNumber: currentRule.pageNumber - }); - } - } - }; - - for (const line of lines) { - const trimmedLine = line.trim(); - if (!trimmedLine) continue; - if (/^Index of Tables/i.test(trimmedLine)) { - inRulesSection = true; - } - // Skip table of contents - if (inRulesSection) { - if (/^2025 Formula Hybrid.*Rules/i.test(trimmedLine)) { - saveCurrentRule(); - currentRule = null; - continue; - } - - // Update page number if found - const pageMatch = this.extractPageNumber(trimmedLine); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - - // Check if this line starts a new rule - const rule = this.parseRuleNumber(trimmedLine); - if (rule) { - saveCurrentRule(); - - currentRule = { - code: rule.ruleCode, - text: rule.ruleContent, - pageNumber: currentPageNumber - }; - } else if (currentRule) { - // Append to existing rule - currentRule.text += ' ' + trimmedLine; - } - } - } - - saveCurrentRule(); - return rules; - } - - // TOC extraction for FHE not yet implemented - // However FHE rules json DOES exclude toc data atm - protected extractToc(text: string): RuleData[] { - return []; - } - - private parseRuleNumber(line: string): Rule | null { - // Match FHE rule patterns like "1T3.17.1" followed by text - const rulePattern = /^(\d+[A-Z]+\d+(?:\.\d+)*)\s+(.+)$/; - - // "PART A1 - ADMINISTRATIVE REGULATIONS" - const partPattern = /^(PART\s+[A-Z0-9]+)\s+-\s+(.+)$/; - - // "ARTICLE A1 FORMULA HYBRID + ELECTRIC OVERVIEW" - const articlePattern = /^(ARTICLE\s+[A-Z]+\d+)\s+(.+)$/; - - let match = line.match(rulePattern) || line.match(partPattern) || line.match(articlePattern); - if (match) { - return { - ruleCode: match[1], - ruleContent: match[2] - }; - } - - return null; - } -} diff --git a/scripts/document-parser/parsers/FSAEParser.ts b/scripts/document-parser/parsers/FSAEParser.ts deleted file mode 100644 index 2321ea7e70..0000000000 --- a/scripts/document-parser/parsers/FSAEParser.ts +++ /dev/null @@ -1,156 +0,0 @@ -import { RuleParser, RuleData, Rule } from '../RuleParser'; - -export class FSAEParser extends RuleParser { - protected hasImgInfo = false; - - protected extractRules(text: string): RuleData[] { - const rules: RuleData[] = []; - const lines = text.split('\n'); - const seenRuleCodes = new Map(); - - let currentRule: { code: string; text: string; pageNumber: string } | null = null; - let currentPageNumber = '1'; - - const saveCurrentRule = () => { - if (currentRule) { - // Check if the rule has lettered sub-items - const subRules = this.extractSubRules(currentRule.code, currentRule.text, currentRule.pageNumber); - - if (subRules.length > 0) { - // Fixes unique ruleCode issue - for (const subRule of subRules) { - rules.push(this.handleDuplicateCodes(subRule, seenRuleCodes)); - } - } else { - // No sub-rules, just add the main rule - const rule: RuleData = { - ruleCode: currentRule.code, - ruleContent: currentRule.text.trim(), - parentRuleCode: this.findParentRuleCode(currentRule.code), - pageNumber: currentRule.pageNumber - }; - rules.push(this.handleDuplicateCodes(rule, seenRuleCodes)); - } - } - }; - - for (const line of lines) { - const trimmedLine = line.trim(); - if (!trimmedLine) continue; - - // Update page number if found - const pageMatch = this.extractPageNumber(trimmedLine); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - - // skip table of contents - if (this.isTocEntry(trimmedLine)) { - continue; - } - - // Check if this line starts a new rule - const rule = this.parseRuleNumber(trimmedLine); - if (rule) { - saveCurrentRule(); - - currentRule = { - code: rule.ruleCode, - text: rule.ruleContent, - pageNumber: currentPageNumber - }; - } else if (currentRule) { - // Append to existing rule - currentRule.text += ' ' + trimmedLine; - } - } - - saveCurrentRule(); - return rules; - } - - /** - * Adds .duplicate suffix to duplicate rule codes - */ - private handleDuplicateCodes(rule: RuleData, seenRuleCodes: Map): RuleData { - const originalCode = rule.ruleCode; - const count = seenRuleCodes.get(originalCode) || 0; - seenRuleCodes.set(originalCode, count + 1); - - if (count > 0) { - const suffix = count === 1 ? '.duplicate' : `.duplicate${count}`; - console.log(`Duplicate rule found: ${originalCode} -> ${originalCode}${suffix}`); - return { - ...rule, - ruleCode: `${originalCode}${suffix}` - }; - } - return rule; - } - - protected extractToc(text: string): RuleData[] { - const tocEntries: RuleData[] = []; - const lines = text.split('\n'); - let currentPageNumber = '1'; - - for (const line of lines) { - const trimmedLine = line.trim(); - if (!trimmedLine) continue; - - // Update page number if found - const pageMatch = this.extractPageNumber(trimmedLine); - if (pageMatch) { - currentPageNumber = pageMatch; - continue; - } - - if (this.isTocEntry(trimmedLine)) { - const rule = this.parseRuleNumber(trimmedLine); - if (rule) { - // removing excessive dots - const cleanContent = this.cleanTocDots(rule.ruleContent); - tocEntries.push({ - ruleCode: rule.ruleCode, - ruleContent: cleanContent, - parentRuleCode: this.findParentRuleCode(rule.ruleCode), - pageNumber: currentPageNumber - }); - } - } - } - - return tocEntries; - } - - /** - * Checks if a line is a table of contents entry - * Ex: "GR.1 Formula SAE Competition Objective ... 5" - */ - private isTocEntry(line: string): boolean { - // multiple dots and a number at the end - return /\.{4,}\s+\d+\s*$/.test(line); - } - - // clean excessive dots from table of contents rules - private cleanTocDots(content: string): string { - return content.replace(/\.{3,}/g, '...'); - } - - private parseRuleNumber(line: string): Rule | null { - // Match rule patterns like "GR.1.1" followed by text - const rulePattern = /^([A-Z]{1,4}(?:\.[\d]+)+)\s+(.+)$/; - // Match section patterns like "GR - GENERAL REGULATIONS" - const sectionPattern = /^([A-Z]{1,4})\s*-\s*([A-Z][A-Z\s]+)$/; - - let match = line.match(rulePattern) || line.match(sectionPattern); - if (match) { - return { - ruleCode: match[1], - ruleContent: match[2] - }; - } - - return null; - } -} diff --git a/scripts/document-parser/ruleDocs/FHE.pdf b/scripts/document-parser/ruleDocs/FHE.pdf deleted file mode 100644 index 415f50ef03021d4f2b3e7591fb139026f875b2c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4853960 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Ν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�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ɤLAM?8s*8fUh6x3ruLf3=4+X!ltpwk;TdTFr+ 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

      NsuQqV3Fqm+!YFizGf2zZ965d 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�i=9Vrw*W&X^wE3vciz7Jq4XZY$#$}eT2Nh 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

      aV-u5fJ9s}>kT*vG;QG2&N$vV)Y_s;K1OEd35 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

      O!z>3uMa6WTUkAY?!P!rJ^Z(YJ-4?dO#| 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%0D9_vXX+({~!#Qc?g$RI8#)xfW;-_ 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

      +kQcph{y}3O`TZjiacDi6J*-VYxFN;yW1YE~ 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�B`h7(|gyqQ8~YAKbgrp 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%0DhQ8)9!ISv5v;mD>1(HX4Jc^L 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%0ABjD{Pk$eC?+PR%dH0+ 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 z zYW2_Ctwf6sYHXRa+=pL%1f?s&_%)xfO#6#@H@Mv#35lMb6Lk518*h!T z<&`X_`H%Rxg>|gq*uj0T5nPBpz(8Fm(g*(vWXz&dFiV}} zOaAQ^*^s8^Jzk1PIPGb4{-ieZuQr}*_zWF1x2XLHnS9o}{E9q1wI?4`F zsB3DP>Js%qlSRYGc?FywUTUVL(f6a2_ustCx<6ZIHJ|$g|CrQ~^)Z=yb7pL|605s@ zE<)Ux^QOm+zNZH|a4|%|>iM*q9qa+4DnH^EG&e@)*+ki{0s7xFOnj4Ot%R|ew`YAv zAm;XX%ol%a5KJSf7)$J0GznoA_<((*K^f$adGCQQQ`tjo}MP zZj?h_de>YIn@k-VHtLqOEzA@>Dvu>9E{Ynn<*HXw7pFe|X8{g1qq*+S6PVZ5narjY)+`XzxEL5|8Vq1r}+w22@=5kwFbgG)s0w0-i3&7F!@}~LR zSZitDwJuTDBbWa`n{9h3#D?0$WD7`)Uy7Qme8M>!&LW+5A--mxt;4cX*6|8n)I{2t znqg%d;~T^0`EJ`6AVguA{>!55y10({I$W=J$HXjwHpOsIs0TzoI*q(|7jf(-cCez}NsZSZKb?O&$ z7fudVf~0bpYTJ*3PgX_mqn%Ri_1Q%5G&;CHQA8=D@ziJP-2Uy)W`7~>WsGc281%~i zJBCU%hEWaCZz(_@$?ZNy*a2UfYumHttD*-p4ZQ!ddT+#TJAJQBFgab&Q|B z<=u4jItCr-KJH4*^L@yO{=VY}5sstHUQ&?TOA*+3D%81x&`@1?&x5U9JkYwMe zSiq#62&Zg%k$>|26@cj|u9GeI-s2Fd#|-DPh8av>UB~;`?>t({QBvweN2+$exGQ%s zx9MZ8fPwmO5gK$Ks~`uF9;*TRRGIkx7pCjqPCW_l;TriwGy<^{ts1Nrcm*EQD{dhE zVeInq@a)~~Nlb#p;9pZA?xzu4-*Vq8LRiPPEvCMhc-L?KEWxGuLv^$lyKMpfQ?C?C ze8^C8s$oBNiimYKgL~_<55ju)Gv+<#lnAIWUEA%&y~;5KI+^s_ zul>zK=*G?JZO{-f3=#J&#Z7|GNj}(0wDYu67NxGyIaA?zqH8qkSzbs%%P_xH)GO+i zC)Ax4VB3tmEU5nI0vqYrX(sXhT;XCkZHyo9df&^;Ur7IdwnYB3Wp#TR2!kuU88@@x zW&NO*jBd_#Rbn(8Qf=>5sSGtScl`x%J4g^C^W6!>=a{OkiLMDIHsbe?E33bEm$?b? z4jd}Z)(dL1r%Q&vt7(|b+MKb=e3`iEvt2+J?RAXb_lmf_uimd-;^(#9!9Gw|kF~wQ z`IW4;_zT3Gco9rZehbm93C@_)!0;;Obycaw>m83g2nY}%;2gnKm~yuEVf!MD-*~Kq zrLg_tH(D-TbfAG@H>p+fD7<{{z_ys(pppCSs=qLWZ+jeUa(466!;x!rSRito8xX25 zXH-68)B<~zjNJ5hXEy~)E44_`R~SCbInXS!I|&}_?x5l|d}U%{^?Gpz?PwdGWBw{G zs7?Q4nJ(Vygv0t1NJdwk6~keA7wxfrzh9;d)-47TRj}OX_7% z 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ð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≦)o{5WH?ea$+!x5bK|J;iibF=estl!MXtHekZ` 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
      %9AmFJONpft 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
      jA$Fm6VjEr9&IsBw8H5MMCN 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˴(%7`|H$G_`Y1G^cmk&B(FNAjS!`@< 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 z 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¿%g=a-h3!LSl0299zS}naL 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

      ae|= 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

      n4am^tV-M7%73%P)g= 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

      Dh4>>$jjkS_50X1_MOlMViSW^6;nQf> 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

      XpUnfh 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�vGK(l3Pt1!voVYw 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 z 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 U zK`l~%bd#4X;$>K_&PZ0-g%;Y5RzdkTBy>6z8Mj)-NecrSs?xufsj8*_FRtD)tjexy z!=<}B1nKUQ?(Xg`NofS6OS-#j(V!q92-4jMNJ>acgGh;cuJ?QQKE7}NdwzI4z`fQz z=NQ+x#(9PL4Hi7IK!)!7JAN=IYugWUIGJ(xA35{(AlunV+nFm=RF|tj{(3n!@GJCN z8XOrLOJ%S0=&hW#J~u?!&^jl!wCH2*Bem|nTxB~BOYN{AmsqGNDJwDmm3~SKCO=Sx z^?%f`o2G)$?`=tt)j+SSQ8|~f<4(&67b__Th??cWzWFbwGNoUxyp(8oa6SdZd3tiW z*PDk+%3stN(XAW_b@)_ZvUv`A038fF9Raot=MXBD_h|>@)4RD8^}F@28E;zZ<|q0gJ<9`?KAcSy}s8mii?`ajz?{{R;0_(gnX7wPP00zU$ z7(9Ms;10|uyVk;Q9nsb1vTuM9nDNa_SS})h(qp2~iTiIs6(|6v;IO_pWQ1W~wI;J} zUn;71cKCrtN&ka+&;)yX^{F>xNNp05X(*QW{fd`FMCYT!Tp6fBmy-ZnsTMTlb(>3) zG)r*z{o}a)S?vmIb3WgrUrei5;D7CPOJ8NmCd_=X19cR7Z41v3%l;L%9ky{Rpp-DG zZvG!R>;D^nERCn^R$jht`(*qL%s|uT`?*?`=I-Pk2dAJ(r%vfkPda3DRMpi%L{6<0 zM<4&@(r&D}8UN(-Jpg{Bpktll&iy>+s|AcuQ_#;rl~attL=$A3{4}qoYSBRrM$ftp zL)%y>Zuf5t#+7YPY*XsSD%i7lA+~D?fS&JZvz zx9e>5!F3M)YwP_B)U*TO(X<_|@wAh9N`3&k)r&uTWCc8S<3KbK1RbFt{D{+S$`MZ4 zpO(2Rm8dbBFwKeC?_oWlq0mpeu|9cw`a+v~m@;9*Es;%bt{l_%{|*t_lbpnUu4ULK zPt3VG3e3KU9bV}uG8JP8f1MUMBDqfaSbNRpTvR&JrMak2S>qh%0|~m+z1xoEdiB?F z;jG{(oE}7^y`=El3bT)lo$%5icMfV82r89^p_?3JUFW%+2nH>97($4{rz}=X!^9QI z-jA2Vi$;q-5qB3j280wr=l?dyxyvo*4a*x)@%LZZrn5N*HlX34+i@(PP!1ee^7aIR;j-V{;u26`RH@8G4)b|V9SQ$h67%tX`(TN8-`v6F? zEZ)pirIZjF2DvcP|CVkl|2;Lvm(!Xc&8L*0Qy$Cr0yVl?f#4~88V6`Y ztiTsF-?fdDd zv~|7n5uV?|e~<7X2)F`Ak|^R|=+_%cDV&^uEiy7*dklK36X4UWm;xV@!AUBWT=X4> znxqRFd>qLMFglMG0;gaAux0J;0Nr;52pKr)&BEa_(5Hzc2;|%GKoEQV`pz^T|26Pb zyfS$Jcu&o|NvZXxDYszwckd|!m`sJxfl`fA_PkIf4#^{)#%=C9P{Gef@k0uiezs@W z*#U4}*}DtQm~PObCP_T|A@DoQQVAl%(+&XJxV&x%a063G=9JO~=iwmd>I4Hr5j5R( zzT~44Bj_J^z%HEF?Xt{mK;EIYt`tL^!H4Lzo~MbP79E&;BN6`x@QYjn?xEOTh7QS3 zurMLj100WcK%JFDFBzZU_@XMAQ=bR0H-!=*;`KDD3>33N84DZOq13w#es9baR2W8hbVFgny65apnLECaH|YIQNTi3$X~ zL3Q9p13<;y8v9}spfvVJp?5%KY(GRSpJ3>zAnu~AAO zA4XZPE8GF4j+JJocm{ZqCuH5zGnvy>@$pB(rA#?ol$RPMo&CRM|5v6%`mao<&58Q) z#iNa*x46q|)#5MtaSCn5mgbHry)!^Nm=9Rjoa}Z3vKwdD1>C#3+uWx;+*$g7i5~(v z75C2pYs=q(F3d&Vlz5>?kLPZ^SgS`0m!g-5U;hR)n@+cEJ;2%Y_fSD1ZmcYTPKr1& z|FDB^{ADQ*;mUY=H(3Fa_=&Uh5{cv(cjRwAmqu+%=;wKl1i{3{ z6Rp4*02i_pI*j_3@RgNS1f*dC2A6hOZ;@&8-`~xD-R>wC{y=mmwR>W^OFTv$M401Ak&!1Rf87EJ%#Euj@$a!nLT&!6sdt^Hcy zx_^H7Wm8*Q^pQ^q52T(K3;P!JbG@V*hb|6iV~=IfpO&+tJ)Z+*d!8zgt83y8yn3vs z9YULM;QgfYTm#>MLIQhRux*SMIqZm|+XEEErsC~OJMG)Um|&}9RO?|}Psd(HbaF1$ ziGGzL4)ZP&%du4(A`H*QkaS~BVhq7`7`WQmLfWt1ITrd81wvk?y}h2%`&UVbju@OG z|F>&Ieh~oBR?9!Z`;Hy@4XAo6FFVG9M;JbX5d$U}-{FMCGtWEWE!*XfR$G_?`nO3S zCXg3ukb4c{j2kI6hxrX11{*oR2f>dDS5Hf6{d45Z+tVa9TP&sZ5#DZwzKKEv))yW$eS|DlOSNH_$_)eeJUf5-LB zKOkTtTT>qcy-~0cI_aoVrTI&?^Bl+82xH5W0>Z^n_ob|L*8vfCDj*^QN6ryz3D$?^ zmFCM=xfb31Qfm8okxFD0B-MUkT>u>Wv?%FU(EQD9)f>G_a-;^F}0OD?q0Fk`7Zu-Ejj^RMz+q;4035%p3s7PuWOg zRE8I8Krc^)iGW0b{oUZlwM}1|v#*bDG*FTBE1uaGik;q zE6t<8-@O=k`TVhEB*vcF2q2UnS4Sh~X55i=OHQpV@RyNCVPn+dTxVv*77^Kk{{FJ4 z$`SA()0Q7I%9~QDGJ9CWNV8Av1=BfgvKCZBysX*h(NtRgXIm=hqKb%*>uQxy!D#wd z$%;q$dDBmK z{MS{drMyj3E7U!5Pl$jcamdoWkhHf0DFbd1I*bvv6X?0h{E#usm%)7ocC|c2Q|}a^ z6SS?uT)P_>JAqcMB)8R~ zPXyz5QQ;J;3yOY*>Q#1b4xE*~r&=Ci@OTL@l-*uqqF<<5KX%8e(cQD(E7 z*ys1xf*NGx@uc=?7Y^ngpjxt*UWTcM2|sYcK$sXNVcx=GPlGjo;K|PCd9~q2hkxjGc8jRuwT5&7q6LrL`$JJir`X#RmwGcXxUbC0};h(W@poTOM(J9z{r7As-a z);Snww15-df9GThD)}ESr0t0$7nchbDQu=Y&J+&3Y^Q+}}cABr+dpMD>!39OeD3zm(}k=qXf` zr{qRuMYyrkCc*s#LmuuABkJ?pu*&&s1luI5`@9n49ECfX6^BtX0!cCs^v?i=bN94{ zazr|#hCmgbSDs+q=n|pyqbjD)eFBf@cVnT=Uxt5*33OM6{+GJ{U>MlDA$C7;o2W{} zVOkxw101c(N6Ym-^!wAG>Y1d~@%i+vi2{1Pt*h>5%rkI2naKdwQDdxS`cZW+OI-` zSFNRu^HAV5IMbn2FQ7tmPY+IyHmRXe+VKBe5~mX1A2WoF7Ay`RC+DwPz=ehV*-=^I z&7IYeaeOc-LlCM5zH(tP8_9Ej(QTGcbCnvURw4Cg42LYFqal7JT9ChqTVN|eAo!%HQtA@J8(^r8|D@eisI#9kmnuse>qjkq+wHTO;df6#?t2hN@mO&e zvrsQP-h8FIx*l?7D*sR2qDd>Vn@+M`4i-bP*LR$E*Vb%TJ#CIoy;4{#fZI)QNK{8Z zzv8!9L0W=9x*Yw5I+trO4Z@dD4XNxX#NgWzHL{D>KycLPX@KT7BEb%k&d*Y zPA_A1UH7T&%`r^c{sn7R>sKn;+J(iS?{Rzot3pTe$7Hl48^yMVW4Olg(N7^BjSl#9 z(rlq*WpdXvxY%5yrOC4l(KKm`VZ6lRsMZT_vEH;_#b+5gtW#G;Tx~1gqlbA;UOS#L zrJat(WOTdwk{j}T6MmJB&1601sm*rJ726=)?7siEOf}qYOphY`hZ2bHf@JYC*ERju zhnoE#OC8XUk6W9wk9x_g_mRe<^8o zw14b@^NsaIZWzBvm&!{3$q_~f@V&feW z;2O5vl_^imIAEX4SCzc(#8@L_t&zVul8S`!r)7oEE`rB?QH!;jGg<4E%}LdC8y`&c z54A!3n(-c|?s*#SbXe3|<@Dny%6oEV)UwE5EgCw<@Tc^+bNr%Qel_OzH1frs?<e&)Lz+=)d(Cg%R$)3$fw~y5@=?(Qv81)5t%^YxF)pcI9!b zW&FVVQG}VV>`l-AarA;Gna0$_w+6{$edXZ8=1ag;;_T~q`{##1t_?${`fuy4!}%Ct zC(>3!&o@7x?PmDjQc8I3<_*3Y^GAL^Mwf%|&3dC^TVE$5!V=f=B6)o&HzL6bByQm+ zqyDw99p<(0y2)75VEk1zjjvlypqDN5RW;d@h70FYstfg-S1pu4-D&p{XBfC z*D;pK{EOdcbkbz3rjrH09(^Ze>}7MS!3UF>yQs!#rlZOxtf$HNt$ z>U(4#R$u%Y`=qlvSh+oAz=j+7`PO9er`yDY-v6)28e7U`H{{R264`%d(kt3gwVPjz zrN47DmuNELQ8*~M08>;Su4s~yDz$wQMa|W2@#hWazhEiXII8GQ`A0anF1|mWnMB;i z#y^MAe7J<0>M}OfV7~dC^IO?jA-!_&dr%cu-AG#Fxy={DZA(5R`^k98cpwRl894aS;OQi*f@pc=xUJObkH^HeD(vB%+_S%t>I)J5FvPYN`EgD4xfC-&>yNEU`5KwF8Cv3*A?*_nPp=5SrH<^7 ze$}8Tx37*>I{a2rAL2TCCA7||w=dr6+pYFuVtz+{X6aYZda)KnK7kCr3ye;sGXRW51m0rGAU!<2{E-cL2Yr_vQZx_F4b6uii`L>vgn%=(P=K*wLr3g`?8%%JL^k zoX-pWYP?(~ADJ~^od23P1al*f{j)irEU#c|?7@!wTtX91!-Pf?@6c-&8|uOWi!0TO zD4SuKgn~p|78^IJMfA!P1qBQ_KEsqTmB)npaWSEkh1Rn)S3780KkX%=PI`A2>ug@H zU(bq(sn76_u1tR1_`v-{40A@qT5_Uu!`9EDlAeXp z*F2KNO3DNBDn+-SA+CsQLeSU|e}8{{oVuyIMl0fb%HOe?alvCjfNamyf2aKyk2QmROJ>>gL*v$9>SA$3Y7RI4O$;V}3P6G;9Zf zZ~l+fHSz~xS!d$DO{CiFa`BIY8R0N`!7XB@Kd2+>!7?b1PIZkWaRbCV`2B}?_xgm- z(>AcodNtZ|VCg;pm^ejzjtMs9>bmhfs19y#Jm~Eh!$!@rVz8Qh=VDhlkW}sl*E25* z#o-Lv%(afvGd9>9)paSZN3TJPIfcD%{d$9>V$T0upDF5<^O6g2J%FqpAKW6{#p<(O z$J!MD4_h0b4-7d;j>kd4I5b!M^z8ZW>{h{ae9@6di;&gX%CioOxX*?)wIPgPhi1A$ zDIK~j2B}|!)6EK6ELXt(qWpshhE6X_ZDeFEEneT}*Z^+*bf);b$r|Qv*>25hej}F?zaAU zuCXI^V!9wqBA~g8k2fZ0VR2HRiAjb{#{N^})$2TRWL8y#l^u4Iwo#m41@d0&m-Vh~ zgUKRv_pB(p)?717ICxiJDcKw-`EO?Ub63k&r#-JiDwgp+_jR9M{Z@TJ?Jx30$x(UV zNm>|NIY><<z^;fkSXs#=)%#>Z-6e;cE6j`O90=4 z?`~pH`GGn7^a>=J433`F%&2cWM4h&c^EY;fd^#WGTY(yAye ztg;l5Vm?cqHbfb~q@bfYa0EzzJyg$LAlqxbez}6dvk_JiLt91PK?_?nMwSJdd5Qx! z5xhM5{@}+`g|m1f_FC|Zfs;jDa61x6_=eN08$l71%;#5o6E&Q0N|CEIChZ)0-#)$8 zXk|6;+Xm{2Bm^+sG9+ci0B!zj1Awm3==luX-WM&fOd^`$oT7RLBSb2ure%p;v;!uJ z?gLO63;#UN&5y>T0A)W#o62G}Imty^=fLPKHFS#?$C#nN$_Si<|GJ5EsvS)Bgao2&i_Rp^~l6LsSyqHwGk%KfqAMY0`EA zJa#3JxwpIN8BSy(zHFXta%ACoxeqK2SyN_4a29sLRP$(-NJ6SY zS-eys3YorNUmBt>%Ls!ZhARm2_Z*hR1M*4bm9{!xq3;5&(MRh@dj)VeTTPCL{AWU+c_e-$a1;7}(D5};HV zh~3P}uyB^8tQj#PYMm2Uz&rwd2q=J6u}C{UsWNy3XcE2ZW>0E9R95D|WNrt;9;7Ju z%hKx(7n{uPLd6e=FN;WuP5=?vMi^DA5PkKxpE0Iz8^g4(qe5-YA@1@K6E{A|FAZM* zi+yNDBw);D0>xT5{rzj(i4r9D>FTf(K7H+#y`fAM{nlHFkd;?miIie_uo<2e_l_P6 z+mbqx`^nE}iu@SE#C$$wsXRF;@4)57*y50R3v4 zlV61$zXO2$!2taZz>I@W!IwUgTP$+Ia5qxR{;jY?H z3J>SU3m_GKzY!+AYzK#6iO#MJ+7>rtj1`95jhT~a4@h|ig#aRCaNydBA`(Xa9*d%O z>Tb0kd#wwuBJ2_z%>XAUYEDg0A`UndelWw=)b!G6gVfD|)3tBa&S~lZzG(E6`8k!Y zzF%PSaK|O?797>{k<}t!eBbMr!lF#V=#ZjRtHeQobf;atT4WhbM6x+duPZO_yD1!L zOUCEWdk1y~bT%j=xvK^!GeJI>k`Rm2+&V)=FQE9-Hz$}@~AQhFCO(HM5 zrMEL%itthD9NhB@9p?L;Y+)a?Rr09$YwPO-8{W-%1$%#X2wYK;%nXA=WD$ebZY*N8 zx@b_)-knsoz?Fel6bO5QX*iOVJ(z>T_Ow7D>O^TQ03#1@w!&$zUj8&B;u_-!Y4}uj z#OA#62V_ouKD3sliP(e2d~Be20i8eM<_;~#1K28Jl!RjHO+8sJslL;sxPg$kIMm*O zr3nKf3Cmf33(O;eL3LV25E0b{1GjDTmMT2zt__gOz#yq&-Dt2FgsTa90RsK1V;LlZ zMX<65gu;R0W#~&ydem@IB2M%5k5)3{h{Ll*6s5!)K3Kc%lxQ3#ZS~-;6Miaazl_S; zQr#}@>Jpvh|A3R)@cL63Y5|N7-t{`g1RBh7sK|$a?j-S^-|g7pIe|<@$%BSsk5H+8iRWX>X_;t4&Qg$Y5HNXY{mf zful?B=>&UFfaQcAxMLCw0%b=(56dCvGd{U06BNvox`&(e8JMlu*u3aKzUL=VwKb7q zd3_Gv5QpC=$1>~}r$9*$2K+8#UL7-55%#-^glRX}azQ|sqh**?Prp;tZcxm)SX-pW zKNw-KbUV%)M_gLPEM1+V!xm^Q|7wrycb3F)=s|y_x0?EqqjQT<0tFsD*hfFV3ef zlm#9UErT7cnrB2eKsVMgWkZUs-+)Btv|(7)@&qP}s{=IQwrEAEnZ%|G z25NbHuus4=IqJVGNwZ3W=28u=^g@Ku_W%Z45k(a;^<=%t-*fb&Jr)u`GYwXm_*K+* zs3O78nBVP(DgF*jCcvwjCef;jQoVklH0EmE4+#sL3e4MTyfg5)TN=Yi+&z3UHgJYnO zrOpj~Iobqvx~!4fwqfhTZNW+=O%DwhywTqQ{DKIk6yT5ljdKUC9BCpBW3f>aymtRU zF&vb7ehVi5BdH%Y2Oj7Sm|@8z+|rQrfh>1Tj=A1mOL&reVIP*T1S}lzYX4qqaio3G zSUL!-E%?u)Y88DJ;?NwEFsu7uiPX!ITG(RRz}jaZqcf^W<5aHa*CIx$_AN#O3NNUL zW@@z&4yyI@kbAWyRj6hKh8(gVo3Q z4ll=EI7L9RrP37fz)8J+_qwGqbDdG6C~%BEd$yW{LUY5|NAruXtE_DD;cDwIuvdmS zH*^d}r2yknU%uM#oe#7-V2J0W4(Lwr#Ufz{-U2?57xS0Nx4#aj6%Ib=%yd$=*)*Sw zGDztYYuc4ahBYg|>h0$=^TVHsDzAVT7S<14J7qyN%lww8`#)(l&|noUU$thh_%mXQ z0%i?8Cued_Bs4>^S+ENaF037ppMTj4i@bFJM_7(ozYh;J4%}Kh5Xe2S%n3~wgdzb_ z5~l^`x78Pb?qaPX!p=k8I|q&cD~%ZI_MY)v+0iK3mZAK1Vca=6WY`)~9DIy{_XPSS zi1FCG?r;f_uTQU|^ajiR4$;XaJ*5e59Q2MV|qIu{5gK-N&i#`?PXJT{Qe(_l$lBn4@-A-zsSi zF|LAz4h>k=G;CjIdSEqfrvi4#`9@F0NUmxO%`t?xXRQt@sq`N7c-5sU(YH zlwJGF#Vc05%0gSxx$_C{?1>Ax%$}K+`CD*x&=>Dm2QJQPq=QS|X63d`jA<9DzN8qB#qyr zemjuc#u{CGHbg7Sze9t_+V;^0T8o42#Y=KM)5ztYRBd;*hBW4CU&@9cq>urFUigm3 z`h=s|)a@5CBGL-L@Rr>Z@YdU`lBke~y0}~Uh=)IGutS-;fY)P3HdZU-t=#wWb3J9o z1KrPd zdC8uKW{>cHP7C$_oEA|m@fu&sCzL1ou1kjEe9cO>AWNmE^a9GNHT_yK9s3Cc+TKoI z%In;BA+iJ+K?dG-$*hQPm`Np~(w10(9HVnONO;b7BJ1KGx-^&;)5cy`wpXKm@RJ3$ zm{cq6*JMQttMAXYp-2sr&()G&P%7)0%C%H!u1Vb|hUN(h)L+pSGaKdY8?_ew_qURR z{#MG#Ea|2h9)h||L&#J*T`EKQdQQWw!@3nHRMZU3{SP}Hb0wZ z*bp^}CXqX=;Yw2DAj;f@Q0;l1%AfEgW-$Hve=b|G|6aDF3T*bT<6}OQPw*eG-r2s^ z6_((xW$#{X(yndJ#3j@T*#G47oI$8Jc(z;=URP|!}~?{pKc$N5cQ99aFR zmd4F4)iH0isyb1Z?_uiwwk zMIk^{iu1CcYoH075wdkwkd}_iwy;puQ0%`}JQ}x~V7@MwYXEH*v^E|m0?&#UuVv!T zdoB@+ERbIfn0$^Ogz4cB(R3MXW4Lj{0(;lME^duV$VuA6U1(#yVnG6>SO736qW1Wf zVdSEMceR6|@czWQoi3YSAxaZ~Rd@B$v8xVar-O25e=uyj_55uEH7!tieIuI-drfZ~ zC&5o%{WF%dWH3^df4<&v4TyejAZg&t!Mk4NpwJ>sOFz&_j1djGp4|g{z}_t3`aVc# z;3vr=^sltJ=HHN4Yv;IvuF7sm121EKm(BRhpyy$621YMWL^|I@Yoq(!A4-Yfz~FJ} z;JrC~a-iS}uAGq{WJlCKx-Ea)e${iI*l@IQx^0*1R^j=ho6B=|6u1Vp-X~-#AVU8& z599q*3o*&={&>JA`9Mb<8sA%#u9fALOcPzl^gDq*Z?H(OTW^>;52V0*=&oEa?%&mK z!O(7_UAC%mEB0&sCLn3CRsg)!6D7z80QIKcC@_~9>jzSTeNHaTa(PT{FR=T2VWK~Y zfJRVlil2voNOOwZR-;peg$;BgR@PvacX*Zayrv+TA{P0S3Aa`?V`nRyht4nSWv~CM zAs~8fw!3XY6RE)m1iO3=5Vvb2^nWqIbGoMyegr{uJ;3t?T%&Kmld=f;%U}2a91b8* zF3dL(_cKuV%YuNJ3A)!k5vSp)@S!aH3^)QnmDz_n?hAa*;NgOjX`B-TZw6N};$Ur^ znuO#c9z*Kya6j|xaK@m!VvM$+hnscCWlnR>wWH%V@%MoBY6jJukMCycIPiu9L0C_T z+E9{s8(F=$OM+5ZJUl$e4famo)FBTil!iY9t7Yk1=oVdk20boSm%p zTTod3Y?qEgi#;TWZ{A@HwpDmSNC55*x3}KnALG^6nD7k^$$03VKtpk?{1wEl@9ypG zo%_GbL;nTZ0G59hHmN(v&QE`O{vqlu0j4G;=CVRJ${-vl?(6q#rXm3~npGw~dGX`;Qko;d+106n=wWE|&B!y=W6 zFX1D5Ywjtl%kh6wu`>j~q}nA$+vv-LS{_O(U=N&Y!O%L0yVd2Jby^ZoHkV zDj}{|-vzl@b>oe3qxvCiL1(BT-hrhaaRVCj2&S?3%)t^mfYB^1Ep8ghno967VwmKeX(+Jk>ZMNcK_h%S04&Z}N)i342TkC5)x4GBEAoGgY9M zQwDCWcWRaj|7J&3xL7-c_}{>tfsljQBNmyGwaw-(3v-v|&0RVw5o5XcQPl)w@YHp) z^eTx3J+q4@21Fj0#nAmtY4pev{HvNfrY0|;WaM_6d%T@M5>xd;bC0v&Khp^qJqFiF zPT{}ZucM{{ZS#Un*D^X_eH_U&j$l#v8J(j@T`Ne)SMb_uyN>;bp0`${Qa=aJm zFTha}(Hz4lzT1Gs6xM*2Fhps;s^( z<`AWw=jKszTCpW;?_Y84mgAbSD4f#!cwoFj$8cRv+l2<9x#Bmh&WTPK>gX0b1qX);%;EalY z=yC}jLRI?SUBwKGK3xiocEmleg;>A-lH4mq1J8<`@TJ}{rPaep2=J5x@W`CIR%b?f zuVgGN-sbUx4>whJ=|KhjT70^(X+B}1cC%tu4MH{g-VhA7M8G^n$^G049Fb1I7X(ik z*>QR$YI1ma-|`^+QSUF@ZXMU(KgW$EdsSPZ&jqW>+&hleqZZf2I-St=k&&mdhaH_z z88O1D)TQFJv*2 ze!r!R8>o;ZP%~bg=?opGbgLd>Hh5aY<0{sYXhl;dTN=8LomeRw8rh0UBG!!*EaIat zxtkZIr%XnE$kmd}6spwK&3!2%qR3+Alor2(cupg0k-=n8_rgpejGUsLMvDo?r4+ZD>aS?gz4rCsb2_9k-~FBbBYVi%coR zJCHdxP{$rKbj>3Fbew%)lszdc?@uhglHNnt zBMLC5pOSpo1*4uVLLUISvA~y7Yo}_{Ud=XY$SX8mGjW3+_=sI zPf3<;s{9rNNKC?G32p(`^Z{vBMvNJ11vjl{<)+Z)BtVYtlu;hg=!9o|gLgDerd0<4 zMp`IYRL34*{{lQhaxTlz9Yt#nvWa-F0bQ1QzP4DcF#SOD+(V{pJU;3iRnrPqoY9-3 zZw<-i@`u)=xq@kFaZlY<;fIZwk9%G;*Rg`Sh>ntsTIrlKImX`m0LOe&ijf$NeM{JF zP9{&kBeVS;u<#8tGyT)Cbff=ssA*b2%$YUiiNs{ihl#G=feNV$F#NSO=bNM%rt{zN z)#4Bb{R3iZ1*Kj2z4J3Gv7;zv%N(kv*WbRVa}XrrS;(GD%4zyk)PXjD(>_lc7?6nYOJdToH=M zs8i!X`WX~((7h

      szn_AOdp3=H{8Ko~hSxb^g)SaXq?p>Q7!d+<`QNSw?Gk z#2STf0k3g&y3~+=w?JjK;RHHpYZ#xzXU1KyQ;@1WcY;d&k(&C2@3K{w53a3Vays8= z)Hp-}yh?f4gi=5C@m^!7zeX62=N6BoPvpNt|1qqt^m}Mcro@5@+88R!Wuhg|&?rfj z@{)4m2LnZu7B+xeKXVf(wNBC_?%DCW)?l()ajA*OgC-y;ucJh+7^N(v(wB!sg)`OT zdum)V1Rl!O-woG(t@-K)nUdN(5S5+`o#5+3G~PG65js0=K93je7|} zE44v}1RXR{YahC)$$%KCEU;YxTyx`O_knH@n}N^9IKeUsN@*>u=DE5*IXtwH zPFvhIDSgHVz>G{+cu(<5xL3pGN1AKZ5$f;^?2}T}-N-6$4FKu_sh9kLv=~>Aq^e7DQh=@xLx9xJ_xy+1n=;^|y?`R4A3Q;j;Ncz9 zag)u+{0JntPs@RjPYH~FxTh)xLNhdyM6VP-QALl>;*r(9a#|Rb`#KByNM}t|+P=yQ zJ#Yz<&hzlek0};g_-#k+N~@K2jwF&FblHpa;!_hu8ss4&b@t+I)1kM}Zh~Rfdp9Mu zYtH#bdoq{lYV|_lt5_|fgCIDxFufaBkaJQoKLZ$R<4L%wwgt$3EDQpL30GHFe$k0g zdj!o!(0aWQ?_C9zB1Sdpd(UZr*w=H3dFAOgR~D53x2V8J^Bv?WP8SG8CXn$fbKvHx zjHM5vngYf7NF!fB?f3yOpvl8*=RohJ9Jdkn+7Dy`=5~$1Efm;l_@pC zJAke{ywf=&Hb*rCK)!RZft!*7Dp8MZoFBf2vr?y06VlC_jDN^7opo!%(h}hu96>7M zqRH_g*q>tf2<`)2K9u)33%KK9$m54y*KtVo4`sz=fqsI({=j!HJ#YsSK5BMUI64q~ zya6G5Y>Z(sGC;~^_SR4S=cUSkCT$p|F|HCc`(gj-pcEuAIml7|2)tIS!6J`}ef8Vo zpgWHM_IDIn>02PQ9n}6WuaVLgOM?=6%bz#o_~J`$=poF{5J_gu8 z5IQAH=U5jPaLWZtHRBS7mn_p44u@{2+<9U*LCoN&7nn>9%BEiFe+_Cj0z) zM$^|+7@=>pK3IU>4#+KGc&r!s6tfac90XXJ=_m=6_Zy!*Xdm$J!Wh0!^4B7ryceKC z)czKy2Jc4JIDRc3uFb%6SVA^cD|ntHIQ0!2!UXt#Be?sUyPz30Ciq(j#_Bphz(>g) zKuI2U_7_AvaK!L~B{ad;?(9K`5;1Vk{+c3@{(E+m63glHm6#~GmTH=F)z-Q<;A~0h z1>n6%lhM>1Xr7PT)ZnPmxXD(cvNtHV%7s!t_BRE2c9#hN5Lq9u9Bl!1UjZm$y(tq= zKlO1{A~c+dO3F=F+yi^jrNEgCk|#Nay?3a6R(zTR7?;Yi#b|N;@c)PUAtn@eP{0wd zzyQQ_y$yat_6?qQ6jq1dYhRUSLS!n!G%5$Lgt)p$l^fF#v;Kheb%E4Z=q6_@6+K1^ zLbxq32!-)yY(}4;g!xw}<9nuF3WMoe;YgySgM0W=*BE3S1b@mSAIIi=-+aDpZ+SUL zW7-6w3ln|=vyDQg*5kr7z^*BUUlGEy!(a!hB&NqWz2A?-eQikH=X7-j{9QcRE`be4 zUp4l~^qkxe$`-%#^#Hne(P~xdwOU!++_AYsrL$OTI@Ux$N zKVLGxcO)%0TXlB-^ zu)8^JP$=@Y6179|M1tO@mR~y*1nT{~BJD&$m3TNT zk0JB#=WVdw?vJ{G^WFlZKe&HjY{AGJyjL7@So+>&-)u<=USoI~8m?(B0TZC-K{x8Y z=)c&|WP;f9j9?Td2VLAcD18RSIh)%77z;A;ODB2jNkcJ_%kmIf);LN2RJJtR^*EeJ z-8~tBSNwAh(j*k@S2J=0m@OLG(6(u3CNv^OQxIC5-sZi&5qKcwha>T#grD7fcXJ54 zY9$-1F4+g=Z+Zt7RjKA$KhulD9)VX)L&nluyocSmh05-LF@*pA(3+e*m6ruK6N^Cz zO!84-iNjbB-`H`Itd(VGT2w3ZVMGJvv=KHsOe{uKn~GGE`%cPt5NVX@^+M%-{JrvX zb(`y&w(WflN-EF7`?i8$Q18}P9P{(xZHbrCrL4El$qf0mgtC;fDYMfV3#e{{D31%PSQ8 zc%weftrrr(T{~ZLA_(-G_`B%UsLhLNaEofhl`#$IlGH1`o6l{-x*7g}P@1w`QZ`Ms z8_h|g)O&<|?wC-Hle~Ztpb)ljWXyn7EM|B*M!X@$zaVNClTy@hJ8w=$H37F6IFj@{ zqhF2lgLJ8ettfmJ&Qx?Wl7&;Ss6Iw^(Lbcvs(Ok-35=srsRs-R(6-M#dsT%T| zU6;lc;}C_aGz9nhYJ#)sqothjJ{aqxmU4fyI}F8OYPpMCl6zYjHm3|-iUZcSm0I#V zw7hN5>Mk&xfsOP8Embf?*7AVK2UJ8JlCeLG7_*UwCv@{b`Q?`&SLvr_bBwAmt!Kf- z%-3QhlrrD#he`M5i@>&}kpjsU8F)||yHySm%4&rmpXCiId$HsL6-6!rtjmqjxWg}q zRqPCIcx8hYzoN$C)O+YsZ*E!L5e1n#jiD})O^C3#67B);rTYBXWJ1yp$kv788YIGR#>1V!$ydB-Y}3vS@!pQH{D77ECS{ zz}G8Ty9EwR$R~?;r>)hg&|qw=xIeq;8p9>}dlSZ%4rR=_B?3P<~n4_q&7xW{HC8NI;b3Wf6_ zjH|#nrD;gYkKAvRSO5Jhru1f^yp1w6tSPzL~auW4y;>qY1ZAcjzm)88O&$+CIgz_Jzosia|zi@4yAWk_gPELsxO`%T~v zs`lv!G&}`sl<_VN-%vak8y&h3Vs_nurR&&S!pUly6hJThf&Tx{bdF(}wqF;|P1a=F zwr$(yoo$AjG5wqKkg3bs>4ebQA0NF`U%9d zye5n-%O9Cd$%M(c`!nGxF{O(wcG}&)&(X0R1Skmk@NhwhWzHRsw-eFrB&*zv+*LP3 zlJGKhyCI+OdTrajP>L-AwQiW3FTJ4NEXRu~qxR*AnmZZP25K4Oa{Q{OA!-Op4N7RY zDLQ6|kf@4H1(3xm2U~1CLm?AGrY;>1>v0d!9j1I3@EJ*`)|{K}5!ZoKKP&mVVek9# zPpC1_=pR6w(iG6R9M6j`zbd?m437HP0jGgg^iTToOqDJ(f~jp#WMlKeQ3efqBjY&~ z2K;xTG2bmnCmO7>8=7wIz{O54G_?%}A?cDuI$7jk@?|Z0KFT^(Eg8T*%0(hr91;;u ze|Yo(7?^?SmG8)X1biCAOD~_sP!nRUX0}NoVGx~(;t2yEx8rl*2Bg529|`*V+KCkQ zy87X}!^(QnX^IJ^d5~xuaD`5)0`U3sC1cQaG^}mtN z*YNwv(~{VR;k8D9A%wUX5g#z={eeiFi#z~aU*i+17G$4PNMQpxtxFjxbW(qR)5b{9 zPOBtY{UdibDqKh^jF!XgRLk4*VeK{rZsNaiJ#tw<{&mp={jz3R61b$nvae69Jt3Y$3_9Gz!{IFC zXNmK8vr3-)=;E6zn$Kt9>rVz+FuTE|bG6*2N*gIpf#nw}2j$L)*z%iD90#T_ zI&nMDV~M3e_aQ`Ci$*F2;f%bvo+r2VP z@+XpPgF{hZIUZ6Fx)w(@ba?k{$-PShE7lSa-+JX25TY}k{`j6SE{i(`%RV8tNav=_ zYFx(jK4EFdlIWsJGZ~ZQ-8h&7^mwy^(~&rBIcaBA>c}F~=pjgRQwhazfX4EP(LyhR z&6YQn4-Hp!Ljaf&z5y|G9uG?Bc!}D&p03XV6|)t(nH!)FPwan3pF>^bj3Tph&e7IPc~Nf0FMUC z9kf)N&$ZJHyvxE($N|ryKfnv3552zt!{KoMP;x%=(0%f-fE5r|Z37&07Hix&AP|Hvo(jt=XGMf-x;Zo?qMqBzXQ(m2e%HED+R}uU3hvVxKy&-e3%MK_zeb7ef9q zom6ZR#e+(WFOy_Rc-RW*gA{D7C}9yayMjqxsu&i_KLD%dnM{g&NZM#b8Z<(P56kx$ zr4UWPOxLoBxm!qS6#8RP5YA~ZBo9L-6i}yJD|Z#&}^^vDuwEJa{6&9 zt>cOjUb6Rl#}*TTKbC)qM;RQ<@3(_7|8L}u>}^A z{e`wgC8;<AeyFk(z=X=0dgX{ovZE8{s zf^C-egH{2$Z8dmuTA)(T@SXraWLKezQM)PP31%+ob%N0rnPX=FOgI_>*jhdVZ zAve*zl$-1B=*43#yr}2#b0PD&>|W2$0XeT<>(nslbV6_`kMkQ)fZgE(G$imSapH&? zhjWQwAd6$#dQCJwwM%Zb%ZvFT z3q6`dAFY&mb)OhEA_Z_L;W5v(d{{M`{9YujIu$RYgkSnnc{qp;?cyVNQcoClS3!=x zuiX~`C|bMo?x@Z<|C-P>X^+u(9nuZ*g5I9|lY0(b&H|C(c}hJcFD+8x(8^iYoK06W z)R}KO>wJ95pL8J4OPZ~82B^Gt$66VKakdTs60U6 zd~%xTk_cm!YTQ&DNa>yU`qcum{wPB3{Yc#Hb?~jS&WI&a!C2mGeH0yTz|Kqh@orc% z>lO^-sBCQ3r*)z`zKRfzB-?=|gfd@YG4O%UWJ*pxmaD+A{$xh$z2^d8uxIEQCv%*$(#bwUPs)_^NUw&0edX9k;q(i{d1NqwDT1X$U zV?k9gni*Ke9N@R7X=lpe_ofNUvU?oltSs^gt{2s5^_Ts4Lj&iBW_T%M(^AQedf3cg z2^PE+7yV}?v5)+!T*}w~>}+lPRM{&v-YZ1ta;k*&5+WNYRb&1WfiScyzc~5MgiE1$t9o!CB{BeT6tXb-mcLRbieN6!jE-7R_Ya;! zbWIFDyI5->ARFCT7CT2(zA9L* zu{!eNuq1^^&-b+LD(;aZ-vut5B~qBX5qw+=Mt$zbd(~=_#D52)e1$Ia@XL8b2NPpa zm>0SbD;}9x?=ULbmpZlzj&1d71!v-2K=+dNX_FmW8`(}fP1xU3041Zy6UGfNsbAAL z$ffri%p+QE6_y*gz+qUzX$#m+(m*B4 z7~F@4n`iGr77P@hE#ro~>t`98Oc7ey?Lo#65P$h8Cjaf?=}NGbHx~iH)CT@q77x|v zgAGC4uG6w~$8J^E%om-WHvREzCwyc_I41yG>y8w~X9Q?V468Rr-E#V|LWy?fON7!= z(_z`=w^2)*b^L8b%Eo;5w(^r*XaJECtwU{;r=vBHuXLj<<`{l^M| z*~UMU2NZ6^{KU9oLSIXj?FR))UIYMv4Y+b{Ce{^FcN>#=s&uQV9Q`~0I#aZX^<-&M zfm34^#7M4Nb6=7PT2}kkM{B$OvWscFny=xO*(`a&7dT4mT0+v-Jyp4XZ{7?nIUFUJ|j)2Qb7QY2!o4a(9wzBAg1RN;ay zGDfL^KvSA&fuid@(npB5Fq&simjJ;59chA~!CO5udrJ3XIn@4;SHBF(= zIqrUn&-5U)-k*Y~(moi}^4>m*^H(_o9|K($^>^$XBJ-K1Mn*SHKm%?c zrdUAY`h7z4z?QhVJscv){%pCjrmqXk-0zRP6QTpjsex#^d8L|>;x7h=@v<|%4mI&?OdHh@HI+0zE<%P{E`XPJ;- zVT3HjE2Iq^*Gpezv*@i(455RE;fhR%w|D(joAYktd|W*{Jwz79ur0S z=B`TBNFX5r1)BkLLD|0C!jTb|=19g_^!LhoO!lIq75srd)Glq@y)C zXDfj9&&52O)ke!zP^3-G_rftt=G4l$f60M9uJ)qV*H#HcEdfz;CYtEwGzVb{0|EgN zvp=l$V_AvCD{~x3Gi1-a9Tm%Q9WkV7l_p2&XHVYB9F&msh2q@lJdWR)e>Iq{#9dLB zm|ACcc&*N=ZMV>RT$8HGW#FS#5#zOzOv`egdI4rTPrLK%$rGU;+0&PHYU5>Dj()9_ z=wp#}#IejFHoQ8`&4ba_FDgoXiDjJ_rHdlI_korMRB7Yo@)pL%6~MYz9Y+aW_Dm=siTQw&%ceFH47--PxJ^LwZ2|RqN0Rd(g3Uc#7~19}@=`^KhM9 z=Frm5G1gU7|8Hk}#GI<-X`_o1Fup>{wO;twi*uNI<(huR<}lRW??;ON21m~k^>-eH z+ZsdZGCLR=AceH#5O5E0d>AOZwG5~ycL=@KixS&b9vX3NakAB9sk?CdF{2@%LUZaG zSk;B=RBFBnV1BWs*nZcShxv6QTIN7X39@(JJ_Vp0VnEKP9K}1P-sKn&e{im!a{(rx zi`M8RMR`2Zf1E4vD){BMy9s6B7v&!+ogukA_*Z@h$k*x^v2$tz%a9aaNvY{;HT3$J zf1RBIkOD~B4^G_liWW2{4xoF{(3;1nQ_Bo@b@^`WvCij|7{Qm`tr^R7nSHb^zMU5m zS4E<6ZwX`BgnNx79ikvogL79XUQVkxf7} zCL>|>ydE;-oNSganwU3c*4r=tEa=49%r^^Fi_eqHT?#yomR0_T$xQE)$dC07$$r6- zk%@_lB6^;k9aVL4*K*w@OEyxI3mNKx;MC`vV;(Lxw2Cbg<}%eZ$xwhFO@i<{-c z`SlH$Uvk8~K}5`D{q|3>`do{|(*%OQZ#r*}ra5$DSaIdl^+0F!<)k!>1zn8VyHbzw zIgqVaE$d0gca{$I*}hXeWfJ#4NKNh=|IK>2i%rwigKx?R(6J`v{9*?aN~v!)e6$}^ zpcj=0(A{||lV?#7{?XEgh|Ry5axiQ#!qq7ALMhapY^f*BwN1^X`M+|Q0~wKx7GWtL zXGV@+W7!FL|Fe-N9cJ!(MTY7|$NZGhKw#3_+`wxMgC-van$ZGY`3S-chUzFGd!#pv@~bFg+OCWj1OF4^o> z-^Mk`Cd6$^kebAHUrw249D8B?4i0i1;e$ep*HtF^d%@jvl>o3x`=OV7QGZ?~s_~mp zw#YsU4pEc#=&*LL*4tP8@W~vy03w8ei9Q#(7-eF>sd*caECfhLP0gu~W%}51O}Dm% z&PPksqN#-3f>mjnY>o}p)UID-rXxY$ZtsL7d{Cx+$t&VAhiL+Vh&O>FS>-XbzkyC1 z4pT6eIcY7-&SXpTGk-anJIuZ*=zi9;;=&Cgp>lEh(n*fOG_xL)uJBFoA}wqA)2rID zUwnn$<~0Xy$%TGHI&_myvW{ul+|1bD=N;`|{d!Ax!&xb$lY0tX zpBz3XaXI;BUY#_A{F+MZwP>62ZddfQ57*(i*t;4&mZL;H1@GYQH62gr;nS3g ze@LqC6-sj9tOc!%q|`}QuUDX2E*Okm{7_y$`S00RC?4~(rnB}m_S*0eW7yjS7Ije_ zW9#x-oon|rtd#C)$56HKaMz#Vj-%Os`+N0D?~n^NbJMjo<#Zh>Iz5jn2NoZG1pa*V zc64ZRdxw?Q&DMJDD3-qfpkX7Rb?lk654e;?<2nB8P>#@dXwm%c5F2s&DHGYlf|$Uqr?O~HOIMc5%^|)CF3-M_?*eM)xK$7D@O3HZRhy+K z13vb0A_JDot{Cm*pCKbxnCI>dqmxgZ^kX8=PV`qGGEEyG&xsR1&wM!AO}T^s>4x7B z81^sv04X0hlEOSHS^1DWO`J~o97`{L^NQT*ts{KShqN*NWPL3WdW~V(Za;{Mmn5Dd znEkiIh+jw&4P6E?rAFhfxIWDj&SlZxJ>9ZK_sb0a>Q%fF`L4f7i!?NVACe1ji?a`l zIS{g96^Jl0Zux)WcO-bci=~@i(OK?q)#A{}^Y<|p?U?B1_@9?hhR4YrxS=aGSy{JD z>$p{Ms2TzcgtJ5dBkesN-`NyWrruzQ!eb2p+?W}u5~p{g;oYh^qUb99@JD_3x*(;3E2caxjyIjXB~ zTZQ~$l1(3gKPn|q1#Q#sohS+qCyJ#=7TZ9TCdLeipHi%eD9&|cl5!Ra<1DOX$^f(6 zJo(Fz0|_&=t1#?ujBzocM8t`#POiJvsCdSf{KtlXJF3F}N{rM(xeh$Et7vHfv4_@d zyo^>3&Q_3?W|YF4CTR z#o^EMzqO5PCKt)K{Wq|DuLU=Ve;2MBtONY%F$E&|_<=v~Zx83^d#B1@JWlF0a^5kW zu8x2dtOp<&z2U-F%(NAu|9osO-0)B1Tq$mknfn)0e&Z6jtSztaal1>3xLiejnJsGw^ci)V`!PX1rwla6mUyrU%&6Do5Z^l7K`%fS$zL2Q{&Iqr@ zfJrbbb@r-)v2~eDF(Fo!uS?IiIfy*t0p@GR<9 ze(xl|SKDH@wCUWB1niIV#61F-TIc$8U{(S39!#WI7&bBL3}&wI=TaL8Pw>AYCw}@= zoq9$62gv2R%6RhOUbAn??AoQ2E09~Bh(C_aN)x{Z!wQ%H zL4|wBJH9>T`?Q)0g11E|(1T~d+)U#i@WNgK0wMJw{(2*$*$m5Bi@|H%aM~??s@AOt z1W33)k2ULxtpYiDTk?G;%!$P96!oQydq4^~+);b*D%GNo0b`kC+Ko=tYG1Y10I181k76hSc4AK6ui$Zj`gxYSYa6LG z>KP!(zw?^rY!!d_Sj$R<6CqQB1qR;{hXFs+XsYnjsPYzujPwVW1_kBgr+x7**Isbg z!r;st6;}Y*u06TrO>>oOZou=b>^qnGH~`>f?S-iHWQKK7w;dkAiP`~5^!}=-6AkDW z$TJfRFjrRGWb`4$mRT6CJ-7rw?Bt?*mj!<+)v=N1^kt zG6CEyD-XN=94M8BZF#D%HcjIJWi$hpzzh$xMD#Qw&Bo#X`oYH$O?TnK;lS3#JJsFt z#c$&qyt;=>lYictob6v$;{{!+2BIV}^1B1$)bzmRk6*6a62uZ7;phM9i8xZW|( z<5^v)iO%aU(}2SmGb$2~9vz*gfDu)`e_VC|uRtZ|vl^YA+eIqwOWq6GxvQ^OLe$@F zgH<9vjGLRU@BURZmbI1yhY1a8xx-nlOao}-tA|#$0-mFk3)!GPg41MpSN~Esmaab% zN=Z89I!bb6YJtF_0zGc{j}lM+xwdAx^hk?)AktGKPy`uc{tSiNYvL=>#f++(-i%Yx z5|s3BL#^f1c%oSg&4=#OCau68Qyqu(2Epri zy%o*Vxc^d-p5EONH$rK2P-ZPw z`LVn<6O-g$>H>dZ=H*)Hj4P!w&bH?ies@uEIhuw*JI|@=vyx`~C4O{IWj1}F+2b?|u={A;Z?GQSaH$ch? z%`R8`^DIyZfRz34g8TgYK7ni97{BabyZ*q~{RZH1-3o39o(N<_H1|`qraJ+aGUn3P zf9nUEz~yF>(!CQ)UpX_>l;KkjhN-!X8@=}|rY`(%Wm?REMW>2AzbBe?os_MG;HBW)#OI#IJ{@2z8~1e09jEW4e+qTN#`0&Do|$D-E|cTX|` zNycqd=8VCD6f|bJ*xT~35X{O)1nGRrQun#XOp-Evi9~K!X!+K&S-E6e-lHE7L;GPg z*Z5TJ|MHjkqC6cpst<*MQlJT-*Yw)g2C(od{(kDa8x#oehi;a=c`KnRk=76SLS zv_C2=;14i>KvBt0+iHiSC%2iRQSmmoNf2gpSD5;iPTwZ<5P8DoNvVqaX(B`oSj~%R zdz)_$pQeL^%o12FN48K)+hFbihevqFka7}XcUbNrG?)_9XR`6Vg5kG4 zc7Bc4E>gL|c#(o7n*dpWOq#FSlQK&D##gc0{wMl>#Gq6mzyC|C5P()hTDfa&>#h-= z3Ez)y99k$eKFling}+%=rSWS$9N!1644+2qTlfqa?BhH^`7IuAeBmRIH*p8VJfMbl zZ9y{!JAt-8l8hh3aNh(E3&RXvjqe*XMQ?y`h+KilOQ6sdVWNTv#hWC&o~!@){_m%B zsXC;(eqJwu#dWa)>mK2JyDvmQGNXF}+{p4CPEX*hZ57MVFyIUbdKnJdJpl}C{DM2+ z`#i4u0I(|fE!Mq2Vv*Dv7kdO)dkoCH&zk$TAp89G@ROJq>>COABWiq<*rd4zLe<@M z>~x3IEY1kDDJk^rXGV26GBl1i;DX00Fr5K`3GN`rq4f`k7RRJ)n@Ebd2%UUy@>Xpj zRGSwYTFCQyfszF*iMK$^{aFbUB(%mV@R}vX%i&p%Xq-@t#I$ASnD!oGS1}~M42Hdg zA198l&e`%@2F8@i`3s0zA0glddd}w7*}em&QG`Q~x01TrIeQ^fY~{Cyz*W%fQ|B{j zXYvcU*m~DoJXD0mv~IefXfb~`2>~q1`(})?L@sAo+kOxCOTgJ25~)P_X>j+WIEl2k z{>7%N)B4DVun3T?hvFu%k&f0ERLs4%O>b!%mFi3lK2g6iPY)b-rzG!%3I})L_ z@|ZnK!po{2QOhhs2{;rdfyIMVW~%{0E2wS^)KOBfbXD<)Am><+&=PBD1Jkf|i#|ht z0=Et3B?iju`rDZY0Iru4u?2A8SS4bPY&LR2vK&*!7`Nc{LfzGH*j|&r`p1E$%-x|z z#rIHEzLRNYTl(j}g~mO~n}enHGIqiV=KJae2M957chRhxA`4ykOhaN&NwNj$#*lC_ z8f&V1H?5L|6j2x!CiezvWdk6Vx%|CP7?XD8{MP9bwzJh>R(vC&gDI-j@s?#Xr6&GA zRS}GU9AM#Gs&qOB6=IzVZ#1-=-xD8R?U?w(#7@$P)3C{5$YMen>orYI3 zKFsV$OwYT-IboZOL|VvKWQrjuSt60*8*F?VpcYEbn4!z`14-^(QeO+Z9HB)bvZgGS zQnbdxw>Xtl%wz(FMQ*u_eU)97gaw9EvS^NSE*Mp>MPPY&rCNut4~$_rzVSd>OT`i- zipRMUBE?}>@(6~x5U`_JxdBPmUp(`aUguBA_xZ0Sgjc!3{g%R@PBp|Jd<6OcfkOPE z{g2CU46ywqI}86b5Pfhq60Tf%#my%b+{3bd8^j@<`Cs_`u`>x#lbuZE3QoTQB2!+B zTb2VCjX8%ul2~30s=1o`k@+v3s@CETv(D)n3&}M$0P()JmZ@Bc?-8|`L?$@<-HWlh z*wO4)xIxK^D8au^lYNpCpM0Z2|N4s#N0Gef=Tust<$cSZe9b%;cd!GaGw?ks0}^|_ zQEa+QNUwg6hY$$`wK%fotcz|z+PfP{LCj2<-hd8}XAD;$Hg@vBjK{`xj>lxM+)l1^6Uyvz!RwF*D3vmXA?D=0ihX2FwZ3g+gGkIJv3yYb>bAs zAHo2;En(wo!dfUbJ^3CCd)CckG*~u#exV82HZc;dRCB0;TQoz@pKuj);Q0i!*)+we|#BybO;`=>6FrYLqdn95k<)KVK}Xuu!lvgPtpb)OdG# zNVL|_ApCnGh$KnPK>H^qN{{orE=H7(b*PpR2eV{d&tXC*n z<$_V!4*`$7Gw=N^>`f@b0A5#(E0j1}Uxx^9gfhoc@7GTlZu7U`K14TJ!@=BHVJzqg zpZ5VPypjSI6xuWL&kWmgdd;k`MfYa)P|``AMP2Ah3`Wee^tLUvMRJw08@!CaA?;+} z&gR4h9xEeNtf=_Lb?`nrPWw!`%@99f2CQ>JSeX!kIOsL;SOynXx@mqZrcD*gUsDi@ z8qgp3;7n@&gHJ)zt(Ca9Sw>EGR{Y!7 zdyAJ1nPhHSR#leYv0pMVtR@MI9-OO!jv9?B;z>&SB%#C?mL?#)r(LPb%#bsXR#7pb zwP6;bFJovVkwk|15nit5u_?-*o+tq^2yT`PjX;m)z-Uxbns%lWJdQ?_@1=8#I_hjA#$Ok zGg>AW4!-CBl1ivT3G-EgsFAE5Mo2Wq*r4rjo%cmvmA z$R@?US3&-TCv^3rlX7g^@C2g4!60i~0)Z~dvU{KPG3o#}z>3T@n7Oz*Y)|LM6T!<- z5fSG74?TDdyovC#zzk5S8FK3-_9Qj|*_Jy3*d7AcU(h}THJT752>Hf*r=Y@(w zuy8@(ivGy?l>lGmu7-u@C;4i8#7UynXag5R8NyUA6&!UpCPmT@caZ0XobY+1Dr-P$ zj8hNptJ^h@*L_i%Y*4>$0#fe+zWFFPXrpU|&IR0dG)h*wqMIU+`f z6UJFLKoQF6V1nAxBW6MMsW&(RY08U52ZFjKy7ysBi2>CfV~ zv5-OJ&N88R!bl$cNJ6hsCg+6YEHW*vE#TEXO+#m?k0iX4L!thlvl@^m=tgH3F#MU& zrHjJfNNkn$e+b7=5_uIZS0%j}e2N%5;zA8oMM$alY=!nThrfht|LlzjOXeychB{>y zxOdXaf){L6DiGcv`cp#&Av>!#_gxiX#;$xkx{t3If!LSw1X>UR&hJZPU6aM-ETQKz zctGCMHBeX+U6#XCD3e3yh%5ud1+@GxOW#W*ms367r7(l|-CB7fLu5 z`)$YL#Z7l}TuhI)wd=Vn5iQ0ibvP&Aq%!YZLZ?PJu&7S9ji1NaWr8Pd!6_g&G@sD+ z7YGjW)S#&nB!11i5>CxN>qSfMWU19-EV zf-r2gWWc^q&~}2_AX-3?55r+C?SB5jN7#)5b0ItGXCJ%h1)L#MlqaN}%KOGu+f)k> zOE22{^)sMl3^+%*R}yJ>%!tB5zeM|Jvlevpu#}Q03k+O>e3kg8vI)WHzAdB8RD7{|qE>MX(L7QhR5CviS(H-5lKJi)cN} zTvOp_)>O8f3-f2`4B%CXl5yY?v7(std#d@ecpY?;bsw`VZA1BRugMU|x*LuE`Q>ZsK{1rFXC*)23(8kL+dFCSXA%O zibwGz8HNO(gt)@duW;8fG2%M09%w;9nK|NcpFw(~kjofiF)@ov$$gUOUssY{koIhG z9X>!_U6alsllRtU20;n7+>2n0mSH1xW3bDMoGF5SeWk5)2;R^Pz z%$t=kncEL~e+bIdijQ`n(G;FUGw)RXmZbWTEZMS@&}m+ZNA}r;L4<+tOK7VZo-<%# znI|`#r_A{x;`sy&x7Bjsl9GgpUP`T4)_@%~{i-oM>B+KA?IJVk$6#scC)8u~zk~hF z7QnJ(v|?Lj(#tgqhw*QL>Dl0qzLJHBD@^ho5Yt>&Sx(K`t3E;L-C!6?4|R@*S!vKc zLb=*?M_qs9N~PVpaWTUiV;8eW=AN}5 zT(qAT+WIrh6s|D24N=~wyiE7nzvOoRqb)$=LL5|(7a-hIDo;3gG8o6T$n{v71+6?c ztrhbd5La3CSklB1w_p=-#?}D}`Rmo3z)-#%&E3bwP!yxbUwJy;-VkZ=tW4O z*Kq~l3#0Y!Pj(B$=1u95V}f5xWr2Z}{5`zgj1nzbcCU}gVp2Bz@U!FrUraZQN zxOF^Np8rm2gV0MJqrnm|0YgN}{6}!!Wa^^Ck~vuz5!U2YFv;y{^Cfg&CUkrLrfXT8 zOMWe7pPV!|e%byurSa0jQK|L0zE$0DCCad8Tr|NY+5A%(LYnE#1&&E{b;@!SV;OrOB>%a(goi>igrzk4-y{uSR1VEX85I%w3 znhJbRgG+d}q=-3G>&5<55)NF1O8p_E2xok(n9RLTpW-2b>=wKE+A zR&u{cB9-aSYhXZJTNy30yc6kX1`HJ#70Fe0AJ-X^MggNBy zzFh%=P^qO(8JGc57Sxb41~24Rrhza1wE$SIl~qB%o7FnGt%HDG}CslXHp6Z%8$IbtLDWn2yM(oYeO4Fx`QBk7#u z=_+LkxchEj0S?{4yoMtcTC_Mnu5P6Zfa(^rFmmDl!2u=aP)|0K3B3o5=Ga)`Bl}`G zbe!W}qWT3L27bY=<++a0miQuqdt|+_-F}y_G3CvN7sN=17R0tdsEvF=3P5xW4<6%K zRj43guIAW6?FmIzjgY%B48b5l{@DX41kO6bfUwgA2wkW+^42}=)qDzbU4Vp8#pK^L znC03hE&Tp8Jx{w&>yJ!KWlP^JJ~>SX)5bIQ{(H~hqodX0!mQ4#!)@VEn{4ITC2GZF z>xiYjIk3gU>n>dKaygLeFKeoqXc_q7==6n2F2DaM>?mT)n{8Y~YE+7$dk^*vuwN)1to8g&#!u7O&VI}n5G&BmAFAlR*{qTK zr|a)pWNW2Nd4SH#>It(!;9sc51PU-KBvg4N2G*nB|pu?h7oOhz+R24Y!?cnhv(F^N4!&)R>U>7Ic?TX&1N6N z8ri_R3!EZXgi<11on{E-na`lqul;@S^z4GG%|JN4B5887+rPj{%b@R72cCHU=HB5B z?9;30YTvjZ>UXug+rkm#j}tlVzU=`#S75IqtVL{l08;nQU@UgovIgfNW7|5q>(ixu z=AhNgwe@6MDHpm5u1DMT3iJKgY`vuO7+Sq)961No&A%3t9D!3<7kfcATUfejp?|03 zPBve4n@5@#samXa`l#sxA6bf*pZ4tGJIY&9e^a-TXfNCQ-!QqlE~FqpHkJGf>&JMb z!Kwzv9eI`*#d5q3<Z2DQ$58|6WZ7S-$&=0dxofI3r@8O8g1fgOBbEBGq*;AHkJ;rasks5#~i49FQ2v5w5r}V zAa2qKh>GlaKll3SW~`&$ahCmUM9V=bn`=#_EKBQEW_H2&U3#+5mN+7aoiWlU?WzN& zsT-sC4ue8WQ~V0&h6WR(p{scko11}*J-r)-YAn^0I$X~0g=SuYQ^2%e-YxYImcwW8UGa+;66W9 zU^X_o;uz;Jqw?JR%S#gph7&o)P6G5KWu3!hf(DDMM^qcgo23;5l{S6Q(~F;X0XG9R zWyoEYhDG-$gW@c|q&$N9df@z^f+&KC6h$84imuK1bwpao6&Rg&Y=t7s{8;*~tA0E- zPJ*`(p^d)NXndlrvd5OG7)n$pr_#<7$IK#fV=m-jyf{BXQFvhLb7vy zKGn;Xa?F`3l+M3!+`d9AW6Z;!?+95Qp=jNFmB@pq=kfq3Ro1erjei`ro2Mj+-Z0v= zUJnc*0v{T5NTy%uHaV69`7=Rjufxf~((5Vy~0t*F=DVcS_6^ri{2c)xxmz3hej&wb)7R;r}xsZ9ebZ z%Ih7kNA+wvxn;6Tj|opjVn$s!!Z!$7L5yu~*t^+4_Lfk8PCuDbIk88$!P)(wnT z_ZNBCe7Ij@4q1|3`9gvG#CO4^nm$d5r}@6#bFgXILM%&&UEMOct$PgOsX-N^NW#gf z*JaS!%KMZ4OkYaEB4Yh>SZgHqZ{zGiN>u)rDORy~sIv5maP*H2PB58tE~0hs9nXByb6d057~hH75h{wh|#eVaaqmKisVLtzaa z3r@=v9On{l<8$lN1$ybcT?5C%RQA!DPu!eO%KmHWLvz90WDC^ON^gqXQ2nBFLs#2t z9d3RCGydi(kgXlRS~MsU>bw$+emPpgPH)%yCq5miYc zqn9+fgAkEDGh@3gio0nNn*I#;cNPxZHLp$54|mp}>ldK6roC1`C<%VxIFjX{Lbdc&y-%U~ZfKiO!0_Cr2e%Ybc;$kB7rqb#erC_7WkjG*7&l^*WtA!Vm* zm}&W9E1d(PJ`Hc_KhFH-Be$L1ZrUH?&g&i|` zW`|6t{qr9?n09^V7SyiC^o)&dc9YQBwO z=9ILAoM@buIrT6S4;|=tZi_ z{XB5IvC3(4039HuQn|x4B z0{l_=b}{7|aaij&O}zQYHR?Zlf0USR;<3VrypAZo#ydS!(zLvlWXvItF`Dvs*NqoC zNY>bqI#1qq-mZUT@cLIIoI2Vl5f*h8FLG`#)-0UhxH3k&5ptzCjuMny>8h8U6~kky zYess`s8<3f!!^1+e|%)QvCG~;o;b;Y?P6#rgQ#(%^SVIl_1wo z+d4)d+40RX^9?X6EMMR%<}R7P*PhIA+ugc(ZSu=5TQj?|P*<8T_Xn}Ujp3@(rbjkWLMOEp=Nu<4V|-Q_>2PHw ztbEWZzWxW$=!}2~SfA3lVtkd@lUGH)XXkPCH;rseQFC`327#NMp`>>*&5t?HhudtJ zzzvc416w8K8;+6U=Vd>*f{I7x>X+^uLu-(cCT7{7c~P*~KY=92oDY?I|1x*hu?Azm zWsYz3-t8B7`e$40y=|R9fA~T*h`TF4T3VdSiX@{IbAA3AJB)7lFvAqjQ>a@DeF2Sy z#bE&pb3bff4JRWyZ9J}jpPpZ;o7G^}80E*S+*=O-H~B!9c6?wNas;43?CRq9>D5nq z2X;m`Il#0a?|kAnyPSFJaDllzb*eOiq(p6U)X$eaX7k3AMCJYL%|;HXmmcOav-qq< zP6T0K9t|wFCS3JEne6A{EHLhyq?mf`m}{K1!HDIpgW>(F#Ubx;3)`;}vYmP|cgV1 z7Z02A0&26ozqvs=>D81YE-j~vf{?>w|DqfvQrcP^{B(} z2KgleW|p;%gM#rvl%U6cwT@R{_x{7R_u&S>VG&QAHS>0|Kd-YB<&o#N4Y;s3>rQK5 zYsg(JP_s;nE5Y!wzgwrU?C-FP@pP=th!3#i**2qikB=!VSj|=8OW>=UGHp>}sIgp+ zyUq*&{@udI1jqZGmk?tKCMdUksY-lR&F0l;>d7d2f%|%>Sx=q@-x5RFezFJ*8pKhR zQe1ua5*T_-a%j?YGmK`RzB$%$Bme~pUiLx)ksycB&;>r*2*x@&&`yA6^b=^41z!m} za?)*<3BM&vB)7E=AGkTJgB(iB2nALwGY!eut+9xn&y{z}{<$%75G(}l(HrB6pQHo* zIIt&O;IXKyZ{IKoN1exF>v+a+qL=FJ3V0QRX2OU#Y^{%V(Hz^iBh}^^Y%N_A{Txlx zV&XSyf1Kx7d?EUJyPX}8T*Ba*W;Us^TNWXEk)XHw1Lh31GJF+i(~Zs4x ziS3f>tn_KRvY80v9<6Kh-`qZ1Riw?~Rvzf}D&$z~u$aq;k$qyKY?`~Had|se5}j&8 zM**L5a+E)ZsJUv|BzzqAa+w)*$qd%CtIRvnh^dDDsCQ)*YiR0#L+sJNBWL^ zG&&k6DK9J2fq;)ClZ6AwRWG~l!_h4Zdj%{XyyHV9auF%)pVuQc74s{9vr&s!0^XjT z9blR(dM4KTzR&$r7sw=>iwx4l1h)cY0&0Zy%5z#`=U#9UkwEAs(j23^YVE6&%AKd!t`vYFRfTwZeFQITjK-l?tS#|Fx@EmDt z_@rrdl-=y*kfOGlojj4Fx>l8!PgLisS0Sg*|6M{u_HQy=8AM_j zGT%o`JYF+ua!Cdx=cUp6_EpHA*EISkL3AlaR5|6|~CP zk;OYMrQg%UCa%AS!6ITR3UJ5fz@j#P)<7iu&LFTwI;l21A#R$LlP;5{>o>hQ|Mr)= zN!=gC&iKaQ#^35n?_Bgy@$Zi}?*pH&7ru*~OWjIeJ?j3=tVQSE9x*2S69xU-EUp&B zxm3Z!ng87m8B1nKtjG&C2W%g2Lq5$13{w|KtwA zu>jWKIKInpNT)0y-X5>J3Yf{%fCYl+ry}rM^}LS^otYll?st_b8l0L%u}EkEUN9;& z39?4S=JT-pr_xO+q`w!M6kq1XG}r6)cr~hS*Vf>p<`JrwJlh)N6Pp~I7 zk?6%1NFnJm^(d=#XkCFxNrPKX0{9rI$rA#h@%WDIA>2LFl~z=9G$kOvS>Pk*-x?{= zlYM)^W_0mr5Uer1<{zi~V-$))hT8_RVx9NbOFeg*8%ZWdQj%_sK)|jABI&;KerFtV zvzFh(`2m>q0FqmJDmlV0fCG9Vhd%j#Y<+c9mtDIi-5ru5-5}jv($Xni(jna;-7VeS zsenj#Bhnp8HwZ|a{rhHS%{go4&)4-XUE+TBzV9mo%3eUF!xTlzQ;IjlNB{|Cxw?D@ zp1tEWEHQp_<8(O0_OKM%-Jpnc+#`roqf%B?Vgq8g1lksMufg~?Q>p@AZXrQ7Y8+Qd zj)&$1B4g9-3k>F~wwp*vyoDJ@*#jtBjA-Wgd0J;^SVg?6z zH}2&+fSv7#v$lvT9YJ%5M^H9 zRe@wUM+jP6k!2`_EfGkS`Oe;l&$z7|aLK0pn_O`YYE z-#i2DH$UzM-f}=6cobcv&7bh^n}UjUT(|W3CUNDu*BVQC)&r^*U(Q?V{9-fQAf9T@ zsMkT*1Ckz9tv%%m;4)^PrP;xg6B!cw{tuR#Ch$MN&CuiatH?1cc19j{wVVF38vM!YlR> z3O6ogf#c-MNM-KAYuO4T;UKzCSguI_l@)Xni>v^>rxKb@UZRP962iDqR#ce$O!d>H zK%RzQxF)^rs~)1OFcU+kUyg2Mc@o2vt1`1SPmUv(Tn6<=6nY(EY#J+>Gp?nx#p7Y3 z2Eyn;z$HTOA6oZ%rE9^#$_Iso zoWnAe^N?WR?|(4^!VF4`A=s&r;u3EYn@+v1lYkDWbMV^kq_pO;HwDXeY&J1W1>1L`m$E$MIuzi%dGpWN>C(g5AnsSvkImP7eb;5y$(Tpsq@}H@UHf zviT&8GW7A7M%kA{IL5HySuyWr>1R4Xtw7rQ6d$&u-xBALIt}x%cv0HRhwubZc6_HJ z-cyjb<)?I>go$8GVj0Wia8t1mElZ`TGSA-MO*j~#)B-`Ni5bc8>gzi=Opq1=V`5ui zi|!i~%LCF3B+xLh{Q1ajy!V zLQr!0L7tBcy!Y`xyL<>=Asx9Xqg)E4m8W0W&G<0VW%6P}Vdw`aVJ&y6%s^36eh5b4 zIJn8vggxe~b$bI(2gwpT{3GJDBn6FAj$GnDq&}n!J}V^eQNTeVOBI0OdJoW? z{Txh$W>3XYVC6RmgTjn?Fd%MAlY|NExBPR71kENs>;dZMnkGB=nv#5~wIuY3#W0w3 z+;kN}y|6b}48IeS%??65aioV8@Eqj?0&7&q7;lRhw7l;;fTjbEs2373>6Q38C6zoC zs7_uFe{On#I6fmV>p}Mc4?5g^NP2$u$w&g1_&YpQ@?GurBxjf+`J>g59l2_=z=~6c zSq75(&##~}7O|ytC-Z@i=ottD6BW={S~;;84BqqHG8n>q&QIGJ1eQE?J%%Wq*WIOy z$?27Uqd7IdB9zU{&eH2tzU=`qWyMB|=u2w%s46ieln>1vE!csTfc)e3VcN-V8U@Sb=~p!``8Pu}hf@-(~nm8~jw7>6F{}2O)35cQ`|rb-ea^ zf)3VHOLpzQE0AgMAqOsJ9rm=RW)>D52t3Q3)pIt%?&6B z0K?{azc^Al-(32-2SHRB6c-WL&0oujB>f>%gjxM!S` zBuIm(T>=T+>slnVNq>pq71_uk7)m8#ab(FqvgKmunQ4%j3L-`s(;T7hxT zsf^%SXi;^Bkf>P>L^CmAzXw+gf=4FPvd&{}Y<|Z5BHV$IL$ONxs&REw`XLe%iVcW| zZ`LMF#(c=31c}&zvwm+JSVERS?h;(^R*g#+2rga+fwF~ClY(sFm_!n2$`-9XS7@>b zfsPtQ7J5B4V>5lC0sP|KxMhEUZjgSoE0ke6BBqS#VQIWC5fbOckdRJF0V38s-LhKfU~GUR zQ}jk8r-@Fzjw?FQR?jh2%i)ci8eL6F^M`Vd`D%l+(YHO9IP(Tea4aBZDJr&R>jX*z z1bp=Yr__L6zfCuEvVA&B(kx_DoOK0;oDE>NQ?&nK(EJg5I_@O31nmp-ARiDHeR&Rl z?f#`vKCZCnUA$!|Twu_&H!&gxSm$ZpGW_YseLts2+ut;-68aE(TnuhL18Wv@k0lEN zPk&HRs07lPakbsORB0kY`?y1!bWz*+h(oS_PvuQ<(m5MfT4GllhF@)yKW><`;8_ zrL1^uhx|qdO8hlBDe5YSg<(L%@bQq;PoYg6Rp1GCC4Xg56p=)%t8pLovpr`RrFtSX zhw@2GN)OHygu3_v&Q2V#bjSHk-xkMGetWMmt$`|83?dG=ZY|<`m=tjJxc!;PdPk80 zH5^2?jL%OO=nF=1pxK}cT)N5bN>S8@l0GKRR`T?^9H9$=I{7G~U5c2<_6J}ypnWz0 zOIfO)!4mv1SWa|zfI^2uCF=Dp2+W5)SHA>*x502=KhdrO2h6y!k_#XW1Vkf~w1e*wy=@P?BAu#r{jUFU#iZ@4#OLwlt;*UcvX97?I z`Uiyhg_Fr+IfA%r^ji+HeGB3N324(lzC9ThAVPB9Q)n5fC&QJZ$ z$ek0Fi;a}@9GaIh5vlHmZ^e{=jZCW(-anM5FRnW~$9?$#pn)a-?*4(nMn%=}2vymY zCGR9hCmL)l1MxMKo)()-%hlmgxZIZeC z=D1NGz4+>Rop)^~xU1(+f`kGGqJlNU=$;<<0_G*uo$nW#rRQEwRV+Nr(pg%oLsk#q zHPSCnxv_~Fp6fqEJbehj`9)8dikWd-ecu?04;yztH?+sJP*m&hyU+S2{8uEA(&YLe zD&u~--1@x5?s#P2}={pni~bC+d1Y;V$QpC9+8CC3B+qmp{+re zy1Mch%rm&|vP~@V#jTtg1+}G8mzJQ^xUC+K?(t>ZrT zuPzVlGJo-4CSKJlyIA{e{#-2Qy$iEzlqUFT)0@HwmG*ZzE{MKJrWbSRK=-1?+?>jN zyBHsAW>eNB!;HB3tjb|nl?^6Ve&o8>9A z6;>uSc-$o>Y4eUt06P{}R_`l-euA2nRLjdBzXln`4vEhyuy*oUG{1co8SPe0#pGRw zhZU?yexP8ftDa3i<^!$BdehVigV9V34M*&@>vm=l=KiUBQmH-NH!)XBN4+Iu2+$sq zaCzS~`5SM=D&5fo)QdLMCIMO6F-UCdL~H=|+;Ge{WW4c?T8R#>88|Sq&W*3da26t< zgBBbtBzxRD!pZ{q$x^Vsn3@dtICx6BIK^7N?bl(4()FH)BN>t)! zwU|Sv*F+LpSn+gVUpKATR;MF$JuY7T(0iyt4^v?w&+}7@PNR^)xwM_cz7K6KvuZ|0 z*61B)&vK}aV{;F?!rqO+d}!-eM$xMRqgEYlyoUA3@#$*E-4rTG4N+M#)QXZfCGZUu zg>jM7D-V|MyM}LTdB~;(j;c99Cq~nhh)=Q-50Rj|-8W(@se4;D1AC~~F95k>Rw#ml zh`FaSIERvU7CBY(Bs7)mJuHsW?JhJee&5xA!6Yd0c6rvDaCoGCA)NFF3~f`s+oR^Q z{%lmysL1GNn6{XNzsgZAKYCENn{PLiwCUW`L`(K0QiIU#<{_w+_fZY6(`GlAf$i&) za7fY|es}x;+9a^h<9A$FIzMbcKuHsSFbzd>nm1R!#PW($enH1uy7%56J zG$w2x(K(xKeuU5Al0_V+7pziKcG*N1MPC!%$Cq7g@x5K<7&fo5`i6_Fva>FIgf*}P z9zXN`3;#goRse4WbM%`=?m6f8Fk3cK+Qb?O9H~5??^O0Jx5jE2;Uwcu5?ec$WZaJJ zPYa4gYi=vQ%G@=Uh?F4-;@{2(vXE$Lx0?Mlj(Itk)-IVUM&qHEBInFxd{jOJ zo>sf&XrHBDs^m=4spxKKzo{8i40X@#hwL}x7IQzTec}Iysg9_5`{{w8U=%I#uQE#I zHCb^8qoB2>!dNI{4#UN}&e=$3s{Pu>e>7shIy#^Od@3D#TH^Ap{&oNA}B2$jC>YBB!(>mFF{%W8(H^;j?eePfQHb*4; zz`@t{-4$ulYKJxRy_XiXz8-QG8(}qmMp^o?IB^LyNpDhwpLZo;^!j61>j&3M5DzZ6 zjdc*}U%{62;{6TDLBstpoI+4p{AmFzAxKTU0Q=#Fivnrm+1_!ddhoBc;A(`Sc;5L% z(1V^yRi9A@Ydl*$ms5`6`KP6Fy24COoa~+*LZ&gpyIbt+Qg!+sXOi(!+lzefr-tcs zz4HAvH-_@v`)6#^!_k^)L)q?j`5%QskLO;lftk;&|HfhVI%Jfl+BAn zy8yUD7&=iq<=284%#Ckqw|Y=YYX>D8AB=xg&%5cnOY3vo2b?Fjm#hL?8aKL z7%*B_f`}rb3{*3Azydn zIDF)pE#trEWeg2Ye)&m#Uz*ST4tBkNSeC*bMJ_+hHBD3MH#63WJ*+)_@HAUfGZiPi zWxiTOWifVxC7Wcu8^aHkY@K!YyrVAFausfk978v#q`YzdyYt!E6ofz5CRn>){Hrpv zevG~LSgdLfCRL`WU`OdIiP}+LzB1nJ%vz^S}92 zp{+%zIZvtbrumR%;uR5U-0VlpMog3!%C%r2rF(f2Og&E`g-*TX@3qS8rNklrxoa6P zMU^$OY#zZ6Rz(e?vP+?6A>AR3MGqpXYMm75G;8+FQu-_pza*qycqo2@oXpCz(#~b~ zA>LQHy+MIuJ(11Q1eob4w{uM#l9&sVNvC^-~cmmxcGs4UN2(WJwlYaTmOV$aE z%cX*j=2#6w#+IpBW8;qQA55{Z^c{-&xq(hQLf!+LiBYr*P&!LRbnp~~()?k4C!`Y^ zOE>h;>;b@Yo8!Pfocb$w&O9P9>-eV#-|d^y|Fw#!SmXszMFn7%t}{M$SRWKCA1++8 znx{U`{Tw`)lwOG{(?~Sv&?v>SxOeRKVLD4+$L=U%uuuxLyfvE8P_TH@@NuS42bZ2f z&6J^04|I_bhB)HWAQRu;025p`k3H!0=q#OnuYL+pInVwG?9SNOE0DtrDenAxttKZA z&sNg@es=?jUm>JLD$E3x=woQV&l6*mN^2=pxRLZg!s`u!L^z3aK)LB>y9J9bOASni#pL^v#DEa5v|M zq-Yj;ZsgE&vpu&X0UB(V0y~i%?Z5W#^9a?uxaPN%EUsG1UHrBY-F{jb^SGZG6AO*j z`)yVb^im2h6`QlqXqB@+%5J;1N7jBGW@D+DF8k=Qm#G+8$m}MQz{yf#HBwC*BB3!w zr3T+ZG$mFm5Tm9~jh0ko zsg|y?2E(%|TDfwjNXc3fSjo7xcxLbj9l;*~DsE7>nlx7;_Y%qreCa6e-|2N3%!EfE zo`_j-<$_B7EH*=STyt!*Gc&XQRXA2iE1moM23SAD_^_P7LYgvKqW^uhT%6e07#F0x z=K{p7u*|uz)=7@-%?9^@I%BN7VR78Le;R^wkFPNPLOY^HF;z~t-U_^xuT~P8_9rft z6cj5FfcwGTNY|i@o_@blhP}zm7#tKS*H9C$t8}B&WOP$0*F?Gp#%MMio`#QNDTj?E zH%8P`_|AU_;c=T)U~?w(M2%jL5jzjS$tW{!L=SmZ=C6N1sajLjd#6aIV;pBZP9d(a zCnQRQZFo&z+f?SNM?>^|OAIa%TJ}4a3y?^P*IdgJV5_+r}x>FW3 zdMz{q@^akv@(QL8dh7U=)tbZu>bho- zwPL<}w{ zm0Q2{x4Mng`Fiz-PY_>^FTh#gFI78ub_{Cx>mB@yV3#zB1X6jv#hBVi+ibCXz`+^} zmJ}@2@k%+QZ28LFT6u%BbFW@45rhfq7{OHhPm5%0O=7sTPpvL>z)XBoqd<>2R-PXO z!mAuJAIDVRfLw*nPRu#gT;^l#ZUy9P&-X_}fgr;-mg8}Pq~??5PT2n4jNp;y^9Vg- zP4~PD%x<9xVH3HZdnA+s%~Ww`mj zsN#jI%&b(sxfJiXN9oL4JA@Zfw2(%=3ec9^xBUgCu52ae$0d-x0>2V7F8goezIo+8 z-`lH7-vyoK4Yl_qwu=FN{+MyK%7?`Ps^H&o>8HSB-5I?$CA&e5DDGRXqrCOkm5MIh z`VfkXmEj&>tZjfA5(Nn>UdXnJL?ZVff1zzghGflUj0IrDPXN6x4l;sp9wH`!f#XT4V`-6Hvoe& zg6Yc=TYU*qptowiu8(E`NKo|oZs*)7&+oPk5Lo-cfDe-5)=0SD9Z9B0$|LjIO#}=j zbZj{>+WD-)Tl?=9gN-?e&wC{W<{vNFhe-buSOO5CZ-BH0nR1TVAX}*fIUN?3B5PS3 zl`G)_YPi6CQC6W$DGQ-G7)M0_4%BF&Uf%r@DI^_+MTkxxjC+l0(hTWxRPg~qs>2Qv z6{&aA1@B0m`_H%f4g~oS0?IQ>iB@CN0aq~z2xky*Z$4aVkTM<^6h7KRZvrZ#T;W2@ zW4Y(C5Cz6R*KOua@NQ(+Z8BOBmDo>z2O^NGO8`slN~vf5TYY(`duhL(RR~8Tg3&Ih zZ`R3VM@US$1vsoXFuda3&7^^tpa{ z*#EH1XEjMmIGm-k(U$-rCqR=P8Zs@$+c%z@(1&Wvn4CfRt`neU!$H=&{mY}!RXtdJ zXU-uU1D52wH$cULeBX~0WCy$YNkSry#AnxpsDV_A94Iu*6YnZKm=z*xY*S_qOx9! zc!0(sz{xwvTb==4x9|H7>{KA4=RF9{cW4-R#fG)`iXB@p^c9xfgc$9DW+hbUW!t}J zV8-HgccRgrgVzKN-`-L(c)jk&_98|>SljM`sR4R3+>vJ0H>#>+kcaId0z*J+`@ zybhItA`uNTJL@<(8Yx# z4;vmRBmZd)4J*}6McNv#V=qlVm?yPui82ux9WHiEO#UCRUt%O+NdyXayO|@9T=P`I zK&angduv<_AAo0BG9-l+Y!^>nkkjYkAPQDaI6?BPL|lW2c1~9?uIA*<`HGE z)jTx3`vw%fG zuVxGzr8xtX%So1Qc{vO^t=hGy=q4=d*la`i5>od5$pb+jr;?R_)Z6XXH0|G&9 zZ7PC6AnD@#(%PbAkkxVE@duoQ4h57C;FBtcq%1+a2=w(_gn{Xgp-F4*E3s>7e~rVM zCIwJ+dgIzA1&#tQhM^dXNbBHP*hC(Np^Oozp*ru<>~sDaAAnLNulGtnYrk!y@Oq0< z#7D)Ih!fO%><%Y#h0jCR?v4ZD($^IS!OaOk^uZx6UW~lA6<^#k+W)UAY8k^_2 z@z{oWvXcL8Q{DyCIRY9|C%F%}Nw8o^wqVV#{4aM$0%K9%ey`{9ltEuvy{)t#>#{)( z{#%|xMnO_Pv|>Wo0v`FuBZv>Y#fpJcYaEmV@@iNaLCp5x!#x>jb|nf#$(HNbBpcw6 z=;tw3{laE87y}5|+|xTqXc}V;Z06g_@rgS5tZVGMSi5E<`nwayfULYt%<>gXA{+^$ zw>|f$*&&{P@*gm{qO83CfQuhm3wi}q(CZMNppucttM>1Q*3ZKIq{cKr5N_7i&eP~2 z34h}Td8r^&UUx0%5FQ%oP6*>6RxTn{)<8t`1P_qBHMfDVlxG*FuSGeXlpx_$(t(HG zsFCHw_CT~*FrExiKr(__i+m*-rZ-mWF~n5I^Unj6Bae%$#rC@AbHH=#<=D=bY@<76 zs#D}O89EElry|mww5@wF>_hf!aGn559967|qM0-g^wi`Vki4T=u2`i*VAOwvkf3Sl zrpdEm&L%6dpA%dGV;4`vIoRDl$gRvqfMlkiDd7nudtRR&0C{3lrGShQAX`=U!`r%> zP7$Hom6sLq*VB$spt$wzyH+=MwXtwE`|y(DuNN&aDs%oO;1-V=k+TN;3cleN)(_vD zfLw$r)=plDKl2lqYwL9vY&?^SManvO7IzRu@1Un6a-IOk9J(?kbTtlMXv2St#q{;) zNbiskEuqL@RUab{d4S+*HsUyN9x!rvbN)aT_yEM!sP=QHIGzASv#$4CNp7m`@e#`R;v>?ZWvdS@r8r3`e>~WF^RcrBwUmsZ}I(g_{3n*|p(?g_G zWz9eZW^=sQ(4NyA3wnsuJ!Suj^XS`KyJ0hAUmzrDzXUy!uWUS>dIU3VW;eM3^%tIL zxq4VXIM$op<-$K;EQrFzOlK~^q0mq0T^_mi^retP>v_N9~q72Eu;{7DGmDup>dnY+1b$6`HIw z$S2$X0A7PpXX>u)gb?x27g;JOQH;pzLlSY#>A* z%nmiv9A21z0=g~V2zj0#l;tT~-pU(eo=ZBXajA>=yuq)ibq7I_D$Af1dwK27EQUH6 zuGjnsE=;_MT}lM#rd)Xqp{<2lplAlK9)Pc+K z$7|4ErW8T}iqRT_fO7cF{@%~LXD;9AB3c8PAXm7jBUv-aGy9!L&evgRL@uC+E6HRe ziH6u*ZWahV&vN+e|0)|XWFWqB+N2Y?K(6N%3YrA@TT%thAt+>(v;3e<-J~xJx*KZh zLJ5utO0WG4)Hj6t^O%mRawy{a);h|OZ&#G%9@0Tx;Z#=pkfx*Bpdh$3gx(q3-7-W( zbmIQH^IO0meg4yI3tqvHuV`c7EpZ|*L?!e=o|@pJqa!D}q<;*A#eg~;b(akmMZ-@N z4e=_9-q`H#hC}rwwodCESGI@g zHuHyXDqXw+QFAewXrqh@dt?cYxZ`mrF@LoRV%u6*E{4893847SvF;cNkC!KumgZ&n zWOe&4-`{Gj2i>je+sV)C35|y9_OblTc1|p|b@rnS<@A1+ayQ#9v(Oo%LKplEZl1XY z-KVAxOjl6MX}=k*)QT{=)qhAofs(91pNmW#M#pS_GFbPIS9CdXX*}PG(}ojiY zj>?&)ajn80vagMxVtDK49r9)5>kV#^ZlXqTJuIzB0+Z5XfKpcomogRSh`zB5S@VP5 z(2mXSU{|@pJs@LHUYY@?5YHxTPf8leCEIy>=e%8+toR=HZRhnY=&-KXA^&Bx(-A2t zj-@Suty_9&wKTx_WLhs<^4I0Pc0#*y67`N~)aoNimhI$QA~NFdR+;-8uTl1r%!^rs zrj6o$tq)??#ubn%2njlLZr&1>Jc|B)DKY3@H-TsSkH86h`Nhh5(zA@AjBXXL^B9p6 z42a3MPD`&cmTSJsQpJt>y#RFpBQp+Lf1euZyT3gCdi2SMIJna~o|&<>9}=P$X1nQr zU0pZX^PjGzlqO|iJkiTnq4z}os}QC^n;vTp{Rx+-$Qr7E`lp;=+sJDV-~H-a1$Nd= zD_N`Cr~Xfm4eEBi)hP(BM3w@lA$Mu%vs04W%7>HPFJFAjucLU* z;j&gcamkkGUXc(?CB;d9XLM@#cO?=F%Qk;jQO-;x4MB+ps(f?4m;-bpJ=s*%@Yu|i z&kjB@+pExB3G%sd9oFUgaeRP(jPx+mIgep7VDTEQABXD*LKB#KzisoQ!(~WM&$#-q zH0S6B zFeVU%!INqPKi~u+u6m z{Gm1lGq^EL>P4}kqyga)Hz(BnD|?u?-dR3YQEWh=*^sHU;XuWYCzzprv&!I<`LBT+ z@*%#PxZ-cAq+DzE7sKFQ=@}STN~-d=>h+u}1-y$iG#~Psclwwpy7@um=yW!$f3MU# zi!wkGlaD#oeYCvV_~rjO#tKcUzk6AY6=yz}27k*TifZ7phm<-KR9_@g9*=}pOWz

      afUa2H2qo5QtCKn^#7<@u`Z*Ov6^o^1ySG_2GihJhI2QXJp( zBPIH+MTxz*g>#X82hMiJU$^c|wE?xiE1yl-BNStQS?A{!TPv)PpS7L7O~thnO%avn zy9vl;`Zv7Mk05{YnZ~e9jeMUnf6jl)f?VaHs=23bFEa4M)Rud;U-61plUKTuvTnKy z+5}N)WXCXbm3`wAjj*%xn}iRHp<)ycy+XS1R-Zp2?Hh_D+R8^CwO2xA2IWY|%gLXW zPfW#Pl6hQb@TFlT6LqL*;+DlE{v2!6!*b;5k%48v z9g$T-*LjN`wjs}^bR)^kHYS1b?uGe(TnYbBHEZ*`~YO)3hZ(=3PLzt0tNsSU@P`@3b$lN)3sX7^_<81Coh{N-% z|8ie4UhcVEBAKA_=T9OlyQFZ%8_6kOIPDueC{bJ5n-|hi>~fN{h(XX#XPQl~yo~jb zA)cPM{!7OH??oxStlnA`%IsJg`pVpaM z3Js&jL#eD_2$01#ECPB86X=z5!-qkE2jQ+PoxIkZAlKT;4Lr zY0)#Y+u7OhhfFi+hTat#P%?~(gc$r)94w4foG^03DSSrh zsc0TFCL@iBFDh}GU?MiFzadYa!?@G&&E&vqY1F21^lAp1cwS}{|;E%a) zG9Me7(WS^-3D6M6%Y(vSWct(xU{$p;^Mj3Q>eK(eqDfGH)6%@iJTK62%v$3`u=kT& zXpT>GUM|XJAh{&UBu8E{?4R9vCDKH#202lrDRp1alf;GM;z#f6*4s^JOE2SLi1r8N zt8GwI*bC8NrJ&3bj=;%NE{}wThFIsEa&*5>qu!hPl346Kv*7W+32J%0-j&7v5h!H0 z5$en_hYm`UMM59e+5g8!93WKby5+(ht=pWw86;LR%dT!$cxqHp?THt9-!^Jsnmel} zr#}e@I|1iysSC;4CiS=|Cm02&6%h3zykUE7KgoB99W3z+C~G``Rp{zBh?aq%Y%jH6 z*S#SVcmVIn7Y~7-w|eR?$=paWyQ4>E?bi32f)3n_d-%SBz@-7nq4PNWI7)X8nMZOZ<|lI(kB*Ld++xx8NO>Yob+uQZFG(|GRiHgXIQd zMZ*P6y#^DOjV7_!ccYDi;)U0XYN-|z5iV4DIuM%a^@E{3?|5YVchwORRY8DRerIvz7PC=IfFm zD?gEdA(tf9)5t;uK>D2g|d_jU-#0nya zfDomFtFhnH@1oKhY)hFhI^GStl!o(dt6o#9%OFKggNmbtCraO1MiyP zMV{T6kG0ZMl>CN+M7g0EN)8G^pWYq_oECtg%)0LKo{_Obbu8vB?dAI%0XHD8EJ<~| zN;kSetIMoqj4o+UZT;j%QIb5X7P;q!rpZ`-a3Z<~7PI`;SK1w^nEaRj2|c!kksmEY zqW<)Eg7c#n*qP$8ija^k46bB_I=hhEXEe@<}{<81_giA9xbnr=Td5q&xp z?&AKPZMNvADS~^qFmtz{I6K%OccdVfs>DpAnWiQmJNz}5k#|=$bp)CRRtSoX_~Y>z z0M$S1;&($JRlVkqTdqPTy`KRZd)Bx0bwWkY)l< zKXL;0&=;^#B>e{a#%Fv6S5W(U^=B$i(1SImjK*d(g#iFxTfafmY>Vr`EFf&{7VAwQ zmVh46grXH>=qnXw?r`)?QWtEf8{I*$3^XcH2YkV@948!Aw?_-{GG2%p`O;izZ8ty= zTBZt7DNa~#{1En_zm5|;-82O#i-|r&7P=kN%2NXR&l6+%f&Jw#IJp@Q)(a4?2Hvl> zPgZmE)9y#}u@A}jU?-K&$pa=*GGXrz0Z%u;W)(MwVwSH%43qi1P0+RZ8xUJh5TYAc z5k&8LFu|Y0H?j-7X4&8ZiY?*WM8r#ZV+i_AKsQf{75W>qDub-s2e78z0e`EEzJDe% zFA)W#mVPRZgcrk44NKU9RE2Nx#-9BI@_czN{5yUxH(nU0=hNh-2_K_n+W2s+F&4Qt1F2c8?qLEe9WRi%=6LuN&JB z%ZW_T2z_O}(rUkUI?zPTxg7BUI`9c}_A0jF$1x~AvH8K`ccZD3GzVhDwoJHw2j|7W zeJPY5yE{-By`b06Q;gGil#j>4*+#8(98pUNuyUl=2C$m5PO!78yo(`AoO>d^-vY(H z1eT-yDoQ~z8g53F*rz~jCgFFXmU3P9`jbc}EvW>Bd9uBf@>WZY7YSM(ulX}N9{kD2 za$lghrH^=TVjVc-7Y~%Y9NfF&@^WoYEIiL{XX}2TT$v$@)S7`o-7*!#1u?lvx=~Nt zQqDG7CH*Qt)i&8>j`|M(n#vqEe&m`L7}V&s6z)SZ z(gl8EYxn?St{%xu>5yCFOp?K2-iD4s~JZJzHRfC2O9~5(uZQ(SonlJj4VnVl_=vFnci%$~oSD|~h#xHID;gO}ibvJtE3hlzD_!MM{Vw(bwbfKvOt3$zWnMZfTkKnb2}(W=YS6pQ`}$>)fk%_$)2o65oG^!`SyzT2IwW3 zsYl?iZb0lMm)Rg%J!q5{0cKqa{)DM-&O2(8LR-;UmgJ+ zfUd<4zQhcD^iPr;Dr^>GzH?f7RB!0Ca9~-$rR6gkZ>fWY=>X2U^D^aLPvd=xmdEL; z*Yo53^bSBT5y?EPHC@&LDGa%pQferAOK`#G!0VW+|4P^fJv^C39*VXCSlhU)XOn0Y zRH!t$pIfrkM}*ip&O+G3HX(${=Bpz!VeyZw8swQ$K`=>7!$1YYng?L;gx?AHyE3_K zB=+GlKqU)zN(Q`95IK=5>hNp25YH$yRSqxZTp^-aP|3mxKB82PLfe@_>3XGpbB5gD z0@rUCQUz!I(#sfI-Q8pv&=>@74YOUW1buDjPf~h{m*i{86BF4!{T^=@!V;2=(IPUN zQz=JgHyo19SL7dnC(eSJ{97qQ+m(;w0=VL;Iu~3T6v_(=X zv370wB9J7EYvTUJA`FmVa;EpyK}qzq>*X0uV)kc&Yj$|+M|f|jvG>5??BWRo_L>CT zfTMl~9AsZoPOgpVXW_A@|M+bDTL*~)+u{@pdj}Pu@LJ?Y>%ygf2VwyQ4;?s?9zSjU|5o{m{d)QDr);Uc z+~w1gruT9$7MWtpxXLMwS(0ht97fSzEZ4Y7r_W!@$ys+gUzIKg-_p2Ds!3xG}N>liCdc8`-3Kad=uCSXUw(>EZNhZI9UFuaB3mAkxab0}&1l zv&J5vI4J1-WzR@j6&W&~#0Db-MP~9PiIiMZPh9@Yao7~T)p3I?E|!xP$&(+D+BMO| zXoJx+YKp!f$?T(CvI#R%d-U`o)GUa&_+4Sojd_J6OJCsg_cYfjywUUaxM>RFzJ2ZZ z^zW|+w4dbf+_|25K+|*b%<%_|5Z#PgLLf+BFQ{Qpz>t2ya|U9WOEu%|qBw!5^w;(^ zxz(8Ag@;l#v;Tm_x7jT}_n{RA60TN8H0?MFX;#or`VIUPg5aNgZEuW;5O%yhAEZL}=3#UU2A(lA1v?CXS8q3EHT>~-Ircr?3HLihEMPz@2K!y>e60X~?gY4Y zNEbKm4eIGVUPG3G5WU}7nS(fm)_JP=HkmMe6BqIO!#REAKW0Qg58)rcE%znhK z^u}eF0wPuzrH?>fqauXt2;zvZ`=zE*lsMSpN0x6Krli>3vm+L~p+}vC3@l&%W%4>s zKK`)zRY{|e#--m?O4F%q1PB$n~NNI(~k{rjUKa&=W#l+*qfVV>9H3I)9 zK9d&Pn9phvIO1SBhdkX|2@L9`ggyM-a^Wiu>mf|WP^WA)oY=`Vf5gAo3%c%~YtVx2 zHN9-iYW#~h?OfWBIK*!MtDaVXK|TXH0=kvw_5-1 zcNwn{JolzHvDG0L!cNf-e zy?1k{-3aOLYgueX911g@-BV%JIUtXsk61w59HLdXNjPLt3=*E0+B_b6Vyc9pky}9K$lgD2OQsXsw8*%*Z+AVdbX}m&ez6;nl{4!5r6E^W zd1_-R^w#Ky@9*&p5EJ0B@wU?m3=rd2gu>!A6Yj?Y1>RzBrc{5tvTE1N3 zo6=3?`bKwV2gnti)cducng8c>H2YJ4jQ4!F6#=)5--?yin?jsAVw+N@i6D23=M9#r z;kA$IIwXWMf>;=_nS)ldfT`fBRk{$n$N4m#q2h}35_&S@Kk8HNs+29;MqlrBo8^mgfzLo@ zhKu-9mDQr~BAEkRuR&LU+punogV~L%gB(LoCj%zE(TMM>P<@u!Zz883V*>gTe}vR0 zwb{{Boe!N7*|VgvPA}}SGO7RQ;tI2f&@D*gORrH{L6MRQbjm#&-ui*M@gqeV5kCau z3zrwu2(&WNIlIL?p*2ghs#pQF$FFVYR2z|qmXcI%H48vMnUHDh_kU8T#(bJgzO{rtk z?3qe4uP-J1Z|jj51hqH0vw`;(6fiA%zxEO{z5^BzCJZq&CIg4!-jyL4C0Xz$C{v0m zZ~FqEMoSVE#nRz}q_Wh>!gnbMmC##C9;d#Q3*`Uee5KOQeE$dv``i|LbbDsW z3q)VDMJ`<$vxQybzvEXlidiSL>gbIw6_P9pep#cTXLk|T-Fl{X-FEL!>F94zWhiS| zY$tNSf5{za+5H*u>4f6Q6V+*k|B)+9z9Q__#zv=~-$vmrVf6I|x0 za9D*mb=}#PweK4cdVsgoA9%lqoAy1LfBg58&Q#GT&)BvwN+~MqJZ`IOHSQ;^iFbvG zN*0+@`NeBT{Hu8Bc()qEXX;yKr%_3+(%y?8r1f-{o2Y7Y&1QM$pUX+K!O#q}`IDJ3 z-w$xSu2bkDD%hm3S$lxZ^JM!pF?ZVPCYXmF$tFB=mMYYZ z?x7*Vf?k!W7p2U;8V{Fyd6wAWwey-<^2)ZyS>U6&-;|Hnq+p<_AN#+IU z(&#Y_r2L|q^&|8)4`(INlwiMp>oEK}KC8^w$TcAIvY={~be&N&tbJ13%&G`Od0_G- zYp5|EN)!95Y>i&fBDoF50H1ipc@;j{=WU!=yI+xbe)Nm0m|a;sifV?vbfjM+%9tPdN>xwjD2RxFJ*rSh40hMr;{ z;xKrVW?oM&V@IjZ;2hx{`|0Cp$}dr$Rx7oL-tXe#+R}39YJ||LN8M{&ZgMd64LDJg zWuSg0vwQI&d&n4KC`4j$5JlpX3ti+DV3zlC%1aR(L`D|9@_xpqn&1q6{xbXcg!jOr zhx$ujiiNp0X^1Mwcg6$yHuIDELFthG; zU)PyoH#QY95Yr@=9t&sX6O=u3*9wb-J$1e!!6uoNqrv#z#FTbPWc%bRVal0_!V(H* z&I|1=3o^^B7(J3L+`I-}nVX29pnNht*&>1?8@y6!!bJ%@E1zMbwxO< zx+y=yQ)@N0F>B>N-8Rgk22Uxy)yKkJa%D6u7JMSZ6U;lVoCJP6(LVKOCADiT+hWw- zP*tgDA>P!Edd_TI&1yUJ{88*+;f-zz102^jO8hW+P#j;&+Gxx1RX#@Fz{y&KTw9r(dKASo`_^ zymfE*tGOAXsdl6${O60W?6f-%HO&(0qKsBb*Y^cd{b%_*Pc{6WSro|nQAAnfg|9W` z|G6HN$ND?Bse`UX03`d*IA8rxS{u=^{gWL3C8nQ9*1T4v!@9Rz_Ec5nJ@|0`9WlYy zq5V1`ibtaOZmlc_{blVFjTH&ROE$WyIVe32Rmt6;Pi?LMB{?=5av>ZF|7InCM*zUX z%>SoPnGeGwW|m%Vy7#Nk;mThi1tEA^o8+OR6zp%Az0maOjNW@qT*ftP9_tfxFnT?D zK@mAx<-%uOA-j40*^hiQEJW|_)cvP=lQx-AFR6^Y=A_3w(wd&}i^(^#XjcHy(Dg#C zxrTpT@vy(vj30B6AH{$F>}Ss#w2GsnqE)cALf{8Bo6?zp%v^GqYb;CtB)b1sS|O`Y zK3_xGth2y=b-;c3tKn#~r?MIC&^|7K^HlTLkD-02&;5X_FvvwpaJ%IF<%eun4uzYr zA+XQ_nb7*HvXYKkke)m1a-|(? z6-k-m5j_mK@M`KHZR`^2_)gphp#N&Lot3Zj2Q5%;j}Tt_pB?R1`ro{_m1iDPK91NV zD|Wkr`LSUajECq>TmA%$^6HMSR_mzMF*RFA*c1R14iufzJ`a{KV2JPoN@G}AFZi-fK=q-9YcmjBH!Z#;uZhXHdu204N7)7z zE*!yKs-qxEWz(_`gn6_kPC%Xul36T!LlsGRUBdl}m9uVJf8Jxmy#qV`@)tXPuVVvO zZgjd?SQGn1pn*ylM-;KTewF0sttozSj0q}Lfsq@}DbEm;^ zb?M6)kjLlv-|o>ZgIoaZO1(=Uk;?%NBDxGtbCevg&z0|{Elnv>=KY?lHjdK+$zP03 z6tN_nA9|;Yl_bxBU7(#34T_?)lkka6-&gaev?oXQEBFPiMu1c;vi|dMK$*+zmm4bu zkOFOl-vKnk_v-LTzL+t9Xt%5k6jp&4YrF)&u43fJ_DD8VGU^D1D9(PsJ(3DA_cX-N zZ=xP8v{X~pFQq&tlBL}oK29XhDNOZpqRQ{Bwt5YZ_^#2Xz~F(*Ph6~R03-%kYSl%W zo0KG1Sq9nQ_e*X;{RwcXuDAO`m!Qop3mx0ytH%KfmaS-^FG!!XUC@G)X-~>zZR5+rfJahKT)7s9he*;h&!Y&)@IES%I!j zkh%DfA18GQ*P!7zjH4ng;&*z61CQ%ELWHoFC2PcyN>NaUxcIu?y za6=}IML2P<7|;ky6{k`xI4O+o^)5?n!TFG`U2W73_=_97q0%j|-!7M^JV!eM;>%8e zq=86^=apz2ZVDx(G9Ob$e!b*>{_c=7J969H9eD;;W9wL1I0m;2K&Hex58Ea1V3*L$ zCydzHMoBb8yfA9>24ZC9WgtP+-UN1_VDEbcZ9pmf21l-pQ8LmITr3PLgPD9}uBWgZ z1rN%P`8)AtoTSWZDjxwGF?O*xEqc9%NGZ!mImMja_d@=qa7vx-KZBdPhGq-c2i`p( z+k+MmiW^vm9Bu-}005a*f>0^1L8KS*%-%{1_YexOC;|1nR(Cxvc1^F!d&u>)wrFng z$sUn7HM$@|dA_@gCc9X?L%DWkn@ZiUoPYyasy=G)3@?Icqc;^g30z_{ z-GK11cBFKA9cpPnIz;GMqg3t7tiN|Wk@uevGXK90OLg{(b*o-K4OLd@5Z?!Js-6IE zWQYe)Hy)Z*WDd^ta1qTkI_UE|sL#UMMF8#fL^jq}jAj|oW*6XyD(^f{f>Q)uR^TxL zfd6W}^p1^=@If{2R6>_VrGAslyC`Dzu=e*BK-NnKE*eH~M6r<01`FauBJ+U|R3r?m z>xq`FA(DpGSmu)vjdsV?uY0JJMG1uIm<+!}y!SZi^@Kh4HCxh!4!GD)nZ5E!)Rh&B z?1TPUoa_xXZ*XqQLv-LoH>FV5iX?KKaV+h`o`yrxXr+X&LQ14O@-eKZB;^rICDn&E zDbpQNHg|8QR7KVo(yW4va4ty**bP1$xVG(nTMg(bDpV?Er-c3}Jb_)f??yNW3Reu( zGZTIm+BfYKnw~zeaobtx*Kj;5U`Ty96h}>AOx$t9n|;J3F1o|2zwI z9%|d7*5!xbivo<|x9;W)%<{KGUxk*;InN^aqqt4rjJ6n<9Mx%_zuseE`Kc<>XT)Kq z+)H0eP#ratPl%^lmvBdppKVxU(hdAYpu|+eEk2%K=5#qtK%2c=bC&qJ80xZ17ElVpnv;=D8*z3Mgi2&1d*=SO&|Ie@R*7LbRC_IyU+V zar2sttg>51GNds&ZBVv(PJTx%ONL=3j8#H^BBV@@(4`hVjn6_H zM?H!;LJ&i@AcWGsfd((9-AhsjKq8Eitqe&{ho89 zMZ-!PyP_()>@h=qG3XwPHqd0XhLREW{#oOeq&%H~-`8B*3aY1H_q!+D1f-PG%vqlD zJAQI1HPn9fVQgS*;o@iEej+48N4|`;D48rluV6TJCY5Cs|AtpuIcoYTcvn>B+z@Hn zL=~wExYZ7+9CcqF%)ePxX-U{WP}wlmg`_hHGhL+cT=OnZ$%%B2OJC{Kzf~G`;V1eN zMT)|=+vHZil!0#b7*+D{xQNiwH?K6F-{-nYcn2l{!bb-=vt}Ym{V6|q70Z5)dn>}q zQ-Et5L7M4S%|Q5J!92302B9%(e#S$BWyEOWKR;-C{%|rpzFSkHd>UOmv;Vf)YW==$ ziOnc0=rxW5HIkwSv*F3cHeFD^rz~Zr&KNr%<+b@dDSAq*4`H4fA)mUtcrI-B+U8;H z8{Q~v_1R0`rz79Agw3*`h{6J3=yd2~-YkdQI~8gAOe^sV19yc=X*`NW-o{rOhPIcL>2_J-bGIH3cfeQH>CgtD%x6k4mmuQbG_Tv3WksBSv zvMRy|FZ8&icSmdUZ{UW2G6av$_MJFxn+dl+ga}LZ) z0U0>vF1M!Ab(#KfO`eU_xNs`*e~;_noOFs-qrBmEDpeyM#F0TU^ot2~$j|{8uoi*H z&TQCi$*jx_5{H$%dOQs`M?!W;Q8=dv6=Q}w(nmnJ64i16ImoZEtXBnE>Jr3tEG>Co0j*gLpmb9=2K|SrkAQY9A$$M#s;IV+ zKnrmMh>;lYVHUmP)mAs9^P7krd*GRC*!}zSQ6vlSgY)Vegl`Ncfd<8hf0ubi!ps)t zdeh)d9d z@_Sn+;5bbip>J$gff?PIHN~o7JcB>37idmdcr8q(@ceIiht#i%) z=HGXKZJB$d%PeM9AWf7Z-xH3incmr?ld=Jp3MDCR$ z7xhSmn??N>skY{(OLB_@G5Nr$Cn;_>R{_7UhED6ky)O8(?+G!a1*DXL6(ROz!a&*q z@5JdO;A;CY?HpE{V9S;W*uvF0wX;0|OvkctCfqNG{4@5MUMRD^92`$7T_KxfPxB3bpnm{tj zS`D9w2;!*$+gl=1jG9eL?*)_iSbqNmFZUx)e&*@Sy!McWDt%?6>|nTd!P7X2C@5Uw zImJDi*G;me_?Uq;k>}wl`)qwhX+6rXWZjk{)i8L-hb^|gJUK@b>gU~RR@pwqSNy3b zU@_v8gdmb)QwlAtiQh>V&Des6?A=-rsx@A)gXE6gF0f0A?iD6A0!3?zPYT|(XfBbCwdnIA1eK~XJo0@=|&jD)EGw{OB@LE5By2XIQU(5hJDofu@-V&%~ zzO}Lr;V)j`&AasYUh~i1YEfQ1+{I`6ofXIoxw{f|?E#JKXy|qpSraz0ggdX17O(h6 z0GO|lrtE)%rsy}ptwG^FA#VNUuT_vZVf8OwJAx z&{A*Gjo^+(1QY+3`hq)Ms1A_c1?Z#ikD-X%z;GD{^co0_@a`(WW}SyURjeUq*MM$2 zWvQ9^cjlRnbWtK-Y6Gx4=DU4v@mUSD9}0TdV1tv0N)j;;1^@R1UWh#&Px#xZXY%4| zrCCPP3CT}LURo&M!_>;-NG&?mdQ7JP9{`m!1F=PoKnqR9AD@k6fvhy-(bdAz!h?Du z!**A$lxo^j0*mn%u^%x`cLT?&%BVeE8?lIk1AWqUP(w3Sktd_T^npt*L{a9$ebpcD z>&$r~Sv+L5@ni?@Yap9_9mcSS-OnwIFh99ZFlrQc9zrYyox3ZWT*Z5 zyMPX1Y;&uH+AV79z~Xg^e(3)KxB9$V#Ut?~;i@Kl#X=KRiKywXLzR3LEvSg<3*9#8 zKO1~A7}vTNOu>=lJZ9>co~bFuVt&()-(sN!upyrrtnrc1N{v zRk~z~)h@xTQIgq%RSs*yadY=^yCg9h5d2k!cOtv42B{oCVV8%~0T2WZnPI*bHHY(; zAks7dbhU&U${{BAnoS!ZGq{;}04UoJNo?QwqaPB7$hP$>UukOeoZF6fMl8dCdbnuapy9K;SaX`vN@^fl&QSgc* zPDe77;{&+KsGZOki=jj?av&-%J#pZblGpcJo#2A@#X*8%_1HE1<-gk*J!eqKRz%=m z`O3-bT2l|O)BrHSpK4YxOuv8v^d6iKA#6nYA0Ps8-TZkO>bTh>3Km^JN5%xZ)UQNg z{>@T?+mZqEB#75nuiw}m{mZh=BHjSYC2?X7c57Yu!{8f3qxt{{5Ie}*$EnG!;!oG# z%VSytZn!=SulNBc`2-!=oWK5%0lqjkU=W_Cpf0OY5c^l|{sd}ffoz|rTk~OdUHbal zfB+d2I#=|C^mDHqAEcm6IV0!tsjv4=zkU7R^VjXoN1nc(@02WZX)h-U9dwk>(=`&` zonLzaW%Y6Hd8#5nEw4GPj)O&EV0f}=-VKMW#_j%Wx%u$4J^eDs4hLB@rs)|1E;PEF zAFFli!${k}q6tpaCVSE~xF>yZ+iVu==mm(G(7d`eM>wwSsx8$AJuD+8<&zz23r3?^81__;t8O z@XzX%QxF!L6-rTS;z)^0pRvv3(xT^O@BWnjG4MQKrQg=Hm}(c}K`O{yw&trK*oV^f z@~MHw!iWC6G#H_qu&i5l#`I!$^7xLf{neW9W^yUO5+7EH`Vw;8o*<}y5fHX(~kdz*J)i2T-i(u*lGmgxKT3%&OspCJAQ z&XwbPblLg@^*l9$Nh5C6KdU z94+%(vO8`8)(b+#o$j}t@<#o6`q~2)k4)I{02S%DdKygO4*#(q%!fHA`|F>xf`)Ua zq;TXq!AuFv8(%U^*7BXg+2a3MUWTeN*nitiHwiBp| zl1D$ToOab|QW4J*e#l5ogks%GHIO+H%?r23_UySheoaITbwMRd>L@WboIG#ikoHbW zb~M*G_p_BvjXS!$Xc~rom20V0F4sFfaT@N@AJxgZ?rxG^a`mt@_dP}wQhO$UWe}#E z#>6CaL=dO!J;AK3L+)?ruqy_X%fq(QI(3l+FI-L*16FUX-FTGI<6o35RnFw?iZV*Q zGpCQMhkj#zf$iAp(3SLi<>UF;PBGp%##C>DZRK45pIQ%v&o4rYR<+a5%xA!*EkCSm zPx>PKO@{n2|5WkoxT|-=Dt_;lvSdS;2uriS!09`1=gAv{vjiuLM_g`+R7Pyh;+YTn z8Cd<9X)9WAhUY@*G+($o3eA7TeEGQDf4c3X{Y7BPT{j-xze@<7*ikd;cklyY9+WRF zoLBu#(RzyA_iwT?<_cx@^8d@3!!U=lH@csrc)g}De@<%U*yhh1<-O3&Y;Iw0@b28@ z)R%EpDb~=jpCq{3U~XD|zZmFUIuM4Y$GnNUvmGd7i%*^HQRPTq8JAcG&5Rr>%6{fz z%g0b~UcF3Jnc~)76tetm+S`|ArJg{T3H`?p>ifgR`X0nayXl(9g9mM@XAjL|9eMB{ z!+I%R4XQ)PUx`+HH$a5yte&B9X!lUW8I;o`omLE7yZ{PC znqeN#5Q#!O0GfTWoUNgIf4{F_y~BL@-aArj-Ec+aDAyTDoB#UFQEUdqRInzPr@)OvUQedI~+MDw4Vvaw(vRx|%x z`~B~A_a8)Hm`0drvgq2Rh>Dyqwo08DiK=QNGnc}&&U;mLCncufm*zIDqprJR1@pj+ ziRdXb@0MWxZ+;rt0N>Ua^?S&+tm9*L>l@cwFX)$ma>9phq)0+5uz57)D|isK{}=rGTA2n(xlP*S*DCdfbG6o3s;MowG}|*y zOL<$A`y~RwyyDm6XIaK3!kBr+Hrv)EN-DMsnK75a($u_VM5cx+XT8Np!XY}kx#>*_ zb%zz_8G-hh93?X!o(*5w0?6gJEMoS^d9AIMAv|^ZuLX*sCOpuZf!vN6cK+iKC-vX< zgPt6Gg+#5dD$?;ykP<#-Pbrf${<-zV-amJsA?zs8!)|w~D`Si3`>jBGuhn@Lqq@!D zW?h(k%Vx{<4>x*4q`Lj~wM*UK^iG@fL>fmELtzcA_ax;x!6UdNsw)zoTpQw{Wblm~ zV#v5*&G6ODRq1sUULyFdDjJjm?A!fSXxmSF$-^{q2*oMjYQ@JaZz22F!^$=xOf-6y zJZu{fJzv@rjUjW-`QH)p1$-lB;@N92sygRChe2SfxbSTa;o(R>zAaPh4=5VS^_(N> z-BZ^oYs84J1Frl0-N^$<`Fg#vF5m2Of2G>5f2~@vzkPe(@%sL;N$#K5Y*PlLytuwB z<1|>?AiEr*X>MXjbhXsdnvhSP_xY>eP=~D+p0HiEtFZxOV)Z{gaP5#Pzkpg+nhrE^ zX(^uw6(&ErK((hN;UR=#cbA3>B3&rKL&2RF-Gzm=%3 z`%&NL5w9X3Ej<&$fHP0N93>^Uk3EmkMxEZS92K@~&PyK8dX#jp-JVAcsx@ilJ$zhI z=i+!4fGJD0ogl%vGe!0-#Vwi`$!a|ePseecv90A2vh24maMIa0Q(70J5Cb_-|Lm#W zF#`nm0rK==%%flVej(%jK#kZ`XY)MmBWB4R<-qZ$_B*xolj<^b^W z12BuSRmu0)=fz{PMD672mTmn0ciy8^K?Sf9mj+%PWeF3H|e?b9Rv*e4~}AEv6f z?1j#pLZbDu{sPv@051#Rlc|As4#Q*YWZg1N@FE(>(f4J>ZEzmILC4%lVcmn9yqs6w zi2TqS73iqjq1&J{nmaH&mBr}yQ}6R!+1O*vo#cpXuj11I~mK=HmNjE@(+8B&pAR?>ZAGoGWBz_`h3H1=8Y z^N-hgO)Ht$x)jiuO1xOds`hwRGmcLQYAt*MiF&dNmhQ#)qOzhwm*6vmWf0-%G7-K$ z>bt4Ha6(dAoG(srkS$I=ecY#_Ic%(HrV;szj9PL* zM0&#}{=@xWYq6e{UgjDLd@5D5B>zmNHCOcFsL-!P)iTOEMgK+2w*^d2tPs_~4@S-2 z04qq?1Bn5909D+*gH;GF*8c*IETsNcU?C7rzZ-tjLGv8opB8dMJCK)DmoRw<=l~k( z1O92y9^f9h0#LDXI^q4&f-zue0o7D;gT&5e#`! z#nu9#rU1C7h}ex-u@y;61AV-4p?_Sqo5pzK5N)o0ymQ+5n+4R{Ag~I5+Ytb>z%_UV zLOYr*zHdSC_u$>Aaet?;7=FqDo0wBk3o6ad5mcLXwOL#l-keu-8}eBhn{T}Ftc(XX6-2r;;V zE%+=2`Gc#ib-#|i=-h?=&s*&>BhQCz;|F9<_#_hF%l+94%%?EB#7Y)fa*Yf?8eRe{ zF7F2LPKt{M1}RQuMm$yRS9--gRmDv}2(p(iZC-yS6J%9z-vf9&Jngo> zS9xt7=^$44N~aj}9&GRw7xl#nx#yi*IqSb!V0Y;MJm6W$?8Iev%k3V+kL5Dkw6yjU zVMieMivd3;3goZtgXk>@+h96zW=b)yy{S-Y5uj+?qVmiAA+*HIk{o|n_Ov?&l;?eC zOu?g7NfY?J34xjo!@;x?2TNbdy(NoQ07RA!X{V1zL4uw7a;;?ml4=zB?oSq=s%M}; zB`p1vb3|Zlne4_RDAAL`=5via2Od{MX5iqYyFrw|bphOhay)!IA~_O$7fu+Foh~9g z2sDOe=umubciEKLnF99bBt5QIHR$!9NGb(Kdj}X!NwQGl#j#f82q6Wi&H{+=_6S2I zkY65UQd{7TC-^v{F;+`ibpYZ}HvmO+u?U|zfunifBYG$KthY5bod+pu#1E+r&nCFk z^c64e4akO7L)7`;aW>!%`Wq8&h6mRSW?ncc3ysdd@T8Q5LrSjYdDen{i7Xlm7*qHf#7*mCwYpJWPk}mdqFOGFbWm|1w8qT z16h9wfECy4#msw|ycPd8)uB3I1DN1l7d+}Sz&!DA(^5AD(q~hFtKlkVt1VIyiCGjR zVax{Z``F`P1$KeLOiGttJXM5jwF~a52((f-2XNGJuBB89Ntdm(AUQzDl-9jC5{)?= z;ckYjQ15+^a<1}tq0;VqS!Xpd1G@N3J|um30?ec(pFTka4K1YtX-s6iF>`^UlerM~ z+eLqOMy2##1EeM_xe%lqmC|dUvDHqK<6RCY9j~R z92~4n)*@*GHsNo{6;&ra7xed-bzx_wxcuQ#J_ikEod~QwO=ffR%ZE0;j1!xBzDXE})*lKgk8Ah;l;q_xHa8a7GG> zfrXjUO=Ad`(`B|TK|MSVuNNFvAnb_A79Whzq{wvwFP6Iem*EGK#hUbVxv@Tb#Pz=f(NBD9&lju&5k`d2<7r_hCp05YZ}-|DfP;*&>rt z8plL}Z7bC^eV3@I7hA%9}{f1rgIBuk#kp2@#(?6}zh4oK^uiUh=p^S)mCf+=&~ z1#i&fS_nyoe8@%Q47n00UUq zT87AbLAf2!Tb$4YINq1ksOls`QJKwu=G+S5}1|~s1L(- zkt}E;q%pvwxq(*$kJS}#d^7x}xmcz5MYAP{%b21P%-6qGaZ)`4FR~RtK8?Hw=IbuP zj)%CiLV33SP4EqilE}zWQSP`n4+4;T4_@;lQVBjY&H^knwwyx?XD1hc!Lay@&RF5)3UdjHJ|`0GOU3H%maZxdDSt&xuSdQ~*pQ{qI5i zhD|^}sTD~$qgE@dxo$@{a0Tdq!7Dxl3^2l4>9rg*p%2-@?>Ybr8)z}E;z66wGXA-H zpGu#%wBk2d9s3k=55SuEO_8Jy^b;1M6RWvRh@%2qDCUMaTJduyEPNCNaSD(RkAQ;M zNs+Mr!|z;)v51C1P}dGZ8ak%yTf2`CDuV0Q0DW0bX>4YNRXJN#Od z#g1r4W}dyCx+;YH7&vu-wf+JqVcMyw-T!EM`-Y|7xFa zYG#dz0&lD0M5zJL3ycC~AgzFw_a8qsFz!1T*lOy2{@RdKrm=^Ge_Qzwep?I)%X6%Os#BtTncID5hc~tu5b~@E{+sV?nbxh+ zE}|nN%1|Byg4+JLox*r;cMK1%P@!27&4Agkc+f`qHAh5Yj`KnSTlzlo7H;2ZGHNcg zu6vp(Av;KL?1Q{a5F7UB8{Z`FB{V(>g)1BEsMi`~5H&6cP9R|#3D`!eT%Pl$8jj(qmy6*Hb{V|KsdBioK#B@u*h=P6!UqQ0QzdaX{PBcn+7zBZ<4 zsO)7!UQEOK*1@+>448wz81t0-K2{6$T4(fC1xK~1_`X2j_7bxyy?`w5-EJP8>z zEA!L1AYb)_!Ttvi(wz-(30QM_?VUP4$v1n!+$!On<*IqUmcqe1HMh%a|6WX7*ji*P z4T<7*I`fGzA;R${4Mw2@4X#&6vm&87*4)QY_lDOmJ1tteFJcl+C<}|?7G#Vc08w9PGK!qN$jqt^+BdhB9B8F4 z)F}MpGG;+HclJqVQa^uGK*ZBa+)99-*Y$$&cbG7!8@hh^in&$G;l;8!c@#?fTkdNv zknQpYh+LFsMj5Nw;8~Bt-+plRA>0)-h#Ah>vkPTmx<4tARzGV5yZ!%7sg?LzpTsdV z^1f=)r$k;vK;_PllHn0Ao(FZ%8dFlB=xN|Ci*SAO{{GB|o}SG*qF|O}DM0U~J;w;{ z#?t&fZwVedZxwVRFLYUf3hB}i8VF^sb{e+k79>#FuREH6uh$rZT+b^_>mRgba^+9I zE6s#DAdI6iP8E~Q$PhLP^QGbr*3NubQd}vzRCYmrIVw*GrdRFH;0F`CAYPRDefX<8e!q@#5k zLb^W1?*|e7i-Wp-8Rdu4&}%~eUxztdi$6bzyc*RaxdK=OhY|kn~Eg>v0{n9eROX)&cP#*)g7MPWi3>jI4{m|MB`?F%L5J(5zSNBH)QLIG#{nci~w zC)sS2i>Lt>2{N5}$Pt9*=BW8egfBuce))VYkPCK@@OW15j1!P)epn)Lkij=fki+-h zN!`o#@zj2pL%^t2y|za|E1;AHIIenjsR=57%$`tfKTqe}GN*b2IW8;1$|})w`DtJ# z=sIql2EDEgaD@K%lD-`jNN|BYPTF#el#VW{s^$szYyy_dF~)pFJa`-*?6ej3_j7Ka(hz>ko3b$_-FoyIO}l*^&r%Ci%|Xr>>RIQ=?hQGfE=Uf1e@KKMvi(A^8%{Ld z6^hFXOwzFC2GmL`VVO92+NiT;;Sz+r78>S9bcBi9JsS@l30M9(enQ3_`0wWD0>hoe z%riYnOX-R0u|+nP5LVGX*E8e#p&G83FQ38$gqyhhMy89|1;ib?F4G16Vu+CW5)UO_4BoWwE}Y)h5K!dMvMQ1ymD#D!vEWMH zOb?oR!o4gik@P+mV3+dTHO=R6hZ06hu9FDzNNk_l4F_s>;qFRz5{i7mBfRn!I6yLA zk(1K-W|*z6{*J{@M&7}QL*vo?PxKf&Ge)m-G?%qc>6n>#3!j0yPhCZt-Cn^~bg4n7 z|NG&utUlOK_)n~3{39a4m;%pAM|fwgr;pZIF+UJA^J|f?+dnB3QhWh4%*>mwWAOX# z@?KpoE*NU3hX{KUUT(a2QlNCB5OQ<-J+M_ztZqV7w$ACx03VCTWtdH!Oi_alr}DT0 z`5?!;lhFJIg3I}Czn;4(Sw8y(+>GwbI9D!)atFz^5srEH_7CHeKic;p(>{CZ7oW=t zJJ-G2|9QhsRjC#s`&h6_^-cqk+S8;!Zw%7PT^x)a5I)OX&LbH>IE-s)7a^TxrY<6; zm^Ku2`*1xVT0AmE6s_e}Br-s@4K4N}3kZ`?|8w$aNEkQ)q?q4>&ytaOE)KqNg9K|; zmA>7q=Q|xV2maxW4zPS2o&BU}-kZ!wK`{BixN0(1j*HC7+BNu9CS@;e6q1yRH3{ zS6Ms9tOGU&fr%Au`I||{0|Rx&T$SMg%%ez^`$fO~li6~z+z`nbbhgD=jGZ`C4U{wd z6)jKXszZ;l9QlCZSQ`M0nccK(hxF=vK3Mwl?S=GQWOiw!ZqfEip7^m>oOZ>~Vzmbj z3RBS(2)@;5I$?ii(d$az-vS%I#NRQgd zaUBlWT#F3EWp6t{cnpD>g$l^_)SQ$n5fbr6#%6^eHhaCh*cE5Abf?X#)o{nDGmn2Nd4%xEqiLlVdMXe;E>{XZ_P;8Bmq0K4NZ~?zJ z;cKh}o;M>VcIapSOD(2;t#_{1p}byi*{F@!?P%880GWc1kxees+>>R%PONIdDB zMI0bvJK}hcikIMvUkMShe5Ugd1ot?j(vLsg?{Vt2e%2=+`q5Qt+ZQw#d}h_%cr9M~ zLIY)Xou(o5-*?U;7-r15i-ejrb-lpqkqP#3D2E|pWT`X8OL`vA^IHy%!8+91ge_`= zeWhwo=)-u3Ja-^gj6SaM{w*u~@<{P#NFc#68#677TGCbIMGJtii_yz&B6`ve`%5zb z;BdS8+n<#fKMvBz8@=O^lQ3d$rNza(#+v>T-cr% z)kV3zcs=}dTBq%x&-l%66dv?Bs5{mZdIxtjtuy&+JV)8d*SNS9xQhL6{sbR^w3u8a z6L04zxfo*z9CwJ?Fy{y@O7gEAaih$mPs%T#5@B(?Trqex@x;ybjJrv2_w0?bF<|;lC4K9)59d89EEnV`6=JtzN z%L?aE?p6(mzmkv{QjJV3!Y~r(58?}W@YCwhChIEe+=_yzb2Jjt{CIQrUAB^~eY}4!1DW6^#3W7Fi4l97mAA?;R$P-~_ z6lA!Hp9tSyOaoaEVv{2MIS7IZ+69Yq2LN?p+P@2#zd$JG=dD$$c?Dod1-4N<*=O*i zj9KnenJ?Wwu^amX;SU$H;AihIoG{fa&@Ox4?v(&)#0HczL@dF?>aYd{Aa7lD^4lZ_ zp=ReZzkyAUo>t-t|ym6YP`VZ?J+{ zMNu#X0PL*s#Wen-3(X@;c%_OE3Z#N$;9>@vU6=)uX$2rsBBMSHrr$`dGVw?$A3=f+ zCg_>FsndZ9!ds!qk#WC`)_q%wWQ9%)T2@+N049C>6ChY^x!K8Bf6@b}9%JrnD1EW_QoRa*sfbRF9u7#(8D^v$bb>K%N@o z?hSH9ClI^B9F;0}qv1pWZp>lzl;xW<%Ip?nKl<15ZgW*M`CkZQUHc|zi17PBa>@Vc z$quVgTdEZ_BoRPo-)wI!3{94vFlNHKUXCMCNJC$XKRIZ2-Ili{xrIdnF_&b1>o_X{ zV~%-9JD^m40GKnx%~r%GWHwJfH6CKJSZgjjmwwdUXjh*{YcwRma z&%*lIfj;VDr9c*kDP#w@Xr>eIF}Llh3*J)r?&fjCTdkkKRCD_^&hFnCEQp0~cMHG= z%NGU1V)<}hVQJzl!*t!}PuE0kftIL(`J9Z`mcYqxMd_us1L@~WH$Z*<*9ouozbyY6 z<(vLm!Git_Z6WONyo>m*hfO317s!{fiT9$|J9H$)Z9yz0vfHB%vAtx>C)X|oj%C1} z#Kot0Tog-0%VvXvkU%SoO~%6{LG}Zv=LfZUg%S#jH4$l6K<7B5IBrm8iRL2VA&`kS zgfj{gZF zmNBq>KRItZAe%0oiYR$DIVg4I*ABF*i$OJ?+0yHjN#apX73uJ`xe6jQYk=FZT-ob0yZ)*TQEo$@h9fWw&g!CM>sZX6!|yDbBN3cL@IP*cl1E8t>CJ~9Y?cf%uW zU6$N%SSv#~nVi+tOG z-I0CuJlYqhmIO{)2Ou#EL^3I}@*zIQK3j@VbaYO)rq-g>ADz^Zc z_;v*_trN3No%ct8$&kc}_^!D$W(~k+D$?n6L`*R}xG~N3r+P4A-Jpx+q^m^hxU(3d zGXbnxf0pdn(TGM=NxLL-@KkqU0Rt&E#dsP$4ys@ySFJB!5u9 zy*m2NT553wa%y=Sclnm>3kYdu(nI5^u|=*;Oi(i6r4cQGzHvAbBPaJKqBi^qs6k2_ z1jyKU?gU(5-aYsr_gmQBa}njNbAMy_$nDh=>3O&?nf76BK@X0@GeM?Iae#L9baUYR z7;YN|!OcK5lt`b?1@;RdbVt@Qs$|2A`mm4e&~2^(#J05sbI{IV^E3mM;zF8Y0JxP; zEP&~S$AlQ(SQK0mGO=vq^3r6qS7DU5hr;4iSrd%sux_t~E3y?b4LJ|tHrpx*sk(NJ z_27bi!q}qyUclk%>U6gOIce1<-`Y9Iwnk>PluG>+`I#U)R89a+*k06VK+4NG@OAfi z5F%EQA%}<%Mbmav!4w223!VdOF~_FU*)Ap zIBdZ2C3r+bq{2zy_dL|0#RlnPryMY^!t!NrseIngW>!YsMm#B=BSbuUl+3UZHl#m5H#H% zQw&;>T>YWZuwdF9j2!?NzU1k7T}-rV2b^m#CG%>lMv3z6}%4#7H0d4tA6Tq;Q9Cg%5R2-aFg6* z3Upqqu+7ODPC2Mlb}Sh$`UsKH7C>oG0zU(q?W3m6E10IReZGb7v)4lNnMqsU2xve} ziq_eV7%Y4{`;ntTETMfE1e4OIf8s1d-)fZB{hjzG*Ux z!kl6K$dQO=tK41RO0s<+TGi%o($?nRCuQm+HAcy9&=ChxnJp#+B;ch|@0}%Kap^E` z`hMCq7$yqYigs&f-i41Z5j_yuYA*JJmB9n5@QPWVzRdnqW!6BNKx&2R&+IwX4jfKI zAJB|sgPJ&KqB|IF85b~-B2tU*0TfLb;75ZcE+s~6_#VXCTdEaR@%Myboi{(Fd(Dk> z3mgsJU_y#glMK5$UL{Y%CPn)R=qM9le=%7Ce-UaPrb(_Y^M>#vg@~WP6cG*H7nrjN zR!kYV2rn)?CGF<~-_7{9AQK_<#^^0bgj|^HlkF!S>JHMmTX{ zeFTvxK9L8S6s%L%03!T`E2kdjV8N=k$~_ZjEh`1j&LUI~&*L5ve!1EQCJ61X?l3Q^rc=mZ^j$&`Tha!JGvtPp^M{#eVH?ju zJcv%%>%S+vAFYOI9^q;wtXMUl!Z8ZYTI7%~-wjA`G+NFe89%8mH-QXP! z)0j-x_h@>1SC6@r#hje>9XJ7F521bUM)6}U>=aB>?)hNM8w=p`q8!~$TjOb1D7Kb) z$wc(ieEO!nu=}5Fxr*ogg!eCml z2Q49`15R(AG;+^XJgR_E6q(%sV`XU5#3gugJtaKwb_w{p-k5z{xzKQf^v^c=ivXCV zyvDx0R#uc!qXi2bf1vTvWY5(Et{jFCVw$IMp!&S|KR3{KjfDdg0S4MdJW80}cJ@sy zLC$4sRqgsZYr?bTs4I_159+)Vv)ZcUWHmMZ;9WHZ{1v}RaDVtm%iVed-yN=B2X#2l zHjiM8H`MN|Z%NBY8r|Te^kq=n ze#z)bJ@}h&%$KyLb&K|%pz+A?CCf(*XkP~ES=PC`I99#VyRxzwP)Vf`$MR)IiTRL+ ztoVA|@9g9-|0zpPslC_s{`ZlO;Z(SgW6bx^4n-khQTg?n=^q_hvzSjWP)>xV2~Fx; z^**I9VP^yni+pqso|rCh!MD*ACXYSreK7ZVPoAbP1@Ue4LB=hH<6f561;b$}H;GwP zUWF6VUjTtgHKZFuc%tG;=xK}DkNr}k=~oRE_M7Rxiq1b~2`;pfTl(lafj*aZo9L)4 zY1*tlF-`^li{8emY*5H};d3Ei1(I+g+58BPM|tu^5z ztG&2np-6IUnWSmt*N;qE=z5)G_qJPv;6vG%Nu`1Z7rT7$ZF%oGx_|<5weyCiW?Vws z=WL9~#QcH9S*7md8mb<#r!sjs&)7OAB8V|R4R!4b)*SmL$GmrTV|XiUIrtf2Vr8s~ zV@jb_k{3tw_VZiearKTAWs%O62K;QDy)3g)iL`qqStE3NZtf6y-aQ!npzfs(;bAP<2UXmb)J-^rBVubw^0ynl2+|RYH8ZrER0|w^;M1 z3wr4BknRHRtO>1x$M47>>IauI`k0kBW9M_wCh8}N>*grw^5R~{V)MQmf^^aanRKP% zDOE{{bj(0({8bTn=>b$yK~pTxcid<7X+FO8dH0H32P59n z6YxIc^sphSWF~jx4r9xxHBa8ZEAGI)nu#Nb-qNQKo5d}7`lXU&<`d#bBf8z5LgGPA zzoDNy>wGb{)~oo?STlpN+bL0>bi^bXbX$S-sNua>rzkV z?xNk%7=)zTvnm{VuV1e8@pHVT8P*%UUx*U07Ib@eWgx!`-HSEPO1ycmA8Ktp((*Zi^dQ z3rfYuGOx_OGu@D8`Ic2>EU@0qm;RLVX)9_mON);}Y6AW}%dA0!{)Z94<(3_b5$A#e z2fmjAiepM0@(ap*)GFL71nhH~<~tXVFk0DozyG{3y9&&Z*}qu@jcqN6&a>&*7kG-B z=N8-wTg3%j_wOGcWywf1uqt6HrR)D)Ks4@f$!{vJvAVJ-dZ80Vrb%m9M7da+5R1;n z<%qr<^cw$PkXE#|r7PcBK)UO3&EqKYFoT&}#c$0=hDIvdQj-2jYBcRms=7bR3w?D# zZ4jIkReQ;=e*Co}~mxUo3=A^2PT zu8551b032WoQFiWU?H|z zr}Vp{UR0m%!E%0UL&FhIc4}02(Z*XZd{$iRVrn}zX3L!)Ot&cRTDq6(a>}}2PUPA_kM2#DtRpXa{WhN{zGp^}rWfJBwp?YZ`Ojm((Q%0LvQM?K@+5A|;dvUr zMNR4D)ROrRBW@;Rw!@Pb`>NSy!lrgD_Reo5_!5|&RHVL>a9!al3o8&xG`9fY+3LVuRF{7;~^;*T@*$q z_t&}(Y+i>~Y%~I_8V$K}6-K1quT(RH#E3qNRPN7@lA`q27T$9S{p!(7f9x=HS1sRW`X_A{fU zs`aD?-R-ihwieP0#^|pO+ZP|<;VBvN(&ftirQ9L6`;I8^*VPcTwMehMR8Ku;`BxcM zfPLT842PAq$490@DCx7*QQLOqQ&#F%0|i1Ro~KVGYD-X4y$4?>+^75Vy~69`SVI55 zQo=b=RgCxejn4KnlYMg?Zp&2zkLE{3uAQ-Z1{FUImXE6`Mh_iwJWD&H2lj;b|0=(Y z%MYCr41avGjd~n9cZuwfMgBsTds4G-hdCfCC~eNc2N{kR$f=iErEc1%Zdnq{pz;rd zCBxa`zagUu;f{UBVMux&&%Hdi&->py`MQb#1@0UkbPZ-1G&im_{Vh%pb?!e_#}Bu>T=+Gi&!JLk6D6?MeM2jEzomaSdg6frv_|P!+%@CSau|VS6W8CfAr6 z-RY8WcsKBUz(GQ2RI53&m-PFR$*7CuGStQ72Dcs;y?3APHw_E!h89)YPXyLIji9GiAWUOt!~0 z1}3Aqby!z?qCn;!ksy5~i2M7jMM+<&_vl1oe6sKz$M%B&xBrlJiiBpyh&C)NR zdSxk*WCgbzKY#TJsk-Ww(eNpRlTFWC#R_V>CspDC%N*iB0mP z)gp0OsEwsa%7VWUQRn%4p`cWZ2PL7c9Hr!9Y}BYXp1x5iE}dRpZj85ox z1C3R-GNu*UUbg5IK7Wy=G9S5hpfYeanM;RtgR81k7rBu07ymczZCRy|I{xOpf*y5w z=bTi>r%Zj@=hoEKxb%Gz96;KA*Q!XK5b=T%`qUTEa(*(XOc-ZT(tTp`$t1e83grpBz;;VjsexfD$=81$Qn%)XsG>SJV_UZ0pvFRmB^>kXu08zxz7?`Sg6bz%+jg`f zw(sxNcA|?B^>3bUlQ8bb-i@B^&G$1r)Iz!On%;^%Egi7(80h&U#i-1ENw=QwLkm(+* zz}BKxb|o^YNHue3w+{d;$6ANr6Wtvv>V*iKWn`PmE`?$-9jv+Ol?PB!@EQx4Nro?hu_?SN- zNrjUJLDk9Ir9gE7DS*G{nvcNmU@5JX)jkW}5*M?XF5pB$A)evO0t3~nY=`#;pUBll zo(RwtM|&gd-LrCE4sdBzO$Rpt*xb80R`l5T8)_-{&!3=L-y*OBR!E5hpaSbknK4+e zM~;8sL(ax0pdtPqZwcFs=7apN4@;`dT1-VZb(mVp-))FnENmsirQ{Jiy+8auIv@G(Rq-O0)A=L?nwBrb#aQH*1+K^PW>kE!xmXXGyy3AFoXWi)Xzx>*!@+xLE*_R%|AYRX@>K_gOk3zX1w*+xSd$mrWXhvBBs3g}7 z!|9w(z%+2y2Wp*%a;f2GQx-~^Tb2}t(Ir2d!)x12UY!GyG`aQ{G?)a5S`wM8Z;8V?bKsO_rwJb8 zNT|pniHs)4`8V_pR{PE_{p{&Tj(JBoLXUXl9SldYEKCI4MV_3|PC?I)@zWx9l#3S5 zjPRaa;5S3NE^v?F{hMRC{bxq9xmtX&mV~KA~Kl!?AC0I}~n{ zj(lF!HiB@ub2o-f`h(3F%hLfZ4Hrtj>3$=WFAtus>6t1-AG5k^Bi=uADny2Jp6^*< zKg7j~-4)$Cn$gi&W~k?;EQio!b(o#WmXe%ocS+*)%k zro6cp%4q;`#^>jpyaVp|(wRiYMPC3amW{50(~%lpV9Fj$eMnR#<-E)fAw(5sYJ(u7 zc8$8?y_0%iWSgK5heYNHy}@5zsp2KGv3c_t-sNI6*Hd`0IgVf_pFyul4#WdLEyMpF zxP+Ju?dK}d%#k2w@LA8aHbo1pgkTh4sS8i0cc?N|fQue`XZ`7yLRwOVO+XuAk^<)W;`59p3q#LFEAtyH2AMmO|-nfw#LKf~dsE9+A@?Rz5 zuzw3tb8et-a83#F3-zyoqpxxZJnzo;s`Q=rV1$aYe1@nMqE1<6_wH+Z5rf{R6?8#$ zzitpgL67tv2(D5XIdtya(=71rx(5L|fjW^{Nyzqaoyfhs(QSx;fRv7}AkcM=pg6!? znZ3bI>k|G7@|E_1-)XS>z73zdnAeRiBx0O1!X;)KYJd1K3()(jLODL2;r+R>LFk`# zlY3SNJCTuaASjW#WrRTqbvIFx_>jAi0vK z<`iyDQ$@&sv93&QHUDVB{VU0WF!!F{EBg+;VyK962a@Wcw;J6om($`P^hHM3&&o*7 zt~gfS{LUJXNzByiTH7s~g)tzL$Gd5xIs<7rbMzaSUl7!%8S>|Nf9HYl#=d5JZ1=4+ z?v7$b){8UJbKBAcSKX>~>z2EZhUxv*+vH4j1~5rJyTaqr3cBV#QbO*#ZluI)CN%58 zwir|fXfVm{8zo+W6n=dfZrZZ%ruWxIS&;Tcap zpCpdOe3u1kdnq~zXVV-vv4Lcr?t6E8sOGDi?YAc?M0$6zjG)uxo#o)1|0oPHaQA)n zBuyC7BKBjeX+s+&96%@YHVAp&`>0RmJ$&f`YbPpx>wTtfFP-u$? zjG}W0#l&3?2O;IT8Lczfb|UZw8mw6gQvx&d*xQj|9Ns%Pul2}+X)30^nIV}N-7k(< ztydQ>Vs^pz2bY@T`JBSWf2E~eNis<)YV&ZvWcslMBh*Jx7I|PO$w+2SO}>_)*axO5 z5zvbLiWMFiwc8D3mhY+vZJ3wAYd`!2qY*XR6`f7wi;Jw~&yVva&mljEdr+?wS0$TL z|4JqxwRC%K_Wd`ksD76i-uI(&azR7&5F+fM1VY-L2z0rwmBp;(mJi=k(QF`eA|FO-wh#SI7ob1M&u7F8}<>9O;wL@NGrgY$oEK@dk-9D zK|Fsr`PiIqSTT{SvL-mjr|~=vCW$?g8D&78jzHFqf_w+Qp(J^?{0$aU0%OrE-bZHFW(87V6fkj}X5aG;kKrqmLqa{pg=g1zszCOAsV2cu-=Bk!!s!8F z@~j-S0&Y2pYK&XXZIna-fxg8u*Fo?WyQ|#M4T|-#D0bbykfsTXN)P`UOvEb~5fr(Q zd-L|i>E1lCPCHdw-|wBgb*I}m;J{h#rak4YA|}M zlL9V?k-~i9^k!X#yI4c}_!!cQ{kaGXAu9t*3L{9ct7mf+JZgO4=PhQu4@IZWbsbHP zw6`x_G9x7h2C5^Ed?%tBg7Qoj*X1bJut~8@``4G4vP(Z^M0y;9^znbcYx-gO@P&Eyo_hfeP6 zx5M!r3H9zvvkTb#VZSL&gdV@Yr18yP`yoT_WOJN{0JrFK=0t;B#e;gjo6Qj^h0a|B z-!M}sAK=l`Kls&*?ep?X8%)A|iK9`4A&FOoGEw5o&x%O@5+|9*aA9z}dhrqDO>FNR zFh=8E8xG`Gq(*PRZ*xjA42G4l0BG~DsfbPGoHe* z(2rXCnvhC;ZjV<`;e$4ru2uDS*_7Oe3{Q$FRXuO*=y88iXTf1-LI2_FPZHX_aD)Q=G%dYETu0q60Da%}Pia;6 z0ak@O^MkZpr}V4AKHQ-;u_?OS0&n7pS!rvWQwqAHzlkpA8RhELUQKO`1xs(e$(2-6 zbjv~S?!^|jwcavT?sMt282Hy>xJFn+gd=I`^>3m0@|2`KS<5igprPNf=}hdV!P8Xl zzZ0|xZFCEnbWVBxs*;k}mu#)>`BGle{cB!IY*`jlzS$T~BttBtWk$Z8jkiczsto$+ zxmy(^@O7?)J)cD^C{zi**5mp~{wq*KrmS<^!u%w7#8B5U?WRXHF)Pzk?>@%8WWC(K zBGLG^?n_A(XFhIa?CdsdhD%bqf5i80PxoBizP$d=lW^Umm)S~7lv5@>oP_Jh!1{Jk z+>`1VU5J!GC4A3@%eMFjG00l3WgH>HEq=4U!g{NjXi~&vKdk9 zHhOMKV)AW|6#VfwqQ!ok7_7CsEq{46UCZLEsc`DL1+A>)CccKkdjl!ojKAI7OfDQI z4RiernNMD#`!d_u57sJBLiL{C#+M|MDo7OAsEk8|IC4v9>yfw8lQkJXQJiL*+F-tB zSuAqz#>PpxbxMHF`kAv{>v`Q_b%?NZgHOQ?;lw+SG=?L*CSMqzMaDkHr?a)F!mDGd zddZj|IPNQ;l%zDTw_n95c2X&w=hYzi>A-M9d+bYp=i{2MMGd|C*a2H+{)ppcvJ87_ zCz&3fWv4NVfXL_lj>^~(C8`W%pAqfP>MX{W=tb=s`Rpuop=C@;0}7if)X0;$gSbO@ zbw}cs3?)0VY(9|kcJR6mSc?oNcLxNv+cFzvSS~w92bkEC_v-{@6_W4NKZ@f@_)KM0 z^T^q4JeC26sG2zA)-5KB18k0k3hpiitBW+W%+g#$r?%!mZ;1UZ7q0MX<#RKKT`S^r zj+~)lRIkwA$L6L?p2vzob&>tJ^bp`C{h*e;KLnSZgSIm#qSumYQ4CQ#7T0fwN4YH?|oogN%Z+7 zkHP$c{X{M-!`qMI(nQxTHsIOLuLBy{?M~a&kE}Wjjl%x1*{baNlP>==_Wf2*EnWV? ze^&$V$%xCC$k#g&No>N@g$pzK*!!0Om%U9o2FNCDBXTV-msvN`M~y<*c78wS#D!#LY?uH4mfvv{Ra_d z86mP(1{sT=^}H;dt19cr9GEDBhU144c{}(o?Cqa_pNvZswO>#AW)n3)^ou6z0afak zRw6YHa{Sl@o>sNz8gu(g_2V~2&X^HWN;t*KpbH{ z5#nvfqp(dWwf4|Sxe?S2VPg&tT?F~IE6rA8&qo%!m(XXsU8+^WN20bqQW5IxlLp3Y zsGHX_HW1Yd50Q$o&ypP8*3aRMe%VJ+-;8AxtREWs7Na|_?d@F8k3^gNiw5)++1?iG zpml9}e1~;m(4ct1-^w=uBjmxLE2Hy1FUViqXTKzE{-HTX3B3Vq)?>$`{ zeYTPDei_;^Mx62%g46ikMfhV0qDoE#gUp$`?;c?_DT=B&7y1uaP(HCw4B&C-b=1U) zZD3rGWyKda@9k)))i$X1KAGh?toS*TYKE0d!Q!`vQ~*_&L_X43F?8Psc`%M4;uSJ4s1sD{s(aiO52=lV( zxY;-Gdvb+}GP??^dDdocZ9VQJFPTfWE#Z45MZNV;i0XsX{ovK+?Cs0v1_M*^6&-z| zL65j-`(02t2vy?fB$Ep}4u5U^+O!mBF|fvJ490i=b{E7?$X>xFoLS2EJ`H<>0f?wyz<%6Gy18j)G3*Y>@`@-z~OZi0BCU2w}Ou6J#GdR{dSUs#A$ z=kl6)7CzoR=>4%AEwTG_5q8k*dtl>;L@MvfD%p8QcRxfpluQI6n6h> zE2G<3M$wr5!B#hIvPjt99)cx&%R=_q9XoxGXyacueMM0c{mf>opJ;ek2S0mka-44P zVLH!liqawbKybw2#}^NgXM(qaPD~BOO}aF0_IjX8>7m72W9@@I`;8`B-7~qGksK;7 zlI>aPqzyn3ignP0xXnHtZhncuin|Z(Dntzh!_uE(?S?7%E&Ou0A+ji+E3Xi$Uc5lV zx+&ft9y*SC*6H05evQ8DS5`dGqW0fc81l=?d_RDYMVz%`=vvb$;=JaVL#pjei^tbKRR5zX7CR^gm-xNZbY8mRN9oDMPh<8l5#~POyb-hWY$S>0iqE zz#S=_SYnqLEK>(L7Yqa2&U>uyaA~z<2Tna&ivNB&BC{^%RekY%fZC|N@?E0Tbsw7d z0}!M|9m=@eVVr_5Ms#Ms3UDENh_uxqz-7GW>jiP$&?ferIebZ;!^pl)(cMF4`fqoN z7B^A*_Ear@;Enq(ldNgo%|(BN`cyHZS-9lCE#GScL&nH@?UP2_(SP8NYjB>~;yNXX zy2Wd(@$fvD|Lb@U!1sqF+R{;PFof2OWQr8c*8i0BbjaK85jMUEwaeu2_nbl5{fB*n z`j(p~Uc|0Axrbb7aQ|Ho%ClGIzR>SkClF$U!N@zTedBfybC$FI^OE-KC6b?f-{R>p zAMK{Cy2QL2K0v29j9?r@d?C{Qi2Ho#69A0c(dm@(&s!dLB`2w?8tR>Tr0Jaxs{GGP z5zT#Vl!i2SL+-ecp!?SN8U*g{f*WGMiv89FgcmRZ1f+KWLFM^D@OWH;ICOiqi9clq z{O7<0j(zlWQbpnEoF9f2gz&Z21mwXE`${>^eE^?A^TRX=m%`xeP4&8NI3?4 zoGJeVM-DLV^r04XB+!U%2jlVO^THpp15xMzQ5Ec<GGG4yLZ zHZxURB~<0|T>IVGrZ3QPrfWsSItu`j%m>GQDG1-W__OoicTp%<0I28+69HNo#aIoc)+&-}-tWMpPUAkG9WwG7I7=LgqY*9a zhX|p5&@~V2%bz1zD2VH~#eVbwZW16Vb1^S?o|KT9iTM>*Nj=X7c<5q7R>WdefkwG( zdj9fF`N6wEKGypzg8mS1HB_$Tuhjb7riyqG$i$7NqRjM5pcwAZC}~{Gb8g@Zhs+e= z`m1tAPj(0Ks{(*8SQ#&k7H}x<5nFtav>ZS@ zdSFrWxY6!ABpGcc)6GnSGvqw_2lb~Y2__oaOb6(EQ8cW15KkxRwy9O+T39B6B0pf> zYSE*XY1#8f;m|i*()kKNm(1fecEiw$tbi}jX)kz@7qs2lzq}JRhVQ6G{X-*HDmCUs zO>@s?P($SPEW<{SDKymeVqo9+P}l<9=}3~E*zQLm9HDffBeLp15v!4$$GM6qwF88M zaBtIkD6+j}TchAcJ13_+&73P>D?Rm>#nEO|H0)`9Cmz0fjb^Lcsm4>Z>D3oa;|p;=!LDx$BbAOWVCds zD_mWQ*6anRvc`Xt-lw$xBjMZzn@domxkAt*8#EkUvA@D?;0t0LEZ`$>!OsBhX%4a> zpbsEInE2)|?UXDJ6TXNKn-6BoGl^^7vb5@(itD3>lHGG&lu0DVI2^FxbnRM6`jeRw zAS7?2*Y$SHrL^N6`U6lXBI&sSF}O-* z%xU%40diUDbgIuUhYXCMS%R;KccXF#*>TV4Ebw1Vv*Z_+zk|vZ;JRA+h;KI=D+tJr z9=z=&M2kaFT(`Wn2J#Lv2NXr{Y6^t5HOzv58NqK|rWRy61P5ZrTzp>uME;23d9{DW zJkMHlk|8ghD9{e@u=QHh%}5d+mvGDRH-@zgt}Nb=dv!Xe`=j#RzPPbCM73GI7veLv z0;5m6x+E688xdR2Fw8eWGbW|0RS;($9NyscGY?;cjv8!#%&!ir{RW2C`mw3vdUtCM};}z$r)iDHbVS$uMY<`UUI5o8mNHRRRRPnAPCsV|rcYt3U6M zc)~=l%2*H~p*mDAQ_9$k$&2)`?w}cmDuW;3?nH##=Bo)WWUE&!qHnI+NE{I*jU50s z#yN;(0^gV%rVy(G1U+lxvAg|VpjX+Xe5OB&!qy{-TSf{!4F%ApZabVMx+)TT=h>gF zZ;+IWs8yYf;yShZDe^G(HQWM1x02EhhB6TQwiSA@w`^l3?a`j21(oOeX|Aj-Fcx0;hwszFL43_-Df@XvFDb|!iq+yA(|L{7nVGP?!G49%e8!2Q zzRnwUwf5i@L^QQcOKX&{>tDUpQAxGr)(tC;E>sQVeZx4^vFB^SceFX6ac38S%S@a} z9md#{w&l16cbWO&pHW%;_3X%6nRe*JjN!D-aS4x5&G?gXXkd*~Sx2`k*1g%I5tFz9 z_#zWy!d~f|E<37E)^ynXqL~kF>kNFGOI65>eUQNWx&s{ffg_|B9e!yimQnS0aL&AFslll=bhBEvveNyD{<4tzoarfNGkPN-)<$tN#FH#PQ z@3*ZOp7`OXv$O~UJi2|V+2;-1N&7ptn8@qhEP zZw8sAqS?(nHEh#WN>z^BFQ4Em`u>R!CGnVsV9MkxDDJsV!R^0;yBq z?q^R4;MH9AtQPLMFg}Sy?m+b#T3Xm(NB4hjDSY>pWcUWGTKN-70 zXo|Vvr4xQ0?=;)w#CUW|xh)i#QDa9+ijxxz!i!aP=L6`5r4cj_)s7WCW|piESrb5m zE*5dCwnti%FT_)d1_Kt+b8w`Ox4+|M%3_?QIo)-X*T!BiQ}GP4 zv|v5)ln>U+e3$C7jp|P11g0@AEGvTI)umf@W!gk92loF!lAD`nO_~1(`J;~>yHdcc zqKA|(RUr!GR(OIAt~tAurcVAs8jrUf*9pg_UGj?$f=U+lUi*ZFj&>?Ey z3E5y<%@DEG;hx?&Ps|D_(J8=C3uT6Bga7!?w9DWn$=={Qjg^cfxnfPDC2us;-Pmu?;3ddnqn(gCd z6P5RClDPvUVa*gut&r1E)V9pAS8r}QLO6}PraeD#bA6J7# z7rd#nly^}wU&X#>MzGX0J1yz|jC;Mgu9jdQLaMh*&G=D#i)1SxXy-tTj zp-Wc6zBBtwIi$=qcO7ztUOY!fpK6SmWPV32poqqGYU>rLsxhlfN+iR|MordJ$(rNF z-KAt`k~bCEVxM0h`zpqZ&#YMJUi@&w6r{^nyb9yHsqWJwsSz+0=@94Dplm2vu{e3h zQY2X@C95pjcP=-Lt6r)_Zns>ynLe9l%KGWgxTmYOe&~x_^z}w(Fjp3qNkYsyUdF%m~rzV+WEvM>lP0Sk!iJQcdeMc+tcJrj# zG0zm~g0|(}9PNL+x?f)$!|j9q?<_>eV)7;ASG+AdO9G^*@LCvDgC->(Vzb6Oirua*fj3AbO zcCRP@2R>wbR5q=L$y2^1GM2TLotCj0mU>o2woso!Wcw9*RWp)C~}X8Hs}@ETsS^2 zWPGH2pbmj0heKD-h0$_PCwM=o#M zVSU4-I;iN({gBdn{qHjU?DI9|+E?dh(z3_8H`G_IN>!DA6#rHXts{-F_t!4=8gSRF zezV@-etrJ>n)-&P-Bg05-3E{9Q){kun%T8y;_XSk16y=5(`?T6W$1wC#hvFoSt^UmX^@#a25bAP3@ zW@6#ScF*~LYXU`_$gL9-(znH$NKJaXxy^c7 z3jNfN!w8mOL-k4hPrA8b=6Zo2&QlD_V{qnQ@l;9OiQ9XRuBh{#(I`Kp-Fc&qzagy& zMVM+r2=n}AlRm|tW{=$`7L7h9yzdF@`Ti5y;s)jI9=np$G}j$YvkWVo`VTWZ%<%|Y z83*6rSKJvLfBns-Sse>d@XL8TTd8LZK@`ZqWkWk!ZP)<kysfP5}3F+!J zWoa_^j>LaUbt*Y4Kdq%1fii}Jn+p5RnzeNfdt=ktF6eF=p%-TRlBbg0w^p_kn`B4W zdIs_9v6U0e#H{7ywtBJNqLI2$Hauf_zYG+yO%=8z?9lbO^$+ZSE2Rup7^^{eFW8w8 zdv=d2uInn&PAF26Y42a;@sz0DEPS~8et<@gD;LH}4?hNtd3$h~eu4!Tl{dO`R&D|< zwH1(v)k|AdY$Ep;CC)DpyAT^JzoBgAbcyq=%6xXdbjEO-HN?OsBzr3Fi&ynMl?3TS zY&0Lx4TFENL}@BunW-ZC|2q=MApznH3_C@9Ho($Y4rV;H+7_v)PE8O+E7 z4H1oRbIK^@${K}`0oH<@;q?cV-YLirUGH6rBZ%w}Iy(V5)~ZQ*T8NnJ=3^8Wl-JH8_Q%zXAP`d+!cJl3@YtT{$H#uw``0PJ z3TT#i-T$7CRf|;T?_Iyku2XyqU*^Cua!A7vS)dVhj! z4lB^cwKi?5vwISEA?!~38!j^4Os^B`^=L~A*?+Vff6QqW8Z84P;Rnp$oi01426`df z)xlpb^Qr6!rve5hzezp(4^pYYTYK&6vEdJh+W=su#rkWW@lb{!tK|n9tz=~XAVf7@ zYd@fGgxK>V&4daMFw5lvisFgfw71<4S_t?ORW z1BT}B21fMYR|VaT!2pXivKb4h)&;R5vQhLdOyH2FsK70B3iD%|7bMRl6(BoZjhg&H z=B=o;xC$DO2MpzbLc~U7(D5Y?Y`9_o0lm~Qz^LmQkUyCvV%xETA_FryaRv#jiM4=t zv2=p<*Gym!w0z=r6Xi}nTPI@LSgJI}h*tnDmtmU`0?p;#eOML3JH=WEid88^KwAqH zf&lA<5C=Gd`JZ8ofHnV)--X+uYlJ-!y}2$Pqb5L$urBN$z&}!Q0-Z{nmwP28720)a6jtjF{rnFZh9I~auv zN|j|3-aXb*D*FA5>xh|AP^9Xp$SnKef1a@6818`9>SUE~oC`9+S5NWJr{0>$&({k$ z*+mCop(vt+Ck(A~v9dSbun=JF^miVF%>|H0fjwbe+6M^_m~PziEcNp0r}vXB80w=L zMyjh?Q*Syf0>`tZdRw?P=*eOg0Bw++aeXH<=>&cori54pJR715(qY9A*1}Tx5M{L} zB5@-Um+{wP2`%wW>3x~{68tFU8;XUY-bd>tm!a>dO>rKHTb9LXA+SVvNbdzH>M~>* zvlN~K3IJ++z(@AcY_;5q+Crfnnt7HU3{~;g`XJx-=Eq5 zdZjVMXBw*T1@>Q%P{5oKQD!p&n_T5TYMgmYUjS*_JIVZ^)70c;KRcJvL}{joHzc$k zSG1TX?(dlfv0PuV$8};+=I{uaSM=^_W zXp2+Qdle1CoN!zA{=ZFw{cRH@hfs!rII~x6n8#L&D21KI;5%1t4lS9?( zBI6Gn&XG*%M{r%i>S?u%Y~M@7?PEqOX70B^d;}CX^HiI@FZX!VG%Kt~*xk&nK>5-Be| zgtBf%oYQm#-(3{^5GD;EeUTy(kI^Q+aR#SMiw32%Q~ogWZWgt}EoID`o;#DgmewcC zw^x*rN12E5jt9>_FL3mZ(I;-en<*$%fOgYHL@h7*SQ%N|0r^Pn)Bb=ABO^SfNdh&0 z;4mTZXNF(je;w}wFln4Ab~rq4NPN9q`M`X5=1~w!iNT%d8PEa0iAjh>*X){(h7_ER zOTDgP(6*tR=TQn1nZb%m!Dp<>uqXD)7cFbk9pPKOW~h zqp;mVRic-|Y4NzZ&!0G82TaWWl`81j>LERBEzU#eCdPwSFU?THlvt8QC3@{|ukQbz z|8ZX|0enu7H>lIl6^6wZC}@M_FQXCSdBntncxN*eI0tyXstK~#keC>T7G=h%()2^W zWCkWx>K?5T05xZ!S2^%T``Jg3#OzUddqaP!Gv1VlE~2r&FI+jX2UMPglFwK8Kl4 z(shMieOA43pdo|~p>mSFLP?Sj1RS*bbg(@pS`Xxg`nNMp?-x@t*mQ%;ZGE6^I)uAl^Lr}|_UCx?%xC|O(gjyuN)iM)y?(XLbeMqnGbs{hi$gQazMGAjh6gDlc9BReXZ2kg@_b&1>ji z8n4m7Wio9R0#o}hp!zbNOtimI$%3QL(iVyr>H%niIZrkgRF_X7(3Xe{ebY+uqbXq0 zC|?qE7s2C1bOu*6vbV$Q6TEWb(e+g8E=)EEjiICG436$y2#5Lfta!+(%7rRy2p}{| zF{ub5UPXMGg-ZR~7krkp8~{13kce%MA4qgRbsJNJ%o8?BII0SU!R#hcFF6@o(C$?j zs@?|yzZTc-_c)Yc+l5c(GdvJN6l(AMyDN&+8-1cU(=jdaq>;tr_kzj91L=W+P$;bp zEL#Y;_7nHd7w;i|;s+rm&H3mm$w8~Fx*rn=m-+db0Cvu!`1Lj@n?u6Y^?#jXZ9SYC zFQ#;yq>4{cc$Uhj+URWmBtO0#6sbo>{OB5Ooa z&VhAL2NHz4LEvy?etx)C!~e~9QNYr45mQmRKp>G+}Ncs@-1t&2(fBr;Zl{FX++^vZfoLJu2m`}P&lbt#oxHE;#J_(;`w#7pA? zpq~R`A=*YXz_vU6F-ro?qt_VGFMsk^mv@J3@{9fN^J%G2VKI|Bd^RXjNxlP&Yy?}j zxKk_asxMP)DWwC$-rP1Q)MZGxV|ly4vCZPdI^5kq;jY!p9$N(VeS#L}Z!;x?m90>0 z!c+sh-n1*b?`<0D>#T$}rG{YqC4yVG+;U4IPMPu2@t0U`cD(tDcC3tttmeHydTgL6 ze7sznRdJbE-IRpn+M#w(_R{v#XC!Gw)0{QD1Aw6H|X@4ON#v96eK1ft*Y{Z_(@;q zdS!g?pFbi%ha##IC`0^%oqca7E3z>SD7^fWfA_J%Di`@C_5P;8RF;0^^5d+P0jEyk z`@=WIbz4l`-E7Mmw-LP$U#{33-!dtc=lxmyODJlruApJ*03~TuEp#2Hr28k;(*K@K zfgQ1yHz5w^C$lmtoA^<04W%~$Cwhn17Qcr&KXJnrUS8Bi9w$2{;TXsw8^^Sa8BD^? zCzyaoos#*Sq{qcMAVs3bMFo>N%4m5-3Ws~yRF5cC@x2u>LJ@RjhRuaHpck|lZ^y_$Ej)`@GD%*Uo7alk5pjVuBNq0s5@@?s=ip0yt5T))0&+TV~#Is*s)##UK7p|NzJ|r10BYCp( zf4KVYaH_*TZhP;UnH@*TP9l464#^1FTUKWF-XU8y$0o|iPFa;rA|qrLMIrHi&-1>2 zJkR@I*OgArIlue9zxQXd*Vlb+h!@bwjMA`@ZCz z@S2r=W4wj>nrwxzzS|&RMXFc+x4KD z1oufX^W)Q+MWcJ2_O{mQA*qW135B9Lh_XPjXppf59E`R>y=A*PgULi?+8@HwJ@Hd0i$Nbg-k^i0-8^_R8l z537T8+vpcFq#j)toMs|deuta0YbWsgx&uPjNYU8INqR;UQKG$Zq_N>2C-`r>@%e~C zrIqIIL^;kv!+!^U7;_T;Oill|PB~Z4_r79c`|rm_tlB&6_=?q;#FHwt^$ZgUQO zYBLf!MC7r^Bca(x#!WmO4`Nbu5U+kaMIo4^Cv{yq-*tN^fI+*?XOy~&jE1KIsXSDB zBjnz%`A6F2VIKx+gx+Il^Ms?m_x!50J{%6vpsiW5kork~F6~;Q_0&k#ISlV>)wc!T zS$r#|ue@8;BMk?7{coIkbtV~qS2~%H3suLZ1|e1+a(*r%e!SOMN)e*Y6J&8!g=4?= zX6n%9i()!0XxASyDrz=kb}^AKBIkBZ~%pEc~=EHEH)Ok0GqNhT$AoufH+y zg7Lu}!#&SMsvX6U%xgSc^jh0Dy0QBI-461~<SkEzB-v2tzm>z%8B@Mer6agr zkG*}Iu0G&`)3boVS2|)>k%$nnb>f_^*0Vi%xJ5)M=cC`$>-fydN1V%2A*cTiiHaGH zixtTT5A?L0WN`20jn=`f7q=d{Pq>1V>#E_NeT!Uh%M@^y@cZ<&Vu0#F!9*V|a- zMV`K(?Io$*wm)_*XAy8Nkq@u6hSdDMSN^@^RZ%!hH|_rn!)gS{&(>k z_^-1;+at8+__k!a&nYP&59)+E--5#A3{Vyd-a~4|<`nN79YULIK!U*EHg+qL1atB( zL+%qS0JsKLBO)yLA6ar5GKZ6Vor3TwxUdC4jT#HsyAUa+Qt0U6?`@?4ptzC;)4x80 zG%ao16Vkfv!jl~p{noXgL(o@wvKxvnwORer?PhMuIiaFZ_tSt;I>5WMl!uAzf0w2v zE@Rx@aIJ&I--S8xCGRO{Q1ZMuKSdq*_>j`NfEAW37VE*zR3*6&$&DxP#pclVR5Xxj z4R*#C#arEN9BX>+z`{o7JuvS#DOO)s><3^ux_+V*?zcZc`&M@oJGMJS2`C z0a?Y{p7YV3GOVH78eh3QGOMd56W38=pS4Rd<`_#*jpv;Mg?CwN9V1Hq_pC@-GwkRw zvUr;#1zuKozm-WuXAoo8@J0I)q6c>v^r>?Fxp8rvvmTY z(v6?&^7LH6Nsm$;CppPruaT07*b!_oD3rgocki9dMN_5F<9RE5qWkSM z5%`dWLf+N|G@L(<;6NQZ#P|0Hs7$itYx)KM$SB+uo=GeIuFhL4#u} zxBCR|2AE4*`HI2lZ5nm!-dDKA)<3~YHG`%U=NTcqEAJ_p}Nra*_rco)CC8i1g;xKBy0JvT-q)#-Kkfly`dhC9F)qtn$ z{lUCmD`?o_`y?eJIvU~Y5Thb4jw#fH1(zK|&laT{NPVhrdTwCwtU6LdM8%b5ViuwW zr<%HxZo!lDBDn}%f~Dzh`onnxt2VTNGvLp6X`h{Gh&aeC;Whg}dbdIP-2GzH-66bt zcWK}l9jTjpaW>cU{W^?O^$Y`ssvzzRL!mH+AxTl(Tmlr0Eh|FH`7SHU(t{k+Pd_?& zKE7MlU#tEOEqd(ekbJ`=Y%>Ju8M5plr+9MaV-Hd;ggM|i6wz_)RnhiV#r=l;T${!X zx<}z2dOa$`!F-)Q%=3iaux!$!fT(teJZz%Of_G7bi$vNW_Uu}|M>xL0KX%!pBj_C4 zTkes0F=zAr+(nOa*^Slw0l*niNQKWRs$f;_hDv%>&XKC-9N2a>a~23%1(59>b(2XN zkCQ0#X5ynd0Tp-qT7gBSh}8``!JLS^PEb2G6*hA;ASRb#eMNXmlD)NT-9SOCMg^9G zxkn!^nl-rJd|z`(RHxhvCpB~=H`Ms(z7u7flWaJks{3%47F1+4GDQR(CRpsvH+fbh<>_d_KKh8R(n@43}aS3}cE9<{iG!K8S6Zk9T?TuWz`B2B@PT9U&xKGXCMl|%4@#?3Ap_M%wlyZqxKA&xYIC8-d@zOXj{-D5M#&%Jxv}db)W9_l^__!8K1kq zK2%0sG$KNe#>YBYqX8gfusD|<&pyD9lmP7(JPL*l z5QTDRjBv?DQ4J9kod97J5foZ$iRj%y$6(!l3LhG_t(!iD3pp?{VAH-y+e>JKf&D(S zH+qZD1=~OlWPcYEDNo+u?h2o<(?*M}2&KwSrO$8#7xJheany0%qoeR23N~Vr=SDF{ zN`W|*71OW~lwBAp;O_Uc{CM}LgsV9)0h0Y}?6rQ(NRqojKxpYrqcfnF&}zzTOae@6 zh>2eZBW@XE?MpsYk!?`zCH04ql8l4lx4notDj`ERyh~OFY9+!&NTV&8r0W#heW!Ad zfnFIx^<_ zY`GKNMELcY;<|L+#CpVb9^{!skK*49E|zTV#8L;h3txaah}`$<-2 zM(YU(&pkwr(Bi_JsqfdO_r7%9F?NGjQbV zXaBH%7ctj07pWh8rNlie;X*xqo;G_*)c8Y`hGz;{TWQIDq;~r$ww(jkLBy59PhJu@ zGIu#VO76fCT^XxGSI=5p9$Tym0_%8@6uORTq+y?!_MN=H?z&;NzOsq;3$+D{uvQwmPj5(}-C?@wf8>3ehsZ!c#8=xDerdnCGS@C*( zVi}0BoMaIJ67EZM4=1`f8n&xsPfLPH>+2XTBcUw^_Otuoze48~NRv9hoR#lG2+mmG zTM)%+ZJ4^XM;$6XFR}P&0vB~c1(R=-I`!eSNp5d$)UZeYy{LW+0KD5j&X>O*bVM`i zvB}8p^roKX5Luf2qR|dX``>}LzA#lUFY(a$^-E5xU@VtV66wB;K0&%iub}uEQhw*I zWhv#4oP!4a-j}f2OmtqqhDh5Q1eKi4zUnsgc~Eg1VFqjWdP69G5sJYOYHJY(AAxN^ zM^&>bK7~$zZ|E?i!L-|KMi5KZmm|x#!tt{vWP&V#WylJ21Z=$t0v)lPXi4yRtSOW^ zl-+)VffdKj!V*Yi;=n7<2?9GOD7=t_y5&&P+P%e{rOrPPd3?NaGbHC-$l26$eJr+h z#&v~T{^RD_`~#O@#GtUhKo|8CL*xsZ06s`18fEezh#DuZF5U+TpC1JCEUtxjws-;fC>iI{c%V1 z7t1TYH=<=rZDF8>v$7Z6yRjl#WR9TV%v~24!<1JY%);`L^q9yPJhR{sp7iFR( zdIRn9)mLKkt`>T5L@d_fqY)<(_K~`78C_qi$CF|}HUNz#c@6z(t6cdQ44d3hj zNvnJbf=8Suf9o)R$0wMWXP!E!ohCO!ezE@H&$f~jj zcvJJD!GGa#H-*xxcDR<4Ue!YbCjmo!I(2>&GeYT*DHH@V52sAJS>Ck~8yYBZxQ`c= zEHZQ2buh38)7!G!lcMsUB7GB;>;YkdAW`#b(@SGtb3SN3vC#eB0|@Do=UJ0$%q9Oz zjHZ}C8qd*NF`}mNdc|boZO6&7gXiTxLFJJseF4>vPA{;8F}sX?vw)`VL1&4>{SC+l zgGWyqid91fmZOO2`zg#Y1N;Gem9A1t0GCAA3=o7q{pK%S80tdbnf;@THig=bBHak` zq#e^Hzr!_97Yrm3XY&fuA1ie@b@aYSk-3mCKR}uy#++N=x<-@q1S1ojW7P+gM>{VW$k`3B8ImZhDAI3t9ZOlDPTQCb8d6ohke>&Sh}* z!pF#^kH#Srn1v>q?cqH}R_41$WNN*Wnkz_VPY?11uh6R4=oM^cCGA4bhn%dB9gdNq^u0=0_D^Lp{heSUx5XTk!A@a zGjR?ww$x3}6RPzR!f%@!`1?f|o`73LbwdyTOddCkH$7g5c9W2ojD2DULe9{=6Ft=& z6m*i6ck4KrG@-qgFT|$EM?HIe3$sh;f%=xQaZ;Q*Kj7-rB$!edalK}2*vl*}qdngF zIWH{xup(MYU2S9q@#Pl@u13e@42PcGA(i?h)ffA}TTHaAPTo^rT6aSC{%k(3qMHI~ zYxohvji4-eSi0CV+hAvh+2nUpm+SgzeZ`adARBtMQLc|Do4PqyId8;UYcX@)nlo5^ z-aFqDYs35j`H4+CbAF*Xl_2(pq9*Rq40*pu)#NFdT3~4CbY|9*-kyeIMu7S=>9sRt zIJ2l-MbANqPPy$oK|E?cs*<_zNTYzQQrN+%RFA17+}>b9#9Wz4z2w=V^xW0klT6#$ zW=ovOZ-a}WLky!{<9THRva(M2Hv=)&HHz_87rNmr@mQ~ z7XMs$g=W&WX- zZEYqQf&6$%iKP!e8)PUp8|%iaYB@N$XcPO($XM7iL+`F)d)XQx7}pp-JQR7tSTq9E zRRQ>`OkG=P7mA2yQumt0#4@klbLAg5cjCA;9`N6H(i-JVl<`S5f7(V3!m;mo-IaH3 zH9J=K`606QXLv^}RZcwaT%BRo=B+P&5oZD;wV8!ayxSAEf@nI(-BvP&Oe-xpL}%Ty zEZLu>1PW+lv(P3IT36Dj5m+s-rF<#Jy0P{4>B!b1vc^s(advk!@$*_zwD9I{&_pGE zV;I)$^;zR?Vy>%^ex!lW43B3Sj-v>5CdM7c)SFH*h&6pca6M}LD9ZlEW15|W{AqP( z=0Rk?2Ih@?()4<%4i;RZ$-!ZyI*O!TJ0TwN%dfF`2&~jC!n`l9@?lPsa^{R=q@l(< z_D8nH^O!_`3KYLZ&jfI%J-!)os^P_ji?AeM92rkbuJ~F~F8x#-@c=P(R;K>@DpXzl z<-qUFGbf;aUSW;krMgsh`!i(7Xu<3GTSM-Bo?Tb*Q%R}bMj4K-FAp#NLIXLcaw3K* zx@P{7ouO$HgPuW{wn7(K`lp69u87slyQk8+{QrAp`^5WTLo#*cjdNdK?Hk%YBaP%5 z_G3=wS4_T-#%N)9EH%Hm6e0aZ&q( z=yA3M zsYYU#DioFYafLc${{^SlcY@HHF6pLQDv``@)oxf*MyFL~h*xy<-ZY#%j3t49WNztq zy9q9v8E+hA-#@;~d)4M;bL!p9`Hv6EupCZfOO$mBV$H{gh8AOu#N@QJE=*?NmhCj- zCi35#zfbYVjBBQ|#_v(;VALWJy*-vpi)4lHXAMjCtAvYB)kSi32v_yFRmQ40XnhdD zego6iVt;P+aV-SNCmPE={Q5vspR}IWC~+b#H+RD3N|Z9qWtFOZ`pA-@JK=q$Y|NJG zM?IzV&m1rnw3GY{{a-isQ2G}3e3ZEiLI~CQ$ji)J7yMp18e_CpR4Yjs!?^DkW+H=_ za)?%%lXmFLSJ%i@`^-?grI(+ZiY>*mwlfiqblc_3EE2U0$rrM`h}=lUrxi|CBg}Q^92=^bUOAyix~B4kRCGV}Z(fBBhb`jU zv}5T{#Onm*O9vC^`8^avW60Y^CBy8P5S=xu&h2-F*Q`>!iLjOgGke;RL9+$#xAd6j zf8m%TzGb)RjaFVdZM^vFJpx@YCksvCLTn`HdLNbXUaXz(I&U_=Qi z1$X_8|APD$XsSspOK12qf0sn}PudpD|Ck-gA`&UWEFXA>vo84f`yymvV%+r?Po~FW zH=+%E*DP%DLSQ)Uw@E7cEKPk2;HK473E4%Gme*kEpu}e*3pHAs!VQ3bCZhX?Dtgpt zcbz)1&j}tGY=_%ec)OtE7pp4Ln^$>f#D%^7fOc`>ud%6HHS_hzo&&zx(!vZ4ThARh z_Tp8g1%_IEr7q$z3>YlZ5?~J4-HgCkoGDej7wn9Mh2o?^<{%9MNe5X2#)vSlJqF(T zZpUJ}m5R zX;&Mk*Hz&0Z!!Op*&YZctJ#^NsGo zyQWuZ*^59QC;>WG)E}w@VzurKC(S$~VGA0b49g2n?1w z7T;+aHSN~Qe> zqFbL`L<&hOe;^lFTd&G5MzOyN^;o2mit!Q>7Np}Peb4k$h<1X;b##0Y)k5g3rDe-o zy>k?M<0mLp7ue@P-^xIS?GqiNF&~JnT8ZT+1McqP{JNJ5@xw-SeE1W!LLuizmc~hf zr+-2&|Ezkgn=N6uW(Xs|uR4Y|Yf3ei`R{yUs7^0~tI%{vN-w9f$9$_h0R)|vk$S4YgXALwn;coFkYV(QWoBL6* z{ zh&66&1qfLwWANhNUjxt2uCL=_bHrN9`Yj-KMl|ffLLD zk>LyQeD67ozGR9Ex;QOrxat!zjBJno9nTF^0^GRTxdiv_H>HjB^~p{=MT>wdLl$ot zFo|8DMPH%*j)l}r#eZGQPRI7A8=dV9il9AZ+r2)Lf7&Y%|S)i6kH!w7sbHw3YLEM%;BlDd_8PxEIz%ZKRuVh zet6M1eH>gqmKPuzxck9|F@tGSy(%r0xVQ*4$-$5KgRERTm2gxWZC0s@b~I_2XX%<_y{ z1eGybhv>P&-LRcvdTFkUAQK8-tA~y#K~tNwS>JcKUD#s9B>)&Y%}z<@3ve3Kw&gaa z^g}#>9)6J@tcEF^0(3mUS{Xk#FVP1MY0I)D?-b)zG?X*FtB&*Xs29OqrFROy+G7=b z-7NLQ$}p3GOCyrJV#G5JR87Urqw$aygi3)aid$3Kz-w8-k0snst=?saztby+zxzJ)N$BFW*|LvZHiH^T*&;Z`8UGPxux$V zKCMwy3g0p+4f{Zid1qK^qCC!$&ig8};wXry{AQN~lpx|_LC=vW-A z)3IDJe%fy&ee!0B%(s6sEuTa`;SR+tNJixo{aSj;tpUj^EpTHk;w;(%WmXnbev(tY zTD(e&bGytg-8$v??E*Sl0x-w{ux z%dHi$3_viR7bdM=bAA1Hh$aaJKp<5l^8gPWq>ys=%t7vElq6q5j^h#7@-F+xpM)Z% z01st)2Z2G0oSA%6qn%`U~u7%loH>WL7>JvoV|#QRqg1fN%*BZIE9iCa)$3_`N31#o!R zo(Fj%_HrZx^4uvmN$M;5VGu~v!M=hOnua5#){15x`y&bMDCN6AKl&bWWT7OCp{Ut{ zNUHv0Aj#Bbp1Z)oCZ%Y_ZOM+ktps!FsZKKLJ5vk#1}{gVIT$FY+18Bes#(gh^cTD( z{+uq{XEC-zYfma>Rb7b;vB)2QZuuFB2Yp-AaWI&Ti+CRF!TIb3^AH*c0SRPp>l1KD zSVlvh`&GY{Ff{c&Zw)~?QrYodk4CVkKS9K?EInG5%A1@E1#>&-o&12x7|SgqLiPA; z;!ErS8%40|2Z^sF$R$7~W$AT^3?r0fLjmq9O%)p)QX0ap8NJyPG+m|lpEg*!K20ID z(nNaRU2vc(->!{77ZO6u{0V?+7_Xql@iPR@IAIY>4?YHIazsL}D#S6c(mG^#u9g_< zQCrxoV%|3o*e*vAyjBPf6=*cVF8YRdj2-`4rium`*AnvgRS2=Lie5BQ63P@)(>r-R z0BYZxs{9CMov8f9$>FGEg9~`>yn=xk#;iOJk7IEfL5B|4r>(-TurB{6NH^^B7SiMT z+mx#*RaHj`7Uw0|%aKn}5)2yr=p+eit>sl&t;T=oxM^r`I4qVEYve|h5Q|!E{%JG} z$6*aV(%V5J&xz=;`fivKdSgPC_M)$dO<%M&1SdKFS^fhip^Uex`w(ps)L&$ev4a zcdFoLbXes9n8Un3@eW9w>!vSBc(E)ol=ZEka}t&K+zSpn2%Xpma)I%VuM6V*ewEG! zC~?d6uTfebz<}VtRUE^kQ~0`Cm6%{L7i=x?6oLuC?N9D|t|0?B@T6X8X8XanFu4Z6 zp?=N^Ij=Bu9S|)C?A|cC6Z;v2oamJxL&Hpy)%yLiF-_Z-5Y_SJW1?_t_ zsqE(sB=aTAEb9|8lIWNs*rnE4Z-K<5%Gpf)2=C?55dTz!y`GrX9i_fW?^GpfLWT_F z3jUESd%F59|BA>HOm=Dc-X4Vbm=O?yyK%Fz2nOPaONDa`%u7wYyCk=&DG!ARbdOAQ zB)h%dbMK7X|KD}04eRvm_v}e;lw6%P^|QIoZF&Rl?@1I1xoKmR6jXX~EujpecrKy! znk265{24P+n<}NA7^CKJj(CdSD>@7zQ6HAKE-FN__Q@kK)P@Y+Yfb6m^pZHHX{C)3 zM9lLNHLfR%2YCniQhz#7Vbob{!HvkFzDE1IE0)MDma8{!>5x(`w=bbKnk3C?(YKD7 zc8}(K;32lE$ezCqO*KzznF*-p@~199P1w)=K-#@}WZzRv(DL2DY0`jnHAX3pHe;60N>IngLF=QGXollj1a`qO zew$M(r*Dpvw$>-aQn7DJuSFFTsTljezxqP&&-uh?K6O`HP@^SW87M=8Jo!x27=8N4 zn-Elxb;K>k@;FD{r;S&L^)Tq%_~bVAHOpmG6>{FR=eC<(h%<&jPwlgmc#o`!d`GuX zUyKha@yHcH%DKA2H@YTiakNiEGv{?cP`emlE~4`8O|CT%aPw;m#;B z+VCZn7!&TUc%=3Tr{bRXzlStmq7^IS-zZsnwvc{Av&1h29A5R5ES_tAhuhGW86o!B5^U-}No{4ZBG=!YWD88o7m?bW5j z_WqHgl@FV#>9%x_nK`n2 z^zs}{7;jYbZF{NrgHczS!es2XpxC=fJNtb~mdKE@c0H-cxdSF1^*_rS6l;#o$IpWF z<65FnMh2=$^H(#%Hn0zH$~9XnDqJ%4uhbYgHq;ZIezqU?_c`Ho+UY_p{zo6CS(m)P zSbfBC9oz6up|Z^AAeB7Jt+qPmp=*YrsU0SU!x)7`Nrvol#*|urpAw0dN7d#2)R92& zP%K7-wolkj9$vnrUqfQD2b)EJXCvLIWqGKtjpKXL$b z9E79W8Sk5@7q*uBgr_bRMf`$bIy<&1ivY)aoJLzm!JpK0pcrE516 zKezpTUwf%}L!*DlP)V32BF*UIteeC%fnmi6L!psMm1K#rUwt#5scl_QDL751&yg0) zN;Nkhl8a~5Cqodv2PB2>^4rrVwQl7VEAeIq9sylHjBdL|-X>c>R7JaQ(xp`z?Z3>B zavtp|KT1XU^Cthfa&(tg4nw^6(6t5oi@IwjDeaFzWVQf!Wp6!v6Z`BLKlDQEMll8x z&(VL81e?owk;kDRjzus7c_Z#d5Dci4j_3~-{8 z?qqn|g}R7lX-z{qk6wP%($(0OF&L$4=v)SCF&@J_^u^>@f&%Ts&S8N`zW67bbn@S`{3wl@_qL> zxc29Joz?Xk^0puIG8cy_H@H78=+`~?@cw4XH$vx`@0D5hOGk|_&z)!7DoE2A;}fxy zx0RV(Z7gxrO-$VI+3xA*nbg|>Oo+`xdgS|N3;&~BWt-Z;y6Yr z!<}45;C^!%%tsGjB5}Bm3Jzjq&Wp>}kIc`$cmB9ozb1oe7;sm`(G<5X&$gNG^HOD{ z^4pH;xMp>|I-`AYC9UJfN&0mWtWLHyW>AYE`0+{WG$zS?qgg zrEqeMfSwt%@4OX2SIc3zKv|c5d$(PLzW>;*sRYBQ^m}J!7pT*_E1}q6b9)8g)8RkJ zO6xWE{j`y)K(=c1<4YI18UrTkR~e~8zsqk1$I)wp@a;Y>@28N2%gioy{sV@Ko6zKSz~Up$!Xn9&h4eRXfhrFJ%$0Y0aZo!#w6?l_uj1 zW0y}qZA-UQO$c0xNT66-xk5ANt{3v&J;)_%fl6)d9AR5D%YE<|9u&BAE&-%jNvGHf zA&uF&i>`8dY3txV`u8s6{2l04=+r87o+qo`;MIYbG2uh|v0(TrlnJ@paHqTIw9{dt zB!)Gh3Rfxjelf#fUe3Kmd(LLvq7eeJw|CBgX>)SIXNO0&E?1M!flKHQv;VuFIb%17 zE-Q=3<0G<;wSI8by9>8a3Y$T-7z~kx?XP7J`Z=(G`KC-L=Qkhs{AF<$uLsR>;IERG zwW>+lg$GX*r1WfEf?hcx8LnMxzYFLk`g#3-OCxQEpOqA*NQfi*jDPiy-x7uI13%6j z(`(ub_UISwNNZ?I5?^qLP;!3GjYJ(>r6J_Uhx#XQy!&VdqVGne*)2LhMgEj^ED!nk z_@FQ3%Rg#HnA@ysT=;IcYI5|#JPL(nB(_s`;2G4+nT_|BIr@r3I`Sqy%dBR^GsCtk z8abO~ZfJIDZj6A`qARyOZHVJxKdd;`D#ZJ9jP6wek znhNIt!7?gS|9GZpm?y9H!TcIm=($VL2zdeqXH&SxBS72HjZW{kG@rxEZE_y2KTilH zKR<5=$?jVaZ|%P8%uw(Bq)#LGbNOO_8I2~P*zs?T!W);=MRb>5nlZC1JCr6>YmeMe zN_r^nH1*eIFZ6R1dBTe7By@GdWp*hQUil;Q;60CdL_4UM>8hS)$p$xVu;5=e)zvmt z$%f?IHE7llbb2)UpEqTs-hFtafMYnDWi&#UQK?QknAh%9<1$kvTz+{KHTl6a7?R@> z8O5s0TME#hfeIyI9cA?%#DXZqZS)&Cn#Izw%lM@2LxhDCKqinlpfQXdVrDhEr5AsW z8!=>8DpgV9IiHLbk04nE8*jpuX%8OGkg^n&716K$h_0%#p}oz%Ck_6WDgj#jzZ&S% z0%LWe+b$XX7TP7T+cYSMOBlQ-RQHCG;%kk z#cMHqJWR~;c77v@3F+K5yVneuDtE{~W$i;i$vLcUz9&y-hL^+3A^}+WR~d3vdFH8; z|A|#55^ctO^bfFta$(n0x4V5Rp(C9eGEg6EaB5w9bF%Y|Jodl2kbn1FRB=tepZ)zA zv)5UU;F9tEu=dW35YY?Y3QfcKq)jdHPh1!}8pJc%7iSHZ zCa7xnuVQQYq|Yxns=bfZGQF}dB9pM6$6K^ykDrwk^hS<@E;oIIUb}aQcl9t-_O$ znuwAzj+zZIQKTvsrJ^=2hngkDZ4!bsFVR@zbsJBzC;|>z1{#XKUh==%r_t?R5IT(d zVel9A&uBNc&#$+G^Ve~T!QZ`x$A5N?es>x*d^cik7AHpZoz`p);C;QU>`=IN&Kbjy zU>HE|SEb>2CeviyA(SbMOLZB$Bk& z-xwr)d-fFn9-)T9ukcGEa#^K8Iv-5gsP#(Y9u1A3oW_=)syQo2dXOrg9g_v^SY*CY zVFaL@R*sf)dw&6ySDfE3yggR*!sFVxxk8Mg_O}CT}Ig=P^9thX37H@r0 z7i%I*jeb2q(kpOzR_)szRc;=AO%-agRc}q_edQl-5?g#X@4Hp^YE>?ye6aN;&8tis zbuT7Q$Nf|u<6OH|MILP%l#3%R^flI&K|c9|p$u4dh7cPZ1G4nXvs866W!^@NGI za3CF%iIY`E&c&?SgDv641^0%oVoelHiBHGL8ZXZss>t;#S9vxS_G0vBC$C^=srzJJ zFClzpcj8>*t(#s^M6>jwg--RR0y!DK;7!BN&O5dk(iNioq2-SEg=xDrWn6DmN0RF2 zV5(Jd{&*p5EAUpdVLDMme4?}N?YubZTP|K+X}rHt+r!Jmqzum}%g<{$z^pI!DfzwRvV&P{+6g`&q+pVmvjQ?5`WfYREZ{j@S($5QP36esO)+Kx_v(4 zk0UEO0nVz5gF1(FTcvm{vW(Ou=dfnA-sJSFW02R0ig33QQuAau>D_5Dn$>ceINNAp z;A3&vkNiO@B3k1ud%I&*qr5y>Ksf_X@(KY7(Y9F^hO0;F2%d&W{jnh5`_xB!_N_}o zyD=ogxs6(GAI`^~ohpu2R8CHpjaasUeCDKQY+`7QM7@4WM?|a)jVZkmA{!v`xJoOG?U6iPIjj-fu($ z3dWC6u|lZB^p5uCL!Oc+00FhS8r2%4*eR=a9_Zeo^_IWJ zFkK}&^wBaUO7O(&2iNgEygNNad1w0$12nN0(`H=vOah* zdE#_NtOM7IYoWKEeE}dJvOltz!EWPu%Vdcnm*a*zNjvawOOBNV6xZLXIag@z<9sG8 zu*@#LUp}TzJ2pt{SjL9kXPHmNBtE8>BNi+1ZEMLM6EiZzO&*U-cg1rbg05T6c4{oZ zyxwiUV#+j8H1Nmr5qR)BpxlTydwMnb#W8AYjoCOkC?R0@b1X={Xm^pAV%j8VDO=u6e} znaj7`vxJu?|9QBxpBYy48*u!a{FZH<%qkr)COW0L(rb9ne8x3U)zQ%Bxfr|Mv7*>* z{(e-wY|BCNCRsMc{f5f92Z64@WOBW0-^_JR5}RFl4-(XFAVf2bS{q*VPAg+nVyx8X z?LLusz?jVJd^5NpsQI;0Gt>~|KDkz*yduuG z2P{n+bhAC1ZCQJ0;X+d|PPo)h@*c57;)YX5Z)}PAmJ>Us&j&J84m_XTx4RFheAj!a z&l_vjX4HisXL|ybr9!BHd&C3iAR(M(<-{wLzbqF$nU~Jq9?+88B&9NbceXg-1YI z&rS=``HT*t=>0cyRNjp)T)xXdhkV%h0W+Bq1Pov0OLU=U4{q8f{5BjIkIq}mLi4&& zuQA1Mu;|Z_$vkUnxuT7;Y2bs|l;r@tn$Z0tw{S1HS1g*nY*(SBZ#qP2bV02Z_T2xw zaS7E<(%LH@f?&X8L0YUF6aVw>^5=vv7^XKo%UvZ%v4qPd)mR&w>)b88It1nU=T(57>GJ4gB8&R|uul`e-H#Mv{&Jt5X$i-FHm#C12rf_9 zhwKeaYS;#@>W=)j$0%<3o9G?+ftBG41~DAml7vJAY&#~-bx~N(XXlVP^6?qoJB)f= z+X64CcKPAV9LcclK`Pa>w2@<$3yA*;PkZ5uO0|_jG+cbi>j+ z6~FUHeRsWAPqXF@MviM$^eL0(CpBRhkhP>2VoVENJeT) zr-(IfWcFwfzL+}XKdzEM&jy;30Pir%G3xLBC*d|)Z< z{H^>!!&OjY+;vY!q$os?Fc>4vG_R!WBpyKIGU4#Tld9Q#I?{=ZrhuifjY~-4g zi9-vSEKV4WYs)Zz;}GEbfi&Q@AU?whea4i0C#VzB*|OWG^)(KyK#F8zTW`zBI$kH@ zEMWp2MR)wH(?F!}>2k zD~g40EjVyq;EoOVJNBCdz-oxov}TtD2xA{Fi2IAL*Y;)SpAXvE6Y~F=BD*?$)B{CJ zKDq_k5Rkj~!#&w>*dG!DF`g^{^~$^=$kC`V=RHq$W%Lz9#R#r=fD$N$K?Lv3XD|`2 zq~@-i;P4O{$h+gV`gy^+e@6y>Np~#HqewIkaRqZ1=s)5i-g!{UU{iEKqTmXXlLSQo zIaIY)#~nKNTg#Kd89I%pPBWt%c;na1VhcsRQW>x4US` z&mVB5Q1Fp6qTGfqmPT!gVb?irX2l}Aj8qHot0=PaO2{mMt^xMtTdk{#!>?tzb(PoJ zh_>^Ef1peEhVUcC5JtLZjx?g}2BKrjVCttxT-!VtRb^V3(8=VUVCp*V&+FLjS ziGzsFf_wL?BdAYD=RbK*X{~C!WA;kqxr2B2I`P>%KlEW3>kE(30f|J>xx6)7s-Was zGVctlsw}de>aGXi4}^7f+l7Kh&4~*)5DGmnp+QkGLqgULnA37Avy~aNHliDMmSU0; zKU4l|^p1n6brnQlKFhMi&8MinBI=Ne;|aorhq{3Pj@$oZ|vzH5r1uOpdX{q zDbYIRPL#!i@YPQ*A|e$*LzL%A++0+m8jpold{&O%;jiQS+8+cCRi+4vi}tsS&JK^d zVA@IhMILg3&4=xMF6lBaNEHIO9-1)(p_!o(-+L+kqp(R)e1^k1l5~Bk-}Bb>rkOiK zTbJQ3#ncx)G3c#r72nu)O|U9V-H-AFuMgXN34>s>sK)h0&>gQFJB*ELZ0h4Q3k(9mZ8FqhTi`C1f945wRT;;PNac zcn;2t-|1M@K_~F91QpWes5Gt@b5b8varXrs=cuqIVX%FJ$1OIsjJ%;jSnPG`3CK$@ zEd{zy)-dk2q}MAwIAgjFS&!pCpv3ioDGuh1!athS-@6r6FU(z<2CEc2YnOyCKXg@4 z+YJd?H;uTx9C6Fb*gl1g?i+l0Byy9LCO>T3h&a=-bWtFKAiD5{ic&$r)tuyq(X2## z3O5C^*m{AdwwzUnCXvgtmX-7D9ng0*#N(iFTpvm!Sw(L|dSlpB9X~$O+VsY+#yuO! zRw9hb2$!n=dT`@roaQWlUCYx$Zo7;__|ekPAWVvjy zvO&d9$`#nKa=^THT^NOq{acSsZNYL+4U?FjL07M641d-m4YerGjC`z(+=W{Zi_z_Z zft1_#Rp)I^cIOJ*eT=U0?8tmPk2E2o2`zz7=m7SwKcC%YWK(Xz!IrlB0-Zpp!6X}F zsvV0_w?_Irl!-0ElvtxP>e|T7_*1|-)t$QMX74Q&$gy2%=fvK^*%ErpHuF?NpnZ_e zR5sYWI=WQeEbeU&l-=7bHidRV55yYi`R;;UN;g01uFYSlR1Tfp%PsSyxPZH^A(tA9 z?7dw7@z(A98)_Wq=$7c61tg<0-j$j$Dj$7?QW*f5v(^0uXk_Q8L@rIK{l*PLkIb#* zU7jv^j^5CU)CVQbh)={0rDVkKx7sJ2(G0nUzIX12>xDj@pJC?NMkOZF^%dmQ-98TYYRI*>*U!-dMZa zJIg!j)Px#VKMX9niOt-l|DC?ao5ixIK{lOKrCFAjFX9H*14g{$v7tD+v4|S>a%pv} zXw=i>aPrQG1!*V~=p|5!cISL?#Yl&IFPL60pZtLydO-Oz*T8D|?L9!@bf&gBXLd>2 zTal9gxos{7HtU+x=^RfaME8K>Z`+hevI%dtlR)%V6ljIn}y?Mm|E79<^h7 z^$x@LUC;oX$?7&}eD_!>1hDX4ftJAaRnp0D4N$?=;99u0&Y*=fIvSmjRJHa+hm!aD z;nKs>+ec81Y&16;{o{tYdyGEv*Sv`V zHMqVnM0VsAP33`UJRCBuz;FlM>9CL9t^}qpKx7dJ+q@qJb5U0L#2yF*4SVrNGD>@| zXjR33Zu%Oe&`?ZAC`^w z*Kb0n08rywU!|~i$P**SVqAYFL4$MmB|6Gkh4r->Hl`Uylsz+=kw8xqH;1#xyO6Q? z)2{b=&G{?iS6pOCpZ@v*+rJ7a#t;|rE?ySE;feDL;uZnh-1>Melo!(mI<3`wEZLvH z0qGRyB_`}GOwl#-I}PLb~J?(P&Mq`OPH8*aKA1O(}Z zn?^xOI;25Sf1Bs~zJEI7Fb9lZMfG0*?uq4rQ&{xBhcm0%S|nwJ5#=d z3C9D=gT{FolB)WQ<;z^W=YEr0w#hTYzEW-}_BP(>x|B%Y0p0R{$$FLM@( z-whdRIbzBgpnA9k^NNwIndSC~H&lG2+y>tqINXWo zI^>h!JBgiV>QDvo76ID5LJQ)MDp&_GXp8p|Yojl;VR?Q*$FcFyAsWP!#ERX)_L2@x z{*oI4j|BG;XeOTim&~1)zrX(r1Sb!;K~i`mt7;kBI(VH2V-=`h|EA*zeO4u4kn})> z2R*<^I18vLGb9lLLBjBI8w`c}8pFU-n1g1z2}XxL+8MCXeu#5HoT{{q?>*^M;mhdQ7SnMb>=3o5&mqb^RJ+mR5rg1jm> zAK+y?6-Rpg;+HyPjV@TqW)32efxYt(i#o=G1sSJ3NCge0#Sr`G#ZW_9Uhcb{k`>E9;a8%*%LP6XY4g>hKY{iL?!0mHrkke zYkcO6fX+8R^3e8j>Va%xdi6uqy5<*!IH7v#Pkxv;Tc%}KW_eIO#?g2p&2>r7F?B^o zdsOifjM>}iEiziI^{=)bv*!*o5IlZ&-9!u~wWQ1ynC!M1vW(ZHlb8Di_D5ANbRxi( z_Ig;necgIq(O>AzLX;D9g}#T!%#rphDw$E9=JY>ZTm?&|H`CpV(R&-_5YFvxn6&E% z4{r+DwCCHZWEZ{|;e}Dd!vDKmZ%66>NMl;mCEQcma#=}8zoWR+cw9w({RJ+T-U^z) z3eHk5d$TT3r}p$4xW6yur(W)4@ztgic=cpV+SBSzS>d3^O_IJ$qWqwSng5E8ALQa4 zcVJF#&KT>$eC@FomECx(?INcsMIIl7kbU1@1lYqzpPa|;c-4!prTwaFpFlV0N^ZN6arXhnMallWj6oR^ zQt!g_GEqovCN=O6)2n*MVyTXE6qqV8JY)uW$SdzU3+FR=4Cn&}6(wZfT9mR<&mnP&M@6 z)isb3irs3n8{bftfw-Gk)BBtLCo#d8EBI-eS4HAek7dqNwdB1tEWB_h_;AHFP`1^} z4wUG+Wjy3@X5HI463LMBPaKa5;{ZQ(zEkThU4>u91ZE6o_jwd&~h zmTNKzHRQIjdE47r*?;W(0EtIlwmtC8SIK(w-!$`Y-X)*hG|vEoz0SJ1y?rUJ{KFz1E(p0qP15AQ(P+8+AOM?AKETCpd`N0~>rc1?!Bvm{O|4({D0 zL7>MEeO6+Sj+MsgpXH$NRTU#G$BDhi@k-Fa%+n%h6YVz+P&s;F=7=XVcM#pXkp zz;7cKbqO!iJ-F_wYSxR6e|{KN=I@2{Dh03_@Imp}a`=rA?INBaT}$pH}&ohEm@ z<;)0wN!H1^a4$qYDIofhilin7uq+fJZ43Ax8qdc!d*=^FBTJUoYYIXfLbUu8ULIdE z{Eq#}Yg@?}LK)VyTsN_}x0Xr^&E6$8FgQPc;59`(Y$|(cBVxMW8Fdo+~R^Y%aebB`aa94uf@40 z+Zl3on_nvarm#_smX1d<>+t1(GLlb~FIQKuAyWsdZN`+A#yj~&WaDY=nd+ZMsozQd z_jC;FFm4S+-hnNccdPWN96IXnYKPL5h!r-mCKJ?RDdbm62~2@okX!rK)X~cVw^0|s9L=e=A zG;uehRHmgT$iJ|Bn!)cc9J{ScSI)~}{ju&9e+*Tu*b$@G5m=X6N?$G)}oIzK1S89y0a@1ObK7xylUQaNM4ei&?P8hlJHEua)$I(v|B`ETUxlm7i|*qF7|+8WQ3AL4kOBP{P_`4PCn-rXuhgenGF|qkNswKcB1E zQ^KmFBnL&>Ro7#R$jGTFXWH8s7Fe+zTf$}gYLOW&*xVLln4#8$b3 zNv=M~zH}_ggZ`5H9hK_7?7wN>!txX)`Sxa36#*^j#Z4Z4d(Vv4q5wK~*_+xa_8t!b zS8HV#C)h_J>qW=_+;V{#XYk7Y3Dj%&rlT9u$M@fXA{ti*=8_W1UtD{rJdL{uG74>P z#Mx8KI5gC7j%IIDlvyLYD}GZ!VBv=MCQd}I10S^Q13u&L&rWxp%nLtGYPl48Xi<%T zY$G1gVzEML|J9Z^5Bt434!=JyT_Q*!SQ~0q5qw)3_`^s@g7-uDSdCVTIeSf-bLEL@ zg=yMIzX5IKlV^M$ZQ!HQw6U=MqLO1F&zf!>yX`;wavYqGy~9>jNxrWt&J6=yUY;V7 z4I3Hc1~XOUP3yGOJJiT^iz^E{)}Obg{DFfQ6rl$XRsII}?cbWZC&D$W+p!QX;>EKp zln9=)aUR$|QHgbs4ee*7L}E!kYp=*+L5RrEyhu4D22ogz7+KQsuOnxE>0>r7^OD__#J~| z5Pu&Ajd`2LU(V9i25(dr9%zH6?M9!>bxHJt09=L)BFzaTNt4V*UZ%_`0N4Y ztwKYl&J=NGhIYN^IS^uDf?$7bEaPa#CBzrEf5xgrLJ7@t*}f||?l7~CMw3U}h_s^> z#VqdN$o#<8T+{H=I9b=L(~3Q-J@6I}+~%vdyY-48j5@)z=}=nuz+JWq!4;iUH3>bX zftZ;nVc#q`vW>n1pQCBwKY!<2c6|uq;FjTTW%c)9>S?ni34^Za+9yH zpnb#PW=i?G)C3MYj?@>d?LN}MCCeINKw{PgifJyW=>8}hX5=KxwoP(2D`;OBe!M8m zH#Mk{As?nsu4tX{e7plmy>74`c)SP8p-rn)WpAJuVS$br)la_FDiM4wkuiJSBX%YQ z$tf=n93;M}JTYA-y6qTf`W0kFJKsmq+5JPuk!egDW2E>u!SU%Rpa;MJgLIPIRg+kE zFx<>rfb!T0R!)x8GJCJgU-*2$w;vjdEk-7?HNcJUEon_!nr39%6Ixs9G&X>#`s2wM z8uQ#i3E*{n#4&N|IuctvXg>fI2YK?=Bv_-XCVjt1>wOg~)6up84Ap-mBalgA(0kKQ z*K7~#awyLPh-E%!$Q|2uE1p-+;6DB=VgUo>32{A(3Q|^?njp-9 zHxlgVfv<&fCR*y#%3a`3J(dLiF3&y7Q!D;eQ_DWg?5WU1JDmm^L=weG)(YWi78c@t zvnjBFtKt_yffvFc}!P%5Aw|E zI#Kv$;}Ry$m5(^Hq5jAEg!BQiNAhmQXD(G5K9Q+c%ZBe>Z>v{I8YyE4#gv1bXW!P&AoY zKXF&xgs?_ABRng%(EVfHwE*^9AbA$04YzZ)U`dDA#dTTV_BBYy z6%)bP`?iT$DI!cjqjvlERd3hBXZDPzVN*gP+LjIC;E1;YsE-U3msf3oXa2b(n#3oo z>q$GsXxE{i6^%#dQ-?Z(YGM$dO% zz$l?pzPMB7e5owS=-B!F2jbh)oz?qinNJ{iUBInbb$OPTOVb!!1>;cR{%O2Riqbgi zy{cH{cg)G$z*zGrT}9UU?a$zdi=lpc`7*`TQpyn&NGuchS=G5TU&pxg*j1@d0DFedA1n*@ludZs&)8Rr^@>= zpw`QxWHe?{9_xy%+#~v-l7~%`4 zEXFs1Cyf%0(zvt<(|yE-j`)+#*}3+Lf5&iK{c=Z;g8QsN6{g44*C0o%-D)(wpc8i$ znLnVOM~QxOxSSv?GD9+=5a4qwYlyJ|=K2M@gg2PUml0>7J3Vi-iC^QhV_t99LpJKR zT71uISI72LM+gDBYp*bun5@Ifqi%2Tp&n^&TI?` z?Ppo~0<_r8C3uC>@A@u)UFiy_oC#Qupp{!y@Qmjzjn$ILv?@@hBtS>7e8RoM90+0T zgTj>S6Vrd|v@_6eIRQX|en#4XEok^Uk=yg$>v;jo71sZ};AgCH9d0=X#K(hP%NHDv z!1Ms3=o3J@vIL+CX(s415o9bsbg-zBXT@z8DFN^ zq(DiZjVgQIzG{}l>;J^?saygfTIheNN zAn8e2Q=z2GXfL2V#!Unhr*sATw%}^$eGUNoV_?)1jg^@lf07$GqU-4eve~-!a1_J)7YPx>%bv@R4ulzhfVZyqOaGBQ zXl5!$kxL?*90OT*xo1uEjWA$I6UC(9u1EKYD<#E-Z1Kib)}v$m;i#h$7y)Tl z>0CI3%?Jx8{zoV$>BB1XtKn~iuJsG-u;t8 z(Ec<~K}Vx7&3RvXCyI$93GPHwCmjPt6;UfcqBl0#u4v*j-@!jMrT4`>{xgkmY=^Pn zEX%vaV!MponPVLwtwxrcr;~5vXqAsr@dNwrq?f@yOWL~P5)2gcLkuEi!60il44ztv z#6^zbGGqvCtW>b>Gn-OQgV;!d>^Q-y>L0YyGMJwI(a?Y#{%<~TM8WQXug*hp6dCBa zA;*_^fl3xC-iDo^Zfa1Smwz=D9FA-`1;!2d*EC?4f6rxBrJ=!g7RgeM$OM}l-2zo$ z=7h?pvfTh58r2@)%zgO|wM*8@H~R}d)>nvYWZqk_$4{Yjt0CjMbFOeDi#$Zy3Or>H z8>^HVK`R9e>W>(*^B~ka4?GjNhx?NK3eKSu^qQ{dte(Ke!&rwI_ft%O=;e3AbVh1& z%y(bFU)$|0dTTkFh~OSP0i6>ngDj0@*2ASx(g)(V)^D1`Wr*(#YOA*SQt7dAkwo%H#B}h6)=CMm7DxkEIQyO^ATGF{`qx`-746> z^?kpN> z=VeMr7sy7a@zb3AIodHx>oDZO)1yJ4wX4dwPJ-<~0?sA6mVyOvuarJh)1aKN z&VXWG^bJ^&BzS%Cxp<3$Iv2>{`fKgz$_s!Asf7nO8#xi;Xuhf(du>x#%MU%*{L+Z`i<_V@7Ney71 zyg?*!>Lr-4UmuRY$IdjyuT2!#UeC!#6zA42Q=IdLFxAP6naR1$SGOv^z z3^PyhCSEp@(wB`QsW(;!c|6oUm@>c~Fu)m<{U~9CQ<2MT%1tOH2cMA`u3ibHeOOIA z6ysyGZVxcDq3ia1lByLY-iT2UFO&JoSFztU`ay?iw<)~M4^*x$MZ0Ia&6f1{VDM|O zD~tH+4C1*@6JTvRi~j^@neniW&i$o?Z>_=!F1#s;kLh;?08KoD^4d|?-AXu1=EaJC z@^raAIMqqJ`gy?@FvHT$C39CC5gGjwWITc%I7Dxc7Dl~Z1X_hbmQ4R)l&QeeVG?mvyB9kB31CAU5+@s3?!&&2wS`rkBjE34DtSj=SdHqQ)V3s|vQQlDi-U@s$vs`A7jm~1`(P z5-G@};cdnfCpx$_4-WW3W@dGj%)OYpv%~UzVKR&b{w*~GN@Hz@#QX-EZfb-J&ZaO< zr(5mA)8$8Y{6K*kJZ@upoNOP-&yXN!L?ttwvOv7#*Ni`+XT6rN0-0_oMd5#s!RcDE zB?_!a-vWQ1A7)!ixm{-E1 z?`Xu7P^{fu3E1QNc&z9iW~jq*A-SC0#*Q$k6ys8K0WdmP8X5~QapCa@%t@JZl)>jS9*UpSlSZB+nb`4%?Ncuto9)=@`fxgNLiib22lEn<`aJAR zK`QL0i355D8eY;But#A2Jt0P|=>eu4IZ~lAx;BC1k}Y1>g3qvG>5=1u^o(e$RIF)v zD~6icr(pX{Hf!^ddoUaY*G`;9A2|159Rd;j+*e=n;LyzeqR9CI_V4IK@Rvp9eN!SX z%tU!1ly*4D*W8R8F{=%yW>TfwW0}kGH1(naArAf938W_9jVW{15(GM=E6FFLpPqxZ zDTk6jOjvJT-aG!J#8*Us%2d*n=DLD=thm#moWbJmKS>`-D0UX0+a4*SW?KbQz?{Xc z7HqRC=L_9pREyG1>D6A*7wF1Mf|+9EnS`o96_8S()KEI=Fv^@zg2bl&)dP{vx;pg! zhDw$>*%(*;Ai1^kYvNieNLm5nDr!m}vg~y!XAxu0TortmRt)5PZXCm%BcqRm) zFYcv8qfw3U=8EV&wCQ21(_;J%UjyHdc@~FWBo;Yl6RDsV3-JddowV3MZY*zv1_@O&9Z6SBjjr%?>A_9JNpF8*zht}|5i%G%eAHGh> zKnuynyU{|L@`;oi8WZihB&!Iilw@s^nwyP!`*Rz3Tk!+1e>S{kfs_X4I>VBNz=KEZ zZ!c^DY7`F@366%tpKE#C_2m{@Ri^NlzTnRRo(w#4@_EC^T8&0G(@L% zNcD6SScUKiWTiu<4Iesu9|^QRBqN(2hL3GAkuAw3GBkP!eF(qAA>9{FCwHuF9E<|s zcoGQ3Ux3e_RIDqNCdwL8(DWJ`i@p63Vh$I6 zRkP*97p7gpcO>fphDwb}=oSqVmOBxzq!K-{8YT;*w^hTJ7+>l6j4!6ow7E~hB^usi zjvZW--{n%$LdAxE?6rv~uekH5w4^Ful$&X2N3aetUR^juS@XMvSDQ0WU*LaYX;(1F zxWj=tQg1{?TuHM*YHFXL;LeXKuA9sokvAD}XXHFGelD~lO$lU!%$rtz^}BvJ z91`c;vTJ#cIp&OscgkRV(~DWgC|+-qi{I&g9-Wj>)E z+V{akl(&9ZqGVkl1sZU2dZRqX-z%N zyO}LDWo4no%v6Z*g+BUGCTd@JUq1ww3d$(nSpN!AnP-`HU7lN9$}2?4GAvB1;h8K4 z@Y69Lv~#I9ZCMzK+=*}-Z|uPRP8vt}%tw`1!0CGFxr5E}FI#mG`%tuk6tcSdns^aU ztP^T;n4H0KC<|+@b=+w#g_;rar}kiLTr0j)MKl>y1BT+@F_qO4yYQf=-47QSy2SzO zB9q^A_tSlBy?clyF&qvLKGGK+T>tU60hqp%scd(pvfw{nU~FB0lYE1`K+R-tnqpR- z^)@+dk;_UTwundJ&JLwg29wa~oeB&qIg5L|{OUryu!0Z`>suvX&U&EQknnvol7Cwb z=qp$LYUrMtX=eErjjzFg?UMIHmr^Qn@G4R$J!2bb)efU(yi~hsD)}c*^c3gm!K&p) zX_p(c8GYg9j5y-qZb@WI#JDE1UK7A96|fCE#RIHhKc(yHmW(pR6xqBJ11Ocy@~ zu|8-MZHBB9iG;qS*`}wXtknFVQG4#C39?n(VaSm7Wn1Q^DS2r_nR3$Kr6ga@Y~}MkT@>kjcftV z<>y+S99M5Xh(K^_19x=UghTMnsW^^7F1IZvYBc4RoWxY5Dllk(f8vb$ra336ms&V; z2XKj@(nK;FAl8M`RLBld*HH!G~u{clX3u@}xa~{PMCb4EE(N&(1(QSTP zJBYn%m}md_$r7&qInCpWMhVMmG7c`=;gC`Ke*J2V-L_}EdoZetIEzCl3Ixqc@QbKN z&66zNcW^hJBa~a{K`LBDl%cXNhWCXTPnrPsOVs{Kjv;n|y33G-0l2UMDfgg`sLga0FCG1wU5vVqzGLABpt+>I0-+~eZ?<=b5&bDX#+ z+4n7&Qw~le#Kz)r(2XB8fw*@&lEix;ub2OP0#^z{>UNM4vdyflN+L+yyj zE5cLshm%VZ9(yhTvSZCgeBI}l9PQX=p@z*tkccF}1KD$dplSveg{gYBCgY5?YS4Bi zmW|YXl0!4lu`-a!f@f_I?LzGD!lV;QiSZ}pg zpvnJG^n*V50A-o_{wLSJFTW`?Ndf`1>4r+5%C*tSb|z2X;o(I|34WWL=|u10GuX9Yf@n693^Z|3eHyNth#?+5N4Nu(bh~g}xoo7u!?kH3PN4Y4@IDpky-&O>cehYW8YXmJ) zoH(@^+^oYe(vcTlG;yLzo;E_VWo0-&oEzbZUwH;wr6KPmt|WELOagHrHWfA*guI5|AbwV zhdph!s(a75%tVCA6|O(WwQag@2gnbRhQN)7hFu&kXCL;~;9?FuGT7QFR9cg|FVieTzJCzo=?&Pjcyotrj_R_1we6d?Ch>f@&(> z`V{d-A@c=J%9c6Qa%bD6aR3p9$PIOSyx?bYZgKppzFib4wzCkWelL{Q<5hEmuSVqh zg^|e0tg8rK?VEZjnaQZqTE6U>_5czd^p*1$7xawB_n8AMNHBDi+nSd3roarlN;5_p zP1@SoP|PC&)ZIp;l)uq3F#T$G8XbP5@2|$~^ma5YUzuC<0^9u0qpxi{h}5@Z+zbf8 ztjE?K781EhT3bYeSUI+L_5@RA0$*;QdzM5mDXE#xT=^O}m7=iv&7emzr_@@)!7Ot9 zF`6-BOrG+4KtCAiBd+$@PV#%-JGzvuHix{;=~je*lo}%@>wO;lCL3?d>TR?mLr7u) zpok)R4(qMO z{80H<44oYN#hi1BpCS5cQzGoaP_S1(dIS3vJ8X5=v?JV1lA|48GKX4IKf~HeXp^zTYZ_t24!kp`YTY^BS$&R7Acmxr4he9a&1GDD_+(N&!sBQ`aCg$)i#GVO2}g?logH1j^i!W5&8_#qLqlU|eeo^@*)G%RIWU<;wk$cCyl8(Z&m+H5E>qX2vmqoNL z6k)8^rvv%2sljcwX~jFff9utCYl025#NjWA&?wtzYS35oZS$=;gs5J(;Z$>D7PoE` z((3&1(}cy=cA)Bv-1X0v=Q?nHTtR1&;i5k)NU`dq?UrAY`pBP_Sm8}6t5)Z(o1;Z! zPvoXtwkx=nr;JF}DS1D!MqWjPkAtUf5F_R@v04nhLd9HWF==JTeH^D3xkL$5g_f>C z<4JWc=yA6yr=G422G2_KH;&m>KtPOcBV*y?< zYNeDKR(p8KwLz@$Ke&F-EMrH;)Ru0jLS0AIzM6`N_py(tI&n-P|FywP)9VrDl2YmrXQ^|N+9exB+;oL_D;Cwi4%s}(x;HN29|vY3 zE$5AV*kv|UOw)L(utQ~DuXO!WYA@asuuNfVl(&1B(?js%P{>|1e0<;JCWt_?T}xQs zbNzHZJ6TN}f=;yEulq3Bmv>5K?kr z#&WRu=jHM?Agz4>7?=c#v%;S=R$u{ba@T`C3BNbVBfn2n%RPzMQh$BBx!AXWr=+>T zAVorvnir!%5tq@H?sf$8a;h(ZgXi+pkxWaedMd zoxyP`R@45ZQnR$GXmCg`onTGSzpG5#)VSh0orJ5aJA(4_UE8mj_{Bet_ng*yde-tB zZ&y>0CQ?SEClN9bN$iFxI+Hy%LYNY+WDPbw*IQo|NUr`p_Bp$uDkLsk_@pbz>R4jR zuYnLZsn$awyO;XG;dKr25@Gn=k}h{^Y`1Izo+GD%qIFZedLyn;^^)?d@!A=fUe&}k z!qzIJikcZYV;&BQ?*T~b@y!b(nx*L(6q!-yKK9|6-Oa=*N{OS;Ay3pMT7=4DnVnVy z6xFZ=?*eG2AZ?yj+vd~>S5WBJy*(|wPe-+#+$>#4@{m0AR1vy%hT&?&@AS9=oJ)b z@iW^!2oE|OOjFdVS^G`n45rzuR^WGC+A@9FlzyBzq~u9ZH)<2`!{<(qEE%stwSMvC zb`f^>nx85wQDh3@A%_mpN7F^*PUN2_Q-e_#vA3_#>)z!*G8RV=DK=iLG+x#L8s*p90k5UCz+)^bK zBay$S><Xc-XM4Vwzh8s_NMSS8^a7oA`s+$>Nc4YLtD@pdXQ zlb06!XuwitG7&iTyjA7YGsp-$;+D$F@tx>}dW|^q6Ho{k+`UAfMy#9ryoeKZ>HAG2 z%d}>E@3g(XCeR`>b!pwTh6LlhY-mq!4!`-bVsT&|o^{D-dGIPA(rLO4uT>&G3eS>$ z>K*UA({yw)**_QW@vwCc2(y%4j<;KvhGAx+Ke8NZe`8sR;3vzf<3oeODaV)BJ@1;i zbVYemsW$UnI0rk}zC$t~9HV3e=m#qhGisk^Xnk^qLHtVxCsP!sz0x8%@XB$$nB`I1xogKF>05SSdr_d{7nF+3pALW5*uip=vS25sM* zj3LCOoYH+;$_CNzS)4yKwB9DbkdO0!PM3=d6IzTthcHx#MHaZb1avAEWSkA3zS(cU ztDN4YUrU=x{20vI#PmHEb&N&M{tr%u?gZ5O0Z}EKY`;ywsJ(nam-vsBE%$>*0>c#t z9-+zMnvsQylT3jv;}rdTR)9~M)RvXKM_GCzs=mx-M*Un}++%6vE@b>TpdBULluO5G zjQBWiK&PkAW1d17WleDzezy=Y%Pv6D8B7jghH1^|~U%x$1vu`?33SHk&B# zduEq4j!<`P68AsQnr^&d%FoB$`t5k`4}tutY4om`(>IGaqcU-#82t}JWmOl z303!^Vl7^0OO_|=jUMakvY<@Gzc()v%s(nIcPqmb9R zN46mhb;!i>7+z3(MK?N$BE#kV_PSt+a1>&vU12Lg(C%L${Nd}yzZDn~d(Ljf+KKyX z1OFN>D9fcya=k*N-dlZIG({UxhTJaooC2B4?;N*47~o$;UH?TxrW4GV{`*^5#__je zGKYbrr(=OIuF)P+h%<))XJt5jl*Lo7@+N~Dg6E=?&>yHbf4rK&Nu?=e4F3A4 z$F0OFpin6U8jQh#Ypni9PnC_mmnYw5I29rco-dA0Fd6H6#r^!{y13bT zxkRke8$eRkR;exTb&Ol}_FL%O>3r{n|0dE-h7CT}Vr${~NxDlu<<9Usj8jJKpT81! zm~pN?20dANNw?_ane`C3lY+bkmk=D4%Rm9!M$3E@ejqW%N)vnv=>=!)iIPLiFj@3`HpYM&s~d_WS+iwLOEbAABm=I zC%nZp+1COXa&PqV8v+FEeppf{Z7qa&3toFTeIp{*j1 zs?*T$D$BQVg^6tGGd0^~KDhMFyzO6C$qd$HNRELOP}Un-rhZEA6s=*(JE=ghmWJ|9))+%>ChepWb+n%X}(LhNY z@BsbGJ1Oj7l06&Z|2!b}nc_2Gob&(&fg7hn=})^&jTl#;X8WM1>*S!zrx!bZj6fDH9@nH>MiY9hM|YU&8GzW#4Z&Q3STE|%OW{H1s|cI+_L1) zb%KA2awz8<4v)Pk`U)w9xbaY1*M%=a_>CNghP{au&n{TzIrb#{VRPc=dH>iz%$*}= zy;9h2^R{%EfM<8tNrC@zVmGq#p*dS4$Mswn3*A`r7iAKt3yuXMP1{F*hJ<#aQdC+m z%PQNuUiI7idek7W__a8cYBK8HU>Ki`uYzwo4zN#auxtCGZchhZhTdjOZjfsRyPW~{ zQZFZWs_~-*kJGcq0%FU}8^^2C46X^Jsp`{L<}%Ky2|2uk=9RP?yiT)XIX~OV{o--= z1Hh7G43&BT&SX#H8#4xnZ9G~ruj0^-*6g*wS%RWku3A8JY>K~x@uL+*aiiaEh-fe|>s!|P@ zKrY;qcC%#Ok*JwPjF^kS)DAnBiQgmjJc!Kh-U>xi^3)c%@8MzH=fdOz?!z^JLZA_X z9Azqr->o$JavU32X#X{=zjxA}z(aFrhAUuiTh!QhAgqco7J8w(E|J>w2{mdcqtJ6% zU*C4YCqDPcOM~3nmKYY610^hH(W!${kx~ES?5fkg9Z(&gYgr>5QS&u2i_NCU|2>Sp zGV$I9D{!au7k$3nCL@ZIUzSUtH3)$wgJRM;41cg0$sfmLPscphtqSDvl1RQEx3OTN zFLho*rLrx_ouX(JU(MPJ@-sV|wZH8Gwn{+7(v2W9r5z4eF-<|MYlSN0_@Ft+_%7+( z8I~fYrckxxp7~XZ6XK{_qJRD=d-W;lg!5;uMmH{AxE&O$gN7tvED3G0KuS;Vquc@B zlbWIsRiu0UXgcI{c(!5qmdt1GrK2zfR_%Ka~APrIs@7}1Vk1#eABx$MV+F~I=Zx{KVt=4noTKK8)&>0vb%PxSB77gVEysi(_fkt!7%Uk6 z9?FV7d*<1J(U9d1Gk*ca;rvI9CCM)Z)ph^gn>Yz#B zIBEsMl@a*KmIVO&G-ucv#DS=vQ(W0)LG5uKIrLQ3&>5 zlfY;OOf$a+$^W{REe8Zw&Qxa-z_A2VJR2QV-)_I?!ScBVy5$@7_9drT!3!Z|6LaKb zv3fxN76#}kEYSS>Ok8apjMDjUDRU^t-Ty_8Lj;rJ+b__Cm6;3eA>>aCq*uv%tEXC? z$>dNQE2y`yQv3PuFVN?1!2&$@7eJk^hO>|g{s6#5K@WrE8S~!Wz@!!rLfqdv-9#V9 zRi(bjivCjH%6sEXoImk5{sfe?+h)O(Hwu7syc2GAFe5W}&MUa>+O6jT8ejq19j*T;TKSrf&ClMIyo!h$!xJXf=RufYky5zW_U}pL;?iN zYTMTxp4-vAy?QgZ^T5)5Y8@oN*#*NG%1`~i|0YW!cc0>`#pUAzDs4$4xr-eTyf7(J4i_?aOh1muunW-fEMlBZ${@&~_+Ejo4H%^`iN-AQ~o$5I*HEG7F0$~!XPyyGmA?x|96^$RbZ=VTv zze;446hzj*w$(2Co)tm*B1wQXSjkLhg}c~}++>$hv+BwGJWIcu`*$yvIhEKBy};R^ z!X!9~_9PTIF0iYQ&;l>xOoN^6(5v7sWh1#;gyz>4zgg@6_Z4TBTPIywu$I+}{V~>k z;k#A%9Y*D{2OKFv5DtD~lVp({MZ7EC1IV#7%DF9o znn3XNLAIdO4OEE81inndq%Gcr-tT|TKTK#N>aBmNYRN@f?u3gu0IZdUk+H<1>_*W@Xe^GqE)r?MY!)C;l%?JAdrS17IR*m!pbp}cbv z^vt!5U&NSq5w0EyD3U|a9Edy^V#%g2>p7l%S$M_hG$QP*&*K#`#vVx#+*6KYz0Y2< zti-!HN~&MLrOTy*x<#vECi!}S`q#R}_g46s0hk9KIe1wmgHRQ%A?!U{k?ZVd9{?Q8 z_D?uM#DnKWl}oZ^@yh}ZnOcQzSJ~hw>^DKL+S79VqnBX}%>2MlPg19dnjfc*j~GeE zqQE^a5x27eACN-#Ki4`xDkrltB3Oxv`0o{JDtYapG>7C>o#4Rwgb|KXHZ;;7hD=!i zcI7H{9nYMeq-eSmlkv%)FEv6*UWjlJzyYVM_ZH%|%?9TXoeHT{JkQ@#ThW@r$w|H9 za|;TsVpTi&pwUj^LsDcU2NBLqSpis~J&gH@3cxJ?ZIkOPgO-I6ynR={Mgzbhui^>f zakDQ|3!i8*P~s!y!Y372@2cO85n=(~s2L2IvN&N7p!n@?#-j>tTVt?xFQX3s#DyHb zRDMfS7ncXzc?7%f)m0imW1|WtKL2f<75Pp0Wpoi7A(=6T zZo~K?Qp!>M&Tuj>UcOJ^`#+k_f}zSL+}d<^cXxNAbjPMU1*Anv=|);QB&0Uo(nt%^ zv1t(Ld}%~L5WnG^^Zf&2o|!w=x)y&JVA+kgxe!ZH`&#<44v9R6qh0QN_d+B#nWVyR z0~qqm&fFT*v0N4I!Y0yY#D=0Q3#Kq8DH2&y>(DSprEJ^e=u!k4iFIJE5PHIA`O4Dr z6~yIXDR83%H~hvn+m>IAwC>|bqm)mf+|Bq6SNI1n=fpGe+w=*OUApQwJLv6m!lu>J zRhB&!1-zgm^IYx)y#NW(;p+^iTk;nykt zaD;F3w?j1&cS|#^^v82LSjXqv1>-Zxt5z!RNEuhwE5JuX{Bm5nL}lqJtdXNuZUB3v z`72R028xtu@*d#3?(`He3#ivp9hllG$8hR7wW zZ~lBa{1y)7UD*51arbAbS4$aa0q<5_>Mfkzjqh|`p|~J5DHG9^kTpS# zY?%4XtB8^G1W7$R1(ECNF+9-KtD!?aBlI6ORcFURf~)JLqr)Uc66jaPfe3>w;7VZ} zLkSUm6FVmY9%Ve8!w*kcLxPSTgN$)d8Io=)H7hp=6_B*+vwr(Chk_Loe*D+07zHg! z3BFPyS=(HSA<>!`TTJ2`duER$CHXp*-??wF%RC+FoY#GphQ8T)H}nR6$UkzBAo!Ri zEpm87taIR^f^LVi3D256e<|D0{yRSXIfO7H_!rL5*b^D_2Y4EajVBH=uM-LZ6-hr`VJtz}~Hvt6Mq3^je zQY?3HyO#y`-i#m{s5 z$O}GDw4WNX_%PFEVdI2fIqCh=-(qx_!R-9WGiJjLA{@G#7dY(IE9Ho7keSHZRK9%v zd-6I)Hh7QImH6vwAwxjcSdQ*31VTc_b;ZbQ3w27U~wUo-MA-s)1^W@eE!hRg_yEww>n&!r;qCD$) z1d**8@5tVdGBLipp88isDluTM^rC;b1V2LOE&TgAx!`C>u`$R8OTA!aRKX|JpsIii zYe0cegXf~}-naJ58#s!Js!l%9thXWX{Zv*f8Pkb3=DNV~T!XAF4>u?9M%3GAZJwaO zW{H8dBOUZP%&$$n51ndDhKi9OLkDj6Sq-9S6JiOT ziWnSMK5U~+S%JY`EWuPJWv3rMIeb<~T8r5W5y-M0wr^({_4=&u(e=z}A=Q-4g$R6F zRHjbfChBG6BHI7C)HFtGnGjGvoLY05S^+yz{vw@Z*1AbMVA( z9f6-mB3XU*%1CvVSvd3CI--~oQ)V}56u*6;qE4JUKP{r44AHwOA$u?3r4d)SbTkN@C|fI`w^Mw)Lf9N2|iAE$QpkX#jcT)IQpAoqB6bY zMnQ%>t>dCbiN(Yh(IC}3_98)o)1hva98ul{;GL0m*~)9z&SHO#7SdqE_gyC|nv$>4{z4F>Dp>-=**5)?VB&;urC z_DU1Si`_E0}?J8KvCy$A$a zMMpxuRPJOY2uW2eKrT}s-zZ33(5d+047^%rKAd%!|6V)bRO=GXK z8<<-gm@Y^t&64)sDYjd#%II%LU`|a#$|SeDs)X z-3>cswQjnPT< ztxW?Xnd~$W)D_FZ7Ani}rcbJj*IVY%SjomXD*E2=ht$ByER<*b7x=HA3Xqf+J0M-R*rs_$D)29QHGEvLV7MWR! zWS7b~EM4W4w;{k}Sm@j#Yce!zkbAKgTZl z#34zaV|^+ioxi|Ok~wy>jCe5*@;Oe9=w}9GLh(^0oO9hw6tz%jXI9T590|V2SRJI)n|@9uzFsdKX-qB z{k^|WreL0nP;X$YR5-Q{R1?yjwFfEX1h;Wsf2o& z!S$WT9HjLmEeW6gZ)Fu3=^^8YL9t1rU#;XtAnPp~*ZXIozI_A48wxL}TX3Ti8(*Pe z)Uf}h4z^cHcK}pZT*2a^;`M=g_oTT`(U~aaSIQ5GZ;Ftbi|`Xb?0K{2Xoi=mmuTjt zKx}i_x+0^7W94GhH7KmQ7%QN(6MV*8i&?KeJdg?ZY86P`155ZGXW`I*xv^IZe8YJc zCfs>nY^-GX1=$Na@}rcrh&mzXaJjx1S$jIe@8PBa$V}sUtK2cv`6e}D#H&)7a3073C`f%e6n_@Md*Bpuh2-`KZIW;X27hwfxx;`-4-8 zEK%g0o$id9yWJhSE9Ogv01GB>y1@TpUBBTM!@b1Gmd&r7dV%q=S1&#jDgJ zZd>z_DAYXU?@bCZ#%@WH1jbURXg_^}(+By3gipW8llD1xq#rK^OJ2JXLXTh=<`K53 zESIazkOi-WLyfcbM4z~=z`t0{H*x~y$6c|$>7E7 zmk^oF3^1;GzzE!i_r(CkAOI=SITG=H^8Y4^neG#c8su5 zVQI7iR*#@c0S}NdK*OrAdC`L>V7H8_ZoGo9W{biYWp3qJE5A#3c8Ag81Duw06=9Jm z_f$eG_aXynA$}v+pE;f1UxNgVK`aL}jF3rsi6N4KOvKUX@aMD2_f)Eyrq;6TcXswt z(`NkHFKQgELO|`Tv2C{?Q)(?L(feyadlRW7W$6&P0e|XKA!e6=uTTpRKnNno?EwSG z)X^N`O`cdgf@hxjun+LCT_o!uj)E3!Byor&ER8ZcdW0Co4%30D=?pk%Ka0IBzK)Tc zFo#3um=Knkre~;e3v0)j@LbFFW&aW9DGLP{}zs)H%``?OfCgFc$ zNDjj&y%gXGMM+uE*aP#GagRRSYvCVBi&qGGuVSp7R85n+HQ=RfSqHhK8UMXA$%yYT zL>~>KZ3b#mr@}+v!;u8jVs(4n!5~@2xk$WFDTpzh=KU)g^kj5@b$gox_(`%?rH#Ab z1#weOuHX$-t-x`asdq$8#2Ok9Cdlpb@kaHNd85&`_5)}pC;lhF1Iq`*4_^*EnAyYpnW*5sc6#dpd(cVO;!)9*pBNFZHr1Wwtp@`Ug#Y+2Du zxyr{L)9&Qa%{1J%EpWyT<)k)+Z*l!2$X7mK79A|Fx3izVr$ewAP9TqA+{eERSAw%P zVx7o~uwyg0;&LU%?T3TRQXeX=_DwzR(z7Vp5f!7<>NE|Ter#qyo8ex*fGZ53jdo@< zh;}9i*Dh`tQsnEXG~6ScdpL*PcZkz7Ec;4@nuT%{*9Mg?J3{da_8jDlw4LeQ;ByXh z4t)t23&{b?yN5}-Ms)p@$IFaAC(yo3%fCPsOm?yLZ0OsvW#Vgx@*=gc6R8<^Si=o0 z1Li&)`WYPhW4zXZ)x;fGac++bzJt;z?w0Fj2^?+%ihzLF*lu2I z`pn#|k+w$qn2D+aq8_UzxtPX&UYKDB#8)t@g;mqr^@9sa0?aN&hcno|azl~(ZQDac z$_G_35p(UPF7&8+4wW(`A!D57Xfpw-w(+zrZodV!{7WL;Ev1KVXQ}hZ4N$y!jJnK3 zvE~S0@Xg}+q>-)F9#ZT570dj(D7?pHX)}>;-RBd49{?+WW3Q#&g(@sT-oBZG z&&`u*S`woX^e^U{agL=XxmB^+zL`S}Qj+OTr4MfgU;aJPe$VEpU0Vo)IXG`zF$Gv^ zO?s$vZwJqPH5Die?5i1ju@?AJ&(_T6h#+VR`2X>|oGP!?#-X^mw*e&_bGj*+X^yEm zLlhIYH*Fp7@?6SaR7To`4B=C+Bx!V47^pWQSc_PqnspQC(R3_WcAAG=n_AxPYHGTx z7I~J^sE|9ENH_jPF>5KiGpT!Erq_loB{ZM#=d{3%C2?ERt)jCzwtrX{cv9$}vsP+Y ztgeulo>d#A8|ES8&LBFv=l?hR@sndNb&cxKK?_C()Bu}}dnoNt)6m!}&cRJY|GWIb z`X+5kbZ297-ezU)ew%9}X6KkDI|gkoy#a31(931rC`s9`g%~JuCXzW`B+Ucb_&cK; z)lx>u0u>5+l=8xWiHqIhOo3>z!i#@+NEMSBc>q(jnr9pd?5Y+_rJAKjWEqb%sybOl z9PLL&_#0SAtoqiRA4_9-uYRsfb1wfigU9dFsV%d;N80$B|C7%yazrGeWtLKLS&&mO zzD}L?wNb}C6E~#SNo9%)&|lfJRQ}h(scGE#SOKlR%}Tcg>Y0?v>n)XWEONEE(9uKP zuUr!b6t@`;EKU!|(epYBx?m@3@3i|2@y^eoA@w#W_0v1Ws}NvlNl3R9U=)7) z$GX}-GeXBNrxy&<5vr8aBsZZF+D`q@Pk%XrN|sV34`FXXpHN{8o5L+w2_`S zyz!9mP)swEKqy`I@}2Xea)?~f_;ujHJNvo`*160~IrZA#IWG$WKR*-%WCDFc;8c#F zmqROAmkwV^5O5gwF1r&_&%1jJ$!y_cbE(nsnld@`v$#s^(|Zze{x>D=?>+te z<0Hw$KE)xl&XImvMa4K${wg%Dc4|T=C6sT9unc1tV5;~qNmlhb#y?PzH~jb9TrhTA zg6CcHLaD^3ssm@I+lmLX88OELQgh}HX0DReBw-4xho>933Qm`+2$WPNuRmnze6Yx3 z({~E@JM7t^EIf2;40!`DAE7<5$mr2#{Z*t2mmDI&3}RH-VYRpqx>fiZC^J*!=xMEc zn@VJ(8afQ(GR}G*=uB$& zy$97nJ6Bkv;i~F;=SmH`Th){+yuYp2c&bj7MlQb#WOc&-po}_Ub^)b*7Gk>G0%Mnj ze)%s`#3o}c=(RkwVy$ipiV2<9t}{MLn{&NVotEmq_+()5F_j)AM3n8-Q(}F(v%1JY z)8^_ttj{+Z4qfVp?Y!214C2QM67zMfxn>ly8S!G=VpS6fm}PN-t=kfW4KMdBOeeyL zbR|@OzUhw~f$|jo?X9wwx7bvfv_DGkvhZ`s&dADFmgf#f2^V@0h&Xn!SY7lxGPIl2 zo8A0@=}Tf4|D)>5r1N3U$Z|n6Z!=v`$~6jMLX1bP4#p50{_!m4`esXRhC68sZUuE? z+0=5brQmM7-D{u&J5u7=%Qqjus5}>i<7L3 z_$GvJ|M)$5R=|^FDBYqM#`~r0smhmhZ-rqg%l%xE%jSJkf?V;%#mr6}^prUxj$i0= z>ZD#=lFysQiK^Liwy3C@b+23UGBVipj|gg7++sNW3>6%IukECt%~pgldh+hzRNbQD(%3Wn z59|rHvKDbcEmk`wyVE_p;F==1m080JH7ngtqupq&f%G?1m~o|rc!j7~RVGbB-LN|F z4)a(rRnt6laM3MA{`a1VtJRGUnwmZin|qBW$M&Tuxs^gxGjEe1^JYo4ijD0{op-_F zeF*o@iWMS5sOtQQd3GLxtZ-9K@686A+aF0@M-M3!by9OPA>mxc%vq)fWKQM>rfQ{L zc07KXjdGabzdldI(IINiZ}YzN4JX9^zI7f4Om4iVjrAOC>-=$eQr^t&Ry{PGq$G1GUQV#R z=nmsom4HZT1uzi(&GdX9D;vQEvP(R{YX#pp-##kK_FH;&@c2VloOyLJ}me7#P|#;5+VNCF7*_)V)zFSUDr%d4|9OzmBtNRPVv%&qHNStI;Is(GteEKKZtUU~NbE>wex)kvrkCX+AMrz-7OZapx% zn9KP#daY=ctYw?}TeZ1{bVXO+U!oW%p1Sk?3X`w4U*p8Et!FwVOQMo_CIh}p4wgWj zKjzOC*Bz*+AC>vJV!p*1G5$ppojUH*u#v%Yij;`dXprh(q0}VuQL>?trd(bmTCl!h#xVG8NL`-F$I><0FO?c(iW#!w=z!?%Pnz4_+?ZUi_AXCTi_YnQ zi&)%Ftk@}Yig$o|*OD;dWrr`>wRVmGGh;=(7MDfD)RuY6s{3zn>#JtK+&mP}nTN34 z8+~8?Ojyj7CxJ(i(jk+GM_kW0kv5X7-+4P}M$Mj~c&U&7^UR&clu^hQp zp_qN>lh5+(L2$>GJeAF``6^tFFhml5uLdrwfTn=ot5N*;$Mg}q`BgKPMA`-z4Je{b$B8f@NEC0 zfb6-x*~!_-OJ(T*i3^ggRw@1RZqklnHk%~8r9KaX+@V0a^it~RMU%kGyK-J-?eX^) z6ivwvk+_Vwdm)CWu12R|;?(>1^v&n`My*zmx+VH`3;RDH8G=Wpvd)!``P)(-q&cc| z3L>exbR28nfe8_mP?kQXg^hE&dC)7)Q<=q4WYr%h)#YIiEJe>aNya=4J5Nn3@y)6^ zwL<(zwf*%^?!$}x$rYU_+vR$)I^}=dbFlr%^P1`aQ-F~jZaZKKKRyrn_W-bqCUA3R z)@2Lh{|Wp__6FMFbN{8T5hvqjGH%3+U%z<`S_5yYt)zDn1aZJ1ni7xOOg^rACc1KT z_0>95cCxMe)Xfy=(U(WAu^Fi^l<&49lTL; z)GpcGU&}56gvZn0PU~WO@NcdS;or93R4$4uJoJXn@Z{2V91Mwx$L)_sgv;KLoBrai2M{M(KS5%jBQME<9@2`>mE0yTk|X!u-IgE zcjSvpmRLCU^=d6=t+Kz;juE4#@jomwFf@UB*JV@%kF}j7I#=ks;(YQ-YO}PPF~Hc~ zDyiB#y(~uiNCwL4A|ssgrA{i&f6|1kCrp%yLavJmz7#3iJ$FOATG@QEk~Si_+qA?X z4)vn5_A#yEZm(F2CILjp&gn7)di~3nM|l4`%wmXEPb1H$zx(Y@NYA=44MzK=!bhIY z!(y=8FY+#-+?hd@92ztuT1$o2c0dhT=OePH|!Pa{`dx0`qzwZ&PIl*l7Tm+MVtOsp~K$~ zFCT4yGBYW61vmI2f@)@DR!x=OJ|Jw7WjYl3man=8M$ICzY25^nFf-GUKC$#vajl~o1U1h%DrnftXJ2slj$?OtFwjsag2roBQjISd$k|p!BSKr9 z%VdN^KXyZS8?p4ro$;92W{W4I4}EFre^UHJNEf_8li1^%3jyrrD*a2;!-JN|i%q}t z^-n4opGdq4bP}>6?on`j2PJ0ICsT%HlnkCAs+E)i0yTC8LQXI+w^QQIWEc1WXxTCu zgKpzL-Q~IgyH|tSoX|EQ=dUWm4(V&kafhtdE#f7{SK;4^2I?x`N`6v_l?DMb{#}kd z94}v<%)WF%Go|zZCkf`DoHvmw^VS+Yo67thpe2X(md#1$=Em9XjG z0$IvuAf%KsYTNrjXqCIX)cbTJk0Y)y>I?RKbOAt)k9C#K!90^?WNZ@!*7KDVdi6za zT*+~eF|`cD=h(0X>fpOAAdbzuHA=&pCY49}I(eL|nW?*jRXhkQ0Cu7KNJ6dmbGbhi zXpW0jv&=owYm4)Rj(~O-zi?Ks59FT( zyYg4GK-vOXfDl1f@kRy@e*SO|81VwpRl6AhqkY=>8|kby~+ec?)ceag9C)|2euqjA9hD;lAoS z{S?dQ22|ltJ+O79`#dx6QrF=C{)7L%vA&R9(CB*>txgd2M7<)n{iBX<`Qb%Lv{aeP zl?T_F=l@gTN6hjM%p`2`^@W%z_(39 zY&Mw%$hch~-Ij_Fu!`mW648M^=)w^F{g;d{oeI`W;ZLUsu5js1{xZan4RGr*ZU_JV z@|pkFj!XF3th5su7g9A}A<@}@nz(l+N}mHbRrSb}e14S@$hb~$QidFd1b<;11%n?Z zs2vs+Ni9m}i|yzMCvYDwNn!oJRX8wg3T;e-Wsp{PNIJf%1#GIWP9SJLbPHR+Y4oyv zKHe^j&nst!$e;e)ZNj-7xSr5t$|ygvH)6vrf$2FS)E0hhX8w{EBS6ko1~=)En+;zq z890Dcl<)l^#EHWK$E(U|fGHi3ZkA3}ovI%goMuzxbjg>|!uh@&_ULcR$31_&-GyEA zWM<8Aiwtg9n-!Vm_z&tTT#D{>~7B zLY9dwnX;!`qwXmp5TaiKg;UhYfMhutL}k+G44z*XV5CG66(9#=wogIe14k{I&j#Ug zIm)y_L@cG9u)y(3w7O87pM?Zj=omIJN0|4|0Ibtf??_syqIU&yQPEo1EG)#bv`E52 z`X|@ogoHfMd1tAf~ICao)!BFE|va5O?CP~X>Xp9SHWL=Lrz}NMnD%F6^I_;3NtC@ z4bm9BeDi%4FTc?a3Ap9hgL2TBiHw=A918{e%0}z7VGyV0hEGH;m%Qk@i1JpY15~uV z-j`JH+&sQCmnD+UpHNcg5`KR)*~wv$Ne@P^H*{X6vs0|ZkE8AaAqbdGg0)IEi2Je! zz>-5H9;$x{S2kAmvgdb8{pBmbx!C~3_#%4S#1}9JzIy<=t&e;rT0Jl0Y3hK{D~(mV zET!he9j>uQquyqTNdQsQd7drcKulNis$4$>N083QiSJ)AB=At4wwMh98Q`b05@tn6DX&aR~wOek9 zh~frxnKc4X3Z!g9eWbycK(DZB(EHB`;t+{uBPNBz}a|!GjiwbwVmLSS;YEBKS{EsO6yY!#WK`LL2 z^5KN@)NU~bi3<~@_dgr;W; z!@k?EJ60trW@oIal8iA`ffG7Fw-S;q;ren3?lbgcJzn>)}Q!mV&NPcdnJ z=~yVwn`TG!EFf1IOO7?jCdE@0yaE}o%JhLrhH&j#RI6ur0xsn$C@n%twEx$u#<5gb=ruk6ida zzt=r2p_Dn26E9{5u7$_SQ`0sY*lZ(hZ3K5w64dVXOA~qc*|X2}W$#xi6`ts#k`+5t zeVnoXRc%MW?7jw2$XsU+{q2^vjSvOStw+PNSw=d}jqorl=kkBai2$e#e;9A;Gzc`O z8Z>1gXG{J?L#pro(0wm!Qx{%`-0iZy9Cf|{l|g_W>bi|?momyWLgt**DtcxQkPeV@ z1%Kg5#@<_9cs+A(U@CwYlY@g&b_qdLVAW`1hNKcFW+2$aw9AwA+;*SaC%q>8mNyZk zuVoq@={?4XOB|Y@f|FgH2eYp#5yFJGYE-(&gkN~jS*p<`-umfB=^*3S9yZk0N~_lM zpT)Uc1Kb)}f5lJv)2WFUF&;g|zA+z%!|pm8SPX5d#uuW{%!=fEbI7eGU#RH+LQsHI z>co=2n8c3`4FtKakv&ihnQEob65BbN;rOAH&iMkhjAIXdC(@e-yzc!_L>#t-3$zY0 zMhb@nmFc$)%N;YN??SbQb(SQVF6x7CINQ2Cw;uDB?58uIB6RF^cT@4I=kMdSD8{p? z!rQGI9klWR%1OhRKS7kRNuwm>dGmI$2Fh*fU6h7?h<6N*63OT@b~bpIkyadRyRop= zyW9p9FRde|gCTcf^iDViPu|B!vdSH$C|5qR~C zIaW%DI>;${R>wo6^CvkOn^Or>RJ8FS&sAV=;yXNeG2av8LSZ(vk+4ORYwXZ=92?&IT@il1L)s>lIm^(4Zqt&5@+0G3$8r_b_9?;M zm5Pc@&dQ1vx}N}b3zXtd_PBR{al+^nE=1HoUU%LZ&$CjmKp3G)P1W%RIMV(@fIp0? zWW(Try8JaU&Dhp8GV?YNfCOi*!#ebD3htfZn}Pjs+K#63#@zo1iuD};e4(bb;#r2X zF3n6R>RsKdsElG?)+Z{16O|G|qo7-;$%t=qK2n6Md5OHr&W=vN6o#RU+1*tb*&c5r zh$Q9CpjDX%!omy3?#Kr|Ka=AKe_*>T!+rgw+r5%2_0=}^wI!ABvdtfX%C!OFRX6X5 z1JRoC1C0q|f!cW5ZkxEO=SzG#a9^;2nE<9ThmZY``&j6SF22((DukPi zVki9Atd97HOQLITZgu@Hm(LZ$m?K=_z+X}p1h>L>x)Jx7U+-aAJxsE{ejy^sWy0!Y zWNqJ%=@Kr!bWXOV<9TnOQr{~|KmdOzP&KO6vFngH{Q5(-QtG0sN!qluQR_%fWUn}QtcHg>w?GoENb2^kpdTnx|=;#p$aS<=- z3Z!C8Nr8|BM`sob9HmButBwz~p?;l|VI;uIqfTN4(aScZ&kKM#MkH-RS7M@_*)*P@ z`N`G#MO6W~$W0o_*z9p|LNTTK+uRyc#}R!e$ewma=jGo*8RX!Zc7_uv=NS(`U5RTd z9)|@8t1{xx6E1S$5f_M)XPlkgKBx%acO?Fo9*nk^0k;*xR3(JHucCoOLT!;`5-*D% z;m;$3d;spnL@dMAzoz0;*gfIgK7Vf{zUekHlq#tsZ(^G+6BT^%J_Bwj_rfkpG}O*S zxv-k-7-UuMFD8t4n*U+TY1a#qWt-?7lg+w{dZ`nmNpRw$6!Fyx) zt${&%tfqK$v{;(8C*LmF4KEaQeQ%sRmKe8E<)}Y<9~OP+Oqt)Pv?WgZ6epFaTyA}r zO&8(+hhX^b?)%HSq|KCSUCqC&`QE8gg}jbhkt-%_uOt%%_`*3z(}ez2c(&?Ly3?y$ zbMK?gkq=wXfUMq9Hu+nwh2ZT{B}f2MqMSm;1$sT!xg0`WUv)Y<<0)uJNpv|d=_@S$ z-YdL*58*tfzs6KWJMYjdr1>S+t!BzdfQbrO{I6#A#2af-KU+`?I#oFz)ezn`iasZi z`?O-4#F>7Wm4-&L;D7Xj<=;r4Vk(+wsKTx zih>ES?TX7?;A@S{RteQ5#hh`~aAR7uw|QiJd9O+fdwV#175RIz_gT6cs5RL4Gcev; zGg6WT|JQEDl9K9cJoZUWVuwMd5wqOy%d&}IrX(w>m0x?045M(DRO^h5iApjZtWnz2MNVa$ginT&4cOxz=U*Fs@3 z5j--i)zk3R@O|#6OeFmrRxEOibzq_!a+Eu!{d=fT3ex@hMd;^3ym{1)X)ioQ*n~5 zbX1N|Z8H0BF~;f-Skiz|5xylF4Cne>h%$3vTQ_B4C^n^6cj`W4OvBE0)+0oS6^$QuJVG<_0dO zrT+}WmJj6HK6nC<{FS-9kb(@XX&>dD@s(e-?+zze0!V z`0(u**P%={H@Y^b#=;2C;+dhj%em5NR!*cK7UeTTpu1n04j%pp zY!~^+D!~q0{Gv}x}c(RkhHZ{ z5g&&aM3GkTG*SSp~rGNa)t@XsCP*j0gtqZ$JeU_2oFerJg`0A+0#?)jz6A0)+#t5Ca z%#6NE$9km-OpL|;f5@6D0WFNdz`hePf8 z+X_3YP3l9{s&?V-sxZBZ(-*ynH}+B__7G;j!#gm#-`C`dfh>9(%Cs{8qx9FVvS$$O zqT;PzOaoL;zx*e5i$#WUrOBCaf#i%3omh@16Ix01*rv_T=eLX0;3020XlS%Yp-8RA z)||{LlLiH6KgH~aV?@3&Rf_nthMIBe4-Z$HGm%+SBf`M)l;*G^^)+w>a$$AIX(o+N zhdg;f2-8x8jdW1{rF~8TcEs*yB00A{7W1H5qeuFy$r<@TZPaUCvUdGCmXDdz`&@Hs z>$T02k6Yvvp}XYHMwIkj$xN+z6B^`5_#8zznJN|-^8w^POKi~ko>vJ!ixFd8v94$3 z+eb3j-)(g3(~3BkONc=-3ngAmCn`Zr5=VBViPIA*WN%{)TJ_N|ETPF@xPp%scIFWB zTuy^GaeWn@rWxsvBX-0>QFNA~}udI&-umCXjwIqSC=Gug*l>mr8MTj;~B5 zt2c|ZRE1u{L;h~fO|*f~E0KmhJelklX)xRod;02YI{9*e%}(JpKH|x^!OdN4E8_D9G!t72n?I z90PyVg)ZqkG zVvHC`a83F^Z>@W;3^t&GJ?&5085|28n&wDM*_I%9D+?XjMJHqt8+V9jzwTt24w^nJ z4vi`q3!HOvjxR27Ya%uMwIwcyTcu9(-z$%k$7V3-?+JkLmW=@PdVCp-%qNJ_BQ@!L zP364c!(qWEhH_u}Hk2Eltb3_^ezUlb3OFuIxeV(!Dj#e7^iy<_`(g3#HQAc&AHXCy zQLxkF4gOSobcm(fpIf<%Yd@VhSKs89`9G~NR4KdVtp)le24ypL9FGP=<4g7S zjdwiTcH`GGR_zTh4=?T^UV3&aM*}$f3_ntu9d*M?@&VBU#0MEG?5R+k6{9dd>iDYd zX@`nRtb4>0q=vr0Y&!-MKeo96xeWA%Z0Qxd>}gnYV3kVG%s_(HdHAnA=bB3HzF&ow z4jIH$#KU>w)M*VYK{1W8UEJce2$WxEqAm&~Xp0m{-6@=luq_eS|47;H_dR4yegy}$ zL(_1z0=tFmkT>_o(#$!35zj9vUhWBd4Z^y0lpj>heGFA;17uSy}WyoH! z2GD1yBO*e(a@!`}mhW+v8RI_?=}5I8v#3W#1=rqc&08i9H)Nj9yL#Z7nh(GbuAiwX z`1^wUj0p2`s(;S?dRRDWY4+>m+*i%~`F2$EI%-o#N4>S?*ZtBzqmK}vkXt0J=Ny00 zERYfxFKt;B~c&dD2&>eOIMohD=|ByYx?ixjFVZeN&cnA4`{nM|CWtOga8~4L+)H zBsvN15OCW=Zkt{SeEO+KVPWj_tUhSotPsHbZ-PYCL|c74j}UI6tC=jnDaTPxZg|Ri z2EOG^b}hJtaht?!`$IqC{a2yI1)fiM`lh>058|KKt&-;@yJxNx3WKq|Ik_KAT9@}* z)utT#cQhVz?ccehJF`y5a}!y#4iS=+3P}rD0R>#WD6T(DVV4#)6z0onMO;NC^e*O( z-1Nx<^D<9_iEks&U43PfO2b34MTj=|DGH6Z<-%>cjqSQM@)?ae!a^~kc#-O6Onk!+ZoJ6Oybnc*30m z-41&n+}VV5{Egp|oRw`XoKB(h7gLK-u>7xdejf?HB@9%Tl4x|52gQ{7wDk*!J;4YiW^M2$}lO%ui^y&>6VffWJ&4n?pV6JQyQeC zL%O>=1wo{wL68m+5RjHGLF%2o_jk{E|MhrScy{KQ`F?V8mRCdgd+X1bd*Ngv@fhY9 z?h=m=544OiLR_QQAumuAfNGLB5J@Zj6`9r;H7GiH%tt2%3Qj%*1{4 z)k9X^k7VhG4eTJktwc$4I^RJ?@Pf;{j+y{{kgas@G`8V|l|%vj#ngW@ ztntZ-IzWs}+=q-+BHe#qem$`I8Gf=*8v4en93J+|yh-$YgccU^2L8|Y!Z2F9q_Rh( zbS%!;3a{G+1y@Iv((0nWpv{|~n9ZQ+1cRc8W{7c1(fmB#?^y?d&O-{^$J8?8H2@EmX9n5PDo78cV~ky$b6?J^;&(k zAPym|-A@lEu+E99XK*MFPk)1+7Jq&t2?Z?~0l=Xh!>URR1JL44tx{Wrf{DD zGjWQD5I-Qwh7%}H^gKgI3TESgS7{%7%qh%St?~<&JSsx>u`o8`hd%9=#&!GGjGn2N#(ChaQU>{kATj=daTak9@>AZZzF z>+;iMiiEzSSL)`fAxN3*Cd2Qg_F8h5h(@#D0#FU8?fmu_>UmLZ*n0;t``89_h5=Xw zQw^|g2@2By0E2;Gwih8hU94$uB=$|I3fX^0X$-ORbCn(BzX?v!}YKdb96R>QzZ^DyLj-|$O$qPDaW=lOeyQ~~kE0O&2jn3Mzbx$D zd>eSqTwZxCXU87bj{D{tQ)8vW87%(jhjk7=4f8;h11RHq3vTCP3K`atoP(CeNfC(runfZkU{uS436VAmvxG#Z3zG_ ztuV350Y-?p1(+mUrUb?53-9b6D)6(i^BRxq@?h`Lj`fh`+lW zOtg&49xy{*0qD=|S9kif;BcI<`NY1iU+#6S3kvJ*9iw2T0D4PY)rxhRY=s1#Ujc7b zJNxh=>`J^iW+i0P9fNx{O62&OgL6TwL5kyv&#++JiM-vM`)-~$Y0_*HC)9Z^>lDKY zjj| z{|@nU6*de8r24|D(4ay_meNYFlPLlm=tOM$Y5=(XLJ47Q%1QFEV7RMf`xmAbYr9FA zc)`O9jD2E$aRtm#%l1m%u6^YXSdw=4em6+IRxRxsPQk8yIsopRp>JraATgARwRyhuLdx_f` zO=+Y@Elx+tSCs>#Xz{ne``+oJn9{|UJ{59-L(EP8b>$4-GFS(M$wx3%9w;P=s+FWb zfc9o}BKtKByuZ|iPdl>RG_8Qu3x_9%=PXaqcbHx#t-%6O9^7Xu^~O zuhEtG_7G-+E#N&1ZpUqK>QLyvb&=EHprN8310G+&=!L`i6djTXh+O;Wg1SakCQbzt zbo7PK#)7n&-{>YceMzzu@+?9P^26>FJFFLziui z)2Hc(=X&2k6eobWzqAj zAq|4NYuUtP#i&NuE5{!tv;>Mrzt10m7rrrQs9lHmhZXgtXnNG?jpOOAi=D$Fg_$8= zM&WeS(nH#aY2T0SV~JC?-cI=}IEYM6+f~~0xf{bDg|#ZZStWI*=^>f z-UxT)@Br~FsBT6TdID*)F*;n)K&QySTrHpO0>W$87reAx^@))ObRHwH0=}i7v$n$p zS`RQziH$Bi0<1B8_ue0jmicZ&B%nf_BbPGxFHqWPiNKe^`N5N+yh98U0nshz*Ff-W zXDvtFzRk3{tlkb zFNSA=!Kr}wvJ@MQJy~W3FXw;q+B-GIV}9#aBM_i4{}(M ztCy$k3&u1B($S#qlW zG8rKtlvfv1heuYYdX|Q_SDdL`xQTp3)83irJ*W`hjK{WKHm-oj=F4!hh@<&AHl~uA zs?ZXt%*w9*z@g?F+jss8|GM4Q{4R}Og z&2Z0v6pbXZtKRkKnZV5YC(BX19jhHTS6W8{HkPc?inNlC^Qp)3M-Y*zRJcx&cmGaN zw#1BXaC#TY6ki}KiYq-pNUY7)E-?J7i2Ke9F+V%~{B+H$pVf+8tY+S4ar&`2ylg$> z0PZ=^LB9jKHgX^xL}~x4LbUCNz9uQP72Lkp#hh)*m$qig)$pTjo`pF81&e$H(Z_mk zsz|~EHPwd<3wgBWEt{#NWLnc^Fu0AifOBc8r1w5fuwkc3_pO1rgOHQQ0IqB!P2s+t zQxgSrV`^7^NQ{`n^4Zf&7ua@USYD24&!3A`KjTb;B$d_Yg}wSjU8cJgxUXoUFt|6% zBKlxDdGOGN~YW~#D;CbWfL2o|VV8@bKI-W#d3n&p_e z9My*3E+5rj@v{$yb5CZ}W~+O==B4l;dIv79xj>D%cLWv(BBMCp-aL3$dn1oW^Gtt~noNs>v+D*G@TKurP=$8T>RH_ZWtOlRrghFCluwov7G{B_8 zgYiT@H|87P#thD0Spm(?iyNe#=t#z>d%Y7)H3*v(BApzf;_2HJw_$iaU)>g4b%>*$ zem&eM$l2ZY1%0l)cp|qTt1b}qFP{^#nN=Bm@gh=YK`I!F-^{cX8}Z}A4eP&O`TRDE z*)-Fpu6Fh$1(7L=6w<|d5O24|aDk&in{(dU zG1vO4@Tj9&C0-H-#qMOmBvtXn7a0rYsk}rM>G53tS!wuXi?5-`+~F6l5!3}!XRos< zlE-j()+IaOl~pO%K!=oG(7x9?to{^xFEowy>t^cp{4;q!9gRK-dvQNEJC9}99Sj>> z+1ZHR-`|1W@Oc)WCAGFG!YX8G;x}1IdmS>d-VmAG4=>crnT_qyMQh@eb;6a`QnNU? z`K_Rz)2q~vgHxXWdFSB?x#Uq$H6YRd2fFBwR=@Br-vO*CE>ta{SQcuM!D@7QQiM5- zD3>STxry11bsr3oQ9VeFxP4*d2mI(IcDIDRhVSz$G#Zz?{JpJxp_h$j{UebXaM1Ejpy#7#fvZV< z9atg&7Fc)_?0Ycj2`o$nB6Lmk(#04-?_-SJt|W>bt56oTyf^~&%-HmT z9KXt`^ijFwBw@Pm)ecV!YF8ldOUmrfB>xrqRphElbvghM6)Tt5C7;!#SB1vOeJbd# z#cp=}R~5-^@5jFp>yhE(^myl%qTs}A24|=zMfr9+AB~DG!2Q>ci9d2mq;Bfmxs-M*`tgFRrRr_y z7*ic1nk8B8nukxv$0xa{Z2-XerA*BrCZtl}cuQI4r) z-YtdaHiZlrPj(dpN{w4 z50OtxC}=;xUA1GcWuz6KvS$|dP$S{i*OM8Sm;Q#}@NQq1>ZfjQdGXV*7VU3ZAE^~2 ztoSr5X7*wK_Jr##nboIr>|Dm#2r&|^dMiMCmUW*^kKSL|$EA3Nac{h9SAAZh(Eb6# z$q;j-IFvB9p1F^ejOu+4ZqxMdy`p$VtLb8C(!9Q#@`OUDQakR!;AJV4K~N8s=sZ+O zjHAEU_p2VhAq2O9VOt~mIU=W&Dc>q(QVu6Fe(qs(OrALcQg+es!AN2%MbBJ4(_V}q z+rsLt%8M0tX4^&H51Q2}9G{<$WErqP$IC4{iSd$neeK$Fp~Uw0@;RmHiO`5HBH6Dw z_ndlna5^$5@~_mMZ`>8VqwUN&$YyhX*t3SDVGTVP`nb^Pb=Ub#;}ZYG@57E`VNwdW zZG}+G{;^)~KdpD!%>2MT^v~3)WO4~px9F6R?dSly;wtSgJrNjYqyWWd#{&b!|Pm;ku74$!F<+*DRycqRJL4N4k#Z4g){W z_oT%{etYC#+|KUF97RitbBD(^KEv7Bts!OBfo!oihbu*RyZ zG2Ld7^sWCO_tQkG-9vdCWRZh=?DH5@rMZY-bMS{J_gt)tlA)%+*K3mkqlBFCtmQqQ zsyG_z>yNfqr%y~HstDL~T87j1x;2a?H$T2^K@NRLV~fS#HINgiXwlCL+ z%atF}c%`Ar%^Yhg|G-B2_n=KlX5ekvr3xbSCNjaF3(DXeE~~8hd>>gyCRDLZbR4=_ z1KqrZ`dKB&C~d>VwNrf0j47+fh{EA?^t;n-Jid4MDBvkD?O^@JEvz8+7TP19ZY~}7 ztq_$0KQgR;)95HAK(0q$@A((z4`>!pV&CdQiP&O7XtF+E&i-D#>;$@2w`x#Y76%B8 zAeBioE4u|)*%Zh_dVIKpX~Vy8<6Ry7%vkZeI*|S@@^^n$Hg*hBl4}XoOW6D%4>6S& zD}jcPo5@AL`eZs2l)+}Af)!#(v*{E};?1I2CR(b{DcWy=%p4bg=xT!hHl?swU*QT$ z7WL}7`&U`BNLT{xvE}8Q17d8d-NpSBb##K(&w3Y?%v!6KOe%mVgT)^4ZhcCXp&9n@D2I%_;btA>z|1# zeT&Bay3~vVnxtH-SYd+iIGzJtDPPF<@%|P>!;R<46n}oZt5P8H0FXH#sAPckHFw>Y zMbL8CK=oejdYg&q#t$G;xO^nAi8=ko@Y#)gc+>+a4~=|}Fdy1Wc%oJ@rpLkSD!fB5 zjEsyYks)TXg@3#Fu_)SRpevuuFz;FEysn*kIP{VT+wD1mC(|y28BuJ!=Ok-{_=ub(;JkV)sK4nJwC6lPkv}gT}I7E2VR8X6D zpepGodF;XCLG8BYOL|ps;iV-qO@IEeuFZS)dR!}L7I-?C@!HW4t^H%AL3LJ4g?Nc7 zF7LTC+^{T<+)$nL5XM)tu;)P+QJA@n*g0tDwT<6qxH^4pX{6*-6=u*Bbnul2zSLAJ zM$*|>MLx~;J8qT$RzIQ+0)ezR{3wkcd2nrC0y_qe6fVOu;?oXE6T4DLng&)cv8VrPv9MDmI=x7Awt$xs39o`ibb7dNlG9bAI7Bsk z&?inQmEnlV!mNd$=Q+ke$ow6jn+%kIbeIrsOTTksf(d&;MUyV;+xtFVq~scvaO=+@ zikjORZ7 zx~C1a0k;UF@<-FJ2t_5@+(~ht8an!R4SM-$kJUTcTYrifO)V|n8y z@2<4O!oAsPciX?0Y`cP*aafJEk*{xQN4$gb)oJ-+Hv5mkG_=_z&VH$?ffe(5mJ>IB zl$ikp>NQ(W3_E}Sk@tDU-C~W|PJ;!FUn8%A%^|$@l2}#E%H+Jt2qMZLc3U=q0^Gzj zmyHFm7}A|FV^6uUV>Vie|9m&{PIY?{VC{DjuU0mYvo0qlH?Sd|<&w>ttyV+YNjyP!y|3#J9yX&^zji?L{0`;X|+M-URDh^-h$IuB?o|T$w<4tIpy)`EbQUb z+w&?~-F$@7MEY4-f!9nJIn3KZFLlC4+{u^rNsu<~*?I_k08Q9wZqAehvC9;WTlbeX z3EU$^366=(9US%q86Yb z!?yalp2>OPnN@h}8l%eg*Jx-6&05e4KdlN!VS=pQFI|0dlb8A?Q#vivFbo3-(6ogQ zs4)Kqr6r&U0q3P5pDo(ooim+~SkW{%wvDhK zCW|H0Bpzsa3T%=i6n}#X!+0Tw40e)=8J(9*2i`W5>!x;*L?Gq3_C*Zim z?xK|PHaB2hvOyVGq#V?T6%ctciOo5;B6TFa4Ww#Khg*v#r z|Mxh#J?c3KNhg2%ZX|5?#7n7UTSS; z)8`9XS=fLJ9L$>&nQv&dzF$%A!t|5?LY%lc`wfphej|4WDePOu|2)F41SD z=>U>EkWl#1V}Aw!27mu7o^S#b6=o~-x5Lt2oq$lj~=a_L^NSR$6neNbe7`xmIM zWYo5vz`$ph0!EcJOx_i-l&=(%{gK$HYG?F>XMVvAQK>P(+a7zDpfC6$LWAPnrFz@q zk&x)!k4f@UxX(c5`qUh1E=#fHNaYDR&pQc-1cv-kRT#d=j=~A*RlmVD z6~!AtJV<63UMKVg3iY-8xCqL34hskT|@~NMtc?Qqfuxdn3{3 zX$@x$wU-Gb#Jyc>w~^l72tVRpmy9W8aX8twC_qWv;A-afc6YllzKoHSQjCpNHdBP4 zfZ_WcU<}z;DFHzWEWw`(&3l94s~Xde0G9;v{uBm}A?x@{t^nzXcDk8*p8*QzH_wJC zPs&*^&j7zg_K3X%CouDj$9Ad^ToyFQ`9ebFP}13pk$k-lm!^qBe>#4Q_fj`?f_SNb zexfiiq7G+z_Y(VM5UKwPc7%7lpI7vPyhE+S)9Paoi=7nL91`Br>5zi_D|HJTt?>VQ zY^p!D43v}MKTv8f!>Fab_omFQ4}Vy`e!K^c{?%3o9ST_ax@G7T#^oXD7~i1mOHYE= z(7XK1cnny_RCynH8>p$GJX%R zVI)Vo{QshGl_OYGAb8P8x}zY@8h65TI*>%bSEFQy763fcV!6dm0oyGk(BPA!e2)a* zNZlt_NF`47u73{O|4tv$Wq9n^GQnuK@mh6TE0R^JG}M+&l}aeKEqH6ba#5nf&wK28 z{PzdYWUo@rMeYtcombj{RX%Q%wB2@Hg3K96v)8x51_VH^aUnsXoz+H{E7;g5{I9k6 z_`$&0_2;F!+wB!7UDyUH0XW1d0 zq{%2;TCrebZ-wo5uM@G^F?`@MQNJ;o{Y||kUt2jSE8It>R-)AjEnJ~p@aNRU6>(CN z#MY!qL%<+2Cu{cvB~~fagwb-Wp!$&X9CtnZr_Jf^51Rs~qeS9c+S4U+Nr~YC3Q79=DW~;#CJ@Cg5_IS9e9uE4sU7msf3j6pw=&w7 z@4b$XO>vOh)NcO=Evp`Et;&&}NL>5_F9viK6Vb>Ue)t@-_d9wH->feI|9@_i6% zf|+ZIkW{f&nk9ws_-48Xv=32OT0!9b55fH%jy({p(J#SBo`YK1-}3}HR}m4V%xQv7 z;^5@q3XJ#QUJY4g0aP6?9fZFQL6;yQt-a52MrO(sM+d?s0RZ&6MqqeQdjGU*Ki~!L zz^cjdT9=@lH8|t~0Hp5?wD6_})RE*gGk<2v&e>O2%xBrER4d*w^hgkdBjQnCJix+Hu;4jvIv=*~O2ejSN&fwYrU}lHBueSMFz`%8J`*vS(9s4 z9~s_Uf2#fXeI}IjW&k667@%SMO0UV{p5S zXGn|24&K1Il!f<%au-Krx*?Os`C2dqD*VufU66;sLA%J&6$B-@tES?zb~>E|B9Gkw z_%-&#Ga!`ke;jhMvOWbngltOBWRn0D;|pMRgW(x+T@m(e#xu_Vt7Q+M&vhIDM5>s` z5JXgCaJ$%u#&zsx02Ezi#(?-okYh~gwbW>)qy$au2_~O`d4x@?KfDywcbG^s#={*O zil>N;GMMokd{uI40OSAju)%g_GjMxNQw6^kcZ{k7l)~azYtq?#ZZw7A7+o~VjKRII z{aAImzxv6^z%=JY>c~L3UW+YmJFbVY(=r!DH?WCtOxhoLyd{CI@7!HXiuM4fb1)oj zX<_HSdZgviax0=*oo*AtjlI$kpw_PepCocP%}R<9iS^QcNj8{rN|Cqd-M>p;K){V0 zZKZ(pn$1`pZ9~Mbh`;pTt+m-s_aP&&=XWHg-4K2M*{CsAkJ7lp$&XW?<*tTS{acN~vXG;=9&?2jdy)R$ofPlbId1_XxBn*lhuOH1; zmUz71I$NY0ZiaZf&Aw_5R^&lYb=k%1Q@mmZjWJg4Cq9YM`afD0)M^(9`%^tJzo=>9%kQtfnHhpVQZ-Yyj=DaJph z4!K5Rq9K$ohsOPYQgIb7?@gCX3|}D^=GEGIoV)2P^OPNT7!+{XX#gVPh^4A?V(Vpq zpZf0iJYP|u_eiY63`ta80dy9hD3H_HCSko4@R^StmrqoPeYII;&t9ln4QeX&BC43h02%+id>yZ2T z=i@PiOd6lVN#7Rx+LOfY@jK^}?hVs)hGVK+*ndPBy1X8lTfVHu;<@Voz2FN`qm+L3 zlDmxbfgw%gUK1WUKI}EabeHE(3h(gh=J^cT?E`K(Hi4?kMFLL`gO%EYF?=`NRkFZT zRipi;S#l2vion&;T!`*Ndo4i}!swqRhEBf-bYuhe@2ezf^v(}YpQ--fJxciE?-F0t zr7DPuMyc>A7**y;-xOWTu#BG<;yAhmUZo;P_W;^7)Yrfey%BEh)%zye2OMBp#Inzk zDdm<(G5uf9(TxS1_@B*+=r zAmB=S<4tFbRt!^QgQdt!n8^73v1|s>%SVr^pce(c&5;z>^oB+0Re5q($N6y_6(ra; z^VKMMzPO->VAmK=rmRm2gq2*fG=DNq(5jq(Mn5K)1&NSR_ys9db&RRzD@$J=*#;(a z&=dM~d4{aQH27~o@t!?e#tCjglpp+3pKy85?-?n`l*{;y_KyIrFux=QJcFtz2hD8~ z9-16| zGdOzR3mIxwk5GBDcCT#p+FoR?_m!!u_s?b@TB+v-=6-_a81)BZQMtzM(VSWEq6l4y zHjcBXYjT9`atJT$?ivzh8cs+blxlNA*-Nz4(|20gALr7ViZz~(YIh4uRGzekqY?C5 z@rFkfv7H7O;U2qMz0#n*y>oz@gHwTL{DW2?`siSOgF$&-JP~}RwNgf+`T4dXxcDZ!MBRA$zGJ5{zkVm$46}fEwb$S4kTB^Z=vYj@!UX+TY zH^i{0T%mX3DtY0VmJG;fx&1u(t{w&oeDS7aHx--YE)~I?0`-lg?>GVu6-l(L$5N}B zz%bFObV8}MkbY(x_NwCxykjTl@@mjGxrGRXmS+}wnN(QDkfmos6;SJoj2$-{4g|{_LEzO~0H;r+&L$V6#HXrNC;}~VBMia5p9q4gu z`bMDoCk|wVLz}}aS5N8U>XI8Hbdw-9;p<2eZNHYaMOqFFNsBbU0Mf&?nLAmdCf>ys zL*!<(i;?mi=jwSTf^~ss@17XK!-s9`FT>da%z)-=Uf*V{B~T4xZHEs^meE&@AqAH}_kL$q(PnC?$wF0NpUx@m#9VL!2AM{TT&T1TRz0S(7z{amE#Il(Av&k2ze3a+ z`$(uhA{l{kW@x4PF&+F*?3jZekh|-nFV0xEp!no+PE)nc`+^BzL0Q@bo5qOGY(V!+ z)mp!iccpzz9HRaNu2w|D@Aaqk_t@P)k9Uyg9W&y<4LDlKn0)fmtoo`OI|=u*N?x6l z5`bP<0O{PevXiec+Dw<0BrY*o#;c!w=pHDSN>(@p0N}_25nJ;$UNG3ZMP`epqkPH- zqz<{|*0@LnN+eZ3NE!aYudX#-6$WiFK)SS$-DWbMv>@(Nz&LxL=HxrwA7nw+X7|}1 zuewI6UVTs)NJc^WqQ4ZT>r>f|kqalcfTE{M&s>25w5rbi;ra^pY_L-6Wf zRT6lqMdyR8>>ifj|3(E8YEb~i2>6wauC%Syl>2vUIjrJfHfNgLd_&xzRw51IX*m{n{`Q|* zz}M;AIZ&7wV!4f>2g5Fz#7u7AEeW_vw>+3{io*zi7&7hC8F+lT%?ib8n1avZ7EQ;Xw_!nGRT@Dn+Pleq8qU5z4Nd#lcgwaV9?_Agx z+KYKEFg*js|2&-14+q#Gx`rq%C&)!HGBM(;?BC*^)*@1*P*;2Z@WIruay+-sJTH#`!wqu~TXZ8b`>rnrflqV+ts9zWc60tW{3o3kurxTR z6z%-JA@~rEI@~HH!y4z7X&KM52s=n1X`jv?%<5Xk`k!RvB>(PrMM31*O}Q0VT}qTV z`&uRTe{%rX8Vrx)or!vAJl4$p42|Y zM=T1V8$j*b+joNvICoR}`|qU}s&nC3z0nt$?2f*=#6SPaH#uXvftDA*CfjdsBqm`y zXuhJF2VZM}$c#KEwMuL1UkF4qgw7KwBWAS;U`bjwFZbuica& zbkcdX+M8|K9^=xgN}PQ2VVU5J?$$1B{>3b4p;N?IY6t=JeaM+8NJ+`3!z;R>7qd zw$II>DO(SHc;s zwM}u{r)U1n)|M7#r>8(`-n48?VKhZ(^{ zCGW!n`+W=XE4noQSas!xvJo>QlFNY(A7=6T8>UIO!+52*1|6L>=WnTY+*QjNH0HlS zNZ2$x%5qZOKnjSxkmwo^gS0ewy0wL#?^pW5E$So<3qz2ph0Ujf*tM2O+)BI2o$rxQYjY2rTm%R9kbI`ceB>$-AVWc~v$C zGtmmQwc+SOHHD(LKCXnLI&}U3dGBk)Nu114tAe7JD{XfY*=kM@X_94!HDUZLO-Qt% zS4%<};X0S5Kfl1Jav*yF|>WRjzMqUJ7O7eTvCP_krSnyVriZ+M+zTeM0 zR!j~4H@C@?qhq(npi!o#Tu05A39^n8o^dWBz25A=0Q zA~xa=8cYK}r`QRG{gZ46^2P>zN(qQ$ z2*bQk6ukBiJj6a9kiiURGkDHgM{O@d$iYt~aL+Qk=XgQz%8O0}Pv}ZrNxdH0DLS3R$VP2|l9$ z>07HpLrAn`iyy3FfI6V7D$}dAox1cAd&)6ebj4A6VyA8EG#M1>do>I!?VZVYMQaF_ zibcUFa*Ah~;rNNnQ?2x&P+K1NPa0Lt(xL2HCe;(B^6+TpB}9!*xB(K1gE4C_)1eZ2 zWFre3%3{u*+^)+96%t>wZ=0>Y<-WL&nc+6Sso@akiy4u47c5E8tc=s9`L6M~Mp4td zLQVM6Akd51=M;soR(+?Pl?_N+pbE;XoY^n`beV4WN~WemS~1&?@e)y#|JVaNO##uu zQ>&7@*Ag-bt=8kp@&8JMn-Xp(!Tp)^%HYMPuldMl83l91O=BO*>T{*$w=|X0(8>-j z3GizaS9L`y-2W&9rW(-g2*2tR4Q!9JMNV!+3eBUDyWocA@cdW(Z^ z0+ESnDs@MPNE^{=s&g8zyevpgm=qPtaG42*BWcP!H=}+dOBjf*AT>+f zI%-vyE^IZ&+{0mmoHxqMPV{c&BLhS+?bXjTA1!Wk6oHPfE+p6U<>I3eH5iVzM)}lsLszk__ zzv{y5C4LRY=2t&nIdvKNu!N=dHC*gYK5erFk&sP<_-rVMC?7_iO73(90i0Fy^B%o{ z;x4{5&11FQbj((Q81!4|Er9c!MCe@+nu(f7QWY)+bNSzbqXzGDcqQWGU9^GecR%Nb zU%+yN=4%wykWodV4xYErz_kbDpQy`}ME2(vHU8rMZUV$Gw(PT;z0nY$#HG~-JoHHhY@A#Y%TFQwcY2;yaMH@|1^PIV)6@|DzZX? z<{q75+f^7rlHe_&Nb8DzswrH7JwS zA;!NQorqbDNt@UE<`i(KJ51`{p4ea}dXk?Y)zWT=X@A~Fygyws3@*LBu9exP8b#Ti zdpfJ$Q6G7~Ww2G07ZOCwfVq^x(CtD%$=IGHQm7q4?dvX0M?6|Jlkh|N4A+aY$Vo3J zkC3rB6w6m_W?cCBRfrQvM@>(Ucf;DTf^+N(U%Xu|Wxl1ez}(7fY(^b(^Y5sP=NbgW z^Y}gXrt-mbY&T0!xcnRFU)UwDY>>1sPQC64P?rf`s*OR~)A~)Q&29C4qXq-_Mq!3e z;BJy3*DuU6bpfS-rCy{lRa8#6{E0)_J8XEziw%^%GXp}fI%J^8ZU;2C<21XZ(Qko-n~a(x_9ZHdwE=!j4b$5O95lP89<2pnwx z@ZnZE?7LwT=mC^5EVOeHB)@Rn;9yOM)oYo#Z;d4Fk>rDaat}1OR~!tXbU><>+BHBM z%XJ=47DB_s(Y509sA4m_0(7E9z0x2Toep#$z{iw={EazMD|(Jnxl)bfANXpe?N(9> z;2GkBH>Se$My-}zZ$TTPr?+sORpv!@c)qdR<}$fk8N1ZWZ4>Wq7H@g;1x{&uR5DP5 z`lhXe=(lv+TZpQPj$%!OY)Y>!FF|n00O-`lI1%l-3y>uR?EcX4duhd?r6KGoUp>1dfYhC_- z7U}@Iku>H@r;R!-xvuslQhL}f;PQSWk}^L=kCsndijEk_lhJ;mU_Q68mq}IM)-U%i z9`hrN{{06-;}lOURy_bjETfCurg@V8834oHfWatpq#kE+)s%mN(D^faSCB2-r!9G`d)NafAtVQy`N;+s~8nMe^|a#0q^PT@-TySww` z21~8?)zJyU*SZQik}7!uX@8ZNRH}d|w<0IRu3tNNM+zY@mgBFmm3o+1#zCXK2#Ap5 zhV(4~WrW>)cZIVT5FK;n=>G%Ka4x1f0%Yp0(~R)K8*ead)6q(Luo>Pmk)}ENu7Lod zn`r$KC>Uz}!RQ~IuJ@R-w7iWo3h<9??rJ3$?DcQ9(nlb&gC#B;1S1J+7sfHVMG1~T zj{vXtdjc>kL(in8PYG#LdqP>)*vHgx*YVk$3z?>bO5s~MROI`6Kq!rH0kcVWuDd!L zutWyeLvF~$&Vd6xJP5eaeKi8_e^VyBU2ZxF0C9^5$|Q@%L-07sJt5H~J55!AFLlWPKxLd9Ar4yRV$rh zEbP|e5iq$yNg6U0JI3diKI1&7B^B%&{dGF}Jk5U|~cr8bnAREe1q6HK+alt0H>0B9TM;&ly1;%+U&gePFo}X9;NI& z6@4A8wSmx`m zml#COo`1m+^*or1-c);^8g)*`TY8X1ImMTC`Ug;6TGPii>Sz4)HnZcj{&k>G1y1vzRYb1Dyv=h7bR>uPw_uj$L% zrec+zO+bH|ioGc!RyqkYN0)qEBp}8vO)#6I%q{**dU}5Tf%dN?lKI>3S$DRg**g6p zI0#8SlbeU4AFhA&{P1Sm1RwzX)WPq2ZaJfr!=wCY=kYQ>_#hb32fbD~mk&2Jlm9LKv&mgzW;w)> z#DvG0@sIBjiLX3D)+b@q8-BpsZ{v`fT7;dH{LN_-q7x9A3uiPT?nv#X4IiRd+5?#H zJ{QbKM5qRy*wF1ucfsvcO=b-4!JRUil|Qbgm++89T?@>yaRbvsSPDM{#{!?W08Xm& zK0zH+KzqEfe*!%2uS^7KxG@3bs;#vogC29I84W45tIb@ln1%(r*=@R3q9$d<&Lf6l zl%Xwq#jyyoFzWk#0Iu@J=TdY`1d<305(HUTiiJYnqRbr-Hsa!iPM~kY5vl!zMHL1j zx26aM>pY@WCmMu`jn(Fcj($i3XMYBE9S9CDD+$%lQ`g|wGD^g`ER->&;w?9H8zl7n zm2?D-M_X?ANEm8V-JC9w_Inbs>#&0(yBiiX7ul5LW5menM7gh$JE}c`%Dh zO;0bC*}4D_?aMv~PVr#6N#L#5+Aj$XW9H9W z$t^<4NM&1|?r*Ilck(!_Vg}#;>Vx<`(^_B{U6;rK+CT1q&`5C2k#_G5>hK3qAzpf4 zIIjpIa=$&zS?HnEPj;i|ZX0%sj6$Rn91CZoBcI1PI|KNvKLXPL7*CDZ`@gWh+%;)L zz?7y8!TNWcWs^U>5k01w%{5B00YVM1{q-0uHy_+#$iDkW*g`-gp&j@M3(Do3Rw)$3 zDSWJ-*qH@N5qDAt0L8zZFXm5)`-)8ddjp88o-fa822+gu#(439%^q2kHWtDXhV;+q zCZ`{N8~0kAj>6mnrZ8gtPQ48dTCR9IjC5Kk%k}0SCL}$_h`V4V5mnBo9Ui zpQG`@R7`csDG+^Ex$eDMf%l{Z>-^gu>JR%B1>c!cohS%Dhy3aJlU<=#mXU+1P9%pQ zzya>X8~u?bSb*@i*`GqGqlB_S(`s{3^?+bQv7&DU7Vp5knk@I=u2PM_!H)W1{kf3o zoKn|nUz@wc+Y74}8$9824Pm2vJi{kVNmh@vra0K|-h8vl={v*5}q+S)c<(%sVC-Q6JF-CfckASK=1(kb1D zba$sHB3;rV`7X}+&i4lx!{L7RUTfahyl$md0AOk4fuA+*5khe>vVSB+60>w#QOe{M z7Y2FN2`=q?BBu2j9Kq3>q;MREs;eE4%>N4CD>CTt1@KhdpFRWKWtPkgOLNr73dDy2 z2=ZhiAq{=GoJ6$HAs|KAE-r`Gqqk~bDR4Lm{O>?ufTGlI^(&l zHzH4wsG7<~!;E(?=&;Q6V;k|w2Z+Ho_|8lM!R(saE^F8iJf~uaGU&7=ufukaw@oBV za9^mx$oONOfeQgj*BFQ@=k4wRsG-w&mbf0AxJ7D;z+tHnaD6cMU6tX0?#t>Z=GqE0 zt{SX;UTGS5ThrI495}IQ1*Ao3p?1Aal@~LTKCRD@#WQs<mMc6L# zJ9|aXY8pidtWXCP+bxutWxO_41%>)sWLc%Jfwk?%m?<{wu3dkY6I4tnfjE4236A2v zgHCaeBXC84@E>Kiaz!C0jO)v(=d8yT@mo}rjbd9nv*|V7qS&iH%%d*EJ^RDB`QudF zGm3i^7G|umw&&R|`CS&rCt7$C5A^Y~Ns%mwSRokbU~KQFAReJLz(+yIt4j1#a}r)? z_16JK3&Y=<^JCC7@h-pfO$Fg(uJx~}NPqpoktqs!7*b|+j|V##cm4Mj#oegdv-y$b8Ipo3x|EZsR0fQ) zF{*g2C-G-jATst#YU-=Ppe?pgxOG*em^uP=*3)p+9G6p$b$ zp&_7!bnqHNcP+Lgxz+>7BtLca5Id*s^?sGLS$ht-jc*7cX}X`Pp*(jqI9P@oLF_jA zTEZ~k4(=!57`;*8ynt?U0Rt}v*E{H1R%VG{D|j=5qAIzU`41W9)oxN%U5nJx8U^DX zj-yb@*vOR>3FoQkN5@=KvJeWGh=B-$K>R;qoNy$AKcbq%H@DTpdjPVU)evNUH7F(n z?!}n{v%M6bgO7i9?%8RtOL&u$WfN2YekXeF>|@Mm|p{_@^yARbjTqvFR#G%Ttx#Y2A${n81U zA`^Z9M7-oXFo*mjW}_fYCR$sU0>5(>v;-jjn7afU$4w!bV-T<&F{xtkn&<-KI$-v} zHtsq`ouRr5{s!v$$rs^82ar8=g*c9G7bN-7*ufzD=e;v+Dd)GI>qjne{zw_m2UU@w zbs3feB0Q~pC4)YEQ0XE~I-Sj3?QtePE*Y2mN9LC6lzLS=@wTu>O!PkW8qSJhKa9{i z6JHaL$u}O3%+3|UFD^KWi0qq343aHNi51xQK3g)cXoOX0t4!gT4FySKDUv1%J0D2# zDxSeH@n7>8oOSR1(0^ZODPK4)IEd;ZBz)PPG#tk3>sqkTiz2F5C1P#raY6D=#t_MJEzrx<7a4W*V1u|OYu^{#x zVn_(aZS&v!3dv6hh}R6ZEZ8`I(+EVmojI^_y$9~Y1U9Cyin3PgsGoF&y%1Ab>@<7>Ig;~U++Vr8KVsb@DdVo2D7Jo1(~+2#cA zKHN+3C$o~$Y7RTY#*h#baH67X4Jq={VhGx~@zoV23@%Ax$KV=|(#PqK zUa}a+gIsJWE#J#~CCaEq8d=_ybk47DHmVh8MO^l(x zxUragwoF4LuYGy9F*|6gv+ed!6tQ>h#m?+LNl?GGkgJzoGp<*CciBVI7LiBKl0m)b`hDpZRiROq<^3sMeTAi?RWi!OyMC-L4tIC4-Eb}@-YlU30 zp1Rf|B)`H&{D@0ZH0;VvHR~VpuI&7Um%^sfAWlJh>~uyR2M*g|5o;}!h*tj zC#FP+Z(RL1S8I7^dyc`+Y{zj)ug9gVc*jA9V%2m%Yb(3$^O9^#=6qVrI#6-Z(z zQa+60%(yE%)z$W9)GnAL^;1E&U$knakL`V6)&!BpClBJf9a9chrQu`jSmqg>(P-sg zI>RB0`UInMqIx@tL;APYCf>uU^{EeQH&pL)7=0Aw9ZS6`F6FaBLij6RVNJe4G_kWT zAC&s>4*!6oPK9@lAE&hW)TBx2xG!UCe)t`wlP~%mM;ZO7c&=#en^zQ;{9f0#LB&pm z#=nyoiyh+Y5Ezc0j^w~U@kKKhClRHYasBTy`uMUm)ug05C$%aK?yEQle-l+bP#FGu z`^{I6@SZ<=D~9xG(B3X6sJW6;A-6PiQ@%EPrW!VqDWRWwz})J!cBQRy1A+#6rT2!l z&No{tUB+o6#pC|4alb8GLMqDdcy6_nFxkDcdeI&36RNM>p$FUk)6gaJ5~J{|C1Opo1eoy_Ovq$J~)@M>LI8vJSE7%@gTo=y_heoGwM+JfOd)~9pFVkGLeBbQ*Y z(A{dkI5B$VB$y!p^LN=|YqDHeY>ENjQe+0!W?|pe70V|C?jt?i$HG3lonVI_o&URU zJRIHdyQ6bK^^;rJH=y948Lt}I)wAE7$n@V18e_sh>PxCm>mALaD=w!_8>SA6qNi8K zQ2s6x#=oBamkg0ninKmb!u>fAHJVE&#;!CTmCUBygTX=2lGx?r6ag-z>jKqcQ~BIK zRg>D81?@3%N(&@ILRwcBVOjbS=X>XVzP2S5Q6S#jYFA%sO^dj^C|s^XSOjKHgzyZ3 z-YhaTLneM{`=KaH{>DM?--9euiG(jvUaG4SF5b=W;lycABpx2pgjlRz(&jDeoi|s6 zZx$a~xv!aqHcMW5sHsXkev1hx{-#DurH+eaBW@cPV9faLbKH~={<%$em-e?-V8fSY zY6CCYYNgg+%FUK0-rv0r!-P^uzTG6|&9}Ge_iI;8X08fTs=?&*)g}2xD}9mL(U(@8 z@K3HR%DrD#ZlRhmK&;JA;x8QM}eZZlGBd@#Q#{Fbbj-S%RmUb}_vY!^r&3m_q=r?Ref9Asd> z?u@c(D!s6Sc{E5X{5@H7O8BAhrnob@g-hA)cwRz$d~G|2((%~zLZpBhQ6=rP@m8tG zYnBz|`#iWLT*zK>yENaH^4@B@vV0?Y9#auk&^l1?1F8-p zGksd8&%8r89IU$8*)fG@s(o5H(l1W}tH(}Quj>_878Ijv=I0j2fK9|S+$H||S@O2L z^v>^#G#nl>f*Lem^h^S}N=fatJ9lBWMO!Am2UPp{vz&gBTq-Jif*mtueNhmPiet{MIp-UPwC*d^kS8m?^h;PI27OI;mpwsSIhoY(3Ve-fws06FGZ!utWFgr z)k))Uv~F=sS>bdsx^p!-HD&PSQe#Cc@L5r2F1or^e)w-9?*~yEu?%PBWlMsjxT7tJ zjLezR@Mfm~zaKrIi7AV*VPr{girur1^Q&~vJo>2DnXb3PS2{U390FB2w>!^S`NKf%)Gx5{=BF(Pv5%_g}B#Y=%aW;xdn z*^lMJtaqq1hx#Rks4xwEO=|G`+KZCUQ04aB5{G~Jn}LxN?@#ZTIQEHIK66`tn}RGm z{H|15+Wf;5eQry^@oPNSg4YG@ewdYC5A5gBG1<*u8q6w48N?U5sbNk^Ol0}(V!@MVxhRfSH%4VJjtH@3pz;bNs z$y28ri~mQv=4o8iA;t067{-rED2C5#iL4*Ee91B=qE zQi0=J_-JM(P2-GwG_7r?hr1Oe0wX-v+gJfpn3bB#52kelm*iDg9Kj3$ zVPS`Bl^FS1t)T{$3Y2e{Kbi|>D9}@O?)<4YR~wK}q`rDTAO1JoH#w8lT6KB!-m&FL zp<&!7tODC;ZQ5wQmF4m3=iT;p(~+II7xj^kU1k)V9i85xA4692z7?bBCB^4`{JQj! zd;Vtyh?As)NUSsV;zxA1Qpk1n1x2Q~1AUfq`=x6@e^!KU+VDY9318y3$vhB}pu6&V`_VxW`=1A=-Zb zlFGPyxv6}-*`lbPb>sa3?^{Yl#x_5n`zh`U!z`x6=23{I_=(+nn(0R3H!8l{7*i4V zQ&?$!QgW3%c6MHHR&gnhVUC}qgmb%zh?X&}WhynH7v=^73M3f+>P7$IfH0Z44NF~a zFJ^W%E3~;Eqe0=&&Fpqw5I?T>)O71!#k}>jVNN?rIjoGaZlY&0E>#{FUOxO$l3l=Vijz}1-S?7iz)!@OFH z)>Z7KzU#QLc8+CB=ubb;E@HEC)!4!phLB2~oo}{@@axu%hEjpDl>HbxUrx~hr3H}# zF98)!|6Rd&wV%K@MT4sD&UPsi zeHWoadHSrGdzr8D#x)gfiW(9XkCk~TQ>p3fONx@4!u}(v>nqc&&CRpRO>dc#@23YG z7w6}d98}@fEcSLeiI$QZdKGaSeA;t*Xgp}q$uUsi7uph?6clunqUyDuIO7XXA+Teg zK6tl;EROSM;6&ZgBl=6s#kHAy4uVB^azEpEV)V=)(iL>~YId^ume(8onLK1M;r)}r z3Pg48#7c%untd>NXsY^-P`B)<)!7JGGX~p=@^1`83x7s?iGr~4^J7>lw`vyjM5FCb zGu}6*$#(;Ogdt5l_U1Au`!)~R)EUolKW-MAdLGhf&+fae*-5i3%VcQ7aoQX)9Y3Z8 z>sqn74@P2uNmQjp9HI|w>cfuPxR;8RU3x;*UY4cZk{;&SuU6JiD~kN~^z_AIjKJHbZgm|Dd0KtsLj5&)ce2Tr-;c}W zBjoI3!OBgoeZUhf9zx{UABFs;b zK6FH2@b(idlSq6=4 zUWaDxMd8`I1xiwnZ)TWk{}5il2KfmhN9l0cLEF}ve8lZeNNX{c_Z)x7wTR!k!HP~b zUndK5raQWy2xa0EPg-*m&jntgZ6FCOuc`IFJM%kjWQv*7F3Cy>q8<~IrhL7xB1B0F zoJ+}&{VuSPLVsJ0;&ro8xLzq|2U0RH4zqA>d6ErHGTJ4{Io+6}R50}rT)s0CG z^EoB#KB+2T+Ih>X!x*2Ax|xp@=O_GGvbRALy}1Y9H|liV?bi*&t$`^pjSk=PP3QF_ z=CG85ll>}h(y2{ucgNdbP+5dO_%VK!jPy2Ja~~vvKLDsBlnz_!1KMX{;{vfh?)07q zn;!SfhtV5(znYv~lM{ozvWvM$A8g-uU7R+GxuN2Y#q9KE(c8-Izp}+(9$C7>pJ4BEFQ{3qE^C7;|BOvCx*F*fJcJ2Zp)V2?Ly zJv79yMWx*&)_!33V!zbxVWDOa?jji&gcV!`la!wp_iSJ=) zh7e1Y=7-k0T0f*#%btYoY%6I!B+w51@tfvR?cnhKXUoUz8@qtF3H^%;H4fv^hJyVT zHDEQ&3k|E#s+VG@F%Owxik#8}Ir~5NvTmVjkL^F{2F`1MEHMTF(EJ)1XgxXtU{snG zEavVe7zR&_oZ5a98z#qd^=b3>CvyBMIBc33V)>O}0Cqt59R&JTgVCEsjf@c~EX8uE zXU!w1)*pl@^wxPUQ9NrJx&IW7lk;TRhrztVLZ2f%(_?Nda*|0A@dr3+gF&A;7~$7+ z2caR3?%CNk9rsb-(yYoQSr(opx`jtR@N+Nk!W#wgl~*YW7f7XOb4^@(5SDO7inE)h zfuPde;E7L5jAzoO{IlayAmfOT40A>fiQmz<{EFOxjiO?@HI=8JOdUobD;h0flT0!^hElWzRzWeKj|U57$=nb*JAr=8eB%X< zF-D}n)z5&xH@)BI?b;sxe#11T7j!O(IStQH=U)N<%U@7aHMq?<728v-r+{;^g-Ff* zZkuGt5rc?&GSv$-rrAKW+z$`5VXRkFjfpnR1iW)q+u+pDv`g_&DBvhlb!nR#!G+%6 z5LVDPF1`E)Q$8O<^nSZI>AWC%X{9UKUZCR&7>`*&NAvoj-REv+2PZ*?bJ$u)ZT^h9 zm&m&0LBQzDBrCG$3CI`x!8P)jBjB_q<768HU?W~b2MB|=AOOg60<70f>-N>;wf-2z zq>4w+4}V^O$^R3R@XOEc(5=;Rp?c2#l)Tc*Oy$KZ218oBntVtayI zp$jb1sCB;L9ws21wHlX~MFT4mbFyz=DOaXhQ0(Dv`7ZF9jyJ>zo)->1}oN?TA*4m!C(v}&GzWfyb|$U;&P ze?Bra0Vm*5@jx*Q2!_S=0TfLs@2kyubRSr)bgj~~X1O^c8h~X*^cn0BNI`*DSTeqH zjL}EXFDUwNC*`0rU?=m_nY*OXogHwAq>3&a0s$rGCt%6q1hi4_d?E3e&uceD;t2?- z4k{hi?R>j0{k_>)7FMtkIntXFUU$bJ60Kh?zP2oXC62ht*fg_xGtsex0K9wMMV&#QUT|mMUvw`*WDYJiF z?_^nL`%|yL*N>XuFZf~_`Ckl;y_!uZzwHTq9816D2mfD5ZLg5%o=VbdbNb*OSO&VE z_U_gY@X*pev92;VJ(1e@iL%hg`zcv7YjOfWB-rCBF|;d96FOX)Beu!~`}x`N zj#r2R6H$k+3r=PbVyIwx2$I(2aA_L?>O)!6ux_|zVwSOU@O;Qz1}AxamZ+2zH4)$P zd??o{9bER=Oe^@gFRGeRnd6=366Y!Id9OE z(q68~5$N6z@ZOEr2|+3!GWo^PNXz;pxj}WM<|-6=KwxBscF#gBW;1Bu*`J2L&p>en zq@#H61EwMq?UolKeM zO_0jO!m~_J4`^2DV}uCqu1_0Hbl&z%jQ&i=rd7Ze>wS$Hf+Y7EONp@;MBkA|10so; zzztgaJgrbNV!o@H$kS~0eFqb>{9a@c1vx?r(KjVO7M3drtAEw@83cQhJkNH(l16F zlY+fN6cYad;0|9S*T+F!B|;CFUJr59`Y3;>o>&9{A#r3m)VH4^3ZS}R>**d31dF2* zrwyikIIO2T|CC0eyl8yP2`zrDb z-4WmZl3UuPbNCc z6BgF6!Cgc~N~S_N%RMUQ;_XFrI0kd=Du6E{ybyS6bFc2`kAP@Y`85j7w~I^; z%7&4o5`uVrNa9iYLeaehPulYgU%wGNmR2T`{^rVr0?aYj<|pU4Kl{BDu_-ObDtfR( zAE}vH8iHuVKX~v+2+Z|tos!flL}94R231vg)Q)A z-oZG{8QHBrRYjL%J{I_MNqazkTTlJFL#xx4t~ts}5LExjYYW8D=v5Zt@3awCm7ZA^ zPG$l4oSP*PW*8yc9AMou0@Xepk`c&Z62C*?7I$BDSOX|%hkh-Y>E$M~3V#j3rEM6r zYT|l|V+6&cef^yP5W9~Rl!s>PrrmLHCnHkZCYF3xiyi`z%A*aw*5n04yYj*fbm3TFn%5s}YkwtBA-Mzf(cZv>&gU6@Dq zvVL&>fTaRPGu%nKaTS_o2niM#`RI046eY!~fmw*McK|^a4}%i(Ab45+Jr^dro!-Fmual#1IG#F6L#d_@2{UY`| z)fJ7Thxz217F3H8|Ck4*#utZ3#ISa^*CIO_96_B9+NUdKp#D1~nKjmwJt`=}MkfDt zQyec~4|3{nn^^&V6^_)x$XycmvGjY^TsX1Vq`=%(Tk8Jyu+o%EJV=rE{tjukkN|_Z zWRVuRJ96#iIKG2drSlNf7s;^Y&TRnDOHO_tYT}hhR>AkKAgmcYQ27bDg-vP)YN8y_ z7l98>27W_T=j8-ofx8*kTKzJ{K;*m#%U|ejkiyJGiZP_#8=1*w26Y=>hUcqt7HPaI*KK*JQ|5;??~~2k)v)X(EyO4=?%s5+l&%#)o@mHIuN&1OPSt z-DXfF;HH91(VUeMAAyq}x}<>41CN}X`h3D2o4`{>?v7g{#Y`5PXh(eb?hPyySE4)b zp5Uw7e&yuf+QJ>KB>i-%7s=gTXQwE)2OAAsLb zh?rT!k<0h!1IJis*hVi~>gzNbDCvJU;OJFwvo4P-7y~8tZL7!>VVRD1&1ZVW6V(;^ za-wan?^X6wI>4wej}Ix(%Xl9t9t_u}IokUt@UI|Q$RDWw*A?ZlwcYm8Ux}9S1TpN> zbYj82(>kvQmBg%VHHKt%Z0jU<7d){^y}kLZ*UK}iP6>f0iEhjtGP$RaRJu=$HWW48 z>8sTc$ehA7-ZHgz3?iq7o-1PiiYUOMM9qRu9)c6ir=IfGg`R3f@84^gpdxDszTY*d{jk@ z2pXNip>Pr7oowN1d*D=`XhM!yTTAa*TB?lyRQfo9$BqKw)LYNBu`mDStpO`KN+U2i z(G}U`dE!d(SH012D zS0}}0e!gD9LXZd_7$*tjT{HJ$RFCsnu5p)MtJY2_-OEff)d+e-1oJm^qP2?FJyLQs z%o7!a@VPvoXnSSYlKs0RQXn{>B0Uv{5!>lI2zo-pTVBO zq&#ij;1eKAdgV%pm^*5K*G+l%t=lL$7vH^{B4{9czIOcQQz0LnddOMh$whMQ#mX;N zoq@9kG5e!#Bx)FQ3^~MIAiLU6AN0!7;&UJN(FsGBKr+VjZ6n})hOW{*c$6}dliw3# ziPRM7)(dY4!h|BkmnyCGwCwea6fZikGNN-fw~zCF>jv(*Ga9hTbFy9Y%TRpEipW9mG{KZ&EPY{O;IW^I(p2f>Ly zLdeHTk2eG1)6(;!pk8Th%`qN<1dgQLa@t4pq zP$aKKNl-J#sbL>HAk|AWukbRd-5o2y#$gteMwNUD4a!@Q?|RJqaCN=#^_g@KS?7t! z?7M~`2xDhP5m4bG?ld zx^c<7Fg*y!uk%*=0NnZk%Dto&=QT=;z8UC`rgs*15Qv=`Mm2CwATc{hr}QIM(!`Bn zDH;7Jg}q}bkye#}9El@>|30^_>@-tJo5_i;TJ^e-c7J_1oqwg4EdI+@?10MzeuiKZ zRrJv{Fk9odv}7~rarrh%5tGO)1G9sUr0}j!N#I-C8}k0I^#SXNen}hPyrIZn$>Bd) zqZR9bU$0At&omFsNvncKlXlckEsO&7wctMU)IU!E@Luuj9Ov-ER=k2@``dK0w4uFZ z$~)mQv)FQx@5Xic?HB3pm~+b)^F;g++=-A%sCSVXfOIydpR(wl=hQ<1wU{Q3^Tt2J zje@iG`<4kudAaQmz{G#9v#9^PWYl?JC*Lh$&O|Q|^IkOR?1#hj=AF$7__@x;H<(IGF6xT(mViajU+i{6TYiboR2f;A~Q_)M6#H|3e)A? z%_aBt11+xa8-g<9S3~gvi$|FI+wTKsTRdE-{xk9)$9wvb7|)5jN=a;C@bTVx1DN!3 zQ>uw64^7W`CZbpUtZ=G1Q=9WiQ8J0vM>;go5#0DasI5uT~kOzim1>D;Cig)+%C>Zx^T5aR+L>+mepuJ{&b*Yksf0l2&BV`NgQ`GKs}D&Yb)0 z#?rp$>~ir$dTAtccDw5=yl=46F2VDl29nEP+VB+5W?1`v>$eR`b^W69jz@4-aZO4< zC&6J^_a1isiN^WZ!;NLB{{$IkIPFsfY0`I=M^38v+=ce9YXOJPb@MQhIU3OG4=&pw z!()f0?+AHuZkJXQ=r=$N)^xG39Me;=NRk9+@o(q7qcC@FYQ|G3S9bU|m8LI_nG#Dn_uN=8z=NMPd|^cFuv282fgXA6HcR;^Q4GI;UpeOll$ioTxUF&Kiq?lj> zT~i2Ms14=T|gd2@vx2N`rS&QokO?jaIhhYogS)QsV%w*WI^H}D+OjB8#V<+ANlr9M&P;oB(!_WZYah`9@Sqo!{O`q?piA2cc+(u(*nNwg#nOTIX~Rjt`>HN6Mu$)Zb<%SUM#hrYt7_Vx9)h z^X%%2CO`5P#v4PQXv@sM>D4gGTIr*hcsGP1{&(Q$47O!%IH&nSIoM!qA}=;`X^o$8 z^aH_j%HYD(s4jaR)_PVAxnpO~r533CGHo~AbbN?Pc7EI?XHv|!4h8qyzI@00bexmB z%+DTS;qMW%(mTt5>VC~VYRoQ1W&DTn~PdK7r^PXJ^E8GogCk?9_Mf~ z$=Fe3BNY<1!tLAH{Sxhz#45?C0#tUW#!tSwbsvYUJ6zM9liBHS9$!{cKc>yv7&K&!L{O%JN|>(n6cXWfa$usE`X1Ytg*C)kt+6Zgfd zH4Qro5{&7>RKHfAVM@st<@^ayQ@&|Z{voZ)bOf0%i%t!F4^YEv+c;S zTmP)y&#Y*L>WAkhz8B4gMhGI~rl?(C)c-Wka#lT;_Pfkg_pow~yM>Y2Uj-$-0*`Ac zHKILEf9Ub$B+q8DOlzt26Mm?!m_R&V7p_!X5w^6drel=HNpuKoXf(E36*q&lmDEr; zMS+@T{hJUD1xsvLdIkg;i+>N@|2W=GvT>?>{p)S{R?p^Eh^6$u@(CPB-?+QLqZN{8l%UiIJ;XJnlxv{g!%ZwZ_`q?N=^UuyI3?8>(Xt zj_&iEpWC8o2pei$V|YQ3SQI^yrbQ|@$+<_`cH#T)z))jDhZ}uXAdb@$QDjYfk-M3G z3Ke$bN~Smmiet0V=EL@GW}f?_yVX*Ym>kW-&ui5TPP^}qP8@b$#oN(I`O;_xJOX(F z0vtyts)FJvJ@2Zkjy(2`lxtt;G}n+`V2aA!zC~fX-A^h8%vQEr(bX>r>`&JiBdQ%# zP}9QvjD9jo-KgTJwqJB)h2HEmP0AB*TECV#Lr)p(Z2!XGYS(R`(K%BS1@roRO-*-q=8hXgB^?^oZ9ms_hs zx{3~qv*4EID)zT+ldau@%goAbsL7Hti4P7lL$`gkbJ;pK3~cGj7647J^o1UTw1D+{vjAfpe zK*+UC>sJ$w)^8>u5$=+WsSv+uxu=zHlbh~d6~RR8L^0w!zNl^tUYNE!L@8CmDV!Pv z$+WwF^4n}Wh!-Rehm#!FA!6NWj|EpaAwDdi<;&WJO1a%7CB{2=l*gO;s9!)g1ho7@ zT91;p^{aTFRYDgsQF^>ggz?I(u3;f_LWi4$h03WkIE5nUSv_jgW6%}UB$ zv=+{%?U~>F-LAuDw2fT8va@zm;3@L!z#8hGZn|p?RHOLb(0Wn{rB@WFt}%;*G#B_` zLZyc_+uU3F5B?LJ7h9!LKGl*8&R0vO>ZBRg#kt}MsvW$N>fSB0K<=Jz{TZ&Xw*Is| zB)6*aeLHJEDWE?*g<<+@vqG(G3C#3A7yo-Nm4#ql*(qV3xKgb*)@Al@VfkPxDG7$7!CJlt%$J-h%^Jud1 z9u?rI&KS&BtIf2$6Gl)!!8a?Kjfa`oN#OlstZHQt!LV}gIipr8#9=UGm5xTeBcW*) zu~sVKU{mIn*H?0(dbi;#M`mn?q1<}HgIy*cCeO$~0$DiBE-e);%Ua_m6r%L& zv*BB+^f>Fq8gnW8&{}&JSjA4xM>GFAN>qX&A0ZL7>p{<8cl+HMsz<(GQE3W>R!Hnp zOwDd?|M-(RKT6_61*l_(F_^38S0>BUpgOm4fGKY}P69@Y)=*0C2WbD1M9!*EJy~Q~tLkL;KE-$wDCpBrA)}qI8Y`QQZ5-9K~y=4}U${NP79dg;wj(~K^ z+&?G;PiT#{13PZf(iLV>vQ9#ko|o~dW3X47Hl#xjN%`V0{CWN#NnN{Trhi&H+edMB zI9+UFCnN>aa&!FRqX&JDbI23ctt1eJ+qF;a5IIMQC~+w!pZ+d09CLQl)tdEqmNs|8 zp(*nJlNT%CSZj#I=T_t~(BjU}v7*pd*7Y$k;m-pg#rexNF-oY6I*mspy z36fulRs?{Ks_w&(wyz@22dB_Nmw&2EtRfozU-?pYu<@fFccbcqO*D1 zAQTeqL)-W5(#cYTKw(m{OZ$V)rq^{_J14R(-VjN4(B2Y8(K0fwq|=$mi+Ha6 zmP-XI_BnMhk?NUhy)!Fgo5^{IdoA{4l8>JUlXJbqoC$@Vc!h<~L5U&?DW;s#Vy>K3 zBvyFM~U&Z0S%GnbOVnYzJCraOzI0!7RA_ovTo8Y+HVN!}iezGZGaCES%&n5!*?Y;Gul_C%^Sh;{IE1 zu9918Ci?t=!CcU!$qZeo{`>4~yu?E!eQh7-8#%cFfZ)~esA~1p%P?N#4{SwoW7_>( zav%Y+WqpFlr zJ+EpqtfqNgTeCFlUkp;<-q0HtWA3yz!U5G337V|gF-PcAK%QP3y zo$@6b%!aMj95pHQxOCiv$?t*Xu6Wwdu^(z>tlfpgf= z9~{V>{z+T=KwU-LW2Cn9gFE!Kc8$M^sV^tr+-gQ|{mAuQAnC_JA61q*Ij$Q=t=yFo zEW*U0ZQK0oQTd)|g;ls7Ge^F2Jf^Gkwyxb+&S`wL#2^MZ6{?&|_f*F#M_EJ-G}Spt zE|Krf8DSly<2*WY924ng5 z()w0hG@qp{H&YCxWZiUA{&-EYU(eG~d zovz)2P}KWgc#(ocegOJRB|2(M=HO4p#tTSsTt%U~-$l**Mg55NzJ^Ktjoh*!>-vrn z6i))l6X5lvyZJL2PvmvU#He{gq&rTR!bI1m8_tUZ-S3_y z&mO6?s5+ts6o--a)dCdG1=UI!vPwzXV6(EnD`MDtpWK?Qb7rlP|FsGjS3?}ufi229 z|6Rr*ok+rF%)hgh0@rOtHkuAN7{V(}EOd?Qstt1|!o!yK3}^>=)oerB_WB$_z9lPl zm^P>Z_cEp81=&f_t|(m{pzT5M{K9Y^U`*Yh^t%kDdQ`N#wPv2f)*IMCK>LQEOEcp%03W3Uifd z!)-Un%{7jhPLVI-w|-D`)THQy>`!YiS)@Jh>VlM%;z=t?I?m0STr2P#uFtoWsG>Gx z58Qzss(mZu4OERRyM)Rsh(Xvq!yh!j3DGKv%0F1+r9P(`KOr#G>IEX=Trif8B9U(P z`!26E?ei2Jz}%r^02?fJ4q5cRuiQeycA#N<$8GF!34}{3v{_560f&kJrKR--K|rTi#L~m}TFR8&ze)ZCQ5$8u1RNUxOm4zaB{t=|EvcH)XP3jJPmK$e z2vnwyRkVNE4(3dxCE)&j;9Jk(-Sp6KzW)V^Q3OYG$up69xeAA+sHfC4HEGfX$JFP; zB|M$A`VT#Rkim~U7r+bK+NsRZj2XF&QG=GCN(SgD{bOzN0k}R=KhXC^*fUNMtyrkE zQ%}l*gEBQb9U8zUt03TS(s7niF~6kA1f!{|x&=&pN<#9N-iPa}fKmKJcjfqQdxqyu z>ndG4TIM?z<}lCzMFFv}sOVqcgjyKs$(#OyK*rGqah2k$+m-Iy7F?O&Tg*%hQeH|5 z(GHMy{r>cqpeK5QGB72x-1?|jCwKGm3nwQ>9;=i)^!X7>}@yiSqYIX&(dX zQG1-{8dCczbV;Olv)2c}vI{^zZ0COie5^_ySd+Iqw4(n2t2b>S-X(FNT^N45-0iEX zAFthO3^Xi|VWy_MG#@Ga&AGE4mp^G;dLxF$?LpP#0ozG2yp1OD9<0#0`jF0jnURF~}=O8eY@`n!Rg4I4)_3Mz@24mD)6{5qwW$_}UK>20t3R z@V28wl8f`YlRlXqd3;pNvY54yXyuxiT!JhetgHQkEmPL1{!*j^@du!Z4O-bhOVl_Z zPdsMQ=~>SOzA_gITwOrVV^{Pt+%`%QL!Q=}9INi?cc0;)@qO_Cxu|e~&h;};_D**{ z0z5mgHlzCq=#U|tBL4m#PiNs3Rr~#Iy1Tm(7(lwayBQj!yQEvXySp2QkVd*oQd*F1 z5CJJc-otu+@An^Iv1ZPkd*6G1_H_l)<_US5x?9SeNm>A+q3+#SX7%B15-0uf{Gb2s z+TZe(67VT*S0`~Fp3MdA#?cL7??3&H`v53KFoe;Ht|i)q1X&tSf$@kx@CK+?L#a?$ z`wEa|ZqnYQLEB^$K?4BE4#;KZArxJOGZ+Esz&^lfQ+U@>l~BXG%6a}tdJKqOI!Q~?p^%1sSj|172bCru^M$?)k~a(f66Ih1u~}q#>Az-3?k@MVH)%hEhjt( z0WDP!^I$fd^8{{x{`q{!rxtjsHGg&@wrk$}jrT9W_>2L01H=-sGyU0J(bv*v`=8=| zAAokx+fP3U;Qg(a%>D#e+;%xpKp8Y0&$RmUDv~eYX|c%qAK=G23c4+$bn3B>ubb%7 zJD5w)fUHOz9Rhr`KLEa)GN?*-)@PKSvDl523vPdZ`ZaSI(`R2e=N)E7M1fy$ zoT~+1>&VxpEZq?dfC&z+g`!Qkay)PcKv-WRkUB!8B*{&^zBB;!k0X6=OTB||h;}jk zLoSawDr{rPhwd}uUvKhjLpgrOAD{XCi7la+TW8LZ>fcI4woi{!C2-$0;RxenxB&xT z5EPFAHkzu@0-M#_zov$VOLuhNdoL2bR@ww{DRUhIX4R2Ky9ymdnk8cL)Q4o9a4&H4 z60htm+~-^Odw@_7h$-*C#dtSaK0EP0NIATdKkB&!VYQ%Ffr`NoyMR3Y55SoUSq&e! zSh@yjCb>lsVdnq_&u)Mo&~|Advth6tx8HlB;u89gn5RL#s_nAyz({4N4nM0#)`%;o za>pv3JK9Kcz5jt_%tq|5{(f7@NoIp&A$wYPBDE{-$KQv1eZ)a>wv?XVH6U56KHtkI zMpPvbu?UwZ5`_HQ80Ok;x{`sUvzREC9RP6O`*8Oqi^--906_p6!#v%q45ioLppQ|; z!7gHe6p4yro?9k3KCy^a?Bp51t)sx1bGc0<`^eX7sR~%ddxIS+VS$p5L-PqpM}uQI zEsCDLS0&RqM#p1ASAau$;wx9ned58+p6lEtqL--Z7@^UuVZ15+9;?YpmhToYIcDln zAof-=!L+?p6yvKTvhsH5Gitt*TD^Zae{n`3i7Df?dnRD= zc>X>1leavHw|eNxy5sLk-@jIF*qz@*GzJTJ`tYjT(3O{Pi5<{m_k0YLn>2w)>7`<-RV`VbH!aSV~mw*e1E zo%k4>Y#T)f%(=vm`FE5oxYL->V!8Au46qW7P%zLk-KhKV9@jtS`1&4IHc|{vf)$Cc z@SBD%VTWjBPMTZcGk6;rKFv!(Z~Y_d%nBG+#-?G68{{JJ*n5j5hq+c9HZ%8KdUUkmqaV z4tX#bucVd~zT_L+7cVquX!t?9f<8SX)}?h5O>)dZsNOctdINNHyM}k6!-qGug{;Z& zfrng0$P{yC<$o*xbPY|j3Q_5$+;i65!XeLgGY&hNn1pgJoBmO(B zzjLvC_)G!tZO}N3e5O~QwN)GF5|qzWQLs2ElO6jJ`VowvkT_nwXq2GE{t?8C<#WBi zl-hctB|_C2ut0<6-!bd*?!77K9ZVn8nY;@hf5X&5OPziE_{PkAW~s|DfW@gz@SJ0$m-q#irkL75ujJihHs8hBDfD_go#FF1P)4hz zBL?h}L#Fx;t>sdSLpYI1e3o7Yx}tw9`$maiG#xT4>#RlQx0nR$>EsB#T_tkddB{h; zznLRoAN1j~F*FX_KVGSTCo$lP^UC~b#Ncu{w*cHp8vGKD(ox`7elIIFqTx8blp##9 ze9!X0NS8d@AEA#CsDy$_;u4qRgu#Li->s>H-%VSStfdOu+7%O$TVTTbw^QRI3&9M_ zHmn{~a~Vj5aNdrar@Jxw!O3S3==qt{5@%93ru=SL)^0t-Ok#{EuVN0SG z<8>0hl-a(d_uxyE%*cNNUd4T67^UPoa7gGl%aX?ni=PNoUrPTpGV`Ls;v7TGZUpTb zcd9Fui1(AG75`o~uJkOod1eSMdLirxGU+?+3%pX#CXhcWYRJ}WMsE>(#OR@Rw1bvN zSak`Mnnzl!MT$sWgSYx)mx*jCLxj=d0f3ek_`ZMA&cplN-C%UDqs zfx)~k1!pPs-4#m{7{lZRHn9L;mXf2SVej4eJ`h#KadFk69!>l3w2)uP0buKhCU&fG z`~)An26kr+fuL;rMwAJTk`RM#I~1ZUbLh~NJn_Fte&5Sh^|NiNUvP^a;FJ{pPQ#ue zOkzm&0?Ny^Vmq=6rV`Y*jT@-0w-Bc11k+XlF(S_> zz7;6cVK}Ni;gwa#vfYzBZF43hegPGIZr+>y_?IMq*sL9N2hE(5RDG)Nit&N;ee1^S zl{24DRD6R;2Q)83LBkq3gap4xX!HY}Anr>-+`E)#Oay)Pz-BZkimA zAYcc~@`LjxXIOyLyb^&T=7X*IIzT5}%N^)KAWDkSPq&`9+jG&#l;{g(_WSoGtA}NL z@tgpn+v#*54aGpKdP40^V{~+3=+uf&>C?Ky2uXGGan5ZIBh%52C>|3&p0qx`XNlSJ-_ko5R{#(*1DJp+_586wa$m5{iM|l~J<;K*;Rs7~nm#m1$Xvu@}v* zh%lSsfP@n^1h<5TQFowot0Qm#uSdTB0$8ON19u*gfO+qnoCISr{ zUHhb>Q#l#iHQf8XH!*m}MD^QRuZJDQa+lJz*MH4v9Nh`{6)EIkKyg-)GuMBrSx`bX&?H=)-hmZOK!ZiX5z*~tyZCmt1fg;;dLXO100)P2Ck+sNb zIg+Wrvy>9*1J-IoP}XHmaJtdJLrmQfN7#Oj#K(cTw7~%$*_i!G+)Na_%c^)sTmlV{ z773FYr{8Q)Vcrwj@gIRdE%Cl&XOJY;C>x1rxyy`T*qpBa8l=7?IE~Qxw!`gO6k;-t z)h7rn1xm01s_RkUwlj(_Mjqab@$OwnRLapbZ1ZrxA-oS4>~39Bz&`CX5eyv0((G>G zxJ5L-Xi>oR#J1*D6?PTjhk&NNKSUNdw!s6*){e|*$$!j83xSLB9R21oWFz8@1GzRJ zl3UnZPyi_A3`7&&mmMkB_!C68c!ndZ!sfz+twD=0%)pMD!O>c*kW2)^tpF*%;qOg? z(+qRD%gQo|f|w%gnLrVZNPWme8Z>^H|2gBy8E{1=aLcz*3{D=e2Bw-3+5T?tdqE$V zk}p^Sl6)bmy}%nJ0J!Emnj&z`V(A?>xjl6|s4Td6p|9kw=hXPwbY8YqcLJlfuiA!V zo!_2aLlE@IGyee`c4;-}(niujwo5H6Gi8<2rS(E8m>iD;| zf;uWo{J5kRZpiahl-Pb$cZ73U`p8!a)NO@JDPdlqDR&X!y+O-yvJ?jN`9L1KBx$PQqz9xJI}MGE)`w>&)YsH&6m?pb zK7ImYXVwM^;XJZ?9av7YBYV%=FH0mv>&o0`PW2f+n$V1KkzR7cnab6N;zwey<21tx zSK)88cc%cZQQV2UCf(Eot{UM~B@?Q6N(tLaUi%OlLH9zY#*#cFUEcHZhNws8cae6i z=b;lIY7ho`DTO!rM^u++Hs+73D7ZM4X1GvlHpzD^Yd{kueb6UepzLd7a!Ay6h40XMX1 z-~-xq6gfvhFw>!C;16Z;jCVvSUED|OY|UCbIAnS;w}mLx0!_Oj4F=!P6r3~1jQg0k z0l?6>jenag{FedVG>YoQNNwW*4NjjrgQaJDt4y~rNWiqI9aG&$xkC(7 zQ*cIyinKTBxdCL-vBYf@?o^mcss%GUwe(N+olb8_Mus|{7i@)hT^CxRe&MN|+sSG9 z7Y9Gdxqp9$_KTED3mH!yK?088V{VyuKg;supFd1vTIlQ7^zET4`EaQqW4rSygMnM785Kld5Fl7+n?R40XF$7>ZNPys1)Jft@U2PwU+@8QB^@JC~3({XCQV>PYMi@l=Mf{g6gNm5;bt#Kchc-pb0XSi?>cYT z!LE!Gc^Kp~=dDG^Wk0_c)E1{xP3voJ6J^i?UFu#}wc%8-Zgm%IG8-SSl`?J7 zB3xS2^e^HD%0}g0lgd3KTlc7y+5|&Oj~^Tngk~8#9fK;$ikg$31R_oS?(oo}o4c7VQhED#s_MdXlA87|YaOY*(j@AJ;@)KPn9P4!61Q^`JXfC|= zx_)XU#QFXMq*zC`=5RGFr{uF`Do^X=*WK8vY}IR|M@^d`lL#syTC$!x#*Zqx@s2n3 z*n7nIuI)14UP!@*xqPqA%W0qkrlh13uwjZfr)fKlajQjxt23#p9sR3U;zV`oG@4cM zQEiL4t)m?n+X?(c46_9gs+H|{?gHXB4<>-#s|aust^xaj;5#|>3dI}_`NQgXWmk+e zHwb!^ghADFP3^FsAwF&1MO85EfODN6R;>%LV}ZtYu+)$CA_p^-0nWEtQy+23-*T-# zS#dkpfHp_%)y}-%*-yx?6;2lJ^ZC6S&Qob6#x*^mKEfkV&_dnFc(_Xe^weut)k#sT zUw+nZ3TVk-tyA@UGrcRp3>;^VJTZADfr zlLpx!?n29ME|O51r7SR0DWdQ;bhS(yL5NuBeg&Ar$#E`4R?zq5%p~u>92FUO2IFxt zm4kn<7TxMY>Q_#OF7xq6w$>y&Rob02?N7>Sg->A+IHm79jd$6i^JP9ucBF!8hA(vki!0<*hF zk=bcV$Ff?OIn=F)Q+6_Sa?9bFiQZ_0T4k=bO)GL&X1k9V=KS*!qVghBC2hk`%dmU) z;3WTRw3MNa_;GxoKId^<7D7ytr72@Pad)-t^`OGwbYEZ4o2yf&S?WMTXb7l@}avy`6iC9Jlg8i)VHH5quCC^D@>YxqY+yj+j33)$Rcg$V-2Bg@)dwPMptddBo9 zUygsb)mHFib~V?<8e|*%NKZXg zYc;cL_6)5yy`^(FaIdT*ha}da65MSge6#{hLbcUyn=~-wRh8=8eh7#BqBr+|sq))7 z*Jw>L+rN{mYAt(r??RBWBIANX`c*d3xJT-&UFQe(#F1ysXF^cyM=Iwpwlpbr0^5CG z>_roCIhP#R1s>fUkR(1V{_pKWgGj>)9Mm`CsEc6lN>9n$8W52%?4Epk8pza%Tz1x_ zt=9ASj%1}=j3dG)09XS_;WUh>XkGH2PGKp_Ib`6>iZ{Iu??+ZctU{5hOIFGwA-#>& zXvqk-D;Uf0xg;ORX$IR2A%NpH4j3g`zC56tbJfS!c8(laIs6xMzi5IUdoc-zYG5lQ7K zAM@UQ>cNzS9o=~^87F#>_K&%os;iZyjdUCeI*N+l zd^Af9rU;)fJHB9Nq$FPV0vm^_BpJ5jD znrJ8(ua=oP;S+}W)QCk1M>Y30we%M^ zpA%odd{vorm1_v_lq5f|-BTP7nf>eHC=L0dWBslfT3_G4J`^rfM?b$K-=`)n&x}L@ z+rlE#zm4*xkg&cI+?=uF*QSV>^(2p&;3 zHgVg2f#>sUYr)3-QBVx%Xbsf*`k7?%2T|ZrnyZzqsWZQS9;47F&O@1WDu#oSvWOO8 zLH%{p?F9z@laM&~I-!9jxpxQLF|v+O&Egz>yS9Q{Wu|9t;{Ocv@hvWF$e42y#;37^ zhE3~Ycz#x1t{RPy`K{rG-5V4P9`;mP#ci}?FoPsT)7B>C77^@(M|F=h!|gjc*`!Ig ztNt^CgFR!A1zLUyqK|65P^ zh85d##-xhDgz;<6QX+n{iz9(pA!xL8UW^N~R9njo%j|!!c4`$F`GoL{Rn+1wF**uv zlf{U|f}x3Uy$A%9Pfb&Z>3lS~a;Ya#;5-$GRVWpOZ52T=1KXwe;9H#%zT7sPg7=6r zce2?-88bpA>YQ!lPSx<7UdaGhtNL1rcMN913g2F@xr1%zI-S%-+JPhjy}Uulm0>EOQfdr z86^^ZTq|cHT$MhWgKV=aUUA&}pXbHs7U+@&w3!N*iOhX1)AWaUJy#aTf4kyGHbiq1 zk|^iP&_b?PkJf^wUT5G|RzagE-4-M6Ts0;7RjlhH9gA4RUfG&eIdi1&Ra29Ei<<*f zw|(wD>xryt8_)kG00e6DwIiE!-Z4ekNK4cO1JRSsyJb*4`It0Jn<06+deD2lMsWp- zFzWL9{3wsH^)C=Tws~?$xPW(hPgB;+pJH1?(RECfPF%G>*BZycxO5AY4IRX#gsM~~ zy6a;jorwv%11oS&mnVX@oHIQ^C9{vHaqC)65L3#a!>&CgD%4fA9U9vrc*N(~VceT^ zu-xKX2V`M|v{jS|bES6D+pL#LG@3V|Fg6y_qL6WOB}1dM>BP5gTlS`E6#cqfuoAK; z(C0Ge|Kk{I=}jUIh@Nd4J`UnuBomlp#|p*V;Zh`b=GNlaZD#^4j0*_X=SKH*mqhK6 z5SKA6Q}tiK-ytI_eBijyPF1fP#Hu;J`Si3Dxp`9w_WX#0=$ia#VcElA!V!3taOit58j}P>n`{ z+AdmTA4J#7xz6VKCd@48%Lb9n`;Twyxt&~_NfiyXvK5@nQZre3q$`P|`UmU4q6JZ7jn^T_7+?E)=F2s&WC$*F6NR{d=~7 zSykI^Lk`GwF%qeM*re@!q6yIV54v#pkasc$g-gn|8{0o?6tT7h%uQLeo@bm9Ev!4o zCs_PQ8*S^Fg+a7OfWS`4;WB6VXL4jsjA;OF3yNF;ec6OOdF2QtBau$VaKXj%N?#t5!q(^qCyeh)6 zf?{$dX2HeybxCkXb~e%ULjG(I&YNBqHKY$vj;v9dv;a%l*= z7N+g;Z`m0{{b%MKgj;AZLF{Q^j1Rp3BBFWZP7m&=)v-P0&f~?5Oz6d)+22?DpZQ3> z$wW=QSRzl2nNYTR&zH&o!k6Tp-3?&rym6`N9>@=%E06TOQGS+wj}no#b2a~IdmlHQ z|7%1zYT+D;xgt$9kKse$RT!o4ZZxft&`wBORyYcgjv&P#Cnj>*HVHNBpMSQ+u6W43 zlLimUf(?O{p7Z2o?|VpC1t5uaixa>UPW370;<3SKGQ(3Cq^=d7V~>Xh`l{#L_7|h} zd1ViDwQ8O#sK!?kzeGli;orKOO^ zzbzh<+x@M~bLN!sWeLIw(Ca|gqi@r4YMil2>}r{j<2XfgeU2ulnUVEu&rCNC*wd_6qNy*H1dK76FbNs-Qz z>2*~^SNe3Mk$tgy?d#VM?ozhU4|l$^{w5|I##QUaMKSdYG-3iG1M?ERuPT-wjZqWW~1ztM>c9 z$z|TLL@#JtEp7&7gLD}%oy#R%4Q4)k+lT;^Qt@AkTve)e%i_-}~ zrVrffIeifLn5HE|)3in%SyVY3>)ylJk*8gZx0hPx4y9%J7f1mza{dgCnqN3G*r4Rw z%@0ruCrZm)#}0nIxgjK=-3!WL~Cf|g`mre+zSbF^5W_z*e9rLtU@k-%0%q=K#bw8(604Y%gg+6+l}uc57)X zMMt-NBbjNJXYhYfZ4m>n0hEJq+SDuF6yy-}RPGD^2k%M@-i0PO6q3ht7sv#oxuvZ~ z*ah-9w;{1lX{`@p3Vl@^ojV9FcG82`0+;EVzt-nT4I*t~REW}Od+kk5h4$`Lf!@Lw zdv51(i5ck4b)_a$<1exbj%R&n>{odqbB{TSRm+nPSY?-MHbp%E_93@*f{XU<8>Xbr z5RSCaZyiz@sZW5AiLH)Y1#A*cHfZ0IPCY9wQ_HaENueHGRej_sP#`_)KCW$E+*-bZ zB;hBg$+4x-2MBzOz5pTaalAuUjINo&snv_T;7^sRFGGZydmdsx?EMzxDN1t9GYf@s z2)sV%jCdL5a6HB+bAwM5wZYt+H$Ny65h+vr=z4y~xHYAT@IZpipmcELY-! zef(f71D&5o9Cn^S9?-`47~vr*VZnC)8}G(>d7A3e2wRZZ1X1p0(BF%Sq;i(WR;rnuU!ALv<6B+vO0{IN!4H${poq~V~z#zWa#%uT57Bp)f=-Bny&eL#P zA=Dwly?+1>>~Y;-dL9XG{csAdHsB5Wh6@u037oz$l2(%ca^J{D0s@a!-#)!$ZDn{2FIdva$>?Ul+SI4bDINb z$^aOo5J0`KCVNRfECfbh0Qyr)+B`n}6ENcu2H%S(Yj8QZqWTQpQ(SQ510`Ox#@qJ{ zq)~qW)oL4XI5SOo1+M@iFoFUgu1}!mBV6GyjtGFnWh}z7_Kw{?*fi#)Yv&d zj{Yanw6jF45w~E!D*c|9c;s#9{B&B!g;I%WQUN8MNLDGxetWi(Gy{|?1F(n~+@B5r z7`8HTq_F>;BO|ZNmN1HxVMo?ZJSpELU=lA^o$LcFZKlve?es$uV ztd9VINz&btU`;|G+{rXdfPE6FJ^%QrRxJbqrc*N%Dh%>NV;*!z-(;f(I+OBL0LMzC?Cx-OnCB9i z`u$Ds`}U(K3Dv}Z@fJ#iF7#MX2vFMr#)%R#@*L%2Xo$Is#FG}WxzOka31kAPinb}# z{;ABHk{pRn6WZGRW<@iNmW`EE<;C2MjR3(_YXV5wwgO~#4ohjwU2$d;GC>c5F_GS#7#z+qpSyzuu%61)~n3O1eo)3sT3~hx4J6H(5|x zvA9RKp6QNWWp;0a+DE9RBC{<}sVY)|V7aOm-oTEhiU6H~uApl?%(G&It(=L4t|eS4 z;HwjGG&7D&_uHQe!&!&--=y9*llcmK*1tOTFt`+gDE4e_cNu$cg1@n5kX@#m#k3QZ z_X0~EpW#rVj*gyF!}&;JH>r;+A><~+1aE@c8Q~k{7h$<13UnOv$H5-79Qq`9)kTwo za2+cCIx{&{$0J$9*zh2IG%U3Ey*}3%@6#OkWm@P2mu&CI;F$9HgfHJhQ{7Jc0e*rM zwPZj!tE~%;rD>*Wsdm*D9N*<353-NL*w?8-j<-dvY8&WXJc{`}e)EsA_8ET)eTxaW z;A5ueK=41T=exo==U6i~%jIFoe*OGek!h7qyfST8ULB2w%bKFmC|$bONhaFwBC6@@DE#Tt(w(^V!5`0~LR|(J*!RlM6gix=`D|IfU4-^V`1bYx<_av@868X=W-6Fj(EUQuLFo zqhh6SK2%3c9?dkG_KTk6@I2Kn$Gq?chIr7bk6C>%^S}upjvol?^AX@!KchrE_WNuoPAXLo3r7ZF z_|_zZP>pNGSEwXgF7Fd-uK|UK4te~c9!v2vaEj!{R*o?P&PI*n(d_YI;o^Y)s?zo2@x$qTg)U{rRb0M7-kS6u$e|o;b_o{F%RN zu}hN6cYQwh5#+*V&H#4kamjZ|#ge8cH|AuWL18bTGt#nocLW%&V1WcO_^dxqKs1EI z!i@-m9Rv+g3$l*QSzi6OYfK>RTIMxjky{OiZPE3|K$_-lFW^&!3=u-8L)7W>s9Sss zCj=0xre4E`4M=WvKqC;Q>os(TR!*J@0G#X&Y}1dW7f=^8>Wz%4o@WR%3eMERWIc_GP6<$lUG_nA7jgO z9=Z(6@F{Fiww;vTD0paKIhg*O!gGOU(iaq09LZ{RYzc}w42VqG^~se%AGM~?|5RWe zINfr);kFMqs&s}@>;Na#?`{$35T8Yt2(ag;9B8LLKn+$)amabV?n2Gbhz*S? zCiquQM-*~(m9!oGJ#pS+*K1LqPKUE7z_^cpzZ*1saebSx2nyt06s$#j7xk%l6ewI0l{<-H zZaj{@K2K}VnLMg?YL|YbMjZ$V0D`678cCX_FfckI?UVXn^hF-06%jw3u0;!uY1VNT zYW+Dtirmdlg2| zW$5la*0}?vbi>S!n)wg7IA7_7^m1V1z*!{!6L&%&B25}6XS}~%R6`{<7AVIg=}j5? z9!DdT+K!Z>ZXf_?t-BLuEPZo%10Gy6$2+*39ib7->6;`b5)Qu2nU)NlLBuE zPMq6+hchd~_B2m+*fG#0kU>Hsa|70lhU$vf0A&Pb@YG|#mBH;)vX<+KJ`^?zJ)jdU<*owsB1^!04db$%Ba-I`UjR5{-D53G)|> zbTWM0)|rn90C>g0B4TlXJ^+3<0sDjo=tS(n*b-z_@i~$V+=H+kQC))#rfg_e3JSGT zKi{@7xyKAWMDLqcNesOj3MKoms2KFtNPX z-$bk7-uogCruk*jWg)C0JEt_xg}3!Py}Jjpl+ZmQv89sJxQ)41BX#1*p$c*`;kAIL z0mMdf8}<*XZw@XWt{(iTp2uTW%rKm;rvBYRGQ_Iq$;=bwY%mH1noYv1BP%sI<vMOsCH zkmmO_X{T+4E0v*FXHOy{wwdK)H-Y;`>>qOM4Zz!;40Ct@=szrQT)tlLRww+C#>KPP zstL)l8r4rJ(E3)C-XpiHZ&Sb?KvS4BV1LZOqUd|88B`(Qsd`8#9eT8b7-%bH9P;&; z=*8^ranxP*GlM5}xJ(pEdn6H4O9f7^9DUfhENq$!?KtW4p#%fD#oIRGd$%&I$&rvlC?R!khXPgZ%9Bwx#>s|;tA4F} zV%Gl=b2RdhKaY0FFQs8hf4jcnvaSr71fFeo<|rc55Hb^ zIZWo!VLKTAB{|3!E$-w%nRIL%Ku8F%kdIQhwX}u#HIaZtJm_^GjXBN4r6kfqpK+Mw zF>##p_b4jIio%!tZV1oHPTgvROh>nzy6aY76&~h~_N+Lsb+VvY5&#N7(By){!r!Xo z{caKY*5qm;h$Di+HeR~Px5CCK-x$ZsMzgv_jtU0!R|`!9_}ncH6<|tUH1v*8%=Gvk z7$m@(#8~MG+&b|bIh5x-8@|ml(AV)#T{fBx5o!OgNWW~CEp5`?y>QSU-b?uY@T@R# zRvWSxF{b_A*x+;7aD-R;57WjQC2<4V9hUKwii<`e1lbsF)!bUb*V?;qR9vT!>1ymx`}F~4P~#g@x$=+GmoLEr0r$WJ^w!YJJpC8QJqP_l`Nh zw=P)udAotkmad&W*JzBrYP8tU0~eEV?Ho_!TnZ8P%%^G4XKH*WaTP9qpZ7?AR|)5B z!8N{XlJoI3m*mf>m46J+7!ENs&8_Jsl%TLIvSFVc_PCQBOhtp=Q8I3Fom9baaN`zXls8iDkpo+x3*lLL{ z;VWWJGcYK2-3un>Rfbg7RbLfVpMF+=gJOI#{w!vMX^c3$y5OVEB!GqCREH z8nYu#6sHZU>L;g{$~@91r}wF}vJ6A=TA$yw8<`b7O~8}Nc9&WWh(tc{sK+4h4gjHp}ItPVZch%z6(LCGG&l;mcJPSMxRXwPD{SW%*PEQs= zSywl$58z51wNak$o6Ys9R~07zEa&S}88k|;P_)tTC~IS<)tflIvTS$ETfJ;+IfY4% zKSNLwH^VQmpJaV(zWD*}AHsBg)Axv=@EfHr*$M@W_V#7#R#Z1AMEtyWhnOYBIPD}f z;f|B$8@9iz1@!W0e)VBj>ntf5L8`=eQjP3&sK@`TmkUSQMv3B@Jf$GdLk6qqTJZW# zz+D$$2rWF1_PUmWBO&&c=9+RGV@j>zK+$EUbWl-tiaN_kz|#0#>JPe>$zz4hoMPA6 zBlmeBdC-86p|FYYy{4Fw9^HXmdb0sT1+sM*ewi}p*Ln(-KW+Dtpr;E^~xJ?(Ae%CA4)WA=D&11@yZFD0ELl zT52MHHh%?qf3Mc~&TBQ9&OQ)-PBNsiuowGdOyHnJ`H~fRg#DqpZkVGk4OeFHv$kaM zr_3P>+4FmCPTf&t8Bj>Gq%N|>&#*rvc413BoLWZ?T=C^#>WpV{e%EcFA{gKU#tIUa z;ohLlHXaQhxh)z8Jj#c;+|USn)@o$4(qLgzy$4wZLlz~(k#)tkFZJE}_Q7-Oga!^> zON-26-kH&5gQ!|RQrNVYCoP>kv<`s|8?msD>$HKt7r{k!%K?;HXV1#-Hp%jO0t2hf zw6@7Bmj*8=`ychX`+h8O!J(oMH)Jv64`ayuWTbglOsH|t!{&B%S)LXBY(lX*#BHOY z`4dwjvOUm4()Ov&7lF-Er^n7`C02qIY?_B*Sd$e-2<{ao%uHA># znw1LAy}<@n(E*^&rFA#Phe!HlbMH902#MIWCV2V;UBd}A)@PJpYAO_6-KJux{EfO6 z9kWcY^nG{^p@n8<8^nJtbh$Av6J4NJbW$$sW?uSS_A!PGynU~Z9yr1aMv15&_WxR> zM^>8H@f$CuQq<7)Os9q>}@2FA2$jyTeUPYpU;zX z7K!|o)5z=eD;PxKo&;1bMD9T3p##jC3g0s(MJ>;LBNY~O?%1^i!cYTi@Ml_fk1q2s zsaf-N6b6^4oD=LeAE}tE4t@r@wDvNp|5D;kp?_D3A0+!oVq%_?xW}HdMqXmlItevP z@*D>C3w&ysqT!+`ijP@km)aDNR3{xg z0zWV2+`F#VLPiYkJSAoAJ!%OBXt^9&OcKs1DMo$1trpO~WHzWzQ)|V{82tXeF6kfB zMSvc2M9x|mT(b&i%Y39lzP5_y{x2={`l|+~hTz>@!1{vpoj5gpJ7oP56=MDW$ok5# zD#LDRx&@>`x*O>blmPWc8q#LAL8U#f+_kQ1VedovLPcMbNpIG-= zGqYyCq;Q_@CZ4F=HfuwvNX2n3>Lz`(<>HcAf>A0txgn2%8LJG+_lN&pMRCuwD_q*J znjK!+P`~)A+DiM5LIqp?&Q~|zWAewHv|fslGJMk~Qg=q{%I2u{ivH7_394(U;ew7o zs@Oe4i9~EHfZOmPTB)VwqHLKi&suy9U7PM< z8Q0WIOtBsjOQN+cCm|}YSzQsQMI0-GDNsKyyX?^<`01p&565vnY6R0)UB z@T}o=SV`ia#XQP79qKW7g+TY+pAT=I$aK}_%-BU1mhoc}yVuMz40GE;&rgy|3;C)- zrw149HcS}}3p*2q?nY9H6r_VMnI5`n>Kv=hv|A6ecq*taN-lQuU2uJ9nG!`B_vx8P z2G|U=}BO`<}_On{EX4|-p%a6`%iOZmqGLB6Rmv1HYyXO1n#3d*uePTa| z1jY@?Py4PKe7ImT0;6%ES>ah-U zVjWLC3~@$&#}XWy5Wlhz#dTj9y+B;(keWy92|yxA zn=1QW-fUe{8qex&_!#Q|MzwWMB4Ud|e@N zKC5?8p0x-6iEPSo8@UzHf>9k_i{|HhtjLsswrN?ECvx2kQ2`CT)ZD*ZjK54bJG^>b zHU=3#-Yw!+bT_Pbn2}Nqo)o-$lz1Fa$c)|T+N6JOsbNm|!8)tNH^i57O8>>Qx~(ov zNQW5bk1nal7t^(|tD#!%NY=I%qq3PF5_h-NGmP!^Y*J&9!CsAPQBoesI>gP#tdD1^ zi>k>#h3O8}sn}EO%T_&D_u)*+WgmZq`sq0%+-Qc2)rc+r_9fD3u*V_${;2Uh?L?$v zd79+iPLh5Rt(YF!SK_Nu`p%~5Lj##$p^{f!6mfm|*$V4wu0qo!>q?eG&2z=OKTpIa z-0MW2O|5EiySRl+h{i|%*r>tk>Py{6ROe4*?CR5|+?3~OE3}oAYB?O+DDVnFTPur2 z&h%$gYFM|s2-5tkUmf>S({ffd$YNc1TGt5_|9)(eXYlJbHUyTItNf_kg$4$$Wwx{K)UutlE+oZ@n0NBwY&!do!w7&=Bv)cMZCCR3=r7fQO&KD?A zeVqrm{H?IuJ|FqrH)pPCL8gc=i^_!SYxE_`g~Y1be6y}|8V2<3W89ReaHfCfca(Ec zpwWRof}yRk9galEp;x@+UDSmeWwKM0%sf`at3TZOX6PQX zriQf=3n-CBnAjkV3cl;PiwO8>4EX@p+) z91&27E-}5p3F%E1hE?a=AjyKK{5J?GR&BCLuSiQOr)OMM25t_WdR86UOl6@Til3J2 z%%C^DgX%Ot1|qiAtI@!4*vuBaacIr2)_00^%ToES$kBKnYVXlShJT--x>(i+DUu?|EPIv1yCa`fc2Cua{vX>i?R4qqe02Q#y)MZNua zdO)0CVDvhJZz>EN4-e^;vw5VthMyntI9C#;skO z26j>)ir3R)lk8}Mw;E{6vcWRDuEW(a^YcRW(R32?%ndwERb=lY%|~Jr-p-?;b_d*i z1Vpm?ftM1Uqq|Ja?)$3J1$y0oZE0J?MMq$W*t=;u)41*cvH~E;HAt&LFgev<-et;> zoMAb=kVpjN{-R$%2p{XmihQQO#+lL*YFvg!aKDF&cbl=oH7wV_M~LB0CU7slIw;Cf+@sY+jQEviCF)+9!?cwfTd6#>yMuI zHH)PuQDXh)cv75EM~8>+qtv=Mr8J#0Oh4Sap6X95;+JawI0W_C0TN27t}8jj|C`id z@3R zA-Yz9B!6}^y52Lel;Dvzb`vJP#HCU$?qKl(P8LSMiEj1=s04{VeChbGp!Eeurp2&5 z(j%tHOMEI1C}ntYNEc>+Q`!}<_q@3arzTUHwiiJ^y^{PAzYnrjnC?|}b!j3O%Tx-# z8hRgJ>{*S(Q_Pcjl8R7dF#c{p(;pA?C_&pC6zH3-0R$HaP2v>{=~H3!Z%p|2k;aG7 zs;m5g1uje+JBo@(A@EGK>`gTyt01eZ!YYZ~08ksv0zkKWe&@0wRa@`Ms`lv&kujau zF^8cC5}O>m^NEzla|1jw$~idU**B7P@ZQD!JFr?m`h=De=%?+no5~gsCJNsC`p>kv z-#8|@PqQ{6@&)3P(Hn$lhWu%NZ6NgY_qC$Or>yfSk?)=U#zd*=>z=0AwF$8BYmFBr zFl=9WHznW-h1GZaVmS-QjOoKP;Z+A$CIg9WB~Rb`CRXc<&l)eq=$|c6jfC|4lUFdd zSDG+nbToHVO@&P<{)XKTt!lnyz$rIGqCpZ_Anft|B@^X{->D6bPaG**y`Essfj9xt zqR(m+yXM|^o5nY0Rn8cD^n8KQ$U`7-E0!JCV>tYAP6ftth&3#XkJOg8e)OVvDmmNB z)I)S}6`0uo9{|?cEa~Od++pngTwpEX;9PboC1w=f`8Vg!8pyhzdO%$!6ATbHbbS@(>ON=t{a$AFFK?72Lh(COXZ2I zLpmo?sB8mBiS!`xe=2@wM1-}>$?`A72#sTaYF^;{$ET7114;J``ozt|-x;?W)FhJN z3)Tc%OnZriqn{fq_%wUG-$c_5+!r(wWEVP+GIWy$4RjpoBo>#J$#UL*{sXAX{4gth zV|kr24`A+rPvVG6xVVPiuDvXj9osg(fP3+(c;_%(7Vlvd999Ih^t0&HZOJb3*UBC3 zF1``1&1A2M{=I>o6pTAy$tLbIzLlrbj8yN?*l&q@|A!vy)o>z_GmHF>liJWD;GBoQ zq-$3_<&rt-AU;CXqX;ra*Na-j_vBBmKj_A$M z8~XZ+iMa*YLfm0y!+A+%Kf?>nN3%)X07B9eL<10hv6@HJ%^I{E(ZeyyRN zxnY9CO>aMGW+n_Em!YvjAbWfj=y)aL>ypnclbhMNe;1kAN z?twiA#GM%E;Zz$pRa}r}4G`b;IQ+h%e5KS(FRD0B( zM-ag)N!SGhG~&!wIAWFNx&Nya7LrH(Ni0~mo}Y&k_-ysUVlY!BjqSJQ%KJ5bFLPeEL(wnOl9 zfFVIg3WplI@OJE~KQ}p1;!prvS?f4!dzvXN4`yRiIzyM0TiwL~TsDvx`a@wtuR{}6 zR@I}l?p3j~N=_0iX`8(Y6||Znc0zMuk5?CdZ}9=UjmzVF9T}T8?}gKuG2pd#wx%_X zF(TGy_*=2l5`KRilsuBbXM`f-MQaFI^Z`74X$;EfX!GHpIH8@s0P|CFKF0-Ke^oB&G+bp0dJqV|YHSP?`{#M9<;Ly(ku^#HP8`&0$LFL7)UX`i{%A7E<9LC|OkdD~l$(5Z+b{(0|3U@(X9=4Q}^`sqqWKMjTPtk=+LP zt#fNwrV{TYoXL(#y6%Dl4yd=^+n+$3tP!>ea;aFyk z2!DI%JxOGOwR|qIi`cvl0!u}m>dqql7i}VW%&$YVn)dK24dlNUnD+=pET)BHV=uP0cojo zD;m;Uk*%Q9>?Fz=b=qFco?h6`@xc^&6XK5NB`D80#xjv9sY`?~mG=~3#C^PZJ3y2< z?p6z4vDZ(-Pafpd{tQo|uQ(6#)M2*}lnS+pX-{~D#KjPMctnLt$IxE9AD;CdeW{vc z{|!H#KtXQd_&zk7|-=NY}mdXlyF zvEfw|E%Qb?C&o42r#X;*9y5}r!MWe597I}{TLoAdXSk}{L9u`G;$u?V%q!=26lZB` zWmcg0mt}tV_xJZtpu(YV2Gx^NO?_N;gPs@K>`iV>hG2r@bh$FcQ_iY#s1R&HE>8F@ zdz~MXWd5wNvRYz>JCeTZB)7<$-viS&GmQC{Kv;;kCtg7Rg*G=N`V(vqbV%M4aIBH^ zN{+vL70#5T$OP;BGljE#iFx96u^hJ{9)~~rroWYXic0_VZ%@=^566IR zw3X}E-_-lzklg2}QrtwL_?X4hK?Q;eQGOl}&Z`8q0RyGN)ni%&k(~<`!bWN|~aaFlKht2zGu5 zVurlx9J2xK?awK6C5{}>22M*a6&ul4mYv3KPUN&{)eZ8VOKZCa0wy)Adg>ux--L}j z_Z1wUlt(Hbq?)QQzKvDr1i_(sunpl*BBX-pRMCSHcDkMF!p8bg+;Rxgr}aB{7GvZ4 z;E#fS`RN!pDk_S^Y#lUUPosi%lHT%Os7NO&YxCu5z(CxH zGk-exLgiY-eav4Gp-_xVK2eU4Hi0!?sK8c$M7tN*m!t2e>qDtwiD>_s$awep&+U<( z{=e8H+FZVnW1p^po0xeQLC#fwmdG)O zpTJh3_oqH&x}HsXtZ?cq$3O0A*z*D)60=kxQ<5n>M^*Co`iAK*1gO{0Jrt@U$Gw#L zc?QNI6w!Go7qj|VnM~*-NEz~3MrJGJ0<83-w%olBXgZKc&SFqbiW3jsNQ9Ua^yHOh zdmW@hWuMbDSWXs%Dc1Qoms8sl@;Q++auwbaje`v+bkWeND^`?HZx|z(X3R;qg(8&xNxOkYN6Gpsi(byCB(dWBOp&>Z2@$j>z0}JcsH@C!S!LZ ze&95ih2w&&+sNg@y<;CHE<8CJ{WA9aIQ_1@@Em}=vi*3Rv)`coBKllPYS;MT?+ewsS#=qcTA2t$^S^nfYXCP+=(1xh4#Xk${6oyRdA0Q7I zB!Z=syu~%~6i0yGyMYLFn!iReDO#gC;kWI8#=~l}0LucC@TX}M%la}74JFJFD9VA> z{hM0|s!l&Y|2EM)tt9+HE63859FJrTRY5{C$z^v0NMOUycMIw}s`959`AP=X;^fS^x;1&Bd0wJoba#3 zUQ5f#dN8%h8PYX1H?$Malf8dZ&AFKI6!GDFUu0?%SbY9t+2r!4Jy{B#q1AUctA)Nl z1ZadDdjW`~(;B0X7Nfi4jo;Kh`$W*>M3%h9TKer9ahO@5!Bde89pj=AfD4B`1VjF5 zOir+p1%=`cVoAJg@#kXnq=F{nL&rO_p=fZN-@MYLIrXXFho=~TQxQ5#bsv>M?K&i)5 zP*wV8;Bvny4x4%c%U)*UjbD!P!)ym z_VjDpPAUYZ>odLyUNLd9E_Q+jeu9dm5bG!+7I6giOd4fQ-6$#8-=R!()?VXlwG^pW zFviq-gZ)xT^nO-apYEL3D$gLHL)cDYoTHHh$9TKY@e?lb7tl(sWBh*eunk$H`QgpN zF=+6(a{@e(tX*GQksi2hJ)!=r7jJ`^JqPK|r|*A(O{^G{F(&$c0*2nTP3nRqX7*)N z981fYy~k_tcyEF_D;R3V92&e6#QEM~ozMJhU7-_4>FWo#zF=hf;uA*$ z?SJujJfq5wZH^1{so%`CNJJglj%n+bf(%HPHB!;Yk=mf8F4utH-&gQD!{Kn*pEDD~Bc>7OIi9q174`8PX&Y1>WTxFtV=GdMl{&3tCk zUtBph;Ida4*Q6|xB`~^0t=wrK{54&cQy-Wb{@k4+(tE*dj)?5_AdU%h4WyrYNe?Rl zEzcjY|51akWbfP&8!$>eODy|7;|a`qqqAb8>VhhFzhiyM=NT~GdaxEwkasI)^2E@B zp%Pblo<)37r+ZkvbX6K3J*A^SV)8bLLzv97_&0M}#}JX7uwGe=E~@QSanKH1E!8n( zGjAN5b6-KmNn3TeS(5R0QJ3ZU%U7YF($)2q;vX&}d`uuaRe}h$CDF^2{XnveQhEiw z4~8{O|9#~j->%W9%ar)K>qA3@DF)Mqp5$cmU@y0Qvg>{k=qs?(N4S*LK45&gg!Oj- zEknAH&!^xB&$GH=@waWk@r-JQt!wT}2JH0@sS?C!y=fAzVgjD22h(uYseVfQ`#5TL zCd@Z%vjLr5^kEx%*!ZfT z!~M!vG=g|lODrrAHnE?JT@1toi=2uzIH3=`C&a?plMp9{|e`=Mwpgwe{jXA7I;9MegX zg+mc~UqI2|l-e9r+;0rW0JfpSkPvL9i4jm*r*%afJ21$Ck z-e@tt^J#O+YgNTy_69X%?6S;N848yOb`MCVO9dPJ+s-B4XbKU`suZ0aMqDdFJq-X9RCYs6ln0sF2`IZA;0KlbE$T{z-M~F_gDUu#>S)@ zsl+K}JWYR_Gxk`&iXW;?(mHXP4#RAVHnJrl7-vx^_qv-hB@J+GVxeePj6cCT6jfIi zQ9_DOjR>!)8tWh0ok4V#pKD&VAEf>?TuNiWu3&7&MG>7i{mkF(1aIM%p7{MGin;zo zv=8{+Q5>4sf5rY`u{fj-3wgVJZ{5*##D5U^wy^rjyab~LM-#oeO8-=Km&Evj*~?(# zK7!BF_ju5c$&HGBy@iM-OgDNe!io8p#&cng`I%4GEu_E76eVi&F@r)W-W<0x#Na(q z-1EJ{6{l(*?oZKON&P|P>0ZI=eAA3nip&Rz=Ti9ltbq9Bk|0E|DRwP@Dl5!V07@%2o}Qyn-_F;*zVN+BPv_jO zc2=a+&lLh|ovbgSjQXRuJn@P4%9~`A;jLTKoQ3c$^#P|swZp;(9u3rXxSuf{Tv`sr zi55rR5c_y)>hz3YR|*pJ(=~YUNIP%--9HmOpAMRK&PA`SnG&&2Fw0m)YUWqD72ewWOt{y%g0}VOvU8Y)ACmc>5?WrVXi6l4RVu~pH(5$kk}*VA zo#pt2ZdgLxV&~jYMpYT5TX!K}_ENQ(=kF^rdnmuS>=yDa#7!-H(=82^zRBdV$9mI( zs0Y2Gh#~M>)+Gx|T(NZ#%K7c>BVKS#0L<^5Cj7!r#3SwDuNFm)I3x~G-5V>C_C(A- zHZ>dy#-a@-YOHD%b&gH!SA9R`i4#USVxP<4`e$()TOUXA%WCFy>e*l9VZfGI(|ssB zF#Lw>c?Jb8e~Aj13saXrzdsjdn3Rap`7o^R6gn z)Ak|YGV7Flr)wcrYRPt)EF0C~RA(jY&inQ5EUmb+r;l9JH;HxzCYRV0L$_7qg6Mh- zJ6c`1v_%=L&u-G4-X@7NZH7XoYHL_MUEx7aGm7&|#n-b8wyk&dq$$q3Ln+KUE~AMw z(X!xd(!r$ARjFaJKcz1KJ1g!Nn+8<1vt`3gd?L~8NO7$TrJbMAiIGSa{}J$y$izuu zvLdTd@4C1#y^2eE?AMB#NNv~Wgm)NG!+6FaEi0cM6a!Q z^Z9gGX$5>AtL*?caqHG1MuhlHkDxOl|em1vY*{^kaPN5r}au}qOGtGlkb$blW_i!(J`nU@O=v3`fI!@ikRX#aX0?r`}7U$eZ^lkw-r z(ADjN^xsDaD9a=q;fRqEQ8cTDoWIx>Ype)aQnc;3n_dRB?Y5Tlbn84W3^VoUpv713 z;nHhE?bn(|6J?4QDzzMEi;%Cti!ZP>)gKdi@~_F;a}O8tvFQ?ihhUmFjpJ)F&>~08>5ffi@~%xZO~uTvkOi!Lu%lb;A+>MQA;l19+vgK- zQlAz)JW@?MW?*2jJW2kpx*0Q1j54De7?gi#g|b8>CnvTrIyzcjUM?dem)v-SS9(zCH+N+|I5s$j|np0ZMakUhD1m0l9pUB$|kq2$E5N2O;AOL2!sd;HRRJd ziow?DL80W;CztrJu;K0ghB25>s}xdFK#>c;k_OkdmR0U)GhbnzT}@MtqE@mNCSTC& zSnQ9bfIJ~V`_)G9{{3366B{0R4{$3$gp&rmrjoRNWqv$c3oS)qF6TI`kv>ekrDXT-D%YRTl5tA5UEhU?T%7 zpnwt~XoZgvSd1KrC3(jRQko1A_c`$W*6;Lg8mdRZWmLWh!g#;jY_B)tGTEIAmc=DkX%JcfE4@-E6$gw+dHmFmx1IZ_ zv^2}9{Ou77vc*#4zTqD0zQ?Kbone8zfr635k$9C8mDL>Mk1sQq&=?RgzHBP15YUQ( zQr8Vq!hG(}%5@q_KIVgu|7*T{&JfY?V0CJ))5k;GVk=fD8&EQ$qJ4l@GH#9^O-@b* z_X-4|lYAO8a8@iVoL_5k{8^%qshIXQK>9m@?PApmxXLiRy)gu~=*8(&g%;yqHEQ&| zPUg$6uC4&a)CQ;+nxQmyGeB>Eo%_+L{#|k5nyPDKPvbHYewt1wal^|O;@aFORBAdHDPY!Sw^RdWJvk+%TGe6{nj~Xz zm;il)#1{G#t6p@U*GX99E@>taw-WN7k&PF->ah6WLumhli;*eV-Q2cz1rqp*`%21(OS$2 z4X*Gtd{`QE>bTCoIZk5J$Ep#gvvuvYm@+LLMVI~me(J%99>&2p+m_&YFAV%1l&)ksj1zLXK5H1kVX0Yo_z^+ffNBk5z4WC z4-P1?`jKM}UWke5d@+lHd8FcA>&Xmmaj?Asj0ayHOOLM z#F_eIM`{ED84Ti-rL`6LSVDWr$lyO!Rn_|SS#JubuQD(KMYECh{e-YBuIoF+>=nX_ zN0rq0?-r1X%`YWgZE6a(;^79U-8Bmz7sQ+O)2l(1d`+&UiJZO{XSufHiS4l7>O2^U z`!YfY3eUBp-`_X2sbFNy80WTIq^6}s*#2#!=voXZsiYFT*Pk5_^h*H1Bs)@nG> z&p31iU(8peiqPrV?g=|040^Frs}^)!3Yk1Y{JFv^;5YBJ=r-9V%eP8I;XO@8@m4k( z!~`Vewix}$5dtn4Ne!J}hx+>q!$mW70xy-1nLQk)W{c(4n(Zq|Scm+$xb?MNGCuAO z$B_xRl|2}mAn$H(s}!019Pxc?`?`sBkn`69oq+hB(lCK$>Mz6}E^LSO7UPVw)Dw)h z$sA4`<0~0cIJ>`IRc7%z8k&snZ*M!JQOM;P8bw4zRO_`oGq_-R%=_r&3;UEI3xX;8 z+gNTNb{nb+HTYVTDAjZ`Tmg@1O}shQrPY!;jWODy-|r?txngs?AlBZGrw}Uu93=SBf)q|a zXZ|q9cn5rIk>%0)08gvI!yfsnGP-7)V!hMnH=w~ON1oF$E zuH*fMFr`4Rai2WfU-;15v3{iW#RUr+d#%x?5KhP8u)Z&Z54q;X3t2u#(CguH+vP#6 zHR&4ipy2rC5-Bn1)SGV^x-~nVW8U|h#e7^G-|1xxaypx~%c3Yz%6$)3(=$qjCJag` zx}W&GJUwv)8+`?w+7pp4B}OanfQv}2QFqq?^WOS_zgcDoed(`0Qc!$=WuPy)ey&iJUdv}W}Ggio%gn3(v z-Zyx1$@L|bMeh?3ZMcqGuPNmhUi2lZ>2bW?1+Zc}P$8If2RFg2_xJZxDLstZw{Ld( z@Lt4+zItQmdKROuCjekvd_N?8etEzlM~5IW5V!uEs2e=m4-#en00q&Ct0o= zmr?z#0+0P_@=tIBBvH%3Q49UI;S^tH{!^s{mWxb>1zn;XxA@(x$CzlHN(k`>dJ@>M zkwAxHrDUBZ+Xbu|cN%@RAS^{6E~5=f< z>lo_rg}8us(&4fm7n>xl5)QgIC1zX+!Dm4I@qr=z1j#&f`dB(qR@Bl*w%QQ>K||8P zxtyb1!tTR8|Jh1Im^62o+<9UY9AmED>bt7h2Z;k97Wq0bB6H)ej%`!b$$#hgM;!+B zWzSa}wlSY^9<^ka-mQZi+8df;K>H@F@uI!9Q?AErH?vA z0j@s(-N7j@vNfU`#~mC7P5&)2-a_Jpv!g2^^a0Lg_6eKcLWL%h!Ke{^#qSc4-A$x%)7RVFnF#X@ zRr>QJWw4^$#fKG8Ia#C9<8wp@0+GV!IEqTztyGKI1&gJk53y)%4dOOamOl|%Sj+}} zOyn5Fk|~xB6cku6cv54p*DK&eSX2XY8l z6DXW`WONx_xx^EUPKt#eF@7NF6gO7L{W78@G$=8(=wv=R{7WF5i|od=nxv3E|N%$(W!-Amn`73blCj%qFgk6a@0zs$UtWeClD1%W9UrJ6Sjd zI+m!xUywpT##JW4@*(Vb=r_HtaeN|84DS<|K)Af<+P}8uTAoV}Ef2Sr%V;z_Kud6_ zjx}rK`*@3axD?#lN*|#De=Nfs zhi9WG;XAVYp)YxqO#&A~li`Kpdi6D5B4myPrDk7$ejD^=`medaji3~XR67-4kFZ%g z<4=Uu)oWJkf}^RflMeLSubGm1QKoF71~@i~NO!X}kBa#z^S{r7vsSZ0T_!a>7RjQG zPO4G)*rISQU4cl5h1o%pm2IB{{M9kdFm7r7PFJRIP{KIywpZZ82nX9vnYSV=y{JU+C&0Ymj5f3VVWa51dD> zCl!_C{nvpsSc#J(xiOV#?=6zVaotbmXL1riC=ld>Z!cEs+3j1E{57)-Juo7o%n196 zX_E>2Ia1m-1B;4IAqe#qF`x3i7#v=}{FkJI$xN*p{q%3|vFWM%t1su}Yn(+1S9BY# z*{!Cs&|2=5q8taSX4iGs{REDXDLPdgb}b3Fb>TA#!-|wK?MmKhdJ9n_O}IV-Kef@X z4(iy&)rOsI07SmU7b>=((2Wxr14=-mjRJEUs>yV&AA&a%SPnnt$$(byb~@ToPCSyZ z5-sbAORBGM$YG;R2*|&G4hxI;(s_D%62BSvW0YBa&G*>w_qWos=;`@D6v2jo$9c!6 zU%G}5Xnw0~%=M*Bv2S=C&Ck{jJbgV(>hr3%l=np9T?sq7?H}I-CYZuodBFVaq7v-$hMIodi1Jty-D%P^m?%| ztjyP}MqH?L3Cb|muBxh7^2|=y2}jV8cficovMt@h*)oA?<|C!edsFgFFt8e1?@34# zNR%pOn;S_`=xSJ7YN+V!8VrOcMTs7i z>n80^Zvg02XM-;NcL+Iiza_xr9$51zS&wDs?`n}iJPV(apS9zU2<_wJF#~jKWZ*2b zsvA<%$V&_~rfMV=8e@V6g2*&kh(VBm>4@W<)h0VJ5!e>O7{6CfjC1K#76w|vc8ZaR zmGf<5Jy$X-AOGGS_qWI}+Yj$Nf%-oD0rV&Kk-zvJyZ>{G4n&-BB|Dq#*ZQEj96-t_ zF&@ayK0@Z7sp2|=G0Yz{GY`;-FlCpwW+_%+k7^8`vXM;|!LtCrKn2 zd+lMm9_A0mIE92Fd@n^;pM>}SZq+8;vEnuX`bCrWX5ZSPq`BX^y5y^=Ek=7f;hd;$ zrGGW5RZEoXMi{M{Dk|0kCJRj_e_THd;iiTRQpv4bMj; zVhvgv8{kiw)9B=pxSaj5PxbZ3u*+lywZ&Q^HW_+ly`(ZZqQ#C57M5wZr{CKSBv($h z!Q3jz)Qz2&DuMRVjo)%!I#%D>pss>th&R@$N0h0yQ<1n#dEw&M%kvc)OjPTOMci0G zX8jXlgIA$m4n}#qZj46E>-4m=G8Pqp1s2M`o{tWv(A~!YMJ;`h1^0ZhdJV`>$;{v@ z!@wV@*RX{}2QprxoMrCEvl7Y7lL|kworefx-taEEu&F}KRRH|R52$kjbaNUr-zw1T zpMs*%WGj)zTqqf1J71Pi<(K>dWDK7`=Uy%rg~yVZm?*sn2y8F{-2m~5^=1cuP*q9( zHbHa_2U$YGl~%Lt2@!`mQWaLYA@CiBgj)lI1_`(|9m2Mi>LJ2iiWcPd(=Vxv71dvCh5HTC|fl?7! z*|C#_O18G60*E>EZ3c7hEmcU5QXcOrD+L0QSu)$?#Re&HMd&PO)(n1&6;C=5Lo|vAh)&aXoQNQs^51 z5U796H$#O3^P^U)mUO@9JBh6ek$=s@-=cRnT_}y*ZG-(r|AkLT2TAL_Em{dL0T4He zh2-b2{&t5G{rVarPBSI}L}!>Z#0>;33@#%lj+fJ(FExO+lLOz+ky`V9pSHyB^43 z0Q~O6MdiR_tXi$heewrf0K(R7PXM#XOG|5iGlotkc$VDD;&-jks#UB3BVpI=tX%y_ z@2&MXaBThQeaaH<0G7HUMPax|nd`dOK|kL=6CHt-PMHV7C0WRI)`^dH^~E66=8O}RwR!jkEM zgXY#3099;4!I_0&q7vGFx~ugIIir|`Xzso@<$D~Z0w4&)Bw8K4qWGSYmKIJLk9Q?4 znWXamGqsiSk?h@AX^VV4@O919TuAiCfaAm32<{uD?=R#L>lK`#?wo6JG{Qj*D2fCq z)94lglbC2d`3E8~WTg-PxLO>#9xYvBNZ#S8ionhg++C+DFZ%_ajX1qqnd@V4vG))B zD)ur>5R>8un|@>wow7naZTpPB3PY>r3(9~W2&|g9v-bZ%mLi`fCAx<)c_X+~regN= zaOD>HdDzAytqZ=RdKN$l{kwc&PyNGz8`923;UI68m?snJ^kUqFQo}+mCEfoSBIxuFLny{tkt2wv~4iER+hcEe7uENj- zTL1_`|Eo|%rFPv8cv}f-88B_z04>^64HHsdW7w&i^ju^zGN;~kFt(u09YautKT7{N zh;JnC8l|2PT(Lb1;BOY4dTMj|hRsHzYve*<6+jn#`)SzeZF7Sv7$4cl9h!X9+u^KA z?q&*>F>I#lun0}gz@XY(B9#C~>M|pNZ?oMC93iDx?&qdx`Hh!UHN4>xvyOSJ5-b6p zWaE%e>pdOJCQI7|reyl8gLSZ>mHgJE4{n5KXY`oTHlM1^Z2qo4hPW0uaS2xrzJ2T#1UoW<>KyOo0&ql4v+cztN$ILX_Y=Ft+SdM3vBBvo ziS|GMS_qT^{e5g3UlTcD4HqWI2{?%KCy?VtdvLssr1M875%{>#hARN4akT!OQ|y~! zz;~crB!He1U77?%-c&x=UX?Fd^-E3@X2R8L&7m|@F)G7M%|;qRU5Pq?9|6&4z&8rC z5Ke^2H1;5lLBR-$cEzSSzSy^K3&7r{2k1@(@GpQSt-*l*n-ob|sp}Q}3oyXWD`;)y z^MrAeD?) zX`G%z{{)E&6?|1|4#7{es6?z2M3QG?xn_3+{)8lBy0gsdH(0*1M_ZS?15jq*0N^}A z7FAVoDtNHdA0Todz+%C9(Z1SK=8@FXVo)u@O1~5{N!TVb5-8YzA@`WLSImWmYND2}K{IJKuJQF<^T!nz;N8fj!*c>SFk1?C zG9I0F$+A%$qwoLK(x77E5vV^>x4^kyJ_l2LU(7Z00R`y{$;1J-Be|NtK z!4ksKK&S8SwJB@93!NDz^YaDf+HcEh4BGq5^MsQN-AxC8mQ-BIOzbsm%RHtc%vIVu zkD96Hpk`++*ccwv@hw=9KY-<#%ifTzM9H@Y6da!EtL(niKz7zw`3N<-0HML+2xq0F`a zYF_K|kb<}QkU+fDqh-VWF=fur^WR50cI%xYZLu|`LXZj@CV(y9Y`Q2XhFHk>^CL#SCQ~p*gtwy902$iea zpwb`9C~~aCe5%g+WpNBh7(-6=LeIBGmrSl2g{DN-2BtB_4&}n)n5#<{py3Wm=l}Oz z+$Af(a~UX=Fj}og5%Mo?blCU%fTo;vcXK3xDxY;#x>CZL(7};oz-+rOB!CmkmKQOISs!Pr#9&W% zR1xwaoad6Pm+k(EVw&NOQG9OPGKT)j4?ZjiNbrB3NFj7xj1k(+utgZf$dDziux*mu! z*0V*UfLPwQX#iXutz z>wn1_iX*FK-MR(@WMEI33erl4*A37~_k2tN8#a{!M?QzHIkJOK3F7NYU%uvzU1r(L zmB_p$;A_Ho!y|8=X6OSfF3LT?P;@OUVaSmP|IF+iJ=9wKN@P#gogAv$_Gee8ug#|4 z%fI1mhio@qWL6Aa0WJ0ouL{A_s)h$COtN6BjB&?``-f8gZavU&i1T{~n`5J|!^nA3 zt?~g9GKJ*xb#QoHQgkhko?KN(Q<=fvp#PA5fcC?hc4Bi3zQjbB1foL7PBN(THuGgO zKVP0bCP$|-xKTr)>U_tbX%XrIf=4nSj*DVLkWgkyM08>Te0;jq#ZskQfLD*p!oGNc zE{lL>`;8L;%c$8=mY`RCYkbx$xsr3WnH91COo-w)1hW&k^<_p6moh_P562kf`H?E!*y>Uw|N zg6Z!~?u$H|+yC%%l~GZBUt7ABl2W>nE=i?h$f3KtQ9wXJQo1{(8>CYVLQ14lQRxtr zR6xad&+ot1JKtRD#J%^Nv-eYbe~~1%R*^s@Qd0%{mlAf@t+3|hbBqJwev zt^y6BPIEP;Sv-hVIKWJHOk=QjCjW6jdOvf*#`B<`)G1QsCJuGdUw0y?3bkm4>2V_O zLqaPUyd(1Mz147b4t;zNmNTwtY^5j}607;2fjLomN4LhO-w)9U#;0aI2AZEMz4c=^%hzjwRVK@ zIFgSm)pJVbL2XhBqzgyA;R}lgST7#(@V)-?V3>>N=3k`;1#iMOFk74TD0p@RSm=ZH z>X;O-_6%Q_$VA9$2G~&k3$2}Lg=h)9f__4hn@S1!r`#L5*mvJ~Qx(jM4+jxxFr)Fz z*=W*g)|(E$wi(3l&fY^Axi9`^(myUFyC=axY`|dqqGEs7?BjbmapK_a!tDqTIW_1! zDuqRqE$XAwF`lpEM^~EfU0$DF_g;3cJW`o?^4Gp~P0m$!iZSWVXyqNGBw8U34R2Px zgkw~t>m-C@;M|}nUwEJ~o5(iO=6_`4vXL@F$1C1lMnQ|vmoh5%n==j(J^nkWJW0}X z>kJ6bLyqam>^qf-ewWj)KjF_p7_VZ5!~4=m-RHswilZ*7MNMoH3+s&+VIomY?I{0cRdI@g&E zRZ@2@w2?&H5f^S*zsKVzlO8>LsK9K!p=0q9xlAEsSoUd3xwl!_m#Wrc*I-k{vmGhz z`0^8lagxHvD#aF^boD1p&s`#K?-KJl{-AE^O{aHNG2FX%^6)d*)j+g|pL0>OR-Nh3 zqHA;3DQyz_sogyjN@CDHDxgxI6$5vt*af-?-qv_MQLxBi!nDjL*Ub0e{qw#xxvc`z*~C*b2j(U&sTuJ%6E~+$l{m-s zd!+GxW*o`mIxlWyxtrx17~2WAE5;-zz^P#chbXLfV;h^bp~#4gJBGY~Py%&m`Sh;{ zH!j}pcgXKwhiM(NjPVi^DlS>Uv+EKQdbd+mmZF4c)3hG)whwS+Fz`t63rjz62x{P< zs}sb%5oVap_UK@FPLu=qTwrv4|41egR|=*jW|TVL3*b!e)vU+^By(_Z5M}fS=~4Uj zE1{0*t~J~ZVM*&}w~FjFr4(#xS%rkT9Nyh4=DYQ!<=L$uk%#3O^deTvoB!NAXAyq5 z+2+E_I)f@yZ7OwIg^ULcn%hYB8p?Q9x{7=xUcGOHe3L>(oqvx#ji{jKQK~LG6P8C* zF!+u30MvnJ9BKs-UKS9nU|a{4$w%-t$MfNmFz&2D87Nrr3%NV0=hAK&&NRqkZ#{3z zz4=j|H7GasiVS1$nf~YjJ5h=pl*GcGpI@#3Tt`PYh~9G?{p0Eu#Xo42p%ltM-wgEv zXc^A$NfJh=%q?4;NM3(pDhw6jCq<9)FckJ~6>mBvQ`20+u+K|f zM3G~72K&WlnYy7(q#Nqbb8~6NOQ@Vx^Xf{itL3s>DtI4?nkludA#pWCZDlw%|zon;Ru4 zD26rvFm!BDn<i(%yz~zM7>d!aJf6I;5;dCnir?~d~y7wscdX3VA zO2ex~>YtrwgC80#qsz>{L^K*G&t=y$+l=T+fmH6(nPbFu)#&f}KNlwihM+=$ru0wW zTd6f-MdzW=J_!*?+uWvKQY9Ia}o(d1g%IMFiEB)KC51z9htl4nOGT@tR z;`_5##whZI*EZwn{;9)d%p5P)=^G~jFwb@Ks2p};Gd}#?@lossi)jOq`22(^&}9F% z6Uh`4jtR9)0aO=(B-DRL(?|d9@=U|uIu9S>+IJuqW2f&$?l6!lIJ~kd?Ed|ba6?}+ zO*U&OVg!$9+?a9q5{fDjb$S!E`S(t}$eb3Uqa_x`$~1ce*DXWY0yKN);`*Nka*=N(7d{oA(*M_%rV z8@6rif8hY=oV?^;CoHvIfVRZ{S<*$t?7Z%L<3knnPnmxIWoFt!M+XYE1$ER^DacA` z+!HP+&1trb?e8&d|ZAxl%YQ6tm{RQ=uBo+e= zpE;8IxU9Tfm9g8t{saDv5bcnLlp({1_I2qMINo~Sm016K%s{_K0as<(Nmca4xmoNp zJbop~6P4Bh8wE~~Vl*5pY6|z%yi8^yxfPwfNJ)IBrP0C4ms37pA#7Ropcy|F5i^FB zc&@6FBHhGCV(wu)Qzz3LcRm$Mh$FI;NT*B2;K@dq1;R4jY?E|#4Q9jNKMzpiOt*)V z^Q|D5RmiK}^Xbk(B#WN6rA_H+>a~Zjc9|nu0!|z@&7u0!Fv>gJ6D$7&QpGjJq=Z}@ zJr@_Qk)3KlwLyq4<#l?i{?Zqvt%KJPIouDW@en23uRO4AhVzL)%$7n7DfD)fLW~xF zytY3S@Ta{w67FmMK+WD%9#{l`F0he}{dvRo?-40wrXgu%9gljwrYC{MORYJBrRT~m`y$GC)We$g{ik}F*<{n^V#!Iqxs zGhrbw_Rl(r1-j2-fun1F{L5pi{b+q?q0Tt%XNj;qOCdJYCz(_%mFl!ET2ePvNj=)! zmQv&4?L9wrHu+NE2}{?jbv8`Du;`_!PbH{Mjwn$$8{Cc|SEZORBr7`vj%^36ab5EM z#Rl2v1-Q>LriMY9hEDWp}r;N*VTAoFK zm@0}pmdOes^A5-|oDY-Ayx(=AJ2UGXlUecgj1;RWNVpJRzn3Q6<9aaW2@Ux?6cVA+MA_Wl4d3>xQqhW5js*@c>vB4aS zN9pY6F!T$3=$e+~!M`QRA5OKg-;&f~nC?CC!9sH;C6V2gRlt&^EMh1r!6YbB&BAVFL27{HWS8A0JcR;T0_07+{C%@}X%pG6!yGwnY8+-Dv z^V=u!hYmmAi??h`KK}W>m4Pk283=N-L$&WxSmtn*#>ZKSGw(gzQWvt~Dv(F_%9^cm z=e>9S6$4KOjWazHi+bi6$JWNiVOXa&{=0JgNA0>N%$l$UG7fg(?{!k#9CDx2Ts=d|6X)7Qs#NX!< z%_g7ohsW2jPK$aeqM0C{P6VkbAy{Cnqd+I>wg|e$;Ilcyo)Fz$!1xYX6?8BK?s%K; zu;x=FvKLmjO&@XuCyedBkmC1U5DW`EQd1A$PsJ71IxEr{ZX;#9|9f8uGXy7f0gyUK zIP3ocL}6C2G7|&0=}0r_&}5C>l0gITW8a0p=`&8I`_m?)hcRm zf~)DLr|@Y7MgB#=@7oC@2QpBLRr?}6OpFCsHT~?@Y)1htpI9FSO}^^0scwzC}dbrh}u zbN0%h**ODCufTK990TlwP{B~kgc9(IU=Jeuu}uUsX8!GtxjV8--!ZhWjVhV z#K&B=Zao|mrmNC0`B*DmSbR(oP9XNAp#DSO*I$Y+s@GzPpD$O4sv_&Mr zum}pwj4=A+Uy%8vZ`_IUaXg3VPQXGOHLKiifM@@1( z2iMXyF6R8sy?5b_2G+q;>x3VTHEe?26{-;1DsEXJZToCk*RL=~GXOKOnoOY-=b5PRY^FRlWXqFxx1?Rjg0_z|LtztsZl(&FsV_)d;sW z;szD}SFntuMk3nHucus`Y~SIeeAx+_RlO%?fZ%V~>`WFvNZJT{jmh-X!lLlcEs+*J z9JM7k^UnQ9lj$1PXfu$Heoera0t6^VwToc{E_b2IF_7zaJn8nSh_9Z#foBX4YTV^I z6^n@<15MWdjHr~Y`X^Xv4)OhyX?_D%Zq7fhAvT~t7G@W!x9NozV-6FWSNYx7hPi&j zuZiJxdHWlckTXsQxl3MMPA(}^0D@Ihkou$q#s1fcKrey;>)E{^j^OU%R9l6H`PXHf zl?SrYRJHHN$KjFUa0!j!QofyPx?uUVmw*c)s@0&3YBFI6l|Mk9arh4?uOQW&d`gZ7 zW;tlW+2d-Ey$wHr2u;W^U$@yWn8_!nuK;syg*f=wv5*&raPCzHbHi8j zWc7p3{a8=&Se8My%0Z&)9Hs8WvNqB^Y+2t}5!>pRVnF!zhKOsOs^7-KetX3_h@( zt(kUrYxO#fq7>I(xP^OF_AFqQCS!@}#3Q4Uc&n?IwaR7*8visSLR&66cE`jvH8N zO$z|__$v}rjx+BhCAhJ}Q2OT-&!I$G#wrwc5OAb7Q=tJ&$H*XbF#33AhgmW@rdN9Sz@+zwb;UROCg|l4_mfINJnqPE>$meEN8@SwxV@}qQ@or03 zib)nZE3%i2kk@V#Q^{+1821{C5?(w%S4k|Y*w(rR)k2kGy%5)UH;VCjUjI2BYpZhx zES}VYlYDz&do>09h$X#U0j|_0=?H$ATTS}DLk8Ys%dvRu(poB+p&f3EmsFX!iWktR z;V0~V?BHYB*htgzLlZ&y=}-5;*m-<>Y~>A!bMmmq0&szqFhwY+HS*HgW_Y?2q_hCp z%C&yD|L+OqEPtE%3kzw|soUN2W|oi%Rff^w^EOdtrQ3I%?a4UQu_eJRwLA+T}1)K01rej4y>ihbhde=8I9GNkb zNI^c1pEJ^-Td7GN06S_~3$#GtVL{3Mu>*{6a@9Rox<#~rS(L}LnEN0i5Yz7a&45R0 zVqzkTtPh3{Dodb(4tHNd&%{*q1$&aP^OgMQhuSHoM@-DvXX{~qr|r=m3Ldyw%le_!h5}>x>SCE?zX}k_ zX_tbhPNtP1ALK35Ivz`ejEX2>gWfg(;ZX;|&eIAfQ_w)rKT%4IWC?yp?dYVeoU>(B zNdNSYKmbWXa`4~Fm_HnS0GJJ{IY_L<(@E3#-G!}@Qhi?jqgB^CB%tlwW5w-9UEu#$ z-3I3aDG^ZG*=36bPDbU|%%W5JJb4}+kXGA^kt^Ss8Q&RlESh02bx>!~Gk5luP(;nW z#JvyaWas=PgOL+Fv#MtF)1ao~y2wbpNMU-G$dP+5sC&NM5Ko2##_tBwiZ#Uee!QpR zphNc*k|T5mw(cD%5l2C;(qi__=`^MTLsS zE5KSu*QGN~qQ77G20~}Z8cu?iJ3O_%Yx9+btrO8ow8E*gL2%}aCh!<|ES1-AB2Ip_ zO_HYAQ#%JMpE>_iqLY1^5CUUd>qak41!=Icx3Y?L$#fT)606|~y)?X&H=H7~Cc|JI z7+qPesrdVih#EdBDT096x z!*J8lQ*#70Hv}w4y z6cv@EA4mN0yv7S!EJx1%Xgi&C3TIy9<}z5z;^N|49o4#nZBrdQZ|5&*Dc`@3CC2CH zsC`PXkm^M#7MVH-+=d}AgRt?DHUk7tS(s9PaM#@5FR1}f4^5wUdI6o4_U1;PF84_K zeif$17gT)(MJ0%LUiqC*tq&N31Cu~2`TfMiT^yuX4eg!k^Ox6S>zb>U?U}K(5px*E zrc4GSu_HVMf2!&ZHb(;(=y(n99^oQW&Tx;pP21x;u5r#$zy#$NU%qLL_S@bkrk%sL zpXvDwzy0MkEFI#a_b#b*jv2(_H#Kl*fFsvwDft5$+G>C}p_iQGO#~ThHK<3o9=2hd zsofX;UDx*BKbn~lGwg@8mcw*1wfWFJ+G-&@3WNGFeuF7>Zz46UcrS> z9U+qm9aWk0z+%zX*Wf%Qga zXJH`RR~$)hOjcT=6XqXH6^G06TIpShK-<6K?7YRSCYmWd=CsQUz7iW!jVGL!YV!kn zxuokwA>*VRxeCHZI)g}yNg-x)mIfJCCo?rl{0-xi4)UcmmC-4&;*E|Df2V!1!HPF}#Ik+twTcjKx zo!W_M1P32?KOG$_cENRq+AwZHQQ5Dse>NFTsz>=%PVK%MX<@WSgX)GX(_$~d?hPNE zap*sSVn1cWD-dujpLQ!#$Xw^5;aqHQUGp4C`%unQ%rN9ocKrM~^ww8afCo4U3CHCB zax?6m&b&i{LsL6TsK-r&=)t5@#BkqtK1up>Mamt{<=!O~OKS3@^4rUoQU`~Y6-MR4 zq-9Wi*DSA$MXE1?X2RApH252Y(?P}8x*34nr+hf68ImxIjy*JuqtV?PSrh2^|6`sWyK07r zfipWFL*A$7$xH31#Dqf*sWJ(enO+s%rz>YBX0Kb}Rn&xFEW|EnY*U_Me)Zde*WM2Y zJ1HnUbGy^((v&bQ6Ofh`_#VDLLkS$;n7`rb?E+1SEj>ev9jtEPf49Q$js#UWS3=)% zrP)^4X3#B#?$|y0^h2`1cT(jo#r+5M7^-75wLYP)tfTkY+1c;kr$_7-JO;+BuUVY|+Nhn<3Lc$@?19YI)Yok0oZ>Q#ldMj*}WLy((>NfQ25JuR7@{ zn^-*7i91%*0oET%gE(3P4|bMd2=8sO z`l0N;T*|aal1U@6WSy0&p=xZ0^{&74W?Q+Plu?oU0~4Z<9oaNGI%Kwl$eDf1dwZOD z4laYbs-TAV)ZwBfL@&&~hW=n;oo1eDxiww>{DZ-BSr(y{ya`8cF`BupP20B@^-aT9 zcq1_!Sg}?T%B*vR`O{SR!j_Q{?e8te%o+XA3pjDelyYSySSW61Rh(Ch)+uziGn)y` zhDRv}U>=kJ4~Jr_##YwQ#<<#&stQwcNwH#;{mQ%}v+pam4E76EA4q*m7qERxx6dm^ z{_*<${D*6P>f$tW`K*FJJP;P|VgnGgY2*Kta@@H;h2{|KTJO3yvoUYVeJ54j@*z=N zGp)3WoNifLMbm-cj(^2T0y)uqnoN{I?8 z9xJ0^`z6fYlzYis_Z2IT?A+Ff*O^eRGy9-AsevscOi3OrzGBNC%m* z#5j;CFY~0>(F$#cU6ADxX1q^2vjgoFF>Y#?Wti%l9s%A9wy`K-%Z z%PDipQ$7|8QQA~#1m$L~{vPk`>1F>uioa{Y!k8k@OKdV+eDExWba4He%OYkK`__-V zbg|aPUd%bDl9L8SG_~-SxpkEX<#CE=k#PK^YSUj{zT*+YN;9ZIWu-)2VO6>wL3|_0 zEzB{4H9p<(n*#Fy^KS}|rDnxIt(kEhWjsye$8|VDBFSz0p^y{J16Jh7Mok6dv;{bg z>u{!c$hkY(JyvQO6cE9%3sUMSS_OLYiv|8&8k6N&mAs267=M~NcYJdFEVe>LA5Aq?Ous%~BaoyJ4^%34s}$t#E+Wv5 z!fKhzc^3FdLJU(^%)~^MF_n-qARvI3A4>*d{VdR6uKcz=!A+zB-G#d|czpo-2jLQ{^<|dg+G-HH0Xv}AQj3ZWX0{cG|m&W7~Bv)|x z6!6#FtW6J2zK6uDs>ZGXyk_oD`%3C(m|Fr@sENm$NOCn{?<<{~6*CYvs>sY*795a# zisUxnLD2ikj?xgYYg^t(stZLu8-0xkXT@~V_Xrl<*c}im!C;i&D+yZ2biU^AV^x<*zmXMVK_nJtw{Kq)M1d`M@z7jdDt^2lReI?Ci>c z8J20HbcINclXXbNED6?_nVDMFws=wwzUyKF%H8O6x$EX)FL+Y-`x+FUkmiifR-ZYQ zEJ2dE9>{Wc1P&VNaxc~HmhDaJDJ9)m`F|h<&(l{#3vEQTOto_ z_T>I(Kbm^X)fxN#2gVI4ZGhfU%~8s`evzPDOvh`yPqV8W#h(8A+3|XFYb$o1=^dC> zoCSY7Ur*YHa30op>FOtyMn%$@Rd)^>c|}!< z{|YpRhS1*vXro|kKWm^m3;+z20;P0bpb;Rwb#^|ht0n7NtdD~=Y^HOMhtsin9U~1X zuxYCM3aW)^3rrYDZUc?3;+)l^4YlpFX*E71Ufx|#wnm7-7*HVGi^_JGk;y?tV|;=G z6eYIn1O;u&9#^;1FjntPCX%<@$t-dfvElj98KLw$_QN7W82V?RGOxb9rrk8pY|6g5 zYR$1wm#Vewz^VzH4fqPER$6PA5s5uX<#fNEw}XgP``$EHRU&8sMoUvkYELuv z(5g|L718P5oLaMU2wyFmY5_#vg5IOq;|Nz+r_`28(1t%h>+%6wjL4ANjU?{>uDM(@ zg7$m6-3V#Jlu4BVb{B++%1SyvQ^A&RrN-Az=PWSjSoM-Jvh7=cz)_UJr;Z`uU`7KQ` z@lo|+Re?dq7hMmx_j;>b8|}}1h(2Zb_VNAwIgHxv%$<6-e^=rGCArSaKjd8LV^UI; zPCDhLg80KnG|hQOS9Yyoi^!wmeqQ~&LQDOp7*aKTF_vU}!xqJx3U@d3n6Oq~sixC@ z-|L$XTC|ShB|JRUPdGRC>y=3G&~}B|7250$$a#0K=a*MLTF`|b zEWCg*5~6O=8&bjF>N`q2VVTGmqn1`auv58}kovAPKWC!3dbhbn}X=es8&p_FJRF*+ntH> zj5qxg+4CUIVju87_6YRP@b`8KE&%Fn=jkQHOlHo!m?||&$U!$mkX49cbF*DU`WUv0>)Rq*ZaeGWLX3Zh@ABItX3wij9DM0L6WD1b&TfP=Pg;#fF% z*ND@mkrqs)-@vHiktPNJ$JEXuRsr_};`!L!&jI&#Q+kKraBT`PZ+9>~;$aifKyy;3 z9NV!-g;~U^vcIa9U(p|M^hULVUR010AgWj#$?d})hjE%zQZ=9Ai^N0VfQiKdPn{kbr!%G~ z6oNX6TJ76h?IS>{xQ!Y^zTqqw87Xs5pW)mSE*a!578> z=9@ob^(n}Ortxx?3^;Y^Hj*ofQ)r(KCEThEJ6xL4bGBr8;B^h1+9dS@NRu>go7^3> z2Addh3p9bt%Ye>03&K&v^a!=s0k)V@IXO82=W0wa6~EP+-#=b|DN`joIAp$zDr6B% zPdx?pYHYmMykSgeKqmGJ+e`-#@NQ(;L6%Vr;=&}yR@ zejLj&du3S_rJ&pu>~eWBO8>b9@DnwOZJ)rD4_sNHqPk9hfCTYcn|NYz1-`D5M-itN z*FR2ucNo~u{5v^SpF+W`NW`WMi$F0fqSV3m?Nv8*zIt<>{ySzVWE0;}{2hyKYV*7GQbfX>KcdI6h=CpoPifpDzpOzo)8{s7JPE+q`@LQoa8 z^JRWuxjrb%B5^%Z=3Yvu`mV^Z%E>GT3e#h5d{54M{G*`sn7-K#-kgZZEN_i3#eby(f9|WgCv(3~9-h=|{`R?7GQb^lWXib3 zKCQUJqDhnTXWv)yzPo_|;wPyh7Vi6FKkqQPmdW)2L_!1`6?qFgoZ z3Y?a%S0Fe}C-`{q6D6t!w-?Xc9{QED1i~e17OauZ*b9Ua&S$eBVqEAlHq`#4Rml4! z!c^P2vaO_3Di@Fe6LDYO`+2|?^?@dKlY;RGVkFs2azyeqLASCfQ$hW7w_1X}Gu9OK z^xuJouTRJhK5J7YZ32|f`_*k~Pw}j{$SOu~9O-h@3&QwZuWDxAZodPUT1^y9r}1_m z{9pz=HN5FmmzJiavdSWQ%Jk4U5z9^oM@FV0J&w)8Oe~+hRI@c(Uro5y1ju$PA_23|BI;{-<&PIrJtD)gaCnbzx&KR!w- zic0OYI2rvbFitJ>4HRV5O6*!HPK>MIm@DSWJWpfSQeyeI-~sh23$AK~*<}PnGRKo? zmO~g3kJLb!NSCRTT#c1S05BLV;3hFA1`wy)2vI*zEL7I}r7E8j4XRAOx+Mb-1r5pt5 zJ_xt8Q`X`?go?PEX?!^(N@i+*$lO(%o%E=(2mS()UbM??tIaO|shfKDuzKX?dX1StoAFB4JmhX{jqo>?#mYMEWjt%>Io z9ZgPCC1D|Nbz;Hwnesu!m4~1&Er2oN)LzgM$hT)MS#7AaboT3~IuF;R6y-y>#yVWy zhG8*Hp!_9Amf*XN7O=0p?kp(S$a0%~dzC~{!XT$n;swJY9~T<={&&~(9R1vl9klcq z0tX4ywn7jHRtb*b`~NPqs@Qy*U?XBVhGYG0t~RA`2mFcXmM9_HPe?C4`3fVMMzmpD zN|3_(sP`SxnHVUQMkn<|jA*XlJOkcP_--rerCKjjaiX}cBNV-_bPe{YTn^&ztbsY*INl7NzU{UW=ssDmGtB0L#5?3 zQ%_S)G83nLf0MtsORjy)VRQ@886ptdiQ4lRU$#n{r95KS;o?)q{(ao9kS6~pIe8!^ zyxD!Rk+Flf6Dp3f(%pp@&$%PYFtmc<%o{F;Moy}{rl^tu-3Mt&Fj3OqCKD1|3>jKG ze$$oOv#Am3k=BrC?<38XI3LCI6VCm%TcjPW(=7}}Aq=s1MAguCV~F)>&3=6DZL15x z5AFTN10u&ru4#1o^A;Y*!{7RWWeSYOn+;aQKHVZyidY{H7;_&xn3kt!uqkY$J%nmT zrs4c6C=s+=QCihdRFOQMnQ6o$1B_HaEVkTBMv_^7=~8 zBla+t5HI10?dMN5pH$J9DB?fg;_My5)w2mP_2`PMs4*tIWTV_4a827Kr6ZD0i^>WH zMaZ;Cnd+-)hxYnF*~SK(@&OK=?e$I>cKKo??r4g&;Oeh0PhXq0U1Wq4g^~wAQWeL0 z$XzNO*A{Wo+!B# zHUVr8U3a8p9Soh$NYw-^hN7u#=n3xbY%OatZeWd277)`CQ4mOQRvS|i%Sj@X%;HQR zbQv?*5DV@!mC!5IILs>dtTQlhJFb_(`bx`Bfzdt--h*)Y{8g8(9nDj4FIh4%! z_z$_9V67AHj%?WoFft;w2>6P-hx-|t8Ndmy)t@d~+tTUQ~f6q{4 z_-Wu2M7#H_&`dWWrs!Pl{l>8L@I`DY85idzBnI^*4YO~R%_f?ZXeu#q9(Zn{`^vhw z?CRi37{A%~7v>c)nsMgM&sz9wzx*w}qNdKbl_KfzE3_(z;?rotXD)+W1)9Zk7HxaS zW#c|-KRA{f^m!?%80YSHPfA8l?^^NE%2yzCrCsNL7gZtpFPe^`KWUq9 zNHPYEm*pi@J(vwQz%0!juC}4ks(82dR-Bo)8M6pT&{U%8myYSm5>+`pa*c?4!?A;e zuk_ueOjQha`$F&6H#3;EGe^mkWzfmrjHaBD@z2DrVr1V(Ud_=2#4wR6lUXP&y7j1; zmOGVxeStysn`x4ecA95eD7F#gq9e=`s+7s30wMUKY(u2SmW}A=fGam|04~GTqjOy3r>{Vu* zmRom=qv%ZZE)z0?q2HzVTeQvNHW75WO^49P){bS{`fg z8Z5{5E=lKn{c+7U15YwIou8B?CQ?}<)98ECB!2xxU;>SLQozA#O1;Vu*ZS%Q(g&Vt zO3QqsM!02U(=DT^p}kl_1|QW%4*hFskO!nXIcx~Ql-w(O!6W3|J^_Hur|b3O#)CySSf zC3`fQonL+EFEwNCC-gt z-_}*nJ>p{Y=^8m+wx2HdGv7(^Ao8D`>h@W&&3DWgjM?}!&g-5?Jji9bD&lqe0&cWD zJ++bj$P+2f7O_bqd%U~Tb{Njx*JoV;1y-#kz@ZA^Cz6n+ zgbq^tx^M!~UzuymT@Ne$7$(NY|603xJSgkZA0Iv{BpsSB0$iSQ_t_93jWg55{;vS_py6q|-2T2jzu$4FQC4 z|NG#6Fr2Yz<}Wr{%b$)w7EL6Z?8qnZWR|nu5ZpnRj%NW)WH+A-7+_k3qU?=vXwE_QL`)z&2OvN#0rptWbW!J~YSs(883a@P zr<6o4j{x`z%{O?hoS@&Xwdj>tfScT_hj1P#6%lJXR6*}D2m?KHPDdq`N!{&cL?HEF zNMh{A!h8j#CjfqS&ZuBlt-pga?9mQKKw6X%$E9EM1W;w(bW{qc zttaCFqcRQefM2Zb>u-M*Aa&v3rAj1NDmbUF3q0%SDZ+(8G5(+cL&WuiUxS?94I%f0 zG%)7X`1p82<$w3ul9C&_-2rW4vreEqL`o06Lepr5GX+w@fxAWNr_Z6HRU1YDv(u@S z4CA2&uP^6bxII&0Yyy9%xeTZK(_%0CKHv(*x^D8kX=7^_RMAOx=&{wAG|>FC+4oZcA+u#J@9vvn!<6mYJQ(Z0G5Y}j z9E6xlJos|BXVsTYIrj!Tc#2|@k1^C54_RcKb<~H$$Ah^vg6$ibj8~@hY*S<|5N`M! zOL|NRWcry-o3*jgp7v9fCFCWRkpuIV9@P#dU-YFOyz|lHk}QrnuK0bO=h3UXdps29 zOv{b6(KVIA))=csxn#G-(5DZ==spIGtr_{Jw$ZI>EZzDtQ6Emwb-_;`(^d*{NS783 zN`vMcX6}0>#|OqU22-SZPUz%0VlLe6B>DDb$-S3iLQe70=o&WT1{IzXPLvQRA^rXe zVLmonr(B{jyIBVY)gKLpmnP0iD&I7bV~v)><)E+rOL!_-9!vbUrLvC9yZSOw`W2Qlzm8C3 z3)~LEqc}{qX{i26R`DRX%tB|bmiVTbg0OjjE=3M#O3tC>C{f^DmL=!$x7DS}RUW6hdRNnbg|}yPija9E@0E(ESyZhu z5JNS&xX@7C&6AN37a})s(Wn*(;i0Z6n!}MPbmMJ(<0|XX>fy^%&c&wsyyQfi!@v8u z!Zr_){L;s|ZqDh}s?NTk7&#*ccWUWK!0&fE>9)drQ<`%z5)ka$&a$X!AB)*;99pCI zH!dhjFutsgh)H+O#AQ2dG)viALLrJS1ak&C`5+4T3!bohCcQx-nNAUZ9Wy+%TCQQ+ zCAU6d7hc>szbh`XlDeev)ZR@itMkat1e5+XOH7mjj7S@d4;=aa*qI>8sWwH>k;Umf zg#=Fv3uSjLTC+iy(sLcPg;fm&;)K~Y5#iB6U15ElQkxiCR^Q!6&zdGaE_bTDnzBm5 zAVcxCKZm*2Qy$v7lT*+6kLV4#A@EadroyS&-jZ#_tKYoC??TQhD^QZoEo^?dmh8mN zEXrEp;)efBhvQe+A!e@~UTKSpK}l8Ii$N{J&;A2sSgLu&pN^qvY%aY7HEy`XcHjc!**%+BNeHBv=5 zOLWj3N`(gc)+c^GS7rM%F4a-;V(JsW4x3HrlvmmpB?->A<|3v@Cmoa*XX}zjWNorS zuu`{ma&j@cgy25cOnF7lnc)kzK=*{PK6ly7+}CcYywkm0BHx0@H7w;GMCQ4D5@9p5 zIa^0!uNvFqG3V&B{rXTrL?t>pF*Q3~DDALghl=xwk_L7T@GJ1e-O;vGwd;1#( zit+Y+5y|XFP zRIl`F%XY0niqLN&3hN=e(#M$E6;4z{GiAt7CNIXMK=H^LSydj6WKz|Ykz$FOKkoQ> zu{VWgO<@)<|7l$Xmrc(Pv?@(}ecKgow5jTzO4`hE(s<|>Rh|5F{%eXuip-k299{w$N&!dK>cSGWn%@6W|)zY5h#47Y&Pa+(i)p3T8#RbdRD12MAhFyNIUE<&l9TJzgLr z-EpezF`kMTj>09Qb-Zo(8XIn2{!8o64Fel--v*a|%(n=x`WN%pwbHofhgYSIyF+ zW>$XT8|Q1G%{bj5x~voCYz&)(>5C}@vz#NNM@lv-wPj}OX{4fOoCz!+ok#q=)ubUp zE4M-R8=3hIlxdOio(g1-eO8$$N%&6`xYPsINs_Sed+f(3D4jg@3*2ydt=iYpE=?mW z`2rYgMr}S|Hv_n-QuP6e#h9DPXr#E*%vPgj9&XW5#@bvHEi?Z3>i%O#I#zw}_9Fo* z68jVliY2U#q7rmo4leXHH2a5WkqpC39E|To@bRnmxd`K}6zl{@^b`~auvlV4@R=CG z2)=g8>)9OBicnc~zxq@O#DMY-kw+|Lr{d{kdD;vseFzu2%gc$R*4TC-||3 z{Oc3W)z#HSY_8Z0DlpOqUqrNZcU+p^&Ed7fFHy|!r**(qRcb*jkO@_SAP}<$v%h`7eS#&Xc6U0ul}>n-tR z!<4~c(t7eNydU#uqsn__BT@xZTMm^<^sPeXv-7ZJz;ij5Yq|@$y0H1+bTQOGVf2o1 z?&|Ap!q&~3`r$CZz~uM&Ck~Da-<}`le3GQMnToGE@pgUzVPB?$wilj7%3P>lVVr80 zalQp?uo%FQkpK5SS7hv9d;EUjmJtWatOR#ZV)(1UFV-I`E;OH>ApHD(LdYbFBsh?! zEY^t8f96;s+XB*u%1YI_hTA%pAoKuDwrv=Rc;h3G(KgZ+3?mXjBK-^W4M!?wu0Y42 z6!lN19s+!hWtBmdK)&K1EtXCE7~DOJy0@BWH}8;7IXq>0wB>uN4OmxXjUMOS5Nf(A zZ_^wnZ%`$2EMNZ&>i?+-JTf3Eg}@=&=DLtOS`AgC{87F^Xi@L9!>xuoeeYJOl%ms7xB^t4`EP^lW5&s}ovM6`T z_#v~Q$8U8s7P>@Mf5lsG*(d64IW#{$d$X#ylW>Pjk#}?QfYwbr zLB;x*5SDsl-G z{`*1tm)WYdzj6znrnpdXL$~M!f?nj83+?HVjldgljDgYwHB)qO_8P>`^|uw7=Z_n` z%cjg%-N`)Z`doX9m}~%u^cMiUdQ>OPjCIf`tBXxW{P4+8A6SjsDTFytcmor(XZjy1sjdm_S0C*8rdncTaUDL zW>h`$#2>({-6N0L@6O!eaT$;YcFP5KI7jVbda9^f+u7wtThp6Y_kA`hOwr1Jrtl{g z^}(p9S^O&8=DN=RY(%mK9Al;z|NJ^+Q z3P?PA?%(JCyt!Z8GB9(_nZ5UQU2A=p8>SB>#(2kU^Ugn@vjGJzqX6J(IbHREVJk8= z`3>mWcg??^HnLV-OJuF@ZUT`m?R%g;wUqvz=w|W}%-*J4WM_Ngsm~vdHQ5pbri)aT>b1GQJY23OmFR-uZ z(Ju++$T#p8{wh;QXF~dIN0%~(ANsNV%atOA*8038t-a~rPturm-^&T#&QNv8V9^zV zuH4pJP!f6NES0F{zjXhFK9=xJN50!CY`~*K=!={?;_eauswq@d%Usp=#xAc7O+8VM z=&-D#x!_uNH+JSmn&n-O%Z%|*4hz!uHZ)1JXhLSsb735Jrb5K{R8|^XcuK(gdaNcs z`c5jM6LRo4fUbs?U;WQz(=?_CfyON`%>H7Kg0*DS3b+fp9pMGNP>id_A&MYlihUZt z{@}0n&PekFpUOoIUK;fote@?O!DjcHkNjCv3&_m@!?AbC04aF|jH>NhJ8l|HKbWB|D+B?V$kuD7dr&aK>l_x-XGg%*9cdP~{T#f^41^nm zL6;g`^Kx<=;desGDwOefZD;5(zv4O$`m-9;?Qtpr?}Zxa>KuAXy~(FUZ%}CT?s%QN zKL>Fk2NdOv0Zq|yugSy+_$OsLAiWVF^0j|EHV>RlTu44P&dec$WJ(N@>gtKT z9LIk;?4X#qy?`y}i9csfkR8uy()Md!fl9ABBC0`fM_?ce?G|Q?YA9Tzz#P*Vgh^%I z9~-6vDUp>Pzc6TC&=Rg;z`IiAX~A&cpi@GQ{EpYLh}49cuoWqdpRf!R>!WS?C%d(# zllcsMucc+mR*39ZYDj71DCZbOM4s!lc9EN;@ROoE*RH8@N;?AcbU%zAX8@F11-_0B zDUE8&U|L+mM$(5Ont+$27xivc9aj9SZ!hE&I2QP6qi0Tx*2C)niHcNSAW(%3koI6> z*8tl(ad8dskqQ-rcb1b>)UnoTDoJ+7adbv2*Ol@tIp2qk#U!t(@A(dYd(-F4#z?2aNxsl_^={fuZ%X|Z2Xh%5I8ZpwyNp3GAnJ&Sg z&Zs%6hFt_ZJSAOc*~N)k6^pS-V&sYZD%!l_RBpE(YwN03(>A?Sk(MN<8R?aD+DbA0JOcC;N^W3F z4OuX<&67JB){`}W=+&O%-xnctxBxaXTBX}I_O|7QE8|?w4UNQM)Fau=0?Nhu9h@%x zDWAiaSmLLP%s!kUn8;|egBqiVPgEGRsW`z1&h;Pg)z@0SQqW7kml+a}qfRc>NiVZ&F=H{eP% zf(5UcHtNkW%+gVY{n2$04Y<~f0U2$Kn5_{A%S>?!J71Hn2Y^6vJM#*6aLg&fC{~_C z8mO>dqRq{O2=f1}WLa{x_JamX@lp;5Rc7dNxnc?or_bS2%%Q)9kV=O!-mnG1y(a6b zlOep>3^*OpshAxOF|mIx;^T{CE{XLRCJlO$DfQqg&y;oZ1RRysue$!GfSi zeJbo@D$-okSYfL_aV;12at>X^pS?B1;52{G^7)Z18hfEvZ$@!2m?}ye-p+;QMzw|s zr_YT`IlDZS_`2v^Zha$!(GOu(5AA%I5xM23)$jXDG4vEP=DcLB_UQopo165lxn z8U1t~mKdP2iduCG22Sj5^;|xbtT0pjUSOkR2q5ak4zCeK7t^sv_did+X4cx`?e}MdNAtS|YO%0Eh*v5M%SEz-IUP2B1S92ys2J3ABULGNd$IAR zosyaMBZ(8yvwnnZNm(i~{%nfWf}1V{{nq|m02r^w>XFZup#Ty=cpZBeE-?PN@(&l$?G4bgY1{y& znauqhBFZU#{@swdMFdBF>dGKmogexW_ke)ptsF|40NkCu@dsmN4w&dMS75^vUy;yk zR!NZyrfu3{uI~nkj~BflheCVV?H-(O3urbG#ZTL$TM)B^JQz@6iXuy>W{2yxbid~0 zYge2lkgtU=DOC;}tV$%64w0zrS+9Rp(VR(*A{LcGMpL5J>JvI3D21%jB0&?(<#R+h z+M6Z$#SOTICY_$leJ@5#WgF zVD{x;GIy5Meg_*N5+JM^t4SaP3C7u`+h^<Cj*+(z ztuLz+jk=`v?lWn{Y_#8g9pGflZv{yNQgIbWf({s}a19%mhBo4U4i}jb6ev0#zDT|5 zvBf=_CnbbFWPEm8zEDnBrEs+p>UaSkUW$a65u?8-Hjy`~2db-be(CIW@a&2OZ+z%C zREMy*s7cw@%g7b9RQ4~a+QzHlZZ#%E9sxvh>y z(+9f|fhN?7jcT%K(Uphaf#fGrOB6>wn6wZNEd=V&Hyj_%7thNgAc4wKcs~xliSS&< zknaQ>e`TB#*rNv=HqEJ)=9)Ozvman2&SPa2mA}g_sfgYM1u#^TS?Eboexe~G7uF6C zQ*owFnSVNo%jy8N8uF_NwatZ4NLC7)NRiwDlH;T}eX-tzoxXjTgQ{5JZ1j)z=W?n- zJIokFY;!jyELKv&MQ%qb$0<9I9RiK?JOl7K^dC0_9YX!78rWvwc=L7SO> z;A{GlStHciKz0)9%IB|5jTSsBaw=;55ch>IP$2}|9(6VXki)T0G$>P1agb~n_}*ds zt?-Dn^dV_OnPc82!Z2=Oe`vq%8-I-og;9`E#wkso9jk+Jj#^v;H;-7nTE;Iu>R;pm z7gV_^h^>M0jIyRt+4`*?7*RagMndk{t>yYpuxW=}fE^w|9$(c`SQK~Ka$}UXBqJ*I zFBlRnY%IF#Lqg%h&|qPdu$`0j3hf#!rG!je0}Dpii)b5A(ii!ZTeFHUt}Sd;b`7X56m-A=vxy z$K=cg6oST$GPyYFl~qtrb#SI(6S<@}hL3-)k`Tg!pBo|-0-|(g4GCa6-7$E~WlULMRHLB>n(%^9ST+LbIa8EjD%{4u7pY zq0Rzr+ys>Ga}_l^xi%}xpRXGDc;SDlu6}1iY9L{{h-A?oY88Vd(#0t#a{W^=zQD_%K0$* z44E1Qze8GT+1pUM_aZGtsO^$ihfLfs0)fqC@PN;AdviO2^#wNecbfbK^SEMVln&6O zP9ejfj}O{Oqm1dDXyS|EY86~9ZHF=3FtzAjpW!y{9^7XkZKYFco3)I^7zN$GG1u`ZL{1c25pZWLyfrZCa3?PlhOn_wYoWVa2=7Uzu zYsAnptq&#U_b5d7zTMA^V~F`Q<}BiMJltw>Q^20Ljw6Mt8qCGoT|}Ba0=$3T4(t)RH2(5efxqE#cR& zm{d?&39}j|SUaV!IG8ABkc23&p}wUZ_|1Fa?i&kRchg2$+_d|v07S;f+donvnY{DZ zbS^xKH>Ag*N|GcRJV+NSB#`tUK04A>0Zz;sL_P6_^-k7)u%`VM zm>9GIOy+Rn=^-zJj3j?H5pkH>g<**REqau3oGdme_6b&G%vJr$6fFa3}wvnTD{}*HQ{W&nR;%JwW(($VZunJGcFOZB#4yq6~ zzbhl0QU9xhunP=MMH#9(2C&S>a{+?G&7Lmpft={~|76uaDx$1z@oO?1C&B9sw9kcf zTTzn~6z1dhUAb749Agx7p@$gA!su;*?6Z^+k=Vl!8`7>R!+SLfK6iAUZUD0Q5}I}N zh0H{5+v(qLnkQ3$Wz#{gCXSMdHoC{^Ri-cZckGQKFXUx8CteJ#$Y%bb4zP8RB<@Vk zHNX_p`l59^AA&s*P6=AM7ufUmxB*;5Cn%5BteVCYfuY@vyNxBK)-MwFBYZ!Suo}RaOk4pC!EHn`>^v-KM)+NGz+yUfclqACLFaapnu*8u zUw73uT{6_W7}6aQqfc_-0~7|MfBqWO8b`j`ijXXQ{o+XWXAAdwE)UX9NE&#ArHc46 ztF-txcZ{DSE9L1IfWk=FMuvAJdrUrre}JD)FCnrK!Ohh;1So?>A3dijEM`3+Q|JL!VsXEJ#MI*GugrOiTfl880wl@*ctxKrPa; z081Fyr1su`x=x8~q(H+MBI)}IRq{*OIzyA8ba{~DU8Yg5MFc%4HS^5VTEx3Ml z*2-JiLB|-jQF4%{pf0$&^t?1&sgd0@B^gXig;r(V0VHXmKlGjldjqRUMra{$5i`c= zeT4T)bqYN@Rt#$rVtAUv+Dk{yR-S|<{@TU{4 zr}1Rh18KqN6t*;LKz*hoG&0w+{@0GR`vUZ>k37kgfhk?Vqt$bouSGF(pinXdxT(qF z{(v(^>FZ5!M$*j+ML?4dTos@v1tJG5vsqSZC?vdtY#dm??a=ntc0M z6UI^_#E*a)5^pqMth^b?@dN2y|E^{e3%4U@cN!u}d(2m~HlUHUu0<_93XoPfcM&2u z!js3a;-=tAf0dc-*u6w?Bu__>aJ8CW0B#`Yt0Ooj`?L(|#cYEn&5{%9slz1!SH)Kx zrzRljRI9Wb1`k_Cy1$UqfBimHebSl4IwT(MSLWm~#6fS))bM@I3Q((FivqLUJfI)J z5#JP?c&LuYK`WyK2F{9qC^t1X+c!XhDWz0Gl((|wZ9ugnye5{r-&1(nJgj2CicIKt zv+*#ny37x)?~z->X<6miUANWn@_zR)8Yf{kK8itw_V(T2+m{@8fpENi!;8G3c~73<=|>lRgz* zKa^GVD|0MwVvipEkRBGyFLqo<=^jSp@%!>Wzt{b#QI*OeuzK;~(fv6833;M4PiQf>5iOzSJ*}hu8yHGtV zeQBKu1)DCuxDn`+1K^|P!_5N_qIlU9O-43r?A*(f(oHeCs@~seef&Z2@vL0o` z8PRzo4bV;8Xm!j?tkfVEhYpjna1OKVE+0UHSxe!^m9>;dQhEwGPa@OTb7-sM4SLV% zmhW`9pa+?{*GjFMM6G>x*$lHYQI}w9mjO^4y#TFne7K*)rT3tNb-Fo$A^yC?th`Yr z1jI2_*W1Rj+|2$YpTT=mvp{if`)e$<4dL@pwXT~+4rWeAKd%S2FaM@Rd^4?X(9?FAq6@1(<| ztD#rkLoU@0lnk>qWK9kaaia!kMrezT!6o{?2^5#0B%xo#HFUXAwRa&)*l zP1bP;(R4}mZIZS5J+tpD%QLgV9}~^HugRkIlMFFEG|sMjiiq-jaC?h2=*ha!HZ~Ad zS_`3^9h^xjcz?T~g@x)qj89#aKMq6g=z8DB=by{w$~H;h_{F{ms;beO`}gZ}idU`F zvuz3Stm7|oRn|P`gQv|u;Z!AiTB81}Mtl#SAy7)ytNImNbQ1Y0X~U;k;O6Xom$_*T z&sXkV1SPkl4^h740z;M^E1@LZ=X6q{m1Q~oOIiuh#yIRfD?xvH{``Cv#I(hgiTINx z_+}eLfpdV=$8}&Jj>V?kigC1Y=)GRq+5{u&DXs39=(psfZ0*fANsykR=aL6s zqFr*$xO{`5@)424l<8c79o{XDRy(1*fsO^E?)W$am4e3Vm%mVO&7392`6x>z32uOF z)%dCsGr>4U#^q7Hi3y>OXf>uvVS#@BOT-gA?M&Vuv}e-9?}YB|TN;JdY?G)A5X$9n zM=xfxcrPk{2z)rZ{Ve@Hsn0^&uvWu2AmusVT;3CM`BxQyokZ!LY8147MnbbI{3xa; zrn4+z<~vW~5T;)DB14Y|W0J))W}KzChG6{DKep3PsSZWwcaOI+EFC*m>2mCq$2z8W zj9huxq(gE0*eK*d%nSFU81_#4xT#(5=@)n z{c#u;?|ktn*XOoXB1=`z!J7Y}51X#yQ{J1ttHVw)G9E=?A zoV&b!z5p^>-_746ahX$uaM{#+R?p3?HBi`HdWuF6yQHtKtD`p-9An?a&&LsSeqbGZ z50q}l|9rB;f2h0tBxJ83{*jwvanCs2az;IZ)%D-HU2gp;`vl3=f2K%*O})olTTd3oL+ z@I9EX(nmQ+JPr`84gj1VY`e{Zx1GQ_9V@@ilhiZ7i0tm+F$uV`>;7_aIQ9Up08qqx ztH0ZrTza~F&r|)RiPOdH0gGQHorO>wv!newHlsLESot6!Yby7jcM&%n4}2=H(Ewxf zCip2%nqF->%hnZJ+=Jq6)mWe$nSt)m+&RI z#}qg0eHMX^{z#RUQ>A7hd>@#Q2u`3|OnwJb<^Q`Tpv3hAZM9~2Cpbu)Nim5wkKsO; zNbaf6Xqh2nl5hb?($2~xxX6*5eUEq5CMQLl$vcmLu+MB(yMqS7crUB*_G>dvpWimP zyFBOh+AGjSGM~nYm=qyrKoNsR zq7xKoYA>t)n46f^hudDQJg~fK&|gWFIFjtGs~tllFY- zG4o+$eW;d)W_^4oWEbRV<&?QSVnw)X~9w-^diI388)O?Q|{ z^~|^vlBvVbHP5#Q|F~yG!}<@pMz3DOZ4^@9Iujy)X~^r?O{{hg^}5vbM&bNG3*HzD zXJkOO8(oXw9QTI`uOv%R%y**Hl$6P8au0f)O7dn9CBjkYxKcOqOTQ7!3`wlz&aWX=<{e#evR_7#oEJLi0YK1 zJ-#u_^dWlke(#ITBEz2DJ}m9!bm&9M>4?=s!<9HBtRi>~3Gyj9FMN6boe$5CWXVSx znKADpVOZPFvh)xb!Y&ToEDKWMQ!_1_T2j>AaB6YWQ44R($=7Cu@2z|*%1g7phuM-E zMjB-vsFl_g#mFXB7lt1;nw2?GnCav7j&nar52LsV$^FDjh}FzbyhO+9M=4EwS0?OQ z6_08;cq-hDWm`2T_R`_tQ%-ohd2Rd89yhwcADfSXtQMD<234=p`Z{9BGgzCt|Npx= zcPV7*LkgLLkL#bl20km>g@>c^kLxjina)6R>}Qb?zR>(H=yAUrcT^QxxTi_p>m3K` zf{#NUpN6S_gxo93jDbsK)ilAB!nxZW0Xk#m5X9}m!&l1Vm4eZsK109rmRxl^qWu@G z9JM0IrKqlhgWGoMo`@BSNM5H^-A=MDyS*f=vrRWc|F1s3075MppZqQfK~bZ$1;nxX z(+fyLnA9VlWc|~D#FN`uk&oAk{}(HDlsbOO3RE;O&2kaD1OH<0RO`xp50DQhawlDH z5afP^j&Ij6W6VjHhsVhlarXy5{4__ekwwFCp=c+1*!2e$gSLj-g&n{Fj0R;WDgh?t z(+Z%i+<}w+&^R+>EfwcYp~kR!7^`E}5ZZ-zp*grR(S!&24XeFXSLCR16l$`NvKdz+NA=!Ia%b&fs#RPgRb$2@ z30^HIC0|r?I4g3MoN!em*_ba6N{EDiEBT(Jh!VGUs2|A6Sk(nsstw3HtIAJn7%33N z?_&|3$8n)kTTjHVr$r)dY}0OGD=7x^;o7dCEp*d+9O1rLf?f~As11~q(9$^)kY)oa zM_9%LG`NFPy3XRMtq6nWg~li6Z)H3BWptL#;JyE^C1RPrqXjch3W9mX1JA1oz>~cJ z3Icw(Zj5gUud?8=v=}y|$SEhRB79ugeFfmW_zFEvWAI;lfejIm6y3n8r*2yiZ-B^i z$cgpmyz{LZJ{VMo0C26++yBve{x?*;{_z&=~{J2U%{lG6vt>&9)iu0o= zjsrC7Gnxxq^jOTg>6l5USt!I^=Rso+kUI66w9C~gTxLE>eAJiWIJz@sSjy9FanGHV zcoHRtoY0}t3N^fZF>rp(F&?vZzIrZ6-U0Me1)+^o??fQk6`4ONC&ua+qn$wAmfc>D zltQ%mTYu!x2W&|oc-bD9P0ikfsrT#-`D>B7iR!Q3sd$@mF+(Z%QhpEO{{X792ha;$ zr&!YTwY&jsU^X4s<|4uxP?|a8TeK2D@nQ?4BhkS~JUrleoC-Siyu*N^qBS%|>FBpLoW&W{7k)(lv!q~C%W z&p;oysvnqN5?&WW@Kfleg*6GuLJTYt#fK~HB5960F9;A9f8lKxI&8f-41jz~SR5+~2O}4y%R6B4 zcuM|YIPI#-0RS?JMY7c=qCS$VK&2c6?BR2;MkY$-rwY3E_c=Ln^=M)toU0u~xciA2!>(_Cx2_I0 zxmuo#O{>{eV~pb_bym~G{>WxU;U@P@C4VW0lkNjYWv>l#-hs3Z4)?0K5%TwCZUkRO z^SQ3;@fZnw14K%i-3(4l7W*>nx16?o-Ye^I#ute7itzB2iqWPHXOoM~v*J1Z!Is+ zN5arE2^ytvH`&z4Lcqc`2Triu)}uH=Q)f++9N+}E3|i}Bi$E3vJ1N4G-ZjHgWakQv zysD%C6tpzkMjr4&~^Bk;_2q7WQv~Vw(%X6*RJ|H5*;PCekfjBKlyu(K4HAn!L zS;)>a>J1dy21FO-<}ikS9)UNVM`a+4JG~|Tx1fr1Kg^Lv*8$k%;Zqkx1+~cgz=Tz9 z$s>gX`IsbfBFH~y=QV&ttXr+GcBqhR=MKXpJ4+l+Q}DB{!!)Tt9y3D0BLW7^p46$} zvj8zl<{1z&N&rK?W)xAZCqMqE=7MSx1NyIq2vS!Bhdv>o3_*0a+nRh zpxGaehk$~u>qGd31}}_MCAJ-`uqU5cVY84i`KivN*)aF7U%%c1XB45HR({2qzw}_{ zA^+|MU3ty*udn!zWj<&%LG;Gw!VSo2^L;CjEji+sSKwrw3-DS%RCD0Pg^o%0f(r|E zzZMPw*#a&Eth#MBA5~NM2@p*9s$v)#27pA?N`6Oyii>ZvRqNoj8b(EB z5rUxyrP|y`Lg4fjWMb-^D1_y>`98&%Xkv=z@xC-RJYVL91?s2qG3KXT(Fy#*j8VvvE z832S;avVgQW>c)-wY(ZJ&0yveJ8Vez85@RPN4KL6`{aur)aJN~?XM)?Lam%Y?Kg}{ z@}3+nWH0kyi#f>lMXCfpdA&qx{TV+Ru_fXeLZ7P^X5t{|qXL$GDNTXFBj8W;0c&6j zYE~p0=&j1IybQYCcNpQ@aR}SUmU}7FoklY5sn4vBP#of}=n*0v=L%S9+8~qTA~J5< z$TbUK?k#L{A)BPS^1l%ZIB9AR;K{k$>K1gI^&&$KFU_cxh zP=xmv4l5A9Jj!se*VUP%fI+!M6W`F#1*s1?yTEylkpwpgs}1J{2%0tVxHzP6*z;Bn z>^yNJkG3y}#cOD!PGm+y!VJv(kPNp7Ieqz9M#s?haB-W6)S}6x8JQ?d8nlM& zAOW94o@ArJ3S~{4?xI(9F3x@bw-ephEZ`DmLdi*O>P$O$3TPxX-w=zyY^BtgY$^YM zUO4YCH|mH_Wduo}9-#O0FVMNchJ~E9AWdP7LfTJ+x(O1&ElXP9?TU=-!+=acIVMb9 zQ}8UepX>{{kb8;A8-z8~bxBd*Eg(u*`ViU8%%!pYQIfU zLX!TCrMCZHFiZ2%a0^{j7g1Azw+U88xgIS2A@a*iI~6Q9#(@>*+`hPUIK=W#z&aa_ z$t8bIx*b9bR{)`E$Dv91jq0dHbqbW<`j_*b$mg;Jk}9-?4q)0R@kQDxJ9n9YSG-P~ z9|!UCZV?FAED|%;f@aE!S;iS^f`eyXBwQUJR!P;hWGQeKje|3eeA0rU4}&z09`6|K zn>m&Fm(%!CzY*c@!xC)Z=BS05kXKT0D+ju8j0YjqV6(^S#$78**d&WcQ#Spz-htnb zI2SL+A|(Jh472CPOS^9TOo@;(HUa`m)aVvZS+dl%))f* zx!LIofjuSBFi<6YyA=W1QFVS=)~Q!t2hbBBkQ>pW?^P8b`nC#;gu-YFhGm|KmAsHH zIR~I7ni7+EEC+iv?6V7y5~8wNP;LW`&OpE)h{w%f;zowqO*|)aKZzRR%+~U z92i~FZfnVe6N1C$?hZ(D0QkJ{CIpB1L|3(Y0#;o35EtuffJgT$fg9f*dIt+o1%ViI z7OO1wXc_v=moDDkFFwGJ`uzne+)?Z`RHcaHbf7JxtXRd88tZm81V%PJiSfz80=8nA@2;j_{LyZ+C-s%!xaO zoOEB#;D;nD+|^PSB6B4~O7UP2p_R@G|74SPALwcjw-`2@Y4iSV?5cfW40(IyAw}~F zo#80smAjhRmB9^EI|1p(OkVX7%U5$gN_`2CWJ4fx3Ckm2K=B{ zDkg(y8r&QHKWhoT^3IAvZFbdx@SiWZ)+5045+-_rP|r!lLF|$!L{=z*;S3^d9K7)7 z9h{R^zCG{K*5cI!IlRm-y_V)SZLO$Zd({yZfH_(Td|_mFiarqV+4+P2s*yn2fKdQ+ z%@_^U)n|YvIsSL*dvw7LFe}@S&Pw-bfgeb7bXh=5ZdrMMsVnCATg6L7GIEWC||=U@-eq+H}kZqJb~3o{o2i6g!xkE#P>r!B&p?JEjC^ePid?|1DWU?WZ&x#E+ox<1pG1(B}wyvH0-)Wl?@_`^+CnW+{?yU{h=-LQSf3DU=XtdHbcWaLJV! ztIG$zbG!X1pl)a{9{15b2Jsw$8YGbnWW3}8F67F1!N4a^ZGFR*Sl^n~E%$T|zOuXQ zMM$pliR5U815G7p1#tGBN3rZM1AZqI8?z6V=CmE-4Fj?qs%5e?j?w8Asl6Bvwb@#ZbIAHRT_OKjnQ`qLz z@jZ8!gx&enk9zV*IPZpA&(Fb}*4EZ`kr62xQNMsG_xJUxIf`%y29~{gt{|>3Vp*s~ zKfj~P`aSa_mC*rQR6?J+WVFtk%hSze*h!pk9tA|Vmjg=WA{h-SdI zz0ww*quq+`?LGcioVnTk(F^Ey4er)M&74mc1I8bBjSj}gmAu{6dv6&67)g0wV-hpL z#F+UD!DwkBU=X%qWJ|%F;4(Op3XU6*=1KI}?X#r0m@ojDn0>avr-Jt|Hs*!Md-3(%I zCKG>*opX5Tm#}OrxB`h@Qq)fWg{R~W^>B9V;SpHe%$gL)!1aKGj#u0fd}vsm9MMZ* z%XA^=6|KS$)5k_jwL-TtEPNT%m#vHbFH7zT$0;_pAQb}E+&8f2B~JOC(6u$1zvpseB( zNOxAwC@CxP*zj6~Q!{aDMB2kYL=aM<+SC7YVYiD*NT5+0W8d&vE%;45ZsZE$kJfZ(_pkaPsml|cRggTNgM zxogND|IM&nbM&qa?{6b`le$v)On(8mFORHj5RPNBfTN(2cDC+8DLpd{`+$I4U4=-J z3Qrq$WjfCcsz#3URAUJ67bKP_bTrd37Kh3tV-T|3xFf=&az2LRz+ z{{e73+=HU%U|Rfgig&Aj4uq*!7?U@c-D4#;TY*gnwjN53?4$QKaWmt%|N0 z`haq^>(-BQlknChM#6d&Q!-VU?(Ok0xZL=7p-{X07mknG+FY?sT_{=r;iSDqvb_Qk zt85FXid*kHPk1xuSmN-3(4iPY_z(1cC_o}on5dV^N;m&ts5$z6D($h6;PO{O#IlA; ztCExT-gfaB+EZlvOuaUncas4W-()#CQl85SOrv}sCtB>u(QCuF#`CovCF<3ZTe$e5 zs%q-+WiJB-RNo9yxABVri#Ue!yk@Q$m!!}K%GE}Z7zpLGU=ejN6)BF|en+aXSrYlz zolh-*o}JlKvca^s5$IsZKL4#7bbBFN70`uxocVE*qtgWRUqlOY1avh{)U6FR?3 zMRjrFdy+OcF^HF`5u;@H`J18aslcwvkrg~DPIKwx;5Z`{~*4OliV-RJV{0~G1&Mlq|1 z-h_Wiyb`G-Hf=j#>d2R_t0`A5`X7Y3jE@?3TLb>I=?5Ig{=qoj?HQIdK)qo7g=i`P z_094fh4-eP?dS-llUqL=$}iw%t+X;1;?)(H<0OIhwqnb zs%(}74#t*FmuxM*sV}Qqe@bU*h&d!wNhMmU-p-Xr2kP5c+v2eI8?2(J@F7~v6`@47zEqOU9gRI*m!w}_3_}BN0_v0<*v!G+0 zk85Bx`}^&UMEfg7XKCL@!6M#HK0@8@0VU4j%p zQ-$PyJ%2B~jByn& zmDrm>oHz(&Y8d}kCXT~!Tr{?HA;a6g<5MnCy)p9BPQ?_tlo^AcUzXdJ-i4y;U! zahFuLXHu!;vE&}zcm3X|X&NBU5UH1MuV7W~%CR~rwJ?B>7cfj4Cf86WmV|4?pMCUx`h?v!YA_Efq2vck?+t% z(5(#izf)K5F@2xx`^a^7Mj+g>qVU?Vk>l_WH2zmnNydEdl-GF$84~9~2=P(sm#M`f zqka>S8jsd<7C7PkMFlGa+Ax+*69*%^Cc*8>=nsT+6vY*#q=yra62n0M+BRN zK_V*hEHLm)1lWAqVEU&=WaJ5!`X9x$x*AJ}rBgOAV8!^svNQKvFzE`?;cn`V)~3;M9NqO4b&u`NqQZp__`8Z0h$dXL>|y zDx%8YnylQ?i9_gFv+h!0JDnUc8(mef_>)e_SdpTFM|z+|U}KP0&{<%$GwyhD-HzEe zSz&`FpXLcxWTacJVx4!lrsl?9%J9)iJ~s}Tw6X?N z9odOLZ5eizZq5iS^Ac9(509x3AFgtBq=_Tw@aD`>T_1KzJaL5W$ z_gB;0LdQ%B8ZZ;YOL>^s9wOw$R6QppW^Q6y;HaK@XV8Qpq19JMe*V~e%6_KM%aV9~ zmltWJ-%x7y)C9sh*8%8FtdUJFmf*6k(* z*U8~7?bAMuk~5v!#t~^Y#6thklIC}eOgR^wkaWo)0MmU3#+R9G*Q~n1u3p6yS}_AM zvfiE78(?^F6+hxQQyeB2stf)O^8!7t>JD|f?(Bkq%E!bp!&8fN?hUfGLNQ=02UPc0 zMNNt+n~eUBhh?-tXE6Bs=Q2~pL0uB)=86{V-JPg+ug4KEYnMRb4k5|CZ~uic`n$CA z$~0f!nQvA+pwb7RR4>JGj$M9yyeb#_yM9@g<8t>=d9zADAjiB!F(seV85a`&d$D}> z$&*@bNhi}f=~BJ5UcLDW{7%JLLbwtz0|nCUU-wR&HLs5@y&2fA8Djfif_GUd{YGVP z=LGbD&D}-_GkQuln~r|d%Eevo5*yj7K47$GtSKYq` z;52@K!So}T$nbWiQr&N%fMl0#aMyhFQ5M+5V61*%L_TJexE*Jyt{LP<{|F`!ppWSN ze;=p;oA2khPp9atHLidW5*E6(2^_g=Y;VWNBt?4gIx<#!!u2}kOemW``}6I2oH)c{8svU;gp#x#*#BSNOL|$gFL1l=DkK%r))R3nr6#dlaSMwHdD) zm0#IcwB-Lg0hc+IK;MY2*YNyw8aTIT^{`grbSXG;tJLCSw%GG&k)D2h81);j ztW$cz>yuI%db*trzW4{ML-RNFy?0e98=JSVcM}}R2|vI0`Mcitm%BUWhnQISpsv6}Xm$d8{JUuO99Y)RuPaA{&Il@X0Qvsl5` z?h!`(mYeeKtIPklOlTi_1%^pjXI$pcZw>?)NL61r;9cRxXor6=Gn7-1g&1uep#DB@K|1mnQb7ttF{UgI#FP(8wFkwUXUgchr^75hveIlKu;@r*Mhu2oN zz^+yRuB~oL#f+Gcl?2%?IslQ(%FUNf{d0jVJb|kXqAdmPcj-g?GsX71IQs=%jEkh; zd+4&}n-vFo?C0ty_x${eNljw`%ij$~H~MEmwzQa@s{^??z0e(7x~kxa*3cob`$&7@ zc*K1d%fjM+PefadwiQ0^jYs4uH)CIPsV&kpn2Q%{XzW@ zn(a#GU5f74Z%Fmb4sa4i8E%X83FshSO(mZbP``DRA)0`$UmRX`pHkye(THoD6K@O? zNt^lYr|Vie-A8RxI!F5OZA-b0bA)7JFPH8ReKpsd`K3t$p_5MIC_gW%4*B{A;b({W z%ak(3q}S=S*L7{`f%ANJjs&uglBn#H9)74T4--V%)7)U3R~B1`qh@S}(DHDn()DMq z@qQrKAk`t_gNRSvDkAdo-WpBSGvsh|{%Gp9F`UMcsY| zBNXOrUR&&7zjbLL*FU8wI<44pB)IXCS2SUrAIRnzSG}XUFf@HBSx-3Q|KsW{qq5xEc44|xx;vHblipYj`EyQcQ2kaN{S3=5%@;2$pgRwpktso5bH&GK>l=w0~11aSS;Dh4_%&ci8 ze$(QOZoDS4GDXB9<39!zqsjt?%CoT7>D#x3ERzL#KpsSmd6NwJX7Q7xsQ8dm=@0+B z1`L{X7cvi;G3w`Fy=_P^q0&?Ox>6IF`X?W_V%@6`4C`IkzGv{qvJ{oUzEMj`e*S>xanIEodiG|Yscvf z6riSg0%YL$Ml|ri-!40|?1BXzO3wlwd!nwjxFXpkI|a#GPXa$j&~fv(?@dE)!fcfb z`^+6Gk2`xB!aajKfio|K{ea9*3Buxh=#Ne}izVSQl_|yLXVJ>N`T2g=CCnXm9#Gl; z0GLzce=euOPvwq(fcT%Qyp8b8?bpwWRsgR;A=Led{D6OJO6@to>1wP%i($-HjN%3R zDPLe;<~{Ve17lIPwFY8>Kcj|nd*pe2`3pOg*4}WwncCxHgpA!OEGAGa4dff>yYcnu zedZQ5Rx*cdUv~Yy7mybN=)S%c^#mhYk@hxxm_^CpGpky_DCqM zCiWSICB%^uA}2HFCk)IhPc>Q5&1oGflFdCY-F#I7)GDz%ObMqFmNxB}4y z+!lR?vgQ)x4EYZu>5d@f-$1id!;;=3)#MqBR2P8HE(+<0p0+D|fd|>!YRrT!Kf$_R)it|aGlFHji{iLsF?y`&E{pXz6WIFWr1RU4 zg3QZ5CyH+`W0HdN(D;*;O{YPbwyjnr0p$njub=Pb%1FLV;s)Q#DR*Gyb9RAfWt~gm z)-G1ytJZ!rg4GrSwKS&iiq2rvf~G-xWE7)SE3UE9a@YxJjm@7#fMct4AUGD*y z)HCQyFXIaWl~5J{OHd%4K&ww4_I(|dh`y92l;{?`lo}%#0t(fA-~4m}bCxGHm&&9C9ZR^JIezC(ssVBN zW$~<$pO4F>o*c6O2_P>7eV^`h-Wpzm`m`p95m6v0{>YH$ovHz7@oswgX;6Lef)~il z>bg7D(HtXjIn7uP!cktI z_u@T)__>|npx3-w67c4^Gd%Otds)R^GdgbrWP$mZehjb?vdFO30sqdJH&rruBWMo6 zH`qz_cV9kQ+9cv^21;zXhylNU*B&sH(=UMQ8`~!DXE(CyB{2C?C?@m?be>}#WgS&D zFGji$SI3eGoPvvvRwTy@9K)fg1ipj87-+UpGSf4diTi{0Vb-loQ=c`-EvY4052$o+ zLpZzxHuwW3Y*AIA4||4i224%?y?VelfbhAfIQ@XpS8*VC(R{!-OI`uugc!10_9@KMBTFOV24P&4WD4x|yAB2&#j_dY>G$E`N z-;84>Z>4>Q+vB@Ey929VARP1W&j|Su@%0R;qF5Cwd_3EKK*>`t_A)8qI;ubdd@st$ktC}uv$_3C-i#&Z!Zo?>g34B*7a5K z$Ky-z6eaAY8rZQ|78u_CS)(F{KPN7F;RLD)1F(U1ly^haPI=E1r0-mz`}5%X0x@$C zfq(fg%iQ8I0{^#X>ielkq*Bc*ZU*e(FoN*4;3?t1pG=7lxgo;mNsz`8G9Treo9=`^ zD;^fi|HYh355J9D&xjS*_4@VG26kKfU<`No8K@&oZ;MUnmTO`Ei)h3l3%IzseU`58 zH9jYwWMKYgtut68(;&3((ER}E6KsEg8TzYr!Ed{^6Qtq1X1-T>Gdq)NZr!FUxdnr5 z@?OFf7`1`ajzok5IEjorZpXT%eL##T1@9gk+wbvP>~=hsnVK!FpLqes#5f0oEqf0k z!RB2fH%_QgXndJgs^_4VMFaN~KCQ&0A4)d>EH? z8tZY3Xs{udy#D)9rRAf*hJHW##&o(Gi$6+O{5u=)`n((b;5nSf8=Xwl(LZ;2I?^0yL$ z!XdE`?O7RVDhChn5|lZ8&MlzPZ~1joDOL$UssEWJZJ1+Y7tVO^=wT|F(r^|9?a@qy zTn`~0__#1s#6$s8CF<_!>LcjvEfOe*%jENmtBAG|AAyxz2I+|dB!G31V=2Z0iU$t1 z(Q03MM_4u24A_<=B6*MsCH}$TZQ;7W`>GOV@e=Km1TgzE=H}nHBo`750g`h8YC5H2&iLmx*X_&*NoX4Z zwS9rlB0W!zh!;zG_CDVS@DYKeF+dDy-gA(UR~qH-k3~H}Q!CL3URl^atDh}jDnn#W z10xIN&>*;3@3cnQkbdCH6J>+fJFC6aIUcQ#8BsCsMJ7-O$0q6!^SSd)L9?S6X)UML zB$jY677W;z8SDMa;6)E{|GoY3kizKeH3Osq6WImFy4R)CZb4^vAiL4lgAUh&B2jns z?s%a=Q(c1r!6zI>a>o@X?AvbxT@BlWZ{0{_@#|p3U$5slJn4eRrr&9-MHEeG9bRSl z&p`8w6}A)-Bc|Q_ZHaqk7++*Frvq)djgg~(PitLJpNX7e4yxo^AyUlx zVeD~b0n_FiL<@TH*aA@I?1GT&h~XfKQLBmD7u`xQbv3@%6=iT=!8*ECCie_Y70_9I zvny3X_u?Y$u8!@+U;}^*;nJ65B9!XMKu?u!7#zq2edP)JoNPD}XB%tm^90Q~yP>1b zd(29YdgCjc3)Do~QVN*4Z0keoUO<|fMyZ{_Y5AhiYH|y_e}?d0^AU{+=N%~&6H!mM zlR_28zBuSUS{+z@6WZ2sI){F=EBSG`JKuXl`4L^l)jpcSAXb`1u{Ez}cI%hxGPK7w zUxJ5vyc*=YdT3bGblh;OW(vi@zX1U~MQl@(O*4V08j@hVq*-Jf#UVVT?d9;h|Aj?d zCedHzkLtlpisGdo45A0zc_qc{BPz@(K1;TI3zC)V0D{eJu&_wgWYV zN8ZQ$LL0)+ta4NVOKujpAD^mQ8Si%Au@_N_dN_>aI@N(+hr?SQOag}Vl3^Sb?{6+< z$Jo4%-TtIEv7x;s$1+P`DhOB4))o@q&-5BS0?oo?0ZtT7gER;)z7D6UCDDyjL>1os zTG}8CfwNH;IcdCu>#5(W{uH|arO?n`UeYu2f!NpA!iW+Cd{0QZWxY?c-#Yu0>2VTA z=zLk3B~&KqWm-OXOPX9yUQG>)@kd=@u~gQ7DPpULPVwP?U-Pl59p8X9&i^x)xW#h0 z5S>nehX*csv=NSODC%SVsBkN?VKO)DI`wN@;461T*?8M|L4cEk0^)xW+<}H2#wtB~ zIpv7M=Rle3O73e9mdGoe*;3o)1xB3@_*bwsgLZ)CMZ#eD2>?W8wyRe@!50&m|Rxlqi1(>0U8q z@*3q?Llb-8%7C*EaJMS?JS$|Rgch5t`LP2`HD)n<}$kef~u&x-ue~_==`k{a++fy5yt1G*z)~yauF18q$LBjo_w zc%^NpcopGDVu}|h#=KGKRa*x@1)3rWOrDT*UCTJ(Z^Ra4ht}~&z-&e{-c6~$rWl#P z>t~TP5MGXumw?xODd>FOM+8r5WlAng>eVy9hH>p5(suei>QgRsCz0h+$mPJrK|;L_ zMreA6_qVCWXLKxC3q}y5qMI;3V;%Yu!m;2JY~B%BjJ^KnefY*MT8S`=bQS|MHJ?o> zG5m`4=!Ob7>&O zcJ%|a9V$pu6rI!|kEiv9<%FY)v_~gpqaz3#s7XQ|4T1jKd}G$KcVZXIT(WMTLd9ex zoy(YIIyr$GZHgi{^i4S^UlVx)jg|6E1T&|Iu)lA0G3=Uzf|j;zwjcA|Z@*{f_3-yS zq%hts^VStr5+CPM24?rcx`>IYMRWQ-(5@8i=`gn_)R%axKSmnaE8cg7V7-6U+ttL?O(x#u-p5C!p)}a*}T^*ffkr7vG9V$RCWy zUmPmK@W=?{&iKr1UQylgvu69;EcAwr9(tA2^egIDDH|8#jg>uf8|M6wVrcj2nk_T@ zPEf|EcPZj=W-M_H=nhHe!(e$24(Lv`3$n3;jaFNn8@yI7^FcyTRP#?ky`Y&`QbI_W zMX3ZAY6uu`#3tMHEXqUg>tJKaGF3CU8JhFPIY{Mt_m@ukat+>ny2?`n`XWLu!&Ppe zTRKDG)*d$o(dX}yoXXvumVhX#rmlsXvZhxvpS#aqc9WQA@LsVfX73zLSX)jh)O zZmRy~cR!vker?<7c?9!zQ<3CGq=&e%U&6V*eq8w7j~ibm+}S_fIXhGZjjr{o~v0TitkyfmCZHz44mC zd}W|LgKg12+R9rJ;qi2gTyhf%DRQlMMsLxd@bC-{l}@rL<451*upOxSCMp$mGiLZp zfj0WUN;{KD%Bq!KwrxrR#%`QbyF(r)Vx)||-|_xK`#3QvM_d7c0}Wa?&5(c&j^xsu zsWNZLOYOe5AE)~rUp7N%2t1)~kq6BRGL{02DoScsv-c1wzjPfNOBsafGUSRVbS)3S z7lntyy%Q{DavZk8RTx*I<_@T?EIbS+5pvqdQD&B&2$#lf*-1#)A8BAqS=t8PAX%{% z??;e1s|{W^VyuDposOOK7O%nHr4X-#MC{4o2+7DSK-~bPoH(Q2K(ivSqOCoX(ktHc zE}k#5S25~TXlQF+^oO{c>Y(ZjlAZbCgkp1X+-==82LqyC=z2k;cxu7{ zxc(1W2?(O#O=4;o@4GFz=5P)Ag`9~G@84f(3e*U?_l!E}@TvJJ%skWkn-7m+%_6?k zQAxamF>JT9<+@T0_P{dB(p=J*adh}1NU~R0QGR-)dC&d3<7P3c8Al^S`Klr6xjL%- zR}tNt470Rsk#Eg^B$^FWXzOeqO@L0WV8Qoc>gzKgvwi?r;}oEO@BTDSslAh46+e$q zKTA6|2Dx+h4Csx9woNmjdhpwMKN(cd#aQh_j9=mzzj;^#KoLwa4Bp^Dl}m!+4N)N3EcF%t zvO^EhPL7(t)w3XYAt^nX7cro6nX0;PvR65l zptQ7nRNH}E9u;)?G#6dyt6#_N3+1G@O*FccV06=F#?==Fvf00H>si5CyibPt*p>b<+sa3DtUNSy|N-$^?=Vuvv@*>_J z^+81MPE`Mcyc)bA;W4h4G^ksW?Pn1R(4Q0~IuBr-AU?s`bdiP6R)|)j%hD_l^V0r| zF#=K{?PptU--=4YhTR9yOY&8Dnh11blq>ILqg7Ra#G_4yMWtoKC zVOmh&*^ne09}%UvKWykvxYar9mFEs7&2j?b&5v&~eLBX|$-XEaZV_z=^N?lmrd7!d zBw8$nQ*Mb%$^Ck38h(`EXs)2{?7XDXHDre zt_x#wAxT`Bs{54D9blK(?2*XGbtvxnAjK@E zX%;zZfK8y(9zE_9_b$ph-w6Ccau*xtVHSq@GX{Hbz?XeWrcSG`^)Zpbw=UT$Ps?m&(FO@cU} zk8OqbJu-68hI}+f&$s#W_>zul1f2v(~n`Z<>=wQE}MWcY5yq zJI7UFn0)E?jj}zb-|VQ$`@u)4w^Yb$&)&3MrAFZ^Qq&G3qT54unD$7xPL$+3)Zd1@ z>W!Ce^bcFCTZ-dav3)h8iUfzZN~f={ZSkRLsI3nZdvbE??gxbLcPNPzCXObXW2~;S zYm3S!vEv<S1K1Dfkp_%|pexFb?m&M*bw-s6Z3*@a(#(>`@A&w(C z+;aFOhq>uwf2@?zZsE1VNfgrbk^M^+L-T)X=EHP7;XCEbSfyCs*;ZlbV3nf6cAcjH9PK3fi|%*|Zq5sprorb*RhJkbAV};N+-?cB|Cr*%qnlMth$SbVxq7piwPJpoU~vCE+wg1?Uf@60mP5hw zdmrZcz!i6>md--=os#!p>rFWG36@%MZmTswRPTq@%QS{*|7E`tu1F4kHSwOK`1CJX z1i0J8M)14pgtku@EE>GaR*gk2$JXefa6{xGM$!tym(L9$G5j@dOqXB=7u9xtbNX(3{yJS{tC{6+ z@t^1e&E`~7-xK8@xfe!!QL_&SZgk*FxW;WG_aDR_9Xzk$srYE}?)qJX$FEucFIam0 zPkeoEah=mOU*~_HbBx}7^5W3$UXbQ5komAtXr=ElD1ji7>p@Y!!!TOxg;rs6AVHXx zvqJqptMO+$N2qQkq45{%mnuks3-{ZF*2dYRxu4UChl-p6!pbCUAB|D$R5R2$g&j!) zxHvMcf9$9C{u;7X$t?2frQq=>V+^~08NY-et&DE)-bGlcNl_oM-9b@vI{i~@;d|j+ zVR#ae<$j36bhM0^;CmbHq44+WO!j@jc}lx-U(>m6D9TFkS~XYG-($UuQw-^AZOUm@ zy>_WU;(jSKa_VG5gqh(w##%)ve_lqJQekVy^)0=-ddcGW(1yJZ*0B7;8zRV3(Qtlt zCV?N3%uVQY^!~Zgf(tso|!2jQ6nn@+lPxJb{}UsLEa( zTvsNhfB!UDC%m=&yeH>x(;{Eg7kBM50XEGNb+hu%8_T>&hrVy>(Fy>WCs%&w|Bk_< zY~m?O33w6Q?A{oC;*B6_^{!H?#B_NK7wrx|xGJNm7Qoo?l)<7an*K6@GlhX}ulpqS zX#}5IsP4p}d~Q%7wNeG0frz^p^-ys8sz9-|ClPm>;Jc~QiIYu}>+^zq7Fw*QX43V{ zW##jW(69qh+KO5w>t%N^4XGRM7JFaFb|B6y{+?a5BcRf4$X4)X)4R>2e>_QHJ79*S2AboI zuIZ@m2LVpFPAr*qTsgYvs&z`5z&x*bT;O{ury0hHW8 zrt;<#%{4`ihLE*cXx~>b@x2_MiQV{cplqZ;5xAgb%b#M+6p$Vb+NaU)fPVgyAZoey z>9kBP#_+X#MP+@Y`(K4YXuybD&9y~2{9NfIz}eD#F+dS%%p#{G1*hq-S`F&ehKQsI z**b8CmSHLS)gC`IQQ^gH(a0VHGD7x1QOH^ zVe|*Mj_k?b9$XY@nt?}idoWh6+lT<=^}HZE>#b~r&>52DoLwq(as;v(t!+bEAh{QQ z%QBQlWbm;l#nc34&}~ANs1E_F!@PVjh{t2>RbR4Zd75mPywPzIqqDE$k@K%e*6cO9N8eDg@)5%BrZ29@F`ON(DrsS-wx&>=B~9RiAUN zc+F`HR!w;Pj7`C3Zu#2;yQDny5n z<$^r{h+nmL^+{w4{?K**y_`;w8gi>wlEFiEm#k18iD4~VX zjU}lxprokJ?i`AUme7o&Kemv4c@5f_pc%V7_8N@BC>JZHQEbI(*`%NUsezn}Y}Z+u z;-#w3r#Db_8W1ZEAdy1j=nrsEHtGs)Wl(9y`wCd+wxh6;H-U@Cf3=Ij4y3MvMP^C^ z1x=RPQNaX&jX!|7M`7>8+RqqGO+`xrR_PqzFdwTK7?-;~UF26YW9i6eL+fz}zYb{n z57XetN$w01Xi6h1Oz%E`c8Qd|c*OfvpaAT|k5~f{66n867$cB06I!4(w9`o6o^^(N zZdc?_6YO>CJk3G=a z;V1+$8k)HAiZLNo`NY!W3gi9_jixVg5DJJjll)@@u_az*5iq^r+r;0q;z2=EkXgzT z@l1g{bR3R-{@L;9)AU2QLTy~Rclq7V4$HreN6VK>mVcV&R)4HLk5SG(06?b}NlwBO zKUc1l)iVFJ9B9Pl^U8l=F`@O<;`YyS9E+*=CKj3o3+r7I`NRvJ{K6Xe(%zEB5WGV3 zK+pT|UQuP`*5BPjT5ULoCb~@dt?Nb@M*%F=+KiTso4C9sR1bfDx-iSZRYqdz>R!m~ zu^WDuNZ|{CC%oX&D#`g*Ck@=yE2P%(xcc$l`!w5sDsa}|SWU^GhqA#B@lc1g+{U=9 zv_4TOGn`kc{OL*l*_*4Ar&=-s!<$Y%wjBrxN$~t`8oqXuVYtPKUZA*!1>SL`g*;px z6!3AXf%uBy1yZC0$s|#dFZ3#Q`Sak?=5gHYO%7^41`Az+_zv?@>^fzJBnYrT{x`iX zJplgYH4yq-dJM#sryaNNPvc1WhEXD*r|@erIVKZn_#~)A_~K;an9L;BN|G67ory6G zCF`>?qgs_LV`}M({4?X>`5pOn7-HD_oXC>7` zh|l2e02#xpUD(3o4)s@+dJS4R9|~Pg<59gyck+Fv1IP3M5io+EqftNn#He%i@{RT}HSD;(GvVmdqVx zN;MdH1mt)})A&p89l8;rX>GP5N-XMFwD5nD@%VCLixd^y$wQ`OFx%|TbQ`iCCI%rkGx+A!Vl4zcW;;q-` zK;7AdPmq2}fDK5?*m%#)KT*`K)qc{v^u1V-1ypp?B8wXuA;iJFMZzTQ-H!%8j+=q% zg)up$i;g3>EypYaqp0f|Z<@%D$U_s9f5kfAD^Ld{4;s}R1A_hz$Ze>CcfB02FfKR-pRWC=X&TYmvec6)cM|YfQfEDOBIG}OBN%^sq&b^k> z<5jO*wDP}1n&d<@+P@QVzPu(s5pD@u4ic`~PMW`H4xUKu;&3gdau}&OHg{r5N`mkR zPf*OGwHj;X<--5r6hr{ftKYKDlk~??`2p9KlMi?`vphBpk1WHi5i~R164UU-EiCt z^nS^?K$0ndz^njefZno_r(z~m7nCy7civj(h})9u@vtkc)JXVtaNkPV*7J~t9cajfd&wRg0HeSC z`|kPozo*}`ry!Z^^~E5a_6H1W8c1%s9?5UVlf@>DtB0TJj0OL&M2@>;0d! zeFJuygvZ@KdDuP;pFb?~LV2%bkh}n={SGK$@UyvXE-Nh!2B~bQ4ct5A3_=wbx} zMY(b#T60x_f_?uL7s~;0=tIc2I@DGZ#rt6)0rt{6pjJCEzxdX9%~rL+|Caez2U@zF z&qjzVxJ*R@-*me4dNSV$ks~Jv5xIA3^E>;CurGUXxNJ+c&Tt)nO1FVt%TLsip_ASHXa_Ih!o6Y z)*mf+v6Tz~Ntwh2pRW&h)D)a_zu8d?BC8c{dMMaDZgcpjap!}PLCnj}{mp2`P;yuw zI6p*c#epDMK_!D{rC+fX3_T-Y#;GJb({+muqJM~Y$-9JVFiHCFrW=Md!lwKIHzID; z+u(gDD-&2N%c%((I!-~j6gS4pB2zcsogrRyzIq^`q=WsFc`W^cFIVu;6jG2pFdpu` zO@C6Tm;|K>JQ=a5+t#=(_$m2q=G#3l6<}_lU1!VQ0Itj9Q0MF(Qq!2*CdNBemjL}i ze}kx=y7ph|6Fjzg`k%*=yG(3ha87$oYs$C&!k3C=c_(d|30&tDeV`0Xc6fg~9c8;fX8*R2$Oyy! zCcYigYBfPiHO&W$O$p+0qgOT*bJP!hI9OyF;kPJ7aMX|;Q z>8jqrQZz(1-aE7F-2%~J$|QYN9Hf*Wo-|JEhS>FKNZnUz45ZoTtU-rNzhCTrC6TOT z?^w$#3lkY>V-i`nP^Xa{bJOI6JTm1-L8b3+k6nzFji*sEP)_%2Ch3anE;hWxbi@^WHmi#hhR&TEm%tq5* znU&E8WEARX85I50wqjlNDztdSNXdVkkYnB|d%4<-CAjVn6k=K>Xw_q%t1X|O?(K?W zWbfH%33T{tArL)922~l-mpTt+5E93)hW8=FW;8RsxU38Wl=`o@0!6=15^*^W$3B}k zBx765eXvg|Ly6GRmic~#JEueE&E~D;rjo6MHPUe)x$dyHKUug6r%k!jBW9+OGzK&) zKZ8+O3Y=KmKPhoo4D4=irP~EB6R)wMYz3#?oqg?5b(Hdp+Zm6sd&EyM^AslNCeMy^ z*_ocvTEUYgSMgjd3)n3I##J>+#Z92WvlmT*^LRDfRs<(yjzyK~adR7jKIof**K& zg8gwhHPpXz@(XLukQUqeeUE}3 zu1IStQFbeyX7IGUeX6hg;D9BIzTd&vzt8+@yKYNW-fDhW3}TTx*K&Wb zFkk)mF=f!Pqp!EXxN;m&ACgy!NRP%H=iH&0xqHPY8{V;weA*J-Ho@_FtL)eQ0Y}<> zmd>TIn&&PjK|j;pZ|tV=s0Q0}1uHvo6XZQV`mFj2+nOMn>$LqQT%;n#--RVwRtGQ# zXRvk@F|y3B6>4!s8Q4ut*$7~t-#yMUzSm&?Xfx`xoqM6Xb)Hmexcwt9oW@QmAfEPV zPDtXso^inBN;3ClAX)LGs5vX4TUoBE2G-G#{1|K4uE`8a!AJUBjT-XQ(kz3sy$4zw zi(Ye=U-^+FT|Uyd)nWt_zqd*utwK*}Ha@B5T+#-yM%t$@zH?JsK;$D>rXcO|rRF2I za&0nSuky*!#RF5wOv=4^KFm#}f_MG@p1O2aI?4NQzgPs*NdH#N8q#;+NLy}e~5H6#ZXY?kOZ!M6kn+4!e2&2V_qn%&4)35JoPRZlC ziFSXc(3=x$ymr9B)k3~er1F!pGxkf9P`ncHl(RZZ!Jh|O2Ni!jqR=gtBSkpRvgp%1 zA(F$71G8M18S~5m*0|Ixj8pj!b-eaVDF!%n^Sns8jVCh0P70FZkz(*;1F3Wv`F;qu z+uCtNDI23PXmyq3Uzn$dJqJAwa;c?>`nI;I*sSor7%XU<(sDMIX397)IK>W0dMrva&t)5XdS)pov)Mz;pZy>xIv*1L=>y^oqWuWxmYw(-$ zXs;qu6XBinx)JQME9Y#b2Iso%Lk^QyZf!BO?W$bf7c!D#@6qU4wo)5B%hFS)^Kb+V zH&V2;V39OgC>`fhrr-#)x;alXqqr6kyuPJ&zN_J_xRzBo8XPDx@3EDiQpRU*PgRcY zdkBZIle8w&gbO;gj=YOz)c9>&GA~7fo#|VE#CK=Lt0BV{7mB{7x*8m1jaDMiEy~_j zV*2T8wBdWtv{W-wo;HlO)v zc(D1YCVP!mlsPT(mLeNlkmWlfSo{9ZjA&M*RMvB(`|OrXVbS=Q74Olm%M=Nh8Y(a%0rJ0th2K=UsI zLynRyj+g7N1*s+6itaw$;u^fRiI{kd(8g7(dzi)~YuX;uFXsp@Y`qU-5O1GNn76D| zf&+o}g6J{G*Ko;7mjSpqQSGmdjGzv>%#{K7zs`7uG(lMY!9 zb>^}5bhl&e;7BGDAkfq(s9%k9fB9=?Eq7M1y}9VW=VrQMrBC>KCfRQyi?j-8lCXO! zq|IB{c`XNS!-I}73X!?2FC2}3k9nvp(FpE#XU(XPY|{q_maLOl@0FQ;VClaq&AjxL z#C>48YQLAp7Tcz+ls%i%CVRFUSo}^VZZ^s_wx^$#%(N^D|2%78f1qmUan|B~XYZcK z7W>`6h$CN)>lbOMgwN=xA}EjDGR7xDT374)Sj@bVD_W+j#8^~u_QvS_qJ|)KOzRZT zh7O7$T||qJ=UAxSK~}dV zQcG*F;DCIxZ)8bKRhOW4Se`x`3U>E9Ik8>9qb-=(|;$wJz7quc~|&8O-p0=wUF;yMuQ zW-+&VQ=?I)NCYvR&>Q(eoay8I4^$>|L;-R^@n>m<=#{Pm&;n0b=Rn}>MMcMcfO#1W zQkKMiF4%1P;EPLH`fkB}DCY_snNky9N1Y2= znilZNvMDK$Ntr@TEel)RCkBG|rdcZwI~;yP3g0}=O~nlXU@4maRXdoc9h^bH`bdj$-pR7H{R*?vfHUe7Z5Zqyx5G`Tc6A<6gP+dgZ29$PF7$1P0DwuTwuQs}@ z7FtxRud#nr^CO3Qj^u>&I_undAuX`FWit|N+zF`7UcjNK|IJRdHFYPMdRK~zvR7PR zYnx8Ge-lI;n@~ND0J!dxb?~m1@XU4r$b<}AoKE)kI0JAN1A`K@?(SiU<#TO z_m#4Ynz+#D2e8XDFROJ#VNa|G^lNa-!)r_$8OLeWq~(65#Iu7_#vF zk}`7561-6NqG&K_13pq+^A4Ip1U4B|X7uc(rcVQN1M=R;y;hJg(V?~X8(Ve%nkoPL z;Q-*m#f@y7VT)rz07kVSAS+1L3>vLW0{LwhJp#KVgfMb_5x$<``uUxKZF^t-wW))E zH7XU!I8O7&nevoX(#P9BKY&oj(a|wAd7u|~ySO?_ehSftoC0_W2EKsDQ;S?k;|hE< z%BG=)L|UNUv1c6npaSk|r92T4w+< z#j67xLE(75O8pB+IW_Xw2zj37Nd~n*@5O*Mwtq|XGcW;Zu(Q;Fl(+;s`R{LXxZ^an z#m-=09N?6kzM6w}NL8T^`3P8LaKyFpV37j|h^#DBsF?f%{EfA7`x#Q&?ex)A906=# zV#4}Z^Y5YN30)ZKSY(#4(EM$EA-H`2(k8zH5bf{R=Yy}zh@GZ_ZptuUCpYOuKwejl z=Prp8NW4a}?uzMpfkA>^qxK4$Qk3{1(P`omq}N^-0AkZY@)9;b7Yj90z+N0|oykEL z3P0+8@un_Hwtmdcabmu|w7vJa0uVfUI)pW4Odvge)KZhVBMN`MbI@z=>#E=MJ-@uec?fEP=_Nk zQ9$S53WDFn0EL9r?ad3+jzHu#Yh!4`mqS4W;JXm5ZFWb^LdCw1Mi=wm5 z+XAgcfrX_;)T@6XWGwluEXnmUX&M^S>)Aj*n(u&1+5g<$ZWyC3h7SLZYj}VQ)8iOW zOiF#dD|hExK$LDX69ikR6v?QbAd&7^M7GOs&%J2@HX%31DgM(Q z@z9#hy@Gd4OajYqtJdW*#i6x6?Jf7C0OSuyvMuxAv8`kzhg&r+0|0g&*RS&?fv@HVK$!$A^*`-< z0SGsSz>gbY6(n9@Jq&+H$EB!+`4CZ+5>6s4pq6dQb!Je@27l6HBumt{7bv6DC5}i&dxvFbu{jsz4}dt?+9nMN9Om!f zc!T3AsFWC~UAM-4Lp+xTfh=@^w}T;t7x!Z_gyeBRYooC5?+1-kGAuwy_<#V(fqN`D zTcqLiBonJg9~yS#9(v$@=Awq}JI6mZ=bqvj4=Ove9F{larFN+sBwk-Ie+2@It(ghQC4E(#u7}8uML##ZroaAQ6%%{K@t{T!q-oK_U ze&5R@&q5{t0A3N)*DXcyFQ75qmXQii4PXC4SuJNHX4#;Za3{cz1~2Lj=7Q}Y?$D0+ zpw-|ku5v%XC>h~0ONLLE1{FlSieDkuX}o_vUhNPGe@WoLG%rH1M6qK3QRX$8YmgBu zOnUN$cf|5OJTYFl6XkKTwpuHo+_<=T1--7UC`(?IPBL08)E9l~R2$8sX>x8`=kPs8 zH^>q#3s3$$smL@zdvTv74y70Gt+y;Pw{Cr&u@_Rip@L z9U}Pz-{rppNS&TAZot!-H=ryt zT%%@(v0DZZ=egnR+K_BWv^*4LUG>khb?Xv{Dz7{@l4MpRHIuLC_o`G zCk6xbfyLSrZcuYL2v*!fQeMn_R{SSP6<3H_ZRG**!u>j#k4f5_QF6@|;LY5KwDN z$5!(4M(Wiu$>rh~3$?VDqpb}thkYHIHH$)B{W6iPUj3Tt-`xPf0GpRczXCHkl%G!q z|J_sO=;%d+skNHOKg&tx-U@()w1aT_jpkAis~can$Klel0%B;VoK^FZ=ZlnyG`gL4 z0OYCWiIyxZyk;OSdg@4g>_>~UGvtiva455zi zY6r6-py8L2xsAL0`=W@*q$Ub>emq~-w4zc2GhgNpF|R9V;wJ9|h{;hCJ?{lnMIdSG z<{!nP#^jx*TSxPB^mM`yzgAy9T$=jnj@BrV40F+$~wA(vW z4@w-NkBD_yP&(l# zCD6q|LU#|qImeOT@96pd(*%_bjyV!UqSSce!dK(c_wM%>J0i!m@WuNejS2K81T&to zqPc)NH82+=NR<}1DHb7$I~6NWOTKhRLK9l_1LVOvGEU!?9KE~_DY|y<7vfON7|n1; zsGK?x-p2E=ti;K3D3O7eyq{du;|$2ri_qyPWh^g_LFTftI=rUQDFz9*42Q~14CwpP zBzz|m3QTFO6*F%QT?r&)59*2nIHJy?v8IYulUNU43#%r6QHCodL6=0zMOuQ$?&amze_4coW-5rPBJ7CK)cURFy+M%GG7X7wTB^v`NA)C&#R## z=F`+#pnJa)=nZ{r*X_O>BC~8)RC#FOmcDpZIcgaxkZhX#?<8M&(jkQYRcqfSxPWGC z)q?x^Z&You6q6$T58kYGn%GB()rs$%E;!(9yPOv5OlmX=qOOkf$ z$HF9Qgl$ilo2K#m<0L@yUl3*{zD_Z%asFI%IndpFJ#@D?xx8e(797wrg6KWZ>0GM< zVn_Rw)o9c+ml7Y|>Qlq-6JULA>@1z^b_ZvpI_}f`Ltkhnt!cqOtyI}c{iZ`;5Cx(k zIvaNvwy8%#ZE^eplb(cw2ioBHsS~37yg;qMak8z^HzMrd`Sdi zjdvix_Ai@ZM~|CG!gf5S^x|b>jbo3GM%?nXvMO`LSU#!8tCw1cr(~H^LWhuGx5=Of z@S$jxVaqp;>N4M|pt(@!5?kAUzeLb_uvfhap;UQ!-?q_^MOL04#58y~A!zWwrUxwu ziAfrr`RczhEhDdTE%F5iJ8N_-16R$RP}+VM`nyCqhnVY^Q<+iixSzN!kmsuJk+eb+ zjXYb26e{yFoexY3Y*g?(UZE7LXQclu)EW1f)R}L_h@u`Nn+KyT4=azl$XYbKciI zt})JWh8lCB6n6aA=-Qt5)bHM0uo@-5<;!Pg{r?`We~=mI?y{I{I^H*vbn=Vo4zUP& zSa5%rvLy`M|FDrmDPB~{>bq(4eTpCHJwYwL?_cB6hjPc)W9L-oVjk7L_QRgX6ani4nU68x zdHQzHuailAq`7Qq-XQt+C&T|Yf|g!7zBDFaF&qPNDJMUmoSG?SToP7oA!PhKPn!Bg ze%&Rqd{xd}tLkgRmSZk?c(y3b_3Q>9lF819TN|bgMHy8mT6Xm{F9*=j%M5Dp`q$ZA z#MHdpNU=)Oeq%x;vr)~C)YJD#z6}O4Jbw#>DVS;R64*+3Qd6h%6wtkfC(VPI7DwNB^1eYBnc%`pqplNxITFul z!6oU(=nd2quek33%eZo`4*(K!ItPqJ!jz_f3peyjgab7sIQ&dfh#J5dO$-14Ebwg4 z;97BUdo(#?N60j;*aH#XAR?YL$+*jGe_A71*WsQ~E|^||LZO97#e{sTisD6(PIJUd zJ}Rv67!rG(6TciV{uo^lY}$ckB`fL9skH05@;1Q!l>}8X^4I447jw5COFtzBTiHjV zkGSTGm-09p+tUl*EBy#1eqXvQN;vVs=-J^?s^YUiSnyw7%hx>**t)w!I^q81-?QL# zp7{-faen&pD|vBIl7;rq#dnjn$(*E}8MoM+D-+`3jt*zz1FM`88cl6KH!^Pv&;96>J@a*nwvoM=>n5P3Y%z6OlR2&h!1PCoeo<@*nJb@ zl3j1JNZfLKuTamQgKdx4MFI=?20`0_VT5cVgcXt&cC~A?BG8|ar+)GK#&v|Gf^clf zDyd|QGN+v{k%=y?^1m``fTMN|v$pV7!hKqEoFMQ4ssAX|_~(-i&5;>uElwcrJyF4( zCWVZN5uo*{3GEOIW`!AbSJ)pRkF3w_1J?86fgPb7g3Xa__*S|Vm!1Vl)I)(gIr_d{)2KMkTX}(LKkO@}ttvvw7+ZOOe#J;M% zRb|?{tTe5ne7zHCxK}s;K$u)zY=zN_4II95pq1c62p_ z=~fc|JNYNwfjS4QnJ2HsIyubx_s9=|t>|zmwH$;=9;ckd31E(6L~Pj4#dgX ztCG$Lj=%nv5C%hED~yv5+Uv&Xcx508VFzYKxL zSv}kB=|J{+QOBJ)iYk8QIUfC=w3CEv5CA;#!Q7yr~0# zd=#Zu)odFH+0ms>d?@>1iX6R_QOZreps^d$$YQG4|M+KNoJPc}PBxmih`j{@VsWOl zp*q{44t;0LT&Z7-)SbGPK3(`n>JVXJi(tb$iI;Ja4nFt)-i(n&BkaM-e&N-BeHWx0 zSEnD+50A1d8T_o+`U#&lT^}I_rKpuv+8bgx7kTR{ z!N?^JIVWyqLn(!Sfu^aHdundjEiC_b(CfT)?A7*T4FRc4Qzx&V&r=h}YY`M__D_Bl znpzdw=54;FrPV1XCa&DUN-msQe|ma1P*x;Ti)8U(XPFHL11F1hf@pxa!AY|o0Kh0mbSdKiZHi654s&NgF)f8m(S3YaT@sm#7Na5 zapUSTS%M?zO!1R5%A?)E!+$R$H1`EuEojlha?^O!7B88DeXk&1v7b1gmgYx}&+r^j za^qS8ylE*GVYSjwH=`43sqp}Jn7TSm@6;7bS~u_gCem}_IxcH*PxtcWxo_Y^`twoW z#pAf@57A8_N-o9>-ytA1XK_~e<|oY!AHcs4Stx9A%T5;7y~d#?%VOtQ1Ih`Z)Qo2@ zP8b_11!(+eAG?f@=p(gme|6-om?BXkX!Dxjux7DhSF3!+=cmX{_3Ei_w6um-_muoER(&d#hYi_TRz4IKvJaU9dpIXFg`v<_3dmoEF z?n^)xl;APoce@x@@ZMs`aqdICe}@O>1i?j@41?6dlOOxjWf=JPzL)Mn*k{-Nmp+Nk z9onP5WxR}T$g0w(}TNEe+b4d(XjYM!irfU(LXmI;IP6c8q-0w8LM z6hjl+%o2^Ts;5@%pJmwBsTC#ZoJ90%cT&elDO-LU?}Fk=1GetxUwZX0uy(j;1LTAo z;sPKE#$mb?jdksnjrt{$3$~40H2R<{`IMZKC9uEF>fqKtx$`#qry_dR$K3nTt zzqeq^UH$F55mCn_=M8x)jZ0jH<3f<}}Vgekt+c*~1J`pwOX#(&uZhYX9D@=tI2{L(%i z5Cl)z|Kqo?L+mcK#uiwC3HdCDf9Gr7(n1cFK9}0xbM22!M|5~kBJX_4+qM;U`xBS?2{C<}S`JuZ_1dXBZ-RVd;hqzke87&J6Q zirPR%1{YTD9K)yi9?V0x$Mzzt$I#kl10NA+z4&wMgeSOQ*|TktFQOT>} z>L|9CS7|I2i1)p!z$@>O!$1BehCCGq*aOhXr@OV4qkD7-keGPWYa}@xu75)<=Ggj; z^-#(NpY>DH&O=jtr^taWulUM~b31Yt;mliYZ;}in@Rg2a1Dx0+sX620^LqG5q~5p? zBdk%oX!^AtlvyW}3-?G>C%cbWt0jJakB;=Kl7vxAU{6?-^6UI~(slr|dSvi)uqBx= zE{|uyt;N7V$>Jt`GTepi49s@mV*UTSSXDGW;dTCi2?^;8=em+qq`{15WcIhJ=JHRa z>|gm)Mei=tw-m13oUt*ob-8f9>2%=RNu8j6@wUu$q7;>WLn8~PpStD5m0K~~VnJA~ z__%ZK3}S9Pj#eldj8;6D0*7Pnz$JNVBX>R$^N7oMG{wzYby&`2=p$BDWWYg2nM{Z) z`fBQE;HS^idVil_c^a6?wp5<>0QtGd>Pu`*jOycdy>wKy``wLPL3JSurReK%|A<=7$F=^OrA*Xd@wxp%d*PO89H zBl~fwH9LI*2FdeJO(i!uCy_c|IV%Fk?h*Fr^R!^rUP(9A|99^kls9WxaazZ!;t~CN z*l`^EE#-2&kK4dB`l<`BhU5Cn(~pl^x2(r@lO{ctjJ?k53RuXuf?FJ&yM9&JI8hTS z2W5$LJ?ERR$>(A4JgoCLctM7`MhyXff^-vdzZe1M6M;7S+#h0UjoikV5N{Eh`I=$?Kex%RJ&fM!g0pBTOoOun1SHWeH^jgMwgCZmQ+-@6^^c z=0TGg%+>tA3SI81xK*iKad}Z|S(nwPoSEs^2)|=z75V7;y#7e&^aIHrqxKqeN$0bT zn^)eu)4C*|KC6vNB1iC|>qzQo+||6>>V)AaC5vV^f=-Ols!4E1<05uhu!EMCJ_cpH zJPbvxA?z^ZS^R2?OYr~_Ka*-GlBSX~GJWx$zuuc~3*L|2?7~8~qpttC>K6z<{Jy-$ z_^YsX+25h=4SC(wr+QBubQzpYGqcQ{B->X}W7-c1INm>2?>d<@~<78z$Uz2iH z@s9fFCM)t&OHY=Y;jcoaOy9`A5{kM9|^X@&0)3<;#MPTXRjqROfKtLg*cvy zOcRW~pIBaeE@iN@LjCsRoi#jM|8Uy{VW}k`JxYys^dGrN2L*`-K)G%Z#^!p#+;(*x<0aI>iYe_kjfdo-kf}t zMMnRW)Rp87=LJFLv-%k`-eIa*#yaBPH1XBd)O)t|W%Wy6-1G#73k8y9EmS4q4s%X~d(q8{w}d1V^w#^Qhfp0<{^?u?a&y`Ah;K$mxG_H`Bs36qVL zgAGrcN59w5AA>o;(>lyrfliZsPa`n#`=$-u6qvLmK$F9|W9j6sLz+>L`bEG%tw|t?6 zrA(rayLBSRjMzV(B=&FkrvH|9R!nxhg_G<5O;>l5e)=7>(U_KAG&nd2ddakxbBa3| zBoYcap7Ak$Rb^7cDD(F^KI)?~xosQF)y+A)5B^$JS*g6&tIBz=_}9z)MP1ncf19uK zenR{}0G@fgu;&4l=bR=51qBElM4_>`Z~}Rrk&%(ygf7+XPo;A4U#^e5M;Bm303WP3 zkP{4vU>RrjK(r&Nu7^9Dr`2o_S1l~ZKInabL<-}rgHK>{-|S*T#u z(l0<`$5SWj@vcsep|$wPwjDVRcVKWrZcA_Uj?Sl_J^WoTh7S2xt+MaqpnK3x^zU#+lMAwMT) zG=5k@taYG|xSY#DWS@eogd2V0+q>7pJbuhY0>31EC19pNrQ9px`XQR@=Ly5q5=@-h z*I+ZfaYym_3Vos@qpfnin~mUEW-ppWl5W^2KGoY9Kz-P-h;0bYDkNNIVOW_{@XXiA2aIxOPyN}yl(W!!jF!+9^&utMr33Vzf>Jf zxKY_7?Ji|R%aD<#PR-q4XDV@^oPL$k%1-q-?fkYPui@t*_j*>^O!+DW{NIPyC4Ozk z-wtk42k-q7uX~(qi1$w`E)%Ku&I9@0psvXFK;C*>dUVRvW>1r{VS zW65DD17wqK(A{%8nN{e~&ISYsp;E9l!HyZ~D_waDB*JT!Z7`B3jsJkJg*JVk}r z+&6)Ly=LU(8^2p zel7fkME2GR>srTPs>8Q**;cRZn#v~=X++mkw;wyL_2inimd9*kNlo&y$yDygc@14` zm3qs?E%r7IzJv_RvZst2+{v6S10Pf({dlspO_VtlM*nm&&PkA>*>gIG^oZ8>PK?AX z#wLN(?{C$ZF*R~_I{mL|8L}(;7ccb1whPgYUpD_!HLDVqZ)`YCt75P~*1D7S_Zd1u zatXIV*)@sdL&VDg3K8d}rqEyu#}YwHcRWGZb=8+ywYjpg5|=fhA+T?? zg_&k%y%+c_ZZ1Qa^4|~+cC3Z)?vRvGwT`Vo^y%^1xcNh#xA(>sPAo-6 zz2OA>+#IP^dvmIiJSR6agL0ywl{By+5Kqd5C1*228G~LeF+)Q&uJU{b&4XS{5fjHW z+sX-}GNSPeeXzqWYva^!mN+lEhTn_7WT!eTZ6@l0jIT}uyC|ETZmTH|daja^Qe2nz z36&ep!1G{-hanOd(5rfbigCL4F0M06FDtDtr({jt2EZ;^;>kbFZ&R;jSBJvV zN@k?ho$BrrPVd0%aglG{ZT^;cZ+fNH%y)WuI_!lthbEZ`&Ow&$J<2;G^K`QdZke@I7-0G61mw$SS%`qSH($~aP%G#B){(C#}Sxyk8WA`J& z(gEpsyRdxi&clb*XzDvd&)Ghjnm+KolB8EK#Jnlu#hUiiVH{6X`zv)w>;!u+jvT}KJnujo{P1746Bn}e?2xdXHOdJa;wsRDoeLgOhMu{%-yrz(i$9!$Anh>%nW-6#^<9fp$wN7A zqfQO^>t$R{xAY(P)@0V6LxIi4yKU zQrly-C1olzfAevl02fx6$b=IUJlx$7%gcVUc7lHJL@~%GRft%8NpcG=v((*fzH#x>ovPW9_2&((Tp;~Hha&5IfNH(tJknf+jG1* z#ZZw<_I8H0V-}fL5YATvvurLU2y#Zm&-5Sa3^tncw^pXtAqjm&<^qKI zexB%+ggNIiE2fMHTIPun(+Yaqd8F%HsnteH*a1#1D%Q4~MUSwLWO&b>?Fr1V8BA(W zwSfX%?x}g{1ex{lE^6-LK3X}38GJTL;GK+fn?VFsYOT z0*8d|e45$;GhT8$eo3`;p{s>D{U5NX&te+~8x9T!XX@96K#eT71p${~J%<~I8>6&2 zHgN+R-zmQpBG8B+ht}~#W7|;`E58Kw^fhU)C21-RKp|PAEMJqln+&>5URmR|?dN?B zTJI0dFzOBHnhdbdwb~iajLD-}8(wrP{chXZ@{Z|#?~Gx=Y%cDhh_;p}g_2?q^fVsq zJgHOoxLC{W?t5xau!L%AY5-BdTp=sc<5Y4Gd;EC;N2+pwRmvROLs7kZGpm~R;=zO@ zt2?NCXT!wbF)~JO2;}DG8m&S2pD5b+esRrql{ePJBE1%03QYU~V7+%tzdU{K&18(d zzL*=aE!;wKN2Ae&FHQ7KP>65W&Bc!A z{Qls8XaUJ_{-Wf$zbXTzF8)d{@5a1FVLQSO&|Ep=76-`>xXZ;eWLJ4}b- z?UFi3r*LA`Oeo`zE9Xq}C455ToE&WEvo9bicuJ&FU;m53HfZ~^(^|?D5?B1-x%!$E z1^?^9DZMD)oJLSjM5tPo>xo8eTNvvSgiwzApHv{u@^Ac;f(;UF7NT!pu<*)mmYI)_ z`LU0Vg$4Zz=l%PqrZ<<_?I8ouIB`2tgTgc$9kt+#INbO5704z)iu^fsTKV(>DSN zp`**~6@%Fn2Hvy6w6vKzeV(xzu4$M7;~PQ&Fno-G8HGo^3=ZIcfsLQi;p~AQNcura zD0}Eub8GkvWJ=slCF1*C4nJP7ec{UY6~V~$kP3~&CX<$Gll%J@EE8Y}R}o3Vq305x z^~L{(*eLr@i9!^oM50Z;D|#GLkq6uyK;325-1yAPUEyo8`8y$lA7i~-%2z6y&m%?4 zhPI6rSNw9HVNEy#l4`As7BdG*C0oa_nV*w{-q%lM81D~sjiCA>e;<%rp5^tf_~Ymm zL)MRr|2-L;Y1(8C)$I4>VB=ugb~rKD17C&U-aOUsnMUK+Ftvd1O6(xL9d9*AZfSnQ zl9|lfX?Gu3TS7b=2W)1drm49JpLn?3^oA7?b zJ=@QDrp%Y%$9xWtOdP1XIqx8{MK`yiysGMv-HdF0oWR|O_T`z9LQ_FtY-d*vJ1L_< z0yAa$^p?U(ha5Ujwl84QAoLE8s;WXEYKVywnKBA}`;d2rhl&2z*I9*oSsHj-k;3$n z>!kNaR$2)zgKz!>8(kg;!(K2gg{8oQ@B;iA=3Ch7Pk`~w;ZmaZRj1CLKrU}5dyS0C z5cM-+BWV|TS5gPv6A(!IjXRlI1-Aw<6oG0K5pebj*1~>tk44<*QBn4^qCP@S?6Y#{ zgXwT7DqUqO$kDdnu`#FII6Trw(0qP779kic+#f^VI7Kh_y-TqL$yp;Dap=qKPOmM; z2-kFbkFyy!JrGCB0M0R+ z1*6*`w@?awHZe1^Rdkohsv;YplO-wS>_}(5rS=Q-5Bph_#zNI|TAAe7%OU7PNL}wI zCo9?9SQ(UwI&XvWI+^*_ -jCo_@r7@6Se2 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

      ATI8hd0;tzprcQ9 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

      WQU-r&oRs-4GWU+~PA6B~YlGxAn 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

    1. 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

      tLNzUE?&D-@9{PR11+EF;Lnx;V&e04b*CLTZ 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

      )e>!c^5wRIzufA_V0Qt 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

      b(e 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�J<4+^Wix?~>% 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�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 z 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

      ^$NGz9$^kE(PRN2mu0v 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≪+_DQ7Upx5YrkwbSTN^^ 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%0DWDhC^OR8+{c~SxN#p^t{$>cjm&^Viujk%9v_|T7 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

      ^T>ATq@Qy*~l37xX~4KejSV#x}h?9o=N* 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

      B;nHYc;2MOyg-c@GENTgJ-o`2 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 z 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%0DYzubkmQ*5JRxD(m+>iIPri#w~$pW*ZG0ZdS$0= z3H^H~1_TnHOBV?QN#Ag*uvi@DS6Wb;_kWAO zcZ)B*+0y}Zr9SRMW+8zI^8T$!C)77<^dg=+Jaz?gd+J)T)k<~a*K4$f2v<#GQ{a8U zyEUkFC3+{Ks66beVGOwIF`YDF%(wLFUW@ zhot7&NG*kfgk>eaGmvp0X9Eu#1iR7preH1VY(`GEi#i42_c432%gySVf~&(Rr0@I; zE>Zc+?Itj@SY*sHX5)VV_uP93$+s?_??K8bYQZsN<2urAlQ5X(C9xo<6ArKc=Xh;XgEzxb zBRhj4VXF!;07>Gr3B>W_`*?8%kI4Kg1$!Hek(dSouMS%O8f@xA_-)~6N#8p))I^rb zh^m$7!79aTOSu{+#p>aE>-~$7!UTl!9Hs6uTP*vV35x$_$#J+8Z)iEL&ozRe``X*> zL|s(U5q0au+N2$9CxJz>5eShDyxJYqSp}~n;E~2bvxJVFXZZEJ7)$$$yJu189WZDH zT5&HI>sH=9Q?x&|Lc?+Xr_69%DVr0|>%40R1p6sW zLaN1c7G`+8%2NKyuca=P&Tiru@SmpCRao5GKOmF`n_>UlH2)x{lD$d z0H8k{0Jr+L`T#(u0z2bx$Q?H3-xfUp4z!RmU`a%c0N^~+ixIHU|IH@;o&5b@c2_u= z{?K>=pve5wCH}Kb9sukHz^ebdiob)}{~xIMBWVV(mh&G~{0+Fy24MOFcr%QE_7%X& z&EF*b|2m34a%R~7H5&aVN5KrZ5I}9p-^*W^0o^qKXwu&_{iTZECO7}M5T@TCOaF6v z@JHJo0O$YbQT(-S&%(+0Z?v0!9W9$*L)BjFTOU*OK=}lP%j<36;b5mJ%j2LLI9W>^ z2L|l$bu!CiBXPnr+*k4=(q2ZTrEal()+r5P6MSP*HTk6#6(?%*p0`%bj&+2Ny>aK9ta$90SJ zI7-}hF?gcBrgoXJlbK06UW+d;@0A()wAnYFB`@F6#r}SAG|ZU)1Km?D4`JS-BSP157(D4xT`a&51$f<5}Y{l%cRMB|=LHM0^p$8)KByTxm1Y;vy5 zBR%VA`9^zEby@p3rK!VbQ18)Mu@p2A5YgU@2yonbiVa7|)0M(?^NpX<%Tl|s{h?-v zH;yv0kTrPe6a78?yWLJM9utz3kbG@8^Ex{pYJl!>{tbPO2cMGSZeVrzTI|8)Pjh1SeE1fk2vmf^mGS4E->}WqUM3BZGo&Ut>0Lv$+xl)Q=sV zw34(~s_*TtFDet#jP9-`PK$LpO8NQDQ)awnKJS_KCJCp_4t~sGD>9Y)#7W#CXyR6y z)FTG9N->WRq7=Pq$<&H;FRjHEqX}>z6kY#=pL&qyExxAy(YvzlSD<|REcVpXA zlW)eSMe=(5Fdwh<%g?%F*LTa&NjL0hIU{F+M)))JW&|^p$qOF9R#%sTQ+%#pF_AS7 zi>i~FjykbLt2n1H66XXD4XXuuhpMNn@e>m8h3nOAwz81W=qs+dT|+9TTl?kPzB)#x2QS~NJ7pOJ%Zdz2_n*F1khC| z#Hmr7f8$GC3GO4qZRSWbA2E`d#k=mFBqj1Q*4Ffi@JPucN(2T2qT-sO#EuVJ^&VmX zhNu}O5dlH%>EwzMaqIjT(F=V`bE`X0nLAng=8PzO1WUI}XgHA#OUUGOzGv?bOmUzz zE^?PZA7)aWO-_1l^&b885=%6N-*4>NNhj28Wtz<9M$KergQ`{P%&AhjX9rt|eH`r^f9#bZ{GAO`q|-Aid(aTDqrB zp*lZAuU~y-hrVGR+DraSk@!P2cEGKi|Hp@qO%&{$_uZ@$D7V-6oN-x_!F<&mZ6#Xy;?UwYeVt>3K zJyg6e(Uu~=r>LGmxALjscpH;tw#{|Xz6uR2@S907QN%|GJQ{rdem{{Gp0?=pI4Pn& zIMlvievkh`dK_GaRv%ig69x9{Ga?B5Ede+yjUNq_QiFb+l~;V7Vf(^v!=rBO3Z9p} zFMH@vD>DQu3NKI$`7`bk@))%5*=hBi=On1Lg$lc~XsEgVP;B{33*J?Z23*YoG~|Mz z#r8y|#KM;-8$Czh9)5<>lpbx-)}?z;4Lagx3W2#rL2DV;E%8|yS4csGX+G(~Z4%L3d9t1< z{2ym73FV#m2VBSZ4u-z?T22>bA+dUZIOhu?miXZvVzEA1_PrGC;9PFvEex-frnnah>mv5M?LAMB2Yh!}%uc+GWat z4iNQe7yF-sHzhD3p zG~0(3PpWkPkkMPr@s!nB%NKvD5l91SX{2ujLztg%vVJzd1nVnsttkE^RB@gL9I9n4 znCe=Bqp9gE&53%UpKL$lA5rS-#8|#n7Ur8CPVw!Y2wuV=6q1ouP;!z;`D-P#E9za< zELy}O$|fTn#LLKRTaMaXizqed8$PMoMuRH>{&E+U-qE=H6R@w)vUlb*FL-RUL)x!h zODBQT@p5p70jPW1p&7b;9>Ygry!mlXA5Lxz7 z)b97be1Y$G*)h7?2`c{Z!Cm=tMKwzcB zH7>Q=ng28wqZe9)#)W6y6(?k|+|x^JpfQ}f9^fT4vDT3dW|^h&~_%(BYm~?yn*2&O%-j_Mq1Qdqj$zsBD|(Fj^VK zo7T7Qzz1*pVYH^hc@2VQm#jo_!L?tiW5~%)Ig?;ajI5&|4has45GcbWpRVM8>&H@R zyC3Ruj%o}ZhEfnMDQ{8FWhI8z{d%Igg^@WeC?tkA&B)>mJ9(iAY}R+w#kqDKRNm_| z3R)AMP@hj!%}Ib;Q)dV*A#Q$rsg;uZ$sZi@`?wo{+R>acTC zvFjJfR>-lbn$5UY$Ag2vG#Zx9f%KgT1~bf!_>~bT_WIr9FdT}vs5u~0>F&1xPc9*= z5F^j!vpes{i*$T4pCAr?ansbU5h)!uexOKRP*pi#guRSsm$@t!vj#Z*fsq>-ddh8FVa3>bgS@`gq@ zrIOIu9pISEYoUTz;ahoNbmv^V$F$p*!kw4kn7X%P81kO$5-bKgzCk?}=_qbJZW7-? ze;afDNU~D*IEVpe<;;HayV`VMDW@J+8?CJ%sWpG;gp>B(<-_yoetwv zzkHo5GHIKjW<*c~yZD0Sc7zaS zv(MUau&$PHmZE|LUDly9*K!SKw^jo@dg{L5n7@Mt(?0&fxnSeEN9?uCydtwH{|x?| zm4wiHer*y&)mb_$$*-u7iPpnACk4jRpYG)H=$C4)9FY{P@VQVfN3P195tqM)$gn{D z?2*y}osq4`Sc2F^6|Hb|mFP@zu|`}(iFbaThYI!*<9TSd5bDKT8N%~@wh&Ipruk6+ zLxSS9fD@TY_{Iz@s|pADE&U_t>9!}`aIYPWFbuKQr7Y^s3lHDP<@rr1JEbHZ;S60j z()KPTmV_b?KT11oo@W_5tK98)NOjhlyk$6q(2(RjkOEXEm)uJq=1@v5;k|k`UNdq$g4f<>}fj}Q-?;BNG3{ka5hb33p z0C9;CETF%s^uko_keljT`n^|zIjn6-Fy0B?DS-?9;l^4kr?|CRW`Kt5(+$imL>bGa zk>vm{UsC_V_)vxZ?AmtJaJ(AT8_d4t6j)qpbIC; zy^vS35b#ERJ1XPqU@ciq@E}v7fCj7klf(&|&m&4~>yrZaQ^q`ha|^=<|ABok*| zxsJ^hcuMJMK~!0y?m@fU^5&sHDA35;W`kO*1mkQ|+E}MY5tsY~Y0SKZo!<9O$`jv4 z#jdHC5t|#;H0rC#ErQ1qE$P5oJSVE@xqb|P85g9EQKZ)<&Ys|st+^pjq|(l;N0LwUo8TSeABS#?+1i7iWgGYFyO3Jz^5jJbU?ciYB9PwHGXKFzRhRnAD| zwVjX4_C>hax}1zvMqL-|QS**f>%eV1J{;Lt=zY91{IyfP9 zhV5yE82c1Y zTcD;EUN7ni)5O{qx)F`rF%})v`7No=c<~kr{Y&_S~7m7JT#Sl|gi)m{t#ucZE zGYUWllW}S8=G~Rm&Iw?NsebshS1d5~iB)+1I&{fKx>2U|-VK;akcWGE!*)?&_57sQ zMVZrGuV%v!hK2J*1CImDV$UYb&ITf90XJv#X&_`{B-ty-?0LTb$alV;ANI$!Uz)3E z%!PJ_q-09;l7QSPLF1YL0;Ps{D=TJg#@gkW=^F0xYcV23IS7xHb)%IlZA|KB{}Bqk z3`WuPZPCJ|qmU6Vf;_T5ohkx%=+5;+5qWvpxO@J^ugjD7v@*COiZO~B4J2F0zAKmZ z7Ocy9`S|1^T%A-VCz-XIX%(06PrTL}Fxqh5BfTv_c?1kE@Swhg z1vYvhMYY$;Z8R4;X;^q)u<)*Fye{b`k*<^cBEK$wHG`gH$~Nfi4@8WTv2FM&@lf4P zTDUtFaH&RMHK#6^j6nW9h=t-TX8L{{GxuyE?Pn+_yh;(Yd(mtK%je63Pr3yL^+@-6 zr#+HXjzp_#Z6CJE42DqRsJ#_GN2y=QN^(JpAs@MGk$T&u3s$jN)9x~7tB}d7YuvFZ!itF{R_|d zzvP(z_dVnPl5l4Ht@0M&8UG%w1{kFbbZjgH>A&|f!uToT$yWb34Ho7tD{KwN^0#sFVG7$iF02o;Spt9cx`hVB-*D8Ly=YPC30AqkZQ}M?l zS-`~RpDO;^%x7ib{5LbdT}RJmRU*zCKIUR7dZs&P+46l|izbHS>J*2K*}-U&4ldpk z5Wpv*8P$vn`}HFBV4rnWS}GY9*J83l_1zbDD6FsayrQ(?dA?HX0DrV4xk!Wd{q^7` z+9|^{+=J|$qti?M?JH5%b9V&cWc=kj(LR7Z; zF6kdGo3kp2?6kU>`)S`$*}dOx-`DYx8Q+SU-lHEbI=YZQZr)mzMcgHK0|fP0Bza_G z$lHb_dvFDTBBmdfK)Zwck}A=6)@p3C@Q$Ci0U7)xczD*)717LJ-#ZlO%C@$f=9X?|jyGuq&%)!t{J; zwt|E#4qvA@%=LBnS7Nw9DvBEJH5-obqqDiJ-PwRI7BuBo8Xi7_VzEez%lPq+^FiMb zQe6T6aUD`0517>`M)CveAH zHd$!WZsv7itM|;LFM{TC&~aoFD7}#xT{K_1ggxnrk`mzZBrv%`t+FdO{AHgAnmU}s zz`)rjLT{1C;j*$MNij{HXJW<0hA1RBbF6GJS`rVY5BaREIs1b~6c?@{<8B7dV=+zE zk{Ax^#}6SBx5A|!A%8RWfe|IhuaR;R;z4=M5g1Ki1EJvhon9rtr7SxW436GeE0yt; znkV6N=K;ok`7A2c{oT&NWDoC$R!a+NyvN;kk-Re8Cm?cWv{;xUO*5967)!?n^ii3S zVdaGIh;5)S_*(0+%wwb;eY9J5FZk6#kc7xh%2BPbk_0RJ8m~`!-^ZqZj+ESz8S3tk zUr??GnQ745UmYE@7qjutYGGQ7gL%wl8K(hX_ov!mjQCe}^m_VcG3Ah-hZ!xVF( zi29bew4Kl2Os+X*|9ONgsmeie)p zLUcfk3bGAPV6JDp7?a1#V|kveN|`jYIsjT2Qs)idsr`sqg#9s9Ai63xf$FTBzJ7?mw-&d zCfKQ~%M=E^UEX*pz^?+ytN~g;ZJUkx9QKH+bAm3{_oS|Xy9FKB4r;^RMqrPCz}2!H z2!gUp-V_1fpZ=?_DAM7zUq*;r%F-`PYA($_P$ev- zOSIo==)kIRpw~aj?p(fLXi!WP$kxsMXV7|k(q;d zGb@prVMB@`+=j{F;v>CVLziXV&?S>bVp5<|KOafnqGJt z>Zrl$5VJ{4Om;cf@H@yYGE+ND$MS4hIr3rwWAIRMCxxb(Z7ru%%hv8FrO?V7d0qvT zKCzi)es6}3`vep9)?A8CiU?|<^aDI6ah}rX=UO8a;o4^5t&OZ3a2~y#>b3i0t?zgV zzsR=LNy-wj-vi^xm^5_6YW92wL6a|nug=mI@<{vh8M7E6V;szHNCSs3;B(g#O?y<4#UD=Du}#;7_OPl6m$?WBTP7@KU-_~7=EXy8)+3Z;utfs*DTHS&^QCFaw)6S4CbGEz~iM}v9 z1(%ln%zyR;f=0V4`iPFrzSVnkNn7#7LfZQV!ps%->MBuPU!oFz zP;qBdX>r;6_!-%8(m*qz2PeNLgT3(%mbVZ6a82%4p*{IrKYYB{gqTEWZSdI;1ga-D z$;$AYb8~l8s%(@FHT$j8r;WMKrn@3K5Y)qddVX`cx9-TSJgsQ1UygRNklG zOX0deTAM|)bbkmFt}8!l2C&NXLo{vn9M$hKgr1Q{n%=LA=E+Yir>;F{)I9 zJ~YjiK z8|t9w;eN#GSsGLHTc9hLvs#Av^NC_SiEKsICq(p?M;71e^5Z-TF5Xg8!_m^5f25$1 zS_Q0tHy)msvrT{cdHkFszdMhi;ct_pclg#|Mx)m7syic<=2C2M5{Fy@rHwwh1*=7n zH(qtashOt={5I1FEJqT1mc{kkm?s4q6wx97n0Y=^9fWO7v<1~k2` zjQX!Ak986}G-@=Or*Y0vK*F&fnemZq7G6tEw7>MzTss*xd{eJ;!cMNv>p56_R<2YmS;w zaANf#QTGPL#U$cJJMTC*mVrLE?IYCcg)qKY1028gTr!@6AKsF)ahE1PE+=xLT2>_J zur6zrr?hx<9HptDqIryy`7ozwv_us|%fp$BTuOZnCIqysWCYzW74s}l+i%OA`z7uD z*8xV-I6N+ov4yIggtl=}A*-EYAe7kYY)kzy3FP=jIV%;rm_i-o^B5(CkYAK2!m~p3 zalTuX1Bt-iC@o0d=2sL-6NwhtGAj>BYjFHhHVN{SA`LHRAHzF@40q#ECC*d!y(&|| zEn+1Lxq|`p_*AGVX9ICf%IZt zU2e$0AEGyeQQwt{4j?s8NIQ^uf*0V-sDH+a^`4H@VP%Ua1H$=PvulDN4(=yRLQdi5D{sH^Y_w{rZ z4_zzg=ZtGqqBHU_67H%wYh}d%?87T7i%&*92ZKLStwsQE@6`m!sq;j?vLu$EA?1dM zsH=OR5)xfRYebcVC!?0RguHfB!^FmV%P^EdIHRLWG_j>G!IRSmJup1vVU~WjheI7Z z$mnFQPU)g+tOph6My$q&0pz2=mKy}8jl8bDPyKSp*(C{%?zL)t>7lH6)!+F*tMvBr z4fp!ogBVFxklnn=X+t22C*`DW))B5E3=qePXC(WF5v5|$MdV!7`LrlRE8AM0APa_w zva*zn5$nV$TMFG*j`;Yz?FWlR4vCVvEbGKTFivi>AW%D9ijj4V{qKnk}(QF57XK`#fv}1ok!5< z^j1@j|7;*U5>Qk`_~AT8B^jI5 zRbC}Q9czlI#k9EE@~~iEoOcxV6Uo3Se$WaV1j1X(X8h2mhrM*E)NxIX6cW7X4Vu@ z%EA}dC3+$7mn9XAs#LcI0VCeS^!_45l}7h5K?zwZ@e``*T~2H_U|~7KWtZ>#y&9S% zbE0bKtsUl0T1x3-1(Achf#9H&tWUoF&|XYSs=j1FM6WE&THLys{Il?{2AB3&zJTWF z8+*_!1){d9N|LuSJL5SJus4~(o z62{-Kft=QP$iZPqvP1X?Pux;$I>q~?U3AB@XeKX@1(#iU6t}(d*GtaoJ6aLwaS+%? z>o}KX#kX%|-9K9aT!8J*;9NVb5aLRngqq)_QF&TDDHa_aXft&UK!Ni+{N{-)CGz#Z zCe}aEydU~7W_e;FbjefA3iv2?Dk^E#W>=okyI%k-t24Kjnj%?nWrcw=FeY01YD%$H z%lWnE-es=ntAmWeENA!{{6(%7m8oeYE>A@kb_8J`fyT9Vka{^N^g&WeM2N*juEWuL zG>j9fFtLzriO)MMUpr?~W71h>ZO6-8D)ARqWnt1*N04}uw%|F-RHp?~=?b!r!$ma4 zr45K|rp+W|48?ELk^^4bK@xQ}je=io`R13z_68sUZ=gJ!rTU@o;UKMO(=ThTXM3q2 z(fqf`d{({Hht^={f=2G21cZmbiU^=8F$QV)PxCG3yxs4(Z$iORo$bGaK)Mq0H*9Kq z*r?hDysV7-eQ);u@(N$cjtDVH)Oga{KSyNbL>d}cEPDPvF3FxSbmAXZN%D}&emfMp zhh0{I-r{=ikW5f>`T?Ql&cgHO1Bl<8&HrR2|E~`qIR49o1kfq)dp7%T0|-{8-L&L)jtbKvoib#1&|HpG;0Te&{mYoNL*8xAB1pu63Wc_cznLo;40l32d z!(;|DFZ>}q53uw9qYP#?w%-she+SO|R#eLj;NJW$>Mvd9KgwVR@M``<#ve2MzZcB@ zhgAnAb^ve&P?yV2$M&1!4j2P)0KNdKIsS5yfbsvLHkXy*j~RZ>|2hT%@OC)%l<8SS~OzZ#%5MU?-m_INBSU|s@ z&0pRLK!DRfEa^Q5uMEu}U8o2}QqQ&&)D?W%WXmZuN-yN8!Ew0W$E zZgGPoa{nwO6d4gclnW#!h7mzJqF>rl@Z`mEqRGw%ZK^3_0&ps%>4fR4 zke*Fgu}cMYYYjLMD73sWy0Km6^7_IJv7Po}6v}vxw9|(j_KnBf<@UTVW)=l*w zs)bjPNP3iQh-OJHk*EnTeJmL4B;=k5b4g)1;W7yXGGgE;Ely`TNxp2k+vHeNA?O}j z10d_OLKJYRM;8t^-*o4}x{Hwn;-y2j2Q!(JO)jSdMDpX-934!>o@>W_E+8-ebpm!X@D3E( zfu)ebSSg#!E8^!(84%4N6gVWz*xxQeA|pkws5RGRc#Q#!j1zVNhNu>2<&|J?_|9pg z1O@Wy)y=iBG(XNn8(Tej!S6Zw`V)WlI_mTF^>wg|u#2GCE{HbFgUItyJ4B4wcIs7E z>>2b@A3lFz=a88NDk;a9T*To;Xow6Bg=v;IEBH@#w07TdW{Lk2_3hO>71^uK?Q0U zBfCT~t9E2ed`)shBG4xTe10$+-S}j$C6EbA;#I&!&kMnvO^<34N(Q7*1t0q@)-Q7^ zuubqprP`^j{J%BU=AoN8|6iH5k8Z^E{Y840g15K&bpp}!SI)pHB!Y&tN>z@gaK@S z(Ljj*v{7eXJAN8?;I=-!M5eE^f8$yEHDZEFpwNS?x-w|?CP{fHtcj0lZ_%P&>g44Z zF_D#^S9|1PXj*}u$d26NEJ@KcT<+k24*A!XJrOnp_QlT|m~j@` zU<+i3$HxQjT~_jd*CPmH_lEB8b(9kI3qv}P)JV7KgXK`asLrU(i>ipvNt4N=^{XoD zG6Dr37$$`v^)pBFGj0v9(2Qp8Xkc>M+b~cAI|#s?jvGJ;`jgX|yDVd+hGZty;3T2t ztWfuTZT3jSt(w9Vy?&Vg%w`j1gtmsUnh}#<`jlA{!Q-u24aEl@%Ql3t#U=3AQjF~Z z{w9OmRoZlX39}V44{5-slbYRDKTou)yGMz%lCbrCn9%WrXDf(j1$0!8AzkBr3ynJW z7lYCqRJhZ36cT*iN$hA%l0AkXM56nIx+=#A!gK1hknyZoF5ZA6>MXO}N^~A0R8VM~UfyGqE$J5R&dV?TX9^{BB4 z1rrI^Kyej{+%AxDP*gao%Rp5n+oxkhU>)#)ENXyWX3i8tdK0!Gp3mBFwJ|a-hI29? zKkqi&{m|+w?@epLsPts#Ja)|NeYUiJ&9yJ4#0eUsMc!0)lC>4ZD1UfD;UQt3;?G&w zNQMfW9E;$tQQQ^1rX4_k$*hX9>8Mb?Gh^;ne;!=Ouo|KCamt0o^CaJM?7Iir=5zR| zEQbcZ-Wa9%!QPJKfsnrC7&>DSdPVBiJG?CpWvmvDusV*r-OYM@Ff z<6h667^Ep6GGBdaOSBM-Uno0~PY`IDdMKNEeB&;n1v|4+)Y6hol74(Ebio4VA$poK z2uygZN!^okKU_i0HjKXE6?|ruauOnac(pRPMO*2 zt~B+0&~w#LM`)teV4w6$nT|6zF%u;6YE@J<*97vqFDN>qFD+U!hR0`V@`46<3?amx zla2)E&)bMvJbjX!B_KglJ=rg0RxmkVbyoOys0N~Gzfa??KA#BTtNQ41gQ6pK2Wn9Q zF2@X(CV)-{Nooqdtvlq_83HEfTSI>8N6RR?aTqEO{HBQ0N91Ti z4t^W7*VYe>%_8nVc)>Ft1f&!+9JVky4PgQjhLy60sxe*-6P}&YZKLh$BpD*@U+xjjY&3k^G`XWf=XKpCZ$Hb5z3%!NmfAcN`6&hee(7Zbp1y75QX zO{>?*kVbe;#VKlO}x1cl+Mv|SWpBsg`%f|svh*yPb=(I1t zfOi=3sKew!oRGbxSAf%O>FI!1k%v`_cLJSW8Q{Rvk=(5b_Sj$Ff zO=zO$i!%r#eltHD7&p8Q@Uj5*cH|zm5xx&u3^#4rc*98HM)&U8JW^L* z4C*6CsqRyZ7taQX-jBJFq)D8KOjr)KUm8J08BQCNb;8vnF>JHy{l_fu$Vw}VLMMB75)}TL}+aaDIVR6FIuz62VwGII2LF^6N z51OSFJ`SOmruKnG4LNbGDm%qk=5ffL8Wbl&;`-u~^~*g>h;n=fj5Tn<0Bix;>r!<| zK6RUH^KjnF=C#!$*-bwWIwJs`$&=5SCP)eL?}X1ot% z5^cRx;ABi%541v6%9Zlqgtj-km-)Cr`V;arICw^}a;4(9khV=*8(yG37OqJ>j`IO9 zwJ56S!{x44m|a6cGT&CldfF%uTgKFiCn{++(?X!vEQ@JGaN*=2k5|}dr)l-FftS;1 zri~aUDEnS&g;#_ww%6B~$dEzKIrVDz5d($}T(S{0{d>Z73gnjyM`?&dXZjXK!Ez%% z3&^_USg2WRwAs%B2$@n+7ZOj{tlRlL2SA(Y`p%D}n>hI0Tau#bARWs++3x<MFTO?Mn9HiXKFI5CtabyMy(4<_xdJ`y$O>Wg3dXkD@uq(bZN zm6q`=?jV6E!4r+vI48PhfifVtJ`;RBQLbg6)hzgo8ChRhrh&eoVi`t;iAyzOAkBjC zMR)NhbY%PqG@}G99Iy3b7VL4Nb(+mh{PK4#WZVyV1`wkM8m%v|(RH~bM5H7w%pFP* zCqP@Wh~y@<GP= zFA>83bu*6hU(<#EcfF&3Q8D@_eWZYHQYHcp&flGnfA1g#PTGF#`b;9WyH+^7^;%>|eVdtn3`Wdr1FmnLE=SjUpYkT4$g7uw4Y+r`mw;GSfGf z0B%Dz{X`F1u9ipLCAcgx`{cy3X>FYM8!l*ECKFs95W{Mz`A(0+Gu0Z zQK@KcvY}PcC@-`NC!%q39~;7RU4HA1PmItEG>x^Tbm4Zc)%qaGQR!ZO$Gj9otF_~I z_@KjLxS@={={rR|KGfWEw=v=+lCP3UF!2Rmgvr8p=ppk#y6<~va&*WXSf!TSgKyDZ zhZc~^=qHwl#s@aGb!F1rA8xA;I;~gf7u@JV?m)*F-~FuO7Xb5)Db-b2siv6{t-9%X^(2 zC8ZSFEdP{7Fm|!sQdoL$k@sQR+6(woy-}@YG_IZ0yWf zr)YDqtT97{Os_zP93GPJtx3az3l=XT+tVh2Og>tCpz ztx_9PwI|J$72oZNXYMM4Dv!%Be>P!Sk3VHW-gY1HCU4`d(IE5R_e+14TY+222a@nN zi65BQ<}jGDU1~+ZH3bW*kVj;e>?E|GfG`Bzfrd(kYde@~Fk!8xz1jE)>v$0W{`ppW z9pXXu#JV(a(Eo=QJKUZ>S5&O2Q3!<`5)UwfCnwRWb=o)ccJ5pQk(Ra^Ht}8mNf1KG zCA)GDFlb7VN^Q0moFFsNkh75LVS`3y!>PLYZiHlY9;}$ilZTc@DnWQ2*$jlW#N=S< zEF8{r^VtJ#=3gCH!m+wxHY)H0)zZPnxS+d5xUIW6d-m2|Y7KuZ%1Vl5AmaoJ1m1?mU#flMB?C_iU=noGOSw%V(hB8kD&ME zIXBOYWVn~TALS+%xx3W!BGPB}zIg|6To3?3V2XoYVG?a1SUL+^huV5Vr=b&pKCI|x z)5nO*Ix3ka02YCKG>^hsH)t+bdyTP-qzh&n6{7r)N{T3f$;B|#W+JM!hkzTsxFuFt zkH*&_?;LF5`-XGPJ(f=d>WV^ArN-ooA>u^`2$Oe#EH3SLkft`eNntN3V~N7s)NDgX zm0hlY)N9}mq^QqUC6RyKz|_%ebM5$!ez}$opeLgMJ)QbuR%GfK^Atbdee_6@v~(D@ z?uNNmYq|^}q_S|C0?F6SumcOz4x?6XulvQ{PS)!-lZU#0V>{HWiNem--tOw^JiSL4 zJsLZ5JhlpH^Re^9sr!$7xC<_1qs(@*-Xd+$8hoEa3H#8bgCE4(wf$uvO)b{TTtRpt z7eU3!_!DbBbH}sNeWV$-UwG0-#6^f|jT8@R(`RE;56Ts)oYmUmC_>oGm>o4!Ck&3L zqs-T`D+lih_Cy{vO>V$5<0jhu_6n3Eo5UBpOVU0TOb{Cp!ByL8n5MH?x?h-YK8Z9J z5>2%EeI+YRH#4Tg6CmLmARdzT|LBO``~_{j=wY!$A}MOEqjp^JspSssRGt6%*@OdGg!=wfBEavGu<=YGv{3W7ustnwX-rZcP&NL8xc=5EkKUQ zn;*=Lu%_7#PlmX~H?ZeLv~Sss5$qVv?O^?C*bB}a9@3y z_t(?1eMr&l#Uoyjv~>VyUOa9&um`PRg7_HO#ZMW-$sbr=a6@E?sZ2rSx!=DAZH5HY z3luTlVMWogUy_o~7cK-7NEWmSBn$~XJ~c79K7j3{j5Q?($kFYZsEbfElIb2`q}YYU zywi`c$_J77x4d%GSGT;fbV%LEV-AFAo9{hk#boY_s`JEM^Gq>&^6TF6SnJ7y&a>`; z=O*(0g<^G5tF)B>GF(QTx#sAo}lM&B8go3nS#m@(pc?pvk zVNd%~ZCH(g);+F6l#l)H&`!pL4ZKF=-00BLG_iO$a{Ru=VvH8Qzyin(4YzLOAq^PP zC~xAt2#fhvSZ4qy10ovBBD@yS&dV_@dMOP3FkayJ?33L;h1Veaap-2hMR?TxKE1}# z{duc?`f%>|W%uECv%OyZam~uzlFf@X`#W3aM~1B5WO29IJV1T=FT(;I|6(-O>jW_G z(~$k0hID=bw2PU04)Mp{*XjrUf zt|@6$1~PIfQMSgFwGqRuCuTxO*L28Otp=cLQtXew#Ul(Tq+3==Fq0J$oiS_1Ad?zX z72Wmf!in;Q)-kGDHo6wJPyEQ6VR1A>u!Ddg?In=Vv8B$BZXseVRDkdaQC@4MkVxa^ zkL1el>d*29l}@a~mQOj+1An)MeyN}gC5GqO_I+iBnDB{e!lITVIVbq+jiZy>_F~J=?N$Da|3WINQrn@;1F^EI zrK4OZI0G~uTWrbW<~dbAoO4|)QFLpV#YQto~3Ztz`RStuKjN!>QPN3`pm=>|-y`GJd^^LhgA(NH!BR|-*Cn@P(3^I? zYS4`MjgP`m+harPmz7r%8aSLK>i_YpJFPRU-O$g%-7*mGFXJ<<|q8B ztcNu#c)*E~OOpx2@=>S4T>9eg$cqILU%A=p2>TkBSKuNd+Vp1$?}155?Bh_8oUBSffm8tm!p;OXPD1p&rKZP%D9z?r%4GwjwCT$!a zP|-!vS5+HU{N7Vl<_Sa%jjOL(Z<@yCkIYUngQ+ehls3hEY)0JC&|5;*hWVTcy+awL zsIXOPRY0X0A$D<-7x5C3{9M4q7jqh89n(I;lghDem7Dt>VlJE6x}U^8I8nZgi^{t( zPmfPmU=xFUUCBN#Ob2bZWyW4?Be*L3g}>kgnMM9?V7wo5(ql${^Bx(E&Anw`wGkrjnkbC|H*)XFWV!1=MVv z9!C5*k|`BVrDyfafRFeqfFJHMh`l)x!tlM&$D9w z>aKh0L9S*ri1m)x`vmD^qf&Py?t+*EN2}4f*_0vEtkZP+61~DbsONN{l35Rngcz&2 z>p-@LNqbMPBgdO^VPoswq-X_sLZl4XMOA_F6rzAvi^HUrl6}>=G{ct+(mBe`rV+HV zy9U1s$A)%JyTrNc8BriiF>rEwCJ z6`T%I+;U~}r5J4_fqamc-Js#F(xJI;>e%;Ws9_lOShS<88?&aR^#~txwWGtpy3|cO z5wZxJ>Qc&Zb%)L3PW*244+4uU& znxX;;h)COnn?-9?w7ElLqQ$c~@4#xIi=E|yOP4m90=_4|~K>ZTQ$?-L59^1);&(JeJSgw46)+*{949{}G{v`YAeW?6rT`)o+np zMx`2j`#6Eb&4tG$=Gm$pC2s&@gu}w%yJ)Eg$xd_i4GZIAg36K=(UPWI*{=7TeB! z>Ztkayr4Blbp;`Oa%ba~4rwz|zZw*-cG-TpOuk&Ep~99e*vkf8_;3dnPGMo62?GLl!pC~+V>CsgQL^tCC3nx(Vyo)Wc?pAy!kaLVbI`s0e zZ=ixt1V0X?#8Ihoz2oxrevt9H^qIspVOfP9rF2v;I7t3f>OZKnbhJwWi|n9xlW^L< z6ow~!SBT^)U=i-vW%mD4JNHhDe0(pAqkLh1+~O_`4Vo&L?l`?$D7&>+39_2-$v|o* zp>7psS1RkyQPX8*-D%N&};D49r4XdC-wE|DZ;dl$I$Tu3#H;cE70nqY7}zl4a|9@o5fVrN~j z7+eaIK^pwUox3CwU;J>jGB7`qrju2MwNxMuu8PX{5?x%?b7XE~#RV0(744Dy=K#amgP1Ka^!I*qO;^^pwmSLI%ZT%WMEVx?O*Y&Ow1LfMm zXtx+tr^`5}bpA?3l^$LQ$X~yoXoB>;-ZG0Orn;S4mKP?+H0!<>2k)HD1!o#`i*6HS470HZ2mSGFl;8CNn*5or`z3M>fa%VS3nDWYu)BcS$r z*!|)rqg{RSi;R;>CUy3hY^bT$RYxeI8lqG_8z&eCqj_WctPJu;HD@!z{Wm;scj9w1 zMcrGKgTC+OZ#l3}jMSI?GY$K{IM1R~N=6}no#?vAT9F0de$-jWV>QT|o-o(^T!4e0 zs`a~8p-`90mG-#h)Cr7L1)FKA^vAN221>Ws`$=%2lUZDjqwW3k8&MXjG%jB)T1lIv zM4g{8?t`%&oY5@PcB29HZSgsr?n5(~6}ol>`_G~B&|P`W2~yQmIxF9!!KuEpkAo6*t?P(NPhG+B1Q-er0s0YSP5mL@yz1>bL>F;={NkO&7w9b&1efRMOz|!sikN4*?r`=AIv}{Vd=v{(di2W; zaR@|P>t3htHB`2_83V=S>1`m)J?w}M9S6i0PsfUMD3AxeEIh}T9)meIZ`-!6H>v8L z`x*A%orrP}C7>}o#hN0+>@<2%qLAKhI+0=P>tjQ0`9^9%--Soxeer8_{^EpzZ|0a(DB;}A6jBpqbyhUML=gzrCcWPZO}ZKaqrQ#;`!#|KmT654t8}+%hZv;EBsf>xA89XijU$dR&>Yv$Df~TcXK~y!DHTr{PJhPGnQ%Ae9Uh7 zun83iwo*fAS;x`8N!yd}eg(9w@sa3+`Ec)1a7gF#+Yx!nVSc{u13!MU+ofKw{=zmV z&5)^hboSVOHa9A&q}VUu?vZFag;vD%O#SRwIC^h>(#PUdVRw>+eExes<-M9h@m>@Y zIhH@wt=h#>5V9^qONSs3y{V>w{{x5C|7i#p0Z?G;RE)=v3%VAI#2xzs=eCWM^O3 zi|R)z`d-pr&r%g@aYg%*Tax29N_2X;Us|vgO~rSsuqN30jSgELRQ=Anezb7{llGGv z?Ark{O`>DY0umhwt{i{(28i!}Lt?1dtJ+xtZZ{=lVq^OYub}i#S*U;A_E-9+Hek-5%vdE|!oO_( zYw&MFe@_qncLx34Y+*@}Kdb+-o|)l4cLf+$u@{#Vku`Mq50e>0)Crjw85tP>e^mBx zb}_Y;v@^2@nDDn=g@0b=&z77l9bD|40K10&(Q*+Dy9Hr1>h|I zgsJ}N9l^!;kEyu-KK#PU!TR5@6WY#eO(?$8G9RG$MJxytU)+yfxDzwI<|J2H9oIsO z5tG1HDlH|+%37W!e;-Udhnu?rD`A4NS_d4<;Di&m!Wz_U(Z}8XR#m3G_2}<^_EO zhpk5f)NiW&Usuq5r0<(AbNHTp`ilL2juT|_dBEGh0RYj;5|EmG#lCE4{W)H|N!0up|6#B;X>60*o5N-yHsc$M* zA7-v5v<*CHavb;L$|x#@cHjF74EaRlC@w!jcPK{^+2hT+G&2kYzx~Th`1%pj806&L zh4XDiR~{%Pv~V8e4kkLxT9LvdO} z2TSHS%Lkg5#!c#x%iDdja5{*~nhV8epYQIND7!97yKI9*@JUZvKyU?K9VguQ?kWe^SQ6DvcpZ?0oAF5MD{@QtkK z&a)1ElS5g;{lX(TZ4K$hFUGgp)?y0mG+yuG(%;E8Fdgxma(TSoQsmO19%TeK3*5}9 z(2T+Nc|Vb@s>%AngLhJGw)B^e;0@&MP!y%QbP*4u@qAk3Hm#p#8PttJ z$ABCUa%8)JuTmi)q}d}ZD&lRmMuQ1@371=;PGK367$qMdO(k}uJWkS#CW@%iNAgzt zlJrwCRMIK-UyAmHc)@obe@qC=#*uBb6Ojb&AJbsB4%M#1(rUwLize!X*Y4|);@%GH zwIUK6GT=*JOuj`EKBk0gWY-?xkQEsjkiT2pe6KVk6P&rp@D+sSB`LDFYPOEDPeKct zMYnK~PU3vV?se3h%Q6YMp3)iILgr#il2-zab8_!8dcu`*3|dXt;~;xkQW<)U${8)% z=({9s&$$*;=&=Tgvcn>g{3)LQ=<;s(lv;w z!nMgfEE&S4cqq{}UQRp{GQ*GCI{Yrs^Vv^owzznmj3`Vey~}+Y+Yy|f?KgHxgJwVW zfh>eL`k>&k7zLd+l+f0cpa`ZWu}o^$b7n@eL+yxUnBg<6lfIKAj^XOLjRx!U=n(OJ zrbdNC`3OAt+T{CeOup?0)Y7QbQf_&4$6&V(a|-kY1*myXn8OdSrh6`DhM~9S>GWY? zLWECJxZ>%|Ol;g<(KP6H>RAfbL0=hYxx|Tk`k$36DC+?T(q9freQvNXoHhjv6u0`! zFgX->;%SZ$TGkFM5x69cvx9km0BC;xi0h)b=vr3jka>1Kz`q{$oZKe9OG?>IPv9yR z9CbUUOM4MD;c8eYK}qD#mLh>D;cL*eIfZ^RYb|oMu8;F9V96fD@YWQyjI~~n4(}N8 zzw~-j3ez-9%NLR(Tci|6Ne^db$!hs(0?Q+cp|w2ryVS{9a||J7gi79;gv0HI4kVit zgZ;;$yWpAOUVM6jGB@xv#2k~>V6+NPR4lq)LAIi}Dp3lTvbZ)p9_jIjs zTpco)lB!jc6%=&uKH_|%w#XJYXMd3*EC>OU8jHCJ37@jZ7+x>sb{YRilCg1~s{vQ0 zFg~1`sc(=3BUeoa&%}=}fjldKZcFXD=x{)HLdneCMACkua_N;HS%D2|Y3B3NH;eEz z4zpHjm3$TZKB>b6jSsr`hs0>vXHB)L0sfvVzqJFQuHemFRKv;54H2lU^xb#lb!M6*pi^7DknrZ(z^MXf|VX^7`kUL=vo(SlK}A{CI2 z3}QzlvL-XuQLN;i%S5A_P?M}f66h*Uu2k)UmWHdwUf|=8!d#H)Q*_ z6_%I{k2-%PoIq$~;Kx|a{PQn*C&LYXB)>tQoO5WvK$=sqpPf5m2TzGa-c1qK%vjd- z%<|YS+xR3iIq-4=KA;1uv_dr?59k-K#HK=i9Ns&^BlY5LrFXrir?WBz~Qx~o(Qq*g>i`=SWW&+V}JLMJyn zO4|eGx2%GLx#aONFV_Zn@xUi-U}R0*obQpIO3kp|Ai;=3aAs2=XOgRkiEVlpx1Y zrx{!vyx=!*+hU#bN2r|E)NRIFndfu85TQWH#N4Vj9i8KT!K>illvmww=yn0BG9~9( zPS()y&?-rc?5~wJ%}+lm$M|RG;s!VGxiKn=K^e5HtG&pyoiApR#Pue84EKD(_@Y&p z5OyvhuY-X%!gn;j+X7Nlo#|lnwvuec3>`IkZ%70wuA=x`DD(D6CW2SzIh|Pf)1|05 zyomI_@ce363sa#{G;^)VmfzX1+Q13M;9N*2`yP%qi)<3=9&us7<8Q{fVwsAAxl^5I zh-!m&l-Lsl6o_2VCQ5|~;f+H9r-ER1aD84G3f8+&Sev}PH*VP*pHQsPTc^D!m%>oO>l5vK%?Q|CA-FGS}VQEnJ_bLT5OZ>Y#-$Io*^ z8k(J7{=MrJaG6@GBOnq%R2waLXsu0(*h z+5GFZ3)(E2+7napc-1P_W({jqs~cO~4AGBZG~zGme|p}((h$AKz`fHEb#pUbDST=<*b#F7W+Q~G8r zv1PxO&5i?wA|=@Va8s`WLTxj8XdQ5tes2Gw@_LbP@YCG43SF;iM0qb;+hlPiPbbE-S}sJI(Tdnoik3z9(64p-(oB zt2rUZ@ufX0m0+nbFL{^ZjG+HiByoARWUhe$_s30f|K_>y%Z6G=t=YBu?z6VH#iPAk zypPWUKHA6?g?xkJEcY@N^V?%Ir`B?`PBhV(nGk_VtyUA{x{9-F7PhwSUqH)xD4az`D8;KH(~Wkv&Bz)a0|g-i+mXnO3d00FK6Tbc!J z-K>>0XKh8~lbR+%6_uNBOXj~85PbaNLRysVmT|FDCp{wNtPwh+hKFh2Z@Z9r)mWn!Q|owC-)$KZ|GA zG@w`Le?;A6R;pe!PpUDkpFm7%w%%ORB8V4I`iOntuJL1x>-7LnuaY(y|smsjf!Rw2KE>ZI;i-#Lz95mPCk2HHB2s3o<^Jn;PY_m8C zWSeXk22s?%m#i`z?S8v!Xy|d&S!*ODukA7P`=5Nls1C&iO^N=j_w97cbTTrqUa*R|Xq*U!T%tTy4Hu5?Q9hD2oV71o5cOR(NdT81<^uugf= zD|2*{5y##5g~9$S%smF_j1|gsRX-y!8kDX^OIbUK;^2pv`i7MGS5~E>g>uW8Jm?7U zL)?Ch5lZF~_IE4|sanKi{~{tt2qSfsq_?qR zBV^pn#rP&VZx^`6ykFEU#5jDOrgg!Ep=Xyr5#d^5Y5t|y%Jo+v_}?YHziX8;mUh+v zS60m|5rnqyi2=jW_FmFX|Qqbk6%r6%;gfv9z~iP-ak7 zlKk^SY2o7H;LOdy;O6E=?`&vFZ|`KzVCdok5M>#hU0nYtwREQ609R)QD#AZG(f_GA zaxwm6z4u?Qt|4z^1+eWu1Yt3ICtHTUiF$wJIW8`GE&#F@07YhJ{lfwNdlEGxfLOrD z^hY0MBxC}V=(GRtY1B+??0?n3|7RMtt%kH6I2GKw_!!D6`zbk$LpU`9w3~2xk)^Z14!=0f(>mz#dUUXC7!pGnTaN2qe$Mcih4&7-R8 zMaL>^2p*XPQb44PRB~Oc!;mc8DW#cH7ED^5(&ab*8H`2qO;TM?3b7tLRaX;S!9YVo z`#{P@wO7f~@ZmtLB3%Gt>ZQoc1e$QS>q&N>Bi`~0GV%_$m-&N^Jnjw-Nev@nfo8muGDJZUhjz7E%q zq@6QK6^2jqxWdjND2@a{c%#7zm4YXCWs^#!uh`b=^r~}T3X*xOwGl|zBPTeytcLA3 zb(|}%euzn;_h)Kd)CHfjvv>{RbwM8dr#ySpxUc0Xr1;P_w?N-#ydd`;pYF zShFPE{x(Hp-xB1umx1fA;eS?b+oikJA7Z^Y(4P7ZnX;42V|9AY+}vddnR9&m8FYpV zbg?cW$%4nX3UDM$QG$+n7N9{PM9IOMSsnklN zVg{TOsgj*wZ2vchlN|?zV@bueZ^o}D zr$$2ovZ~Ep1|n$I2CyUCYA#!O@CTSr2JaFtHd;UN*KWlca85+mH2 zb!6e`!_y8yeCc!bW&1_(dt!c302*^xC#6nL$QvwiiN1URVw<%yc*>_+pf2p?VT`MDAS zGN#%v=oXYyBt#Af(I8Z!zL7t`Lr;?K#sVL{^19J6;j~9>kC=nrYyVj{ar+WH?i-CT zlexh^+l)I~}qMalR4HnDx@)ZE1p)Z!& zh!U^n_W;YMfbzX4q$1cR)3#9Qrx)bgteM}U)G!v!s}atuh<%7H0XwJmmcFQMm@=lJ zAPn^nH^jSKeFc)?X^!E&ifWVPKuUk7odt%R&motXFw?!{A+bJP&oWkLL<=be5Yn#o)DZYho@YP<=Af4$!8cA@b*=`sNFr)Ug;-Ox+f z0LOC;WA|#o^YRw|_!GiM4*+7hQ})EaXm3aSZ`|wuQtHGCpvC-YKFj{ctpd6w`TW&j$n0wQ1lU(fz8y!_wHU;;F3{S$T6(9|LXcv7Z6beR8c#y^4d z0YSe1*$h?y)dvvc{JR-kEPoN~|DViY`xi|X*qHt)iplk-5yO9+#{Uq+<6`E&qe=&L(dJ7 za5N*nmd&K1PLOa`cD_dbQ6@&dqByNcvwyRTm(Lc!kNLfHwzOAqu+be`gMV?eCx0wk zE0Jl`%K1^3!R~(IldboAaTMCi&3CA)%lDua|0C5Q$AdQbQ#^dS{O!KN@8dh2Ubm;) z{mbGtnfZ@)y`E~b8hyv7?BVSwhILAV_&7T_b-Nuee&6tAS@=g2j=u;pPXK^D>fu|a z?)&|H1#HXSmR>h^a6^uW9VG_kqkY7Um*1c-h@<6ICsq3QNRCSLRD4<`E)$hA` zMo%LaW?~(`r9Nl#Dj6P)jfk8KURtEe4Q#|^9)V#T2Okj*`-v)c{6_b2jA`NE>U4++ zgnsqM>FyDBFob=JV}F8v%XCJQo14Q?CYI2#M5_~ZMl|_3yj_VBF#+)iU6i)T*-Pq% zQUO57+)bZB*?kcW)HUsv+Z`dE9dJ8vi?>8+36Dn-5#UPKB&FyC;Nn5K5dO4*MZ%ye zUpMuZ9P4rJ4s9LnaTE4J1VpNBVFr7dJ9X_o;?-RNxOk8R@=U4_%yuRD4Kk8$m{&0ugL(j?BP2R1Sokl)`NcONjLYuk0COqMeZ9P~jyy@0{!l z7gys%8%iBR?=D5B&E++cSxgF*mmf={v&huF=E+ycYNZMu66CD_x-e>=>^=nBRT@u7 z9~i-)b5NLc?=SwbpDv$N_HzTbE6)k89kqK5ZpR?lug7QoT(>d&#gSjwM={0uyPUH% zgI~-LaXjLxzkelu_qUwHwup>`G<3TX+K9(_k=!3Ldtnemc0phjB4b1H)Hg_L5!_1? zMj7Vgx-RUK=Mss*;ahO`0Z)CYPm>8n(ro$h784GWJ)YZS1A{h;5`*Cm_-y=i-P!-V zj~af<0crm|`!3DNiIbDzs`xz11E@LRl?`rWj^T=rF8m`ORFe1o1Ub*SV`jFNoCjHe ziUgvIENk;d`0kthJ|dCwL3{OffBI=|SD?4fQ{VjCbLbVOr7~D}S#bb=<^_JIp$)N1 zOh()^%t9OpYvL<)g;le0jnZH*I>VF$&+$Y?4ze#d2=^hg3Kmn7hGE%Wa8A z^DZMs2KM4*g$$B*ze;Q%8ZV`i3r%`U_6?-PvGDvbG!e|4m=Wu2j1JtvzL*I8^C!^36W-K79MS!YECNIU zN(I5T=f-}V@g{ek>1TpLgzffXu^+H*^s`%B7lEWY6l&h9hhCMBG>iCi`JT`xN>AUh za7r&SduDltE@s-o{I==8z7sbJa>H!YGjyC_zC%eK zggMwzgeW5Gie<`%qL5f9p^CXY4!j(yJgUjTL~`7AOvms_VnDtu)+~j;XB9vsQ4;kd zZd=vN!eT~lt$_gfq6FB3bJ!p|!;mg4?+D~sF^vZG-1(>x%$6p$GI!t`+`kcyEa>1^ zrGFVbxew<1mV3{8yhSl=a-SPb@R~7Ly&;TqD2W=RcE0Hb`hh1BgFucsUAO;e{$ zTg5?59dayRcG6ouqS4vroP?Z;_(ZP)0^Z$v${R>Mwr#{Ry@EEGImNSsPTMDl;(TvN zytuk3sPLJs77Vua#Y)RUy9&w=C9hyoMwd{w!GbmVq)K=bD3QA~JK_i_L;#!u0BkdLf&@AhLo98_5R zg96(U6r^HKhA8n2xTY9=wQ>B40#jezLC0HqC)+fp#sN>9+A3A2xrW#p3B(}lXdaT& zNExlD23Ocu7My?msH^AEP*+dE45pQYVYfj;ZQ$GLpyD>Kijb5v92k2^i8m)YG%CMv z$D-hQDDP&(AvZz&-TEdJKh!X*d5_lNkb^3OP^T-awG7{ByYC_%+uT){nm4P*Qt_0K9xX9r-K+fUR32B;{a-{3o%7{UO)!1 zok+_~z?6x$kLg>%+(*Z4RiV+=Os_g(*4VY3*352j8DiA%%~zq~*U4tA4abg{cTQ1CDe(MOs2qGoqP>)KroP`= ziXvNM-SiM(qqVD(WhM1t=m;hhY-hCZ>92lUWh`cUj|GwlOwaT zDkRz2AewQg>}nU1hRzoYed1$r|4+NwZiuvEnC`mYIPM@+!Qt(V{O7QP>64?CP~kWh zpMcMHcMc%NX>`^b?;jY$o&1mblqaKM8$G)7VW=8kF;P=^{t9a152x(($Hm9`OpE+s8Vk5z;evAwZ1)x5O))dU8%lDG)@L?NqB~B}6ubRl&vx1g0R;{`A&I z*Lapr#jpt9?Gxow7}MJ0hjQBZozUXuFO36ip-L|~zKBIHDSzawM{CC0QD)FVNH$*-W8zm>FJRYwEg_m^XzDXNtzWPnJL`8K`bgMgmiq%AX`#z#g zl3*v8*QTOei`wJ0SAdl;(&~#8?l+tV_68UuJg?ISR7o(;#P?(oMt{NAtITpzIJngs zQn=u@3lx#L1R@Xtm^v$(`H&Y#R(M2D2&?sGAVw;CS5|#iFlY^#N$*lg$L27>zS*vt zS|AQ&%NNjTd){Xf0lNjyxf_lUaaN?ZjEX~0x?PL=h>pqZIx>))G*>*>8*PuWayc7+ zR_eX+L+W;7j;8gr(PQpMZBFGv9L5Ej(GP(9mpsOOWfV2EvP3I%cz=T=7^w}Lp|X| z&VW7g=sKd!-dzFo97=pg+rC$hf$=)2z@CW>>4g`cTeXq}A#yB=K%~S1sD~Hdh+1Dl&eU6ROEti^D?8bk+aXHnjuT znHNXAE1k4)3O!}&VYzUovPCmia2E!1-5+}VCBqZK8nI=>UaBy$EGr%3ya5j3=Oe7i z9L}6R4D2zn^%j@v{{DMeg`vKNp8uNJxyts?j1ZNFoDCllH&W!-^nG7{u}r<5orE$9 zYn<+s5&iUwf#&JW8)u)|xFNhe6NrcyygZ$o@e>bdUIkaL0&uTF`OdyeTLPv%&|!hZsj5Z3KzXsN%GuXp=v2t6caQKIoJ6(57fj^!HMTPfW#;^2}j#KGb@1tGx&dr5=LDTkv!F_}!nrl3gdvgWt1QLz254G!tX? z1SFOsv!@*|C__$xjheb#ID3MrnLD33O4Hk6;~FaQg7Ga5u&?o)@rkEtynoaG#6xWm zShM1r{199YRI8KpHx7VYPP)Ho9W-7|pL=(Y!tKd@f6?4w0yxM$CJ3RRC1BUYq_qlJ zy&$a|Zvdl9q_o6(FeY^ltw7zQu>0Xrj7m$lJ)JN6XNW3jM>x;NWW8{V&l zhrClwBQ@7>bN%9s?IOUSEvf%9QWckF4U&# z5HM$g$XRRqUKSCp5Tmlp*TGC^FTlgvBM0UN-huQnqu2)LsMmb;F%bY+7gQLaK_sOq z*$Q7bYCG3=Sg5Aq5d?%M%MPm+q3U^;AWUU@;B{8M+3E#G#t&gO#s*D`329f;t@p6} z)ZFl-ujDG>`jztNLatBw)76e`0~7h+mnZwy8ZHU+Pi#}dg%FK)TSjCdTQhI)tR{Ow zpa(4n{9(YF=WMw~&Y-A>!;tW39O~>LUsLS7v@HlYbXXjelo!-8*PE*rYz?Nm+Hc8X zBG2HG8tLL+3_E!kFRz@{Xt5C5OQ@wO*P{JBCE_4?$=zd+W+B;t>d)}YWi=P1gu9sD zPMF11M~8Mzy-)bB%}fp#h2T%so}=gAPhlnt47zss6pS)qWmdB}Tp_!WpQd0k*Hqk? z!5kieRYJ{Aw>M-Bq%G);{}oGmp86n8j~Yvd9)`k z{i7N0#_(pAdPETGD0{=%1FJP7JhE!ix!_{^ySC=#3Xi({=Er8MCpV_wRITow#45fz zu+KgXzpAc)%}r$}cU;w3?Ixmcxh|k1$wdVsjy*&8t zZ6(&olUuhWVfThdm&@lV|ER68R_iNj6T(QQtdt!`$sOnmhxVP!(z9+v*ys`}a9_>R;Am+S#~Nd1z%2#h&PpV&U7-yrolVu^^oNw4O8YZ1BIeoq~ipO?;&(IjoD*(6jDfmVeruKeDJx00fat6cS@ zA(uv91Rt#u@H%4qk%`1qj0{o7-TusH;=VJQDdWU~u1``u2JpirG1Rz!cgkvVQzuLkA`hNaT!tp;dzX37Xe<2+I zO?mx$BUmmbfVljBqu8>u{B?@|8LkB=w)SgcC?EKQpN9NWp~2*Ct=?Q{;3&hk&JwHb ztEsy)cc65$7}}ajlH8WQb3UzG?kx4BWSZ@)bnwc#;hXvC8(B-{W@_d&V{I*?W{ppW znf2gEOP!XJ)jqP*fhBCAZUK zX)dbEVurp*I@;2@;3#(K0Cg7xf9ft0D~HShbr%c;l1(PY zQs2u;vN9)1FY*w)&|;Dm&eU4`cInNU=N%H{mDS26w;QH+$-HfGX&l*JT@y&7M3j$@ zYwAiYkBZ~~br<*hA@M&RNTO13_d%|}h)#ly3N4IMuicbFyB^sVWJBj7pD>d`9aC8eI=SsDC)?7d}h9BY;|Y%w!4S!Q~3v55dMI40Wz4kKuJlu$wsT%mg`{KNSr7l%mUH;}zSNPJ_t zd?7%&kOzCe1L7-}T^R}{RDOk+d|g2Pt3lK;VNppr3NX{2S*Qjwx4Y-a>Wwj(fuR^a{JbDvPPkkIvhpiTeX`nU1h_P#Y)5zPpsLUNb=@7(T;X!s zT{95cXYjp*wCG-pUWDOqeVh$nZIDBF#S_b4%0by+12m?I)6rdmZ-$K_B;u@^$`Yy|TC?K}u{L|7 zkUWJ_80s^%D^X;=Wk5RTMq!(xesxspyjnnA8^>|$2}4juoa1tvKzjEsK6aG4tTsy> z{O}=sJTa~wD|V;8@|ZcQL>k|9(4?01cv0*ykk8n%p^jqhZu%X#;=UJ`U#x>~Y)V*M z(&3itN7-J2$F`?A@tO2C{XKt+ZQ&r1sUF063cHUwINH=7W?1EIxl41wQOL71?zntV zT394w9MeZ zGv$nBb*x;%oeq@O)(}JSL;i!VZia7$QKfN)5F!>KS^d4GQ|;6=OaTJ&g0GV6$a0nX zu7T0r?k@Gc9_wb0bP1iGbG(R3b(BU2T@zdFOXw#Q)9zekKO`h%P8AhT2KZ{kvqL0| zjs@z!L31%(to*EbaaJDcs=uUs&`7O#bgJ9jI7@ zi=NeX->}#z)R>^I(R^soM04W=UUv)6MySd$Q=L363A4DBZb884p5uB9XoOsb$+P|O z^>DCgws%67X+19e(+$=nHQqh~`6huVaos2+fO#rq^qgEZ1eBn6KR!U7_?-YC=ba$& zTB!H7tEl*raECIC z_PXtYVS~_-l={g$fT~jqxM=wLNDYx>+#juG1+AjI``B0!8^N7zFS_QLano3pf}V#E z42Rg}$Et!8;*&$105}{bZ-LyT7!&YFvqLK^o$OLeu&g;BVn*bsVuTN}n67xRX3&&z zd1W61W5Z;3{oR-eNGz8=qFyL1D>8mhH2$I|P#g1ZBgTBIf^i+4hK8LP^KH#6GQ{#& z$G`$EX%e)}J49uX z`>q91_-rUNKT0fPB=x&hl(*^C8n0lO@Pe7WXl)-T-UXcdPTa)6@EnryharIr+9(zW z)MW}GeRUn7Gp5l6QX6O`8*Yn+ZA$$zNc%Q5T>0+gr(SmXwiWebrr<;%j z$_}CP)cXX6BMU9})i$rzSIa7^E)5T2fJ$SSi1EX}m4Aj`5}u}|OVLU45=ZhFU3b}yK02ajT|O1ZdV#3Eau~*e;i^)9yQm>0Pl-o*4MDVRsC?LV&$!$@k6Cpp z1R{!x3B5nC$u^RwK4j9&JJftVE^Zf|UtUZH{?HhL)>}~tU*tk&wct$Cj3q#Vn#y#@ z{BF90Go__1e?>mSyUQqDNbmZ!1;p59D0&q@6S< z-a3dYW&{B3xE*iOzEQmxBuxP0d!tB*WX^4*Lu*y0CW@u3@pr3)tBT5y8-NOuMMq`v zB@4lqnW!5@Fz@Ynmt2s>X`-$Vzy$-~PIN;fU>HTewu?NlE2LSXbn+XzaE9+;47>5G zRn3B1G05tn@v3Usl_`UL9i(ADma{zRgZ$JRdeAPYkAzFM?jXV%&>AH4{%VhSW(-BK z!dnL%_}Odm3w>Q^9&U>V0lXUft(u<^xD(h;--QOi5=RtZu}dt@WQ9j)T=309@}op_w$kNXYumXxO? zVo;w60+VGn*$-88+1lpG>M`^D?rK`3_S_& z1RLkCAaLY zZSBchi418tGCY*Ga3b?I7y-5Y^XI6deuGm&2$|z-HV{rZLC5jgTre6n^Fw6Uoj!C3 zQt{QDoJqz-3RH0wNlehRPfmgD&qK#9%}c!l7qkQUr!-j2k05)IXMUl-Iz z(OxqlQix2xmIw8C*u8WL#u1IEkpQk$EWWDtY@Ue7Ob5U^;^re82|(rB&}>2mY|t79rxme$YQ_%>t1UBm*gC&bqQ zE>qG<*QS&WHw1Q3Y2U1(FGt5MU0QU};HK8?WO->p`*P<&>nF+Glm?}wfH_KX<}0n+ z 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

        `A4TUEZQ9BXRS#h%8o%0ZB(dL&q*nD? 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

        R&3ZF>C8ulMOgs@E&b2P?^R+ovphi~ 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%0AeHZE#=4jL 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%0ArtNWUidAW zRGccv&FM*F(RS~p${9Yy>3=wNM~B>6TYjYQovoxI+U}{05p@1q9>~=sP5^W+MxWr4 zMlt0oNV`XXiZlUAZ^|H@%VHM~h9TL(kKxOJLCRJ3f^m1F9bAcJBJ5*)HdY`Mv3V(@lPEJN(VP9jXh_(!XQZlQ^6&#mlmz*@U$r|new;Dys@W~QfehoVl{sS{7sO_TOGn; zK&NVeE&-&cjx{r3P+g{Hz$m@5$nPqdQ=8CRHbk7bhF1^G)VtgvOqX-Nqt2gM-?!fZ z|N1LC#y;9Ul)T3FC^klYRQ%mzi^2DvgtUO9c;%fYt%nw9;ZQI zQTz~m%O)qFLdq^#TYTvYfGya2DPJH%F6fXolM@YaH4cB-hYhNSb5{v>9xgCQQz-asDo8R`fMEO|-hqLZ7z~#6oCg zE*Y2LDkj~5XiKG`xA5I*@kk{Yu6}Y<>}=@%&Yykygfmx}Myz`3TkDJQesW}Hg>$J`VMoKn%`&Rj#PSc^%o9P+iBT9&SY zA=ae~$sOH>v;r1VMWK(%c=bEk42c~qoE)EfmJv$3$Q(G%qKFKs*Q_KQqwkiHN+UZ~ z!oHNUSGSK%5c!$=ttZUBZB$gYpY6FffvaF?upVauBiL(0%N8k3l<%4!gF0;dtuhfR z1nva&@uE32It(V6(572U*@@Dx%trg1yr@fQl4a^dt3ng$VPyA^-(=Yf79=wwBmj>Z zKS`5iezpiT4*mmE7Ve0sCBcW09xb{V$Mg(R8=&sYU^R`w;x!7SXD!kAg3U~HI)=fy z^HnYWt!ePbA4i7sQ3|di8witHNFpjwF)j*&!_h{g7=wW0C8AvwV+*z@Ok3RH93qQq z4dE7W!jcP|*rJ_li#m80z|-_8u}uM>$6^4mIWS_8Rs_nee5U5JHA6aEe@zZEw1R(Z z$=2P=CWV18t(KQIe{_0{WX_ob+p-Vx8hfgDg`3~S{u(&=t8SXN5_jwJPNI^|@;<8> z<=N8?Yflvi2G;m`$df&Z93;vFQC9#W9=VAZ=&0x~%}O*-1{p#mAi zDb8FSlJ`1kz}8;1mf~aIT7}>1O4(vo;M}1sFJoN?B>22kcc_xnm2IXlD+%kQd;`t_ z&;gcgV!(OX;>xG(-S%FmQqCQp}gi>VDJ}gq>Yi_A-amK9h@goy`tkU=a6bk4* zR;PjR2Sx!v(2IagmaDn}t{t#%O+9BJH$;Jc0%YN#BskFB^X0h6UgH5xtf2uk4c4x> zkVlJnJlEKmFVPNHj$ghd{e}Fh`%{^2=wG|j9z_4W3O|W8GY-2%A7`a}Bp?Qr;DEq# zCWC|kM7!{RY#&KV;U({t*s*N;n~V|OP?Z%X>DHXOG^qOSpGAb zz@+gmZ;H0P%UM4n zn#LZCZ_1=7w@tfXDyf7OM{mMcG3Mo#3_}uf^BaOO5oIL$EtYeovt&J1u7cx^`+2w5 zyi$;KhIBoac7kCS@nXN~K!EmVBTxA(Lb5GNK zRaT#Hc5%a4s5&o94}zWcEm>B+1)hv3y@u#z&o$$W;o?9SlT(k3m|>W7f6HT8`U{eA zR!edUv#tk!ESjU`Dkh9ztffd<^rdL=WC;(cB^zI`Hx9dC7+-2xYfw}(k<(lJ8*SY1 zTDdo9_ffsC#NKG}GD;OTzAzE)*(zP!Jo$qId3 zOXmSJdqDz=9F%qZULQ_4RPqYZItR?nD9*~D^Nnb+Rnx%Ek^{;hH1)}2&3(dii}&aJ z*}C&x&)O;}dMJILEcapcNXpl;8}r=RX&+}%4`zw-O2J5e@dKOmji3?n#u}}Eqd>A) zJG)QsN~&(_wm=a#RZ*c1K2Y>PMlTKRW97Uh+jHP9s&U5*^+j7AvX9V?k6WvW-Gofu ztoKw>19fKvMaRymL%8#?{tfGGmB3=*!uFwQ zknfF$=B%GK#$LG2xxu+EkiF zzed3yV+8*;P4&#(cG`+k=_=lxs%{5)k4U^F(zCGd4Yw2HwgH5ML(5!RFk!Ft>v@2_ z!N1EXb?({B1$`}izywX;p;|sFihEQ_q~E$a!Qfy? zUl}BG+Vu+*OsK|?Qxha>mbV;(cT1J4TWltvPpq^`vNmuh$)+tJjei|amK%1v~P(o-rt4b6S4B zLZ8~SwN6RT9l%JiwM=YWg5pV+vp;vNxQ1!2@z7b<<1xpSfO2efT@)gXph6%w#$qEI zTbKMVt2@$0GiM57za=J}?(2aX>6ESO2#8eOxOH{q>7dgOo##x&#M5*yp%?l+Zy0NF zg1CB=Kd?MHrSwTY`POvA-e>aX*g~Q)0LiZaL%i~avF->q{C4ACYs_QG#fk^R#}mb> z$!GgJg?hra`#vVK1#?*A0jmsNgRrAb5KjR_0~9!E(Lf9ohGXA$Ga(uw!bUkDML?bO zOOZH93d>X#i05X-3<95Wc<7>XdK2K&Jq=N;WotZNB-%aVNytn9wl9_jZjHQZF<=+J zHGSG7%K_g?1>Gx6$^y2+fZ6`s!*>nC&UUkPSN-`@i8Hgeai)zWzK;dy%ArQQ|5A>S_EOp8j+ZO_0dj(2)@4-5ol}N|v#4ax zu*NbxUkmG^=r^To`iRel^o3TG>(QQN_){Hs{VYtptWH$!db1X&P42r+WY5M-5L$W* zR8P#BM9)5dPUqz!7z+>}TPkM5)5h-u3mspUvat0Ah`^$DFs_RSx6eisGnP0kqd+kp#WDR(T^IQ|5LCf z=R~nnbWX!LHy4!R5E?A;y1TdM_3j;E841gCoh{ZT#LojZGc<5fr612PJUe+PqL42* zU0p`Gynnzs^&p|$<$$o+k}I&2;3OodFhYL7gz1Pp$P(JI=(4YR{OBM%vJ!nfkgRIc z?VGJoc^ns$Kl^g_qb*?W)4l18*s4nmRth8ybUphau`t&AiBUXNc(=^>VS+VK`a9LE z1_Ib=2{}$3qcLA|K4FE>UnbzM4l0-cw(NxU6L-M{um!ZN%jT%a zIdZS{<0rWq)0N`#7wa8XYKm^EUZAME@|VFmfwB+eFN6C5$i{7~wF3A;-$z?elfhn2 zEJ#(VA1{Vn`sjvdbwuj^fWh=tJ4?ARO-z#T)o z(&el^E?|6L|NaEOFOM7?SUa}j}>82=$le;{npPbG4ZAH(yAsCRlaYm9+Nwm z-z|!*0!&0hrZUCf!7=Vj=|we{F5QZJJ=&=hzq+$}f@-#meh-JRTf77{++6=zUJ)>ae~iLekHVU!h#XnEsCt!YEpJe^)sHbJbO1;s~Cj~ z+N2@gdocg!t&`x*wM-{NuRSqkB-S&1;s?Vyf)b~w%?SExGc`k}e-}v0Q zBVAP+JBwk(NkUCu)8U7N#JIr8STUF#0mfB&Qsqq$AVbYy-xrAGssT@CAqDy=8=fzN zfJtCWtcP*-8Wv#xWn0%D@_6iD6JkJ>pk8+ft2XFZ?c!C{i}QwQ(I8?CtCaINmg4>s z{m>n<87$fWnHPx#t=fUNIo`8tJvaZdo}0PAmHDS6aKUjvD=QvYPShChj5R2Lf9vs3 zfeSk6ls`arVJraHz+lU&T%aa{HA#nQS3bH(r0Huu1vp15P$}CvKK>`nO{uDuHCg~W z2?Cq*^{_RKkJ<$C-{~9sszz_l=3gbZv&Sl@iz|?q-p6Bn863X z%NX&2x!iS1m*r_P%EZ6rs&*15)v~kk&+PT5V61TL09>8~MovTC%1|@F`4S&ekH&}| zfE9aDL{%Bbn3{}Z$ZnaObYaSAwO~EA$YLwQ9y1wJ;bx z(L&%%+%XK|jQCPpGc{@Y>P_bC^J!P&3!{`8jjI^VhY{uIw1N{PE?fcgMYnDS2o@$= z`A~&z2}UmXP#_?1){;dqdDLJ_Zmx}GWZr0YZKZr2M$!7@00--qV(YZ(s9XNw7ey6* z|Hz~RCbNS|+h*Z_u#&ASO-Pjks-VS^qqq&>XFKFg8q>{X2e>MLa8NtRbmllMW*^`; zqxU0iq>HLMrr%P$8tW9VgZ8MN#FEavzq=Mx-C)fi^1tZ%4)83CrEL(TNf81FB!GYf zkoNXMRjMAEfYL;g5PD6h5kl_}KtUlC<)Z~TpoWgr6p~06DMo5SP-$u+#RviZd*7hP z%sv0PzUzCp}S81HhR}%U?oBmKlZuQd@czb$RZ^3i$UfP z(Fa+^^2Y*y2l1sQdhs89xXADuJ1XY9-fc^#36Dp8-vS4l#uoygXOZC>c73>O$GWGb zul@GQvd;z&+39KF-vQ`1X#M7_-Y?^z)wRC=*t7q^)=~+9s>%KDOn6YO|5&r=2ElSU zaT5r*{Zh_>us@q0>l67^tN*J}yYm@ymiR*Dw@1wWu2`;T)2Du%vrO=J4(n6&3V@+r z3-}z%!{k2%4SsCFMx&r(m=Lu2I7I4e9GZhq&U>)!?)!^2)`FYy%85PY)>ZBF0{$@! zn?|q6StB0j|L*$DpnmQ@R@}RD{_*njNsdN{2z`EBT4eZ4*9+x4EIfDqaK}9vSF3(n z&S)j27u{^T$?UF^GO}JpAj?98R2c8UTcgUl8sSJ5Q7Sc}KR#{rk|hD<7QW`T_n#Hh zX3(ncj=CG1D_5p$S^C?VwX1iUQyUYLhB{uaw76vFGlPaS`2dGEN8yVdg`Ka+a8ubo zL8f!xz3)2qX~WxHe>?z1*~IjfMo4T~MBV(DYewc;Qz(Hw)ocf`-;QYVilgPAS-(s- zieUB2ix!``RAj&ndolkG!&6Qb8E#+DU`+qUy?*gjdy9}&Ra1TqA8>EZ`D-U< z9)$_=#nlZzg#Xkb=E#lc7tV&h-hPg6&$t_1aYx9739}v_FIM?X{vE-kPfVM&?VTr+ zuPy&`mH+6z4NlDY(9*C`=;Sd8(|hFmAl6epsc(;B?SkK~w_xM8;@#p#^{7%ewDs1R zV`Gb5NbYt1ug|szdk>$FeSKfw4qF#FV=G@s+MOD6^~cZq54^M9|3YF+YQ9x)md;%m z`=TrH=hRB?@B8J_mtTHY`BG@ZyE7}t*0}vc>rUV73;5-$)QbCqOWmD)CA`AJK}JukGqp6lkAaNV2g2-x4bC^=p{c3?9zi2q&GCdHB;A zQ+)1@MRPJMR7pyVC^#dl;OFsYBg%A2|FFq|U*O$1(hhn>+Ix{Rf5@tKHLmdaiVyni zTYcvJ2*1S4lCv|0A6Ps-tIFh*A~~}cXAM30-L(E|PiGcwmNY2pNbSfuR%{;EM@LQ@ znOW{o^5X0&&C_Z{wSNDY>*MAb&n%^<1ix^5&6!`D#;!gVlR~@Er~;tmN_=FgEnjk}Bm+wtrA<(#0xWa_9ahzPaDGo0;ClaPrw3q2OPB ze0mHNWBdC(yFs5gb3IojuL#`p-!bgqjxUd&y5DrkW!Nvb{jvDqKpfNP`MRkQ{PB%J zy)S&dyy>2Lbz|Tv9Q-8c^Kp0YwfN9)+M*$CkL57TtA?9x`jbD|F!4 zw!7<^sFPxs+DDfw+`aI%@qdlVG%g79VFaGT-PjbqN;DmYO|A*`U$}Jt+xpC^{JUD5 z$&IehRa1PSBR(}{WH+3*G`WofqnI`;x=y*X_xH6wz5ccdY`a{1Ww{pEF&;tPfW7fW zh{IXz{bzmFFPb#6K0FAyv8zTs_}{V2@Ioi&H@;G>$`kl@4@ESXJL2bUk3MR%yycP$ z5g!d2kea&_=7zo=aTxQi3l47AY(DIFdE{5yx0(Qy{aHm`u0NvCxni3aV0XP2a&X75 z$4{Ao{{x`pLJc;b7za0W(Uma{rj-U9Xp2na5mJ2?P81j zoAfJx1a|E^YW$UwyJO-U(Z#xk2A-H&aa*$i$rEmNtAB3FqwU|_y*c$qOWgr)wmq@H zYbo_}^6Kc9KCo0R|Hi-*i#zrx{!-u0xhJvl*Wn=zDOzvdr?K_A9VynM}~>9a~OWJ;OiD#DncE@=98Z-a%D= zS@V$s%70n5|N^qzkwtmaoq&b`IDX9QlJn}4rgf$+j3;$OWSbt$~=h{Sg;|5Rnz z$aU2s4mDcuzr5kV`}uxLezLdJpJ{!XL>10@`E#7Rys$Wx}mf%>L6-{P*jX4=mhc2?)AgBXZj5JLg9>+%jc)>Ff$M zvg$NTtPqtjXlK&nV%O4!!czI}LT1&RxraL+?lB?bm7hME9N#0S>g42SnSROX-E-zO z&-9->a?pTdLxvuxzj0WfS1MbAdXB69G^yao?~@-lfB&lOdilSiD!K0cJoST%pS5m{ z0E!E>M?-aQ0nDpZ<>12LHi$X@c;BEQ=PdUw9PiU(*?HV%FaT|0%@Op0r5Xf_cg>VT z6WSKq(dyuL-);ZMXZ)Kryc7EVlLg+ed$)J8LdAaWI(^O77sr;y)q3dT z({l&k*zs5TfxyLlKPu5*quFQ%nw+l3h z4fwyWXPEPj`>tP8-Wq3?MD0E^55mb(wrSgQb&J1V_vV0|f9ppzqC2O4F{rHT7`(H# zwk2wO**Wq4f4f)h+3okDzR0(XZ(glZex1*7@M$5~Kzh}P#21I%-~IG(+r}kV?+92B z0DgS)2v!^gMcH*23DZ!$StA9ofG1 zA-vE}PQKi0?ODW|!n?ZNe=|;f{O`5gmGFP(j}_}u1^!|;T7f+VR{(Ad3U9n%cYz`H zT@742D<5C^;f{;9=ROKrT=I6$W$!_=gJuQIF7WK_CxNY-{#^2p|MuTiuKl#57H>@A zC(-542EX2ZVaez!cHe$sEquFGw>5|MUtC$aUEhxNrX_7jtb8EEd-+2gzs6ri7-Vcd zpT?2Uq^to5e1-WIqlq0$$JcQx8O(z~JDHb=L(Kd@m0_x!gvqr9utmE`zN%g_Ii zbg@U_=h{YvRl!4t&HggBrYogRyo)<2p0`|N|Ug&(#mH74aM z;xmGS0;WF+xA?-nHl@FFKQZLy`$4ChAAiuK*qn^F0;YwAI~K*ieRG~)_zQ~?vv5si z{VR{s-o2mf^jxX+_QY*pCBJt*z1jXq@8!|qg-*r)=6bw>>nCGUU&Cy{>yV7XH}?jWPL=zQt2U0=Har+=kZ-5Dz&s$Xqo9di!IkMt=xgA zSF*}nO&D5XwmYlQ)wstIulycTwprX;k=;J{{Fk5WE+1I1*^#!{WvgcRMJ_s1VaByH zPoqXW{_&ar?d9*Sx%5@Nb1}cQi(KH-G&*Hh8D2K!df}Y8L7Dc8PZuUu&E8RMc*@i5 zHOH=4*DP+w@%)QYaJ;f==arlvx;19G;u1zp@*N_Q}La;1E#f|Q@ejzD9Z8h8HUstc(T>|Yo{1T;|6Ctm^*6&7DNNZ z5QzTmh_bFnRel^Ec(&M+p@AogZ9H-8e6iEx>mv~Jh@%*4Kor-i4|lXMQR^q*3mMV= z*1Qo=b!Oefndod>;t09dXxJZr@$O-L*X{EOnbyaX@)VnNhp{ zyABg_4_jjWy3S|57<9vK+Ev_apWnnZ`}DV;U?LdL;={HpR;BN1F?ZeO&YPOR(Kdg( zJvRV#joIEd99S`~?uI5S;jVpTHVqSxvJ?F|soO61$LnB?`TUXgk==g(?&=J44)#3s z?5&|=>}I=$d1V}{ra#RMpR0(hGkXq3XXVOAuh@%M?DN%wu;QcJR0&#tw)3@!lJn*) zHO`6^?&THEl+1_yWB9J1e9dQEb=@2OVElvbNo$ubKY!lcrOKqmBVdNcz@anFzNy>I z0mgT|7S>aZ!Mlb%{&d{dFCW(Z^1I!mhu9Z%o3f|Hq^ZdnL)uxOdR!c`_+o)KZ!~%^ zI{v#F#~Qbv^|rNUOkBU{0DJI|_KR;>O2o8odtz?S@ABJ22Ar7H(^~82xM9(i@AVyV zVn)a4Quo%s)F?E6y{H$ry<9%AdXKX0{t5E>qeuDUA!Emko$}l8p}EoK7g8?vD0Kyz zMpB#9eExmA4vXsWw^`D+?*F`=`w_DdH7U041fM~2rq8_JQvD{bt@^NaP{7nDvCVH^ z+vwij@|*Fc5~q2}&PjVUASyJ>vnbhEBN)q|#7M5Wx8(BlUcKiX4}bBi`1kf! zdJ^7rL|lOib02qpHnLug$Delnrt%E9Fp^I0eeuuhB`?p|A71OXgv5xKOQpZvWO}Vk zPnD$5>=!$&eUjj<&?%$hx#q)cf2WQ0rl5ueF0OVrz}LP-2wf2Mhmox?;jY5%IJ> z2@cJmnXdn=xUyw^m8O%tLk1iD1d|!-&76!3?lAGwf{1~uKDPAPw?4Rc@t2zmk8d{z zCU7sBqnR%d8&W+WX#vhKR!w>8eYA7?^hmRxnT>I#YkI}MqJm?dp3Gifc=>0y#@vUO zp;VcZsXf!*tp3N3Fk}8$@zU+jp1e0MaLvgBJ+BP>^}QvC6Ez3a9k5q)t>9tN zQq0p+_o7SpU(*6%89wt0{s-uCx3Q;mY&!`i4}!l6+P}Ye>Jy`FG#=Mx(4{lB3Aifz zT3hUJA0tl9?uJ|2gvwqSmXb1{%hr!BjO!8=(RL>IzQ0&9>g3$L=Wf1z@%obiTPD}J zcW=?j{$K76OxX}!yt3uR0d1ZvedF1I_pXi{(th4%OXZmOozbPwh87w&t7qipQn9;g z-kvh4`Q+`}zZ-UQE;fa~Z={@9{Gk=bN3Ai*>uyeO9cw9nq(zTP3qtDDo0qh$;Ic$p zkMebKCuQpS*fRV2`oc5*7Xga%)%-XQ**fRsw$iS|m{jNz?+;sO&O#C&rdDj+w^r^c z>5<=33l#3#aOe1MpFa5V%&yContoS#VrcWbGbV)>DLHEYuKmp_%*l8sV7Bj^H20G0 z{UhO?qP5am`TP`KyYA4|lx4>!6m5`T z436uz-V3&bmlzQ@_NxbP?*1y})%z)LT%PG~&9~?JfXmYxV@F82ve$2Xdb7(=9bWw{ zr9g%0b26LUUcK<}`raS4&9YR9_lqdLIHPBidGQg2I;9UjFn2A2Fw$xsi25PxzjuDT zy7TLh*RIA5%--27yW#Qp!?WDh;=c!bt|l8rBE3fB)KXbR+oXj?F6f+HXicaiIc;d< zw1!#bp2m;Q_J2_7`=^bkc-L3WYC1WtQ-uZ3*8Y0!barzDke_K29`H17P4v{P>^;?f zeY5?MDNo~*`W)UMAw}xYYyhl%zghguPxep`}mHb6F*${$(c;! zyFB*oK!ZJw>eb-3p{z_8gzZztcciB+{RsuJQia1-{eeq-zx5i)MVJ=d9= zu4wh^y){k7_05fN-gW#G1hPX_;eBM1=Y)~UHI0Y~X#I zRSd@sT>n+q-g1O|_Q&L0k6*~DTRU1DID56){Fj5it?mQlnY&js+tRq5xl*2Fj(QH> zX?eS6$+!RIZ}F{mnBl$yjNHIc96OvjTzlBehCiGy95KcFM(%Yv-?iBr`zqG2d!tdV zUF3ss<4w$i_cI%QUn%`~;)BgO?{viV+J787xrZx0734MB>$qaK)0GiAw$si%>k`@| zu6o5)*MV#O|5Wuwh`mlX{J%*Z@4nlyD?S6ivoF?kc+`9x*{(Tr4o+peQAgGpPw6^1 zZlF*2?%_oLetZ4ZwE?@J@zmIP=GNS>G5bD)t#u}O5H8WJH2cQ60pIl=FwB1Wy>qz! zdbrq*iz`c>9k8V5FMGGK-b_(?PqPa`VWZP8eP%eH*id=!Y8JGXxYE& zX4w0qLmQl!=G|ubIjKdD*k)h&i>$fF^^1t~;&4RbeZ)myi%|>P4d8130((mqj zt@X?K-|ThBJNo2bcX~}cIP~WaAAUaRRMW#_PpufgD1Lj_j*dfj+eeqamW)R22p)H0 z_V2-cPAvQ|Hs8;Q=9YcmYV~Hfj;(!Yf!TGEmo)gxwP;zws2+um_bpd%@u%C$bc>tc zqtuqZA8fUc`?P%J!~Yo??A*F&*S5e5359x8y_T4q`m%qBec1F4+X}c+9;S{M*08z% zwd2cDU$~ZXv&!XS?`OQ+9u-JE!=>kWzQ&tqC0& z5H%zD)Xm#j_KQAKXYP~me3PfOM37iqh$o;e44hdRVZ|3E74=+wuhIuQg0A;lJ$GqX zrH=8NJ${=qim#rrBg{2<*68pmzEFhE#IyLv*$to0`7?R<&ZF7Ot|s{RnRCXy*qznjYI5V2-zPU|GW_oP(9<6tyXp12 zIMcPZ!yxmMRi)#a0`E31*J04o3$NJ@cBq~bbGm5PrjA2f?*{Ha`diqefLDJQ90Bb& z=ES_geOE>Y#+V;lsZFQzA6uOe6I*B4y6A+!`6rvCJ~-Dk>i1rQx?X$DJF7!T*VH2p zYlrqr@1)=NMm*W@>iLeo>Yms7&repFiv@RlnsRDTQkK0}nd+-;wRUbEd2ID}F^AqB zHDT4&m_1zSxs9=JUrDuiLvGJV8DAglOLEy;ta=o9w9c?%s}cf>fA|ZOqzMZnk00;e zd&#Fe14sPYcz67r6!#agM@RHpoe;QxaQM3DyD{rRo8Mn;d2lDAQ_P{no@2r;MJ;>p z=T@F?Ir@Q)hJb)mPCSVP#ensrB(^ z&3507$v8eFE6i5;)r5Ir)mIm(<@-V7Zw>d!u({WSRZquWN$u0I^0ftbW0H!F+1?nR z`(eWUN4Lh@UiI3hvqp%Hn;>(e&mhFDF+N!mKO8;PC(?GX_!|DS=9hJTN(~y;G5Y89 ztkK<5`?>3P3|V?*XM|^5$&aq=^!(T%wd>=ut{*!r=$hJZyl3XAKjNSH*St}uZPmn9 zGfH%9d@H+9IrFb`67S^0&(bT7CLx{1oxNVL(T|l+t()<~xcjaDnt#6SlgEqKKl8t| zpj4460h5YUjVqkhIkH04_*%F}AHN~{wPv%9W({sX`|IEr4n;LA@z9o1C}ZMZ^J zw=`ac81sMy3%?AzmR;;#aDx*I|FSmxIk82Le8xK()jGE9p#?R!`EIu5KmN_UabtEi z>6SddN6{@Ic~Wpp+PdIDY_&skO2nFLDX9fk^&OuxEUf7-t0QtIjF@&Z*1J35&uuk# z$6v_KzdLbvcD2bff8AD~%`10OvWwF%t=*izUDQcjJWmv!$_)yI9C z2h1!G_G-!a_-yZ@Bk7(OHl^1dA3x~crt6<0tItzM%BQ*F%hvQ=v*q?a1|&njyf;@pQq!%txus+*Pmr(mb=?=ZWnisys_rkX@@! z+!qngl8;A}__{?Q|DS&9(01k7ncEJoZg#QV`r?Ov8uUs0_$=4e_{R~Yp54pWVfg)i zZ+7*&c+Nez@~PMY8=PxTHlCZ_uhAR5&R)VF9VRWk(XVgz&|NdW?t5+Gl8=szxx2Ja ztrHJ!X8$;UaIsZ)17qq8!z6E3xc0E^tD*z%9vy)zS+x>CTvfi-mv0aKe&xATSI$>3jT3_B8UVXLi-~U(<6S&5dy&D*L zbYPhuPlZnOj)`pe`pTU#dy01ce&yAYDJl8QU+WUT2@kuoxLf9cYSs=|Wd-Y%t9)uo zfkgqAzW+7j{Vr$9x(0WcLt+Ih%aL9^ZaTmow+W?#>uo>%@-Z*d42;j~tMeCbrtd%c?++Pbr3+wbGQ^z3`E%QL)vNZX9i zPEk#BZe`7RY50=Wj{3zBTEETem~@!ta68D zHcVT9{UW)$rN*IYBhy#GKN{Tm#Pwwt&!4H@BVyQtgUQ|3`0eOh^2DMaGb`7d`AzJr zzH}Wg1w*H)356!5OLl{0M_%tyscz`TZ65?RK6K}&*y78Q=HpB@cE6SCXy5u<=ZuYQ;EH>cUB#6cma&yn)k%_dL%GS)d6 z0blhePyaPDG^fa=(8714DsS^^<383PyUxReDye>l6w-`!BPLi1az z!fT93_;T-yQ{t|LRfUmb+#c8w+Gb%#@XK!e`4RX4GG|KKhdDT_Z5?&&L76r` zRXTsG+=2Pe(wqktJ;PPEc{stn8owV)Kk;$PQDf)$UCXz*-RQMxq#ukyky6XdJ9dt8xuU)B|iEi{fPUGQ)OZc)_bpAMwvr5>g8`2*JW41dg)-< z;TYk$UE-r1N9wQbFw+nJhWff3_}4c(M&^FA%$~9h!`p2!pZ4Y!&)@F+Z2Q%G^V+++ zK5x=jpValX`=-lRH|qWLpKq4z_@wTa|JhO|*0kk+#GN$`c9^*oUm5$KEnN;Asb9I> z_9a`#)I0j0?cZ-p_qg9EJI8+Y)!@)Ar<-Mcabk1V7N7jLM6E;l|GVsI&9Q@fH(Hil zbHwIeja&f*3cs}Qt4-rx>-l!SO3PPo487H((XvGwd*AAD?9;s)->cKT*QcvD+6MO? zwQN+)ozR#(tFsCX>V19L>Y5{t_ME>QUr9VObgKDS*B8Jt_Gr&W%cgFel4uQ!`|P7{ z(T=nR-+mv~&p*t)p+UO;Q%iVU)4i`;^q|@z1J*^i3Y`CTzvn-_KCK=2@vWdC(XPPg zqW}Dxr_yh2YFrB2>wme+n)t#mx2f!RV%szC=!7-{4#XdxRJLmToUAt^i!2T9>s!Lv zj=-c%nMEVZEX7IZw4%{fx?bM_R8KNToEgWn%N&|}I^!iQ)%YJW--|2|loFX8I3Vss zbkS?cdvfoO`Hjw1`bV6Y^`W)YvZNQHt1jqUI@b@G(ih7#t_$vs1rLrabv)FIV~bps z-*0H{I(1!0*oQNV(5Ax{l-QQvI2#K3hlCEBc5++ILyN!MR&IBEso18Ir&kRvoKvK6 z-&(zAPTE##T>Poja?O)IPb~l~KkD@z?uQApJOPhGn+MD-fJmzN)8Q|dOb*F@v18K5 za7AX+UOm$@)x+>H6f{1DX~(mM z<`n9F{q^1puU#K+E|)gSsq#Zcq04huh1o~MR}I6_=C6ATjKAI>r}UJBE7|tn;(^Ui z=O2dSVR7NiSF0o-3S#kfYm-H_GRHTWw<)Xa=kYrtNy>$kI6#*PL_SV4(p z8_sK=)g|$q+u8oql6XTbv^3rj)906dyx z;KW7|_kFS4wyY;ad zbV)Sr%uY{y=l+Es8~*ZfcB?u6Uj=Fh&OaJ_(Qqbi9uf9p z+nS}5P+dTY!MO#eBvu=qS+8nb>hBT1T^}7=sBL=7>{kO5QZmEaN4;$p+M0w7SagXu zqNmo$tQc9oYv_NF@*b&StDL<)I=eccF{5tw>oJKxWR8t205@Nx-?fCOY}bH<6VWg3 z=<7N$&zo5p_cblkpUz+*z>}W8xQwi68k2mRh}e8<8F&@sA$)>-Mc_ZeG3K zE%A1b0tN<=8=}F5#7C(`{I5@h>p#?Q*nFce#~FP&;X-z`-ASclOTf*SU379(<;)u9 z=9PV1{OMT#$@4!j`Kp?w`cLfJ@a}>F;rSjWKJ^qSobijN;Buo92c^9euqZL?wMB7f zJjGJ3SLi+69{$4Qc}v5pcZ@&kDX|I5ZP9{o*QtbWJcZX!{cO%lxY?aBYj5%88O3rc z9ghEWZ?WzfA(yAG%4!_7WNiJf;(rgXJR-|uN39GLSg{YkaKy(=w$x-q=Y)v&kxGfPL7eT2WJ znDwRnBrMO|I6HT>&6wBsIZMLw>l9V|1%#^=d*27n>Xi%9Im13T=L>QLL zng9{=Z{cfQw`5k&{gH$Q`W1G^Ts*=;t248XJJ1Do7Fnok=<8T#eJe%gUz4&kJK)gVTbbn|i$eR%st-s@ z{2{A@Ne@@!(83iK`+)eZ(Iu|M-;FLXx-aZgga8^pRzBm$f_+-MeB$*UFI-Dn(xX_r z(2859{sdz+aej}YbwgpGo{w#GA#P=lmxdx-7zS!HW1vhmIaL%_x~u zf6Z(;Y{u|yO~=J8hNf8%xOR8`n!W??PQQ|Azq_buY^{e0lT%-r7+Ur2;u*lQxM|s5 z-=%`KX<<1p%t^0pE;ZJ}L40=2j&bumMQdf0T|KR9c%_ahUXS0v^kJ(P2c`F3jRjV% zK~l}VMPA9UA$e1#57sK>lsue-Lp8wK<+;}~CS0C6FdUZ#PVOx_1zxKXd#;zfyl7x% z_ngw>Gdk@pJS90Otl{U$H6kkfnK5#2DPM$eN@ne+i&Ag|pRhD9tR2p>^@-n7q2?W@ zqGaa6f^Vjzw=0x8oLNiu%>>l=pWRy)kb&LWAO{q{eik5AmjmzCPij|oY5Y!WQoEEg zhgw~@#L`wh`}BiKI`-CnZq-TIvk`uRS6_AsEdm7kIo62 zIb(fh{>UO#kIc!!t_X84+Y^}lT6V!^^E!oeiLA6VWK{dOvc|rvV}(U`I%G)u8H2N0 zM^*`nTb@;}{hX0$cd}nUH2apdz@d2~L)t|8n`7(gJ+1zSX8dR^Y_gO1-$T%?@0cq2 z1rzYn*<9EuXk0*LO>(31$IboWa@)#uOMbmaxh)}Mw@!0zD}NzzUl0E~!IL6OnRwcn zW{D*Yz`fzL$EjuB4;h-1?^5u@VRMFOwY)pEYP#|G95Ep;Y4G^$Pal|Cd15f!K3&7| zJxl?VJq`(49hDgNa>*kNjpAs$KFOuw5>9_>^~_M%a7T(}*Tg#Wlv|w9d-aU7;gwDu zsp#<^m~QPo|6XQYWG4wP-QY+~6LmkT_w1mIV!h{GOB>RA*0uCKd&~WRL+r)ZGTL08 zx+>fcex0y}BT|Orgeq25Ohan{RK5D{0QQ`)4Q0;kj8&Z*of zqfQfecADq-KRa?SqIAQwnmI2$OR5`DasAYT^MAm>b>gas0wXi(A6PJc_6Fak`5X-X z4O;t_G}`#yzf_n1X+Cdvdtq7ez>f`VV3(aY*w_&NMwY+7QnR+PXZ~02R?x-h+A%=D zA<oX*Jgc0SRR(IPNS~SQOeSPC*^KZcP&Fy=Ay2#Ww-(cA0kokZl zn0vP9%#G_dhnRA?u(&be)_}z&3auabdF54$W1_>CRI`6zPae4J^2Bd#Qz~!2ys%}r z9>GzkPmMnE(O;YVx5rg!S-#Q8s5-Aq8T;*${Uv)&SX=G*i6%D|^`CwDo5vNpc8H$( z-nJ(n)#+H(mJzad#JBD1miqAC(P|^Vo>h6y0ejAem(OiE9aU@gFxy|xo?LrYU}Mpt zQ6-A?AJK30m{I*hhWq|=WZxkribag-KcGZ0%d1wW)8oN^`2J`0+HJ48oKCy*Rr8O} z|7Uf->ie%(NBl#xdc2Zmwc9;JbGe<8X7f0xtleU>NItvGWh0v1O5d~FT~x2#>0my$ z*G}K_I*I0Vx#@dOkC)o)c37x=9*aYM&+4#HS*ye5l;5*Dy&i{XpVeixGR%<+1yNXSeWLqQop#o{5`kDP2=Wv(0*WZyDT&wZm)~xsmIRq z%HwcRTRcu4H?M`|@M7bTec*LE<(jd1T^>2F>=uhh_OspMa7j7r77y)-m{znm*{yc! z7rWK%rFyMi8`W!b*yQ-yZ62oCZFV`9*zTFnVWIhlX>X-E9A2j!Upuxs;=?kRV`+CP za=0wC2JJ4TtjlYodfj#})!}y2UW{Jm_IYfyx7$4~ubc;V?8Q{C*Gc$c_j+jlIV=|H zXNSe%kaO2zanf2fkSE970nn5Ej2+e`=d;6Rp*iHh79r(u*gUjW9hl^@PqBsB<(zcb zoirW}?0>}P;QiU*aML<>I6T~DCsu=4s}85zCCA9&vXXw_aIxNm?bJg3=eF7Ddu|uY z0a%sm+~Ki0sI13HdYBW!$v$;DT%=z)QLS97POJr{d98A8UBG99Wn{bCR9scDTsiazl?G zd0|P*HSKnKX}@>7oGgcnZBw@!%9(7R+e!KrwtHIVZjXg*HMhq`^98#k%Z9y^`q^tG z40S`dkn7y2#d57;%cgbYhMgz-%44z9Si;2i$T5Owr0YTBC;b3c8Ld?h_D+dM9vHS% zhYbpm=zEXNN;Z?n<|My`$A-a_W$nEGd7$sgxeHWqa#<*a^gS=x_8urdB!|O6`=7@s zCh~g@ub1TYVr5D`ug5LN9Oyyw09L$0WBVMlfc6Nl#Y6rGsJ0&2X0Mg)Rj<`e7j}vqOYD+lV*{Z`x4`yHbIt33(l5pX77p#Z z*hy%7VK&m-@IoPy^Ti9LMy`FY3&P2IT}~Ud#pQBIy!5)TBgnFDE7`DKY~=Jks48;) zd9fi-o3W^=&A?Eq*W)2O8QT!8BQH9d+5($N)M2$)?9$!>%`NQ!&^&T(SS?m;9C`Z% zG{Pv*JkpnDh1zMOvVc6%X7D-WJ_#BCN!Dxga9eEX8OaB6#rVQVu}QrNG+3fk*2!(Q z6KUMp$9BI587s`{0hCF>=}@ z&Y&!;Y${9oANX7n-#`NrQd#Uek_H2W>TtpECO$jOH7i^#Vo$VMVX}*LX~qAfeg%?U z+F*uF>OO`hZBx+PBpYbb?*oU2h1+Mtq7kxLu@=OBZ?(GMfRTJIFO3_TBJ~$E1>G;p z8U>YTc9soFp&TO{*0gN14RXjjY%n6^m_yx=`mPl-O=1OT*iJ1fRnSYn*6q z>U(T2v_1gm)CVwYX^tEBxEwbJFpt^-V?)XT7nIZmtk_LyePDZ`eGUE`c@Ab)8_gFd zDv|X%0fVy5PAC#`zBr*L%5j4wN$bsp8AE(dr&G>*7hEWEzPQ{DX;)zRI%)l4Nz+)m zfn~Cv;X#q-F0c%2QU?Z&eDI**5LL_<*q2ggFqQ`4CEUPN)&ogoKf@-GwgFC=(9xn^ z*d#O$JUCQhK0EalY!|`+*e*23u`J!P|BOqT>VW<%$I=70sO&44oHRE)fF9}toLg}n zZt25APqBXGfs>oQ2MD0=VR)I(PWv-#CK^i|?I>k&5G%*X;pMV$%Tv8DyQ!}{WLv>o zf=x`+0netiQ(*MaIhdhIdjTglboOLuG$$biVU!m>ExD$l9dP^L1dy_M;ro(%iPvMJ z{n?8F7JN47opSDiW|#UEXilk{fktQBpplOPH1bj4*qMBh=qdbP-tho|;uLJqbEMq} z8l3u~tQGsN7+)MkTclqAG)x6q7C0#T3Kp!yBN(CNZ-NTKd^U67BkF*~Dg6T2ad5~& zd=4598}w``8%EqN)(pN!zE@Z{060;H9mf@7P1`W!(su(-IKWnxg;Q0w8G3}oJUD6K zXpm*yHmQf1Q%;HTpg|B()&ZSHw#5MjOV)uiFR90(tK4!8g65IB3TlPrDC_k=Z4fl4 z4U>pyFxrWRO^0YOlqC%Z%2bCPQ&sX|9#9=H%VZxwFF}k_o;U?qur3)>1RCvi#?qC( zFKA5`iDjT+8Hzew@I}ftW9Cx7xSU?<7Z>a;D$Dj3CXk)m=fVifw!loL_8EnU_~5ve zG&ejAM5D7nm=!jOAD}^7rm|$K8IwffG-%LjL|J$fX>DQar2WN>LvXn#Vu#@GVK0_* z$c=Ln+4q1HiFt@VzzB=>8S_K-pNG$#5sZXMl(#G#uTb|S%>h&)npK{aLlZ^7l;q=B z12{6A(hq_lJg?N7jQ54wXGaxc9)OQ@LeR)h2pZ{xpt12Kod2d4+|k-Y#uiaP`inuILtz^OISu(?Yb&Ie`xLH(2aGmL#YqXJE7i;H4x z5XDHgIFtxFJENqq=3x73wE^GH404pmv6QGrIjW+;<{Z*~t{3UYk0o6?%ba7g>o zZuD^~i_Jv#0nl9T<0wn9tDq_ELnU(VdQHHO=x2EUr2hqhM>c6Af`;WvWdXKCBi{(h zVrCJaNBS7Cm5}XXwik(cpuxbD-*a+b!Sx_98QTlRvw}wUrP+q$J_H&fO!C$X8k}TA zBYOsXWY1t*BYOrkXuR@!IJOe~ht*5^J!m$Gd7weNmEVKeDDcDV22!sBjdV=VFx%w! za3(@^co7Usd*s1I=TDbM&&md){Y4FMX<2CZGA**RIMB!s2O9a|%t@QnOF$z(9B6co z2$hTcaK;Nq`yW&@dCm?#EF>WtY&EGzU>aaYAU@1!qB*3W24#8Qa6{#n>)efV1G(=a z=85(VSo_ij!?A%=+C8ATXpCUeDP@7)LJovuO8d=N-CP!-LUL}vKdzKT@IKYyR?0%D zk$gZ*>ML}C?0aY+QkRET0%)M`A@G4{6o-ehJYU?19~b%%G+>~p{2s!KsSezqp|S{_ zp?-n-OtNvj9s;5nqoBvqe1_U7b!wF5y~(JevR=@nZ3X8QqBMoP(2J$*Y&_gjM|Z$C zEYDp)^AP?5EoHob!$6s=7rtR>L%_L9X9S>;ehL~i{Je4?s+9Co6KN{37BpIyI5@%V zkl%wC0=sbo2GOvB4?bV%7X=^PdvfAzTlynFgTq*U58h3t(K#K;V%L#nVb6&528STU z`GRJbXUCvX3@&IC{|p);MyXyp-@?XD_9bW(KaPkeib(|xwTL?4la_M`d=%#k8k~4k zmi+RtQsDTJd~hkqdU1>>_YDNh(mgrQu&BlN;N+3}8UmSI5|5xBSfy?T^?>vU9N_|$ zMIBhw63f6xXAS@vi`<()!-SUK!xlz$7z2~|5X3?>xAfJc4(?NgC(@e1Z3B6hfSWv| z|C!r867vu#4uw**1*bFe3>sJo;B1k691n~u959{*A9iACYryD+^GopIh)>$$ zaIQfClza$Xm3?on)5)>)KzSrST%2G&99qjdFy?ZedJvQ#%bHkI$p_aLtxH4{Q9r}= zD)mlWMIk>h7BAg5FtB>{{y2pi#^YT5Og28fef4WF5GA%{032hq9zkg65@p zZ-7wtvoWXTngQ}iT@PkA?SG&F%w(H!8BeZDCyaZh@j3@2OM3w)p9s_!b>Q{~tr;wI zsq3LE#pi$qr#^j;?ovSGqWByW-7f7n(9kpTdoDPLhz8?D(h#FA_XD%cW&3a*O8W~a zw1)wI<=KSq2$$-B6JGWyJb2Rg00NykfJXiU1Rh~07qXeu6LM~t>!xx(n=pOZJ{*bA z{sJ#B^%YDFdB+KcJ-|`61qdhQg?pU(4<cvY&y^=CKWV_AA-}H;)g)P zrX$)6ds^y_;DhlZ`CN2A3fK4uYoTOgqUJ3Nnp@%rXz(-;AKeAOg;v@-K_hz$=th2T z(8!j=p$l3g>NOW4#NGrxc)p1b7oQ{z){vNMP@b_l5g+N)AdpTC8tK#sT|iO^@jbYF zsh{DsmHQP8aU2ZEvb@)UkNonW!4##k*s_R*lT%59iX{6A2rqpKCK^PpLC}zKM1Id) zSR)#gE~3#LN_>y*se?xA7vZ~3d435R&vA1mBF7h|kksW(II#4E!?Fihh&J2d-W9ly z?HSh}Bp*BovR<60$bH;|4NKhzG?v3afSeo9)<`zQM@XF&5I}dJjaepf8Z<=63OR5n z$Mu@q9+D4Jm)eK43&e;0RL)750dl`br~&yXKy%Ce9yE{K?-7!K8#%Il2sEO45%A4? zIC`P7Kn6j>DVW3$+`^@My~xT$ae|;xoS@0xB=sxM0EDt$1T9iqaDK#ml-tH_j?d+I zU`v#CDEJU=AnV1+mFz#9A4&f%oJcrem1Vu;zXBiW8|F3%^*zp%q;7^w33!e})B*L1 z#@B@1$gxCBoAfEbV5hhO&?u%2G>T~hjr1YV$aY3aI`>0xF^*`290(DnISyTq<~ZVg zXueu9~<)PVLs_;{#ZtX`T2a0}30jBFV)o(66yD4s$N|%^*BN#w|gmh9vTP zh+UvMjAlZ7l=BDOjDrZ`gJMiHI(I=?+`1q>$~S_89b_8I%Lf{r!-7US2xt@=02)SJ zeh>Eph=xEdvDaZ0LHU+t5s)e503YSw0FCT2(4dmj_sHJ~J_MmjJ}=p(*bK<71&w0z zLBmCV@jZB(%S}`Ih5>>nRfVap{TtlL#_` zfiCNSMoxW&-~c(6xGqU+8g4jwu7)~1GQJ6(YXm6Ddd($3qLEJl8z;qV8yAXRA zeq_IaM)sRA8|D528g72dI-qt+*>D;lW7*B|f;^iAjdDIBSPFL~WgW0AWWC5SO?8+H zwsI`Zk%L$tn9h_>8Z<@ke47tU~!c+|iNq1*)FhpHUW?JC)^q12+ogo(<5a^Fh$ab^#3$ zY@!aRSF|6Pb9>^0drjb_7w&e6-JsFg1TtY#oDpcGA0Ravv^dc|9H-D2;pmw5SQiX4 zIhJrsNm~df9f&BDb(k9rM1vMgG{eq9~4;mWG>^$wmNh z*9ZhQnp0Tm!$X=j^mE?1W@z%>HfT7X&O0{{$4NQB3{B?p0S(TPyz3k^^353p zVR8yx&+y4R)rN+!4k|0};Tk@fD-0VQlq6X%RBz$WF?{m<6ho8oQidk;Um2S8uNj*3 zuYrcMUTOa?v_iJGoP>ujYleV9s$@}q!CjFv@CT&wglQGAJhQLxWuMqYi>@D!&3|#gB zwnSRzP_so$swoR?Mb=@3Cy8kC%-@ui@%*4+E0J>&+Nr=x!zXi`8yWyu){AXY&Ph1Z z2~&Wo!oQ2}0Y9k!$PP7p@@&!2kX1sqh4SheKIz*uH1qSt`bG!LNW$aM(~Nh#~(xrU9G`V?$(zw$Xyr5p&B zl%bKv!cg3F6TSk(7-3tJ{eoN8q@TifC~QenR@&mAVb7L* z0F9saV)zb)pTU%sHm9MnK7>`yeL((kl!e+({bC$2qVM55!Nw8(D^phbuMAD*CNMOa1IN&0t~EoGvGJhcz){Xg&Y5oblvXHF+%S?uk!rcLlU@yRza zQHSv;5+4p|h$inPn6lDeVrXPDL6MSvQKJ;gI8Z~w#e}@|f<`(pXoSh2$+HCWJ?uL2 zd&Z<8nvByzS?uj%u7M_FAq=0)uWV@2e`;vR{v_)~(oCuYu1zu5;4mQ_7&P42rSHl3 zUDS(^9Wf_ClV@m#53WM_JzU^ontXQzW#KBNI^d2K^WHdbuF`w$S!-;?JCXrIY2Alqjg)kKr=a43uWQPfv(dsACrhBBW# zZ#3T{y%SCfd6yP^aC=j~z;#V^n44`<4)(d>domxCsYAv;gN7Ju>KCMc5&H}HXded+ zkvFm}*vGjn9>F6%WRE7AeBS`=^T?c@h9=J!3{B=QF*IdwLc|5lHK^m%_t?j&pP}4R zo8d!YntZzkZNZ5O^C7vC>;ro5)0CC5riO+L9HJ~XF%e6Gzp)X?@x=n6wSb8#&Jj&n z@|A)H&kEH`zEV?|)(5mJE{o$q+0V$PKzlnpMpBnT9r9cfB!qpDyg1jTHdC$*6vcMH zd@^>%@X0)th9+}L7#b#<>?_dgZ=?kk%2h7|68>&6f59Tw^BuHOH6K&rq}FJ_*ZS`iC&ZW!wnbXD&L( zHe(;B@t`wnl!ZP{av+%$wa;8Qm306=h`r<|v_ zT}yM<{Z&(zd@Xn^3!1xZGXhbl?-5ik=Pp7e zY0bbr#Qlt1SJXZ%RjLJC+LjXDGet@CLd+&yZ6Gtf<{NvOX1VwXO$UhFagjOxT z2md(J`$o4yDCIG05_ zIQpKl-jEuI+Kdoant$v=vBHZU-qfeiy{TS=$&effKOi{}Mn>aC`D9GJ;^CsOJ>3s+* zOddXJGkoDRmM~qY@8LtCxdtB!l|=|H)nP97%DzIV74ymb2j~On-ZbXe$LV_ra*+A~ zj@emW%J+aeaNtdC!8s?@i+!B=aOx#xgLzJ6F}ze3u3_qDbGSp_Lv|pd!2lr|PA~-x zY7^qu}d5uU@F$o+@uM{^C?cc|}85^UKP6U0X}iXp(Nly~gVF9^h=@8QlU)9BnDN|Ve{ zi|^sm8TFO9z$M#Ur0Aw~j#RP4hhPorD|10g)`5Tlk^_hDG;TP^<~mrP1oDs% z4>7njuMjFp`!3>g$#%hs7wK16GBVx=X(jn=2XVP%`yt~G*+Otnl5Ofs6fOD+CrX4f z=4yrqRxxOpC6ALp{XkDF9Y)PG33CD$*G{YdAB8q4Fsu_^F!$$M1h)oY56 z1q~aA>_3?7+!h3%OFrn{a?K#WBbP;JBh`U)88p5K_@;Ul-5XIEr0W@2pm}P7z-60p zeo6Jh?@jH4Yl+4Pes3>lxG5CiHpqC_t*}kevi{U z+IP{VyjIQQyt1zl_)2mh9FA%1gLj&TtLS?O?2|P3ONfu-39;iKlLM9Ia~$(d2=xJ~ zrSXN2TYeAPDeW)joe<`e_rPJVW6#dJJ`5*m=yS$N_y)@ZrFb$N@hb^C@z`jv_wjwoFsxfDXcZiX8A;FrOj^d7IT+7TRv8b*bMPtS!FUcnWjq+qk*`IWSFn$$ z&5Y+LtBeQZxi2RSe@~GEv5m~9$bqv;;$u8Vz9mHt_%^w$A_r_b=2PYsY$4`Ts_^l6m>52;gU7?z&cvtSInL=7 zK1B}LwfsFr4)~CnPmu%uV&+riQ1BdKPh3{PbA%cxe2N_Kmrz?2JV&Ie!l%dqzcPJK z!E@t#WjQL|;$07=!B8P(K zCO(4eP~=eX+{AoRSq0Cn3ZBD7sgzaZQ1BdXGNr5{hl1zEFGX!u@Z6lKGoLaZ3Z9$u zOD?O7hl1xO?t#lHu5RIWpjL&0;r9Leod z@Eos6Dtw9@3Z5g8mr_=lR|=k66+AaNU`bvD&&`|d%%{kq;JJyb;}Qb@Z6lIa2?8cD0pt(W9G8Tyi)MooV`<71Pk?tKhlGWx;&Pyi)9Qyp*YwRmMZH&rQ5C*Q<<&VxOBh9$6L< zhv#zVn#6UR+u6+AcZ;WD2xuM|8tZ;EnRWjqu- zH}3^bLLaVL&0;CpODKcW(9tTG-7o+Du{msR}j=Kc}Yq2M{Px+{E&915PByNp~1%VFNQmVCHnqR@CeOkOoE z%kv61PZU0u12<0;K9 zxqHKPC~_$Fxl_S&lP8tFr{KAHFO~TeITSocf)%B#B8P(KxLBl=RmMZXbKK_PvI?F% z6@R%q-R>5;~mzMbyITSoMITg9AB8P(K=DkWT%j1EUwU|%Ab3ACH z@F{XA_PKc@joPB%xq082`4l-6Jja6xTvowzlLLb4Q2gz9z)ay&VSsUPTTC&rLpQF006);JLXIOl1{3H~06MPZ+*TR8kZWjqx7+~ic` zvWgrEo}0VPR93OiT?(Efv4&Dskwd|AB)?P2Dsm`zZt_{mHk-Esn8x$Ut=Q*C;G~pg zIZU20u7l+;xowz_$HU}tAU*}p%{^=8<8^M{=3qWW4h7HgBDhjkkwd|Ayb{i36+AcZ z@KXB}JV(Mqg-?+~!E=)@m+MgEQ1IO3Afd7fp1T!1cPn^q@-6ZA6gd<;H@R%NtRjbk z=O%9`l~wQ@3EUMvWnL+GZr-uuI+XRH;JL|(#buTCq2Rg6YfohrJU4HrGoLaZ3Z5eg zgi=-+55+!rD|l|+fTFf2cy98|F`pubg6HNX| zVa5ZOH}mAw@r{RKpL-NMH*ehh`+L5!3Z5ewoWiHbq2Rg6y~uSaqR4IlrmR3Z8ouJU4IYa#=+V1Q!dbD4|UC$EC%UIowbimFnFGOrXo$IGfp zS!G@+_PJMJysym)o_iHM_bPa9-mam(QtWfQz^d@&ZL^s}$ezk;TCvaZ=n#KT!E>*I z=jJUiYO{jpc&Sz4Q{+(a+^gWZS70}io+B+7>&oU$M{1vf=jOd==2ON)!E>*I=Xd}l z&-YCGOb!jqk-U4Xg6CcZ&rMEVYM+AVCI>9@DRL`L90I$2YXSZ>u@+EP84vci<0_*v9*pPUQ|1-h z=ipQ372`ShlzGK?4n9Q=f$@+XkNPNbFrI@?k%RHvJQ5_=Drm}hFrI@?nOBVG;8W%m z``dAiRGC+d=ipQ372`Sh6ge2r!KcW<{&w&waxk9bK_x{F#&hr~axk8QPmzQ1+&tvO zW6Az@@F{XIp5wZ%A_wC+_!K!9&%vk2!TxseDRMBLgHMq|V7zb5FrM4-vM=`)<2m@0 z^}%=!K4qP=eGWcloim=}3beA$8PCC|$ia9HzPx>J_EY(Ox38}l&rwzx54O+2$K#>o zhr^>`Jg@M2FpY%{v3s&kCNKw*i?? zkwd|AJQ<^uRpe0c98Z~WSq0DWEQrFVtPcgxtqPvwRb}OSiW~}_Tg6B$pI2`RL^Gd;UJUGGi zvcDbQQ^rHVbMsCYjirL;c+`jZl>Bh!;Z22)=arHl4rTMU*{lWmzO%s|B|jW!EQgXG z4v&E5okPAl_{~keQ9O_WyQ1D#I4~Mdf915N*`Qh*sqB0%|p4${W$II6&uY%`z4O`(;#zV2s zmHcpc&oytG&0I70B{44l_Thm~84m@|Z3>>7H?(M8DR^$)mSsL=JQO@P?*>s>f!#jY zfQ=-ZVxKGd;gF_Ckwd|AB|jX>Dsm`zuH=Wa;}vd}O~G@#%&qV#^GdPLZ35%bN2pgB z55+#mYu#M0g6B$pIN#fpG;Ru>+Y~%k^26bK%KA|7T*(iIvWgrEo-6s`%%jTO2a0`; zhddQNWnL-vxlO@y^KLHnpMvKy7o1rOF5m*K1qIJ>c*k`pc#fCD6+UG=6g+%h4~}4k#^V8}rNYPK0mqrb$8x}-qwujDa5ONVz<9IXl>Bg@DRL-yuH=V9Sw#-T zK3DR?p{yc@z;53hg3nFPAt)v+uY%|1?O-`~0W=Ctkwd|AEMTRqCWkT}ihYhw;O{AT zuH=UUNs&Xrb0t3<%I0me>1X-2tZ%+3_Bmck=QazB_mx%fT*(gyF%&rzJXi9=p{z0< z0=s>(VPB&;q~JMTS!dY<#`|Pb@Ek9%D`k~=C4B3qee&()+&c1(Q7%oHSBibEQL5)VxKGd;ZRl?55+!L^21>Z<8`j&hXWsvhms!-d@P5O9}avx9!h>V@bNlV z^1~r5ry_@f=jKh(f3FWSPra};9==itNj)9kf|PMx0nWmBin z^H1nG_;4Kq`GB5-50@|Uf&LtPxQ|chIrwndVV*7MYptDm`Gx!E;KOCN^8^2|Z!)3R1 z1wLG@#?Eu_;j-K7)ff76@Zs{^`O(Mh=h_55T)v0{dJaBZNNwZ;dVanoeqT?&py%Mj zbqvG-JwM-Z-(#Szu3o&k@Y4s{XD)m}&%dDO;KOxG6Zyb;JNR(UbMWEvMLwYCU+B-lhYQP&x`LjA50@|EfS!X7moMUgo`Vnf@dZ8q zLVpfET)wC)tha*?moMrH>+N5w=e=UQy)O80AK=5a4cA@h`4{y33+wIR!*vYg|KoBQ2#T^$4;E{s3oK!5&qY4>vstQCBrKL;P~;|qEYK3sOt59s;V)r+6=duv|a zzXiUa=itM2T+|ix9DKMB@Zs9FaeSjc2Oloq*ExM+JNL@(*uK%9gAdpKwywUR=itM& zG>15#=itNTyYu{J!9B5|AN+=%gAdm-;r=cGA1*t@0X+vFE?>j}J^#M6`^0wE^e1n) zfBudB9DKMwk%2g%=ilhhzoF;g!*z`9qrRc%;KQ{Xi+n)OzoF;f&~xzNItKCqJ^zND zgAdpKFh8K@;KO}wyoKFYk ze-1ue`$HV)&%uZ5Q&xxrdj11F|3QBaK3vCG{kU0h&o!reeD^iy2YUVkJqI7ITdu1g z;KOByd_d2^hszi99C{8uT(^Js_tg*d9DKNZSI>W-=RcQrpK(5G9y89+bMWChF0NP5 zbMWE1wT*m0&%uYw7xNr?4nADIm>$9_nUk`&wtRL zgAe!dgZ>INNz=!+j4)Dt{&Tk*^;o62cpy%Mj<-7U#g`WT7{yF$??QiEf_;5W+f_y;F zf1&5USZ@a(u4BCB=ovq(w}TItFXBLd4nACu#2_E&&wrukztHnv==sfzdt!s0gAdo| z8&Ox6cAt7azoqW$OF!_pCZXrx!*yKb1N}MpaQPx1(DPrcxBo)VZx-AWZ`bUJ7kd7S z^>*;#dgKZ7{L=1o+>@g@F7zCHxE`TGKA`8nSa1KmH2$d}==m?!+kc_wztD5=;d;ai z^8eWY@tY8QxO`Dp=+D82`)EaW=K}N`e7JmZ-9>*6K3u-2EA;2! z!}Zu4uDj54@Zs`>4nog=q37VkwLioGJqI7INBuUAKj``2rQN4C4ioF1Z{WjqjJ;lg z50~A>0X|%xs@>}@_;A^6UHw7N!H3It>*^1B4nADIhy!|lv)~%jQnc63Kj=C5a6OK> zbp<|LcE|_x9DKNZcb@-2&%uZL_=BE<50@R{fS!X7m+$M?KV#ax*{M_X=YP<1@Zox# z6?FwY|AU_YVZ9xExQ_99Ek2s^2c8W0a6MX!`2juugPwyA*ZyAT!Wq-I*288@q37Vk zwZGRKJ+a~bIrwlNf6()r1^1j^x;p0vJ^zEAgAdnnkq_wkAM_l2xE^c9br*ULK3u+- zAL!5j(4YTZ8vl$v`tv{N`OS=be9@o(LC?X5>oIP`0X+vFE??vWdj1DJ2OsVOe7Lq@ zo})kigP#9E&%uZ57>EOU{T6j@9#Ci$NT#=h-2S?a#AA9INNqAs?&f*&&YA^Iqk7ozt=4K5d3K0n^*lSov3lMsQ;1{x^Xw4E>UnmE zWA!{c#Ibsw-NtdV;7$!4F4%p21|P21!8Q)?;j-H}z=z9j;{YEnJH@d&2tHh|tG&*d zbA7p)asRfh4!%Lp-?l$*e~1Hmo)+HgP5B}Y=sEaspWwr_4RJuv-=OE{0({zKHMkxaBV{z&~xzN@&DbQ^c;M+UT;KQLC@cy=itM&zx{pn z20aHKF5lN0ItF8FZS;d%u< ze}kUCLC@cy=Woz+@Zma_*Bm`_X4l($%@uV8Jr5JV*AnRY8}$4QdJaBZ=Ys1M^t@Ml z_gtXo;KTI_FXDinzd_HzhiiYhUO~@mOZJ?h=itNjiZSX6dj1AI2OqBeVSYf*-=yd0 z&u?(4xj^c;M+&v)qg&5S$s3_e`jHXq=_Ww-gbnQ_lCpy%)C&)?CX-z>N@ zF1^&X;{rVgAMW!VdJaBZua)ooIBOKwJ7U>wUA;rk!H3It_2V7=Irwn-zK;DFmwt5Z zxIoXrhwGJj!~s1AA1+_S0X;w509Udvd;AmJ%2}k{ti6{AMO);xVG)}3VgWi6vu0=J>v{L2Oq9a>!7Zn z=kL(-cj!6za2*46h5j6TxX=!m=g{+a==nSJ9DKNrfx3d8zoS0~AFll&AJB8~;lfrR zAJB8~;qpZs=+D82%NKP8J%5Lu-^{qD{-EdJ!-eG7z7~AA>@Yu|=itNTyZHbgE)>Y> zM<3#tYa;k?`EDHG!)3Q|1kZmt#<>oi_rT9(=s({e%NKEAy&ZhGkS2%&dJaBZzOU!} zoL}>8&JX=L_;BqHaX`<(hYQ1kIH2d?!{xj4BY5S@*cVfFd%X(W2s^|9JqI7IS3(d6 z^c;M+d=UrqJlNHqGxR(N)7nAL0|CJfaX`<(hx-iTg8d;MSZ@!G0bj&%Y4@q!^Dg7m zF7*7c%kSSq;KPOYK^)NYUS!7p5C_)Vds%gTvEJTGiZ6CgylKkB3q9|Jx)<@YlK3oX3*Vz8~?)*sf_MD;TT~J|% zx`Lj6LeIg63-R`P&Lj}JqI5yU(^-!9DKM?dYI?v&%uYw7j*?a2Oln9)D`p`e7I7H>+Yr9r>@R(xl>o@ z&%uZ57{~|ubMWEvMLwYC;KNmt$Orm!@Zs`BKG2_o50@|U0X+vFt|^0jK+kVx+%rF* z=Qj)P$t8L}@ZmZa!~s1AAMO);xVCLRz=z9jue;#GWw&(&K3sMi2l#N=?ez+LxGqIe96+3o!Jf}Vp9*CiHlTpEAs>Sn=JLm>k8_Z9eX`63SV=itNT zi+n)OzwkU9_;8=#!?g|hfS!Lr&%uXlf5->)9DKN>4EeY;{>caQ9DKO;hxq|L|AL-_ z57+*X59m4ga7ps&IrwndAs^6l@Zs{sJcpix5BK?n{v3R`>=4J*vp+e4o`Vn9{xCnF z=itNj^W{}5-nvowQ@kDjW!>>+#y#hEY5c!!xbC7q|AL-_57+s<&V_S+=RMqWdjDM) z1s|@TVXv`0=LbFif}Vp9*Zxpf(DN_!=QlI%-?_ZT_HP^J2lO0#xDdpsE9m(b*4uAp z+;cAI&%uZ5xQGM&Irwn>1m5cv_;A^6U4ajm-CnP5X55Jle7Lr49N@$C6MgFne7Nj3 zALlzd_j)4uaQPw*==sfzdt!s0gAW&W8gW3+!H3Hiao~A4@Zs{^>(w{({AR{Iu|dzl zhpRn8U7&~xzNKEa1;8|n&r-W=L_g#H|SxQ>B1(4XJTxTpRu?LOmo-oKpjgPwyA zS1XPA*JlyxC@lPCBZ~wk}@h7%4Z(@UW{Tq4?K3w}l zT|v)p7Tg(^^Bnv=F5ttpWVG`fe7Nj3AK=4fx4+xLhs$p33VgUed9c^rALu#waQSXN zz=z9j=Lh(3*=;_+hx-H{u5E||{rSy;dvaO7HMzuk`w#RSe7Md9aX`<(hwC#Ehy!{K zK3u-Y2lO0#xO`Dp(DNVYIrwlbZ6XfnIrwn-A`bND;KSvMIH2d?!?pCfzZ1cS%Wki` z;KOByIH2b@3+~k9d3JSb5_%3k+$Z>OZ9_gTjX&37@Zs8qIH2b@Gw$F1kPqlN_;4+8 zBOlOn@Zs{sbr*ULK3u-IUO~^nhszh&UG(SR!?k>mx`LjA50@|W1O55WrSVUWpy%Mj zeS#0yHq;gL{0IFx_;BqHaX`<(hszh&UFiAEf_vs0dIRv`x^=R31wLGM8^_IzJ7W(% zT-!Dd@Zq{;v-1Odxa_vBe$k(U50@|EfS!X7moMVLdOP@VeVSKA%`v*1oH&vR~# z?Mt5rK3vDxdH#$39DKNZcb@-Zy&ZhGZlNI`=+D82%NO}Te-1uezQ_mk9DKNL@gX13 zbMWEvUHt$bE<5A{dJaBZzQ_mk9DKMwWrcj8KfjrA&-{g+gAdm+UdR5aQ}mp_=+6Uv z&Kkfk^c;M+Zn@%m1w98JE??vW>+Rsf<%@hk&%uZ5mN4=GJqI5yU(65a`OS=ba(S)6 z|J#N*py%Mj^_eroajmVNIyld!bgb9w74$sf>(&AE9DKOW1#zH12Oq9m?}!6>4nADI z$OrTse7JmH=ggB2==sfpJ7aq8so!G?K3tCw?EJWyap$<;!?kVm0X|%I8wdDspWwr_ zZLhoF!)1p!(4T`3moMVL^KgHcc0c2cduV@HZ@-yw&zM5b!H4VdjnxnE;j%*<&~xzN z^4<9XKHMkxaBbW90X|%Ihy!{KK3u-rN8QZ0XH22z;KTJPMAQ}Z{IC-5`#9jkwZEO` z;KOByI4C#N zelz2qc%kRu!*vYI59oPMMsCib=itNj7!=~TwEM{~`YrI`+8^o)dJaBZzK8?;IrwmW z+7od=&u=lR!H4V7vi+S1K3sOVUO~^nhsziFfS!X7moM_M zdY*Jo9Bq3&=VzSv_j7i0y=vRc^R`VKZJYVgw#i4^CXTj^e)I?*;#fV;?lrdJZyVxR zJy?>q^^0Djf*&!dR=h-12tLHr``FhT$hJN?A zcXo(l`}6D&$Le`@h-39UJH)Yi-s7F9tJU-D5Xb6yc8Fv3JUhg(dY;{D4V`g54Cm{b z*dwWkWA!{c#IgN(c8Fv3JUhg(&%UnmU=hxbL$7o)T zrsRt_R?o9j9IrWg&Tsqk9tTDo+n;BLICi}~yVrAmV%y&W+2MM%dY&EP*#5jnm=VY7 zd3K27>e-*MT0PJAHMW0th-39UU&OI`-ecE@WA!{c#Ig6!vwJ<~laK!FT;1o}^F>`j z&u?bj85i*3+P3o?e7Nj(o`VmU-D_uA1+_y zWAC45_gZVuI783DhwBv%%ya1Z8}$5U!96)jlP5>ebMWCh7sPRC{1Y4W9DKN5MZrAZ z{ye+aTKjhlT(6+#;KQ{)#Bpi&8LPv(nz4eOgAdm$HK?oY&$B}u&~xzN@T>IPW75H%3ZC!y6*K1yT-92;W)=Ti= z@$m_@Zs{s{6K#WK3u+-=jhMhq37?=bMWDM{Sx#1((aRw z^SByPgO>Tz0RqJ^Q<~`^5WG|2y$Q z&u?bjzx{1Kz=!KxUgyl?3q1!PuGh8^2iDuchs$^82l#N=Ar9#I2lV`A!98P&-yq<_ z_4@g%#y{f%JqI5yU(^-)^AG4b_;9`Uj=F-Le?ZSau-<;N;Lf<5XY;1kpywax&%uZ5 zoKaWk&p)8&hiQEO-UT1-3w*e?p{}sr4nADId)@tjo`Vk;a$v8!AJFrg8TZuHrSbo^ zAr7p!gAdoaAP)5BA6Rb(A1-tP@`3gCUTA;G+f!Hg?Fc?x$G|+tdOP@VVH_|&(4Y5F z<(Kn&#u<7JK3vCmjqRT==K0<~&lmZCp7$ZoJ-xeuReT;{UHwY z=Y1>>zKG-M+0VFu57)MxAK=4fx7XcX0-ST{qeCy-8kc@X>~B5r;X1~~0X|%akIe`8 zaM^8L^%0Mk^LxhS()fSdHXq=_b&Smi_;A_nbvHQuo(tC7gO|V9J!6XBT;Riffe+WV z*Bm|ZLeIg6%NKE6YwPFy&NpP*@5@{OAMPuV>q~6Uxj@eYjKU6aK+n$_z^z;0!-aoA zKA`7;?q2ry#9Pla@nXFle7KH_IH2d?!{v*7K+l65y`1wi&d~GVJFvq%hn@#wfiLC< z^gQ^)i|-lJ!~35xg`Njgc=3H=!+JaTa9_O)4`0NA{=Ao^;fs7g&wHtLeWB;QfC)R~ zG{onk7*A=z1W@o^-vME zz2@kj-Oi659D(oVqlXt@hd7|;-N;^F=sEasp|f7k`Hai?T{7c>^>*;#+8^S8o_8~0 z&l!5&!Z+-Y58OWoA1*8y@&P>uA1-{@>p4GTh2Iw7!{v)Opy%Mj<@=hWr`FJ)gAbQ4 z@`3gCeo*c>L(ltB13TmcdJaBZ_%-AMdVaIu&e)&Ym^y`?gAexwK3v-n2iDs&+%bTj zgAbQ0@`3&we7F#FnCH;*FX;If`g8E%ItKCqJqI5yUtF)C=itLNRH!TH`4`sPZx-BB z8(1Uzf}Y>ZxMyxb&%uW)mBen8K^(4T)n&%uWaS%`c<&%uYw z_qB#jJ`UGv<|_0Ye7N?vbp<|LQ)cr4K3sM?&%uYwZs$4paM^7>z=z8YaX`<(himF@ zKEQ{|ZtLp22lU^b?#Tz%w7`dJe|xc=eRa2*5l9C{8uT)w#OqCW>8uAe!$ z?qa#4MK`W_eX;ldKHet-{`-R1*)xa>9#@ZqxCx&j}rpSyd#0v|3r!~s1AA1>dWAK=4f zxAPo)xPFdrU4ajm-Oi66==sfzJ9GaB_s_wH%MST~p8r74!H4?-AFge$V}Iu5;eAd0 zLC=4n=itM248(!{9DKOi9^?ah{)7G;e7N?v^ZW;T4nADIhy!|lv*6B{{uAFh`8 z^_-s^rK^)8=sEas?GJHay&ZhGd=UrkpMwuq8;|*MY4?fkuemz0LC?X5>ln}vJP!vx zT)wC)^ylEig{yzf(Nm|;bMWEvMLwYCKUdHG?-KMHyxAg)(T)wM=;KOCN`2Zg-yVY~>;j-JhI@j3$ z_WRE`L(jp7>+=SP1A2Zl3pIWGEh@Zs`BT|v*m zhsziFxU~Dk_LlZcZ0OIyhigf2=lOZJesX#B?9UiL&%uZ57>EOU4nADIs4J|ugAexw zK3v<759s+X^c;M+_J?_n{v3R`mRV6(&~xzN@0X26_%Y+!y$8Z9_h=-u??c2OqBep{}6k;KQ{9 zkGg`MgAbQ4;((rm50@|M3jI0waQVLG=v-e8d*Z$h-ORXuc3W5A!?nNFLGaYX&$B}u zd;dH;=4K5d5>GX#`cWg>UnmEWBc>$5Xb6yc8KHZ+5epj;@I`}9uYwttLNDv zj@9$*5XbiC*&&YA^Xw4E>Uoc~Adc1Z>|W=>Q4nADI zTUSvuc1)q?;KQ{)bZ5tsb}ap_;7vd7jZz(!H3Hi^W)O^C%@41n;G}d?se=>Y-cTF zVuPN)LC@cy=itNjI4k0So`VmUFXs97=h?l+_QVT4e}kSUQd{Gfb~jcn!Owe;J%Wq* z0X+vFE?-=Cq37Vk^_VZ}3VIGcT)xN$^c;M+e31|6`5W~74SEhfT#qXwAJFrg1^48r z-!D_o(DS$L&pR&i0X@H&ai`Y6hilu$0X|%In-B2evfJww_;A^69N@!cw|WjfT#tn# z4)o{ezR>-fp|1F4+sV(x8-9DKMQzehfx=QlI%85ijJ&4N2)b=H+57+r2AJB8~;lAIY z=Yj4vzv$23q37Vkbqv%M^!y$DIrwnB=74;lKL;N!U(^-!9DKNZ5yz$7<+59Wdrbr% zu2(Y<2m14O==nSJ{2l!{_;4K;aX`<(hwIgm)j{y#vfJN@;KOByd_d2^hszgnT)p^{ zkA6$d+=8Bi57%okhy!{KK3u-9*W%}T06hmEE?-=)u3r4acKWS}4SN0#JqI7|8+^F7 zAr9y{_;C3uj=f%i57(?(4T`3_YFQ=+g3lohs$p33VgWi5C`-e ze7IgY+w0ZMjC;lpdJaBZ`$Jt}y&ZhGd=UrwbMWDMO%8Ejy&ZhGe31|6`OS=b#s%x` z;KOwc%n#`K2l{jH;l9C#Ya8N#o`VmUFXlP)9DKNZF+b3s-z>OuJ$SEP=6V1<|A3x< zK+iwWpMwwA>ypR^`g8E%zQKoU8?IMZ&;Ha4^!#SV{j)JH!D!|GawkXROel-^{pwcE|_x{PWW8QyWJErZ%AG;KO}?LeFm&+&RX{?;Hc` z?Vr$d@Zmb{&ht;`Irwn-A|KH6Pw4siZu9*c?qd8_;C3m4(RzO^!yY3IrwlL1M>s-&p)B(H#6=TQ}pNH!+n23&%uYwZh!B7LeD?Z zpMwt2&u5-q9_v+c7v4@_64;Ll@aX`;+ zX57DHARo|k@ZmZx;<&W?%#Xv~nS4Oc!H4?>AFge+Rsfb&S1U_3_c! z-_49WV+uZ8+g1nrfFt&|`2ZiT{p~ylA1*t@aXlmVoHO*ikB05}LC^b073>fP`g8E% zLU(Lk-7L6MSBIN&*Hs^L*>i!O_mL6UAr9y{_;BBSlmYuw9LNXs9DKMQA3{DZ?S94u zzdON)YkxaGz=z8YaX`<(hYO{Gd_d37bBwpf2V=!H)D`sn3wnOOC$h&tJ}!-a<_Ff> z!G}A$-(x_}!H3Hi`GB5-4;PB&_1bjm;JjNu^8xNzL$3Q>}0p6w@2(p9DET6^t>40i#VX? z;KPM!LmZdJR}K+nO4Yj?QrLeIg6%lCE8JYxVo z2Oln9)D`p`e7M5J{D7W+U)ufDUz$8~8td)g!*yKL71rCoq37VkeS;6zHsk|(4nADI z$OrTse7Jm(53INUT-trc^gQQ#kLk^fJGB8mT-$b@gAbS8&JXb6vfDVohs$o~Irwl* zkIe`8aM>Xa=sEas`EFg^EV#xweBwT94?bLY$DJSG!)3SEEAZj6+qwcDE<3~lJ-=CS zC$_^wnHqwggAdoG32|V({paf0pPGc8gAdm+P*>3Nn+11bJB)>i4SEhfT$fnX)ur9f zG3qb(7{~|u^B?H>5A^(I#y#VAY5c!!$OroKALu#wa3Mz#2lV_0>+L_#bMWDkD9m&8 z=itNTi}?XP2Oln9)D`sn=jz4Fd6!t!74-ZEdJaBZl8iW@=itNTi#VX?;KOxY!}SV! z{)6@QpG)JP`h%W>5BFS8|N9&G8PoDM^9XwWgZ>U#z#^%(#;`@Zs9Faexn(-Rk+xjC+m&JqI5y+%V#Ro`VmU z?_RIKhs$n%w}THC=6L4^_;A_nb@vzR?cl@ZyT7k~q31U z`M%DDGgtdFa}|8Je31|6`T0iaf3F8mY*=pxAFkgom>=lRf1&5U=+D82>llawdJaBZ zzL+0aZ@*b^&p4+6jm67*<>15BGQH;L89(&r;KSvMc@8}XAFj3xbp<^KA1+_abLctv zaQVKT^BJr29>$Cn^c;M+@83(~pYem9gAbQ4;((rm50@|M3VQwvJ-?Z8&pAWS!H26& z#`Ow%-b+L~FR|VZK3vCm&C$Q}!#szcgAZ35k9iI~2Oln9#Btp#e`=^>ObtQL!H4S@ zJI}#~t0&nw{_s2;_;C4d9N@!cw{-iC zcXjX&dJaBZzK8?s?SIg7@ZtI_z|M~z>Ycd&K3u+t19}cVT)v0{>+LrS?u_$!&T_^X z{rMmIbMWC>=0Y6M^FQeM&5V0$19}cVTuW(~AJB8~;qt}&xU~Bjt9sKJE9m+89`pUX z1bnz}@Zs8qII!OShyEOVxb}y9pg#v6E?>lf{v3R`mMjqm`g8E%@bxA1+_S0X_eN zp8sLJ9elWs@v3=GF8f_Kxy1c*@ZtId3a-20$$$@+FXqRk@lOpw&%uXlf3LCS+Y7(D zSUt~f=11FJV|&JV^*lSov3lOE4#cr~p55y?KV#b5pD|rM&lhp*dV6-r$Le{vVo+Dx zpJ#`$5Xb6yx9Jea>UnmEWBc>$5XY{!XNNde z&$B}ud;h#!i-=?OJUhg(dY&EP*!A}85Xb6yc8KHB?q@Efmopbu&%14kI9AWILmaE; z*&&YY&$Ck;xbCi=cU$*$?mu&I^*lSw^X<>G!#uyV`;6&t^L)m1*W26Q#sNNDx1u)= z@ZqxCIKYR?ZsPzSF1yu1@ZqvU9MJPO=sEas-DXD|&~xzN^4+?6gPwyAmoMUgo`Vnf ztUv$vH^`}jvkr3C0r+tFA|KFm@Zs{^`SAul2OqA-6i`>t^Ec=@_;BqHaX`<(hszgn zT+hBeW4gcPf53-p+g`5%9pAl6cCY8$F}l5lyg|?3pyzMUbMWDM^keno4SIgF;GXkK zx2CS3=jR(Y|E$T|_tIlu6>eBcp=g@QT;d;yn^8z=z9jue;#G^~f0FfS&i2pt2l{jH;qu*lM4!cRx32oM z;M$=-e@A}~K3tE@Ar9y{_;C5Yp7T=&&DE&`=sEas-EZ9M)jRYYe7JlO2lV`A#+`Z8 zPn{i8=sEasJx+*xTs`}94Cp!daP1FqTpIsxf0!T8^LOYu_;5V}i8!F=@959LhiiX` z19}cVT)xN$^!y!q4nACua-y!F=itNTi#VX?;KSv6&yQ#Tjq}V8=sEaseV!O`K+nO4 z%NKD#&%uYw7x_Sc{(fovQ>W1Ln*~=-@pJ;nk;KOwc)Ya9CKjTubdutT=}VFO7fl0X_eOo`Vn9YgEVw^!yX+?Kd;--?_Y=^NIJc&?jE# z`6v4Gn;G{U19}cVT(5&6AJB8~;qpaYLC-(YpMwwg13p~acAkGi&%uYw7xUxN?q}@# zeLrIlJ-?Z8&p1QR!H4_#yfprwFX{?<4nAD_+w1Np^c;M+AMoMYw)z1+Tz1F@`g8E% z@e>Hodz~}SHt6{$`g8E%em`63SV z=itNjS|zT#=+D82%lGx1Pi#j&CN}6f_;BqHaX`;Mq37Vk^?E4k3VQwtJqI7I{b7DU z&%uZ5wbcE+3qD+Sujl-XX>;KoQ}E&P-Rmy+aM^7f;KOCN`S?PAex6Ca@8^LJ*R!jy zu@zI>_ImXNJ^w;~4nAD_TmATgp5M&4=UkxYU(j>#;eNiL=U>os@Zs`BKG2_kVZHqe zdJaC^5BP9xLq4$H4nADIuXFzyKdiTZUD|!>`Hbn*GxQvMxL(KJ>lOHL*`cn`pMOEm z!G~*qs4M9C7uMUqpy%Mj^;$Xdf&Tnv!98Qz^?t?_dJaBZ$HhEHfBpqM2Oq9i;SmS) z9DKNZQCHCOFX;If`g8E%e!igRUzc{DF%3YzV~YM9e7KH*IH2cW=+D823mX9aK!5%P zJ^zB9gAdm+pdXjUKl2=V4nAD_LtR17zo6&f!-YveT|v*kuC?_im-s#2hwE3jpy%Mj zg=g4&fDf15Ua!E1%Wkh%;KOD2dd?@d!^XJhKKO9?Za%<=3p25L4nACVn~y$XIb#Yw zT)sO$z=z9jue*I1Z;yfgypNi_*qyOD@9)o8?fYuIGk`dt=Y1^d9= z=itNTi@JiI2gTa4f}RI@f*ta4t*xILI`6d3H3E7LK3u3A#DV@i7|5O<^gQSV><|am z+rfwX0Uxeym>-vRKjVVmn7tUi=LbFSg z19}cVT*pNm&~xzN@_;C56uAt}O!{v*7K+k`0{~Ua{ zLPH#vcAs%MoTsTF^ylEibqv(i)w4f2f}a0C&wp_L9DKM^v~>kOTy~oe@ZqxCIKYR? zZgmiRxa@X*fDiZ6%P2EHz=z8YaX`<(hs$^C3VgWiUeEcdjdFC?2KaDI1;lan?57UE zhilu;bMWD^LmbfaU+6jba81>nAHUFZ@Zs`BKA`8|!{v)Opy%Mj<@=hWXH22zzn6BO zT>hn7lS}mH;KTL4Ddq?C{JfWXuPJ~J*ZvR(^!yikelz2qF+hI~K3tbw!~s1AA1>e5 zb8bv~EO#{pe7G*{m>=lR!H3Hi^8`9^!yj=?cl?849pMc`R~=UKXE|M!H4Uo z!2aF^A1*u874-ZUdj1PN2Oq9uY(Bt;>!-@j5Afl#d(F`q7x3ZQw(}f(xa>9`;KOBy zIIf=kITz^p`HsnbO}v?L|9m$e;KPOZ-T47NTz31r{qNHF=eX$4!H4?+AFge$=X~Z& zeaXxj@Zs`B9ME&{;qpa3pyxL;?ui%uIrwlPl3!!{=Zm_6o`Vn9{*VvoIrwn>^v3+S zH2yh1=sEas?GJH4&;Ow3;KS7hylTZ$2VKWIr8E-W_UxO(<~`$Jt_+I_|k-&5}xxL!fe!G{ac{hFiaT%hOR!{v+XF7zCH zxO_3sq37Vk<%@X^J^w?04nABhC*pvfgAbQ4;((t2LC3NN84t8v~A*O+vKBdGe6ok^So_{ zWA(gchS%7NsBMU2`}6D&$F8?$hd3_nK4W^`Q<^bdJ#QIg=6Tx?$M)yhAs?5 z&+|nbtLNDvAFJmr-5`$b&$D|y=QCF4U5Xj2)$@E&SF7jQp{`cXvqN2Nf8G)l^09iJ z-D_;m*k9WH#G6Jxd3K0n^*lS|W7pfWLmaE; z*&&YA^OjE$$Le`@h-39UJH)a5d3K0n^*lSovHf{VzKCP*pJ#_SR?o9T9INNqz0T>U z{`R+bc8CLd4nAB<*L%GJA1=GSUV#sn-Rqn=*AnpI+V&dTKf8?se7Kg@Hy_}`Ww-eN zA1=Gi2l#N=ZC!y6mmT7Op5H9ElV5xjz1s$e1A2b?^J_gKU*rRN4nADIhy!{KK3umo zP*>ZZXNS6io`VmUFY*CB2Oloq)xkIDIrwnD;KQ{IaqRu`?2wO3yPrD1?`-hl+8^S8 zo`Vn9EhW?y^!yEa4nAD_Lq4GAZ_sn_;kvzrc@8~)gPy-Z&u?bjbIrLl{@*sl0X@H2 za3^o)*@gD;(jS2j*KIn?59m4gaQR}ML(ku!=itM&Kg@IJ`5W~74SEhfT%V|VJ?Ar4 zH4Hme&~xzN+8^`-dJaBZw?k1^&~xzN^2I!dp1(oQ-?l$*e~1Hm4nADBYd4N}==sfz zJ2ehIT-#oA^v`auSK!0tyK#UIm)%~kz=!L$^Ue?O;j-I&fDe});((rm50~%Gk9X)f z_;9iL5C`-ee7Jm(59m4gaQPx1mv%pMuxtCdT>a1g`M>}Be?5PxHqf7g50~BQ2l#N= zArAEC;KSvMIMAPi57*-dm>=lR-_f6g57+(>$JL9UF~#@o^Fm(ua6S5g`2jr#A1+_y19}cVT)xN$`tx`6=itNj zIm6ev(73czHP6^&hkQWK-=XK=!?i!e0X+vFuE%LmSJ3mD8CS0JMI4vL|Fgq&7ybD= z^c;M+jtl*Oo`Vn9qe8Dadd?4e4nADIufGYO{1(U5J@ot?dJaBZk1f5#HItPO(? zm+$5Se7Nj3AK=4fw{-~@}m50~9*j!u5ThilvGHSC`q z;=p=4_;5W&hB(llgAbQ4@`3&we7JlO$EER4Y|wM?;d=B9aiBj3A1+_Sf&LtPxO@=@ z`g8E%`kd?QoO$Afo`VmUFX{^Y`OSiROUTZ5JUiCQ?`$HU;cAtEl?-@=$py%Mj{q_a)Js0%n z;KSvMIH2b(4B!~JUO~_MDhPa0SI~3t;d=ZObp<^KA1+_S0X+vFE?>j}JqI7I$74}f z&~xzN^2IzKJ+FrP?K3q5J^z57gAdo|owu&Qhs$pB0X|%I8wdDs*}ZCa^P}ba`8Gm! zn-B2e`Xn{tKz|NCT)sO$z=z9j>*^DFelz3BSH6e?{WJx;xK1wLGMhy(rkC-fYA zxc2vY&QFf2wY&a4q355_bMWE%L^$dSdJaBZzOUD&bAD&dcg_#}IrwnxZ?9M2!}W+d z@&P>uA1+_a59s;l)r+6l&N|Y>hWhwHI=!~s1AA1+_S0X+vFF5lO=|I82Q zIrwnBE`)gwJqI5yU(65m=itNT`&w(yIbRz8Z`8uKghn^ylEi_38-XK!5%T zJqI7I{h_X)=bzAX@ZtJ=z|Ifw;j-H}Zf4x67x3ZQw)p@bF1y#c@La?C&DwrndJ^#A zdi4fzK+nO4%XjBF_;A@F4(K`faQVK*_KX$u9DKN5A$lGAGcF%#=!^^W9DKO;hd9um zgAbQ4;((rm5BCc`T-#p9{)r90S$j%uGzxsU_P6t+JDBiA9MJPtJl7X`4nAD3biKy* z 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 200 VDC 9.6 mm 6.4 mm 30.0 mm -Table 12 – Minimum Spacings -23 -EV2.23 Insulation. -EV4.1.12 All electrical insulating material must be appropriate and adequately robust for the application -in which it is used. -EV4.1.13 Insulating materials used for TS insulation or TS/GLV segregation must: -1. Be UL recognized (i.e., have an Underwriters Laboratories -24 -or equivalent rating and -certification). -2. Must be rated for the maximum expected operating temperatures at the location of use, or -the temperatures listed in Table 13 (whichever is greater). -3. Must meet the minimum thickness requirements listed in Table 13 -4. The TS/GLV requirement also applies to TS to chassis ground insulation. -Minimum -Temperature -Minimum Thickness -TS / GLV -(see Note below) -150º C 0.25 mm -TS / TS -TS/Chassis -Ground -90º C -As required to be rated for -the full TS voltage -Table 13 - Insulating Material - Minimum Temperatures and Thicknesses -Note: For TS/GLV isolation, insulating material must be used in addition to any insulating -covering provided by the wire manufacturer. -EV4.1.14 Insulating materials must extend far enough at the edges to meet spacing and creepage -requirements between conductors. -22 -Outside of the accumulator container TS/TS spacing should comply with standard industry practice. -23 -Teams that have pre-existing systems built to comply with Table 10 in the 2016 rules will be permitted -24 -http://www.ul.com - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.1.15 Thermoplastic materials such as vinyl insulation tape may not be used. Thermoset materials -such as heat-shrink and self-fusing tapes (typically silicone) are acceptable. -Figure 36 – Creepage Distance Example -EV2.24 Printed circuit board (PCB) isolation -Printed circuit boards designed and/or fabricated by teams must comply with the following: -EV4.1.16 If tractive system circuits and GLV circuits are on the same circuit board they must be on -separate, clearly defined areas of the board. Furthermore, the tractive system and GLV areas -must be clearly marked on the PCB. -EV4.1.17 Prototyping boards having plated holes and/or generic conductor patterns may not be used for -applications where both GLV and TS circuits are present on the same board. Bare perforated -board may be used if the spacing and marking requirements in EV5.5.3 and EV5.5.1 are met, -and if the board is removable for inspection. -EV4.1.18 Required spacings between TS and GLV conductors are shown in Table 14. If a -cut or hole in the PC board is used to allow the “through air” spacing, the cut must not be plated -with metal, and the distance around the cut must satisfy the “over surface” spacing requirement. -Spacings between TS and GLV conductors on inner layers of PCBs may be reduced to the -“through air” spacings. -Maximum Vehicle TS Voltage -Spacing -Over surface Through air -Under -Conformal -Coating - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -0-50 V 1.6 mm 1.6 mm 1 mm -50-150 V 6.4 mm 3.2 mm 2 mm -150-300 V 8.5 mm 6.4 mm 3mm -301-600V 12.7 mm 9.5 mm 4 mm -Table 14 – PCB TS/GLV Spacings -Note: Teams must be prepared to demonstrate spacings on team-built equipment. Information -on this must be included in the ESF (EV13.1). If integrated circuits are used such as opto- -couplers which are rated for the respective maximum tractive system voltage, but do not fulfill -the required spacing, then they may still be used and the given spacing do not apply. This applies -to the pin-to-pin through air and the pin-to-pin spacing over the package surface, but does not -exempt the need to slot the board where pads would otherwise be too close. -1. Teams must supply high resolution (min. 300 dpi at 1:1) digital photographs of team- -designed boards showing: -(i) All layers of unpopulated boards (inner layers or top/bottom layers that don’t -photograph well can be provided as copies of artwork files.) -(ii) Both top and bottom of fully populated and soldered boards. -EV4.1.19 If dimensional information is not obvious (i.e. 0.1 in x 0.1 in spacing) then a dimensional -reference must be included in the photo. Spare boards should be made available for inspection. -Teams should also be prepared to remove boards for direct inspection if asked to do so during -the technical inspection. -EV4.1.20 Printed circuit boards located inside the accumulator container and having tractive system -connections on them must be fused to limited the power on the board to 600 watt or less, with -the exception of precharge and discharge circuits. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV3 FUSING - GENERAL -EV4.1.21 All electrical systems (including tractive system, grounded low voltage system and charging -system) must be appropriately fused. -EV4.1.22 The continuous current rating of a fuse must not be greater than the continuous current rating -of any electrical component that it protects. This includes wires, bus bars, battery cells or other -conductors. See Appendix E for ampacity rating of copper wires. A manufacturer's current -rating may be used for TS wiring if greater than the Appendix E value. -Note: Many fuses have a peak current capability significantly higher than their continuous -current capability. Using such a fuse allows using a relatively small wire for a high peak -current, because the rules only require the wire to be sized for the continuous current rating of -the fuse. -EV4.1.23 All fuses must be rated for the highest voltage in the systems they protect. -EV4.1.24 Fuses used for DC must be rated for DC, and must carry a DC voltage rating -equal to or greater than the maximum voltage of the system in which they are used -25 -. -EV4.1.25 All fuses must have an interrupt current rating which is higher than the theoretical short circuit -current of the system that it protects. -EV4.1.26 The fuse protecting a circuit or must be physically located at the end of the wiring closest to an -uncontrolled energy source (e.g., a battery). -Note: For this rule, a battery is considered an energy source even for wiring intended for -charging the battery, because current could flow in the opposite direction in a fault scenario. -EV4.1.27 Circuits with branches using smaller wire than the main circuit require fuses or other current -limiting means (such as circuit breakers or suitably-rated current-limiting resistors) located at -the branching point, if the branch wire is too small to be protected by the main fuse for the -circuit. -Note: For further guidance on fusing, see the Fusing Tutorial found here: -https://drive.google.com/drive/u/0/search?q=fusing%20tutorial -25 -Note that where a voltage rating is not specified as AC or DC it is assumed to be an AC rating. The DC rating -must be specifically called out in order for the fuse to be accepted as DC rated. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV4 SHUTDOWN CIRCUIT AND SYSTEMS -EV4.1 Shutdown Circuit -The shutdown circuit is the primary safety system within a Formula Hybrid + Electric vehicle. -It consists of a current loop that holds the Accumulator Isolation Relays (AIRs) closed. If the -flow of current through this loop is interrupted, the AIRs will open, disconnecting the -vehicle’s high voltage systems from the source of that voltage within the accumulator -container. -Shutdown may be initiated by several devices having different priorities as shown in the -following table. -Figure 37 - Priority of shutdown sources -EV4.1.28 The shutdown circuit must consist of at least: -1. Grounded Low Voltage Master Switch (GLVMS) See: EV7.3 -2. Tractive System Master Switch (TSMS) See: EV7.4 -3. Two side mounted shutdown buttons (BRBs) See: EV7.5 -4. Cockpit-mounted shutdown button. See: EV7.6 -5. Brake over-travel switch. See: T7.3 -6. A normally open (N.O.) relay controlled by the insulation monitoring device (IMD). See: -EV7.9 and Figure 38. -7. A normally open (N.O.) relay controlled by the accumulator management system (AMS). -See: EV2.11 and Figure 38. -8. All required interlocks. -9. Both IMD and AMS must use mechanical latching means as described in Appendix G. -Latch reset must be by manual push button. Logic-controlled reset is not allowed. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -10. If CAN communication are used for safety functions, a relay controlled by an -independent CAN watchdog device that opens if relevant CAN messages are not -received. This relay is not required to be latching. -EV4.1.29 Any failure causing the GLV system to shut down must immediately deactivate the tractive -system as well. -EV4.1.30 The safety shutdown loop must be implemented as a series connection (logical AND) of all -devices included in EV7.1.1. Digital logic or microcontrollers may not be used for this -function. Normally open auxiliary relays may be used to power high-current devices such as -fans, pumps etc. The AIRs must be powered directly by the current flowing through the loop. -EV4.1.31 All components in the shutdown circuit must be rated for the maximum continuous current in -the circuit (i.e. AIR and relay current). -Note: A normally-open relay may be used to control AIR coils upon application to the rules -committee. -EV4.1.32 In the event of an AMS, IMD or Brake over-travel fault, it must not be possible for the driver to -re-activate the tractive system from within the cockpit. This includes “cycling power” through -the use of the cockpit shutdown button. -Note: Resetting or re-activating the tractive system by operating controls which cannot be -reached by the driver -26 -is considered to be working on the car. -EV4.1.33 Electronic systems that contain internal energy storage must be prevented from feeding power -back into the vehicle GLV circuits in the event of GLV shutdown. -26 -This would include the use of a wireless link remote from the vehicle. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -*GLV fuse to comply with EV6.1.7 -Figure 38 - Example Master Switch and Shutdown Circuit Configuration -EV4.2 Master Switches -EV4.1.34 Each vehicle must have two Master Switches: -1. Grounded Low Voltage Master Switch (GLVMS) -2. Tractive System Master Switch (TSMS). -EV4.1.35 Both master switches must be located on the right side of the vehicle, in proximity to the Main -Hoop, at the driver’s shoulder height and be easily actuated from outside the car. -EV4.1.36 Both master switches must be of the rotary type, with a red, removable key, similar to the one -shown in Figure 39. -EV4.1.37 Both master switches must be direct acting. i.e. they may not operate through a relay. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.1.38 Removable master switches are not allowed, e.g. mounted onto removable body work. -EV4.1.39 The function of each switch must be clearly marked with “GLV” and “TSV”. -EV4.1.40 The “ON” position of both switches must be parallel to the fore-aft axis of the vehicle -EV4.3 Grounded Low Voltage Master Switch (GLVMS) -EV4.1.41 The GLVMS is the highest priority shutdown and must disable power to all GLV electrical -circuits. This includes the alternator, lights, fuel pump(s), I.C. engine ignition and electrical -controls. -EV4.1.42 All GLV current must flow through the GLVMS. -EV4.1.43 Vehicles with GLV charging systems such as alternators or DC/DC converters must use a -multi-pole switch to isolate the charging source from the GLV as illustrated in Figure 38 -27 -. -EV4.1.44 The GLVMS must be identified with a label with a red lightning bolt in a blue triangle. (See -Figure 40) -EV4.4 Tractive System Master Switch (TSMS) -EV4.1.45 The TSMS must open the Tractive System shutdown circuit. -EV4.1.46 The TSMS must be the last switch in the loop carrying the holding current to the AIRs. (See -Figure 38) -Figure 39 - Typical Master Switch -27 -https://www.pegasusautoracing.com/productdetails.asp?RecID=1464 - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Figure 40 - International Kill Switch Symbol -EV4.5 Side-mounted Shutdown Buttons (BRB) -The side-mounted shutdown buttons (Big Red Buttons – or BRBs) are the first line of defense -for a vehicle that is malfunctioning or in trouble. Corner and safety workers are instructed to -push the BRB first when responding to an emergency. -EV4.1.47 One button must be located on each side of the vehicle behind the driver’s compartment at -approximately the level of the driver’s head. They must be installed facing outward and be -easily visible from the sides of the car. -EV4.1.48 The side-mounted BRBs must be red and a minimum of 38 mm. in diameter. -EV4.1.49 The side-mounted shut-down buttons must be a push-pull or push-rotate emergency switch -where pushing the button opens the shutdown circuit. -EV4.1.50 The side-mounted shutdown buttons must shut down all electrical systems with the exception -of the high-current connection to the engine starter motor. -EV4.1.51 The shut-down buttons may not act through logic such as a micro-controller or relays. -EV4.1.52 The shutdown buttons may not be easily removable, e.g. they may not be mounted onto -removable body work. -EV4.1.53 The Side-mounted BRBs must be identified with a label with a red lightning bolt in a blue -triangle. (See Figure 40) -EV4.6 Cockpit Shutdown Button (BRB) -EV4.1.54 One shutdown button must be mounted in the cockpit and be easily accessible by the driver -while fully belted in and with the steering wheel in any position. -EV4.1.55 The cockpit shut-down button must be a push-pull or push-rotate emergency switch where -pushing the button opens the shutdown circuit. The cockpit shutdown button must be red and at -least 24 mm in diameter. -EV4.1.56 Pushing the cockpit mounted button must open the AIRs and shut down the I.C. engine. (See: -Figure 37) - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.1.57 The cockpit shutdown button must be driver resettable. i.e. if the driver disables the system by -pressing the cockpit-mounted shutdown button, the driver must then be able to restore system -operation by pulling the button back out. -Note: There must still be one additional action by the driver after pulling the button back out -to reactivate the motor controller per EV7.7.2. -EV4.1.58 The cockpit shut-down buttons may not act through logic such as a micro-controller or relays. -EV4.7 Vehicle Start button -EV4.1.59 The GLV system must be powered up before it is possible to activate the tractive system -shutdown loop. -EV4.1.60 After enabling the shutdown circuit, at least one action, such as pressing a “start” button must -be performed by the driver before the vehicle is “ready to drive”. i.e. it will respond to any -accelerator input. -EV4.1.61 The “start” action must be configured such that it cannot inadvertently be left in the “on” -position after system shutdown. -EV4.8 Shutdown system sequencing -EV4.1.62 A recommended sequence of operation for the shutdown circuit and related systems is shown -in the form of a state diagram in Figure 41. -EV4.1.63 Teams must: -1. Demonstrate that their vehicle operates according to this state diagram, -OR -2. Obtain approval for an alternative state diagram by submitting an electrical rules query -on or before the ESF submission deadline, and demonstrate that the vehicle operates -according to the approved alternative state diagram. -IMPORTANT NOTE: If during technical inspection, it is found that the shutdown -circuit operates differently from the standard or approved alternative state diagram, the -car will be considered to have failed inspection. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Figure 41 - Example Shutdown State Diagram -EV4.9 Insulation Monitoring Device (IMD) -EV4.1.64 Every car must have an insulation monitoring device installed in the tractive system. -EV4.1.65 The IMD must be designed for Electric Vehicle use and meet the following criteria: robustness -to vibration, operating temperature range, availability of a direct output, a self-test function, and -must not be powered by the system that is monitored. The IMD must be a stand-alone unit. -IMD functionality integrated in an AMS is not acceptable (Bender A-ISOMETER ® iso-F1 -IR155-3203, IR155-3204, and Iso175C-32-SS are recommended examples). -EV4.1.66 The response value of the IMD needs to be set to no less than 500 ohm/volt, related to the -maximum tractive system operation voltage. -EV4.1.67 In case of an insulation failure or an IMD failure, the IMD must shut down all the electrical -systems, open the AIRs and shut down the I.C. drive system. (Some GLV systems such as -accumulator cooling pumps and fans, may remain energized – See Figure 37) -EV4.1.68 The tractive system must remain disabled until manually reset by a person other than the -driver. It must not be possible for the driver to re-activate the tractive system from within the -car in case of an IMD-related fault. -EV4.1.69 Latching circuitry added by teams to comply with EV7.9.5 must be implemented using -electro-mechanical relays. (See Appendix G – Example Relay Latch Circuits.) - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.1.70 The status of the IMD must be displayed to the driver by a red indicator light in the cockpit. -(See EV9.4). The indicator must show the latched fault and not the instantaneous status of the -IMD. -Note: The electrical inspectors will test the IMD by applying a test resistor between tractive -system (positive or negative) and GLV system ground. This must deactivate the system. -Disconnecting the test resistor may not re-activate the system. i.e. the tractive system must -remain inactive until it is manually reset. -EV4.1.71 The IMD high voltage sense connections may be unfused if wiring is less than 30 cm in -length, is less than or equal to #16 wire gauge, has an insulation voltage rating of at least 600V, -and is “double insulated” (e.g. has additional sleeving on both conductors). If any of these -conditions is not met, the IMD HV sense connections must be fused in accordance with -EV3.2.3 and ARTICLE EV6. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV5 GROUNDING -EV4.10 General -EV5.1.1 All accessible metal parts of the vehicle (except for GLV system components) must have a -resistance below 300 mΩ to GLV system ground. -Accessible parts are defined as those that are exposed in the normal driving configuration or -when the vehicle is partially disassembled for maintenance or charging. -EV5.1.2 All non-metal parts of the vehicle containing conductive material (e.g. coated metal, carbon -fiber parts, etc.) that could potentially become energized (including post collision or accident), -no matter if tractive system or GLV, must have a resistance below 100 ohms to GLV system -ground. -NOTE: Carbon fiber parts may require special measures such as imbedding copper mesh or -similar modifications to keep the ground resistance below 100 ohms. -EV5.1.3 If exposed heat sinks are used in any TS system, they must be properly grounded to the GLV -system ground. -EV5.1.4 Grounding conductors or straps used for compliance with this section must be a minimum of 16 -AWG and be stranded. -Note: For GLV system grounding conductor size see EV4.1.4. -EV5.1.5 Grounding Tests: Electrical conductivity of a part may be tested by checking any point on the -vehicle which is likely to be conductive, for example the driver's harness attachment bolts. -Where no convenient conductive point is available then an area of coating may be removed. -Note: If the resistance measurement displayed by a conventional two-wire meter is slightly -higher than the requirement, a four-terminal measurement technique may be used. If the four- -terminal measurement (which is more accurate) meets the requirement, then the vehicle passes -the test. -See: https://en.wikipedia.org/wiki/Four-terminal_sensing -EV5.1.6 Vehicles that use CANbus as a fundamental element of the safety shutdown system (e.g., AMS -communication) will be required to document and demonstrate shutdown equivalent to BRB -operation if CAN communication is interrupted. A solution to this requirement may be a -separate device with relay output that monitors CAN traffic. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV6 SYSTEM STATUS INDICATORS -EV4.11 Tractive System Active Lamp (TSAL) -EV6.1.1 The car must be equipped with a TSAL mounted under the highest point of the main roll hoop -which must be lit and clearly visible any time the AIR coils are energized. -EV6.1.2 The TSAL must be red. Indicators meeting the requirements of FSAE EV6.9 which show green -for TS not present are also acceptable. -EV6.1.3 The TSAL must flash continuously with a frequency between 2 Hz and 5 Hz. -EV6.1.4 It must not be possible for the driver's helmet to contact the TSAL. -EV6.1.5 The TSAL must be clearly visible from every horizontal direction, (except for the small angles -which are covered by the main roll hoop) even in very bright sunlight. -EV6.1.6 The TSAL must be visible from a person standing up to 3 m away from the TSAL itself. The -person's minimum eye height is 1.6 m. -NOTE: If any official e.g. track marshal, scrutineer, etc. considers the TSAL to not be easily -visible during track operations the team may not be allowed to compete in any dynamic event -before the problem is solved. -EV6.1.7 It is prohibited to mount other lights in proximity to the TSAL. -EV6.1.8 The TSAL must be lit and clearly visible any time the voltage outside the accumulator -containers is above a threshold calculated as the higher value of 60V or 50% of the nominal -accumulator voltage. Operation below Vmin is allowed, but the TSAL must extinguish at -voltages below 20V. The TSAL system must be powered entirely by the tractive system and -must be directly controlled by voltage being present at the output of the accumulator (no -software control is permitted). -EV6.1.9 TS wiring and/or voltages must not be present at the TSAL lamps. -Note: This requirement may be met by locating an isolated dc-dc converter inside a TS -enclosure, and connecting the output of the dc-dc converter to the lamp. -(Because the voltage driving the lamp is considered GLV, one side of the voltage driving the -lamps must be ground-referenced by connecting it to the frame in order to comply with -EV4.1.4.) -EV4.12 Ready-to-Drive Sound -EV6.1.10 The car must make a characteristic sound, for a minimum of 1 second and a maximum of 3 -seconds, when it is ready to drive. (See EV7.7) -Note: The car is ready to drive as soon as the motor(s) will respond to the input of the torque -encoder / accelerator pedal. -EV6.1.11 The emitting device must produce a tone between 1000 and 3500 Hz with a minimum -loudness of 80dBA measured at any point in a 2m radius around the vehicle from the emitter -28 -. -EV6.1.12 The sound level will be measured with a commercial sound level meter from three points, one -in the front, and one from each side of the vehicle. -28 -Some compliant devices can be found here: https://www.mspindy.com/ - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV6.1.13 The vehicle must not make any other sounds similar to the Ready-to-Drive sound. -EV4.13 Electrical Systems OK Lamps (ESOK) -ESOK indicator lamps are required for hybrid and hybrid-in-progress vehicles. They are not -required for electric-only vehicles. -The purpose of the ESOK indicators is to ensure that a hybrid vehicle is operating with the -electric traction system engaged, and to prevent IC-only operation in dynamic events. -This requirement is in addition to TSAL indicators which are required for all vehicle classes. -EV6.1.14 Hybrid vehicles must have two ESOK lamps. One mounted on each side of the roll bar in the -vicinity of the side-mounted shutdown buttons (EV7.5) that can easily be seen from the sides of -the vehicle.The indicators must be Amber, complying with DOT FMVSS 108 for trailer -clearance lamps -29 -. See Figure 42. They must be clearly labeled “ESOK”. -EV6.1.15 The ESOK indicators must be powered from the circuit feeding the AIR (contactor) coils. If -there is an electrical system fault, or a “BRB” is pressed, or the TS master switch is opened, the ESOK -indicators must extinguish. See Figure 38 for an example of ESOK lamp wiring. -See Figure 38 for an example of ESOK lamp wiring. -Figure 42 – Typical ESOK Lamp -EV4.14 Insulation Monitoring Device (IMD) -EV6.1.16 The status of the IMD must be shown to the driver by a red indicator light in the cockpit that is -easily visible even in bright sunlight. This indicator must light up if the IMD detects an -insulation failure or if the IMD detects a failure in its own operation e.g. when it loses reference -ground. -EV6.1.17 The IMD indicator light must be clearly marked with the lettering “IMD” or “GFD” (Ground -Fault Detector). -EV4.15 Accumulator Voltage Indicator -EV6.1.18 Any removable accumulator container must have a prominent indicator, such as an LED, that -is visible through a closed container that will illuminate whenever a voltage greater than 60 -VDC is present at the vehicle side of the AIRs. -EV6.1.19 The accumulator voltage indicator must be directly controlled by voltage present at the -container connectors using analog electronics. No software control is permitted. -29 -https://www.ecfr.gov/cgi-bin/text-idx?node=se49.6.571_1108 - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV4.16 Accumulator Monitoring System (AMS) -EV6.1.20 The status of the AMS must be shown to the driver by a red indicator light in the cockpit that -is easily visible even in bright sunlight. This indicator must light up if the AMS detects an -accumulator failure or if the AMS detects a failure in its own operation. -EV6.1.21 The AMS indicator light must be clearly marked with the lettering “AMS”. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV5 ELECTRICAL SYSTEM TESTS -Note: During electrical tech inspection, these tests will normally be done in the following -order: IMD test, insulation measurement, AMS function then Rain test. -EV5.1 Insulation Monitoring Device (IMD) Test -EV6.1.22 The insulation monitoring device will be tested during Electrical Tech Inspection. This is done -by connecting a resistor between the TSMP (See Figure 43) and several electrically conductive -vehicle parts while the tractive system is active, as shown in the example below. -EV6.1.23 The test is passed if the IMD shuts down the tractive system within 30 seconds at a fault -resistance of 250 ohm/volt (50% below the response value). -Note: Allowance for the 2 x 10K TSMP resistors can be included in this test. -EV6.1.24 The IMD test may be repeated at any time during the event. After the car passes the test for the -first time, critical parts of the tractive system will be sealed. The vehicle is not allowed to take -part in any dynamic event if any of the seals are broken until the IMD test is successfully -passed again. -Figure 43 – Insulation Monitoring Device Test -EV5.2 Insulation Measurement Test -EV6.1.25 The technical inspectors may choose to measure the insulation resistance between the tractive -system and control system ground. The available measurement voltages are 250 V, 500 V and -750 V DC. -All cars will be measured with the next available voltage level. For example, a 175 V system -will be measured with 250 V; a 300 V system will be measured with 500 V, and a 600 V -system will be measured with 750 V etc. -EV6.1.26 To pass the insulation measurement test, the measured insulation resistance must be at least -500 ohm/volt related to the maximum nominal tractive system operation voltage. -EV5.3 Tractive System Measuring Points (TSMP) -The TSMPs are used for the IMD and insulation tests, and also for the 5 second discharge rule, -EV2.8.3. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -They may also be used to ensure the isolation of the tractive system of the vehicle during -possible rescue operations after an accident or when work on the vehicle is to be done. -EV6.1.27 Two tractive system voltage measuring points must be installed in an easily accessible -30 -well -marked location. Access must not require the removal of body panels. The TSMP jacks must be -marked "Gnd", "TS+" and "TS-". -EV6.1.28 The TSMPs must be protected by a non-conductive housing that can be opened without tools. -EV6.1.29 Shrouded 4 mm banana jacks that accept shrouded (sheathed) banana plugs with non- -retractable shrouds must be used for the TSMPs and the system ground measuring point -(EV10.3.6). -See Figure 44 for examples of the correct jacks and of jacks that are not permitted because they -do not accept the required plugs (also shown). -EV6.1.30 The TSMPs must be connected, via current limiting resistors, to the positive and negative -motor controller/inverter supply lines. (See Figure 38) The TSMP must measure motor -controller input voltage even if segmenting or TSMS switches are opened. -EV6.1.31 The wiring to each TSMP must be protected with a current limiting resistor sized per Table 15. -(Fuses or other forms of overcurrent protection are not permitted). The resistor must be located -as close to the voltage source as practical and must have a power rating of: -Maximum TS Voltage Resistor Value -<= 200 V** 5 kΩ -201 – 400 V 10 kΩ -401 – 600 V 15 kΩ -Table 15-TSMP Resistor Values -31 -The resistor must be located as close to the voltage source as practical and must have a -power rating of: -2 ( -𝑇𝑆𝑉 -𝑚𝑎𝑥 -2 -𝑅 -) -but not less than 5 W. -EV6.1.32 A GLV system ground measuring point must be installed next to the TSMPs. This measuring -point must be connected to the GLV system ground, must be a 4 mm shrouded banana jack and -marked "GND". -30 -It should be possible to insert a connector with one hand while standing next to the car. -31 -Teams with vehicles with Maximum TS Voltage of 200 V or less may use existing 10 kΩ resistor values upon -application to the rules committee - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Figure 44 -EV5.4 Accumulator Monitoring System (AMS) Test -EV6.1.33 The AMS will be tested in one of two ways: -1. By varying AMS software setpoints so that actual cell voltage is above or below the trip limit. -2.The AMS may be tested by varying simulated cell voltage to the AMS test connector, following -open accumulator safety procedures, to make the actual cell voltage above or below the -trip limit. -EV6.1.34 The requirement for an AMS test port for commercial accumulator assemblies may be waived, -or alternate tests may be substituted, upon application to the rules committee. -EV5.5 Rain test -EV6.1.35 Vehicles that pass the rain test will receive a “Rain Certified” sticker and may be operated in -damp or wet conditions. See: ARTICLE D3 -If a vehicle does not pass the rain test, or if the team chooses to forego the rain test, then the -vehicle is not rain certified and will not be allowed to operate in damp or wet conditions. -EV6.1.36 During the rain test: -1. The tractive system must be active. -2. It is not allowed to have anyone seated in the car. -3. The vehicle must be on stands such that none of the driven wheels touch the ground. -EV6.1.37 Water will be sprayed at the car from any possible direction for 120 seconds. The water spray -will be rain-like. There will be no high-pressure water jet directed at the car. -EV6.1.38 The test is passed if the IMD does not trip while water is sprayed at the car and for 120 -seconds after the water spray has stopped. Therefore, the total time of the rain test is 240 -seconds, 120 seconds with water-spray and 120 seconds without. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV6.1.39 Teams must ensure that water cannot accumulate anywhere in the chassis. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV1 POUCH TYPE LITHIUM-ION CELLS -Important Note: Designing an accumulator system utilizing pouch cells is a substantial -engineering undertaking, which may be avoided by using prismatic or cylindrical cells. -EV5.6 Accumulator systems using pouch cells must address: stack arrangement, cell expansion -and compression requirements, mechanical constraint, and tab connections. -EV5.7 Teams wishing to use pouch cell accumulator systems must provide details of the design, -for review, in their ESF1 and ESF2 submissions. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV6 HIGH VOLTAGE PROCEDURES & TOOLS -The following rules relate to procedures that must be followed during the Formula Hybrid + -Electric competition. It is strongly recommended that these or similar rules be instituted at the -team's home institutions. -It is also important that all team members view the Formula Hybrid + Electric electrical safety -lecture, which can be found here: -https://www.youtube.com/watch?v=f_zLdzp1egI&feature=youtu.be -EV6.1 Working on Tractive Systems or accumulators -EV6.1.40 Teams must establish a formal lockout/tagout procedure that is documented in the ESF, and -that all team members know and follow. -EV6.1.41 Whenever the accumulator containers are opened the accumulator segments must be separated -by using the maintenance plugs. (See EV2.7). -EV6.1.42 If the organizers have provided a “Designated Charging Area”, then opening of or working on -accumulator containers is only allowed in that charging area (see EV12.2) and during Electrical -Tech Inspection. -EV6.1.43 Whenever the accumulator is being worked on, only appropriate insulated tools may be used. -EV6.1.44 Whenever the accumulator is open or being worked on, a “Danger High Voltage” sign (or -other warning device provided by the organizers) must be displayed. -Note: Be sure to remove the warning sign or indicator once the hazards are no longer present. -EV6.2 Charging -EV6.1.45 If the organizers have provided a “Designated Charging Area”, then charging tractive system -accumulators is only allowed inside this area. -EV6.1.46 The chassis or frame of the vehicle must be securely connected to earth ground using a -(minimum) 16 AWG green wire during charging. -Note: Earth ground can be a water pipe or metal electrical conduit permanently installed at the -competition site. -EV6.1.47 If the organizers have provided “High Voltage” signs and/or beacons, these must be displayed -prominently while charging. -EV6.1.48 The accumulators may be charged inside the vehicle or outside if fitted with a removable -accumulator container. -EV6.1.49 During charging, the accumulator containers or the car itself (depending on whether the -accumulators are charged externally or internally) must have a prominent sign with the -following data: -1. Team name -2. RSO Name with cell phone number(s). -EV6.1.50 Only chargers reviewed and sealed in the garages by tech inspectors are allowed. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -EV6.1.51 All connections of the charger(s) must be isolated and covered, with intact strain relief and no -fraying of wires. -EV6.1.52 No work is allowed on any of the car’s systems during charging if the accumulators are -charging inside of or connected to the car. -EV6.1.53 No grinding, drilling, or any other activity that could produce either sparks or conductive -debris is allowed in the charging area. -EV6.1.54 At least one team member who has knowledge of the charging process must stay with the -accumulator(s) / car during charging. -EV6.1.55 Moving accumulator cells and/or stack(s) around at the event site is only allowed inside a -completely closed accumulator container. -EV6.1.56 High Voltage wiring in an offboard charger does not require conduit; however, it must be a -UL listed flexible cable that complies with NEC Article 400; jacketed. -EV6.1.57 The vehicle charging connection must be appropriately fused for the rating of its connector -and cabling in accordance with EV6.1.1. -EV6.1.58 The vehicle charging port must only be energized when the tractive system is energized and -the TSAL is flashing. -i.e. there must be no voltage present on the charging port when the tractive system is de- -energized. -EV6.1.59 If charging on the vehicle, AMS and IMD systems must be active during charging. The -external charging system must shut down if there is an AMS or IMD fault, or if one of the -shutdown buttons (See EV7.5) is pressed. If charging off the vehicle, equivalent AMS and IMD -protection must be provided. If charging off the vehicle, the charging cart and any exposed -metal must be connected to ac-power ground. -EV6.3 Accumulator Container Hand Cart -EV6.1.60 In case removable accumulator containers are used in order to accommodate charging, a hand -cart to transport the accumulators must be presented at Electrical Tech Inspection. -EV6.1.61 The hand cart must have a brake such that it can only be released using a dead man's switch, -i.e. the brake is always on except when someone releases it by pushing a handle for example. -EV6.1.62 The brake must be capable to stop the fully loaded accumulator container hand cart. -EV6.1.63 The hand cart must be able to carry the load of the accumulator container(s). -EV6.1.64 The hand cart(s) must be used whenever the accumulator container(s) are transported on the -event site. -EV6.4 Required Equipment -Each team must have the following equipment accessible at all times during the event. The -equipment must be in good condition, and must be presented during technical inspection. (See -also Appendix F) -1. Multimeter rated for CAT III use with UL approval. (Must accept shrouded banana -leads.) -2. Multimeter leads rated for CAT III use with shrouded banana leads at one end and -probes at the other end. The probes must have finger guards and no more than 3 mm of - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -exposed metal. (Heat shrink tubing may be used to cover additional exposed metal on -probes.) -3. Multimeter leads rated for CAT III use with shrouded banana plugs at both ends. -4. Insulated tools. (i.e. screwdrivers, wrenches etc. compatible with all fasteners used -inside the accumulator housing.) -5. Face shield which meets ANSI Z87.1-2003 -6. HV insulating gloves (tested within the last14 Months) plus protective outer gloves. -7. HV insulating blanket(s) of sufficient size and quantity to cover the vehicle’s -accumulator(s). -8. Safety glasses with side shields (ANSI Z87.1-2003 compliant) for all team members. -Note: All electrical safety items must be rated for at least the maximum tractive system -voltage. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV7 REQUIRED ELECTRICAL DOCUMENTATION -EV7.1 Electrical System Form – Part 1 -Part 1 of the ESF requests preliminary design information. This is so that the technical -reviewers can identify areas of concern early and provide feedback to the teams. -EV7.2 Electrical System Form – Part 2 -Note: Many of the fields in Part 2 ask for the same information that was entered in Part 1. -This information must be reentered in Part 2. However it is not expected that the fields will -contain identical information, since many aspects of a design will change as a project evolves. -EV6.1.65 The final ESF must illustrate the interconnection of all electric components including the -voltage level, the topology, the wiring in the car and the construction and build of the -accumulator(s). -EV6.1.66 Teams must present data pages with rated specifications for all tractive system parts used and -show that none of these ratings are exceeded (including wiring components). This includes -stress caused by the environment e.g. high temperatures, vibration, etc. -EV6.1.67 A template containing the required structure for the ESF will be made available online. -EV6.1.68 The ESF must be submitted as a Microsoft Word format file. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE EV7 - ACRONYMS -AC Alternating Current -AIR Accumulator Isolation Relay -AMS Accumulator Management System -BRB Big Red Buttons (Emergency shutdown switches) -ESF Electrical System Form -ESOK Electrical Systems OK Lamp -GLV Grounded Low Voltage -GLVMS Grounded Low Voltage Master Switch -HVD High Voltage Disconnect -IMD Insulation Monitoring Device -PCB Printed Circuit Board -SMD Segment Maintenance Disconnect -TS Tractive System -TSMP Tractive System Measuring Point -TSMS Tractive System Master Switch -TSV Tractive System Voltage -TSAL Tractive System Active Lamp - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -PART S1 - STATIC EVENTS -Presentation 150 points -Design 200 points -Total 350 points -Table 15 – Static Event Maximum Scores - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE S1 TECHNICAL INSPECTION -1S1.1 Objective -1S1.1.1 The objective of technical inspection is to determine if the vehicle meets the FH+E rules -requirements and restrictions and if, considered as a whole, it satisfies the intent of the Rules. -1S1.1.2 For purposes of interpretation and inspection the violation of the intent of a rule is considered a -violation of the rule itself. -1S1.1.3 Technical inspection is a non-scored activity. -1S1.2 Inspection & Testing Requirement -1S1.2.1 Each vehicle must pass all parts of technical inspection and testing, and bear the inspection -stickers, before it is permitted to participate in any dynamic event or to run on the practice -track. The exact procedures and instruments employed for inspection and testing are entirely at -the discretion of the Chief Technical Inspector. -1S1.2.2 Technical inspection will examine all items included on the Inspection Form found on the -Formula Hybrid + Electric website, all the items on the Required Equipment list (Appendix F) -plus any other items the inspectors may wish to examine to ensure conformance with the Rules. -1S1.2.3 All items on the Inspection Form must be clearly visible to the technical inspectors. -1S1.2.4 Visible access can be provided by removing body panels or by providing removable access -panels. -1S1.2.5 Once a vehicle has passed inspection, except as specifically allowed under T1.2 Modification -and Repairs, it must remain in the “As-approved” condition throughout the competition and -must not be modified. -1S1.2.6 Decisions of the inspectors and the Chief Scrutineer concerning vehicle compliance are final -and are not permitted to be appealed. -1S1.2.7 Technical inspection is conducted only to determine if the vehicle complies with the -requirements and restrictions of the Formula Hybrid + Electric rules. -1S1.2.8 Technical approval is valid only for the duration of the specific Formula Hybrid + Electric -competition during which the inspection is conducted. -1S1.3 Inspection Condition -Vehicles must be presented for technical inspection in finished condition, i.e. fully assembled, -complete and ready-to-run. Technical inspectors will not inspect any vehicle presented -for inspection in an unfinished state. -This requirement will be waived if the vehicle is registered as an HIP (A2.3) or SEO (A2.4.1). -Note: Cars may be presented for technical inspection even if final tuning and set-up has not been finished. -1S1.4 Inspection Process -Vehicle inspection will consist of five separate parts as follows: -(a) Part 1: Preliminary Electrical Inspection -Vehicles must pass a preliminary electrical safety inspection before they will be permitted to proceed -to Mechanical Scrutineering. A sticker will be affixed to the vehicle upon passing the -Preliminary Electrical Inspection. -(b) Part 2: Scrutineering - Mechanical - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Each vehicle will be inspected to determine if it complies with the mechanical and structural -requirements of the rules. This inspection will include examination of the driver’s -equipment (ARTICLE T5) a test of the emergency shutdown response time (Rule T4.9) -and a test of the driver egress time (Rule T4.8). -The vehicle will be weighed, and the weight placed on a sticker affixed to the vehicle for reference -during the Design event. -(c) Part 3: Scrutineering – Electrical -Each vehicle will be inspected for compliance with the electrical portions of the rules. -Note: This is an extensive and detailed inspection. Teams that arrive well-prepared can reduce the -time spent in electrical inspection considerably. -The electrical inspection will include all the tests listed in EV9.5.1. -Note: In addition to the electrical rules contained in this document, the electrical inspectors will use -SAE Standard J1673 “High Voltage Automotive Wiring Assembly Design” as the -definitive reference for sound wiring practices. -Note: Parts 1, 2 and 3 must be passed before a vehicle may apply for Part 4 or Part 5 inspection. -(d) Part 4: Tilt Table Tests -Each vehicle will be tested to insure it satisfies both the 45 degree (45°) fuel and fluid tilt -requirement (Rule T8.5.1) and the 60 degree (60°) stability requirement (Rule T6.7). -(e) Part 5: Noise, Master Switch, and Brake Tests. -Noise will be tested by the specified method (Rule IC3.2). If the vehicle passes the noise test then -its master switches (EV7.2) will be tested. -Once the vehicle has passed the noise and master switch tests, its brakes will be tested by the -specified method (see Rule T7.2). -1S1.5 Correction and Re-inspection -1S1.5.1 If any part of a vehicle does not comply with the Rules, or is otherwise deemed to be a concern, -then the team must correct the problem and have the car re-inspected. -1S1.5.2 The judges and inspectors have the right to re-inspect any vehicle at any time during the -competition and require correction of non-compliance. -1S1.6 Inspection Stickers -Inspection stickers issued following the completion of any part of technical inspection must be placed on -the upper nose of the vehicle as specified in T13.4 “Technical Inspection Sticker Space”. -Inspection stickers are issued contingent on the vehicle remaining in the required condition -throughout the competition. Inspection stickers may be removed from vehicles that are not in -compliance with the rules or which are required to be re-inspected. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE S2 PROJECT MANAGEMENT -1S2.1 Project Management Objective -The objective of the Formula Hybrid + Electric Project Management component is to evaluate the team’s -ability to structure and execute a project management plan that helps the team define and meet -its goals. -A well written project management plan will not only aid each team in producing a functional, rules -compliant race car on-time, it will make it much easier to create the Change Management -Report and Final Presentation components of the Project Management Event. -Several resources are available to guide work in these areas. They can be found in Appendix C. -No team should begin developing its project management plan without FIRST: -(a) Reviewing “Application of the Project Management Method to Formula Hybrid + -Electric”, by Dr. Edward March, former Formula Hybrid + Electric Chief Project -Management Judge. -(b) Viewing in its entirety Dr. March’s 12-part video series”Formula Hybrid + Electric -Project Management”. -(c) Reading “Formula Hybrid + Electric Project Management Event Scoring Criteria”, found -in Appendix C of the Formula Hybrid + Electric Rules. -(d) Watching an example of a “perfect score” presentation, from a previous competiton. -1S2.2 Project Management Segments -The Formula Hybrid + Electric Project Management component consists of three parts: (1) submission of -a written project plan (2) a written change management report, and, (3) an oral final -presentation assessing the overall project management experience to be delivered before a -review board at the competition. -Segment Points -Project Plan Report 55 -Change Management -Report -40 -Presentation 55 -Total 150 -Table 16 - Project Management Scoring -1S2.3 Submission 1 -- Project Plan Report -1S2.3.1 Each Formula Hybrid + Electric team is required to submit a formal Project Plan Report that -reflects its goals and objectives for the upcoming competition, the management structure, the -tasks that will be required to accomplish these objectives, and the time schedule over which -these tasks will be performed. The topics covered in the Project Plan Report should include: -(a) Scope: What will be accomplished, “SMART” goals and objectives (see Appendix C for -more information), major deliverables and milestones. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(b) Operations: Organization of the project team, Work Breakdown Structure, project -timeline, and a budget and funding strategy. -(c) Risk Management: tasks expected to be particularly difficult for the team, but whose -completion is essential for achieving team goals and having a functional car ready before -shipment to the track; contingency plans to mitigate these risks if problems arise during -project execution. -(d) Expected Results: Team goals and objectives quantified into “measure of success”. -These attributes are useful for assigning task priorities and allocating resources during -project execution. They are also used to determine the extent to which the goals have -been achieved. -(e) Change Management Process: The system designed by the team for administering -project change and maintaining communication across all team members. -1S2.3.2 This Project Plan must consist of at least one (1) page and may not exceed three (3) pages of -text. Appendices with supporting information may be attached to the back of the Project Plan. -Note 1: Title pages, appendices and table-of-contents do not count as “pages”. -Note 2: Submittal of the Project Plan is due very soon after registration closes. See the Formula Hybrid + -Electric rules and deadlines page at: https://www.formula-hybrid.org/deadlines for the exact -due date. -Note 3: After the scoring of the Project Plans has been completed and at the discretion of the Project -Management judges a one half hour online review session may be made available to each team. -1S2.4 Submission 2 – Change Management Report -1S2.4.1 Following completion and acceptance of the formal project plan by student team members, the -project team begins the execution phase. During this phase, members of the student team and -other stakeholders must be updated on progress being made and on issues identified that put the -project schedule at risk. The ability of the team to change direction or “pivot” in the face of -risks is often a key factor in a team’s successful completion of the project. Changes to the plan -are adopted and formally communicated through a change management report. Each team must -submit one change management report. See the Formula Hybrid + Electric rules and deadlines -page at: https://www.formula-hybrid.org/deadlines for the exact due date. -1S2.4.2 These reports are not lengthy but are intended to clearly and concisely communicate the -documented changes to the project scope and plan to the team that have been approved using -the Change Management Process. See Appendix C for details on scoring criteria for this report. -The topics covered in the progress report should include: -A) Change Management Process: Detail the Change Management processes and -platforms used by the team. At a minimum, the report is expected to cover: -a. what triggers the process -b. how does information flow through the process -c. how are final decisions transmitted to all team members -d. team-created process flow diagram - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -B) Implementation of the Change Management Process: Teams are expected to -review in detail how the Change Management Process has been used to modify at -least one of their project’s main components (Scope or Goals, Operational Plan, Risk -Management, and Expected Results). The report is expected to cover an example -from start to finish in the process and should also detail the final impact to the -project. -C) Effectiveness of and Improvements to the Change Management Process: At the -end of the project lifecycle, the team is expected to perform an assessment on the -effectiveness of their Change Management Process. Through this assessment, the -team should identify at least two areas of opportunity to improve the process and -include the plans/details to implement those changes. -1S2.4.3 The Change Management Report must not exceed two (2) pages. Appendices may be included -with the Report -Note 1: Appendix content does not count as “pages”. -Note 2: See the Formula Hybrid + Electric rules and deadlines page at: https://www.formula- -hybrid.org/deadlines for the due date of the Change Management Report. -1S2.5 Submission Formats -1S2.5.1 The Project Plan and Change Management Report must be submitted electronically in separate -Microsoft Word files (*.doc or .docx file). These documents must each be a single file (text, -drawings, and optional content). -1S2.5.2 These Report files must be named as follows: Carnumber_Schoolname_Project Plan.doc(x) -and Carnumber_Schoolname_ChangeManagement.doc(x) using the Formula Hybrid + -Electric assigned car number and the complete school name, e.g.: -999_University of SAE_Project Plan.doc(x) -999_University of SAE_ChangeManagement.doc(x) -1S2.6 Submission Deadlines -The Project Plan and Change Management Report must be submitted by the date and time shown in the -Action Deadlines. Submission instructions are in section A9.2. -See section A9.3 for late submission penalties. -1S2.7 Presentation -1S2.7.1 Objective: Teams must convince a review board that the team’s project has been carefully -planned and effectively and dynamically executed. -1S2.7.2 The Project Management presentation will be made on the static events day. Presentation times -will be scheduled by the organizers and either posted in advance on the competition website or -released during on-site registration (or both). -Note: The presentation schedule set by Formula Hybrid + Electric organizers is final and non-negotiable. -1S2.7.3 Teams that fail to make their presentation during their assigned time period will receive zero -(0) points for that section of the event. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Note: Teams are encouraged to arrive fifteen (15) minutes prior to their scheduled presentation time to -deal with unexpected technical difficulties. -The scoring of the event is based on the average of the presentation judging forms. -1S2.8 Presentation Format -The presentation judges should be regarded as a project management or executive review board. -1S2.8.1 Evaluation Criteria - Project Management presentations will be evaluated based on team’s -accomplishments in project planning, execution, change management, and succession planning. -Presentation organization and quality of visual aids as well as the presenters’ delivery, timing -and the team’s response to questions will also be factors in the evaluation. -1S2.8.2 One or more team members will give the presentation to the judges. It is strongly suggested, -although not required, that the project manager accompany the presentation team. All team -members who will give any part of the presentation, or who will respond to the judge’s -questions, must be in the podium area when the presentation starts and must be introduced to -the judges. Team members who are part of this “presentation group” may answer the judge’s -questions even if they did not speak during the presentation itself. -1S2.8.3 Presentations are limited to a maximum of twelve (12) minutes. Teams may use handouts, -posters, etc. to convey information relevant to their project management case that cannot be -contained within a 12-minute presentation. -1S2.8.4 The judges will stop any presentation exceeding twelve minutes. The judges will not interrupt -the presentation itself. -1S2.8.5 Feedback on presentations will take place immediately following the eight (8) minute question -and answer session. Judges and any team members present may ask questions. The maximum -feedback time for each team is eight (8) minutes. -1S2.8.6 Formula Hybrid + Electric may record a team’s presentation for publication or educational -purposes. Students have the right to opt out of being recorded - however they must notify the -chief presentation judge in writing prior to the beginning of their presentation. -1S2.9 Data Projection Equipment -Projection equipment is provided by the organizers. However, teams are advised to bring their own -computer equipment in the event the organizer’s equipment malfunctions or is not compatible -with their presentation software. -1S2.10 Scoring Formula -The Project Management score is equal to the Project Plan score (max. 55 points), plus the Change -Management Report score (max. 40 points), plus the presentation score (max. 55 points). It is -then normalized as follows: -𝐹𝐼𝑁𝐴𝐿 𝑃𝑅𝑂𝐽𝐸𝐶𝑇 𝑀𝐴𝑁𝐴𝐺𝐸𝑀𝐸𝑁𝑇 𝑆𝐶𝑂𝑅𝐸 = 150 * (𝑃 -𝑦𝑜𝑢𝑟 -/𝑃 -𝑚𝑎𝑥 -) -Where: -P -max -is the highest point score awarded to any team -P -your -is the point score awarded to your team. -Notes: - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1. It is intended that the scores will range from near zero (0) to one hundred and fifty (150) -points, providing a good separation range. -2. The Project Management Presentation Captain may at her/his discretion normalize the -scores of different presentation judging teams for consistency in scoring. -3. Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are -applied after the scores are normalized up to a maximum of the team’s normalized -Project Management Score. -ARTICLE S3 DESIGN EVENT -1S3.1 Design Event Objective -The concept of the design event is to evaluate the engineering effort that went into the design of the car -(or the substantial modifications to a prior year car), and how the engineering meets the intent -of the market. The car that illustrates the best use of engineering to meet the design goals and -the best understanding of the design by the team members will win the design event. -Comment: Teams are reminded that Formula Hybrid + Electric is an engineering design competition and -that in the Design event, teams are evaluated on their design. Components and systems that are -incorporated into the design as finished items are not evaluated as a student designed unit, but -are only assessed on the team’s selection and application of that unit. For example, teams that -design and fabricate their own shocks are evaluated on the shock design itself as well as the -shock’s application within the suspension system. Teams using commercially available shocks -are evaluated only on selection and application within the suspension system. -1S3.2 Submission Requirements -1S3.2.1 Design Report - Judging will start with a Design Review before the event. -The principal document submitted for the Design Review is a Design Report. This report must not exceed -ten (10) pages, consisting drawings (see S3.4, “Vehicle Drawings”) and content to be defined -by the team (photos, graphs, etc…). -This document should contain a brief description of the vehicle and each category listed in Appendix D -with the majority of the report specifically addressing the engineering, design features, and -vehicle concepts new for this year's event. Include a list of different analysis and testing -techniques (FEA, dynamometer testing, etc.). -Evidence of this analysis and back-up data should be brought to the competition and be available, on -request, for review by the judges. These documents will be used by the judges to sort teams into -the appropriate design groups based on the quality of their review. -Comment: Consider your Design Report to be the “resume of your car”. -1S3.2.2 Design Spec Sheet - In addition to the above documents, a completed FH+E Design Spec -Sheet must also be submitted. The FH+E Design Spec Sheet template can be found on the -FH+E website. (Do not alter or re-format the template prior to submission.) -Note: The design judges realize that final design refinements and vehicle development may cause the -submitted figures to diverge slightly from those of the completed vehicle. For specifications -that are subject to tuning, an anticipated range of values may be appropriate. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -The Design Report and the Design Spec Sheet, while related documents, must stand alone and be -considered two (2) separate submissions. Two separate file submissions are required. -1S3.3 Sustainability Requirement -1S3.3.1 Instead of a Sustainability Report please add a Sustainability section to the Design Report -answering both of the following prompts: -(a) Quantify, compare, and discuss the green-house gas emissions generated by charging your vehicle and -competing in the dynamic events at NHMS and/or the fuel efficiency of your car in each -dynamic event. For comparisons, consider a similar style vehicle using ICE power only. How -have you improved these quantities compared to previous year vehicles? How might you -improve this in your next vehicle? What components or design decisions are the biggest -contributors to the emissions or efficiency, positively or negatively? -(b) How does the vehicle's design and construction contribute to the recyclability and re-use of your -vehicle, especially when it comes to accumulator storage? -1S3.4 Vehicle Drawings -1S3.4.1 The Design report must include all of the following drawings: -(a) One set of 3 view drawings showing the vehicle from the front, top, and side. -(b) A schematic of the high voltage wiring showing the wiring between the major -components. (See section EV13.1) -(c) A wiring diagram superimposed on a top view of the vehicle showing the locations of all -major high voltage components and the routing of high voltage wiring. The components -shown must (at a minimum) include all those listed in the major sections of the ESF (See -section EV13.1) -1S3.5 Submission Formats -1S3.5.1 The Design Report must be submitted electronically in Adobe Acrobat™ Format files (*.pdf -file). These documents must each be a single file (text, drawings, and optional content). These -Report files must be named as follows: carnumber_schoolname_Design.pdf using the FH+E -assigned car number and the complete school name, e.g.: -999_University of SAE_Design.pdf -1S3.5.2 Design Spec Sheets must be submitted electronically in Microsoft Excel™ Format. The format -of the Spec Sheet MUST NOT be altered. Similar to the Design Report, the Design Spec Sheet -file must be named as follows: carnumber_schoolname_Specs.xls (or .xlsx) using the Formula -Hybrid + Electric assigned car number and the complete school name, e.g. -999_University of SAE_Specs.xls (or) -999_University of SAE_Specs.xlsx -WARNING – Failure to exactly follow the above submission requirements may result in exclusion from -the Design Event. If your files are not submitted in the required format or are not properly -named then they cannot be included in the documents provided to the design judges and your -team will be excluded from the event. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1S3.6 Excess Size Design Reports -If a team submits a Design Report that exceeds ten (10) pages, then only the first ten pages will be read -and evaluated by the judges. -Note: If included, cover sheets and tables of contents will NOT count as text pages, but no text -information on them will be scored. -1S3.7 Submission Deadlines -The Design Report and the Design Spec Sheets must be submitted by the date and time shown in the -Action Deadlines. (See A9.2). You will receive confirmation of receipt via email and/or the -event website once report is reviewed for accuracy. Teams should have a printed copy of this -reply available at the competition as proof of submission in the event of discrepancy. -1S3.8 Penalty for Late Submission or Non-Submission -See section A9.3 for late submission penalties. -1S3.9 Penalty for Unsatisfactory Submissions -1S3.9.1 Teams that submit a Design Report or a Design Spec Sheet which is deemed to be -unsatisfactory, may not compete in the design event at the discretion of the Lead Design Judge. -They may be allowed to compete, but receive a penalty of up to seventy five (75) points. -Failure to fully document the changes made for the current year’s event to a vehicle used in -prior FH+E events, or reuse of any part of a prior year design report, are just two examples of -Unsatisfactory Submissions -1S3.10 Vehicle Condition -1S3.10.1 With the exception of Static Event Only (See A2.4.1) or Hybrid In Progress (See -A2.3) cars must be presented for design judging in finished condition, i.e. fully assembled, -complete and ready-to-run. The judges will not evaluate any car that is presented at the design -event in what they consider to be an unfinished state. -Unfinished cars will be given a fifty (50) point penalty for design. Additional point penalties may be -assessed for cars with obvious preparation issues, e.g. notably loose or missing fasteners. -Note: Cars can be presented for design judging without having passed technical inspection, or if final -tuning and setup is still in progress. -1S3.11 Judging Criteria -The design judges will evaluate the engineering effort based upon the team’s Design Report, Spec Sheet, -responses to questions and an inspection of the car. The design judges will inspect the car to -determine if the design concepts are adequate and appropriate for the application (relative to the -objectives set forth in the rules). It is the responsibility of the judges to deduct points on the -design judging form, as given in Appendix D if the team cannot adequately explain the -engineering and construction of the car. -1S3.12 Judging Sequence -The actual format of the design event may change from year to year as determined by the organizing -body. In general, the design event includes a brief overview presentation in front of the physical -vehicle followed by detailed Q&A. The presentation may be up to forty (40) minutes with the -majority of the time devoted to Q&A. Formula Hybrid + Electric design judging will involve -two parts: -(a) Initial judging of all vehicles - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(b) Final judging ranking the top 2 to 4 vehicles. -1S3.13 Scoring Formula -The scoring of the event is based on either the average of the scores from the Design Judging Forms (see -Appendix C) or the consensus of the judging team. -𝐷𝐸𝑆𝐼𝐺𝑁 𝑆𝐶𝑂𝑅𝐸 = 200 -𝑃 -𝑦𝑜𝑢𝑟 -𝑃 -𝑚𝑎𝑥 -Where: P -max -is the highest point score awarded to any team in your vehicle category -P -your -is the point score awarded to your team -Notes: -It is intended that the scores will range from near zero (0) to two hundred (200) to provide good -separation. -● The Lead Design Judge may, at his/her discretion, normalize the scores of different judging -teams. -● Penalties applied during the Design Event (see Appendix D “Design Judging Form - -Miscellaneous”) are applied before the scores are normalized. -● Penalties associated with late submittals (see A9.3 “Late Submission Penalties”) are -applied after the scores are normalized up to a maximum of the teams normalized Design -Score. -1S3.14 Support Materials -Teams may bring with them to the Design Event any photographs, drawings, plans, charts, example -components or other materials that they believe are needed to support the presentation of the -vehicle and the discussion of their development process. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -PART 1D - DYNAMIC EVENTS -ARTICLE D1 DYNAMIC EVENTS GENERAL -1D1.1 Maximum Scores -Event -Acceleration 100 Points -Autocross 200 Points -Endurance 350 Points -Total 650 Points -Table 17 - Dynamic Event Maximum Scores -1D1.2 Driving Behavior -During the Formula Hybrid + Electric Competition, any driving behavior that, in the opinion of the Event -Captain, the Director of Operations or the Clerk of the Course, could result in potential injury to -an official, worker, spectator or other driver, will result in a penalty. -Depending on the potential consequences of the behavior, the penalty will range from an admonishment, -to disqualification of that driver from all events, to disqualification of the team from that event, -to exclusion of the team from the Competition. -1D1.3 Safety Procedures -1D1.3.1 Drivers must properly use all required safety equipment at all times while staged for an event, -while running the event, and while stopped on track during an event. Required safety -equipment includes all drivers gear and all restraint harnesses. -1D1.3.2 In the event it is necessary to stop on track during an event the driver must attempt to position -the vehicle in a safe position off of the racing line. -1D1.3.3 Drivers must not exit a vehicle stopped on track during an event until directed to do so by an -event official. An exception to this is if there is a fire or a risk of fire due to fuel leakage and/or -electrical problems. -1D1.4 Vehicle Integrity and Disqualification -1D1.4.1 During the Dynamic Events, the mechanical and electrical integrity of the vehicle must be -maintained. Any vehicle condition that could compromise vehicle integrity, e.g. damaged -suspension, brakes or steering components, electrical tractive system fault, or any condition that -could compromise the track surface, e.g. fluid leaks or dragging bodywork, will be a valid -reason for exclusion by the officials. -1D1.4.2 The safety systems monitoring the electrical tractive system must be functional as indicated by -an illuminated Safety System OK (ESOK) light to enter or continue in any dynamic event. -1D1.4.3 If vehicle integrity is compromised during the Endurance Event, scoring for that segment will -be terminated as of the last completed lap. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE D2 WEATHER CONDITIONS -The organizer reserves the right to alter the conduct and scoring of the competition based on weather -conditions. -ARTICLE D3 RUNNING IN RAIN -A vehicle may not be operated in damp (D3.1(b)) or wet (D3.1(c)) conditions unless Rain Certified. (See -EV10.5) -1D3.1 Operating Conditions -The following operating conditions will be recognized at Formula Hybrid + Electric: -(a) Dry – Overall the track surface is dry. -(b) Damp – Significant sections of the track surface are damp. -(c) Wet – The entire track surface is wet and there may be puddles of water. -(d) Weather Delay/Cancellation – Any situation in which all, or part, of an event is delayed, -rescheduled or canceled in response to weather conditions. -1D3.2 Decision on Operating Conditions -The operating condition in effect at any time during the competition will be decided by the competition -officials. -1D3.3 Notification -If the competition officials declare the track(s) to be "Damp" or "Wet", -(a) This decision will be announced over the public address system, and -(b) A sign with either "Damp" or "Wet" will be prominently displayed at both the starting -line(s) and the start-finish line of the event(s), and the entry gate to the "hot" area. -1D3.4 Tire Requirements -The operating conditions will determine the type of tires a car may run as follows: -(a) Dry – Cars must run their Dry Tires, except as covered in D3.8. -(b) Damp – Cars may run either their Dry Tires or Rain Tires, at each team’s option. -(c) Wet – Cars must run their Rain Tires. -1D3.5 Event Rules -All event rules remain in effect. -1D3.6 Penalties -All penalties remain in effect. -1D3.7 Scoring -No adjustments will be made to teams' times for running in "Damp" or "Wet" conditions. The minimum -performance levels to score points may be adjusted if deemed appropriate by the officials. -1D3.8 Tire Changing -1D3.8.1 During the Acceleration or Autocross Events: - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Within the provisions of D3.4 above, teams may change from Dry Tires to Rain Tires or vice versa at any -time during those events at their own discretion. -1D3.8.2 During the Endurance Event: Teams may change from Dry to Rain Tires or vice versa at any -time while their car is in the staging area inside the "hot" area. -All tire changes after a car has received the "green flag" to start the Endurance Event must take place in -the Driver Change Area. -(a) If the track was "Dry" and is declared "Damp": -(i) Teams may start on either Dry or Rain Tires at their option. -(ii) Teams that are on the track when it is declared "Damp", may elect, at their option, to -pit in the Driver Change Area and change to Rain Tires under the terms spelled out -below in "Tire Changes in the Driver Change Area". -(b) If the track is declared "Wet": -(i) A Red Flag will be shown at the Start/Finish Line and all cars will enter the Driver -Change Area. -(ii) Those cars that are already fitted with "Rain" tires will be allowed restart without delay -subject to the discretion of the Event Captain/Clerk of the Course. -(iii)Those cars without "Rain" tires will be required to fit them under the terms spelled out -below in "Tire Changes in the Driver Change Area". They will then be allowed to re- -start at the discretion of the Event Captain/Clerk of the Course. -(c) If the track is declared "Dry" after being "Damp" or "Wet": -The teams will NOT be required to change back to “Dry” tires. -(d) Tire Changes at Team's Option: -(i) Within the provisions of D3.4 above and D3.8 below, a team will be permitted to -change tires at their option. -(ii) If a team elects to change from “Dry” to “Rain” tires, the time to make the change will -NOT be included in the team’s total time. -(iii) If a team elects to change from “Rain” tires back to “Dry” tires, the time taken to -make the change WILL be included in the team’s total time for the event, i.e. it will -not be subtracted from the total elapsed time. However, a change from “Rain” tires -back to “Dry” tires will not be permitted during the driver change. -(iv) To make such a change, the following procedure must be followed: -1. Team makes the decision -2. Team has tires and equipment ready near Driver Change Area -3. The team informs the Event Captain/Clerk of the Course they wish their car to be -brought in for a tire change -4. Officials inform the driver by means of a sign or flag at the checker flag station -5. Driver exits the track and enters the Driver Change Area in the normal manner. -(e) Tire Changes in the Driver Change Area: - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(i) Per Rule D7.13.2 no more than three people for each team may be present in the -Driver Change Area during any tire change, e.g. a driver and two crew or two drivers -and one crew member. -(ii) No other work may be performed on the cars during a tire change. -(iii) Teams changing from "Dry" to "Rain" tires will be allowed a maximum of ten (10) -minutes to make the change. -(iv) If a team elects to change from "Dry" to "Rain" tires during their scheduled driver -change, they may do so, and the total allowed time in the Driver Change Area will be -increased without penalty by ten (10) minutes. -(v) The time spent in the driver change area of less than 10 minutes without driver change -will not be counted in the team's total time for the event. Any time in excess of these -times will be counted in the team's total time for the event. -ARTICLE D4 DRIVER LIMITATIONS -1D4.1 Two Event Limit -1D4.1.1 An individual team member may not drive in more than two (2) events. -Note: A minimum of two (2) drivers is required to participate in all of the dynamic events. A minimum -of four (4) drivers is required to participate in all possible runs in all of the dynamic events. -1D4.1.2 It is the team’s option to participate in any event. The team may forfeit any runs in any -performance event. -1D4.1.3 In order to drive in the endurance event, a driver must have attended the mandatory drivers -meeting and walked the endurance track with an official. -1D4.1.4 The time and location of the meeting and walk-around will be announced at the event. -ARTICLE D5 ACCELERATION EVENT -1D5.1 Acceleration Objective -The acceleration event evaluates the car’s acceleration in a straight line on flat pavement. -1D5.2 Acceleration Procedure -The cars will accelerate from a standing start over a distance of 75 m (82 yards) on a flat surface. The -foremost part of the car will be staged at 0.30 m behind the starting line. A green flag will be -used to indicate the approval to begin, however, time starts only after the vehicle crosses the -start line. There will be no particular order of the cars in the event. A driver has the option to -take a second run immediately after the first. -1D5.3 Acceleration Event -1D5.3.1 All vehicles may make a total of up to 6 runs. It is permissible for one driver to make all the -acceleration runs. -1D5.3.2 Hybrid vehicles may use their I.C. engine, Electric motor(s) or any combination of these during -any of their acceleration runs. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D5.4 Tire Traction – Limitations -Special agents that increase traction may not be added to the tires or track surface and “burnouts” are not -allowed. -1D5.5 Acceleration Scoring -The acceleration score is based upon the corrected elapsed time. Elapsed time will be measured from the -time the car crosses the starting line until it crosses the finish line. -1D5.6 Acceleration Penalties -1D5.6.1 Cones Down Or Out (DOO) -A two (2) second penalty will be added for each DOO (including entry and exit gate cones) that occurred -on that particular run to give the corrected elapsed time. -1D5.6.2 Off Course -An Off Course (OC) will result in a DNF for that run. -1D5.7 Did Not Attempt -The organizer will determine the allowable windows for each event and retains the right to adjust for -weather or technical delays. Cars that have not run by the end of the event will be scored as a -Did Not Finish (DNF). -1D5.8 Acceleration Scoring Formula -The equation below is used to determine the scores for the Acceleration Event. The first term represents -the “Start Points”, the second term the “Participation Points” and the last term the -“Performance Points”. -1D5.8.1 A team is awarded “Start Points” for crossing the start line under its own power. A team is -awarded “Participation Points” if it completes a minimum of one (1) run. A team is awarded -“Performance Points” based on its corrected elapsed time relative to the time of the best team in -its class. -𝐴𝐶𝐶𝐸𝐿𝐸𝑅𝐴𝑇𝐼𝑂𝑁 𝑆𝐶𝑂𝑅𝐸 = 10 + 15 + (75 × -𝑇 -𝑚𝑖𝑛 -𝑇 -𝑦𝑜𝑢𝑟 -) -Where: -T -your -is the lowest corrected elapsed time (including penalties) recorded by your team. -T -min -is the lowest corrected elapsed time (including penalties) recorded by the fastest team -in your vehicle category. -Note: A Did Not Start (DNS) will score (0) points for the event -ARTICLE D6 AUTOCROSS EVENT -1D6.1 Autocross Objective -The objective of the autocross event is to evaluate the car's maneuverability and handling qualities on a -tight course without the hindrance of competing cars. The autocross course will combine the -performance features of acceleration, braking, and cornering into one event. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D6.2 Autocross Procedure -1D6.2.1 There will be four (4) Autocross-style heats, with each heat having a different driver. Three (3) -timed laps will be run (weather and time permitting) by each driver and the best lap time will -stand as the time for that heat. -1D6.2.2 The car will be staged such that the front wheels are 6 m (19.7 feet) behind the starting line. -The timer starts only after the car crosses the start line. -1D6.2.3 There will be no particular order of the cars to run each heat, but a driver has the option to take -a second run immediately after the first. -1D6.2.4 The organizer will determine the allowable windows for each event and retains the right to -adjust for weather or technical delays. Cars that have not run by the end of the event will be -scored as a Did Not Start (DNS). -1D6.3 Autocross Course Specifications & Speeds -1D6.3.1 The following specifications will suggest the maximum speeds that will be encountered on the -course. Average speeds should be 40 km/hr (25 mph) to 48 km/hr (30 mph). -(a) Straights: No longer than 60 m (200 feet) with hairpins at both ends (or) no longer than 45 -m (150 feet) with wide turns on the ends. -(b) Constant Turns: 23 m (75 feet) to 45 m (148 feet) diameter. -(c) Hairpin Turns: Minimum of 9 m (29.5 feet) outside diameter (of the turn). -(d) Slaloms: Cones in a straight line with 7.62 m (25 feet) to 12.19 m (40 feet) spacing. -(e) Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. The minimum track -width will be 3.5 m (11.5 feet). -1D6.3.2 The length of each run will be approximately 0.805 km (1/2 mile) and the driver will complete -a specified number of runs. -1D6.4 Autocross Penalties -The cars are judged on elapsed time plus penalties. The following penalties will be added to the elapsed -time: -1D6.4.1 Cone Down or Out (DOO) -Two (2) seconds per cone, including any after the finish line. -1D6.4.2 Off Course -Driver must re-enter the track at or prior to the missed gate or a twenty (20) second penalty will be -assessed. Penalties will not be assessed for accident avoidance or other reasons deemed -sufficient by the track officials. -If a paved road edged by grass or dirt is being used as the track, e.g. a go kart track, four (4) wheels off -the paved surface will count as an "off course". Two (2) wheels off will not incur an immediate -penalty; however, consistent driving of this type may be penalized at the discretion of the event -officials. -1D6.4.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one "off-course" per occurrence. Each -occurrence will incur a twenty (20) second penalty. -1D6.4.4 Stalled & Disabled Vehicles - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -If a car stalls and cannot restart without external assistance, the car will be deemed disabled. Cars deemed -disabled will be cleared from the track by the track workers. At the direction of the track -officials team members may be instructed to retrieve the vehicle. Vehicle recovery may only be -done under the control of the track officials. -1D6.5 Corrected Elapsed Time -The elapsed time plus any penalties from that specific run will be used as the corrected elapsed time. -1D6.6 Best Run Scored -The time required to complete each run will be recorded and the team’s best corrected elapsed time will -be used to determine the score. -1D6.7 Autocross Scoring Formula -The equation below is used to determine the scores for the Autocross Event. The first term represents the -“Start Points”, the second term the “Participation Points” and the last term the “Performance -Points”. A team is awarded “Start Points” for crossing the start line under its own power. A -team is awarded “Participation Points” if it completes a minimum of one (1) run. A team is -awarded “Performance Points” based on its corrected elapsed time relative to the time of the -best team in its vehicle category. -𝐴𝑈𝑇𝑂𝐶𝑅𝑂𝑆𝑆 𝑆𝐶𝑂𝑅𝐸 = 20 + 30 + (150 × -𝑇 -𝑚𝑖𝑛 -𝑇 -𝑦𝑜𝑢𝑟 -) -Where: -T -min -is the lowest corrected elapsed time (including penalties) recorded by the fastest team in your -vehicle category over their four heats. -T -your -is the lowest corrected elapsed time (including penalties) recorded by your team over the four -heats. -Note: A Did Not Start (DNS) in all four heats will score zero (0) points for the event. -ARTICLE D7 ENDURANCE EVENT -1D7.1 Right to Change Procedure -The following are general guidelines for conducting the endurance event. The organizers reserve the right -to establish procedures specific to the conduct of the event at the site. All such procedures will -be made known to the teams through newsletters, or the Formula Hybrid + Electric website, or -on the official bulletin board at the event. -1D7.2 Endurance Objective -The endurance event is designed to evaluate the vehicle’s overall performance, reliability and efficiency. -Unlike fuel economy tests that result in vehicles going as slow as possible in order to use the -least amount of fuel, Formula Hybrid + Electric rewards the team that can cover a designated -distance on a fixed amount of energy in the least amount of time. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D7.3 Endurance General Procedure -1D7.3.1 In general, the team completing the most laps in the shortest time will earn the maximum points -available for this event. Formula Hybrid + Electric uses an endurance scoring formula that -rewards both speed and distance traveled. (See D7.18) -1D7.3.2 The endurance distance is approximately 44km (27.3 miles) comprised of four (4) 11 km (6.84 -mile) segments. -1D7.3.3 Driver changes will be made between each segment. -1D7.3.4 Wheel to wheel racing is prohibited. -1D7.3.5 Passing another vehicle may only be done in an established passing zone or under the control of -a course marshal. -1D7.4 Endurance Course Specifications & Speeds -Course speeds can be estimated by the following course specifications. Average speed should be 48 km/hr -(29.8 mph) to 57 km/hr (35.4 mph) with top speeds of approximately 105 km/hr (65.2 mph). -Endurance courses will be configured, where possible, in a manner which maximizes the -advantage of regenerative braking. -(a) Straights: No longer than 77.0 m (252.6 feet) with hairpins at both ends (or) no longer than -61.0 m (200.1 feet) with wide turns on the ends. There will be passing zones at several -locations. -(b) Constant Turns: 30.0 m (98.4 feet) to 54.0 m (177.2 feet) diameter. -(c) Hairpin Turns: Minimum of 9.0 m (29.5 feet) outside diameter (of the turn). -(d) Slaloms: Cones in a straight line with 9.0 m (29.5 feet) to 15.0 m (49.2 feet) spacing. -(e) Minimum Track width: The minimum track width will be 4.5 m (14.76 feet). -(f) Miscellaneous: The organizers may include chicanes, multiple turns, decreasing radius -turns, elevation changes, etc. -1D7.5 Energy -1D7.5.1 All vehicles competing in the endurance event must complete the event using only the energy -stored on board the vehicle at the start of the event plus any energy reclaimed through -regenerative braking during the event. Alternatively, vehicles may compete in the endurance -event with accumulator capacities greater than the values in Table 1 if equipped with an FH+E -approved energy meter. Any endurance laps that reach or exceed the Table 1 maximum energy -value will not be counted towards the endurance score. If energy meter data is missing or -appears inaccurate, the vehicle may receive start and performance points as appropriate, but -“performance points” may be forfeited at organizers discretion. -1D7.5.2 Prior to the beginning of the endurance event, all competitors may charge their electric -accumulators from any approved power source they wish. -1D7.5.3 Once a vehicle has begun the endurance event, recharging accumulators from an off-board -source is not permitted. -1D7.6 Hybrid Vehicles -1D7.6.1 All Hybrid vehicles will begin the endurance event with the defined amount of energy on -board. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D7.6.2 The amount of energy allotted to each team is determined by the Formula Hybrid + Electric -Rules Committee and is listed in Table 1 – 2024 Energy and Accumulator Limits -1D7.6.3 The fuel allocation for each team is based on the tables in Appendix A, adjusted downward by -an amount equal to the stated energy capacity of the vehicle’s accumulator(s). -1D7.6.4 There will be no extra points given for fuel remaining at the end of the endurance event. -1D7.7 Fueling - Hybrid Vehicles -1D7.7.1 Prior to the beginning of the endurance event, the vehicle fuel tank and any downstream fuel -accumulators, e.g., carburetor float bowls, will be drained. The allocated amount of fuel will -then be added to the tank by the organizers and the filler will be sealed. -1D7.7.2 Teams must arrive at the fueling station with jacks and jack stands appropriate for raising and -supporting the vehicle to facilitate draining the fuel tank. -1D7.7.3 Once fueled, the vehicle must proceed directly to the endurance staging area. -1D7.8 Charging - Electric Vehicles -Each Electric vehicle will begin the endurance event with whatever energy can be stored in its -accumulator(s). -1D7.9 Endurance Run Order -Endurance run order will be determined by the team’s corrected elapsed time in the autocross. Teams with -the best autocross corrected elapsed time will run first. If a team did not score in the autocross -event, the run order will then continue based on acceleration event times, followed by any -vehicles that may not have completed either previous dynamic event. Endurance run order will -be published at least one hour before the endurance event is run. -1D7.10 Entering the Track -At the start of the event and after driver changes, vehicles will be directed to enter the track by the starter -based on traffic conditions. -1D7.11 Endurance Vehicle Restarting -1D7.11.1 The vehicle must be capable of restarting without external assistance at all times once the -vehicle has begun the event. -1D7.11.2 If a vehicle stops out on the track, it will be allowed one (1) lap by the vehicle that is following -it (approximately one (1) minute) to restart. -1D7.11.3 At the end of Driver Change, the vehicle will be allowed two (2) minutes to ensure the -electrical tractive system is safe and restart the vehicle drive system(See: D7.13.8). -1D7.11.4 If restarts are not accomplished within the above times, the vehicle will be deemed disabled and -scored as a DNF for the event. -1D7.12 Breakdowns & Stalls -1D7.12.1 If a vehicle breaks down it will be removed from the course and will not be allowed to re-enter -the course. -1D7.12.2 If a vehicle spins, stalls, ingests a cone, etc., it will be allowed to restart and re-enter the course -where it went off, but no work may be performed on the vehicle -1D7.12.3 If a vehicle stops on track and cannot be restarted without external assistance, the track workers -will push the vehicle clear of the track. At the discretion of event officials, two (2) team -members may retrieve the vehicle under direction of the track workers. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D7.13 Endurance Driver Change Procedure -1D7.13.1 There must be a minimum of two (2) drivers for the endurance event, with a maximum of four -(4) drivers. One driver may not drive in two consecutive segments. -1D7.13.2 Each driver must attempt to drive an 11 km (6.83 miles) segment, and then be signaled into the -driver change area. If a driver elects to come into driver change before the end of their 11km -segment, they will not be allowed to make up the laps remaining in that segment. -1D7.13.3 Only three (3) team members, including the driver or drivers, will be allowed in the driver -change area. Only the tools necessary to adjust the vehicle to accommodate the different drivers -and/or change tires will be carried into this area (no tool chests, electronic test equipment, -computers, etc.). -Extra people entering the driver change area will result in a twenty (20) point penalty to the final -endurance score for each extra person entering the area. -Note: Teams are permitted to “tag-team” in and out of the driver change area as long as there are no more -than three (3) team members present at any one time. -1D7.13.4 The vehicle must come to a complete stop, the IC engine turned off and the TSV shut down. -These systems must remain shut down until the new driver is in place. (See D7.13.8) -1D7.13.5 The driver will exit the vehicle and any necessary adjustments will be made to the vehicle to fit -the new driver (seat cushions, head restraint, pedal position, etc.). The new driver will then be -secured in the vehicle. -1D7.13.6 Three (3) minutes are allowed for the team to change drivers. The time starts when the vehicle -comes to a halt in the driver change area and stops when the correct adjustment of the driver -restraints and safety equipment has been verified by the driver change area official. Any time -taken over the allowed time will incur a penalty. (See D7.17.2(k)) -1D7.13.7 During the driver change, teams are not permitted to do any work on, or make any adjustments -to the vehicle with the following exceptions: -(a) Changes required to accommodate each driver -(b) Tire changing as covered by D3.8 “Tire Changing”, -(c) Actuation of the following buttons/switches to assist the driver with re-energizing the -electrical tractive system -(i) Ground Low Voltage Master Switch -(ii) Tractive System Master Switch -(iii) Side Mounted BRBs -(iv) IMD Reset (Button/Switch must be clearly marked “IMD RESET”) -(v) AMS Reset (Button/Switch must be clearly marked “AMS RESET”) -1D7.13.8 Once the new driver is in place and an official has verified the correct adjustment of the driver -restraints and safety equipment, a maximum of two (2) minutes are allowed to ensure the -electrical tractive system is safe (as indicated by the ESOK indicator), restart the vehicle drive -system (IC engine, electrical tractive system, or both) and begin moving out of the driver -change area. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -The ESOK indicator must be illuminated and verified by the driver change area official prior to -the vehicle being released out of the driver change area. -1D7.13.9 The process given in Error! Reference source not found. through D7.13.8 will be repeated for -each 11 km (6.83 mile) segment. The vehicle will continue until it completes the total 44 km -(27.34 miles) distance or until the endurance event track closing time, at which point the -vehicle will be signaled off the course. -1D7.13.10 The driver change area will be placed such that the timing system will see the driver -change as an extra-long lap. Unless a driver change takes longer than three (3) minutes, this -extra-long lap will not count into a team’s final time. If a driver change takes longer than three -minutes, the extra time will be added to the team’s final time. -1D7.13.11 Once the vehicle has begun the event, electronic adjustment to the vehicle may only be -made by the driver using driver-accessible controls. -1D7.14 Endurance Lap Timing -1D7.14.1 Each lap of the endurance event will be individually timed either by electronic means, or by -hand. -1D7.14.2 Each team is required to time their vehicle during the endurance event as a backup in case of a -timing equipment malfunction. An area will be provided where a maximum of two team -members can perform this function. All laps, including the extra-long laps must be recorded -legibly and turned in to the organizers at the end of the endurance event. Standardized lap -timing forms will be provided by the organizers. -1D7.15 Exiting the Course -1D7.15.1 Timing will stop when the vehicle crosses the start/finish line. -1D7.15.2 Teams may elect to shut down and coast after crossing the start/finish line, but must fully enter -the driver change area before coming to a stop. There will be no “cool down” laps. -1D7.15.3 The speed limit when entering the shut-down area is 15 MPH. Excessive speed will be -penalized. -1D7.16 Endurance Minimum Speed Requirement -1D7.16.1 A car's allotted number of laps, including driver’s changes, must be completed in a maximum -of 120 minutes elapsed time from the start of that car's first lap. -Cars that are unable to comply will be flagged off the course and their actual completed laps tallied. -1D7.16.2 If a vehicle’s lap time becomes greater than Max Average Lap Time (See: D7.18) it may be -declared “out of energy”, and flagged off the course. The vehicle will be deemed disabled and -scored as a DNF for the event. -Note: Teams should familiarize themselves with the Formula Hybrid + Electric endurance scoring -formulas. Attempting to complete additional laps at too low a speed can cost a team points. -1D7.17 Endurance Penalties -1D7.17.1 Penalties will not be assessed for accident avoidance or other reason deemed sufficient by the -track official. -1D7.17.2 The penalties in effect during the endurance event are listed below. -(a) Cone down or out (DOO) - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Two (2) seconds per cone. This includes cones before the start line and after the finish line. -(b) Off Course (OC) -For an OC, the driver must re-enter the track at or prior to the missed gate or a twenty (20) -second penalty will be assessed. -If a paved surface edged by grass or dirt is being used as the track, e.g. a go kart track, four -(4) wheels off the paved surface will count as an "off course". Two (2) wheels off will not -incur an immediate penalty. However, consistent driving of this type may be penalized at -the discretion of the event officials. -(c) Missed Slalom -Missing one or more gates of a given slalom will incur a twenty (20) second penalty. -(d) Failure to obey a flag -Penalty: 1 minute -(e) Over Driving (After a closed black flag) -Penalty: 1 Minute -(f) Vehicle to Vehicle Contact -Penalty: DISQUALIFIED -(g) Running Out of Order -Penalty: 2 Minutes -(h) Mechanical Black Flag -See D7.23.3(b). No time penalty. The time taken for mechanical or electrical inspection under a -“mechanical black flag” is considered officials’ time and is not included in the team’s total -time. However, if the inspection reveals a mechanical or electrical integrity problem the -vehicle may be deemed disabled and scored as a DNF for the event. -(i) Reckless or Aggressive Driving -Any reckless or aggressive driving behavior (such as forcing another vehicle off the track, -refusal to allow passing, or close driving that would cause the likelihood of vehicle contact) -will result in a black flag for that driver. -When a driver receives a black flag signal, he/she must proceed to the penalty box to listen -to a reprimand for his/her driving behavior. -The amount of time spent in the penalty box will vary from one (1) to four (4) minutes -depending upon the severity of the offense. -If it is impossible to impose a penalty by a stop under a black flag, e.g. not enough laps left, -the event officials may add an appropriate time penalty to the team’s elapsed time. -(j) Inexperienced Driver -The Event Captain or Clerk of the Course may disqualify a driver if the driver is too slow, -too aggressive, or driving in a manner that, in the sole opinion of the event officials, -demonstrates an inability to properly control their vehicle. This will result in a DNF for the -event. -(k) Driver Change - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Driver changes taking longer than three (3) minutes will be penalized. -1D7.18 Endurance Scoring Formula -The scoring for the endurance event will be based upon the total laps completed, the on-track elapsed time -for all drivers (less the uncharged extra-long laps for the driver changes, change to wet tires, -etc.), plus any penalty time and penalty points assessed against all drivers and team members. -Vehicles scored as a Did Not Finish (DNF) for the event will get credit for all laps completed prior to the -DNF. -1D7.18.1 The equation below is used to determine the scores for the Endurance Event. The first term -represents the “Start Points”, the second term the “Participation Points” and the last term the -“Performance Points”. -A team is awarded “Start Points” for crossing the start line under its own power. A team is awarded -“Participation Points” if it completes a minimum of one (1) lap. A team is awarded -“Performance Points” based on the number of laps it completes relative to the best team in its -vehicle category (distance factor) and its corrected average lap time relative to the event -standard time and the time of the best team in its vehicle category (speed factor). -𝐸𝑁𝐷𝑈𝑅𝐴𝑁𝐶𝐸 𝑆𝐶𝑂𝑅𝐸 = 35 + 52.5 + 262.5 -( -𝐿𝑎𝑝𝑆𝑢𝑚 -( -𝑛 -) -𝑦𝑜𝑢𝑟 -𝐿𝑎𝑝𝑆𝑢𝑚 -( -𝑛 -) -𝑚𝑎𝑥 -) -( -𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 -𝑇 -𝑦𝑜𝑢𝑟 -) − 1 -( -𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 -𝑇 -𝑚𝑖𝑛 -) -− 1 -Where: -Max Average Lap Time is the event standard time in minutes and is calculated as -𝑀𝑎𝑥 𝐴𝑣𝑒𝑟𝑎𝑔𝑒 𝐿𝑎𝑝 𝑇𝑖𝑚𝑒 = -105 -𝑡ℎ𝑒 𝑛𝑢𝑚𝑏𝑒𝑟 𝑜𝑓 𝑙𝑎𝑝𝑠 𝑟𝑒𝑞𝑢𝑖𝑟𝑒𝑑 𝑡𝑜 𝑐𝑜𝑚𝑝𝑙𝑒𝑡𝑒 44 𝑘𝑚 -T -min -= the lowest corrected average lap time (including penalties) recorded by the fastest team in -your vehicle category over their completed laps. -T -your -= the corrected average lap time (including penalties) recorded by your team over your -completed laps. -LapSum(n) -max -= The value of LapSum corresponding to number of complete laps credited to the -team in your vehicle category that covered the greatest distance. -LapSum(n) -your -= The value of LapSum corresponding to the number of complete laps credited to -your team -Notes: -(a) If your team completes all of the required laps, then LapSum(n) -your -will equal the -maximum possible value of LapSum(n). (990 for a 44 lap event). -(b) If your team does not complete the required number of laps, then LapSum(n) -your -will be -based on the number of laps completed. See Appendix B for LapSum(n) calculation -methodology. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(c) Negative “performance points” will not be given. -(d) A Did Not Start (DNS) will score (0) points for the event -1D7.18.2 Teams exceeding 120 minutes elapsed clock time since starting their first lap will have their -results truncated at the last lap completed within the 120 minute limit. -1D7.19 Post Event Engine and Energy Check -The organizer reserves the right to impound any vehicle immediately after the event to check accumulator -capacity, engine displacement (method to be determined by the organizer) and restrictor size (if -fitted). -1D7.20 Endurance Event – Driving -1D7.20.1 During the endurance event when multiple vehicles are running on the course it is paramount -that the drivers strictly follow all of the rules and driving requirements. Aggressive driving, -failing to obey signals, not yielding for passing, etc. will result in a black flag and a discussion -in the penalty box with course officials. The amount of time spent in the penalty box is at the -discretion of the officials and is included in the run time. Penalty box time serves as a -reprimand as well as informing the driver of what he/she did wrong. Drivers should be aware -that contact between open wheel racers is especially dangerous because tires touching can -throw one vehicle into the air. -1D7.20.2 Endurance is a timed event in which drivers compete only against the clock not against other -vehicles. Aggressive driving is unnecessary. -1D7.21 Endurance Event – Passing -1D7.21.1 Passing during the endurance event may only be done in the designated passing zones and -under the control of the track officials. Passing zones have two parallel lanes – a slow lane for -the vehicles that are being passed and a fast lane for the vehicles that are making a pass. On -approaching a passing zone a slower leading vehicle will be blue flagged and must shift into the -slow lane and decelerate. The following faster vehicle will continue in the fast lane and make -the pass. The vehicle that had been passed may reenter traffic only under the control of the -passing zone exit marshal. -The passing lanes, e.g. the slow lanes, may be either to the left or the right of the fast lane depending on -the design of the specific course. -1D7.21.2 These passing rules do not apply to vehicles that are passing disabled vehicles on the course or -vehicles that have spun out and are not moving. When passing a disabled or off-track vehicle it -is critical to slow down, drive cautiously and be aware of all the vehicles and track workers in -the area. -1D7.21.3 Under normal driving conditions when not being passed all vehicles use the fast lane. -1D7.22 Endurance Event – Driver’s Course Walk -The endurance course will be available for walk by drivers prior to the event. All endurance drivers -should walk the course before the event starts. -1D7.23 Flags -1D7.23.1 The flag signals convey the commands described below, and must be obeyed immediately and -without question. -1D7.23.2 There are two kinds of flags for the competition: Command Flags and Informational Flags. -Command Flags are just that, flags that send a message to the competitor that the competitor - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -must obey without question. Informational Flags, on the other hand, require no action from the -driver, but should be used as added information to help him or her maximize performance. -What follows is a brief description of the flags used at the competitions in North America and -what each flag means. -Note: Not all of these flags are used at all competitions and some alternate designs are occasionally -displayed. Any variations from this list will be explained at the drivers meetings. -Table 18 - Flags -1D7.23.3 Command Flags -(a) BLACK FLAG - Pull into the penalty box for discussion with the Director of Operations -or other official concerning an incident. A time penalty may be assessed for such -incident. -(b) MECHANICAL BLACK FLAG (Black Flag with Orange Dot) (“Meatball”) - Pull into -the penalty box for a mechanical inspection of your vehicle, something has been observed -that needs closer inspection. -(c) BLUE FLAG - Pull into the designated passing zone to be passed by a faster competitor -or competitors. Obey the course marshal’s hand or flag signals at the end of the passing -zone to merge into competition. -(d) CHECKER FLAG - Your segment has been completed. Exit the course at the first -opportunity after crossing the finish line. -(e) GREEN FLAG - Your segment has started, enter the course under direction of the -starter. NOTE: If you are unable to enter the course when directed, await another green -flag as the opening in traffic may have closed. -(f) RED FLAG - Come to an immediate safe controlled stop on the course. Pull to the side -of the course as much as possible to keep the course open. Follow course marshal’s -directions. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -(g) YELLOW FLAG (Stationary) - Danger, SLOW DOWN, be prepared to take evasive -action, something has happened beyond the flag station. NO PASSING unless directed by -the course marshals. -(h) YELLOW FLAG (Waved) - Great Danger, SLOW DOWN, evasive action is most -likely required, BE PREPARED TO STOP, something has happened beyond the flag -station, NO PASSING unless directed by the course marshals. -1D7.23.4 Informational Flags -(a) RED AND YELLOW STRIPED FLAG - Something is on the racing surface that -should not be there. Be prepared for evasive maneuvers to avoid the situation. (Course -marshals may be able to point out what and where it is located, but do not expect it.) -(b) WHITE FLAG - There is a slow moving vehicle on the course that is much slower than -you are. Be prepared to approach it at a cautious rate. -ARTICLE D8 RULES OF CONDUCT -1D8.1 Competition Objective – A Reminder -The Formula Hybrid + Electric event is a design engineering competition that requires performance -demonstration of vehicles and is NOT a race. Engineering ethics will apply. It is recognized -that hundreds of hours of labor have gone into fielding an entry into Formula Hybrid + Electric. -It is also recognized that this event is an “engineering educational experience” but that it often -times becomes confused with a high stakes race. In the heat of competition, emotions peak and -disputes arise. Our officials are trained volunteers and maximum human effort will be made to -settle problems in an equitable, professional manner. -1D8.2 Unsportsmanlike Conduct -In the event of unsportsmanlike conduct, the team will receive a warning from an official. A second -violation will result in expulsion of the team from the competition. -1D8.3 Official Instructions -Failure of a team member to follow an instruction or command directed specifically to that team or team -member will result in a twenty five (25) point penalty. -Note: This penalty can be individually applied to all members of a team. -1D8.4 Arguments with Officials -Argument with, or disobedience to, any official may result in the team being eliminated from the -competition. All members of the team may be immediately escorted from the grounds. -1D8.5 Alcohol and Illegal Material -Alcohol, illegal drugs, weapons or other illegal material are prohibited on the event site during the -competition. This rule will be in effect during the entire competition. Any violation of this rule -by a team member will cause the expulsion of the entire team. This applies to both team -members and faculty advisors. Any use of drugs, or the use of alcohol by an underage -individual, will be reported to the local authorities for prosecution. -1D8.6 Parties -Disruptive parties either on or off-site must be prevented by the Faculty Advisor. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D8.7 Trash Clean-up -1D8.7.1 Cleanup of trash and debris is the responsibility of the teams. The team’s work area should be -kept uncluttered. At the end of the day, each team must clean all debris from their area and help -with maintaining a clean paddock. -1D8.7.2 Teams are required to remove all of their material and trash when leaving the site at the end of -the competition. Teams that abandon furniture, or that leave a paddock that requires special -cleaning, will be billed for removal and/or cleanup costs. -1D8.7.3 All liquid hazardous waste (engine oil, fuel, brake fluid, etc.) must be put in well-marked, -capped containers and left at the hazardous waste collection building. The track must be -notified as soon as the material is deposited by calling the phone number posted on the -building. See the map in the registration packet for the building location. -ARTICLE D9 GENERAL RULES -1D9.1 Dynamometer Usage -1D9.1.1 If a dynamometer is available, it may be used by any competing team. Vehicles to be -dynamometer tested must have passed all parts of technical inspection. -1D9.1.2 Fuel, ignition and drivetrain tuning will be permitted while testing on the dynamometer. -1D9.2 Problem Resolution -Any problems that arise during the competition will be resolved through the Formula Hybrid + Electric -management team and the decision will be final. -1D9.3 Forfeit for Non-Appearance -It is the responsibility of teams to be in the right place at the right time. If a team is not present and ready -to compete at the scheduled time they forfeit their attempt at that event. There are no make-ups -for missed appearances. -1D9.4 Safety Class – Attendance Required -An electrical safety class is required for all team members. The time and location will be provided in the -team’s registration packet. -1D9.5 Drivers Meetings – Attendance Required -All drivers for an event are required to attend the pre-event drivers meeting(s). The driver for an event -will be disqualified if he/she does not attend the driver meeting for the event. -1D9.6 Personal Vehicles -1D9.6.1 Personal cars, motorcycles and trailers must be parked in designated areas only. Only FH+E -competition vehicles will be allowed in the track areas. -All vehicles and trailers must be parked behind the white “Fire Lane” lines. -1D9.6.2 Some self-powered transport such as bicycles and skate boards are permitted, subject to -restrictions posted in the event guide -1D9.6.3 The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any -part of the competition site, including the paddocks, is prohibited. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D9.7 Exam Proctoring -1D9.7.1 Formula Hybrid + Electric will not provide proctors, exam materials, or exam resources for -students attending the competition. The team Advisor, or designated representative (A6.3.1) -attending the competition will be responsible for communicating with college and university -officials, administering exams, and ensuring all exam materials are returned to the college and -university. Students who need to take exams during the competition may use designated spaces -provided by the Formula Hybrid + Electric Officials with at least two weeks advance notice to -the Officials. -ARTICLE D10 PIT/PADDOCK/GARAGE RULES -1D10.1 Vehicle Movement -1D10.1.1 Vehicles may not move under their own power anywhere outside of an officially designated -dynamic area. -1D10.1.2 When being moved outside the dynamic area: -(a) The vehicle TSV must be deactivated. -(b) The vehicle must be pushed at a normal walking pace by means of a “Push Bar” (D10.2). -(c) The vehicle’s steering and braking must be functional. -(d) A team member must be sitting in the cockpit and must be able to operate the steering and -braking in a normal manner. -(e) A team member must be walking beside the car. -(f) The team has the option to move the car either with -(i) all four (4) wheels on the ground OR -(ii) with the rear wheels supported on a dolly or push bar mounted wheels, provided that -the external wheels supporting the rear of the car are non-pivoting such that the -vehicle will travel only where the front wheels are steered. -1D10.1.3 Cars with wings are required to have two team members walking on either side of the vehicle -whenever the vehicle is being pushed. -NOTE: During performance events when the excitement is high, it is particularly important that the car -be moved at a slow pace in the pits. The walking rule will be enforced and a point penalty of -twenty-five (25) points will be assessed for each violation. -1D10.2 Push Bar -Each car must have a removable device that attaches to the rear of the car that allows two (2) people, -standing erect behind the vehicle, to push the car around the event site. This device must also -be capable of decelerating, i.e. slowing and stopping the forward motion of the vehicle by -pulling it rearwards. It must be presented with the car at Technical Inspection. -1D10.3 Smoking – Prohibited -Smoking is prohibited in all competition areas. -1D10.4 Fueling and Refueling -Officials must conduct all fueling and refueling. The vehicle must be de-energized when refueling, and -no other activities (including any mechanical or electrical work) are allowed while refueling. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -1D10.5 Energized Vehicles in the Paddock or Garage Area -Any time a vehicle is energized such that it is capable of motion (i.e. the TSAL lamp is illuminated), the -drive wheels must be removed or properly supported clear of the ground. -1D10.6 Engine Running in the Paddock -Engines may be run in the paddock provided: -(a) The car has passed all technical inspections. -AND -(b) The drive wheels are removed or properly supported clear of the ground. -1D10.7 Safety Glasses -Safety glasses must be worn at all times while working on a vehicle, and by anyone within 10 ft. (3 -meters) of a vehicle that is being worked on. -1D10.8 Curfews -A curfew period may be imposed on working in the garages. Be sure to check the event guide for further -information -ARTICLE D11 DRIVING RULES -1D11.1 Driving Under Power -1D11.1.1 Cars may only be driven under power: -(a) When running in an event. -(b) When on the practice track. -(c) During the brake test. -(d) During any powered vehicle movement specified and authorized by the organizers. -1D11.1.2 For all other movements cars must be pushed at a normal walking pace using a push bar. -1D11.1.3 Driving a vehicle outside of scheduled events or scheduled practice will result in a two hundred -(200) point penalty for the first violation and expulsion of the team for a second violation. -1D11.2 Driving Off-Site - Prohibited -Driving off-site is absolutely prohibited. Teams found to have driven their vehicle at an off-site location -during the period of the competition will be disqualified from the competition. -1D11.3 Practice Track -1D11.3.1 A practice track for testing and tuning cars may be available at the discretion of the organizers. -The practice area will be controlled and may only be used during the scheduled practice times. -1D11.3.2 Practice or testing at any location other than the practice track is absolutely forbidden. -1D11.3.3 Cars using the practice track must have passed all parts of the technical inspection. -1D11.4 Situational Awareness -Drivers must maintain a high state of situational awareness at all times and be ready to respond to the -track conditions and incidents. Flag signals and hand signals from course marshals and officials -must be immediately obeyed. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -ARTICLE D12 DEFINITIONS -DOO - A cone is “Down or Out”—if the cone has been knocked over or the entire base of the cone lies -outside the box marked around the cone in its undisturbed position. -DNF- Did Not Finish -Gate - The path between two cones through which the car must pass. Two cones, one on each side of the -course define a gate: Two sequential cones in a slalom define a gate. -Entry Gate -The path marked by cones which establishes the required path the vehicle must take to enter -the course. -Exit Gate - The path marked by cones which establishes the required path the vehicle must take to exit -the course. -Staging Area - An area prior to the entry to an event for the purpose of gathering those cars that are about -to start. -OC - A car is Off Course if it does not pass through a gate in the required direction. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix A -Accumulator Rating & Fuel -Equivalency -Each accumulator device will be assigned an energy rating and fuel equivalency based on -the following: -Battery capacities are based on nominal (data sheet values). Ultracap capacities are based on the -maximum operating voltage (Vpeak) and the effective capacitance in Farads (Nparallel x C / -Nseries). -Batteries: Energy (Wh) = Vnom x Inom x Total Number of Cells x 80% -Capacitors: -where V -min -is assumed to be 10% of V -peak. -Table 19 - Accumulator Device Energy Calculations -Liquid Fuels Wh / Liter -32 -Gasoline (Sunoco -33 -Optima) 2,343 -Table 20 - Fuel Energy Equivalencies -Examples: -A battery with an energy rating of 3110 Wh has a fuel equivalency of 1.327 liters. -If using 89 Maxell MC 2600 ultracaps in series (2600 F/89 = 29.2 F, 2.7 x 89 = 240 V), the fuel -equivalency is 231.9 Wh resulting in a 99cc reduction of gasoline. -32 -Formula Hybrid + Electric assumes a mechanical efficiency of 27% -33 -Full specifications for Sunoco racing fuels may be found at: https://www.sunocoracefuels.com/ - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix B -Determination of LapSum(n) -Values -The parameter LapSum(n) is used in the calculation of the scores for the endurance event. It is a function -of the number of laps (n) completed by a team during the endurance event. It is calculated by summing -the lap numbers from 1 to (n), the number of laps completed. This gives increasing weight to each -additional lap completed during the endurance event. -For example: -If your team is credited with completing five (5) laps of the endurance event, the value of LapSum(n)your -used in compute your endurance score would be the following: -LapSum(5) -your -= 1 + 2 + 3 + 4 + 5 = 15 -Number of Laps -Completed (n) -LapSum(n) -Number of Laps -Completed (n) -LapSum(n) -0 0 23 276 -1 1 24 300 -2 3 25 325 -3 6 26 351 -4 10 27 378 -5 15 28 406 -6 21 29 435 -7 28 30 465 -8 36 31 496 -9 45 32 528 -10 55 33 561 -11 66 34 595 -12 78 35 630 -13 91 36 666 -14 105 37 703 -15 120 38 741 -16 136 39 780 -17 153 40 820 -18 171 41 861 -19 190 42 903 -20 210 43 946 -21 231 44 990 -22 253 - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Table 21 - Example of LapSum(n) calculation for a 44-lap Endurance event -Figure 45 - Plot of LapSum(n) calculation for a 44-lap Endurance event -0 -100 -200 -300 -400 -500 -600 -700 -800 -900 -1000 -0 5 10 15 20 25 30 35 40 45 -LapSum(n) -Laps Completed -LapSum(n) vs. Number of Laps Completed - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix C -Formula Hybrid + Electric -Project Management -Event Scoring Criteria -INTRODUCTION -The Formula Hybrid + Electric Project Management Event is comprised of three components: -Project Plan Report -Change Management Report -Final Presentation. -These components cover the entire life cycle of the Formula Hybrid + Electric Project from design of the -vehicle through fabrication and performance verification, culminating in Formula Hybrid + -Electric competition at the track. The Project Management Event includes both written reports -and an oral presentation, providing project team members the opportunity to develop further -their communications skills in the context of a challenging automotive engineering team -experience. -Design, construction, and performance testing of a hybrid or electric race car are complex activities that -require a structured effort to increase the probability of success. The Project Management -Event is included in the Formula Hybrid + Electric competition to encourage each team to -create this structure specific to their set of circumstances and goals. Comments each team -receives from judges relative to their project plan and change management report, offer -guidance directed at project execution. Verbal comments made by judges following the -presentation component offer suggestions to improve performance in future competitions. -In scoring the Project Management Event judges assess (1) if a well-thought-out project plan has been -developed, (2) that the plan was executed effectively while addressing challenges encountered -and managing change and (3) the significance of lessons learned by team members from this -experience and quality of recommendations proposed to improve future team performance. -Basic Areas Evaluated -Five categories of effort are evaluated across the three components of Formula Hybrid + Electric -Project Management, but the scoring criteria differ for each, reflecting the phase of the project -life-cycle that is being assessed. The criteria includes: (1) Scope (2) Operations (3) Risk -Management (4) Expected Results (5) Change Management. Each is briefly defined below. -1. Scope: A brief introduction of the project documenting what will be accomplished: team goals -and objectives beyond simply winning the competition, known as “secondary goals”, major -deliverables such as critical sub-systems, innovative designs, or new technologies, and milestones -for achieving the goals. Overall, this information is called the Statement of Work. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -2. Operations: How the project team is structured, usually shown with an organizational chart; -Work Breakdown Structure, a cascading representation of tasks that will be completed; a project -schedule for completing these tasks, usually this is depicted in a Gantt chart that shows the -timeline and interdependencies among different activities; also included are the approved budget -for the project and plan for obtaining these funds. -3. Risk Management: Arriving at the track with a completed, rules compliant race car increases the -probability of full participation in all events during the competition. Even though numerous tasks -are involved in the design, build, and test of a hybrid race car, there is a smaller subset of tasks -that present a high risk to completing the car on schedule. These are high risk tasks because the -team may lack knowledge, experience, or sufficient resources necessary for completing them -successfully. However, to achieve the team goals, these tasks must be done. Identify the high risk -tasks along with contingency plans for advancing the project forward if they become barriers to -progress. -4. Expected Results: In general, project teams are expected to deliver what is defined in the scope -statement, on time according to project schedule, and within the budget constraint. Goals and -objectives are more specifically defined by “measures of success”, quantified attributes that give -numerical targets for each goal. These “measures” are of value throughout project execution for -setting priorities and making resource decisions. At project completion, they are used to -determine the extent to which the team’s goals and objectives have been accomplished. -5. Change Management: The need for change is a normal occurrence during project execution. -Change is good because it refocuses the team when new information is obtained or unexpected -challenges are encountered. But if it is not managed correctly change can become a destructive -element to the project. -Change Management is a process designed by the team for administering project change and -managing uncertainty. The process includes built-in controls to ensure that change is managed in -a disciplined way, adequately documented and clearly communicated to all team members. -SCORING GUIDELINES -The guidelines used by judges for scoring the three components of the Project Management Event are -given in the following sections: (1) Project Plan Report, (2) Change Management Report, and -(3) Project Management Presentation at the competition. -1. Project Plan Report -Each Formula Hybrid + Electric team is required to submit a formal Project Plan that reflects team goals -and objectives for the upcoming competition, the management structure and tasks that will be -completed to accomplish these objectives, and the time schedule over which these tasks will be -performed. In addition, the formal process for managing change must be defined. A maximum -of fifty-five (55) points is awarded for the Project Plan. -Quality of the Written Document: The plan should look and read like a professional document. The -flow of information is expected to be logical; the content should be clear and concise. The -reader should be able to understand the plan that will be executed. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -The Project Plan must consist of at least one (1) page and not exceed three (3) pages of text. Appendices -may be attached to the Project Plan and do not count as “pages”, but they must be relevant and -referenced in the body of the report. -“SMART” Goals -Projects are initiated to achieve predetermined goals, which are identified in the Scope statement. The -project plan is a “roadmap” for effectively deploying team resources to accomplish these goals. -Overall, the requirements of the Project Plan incorporate the basic principles of “SMART” -goals. These goals have the following characteristics: -● Specific: Sufficient detail is provided to clearly identify the targeted objectives; goals are -specifically stated so that all individual project team members understand what the team must -accomplish. -● Measurable: The objectives are quantified so that progress toward the goals can be measured; -“measures of success” are defined for this purpose. -● Assignable: The person or group responsible for achieving the goals is identified; each task, -milestone, and deliverable has an owner, someone responsible for seeing that each is completed. -● Realistic: The goals can actually be achieved given the resources and time available. Along with -realistic goals, a team might define “stretch goals” which are more aggressive objectives that -challenge the team. If the “stretch goals” become barriers to progress during project execution, -the change management process is used to pull back “stretch goals”, re-focusing the team on -more realistic objectives. -● Time-Related: Deadlines are set for achieving each goal, milestone, or deliverable. These -deadlines are consistent with the overall project schedule and can be extracted from the project -timeline. -Characteristics of an Excellent Project Plan Report Submission -● Scope: A brief overview is included covering the team’s past performance and recommendations -received from previous teams for improvement. Achievable primary and secondary goals for this -year’s team are clearly stated. These goals are more than simply winning the competition. -Milestones, with due dates, and major deliverables that support accomplishing the goals are -listed. -● Operations: An organizational chart showing the structure of the team and Work Breakdown -Structure showing the cascading linkage of tasks comprising the project are included. The -timeframe and interdependencies of each task are shown in a Gantt chart timeline. The project -budget is specified and a brief overview of how these funds will be obtained is given. -● Risk Management: Careful thought is demonstrated to understand the weakest areas of the -project plan. Several “High Risk” tasks are identified that might have a significant impact on a -functional car being produced on time. A contingency plan is described to mitigate these risks if -they become barriers during project execution. -● Expected Results: All teams are expected to complete the project on schedule, within budget, -and to deliver a functional, rules complaint race car to the track. But each team has a set of -primary and secondary goals specific to its project plan. Additional depth is given to these goals -by quantifying them, defining measurable targets helpful for directing team efforts. At least two -“measures of success” are defined that are related to the team’s specific performance goals. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -● Change Management: A process for administering changes has been carefully thought-out; it is -briefly described and shown schematically in terms of: (1) what triggers the process, (2) how -information flows through the process, (3) how decision making is handled, and (4) how changes -are communicated to the team. A process flow diagram may be included in the Appendix to save -space, however is referenced in the body of the report. At a minimum, the diagram shows the -“trigger”, information flow, decision making tasks and responsibilities, and communication tasks. -The diagram is specific to and created by the team. There are sufficient controls in place to -prevent un-managed changes. The team has an effective communication plan in place to keep all -team members informed throughout project duration. -Applying the Project Plan Report Scoring Guidelines -The guidelines for awarding points in each Project Plan Report category are given in Figure 46. Four -performance designations are also specified: Excellent, Good, Marginal, and Deficient. A range -of points is suggested for each designation to give reviewers flexibility in evaluating the quality -and completeness of the submitted plans. -While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component -must be summarized in the body of the report to receive full credit. Any diagram or table (or -other appropriate figure type) must be referenced and linked appropriately to the correct content -in the Appendix. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Figure 46 - Scoring Guidelines: Project Plan Component -34 -34 -This score sheet is available on the Formula Hybrid+Electric website in the Project Management Resources -folder. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -2. Change Management Report -The purpose of the Change Management Report is to give each judge a sense of the team’s ability to deal -with issues that will put the project schedule at risk. -Frequently, as the project progresses or as problems arise, changes may be required to vehicle -specifications or the plan for completing the project. This is an area that many teams find -difficult to manage. Of particular interest to judges are barriers encountered and creative -actions taken by the team to overcome these challenges and advance the project forward. -The Change Management Report is a maximum two (2) page summary, clearly communicating the -documented changes to the project scope and plan that have been approved using the change -management process. Appendices may be included with supporting information; they do not -have a page limit but the content is expected to be supportive of the information covered in the -main body of the report. -A maximum of forty (40) points is awarded for the Change Management Report. The content of the report -is evaluated in three broad areas: (1) Explanation of the Change Management Process (2) -Example of the Implementation of the Change Management Process, and (3) Evaluation of the -Effectiveness and Areas of Improvement for the Change Management Process. Additionally, a -final area evaluated is the quality of the overall report document. -Characteristics of an Excellent Change Management Report Submission -● Change Management Process: In the body of the report, the team provides a thorough and -clear explanation of their Change Management Process, including the following characteristics: -• What triggers/initiates the process? -• How does information flow through the process? -• How are decisions made, and who makes those decisions? -• How are final decisions communicated to the team? -• Process flow diagram (see below) -● A process flow diagram may be included in the Appendix to save space; however, it is referenced -in the body of the report. At a minimum, the diagram shows the “trigger”, information flow, -decision making tasks and responsibilities, and communication tasks. The diagram is specific to -and created by the team. -● Implementation of the Change Management Process: In the body of the report, the team -provides a single thorough and clear example of the implementation of the Change Management -Process. The example provided addresses all stages of the process from start to finish, including -the overall impact to the project. -● Effectiveness of and Improvements to the Change Management Process: In the body of the -report, the team provides their own assessment of the effectiveness of their Change Management -Process, primarily based upon the example provided. This includes the effectiveness of each stage -of the process (trigger, information flow, decision making, and communication) as well as an -overall assessment. Based on their assessment, the team provides two areas of opportunity to -improve the Change Management Process, including what stage of the process is impacted and -why this change is being made. The team addresses plans for what the team must do to make the -proposed changes, timing of changes, and a definition of how to measure the effectiveness of the -changes for the following year. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -● Proper Use of Appendix: While the Appendix may be used to refer to diagrams, tables, etc., a -brief explanation for each component must be summarized in the body of the report to receive full -credit. Any diagram or table (or other appropriate figure type) must be referenced and linked -appropriately to the correct content in the Appendix. -Applying the Change Management Scoring Guidelines -The guidelines for awarding points in each Change Management Report evaluation category are given in -Figure 47. Similar to the Project Plan guidelines, four performance designations are specified: -Excellent, Good, Marginal, and Deficient. A range of points is suggested for each designation -to give reviewers flexibility in weighing quality and completeness of information for each -category. -Figure 47: Change Management Report Scoring Guidelines - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -While the Appendix may be used to refer to diagrams, tables, etc., a brief explanation for each component -must be summarized in the body of the report to receive full credit. Any diagram or table (or -other appropriate figure type) must be referenced and linked appropriately to the correct content -in the Appendix. -3. Project Management Presentation at the Competition -The Presentation component gives teams the opportunity to briefly explain their project plans, assess how -well their project management process worked, and identify recommendations for improving -their team’s project management process in the future. In addition, the Presentation component -enables team leaders to enhance their communication skills in presenting a complex topic -clearly and concisely. -The Presentation component is the culmination of the project management experience, which included -submission by each team of a project plan and change management report. Scoring of each -presentation is based on how well project management practices were used by the team in the -planning, execution, and change management aspects of the project. Of particular interest are -innovative approaches used by each team in dealing with challenges and how lessons learned -from the current competition will be used to foster continuous improvement in the design, -development, and testing of their cars for future competitions. -Project Management presentations are made on the Static Events Day during the competition. Each -presentation is limited to a maximum of twelve (12) minutes. An eight (8) minute question and -answer period will follow along with a feedback discussion with judges lasting no longer than -five (5) minutes. -This format will give each team an opportunity to critique their project management performance, clarify -major points, and have a discussion with judges on areas that can be improved or strengths that -can be built upon for next year’s competition. Only the team members present who are -introduced at the start of the presentation will be allowed to speak and/or respond to questions -and comments. -Scoring the Project Management Presentation -In awarding points, each judge must determine if the team demonstrated an understanding of project -management, if the described accomplishments are credible, and if the approaches used to -manage the project were effective. These judgements are formed after listening to each -presentation and probing the teams for clarity and additional details during the questioning -period afterward. Presentation quality and communications skills of team members are -extremely important for establishing a positive impression. -A chart summarizing the evaluation criteria for the Presentation component is given in Figure 48 – -Evaluation Criteria. This provides more detailed guidelines used by the judging review team -for evaluating each project management presentation. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Figure 48 – Evaluation Criteria -Characteristics on an Excellent Project Management Presentation -● Scope: The primary and secondary goals defined in the project plan are addressed; the degree -to which each has been accomplished is explained. Where applicable, the “Measures of Success” -are used to support the stated level of accomplishment. If the original goals have been changed, -the reasons for modification are explained. -● Operations: Was this project a success? This conclusion is supported by Team performance -against the budget, project schedule, and deliverables produced. The effectiveness of the team’s -structure is explained. If the operation was disorderly or inefficient during project execution, an -overview of corrective actions taken to fix the problem is given. -● Risk Management: The team’s success to correctly anticipate risk in the original project plan -and effectiveness of the risk mitigation plan are described. An overview of unanticipated risks -that were encountered during project execution and approaches to overcome these barriers are -explained. -● Change Management: A need for change occurs naturally in almost every project; it is -anticipated that every Formula Hybrid + Electric team will have experienced some type of change -during project execution. Change management strives to align the efforts of all team members -working in the dynamic project environment. The effectiveness of the overall change -management process in dealing with needed modifications is described. This is supported with - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -statistics on the number of changes approved and rejected. The effectiveness of the team’s -communication methods, both written and verbal, is explained. Areas of opportunity for -improvement to the change management process are briefly described as well as their status of -implementation for next year. -● Lessons Learned: When a project is completed, the team should conduct an assessment of -overall performance to determine what worked well and what failed. The strengths and -weaknesses of the team are described. This evaluation is used to propose recommendations for -improving the performance of next year’s team. Also, a plan for conveying this information to the -new leadership team is described. A leadership succession plan is briefly described. -● “SMART” Goals: Team’s demonstrated understanding and application of “SMART” goals. -● Communications Skills: The team establishes credibility by demonstrating that it has taken the -time necessary to carefully plan and create the presentation. The presentation is well organized, -content is relevant to the purpose of the presentation. Charts have a professional appearance and -are informative. Without the speaker rushing through the material, a large amount of information -is conveyed within the allowed time limit. Tables, diagrams, and graphs are used effectively. -Team members demonstrate mutual accountability with shared responses to questions. Answers are -conveyed in a manner that instills confidence in the team’s ability to plan and execute a complex -project like Formula Hybrid + Electric. -Figure 49 - Project Management Scoring Sheet - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix D -Design Judging Form -35 -35 -This form is for informational use only – the actual form used may differ. Check the Formula Hybrid + Electric -website prior to the competition for the latest Design judging form. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix E -Wire Current Capacity (DC) -Wire Gauge -Copper -AWG -Conductor -Area mm -2 -Max. -Continuous -Fuse Rating -(A) -Standard -Metric Wire -Size mm -2 -Max. -Continuous -Fuse Rating -(A) -24 0.20 5 0.50 10 -22 0.33 7 0.75 12.5 -20 0.52 10 1.0 15 -18 0.82 14 1.5 20 -16 1.31 20 2.5 30 -14 2.08 28 4.0 40 -12 3.31 40 6.0 60 -10 5.26 55 10 90 -8 8.37 80 16 130 -6 13.3 105 25 150 -4 21.2 140 35 200 -3 26.7 165 50 250 -2 33.6 190 70 300 -1 42.4 220 95 375 -0 53.5 260 120 425 -2/0 67.4 300 150 500 -3/0 85.0 350 185 550 -4/0 107 405 240 650 -250 MCM 127 455 300 800 -300 MCM 152 505 -350 MCM 177 570 -400 MCM 203 615 -500 MCM 253 700 -Table 22 – Wire Current Capacity (single conductor in air) -Reference: US National Electrical Code Table 400.5(A)(2), 90C Column D1 (Copper wire only) - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix F -Required Equipment -□ Fire Extinguishers -Minimum Requirements -Each team must have at least two (2) 2.3 kg (5 lb.) dry chemical (Min. 3-A:40-B:C) Fire extinguishers -Extinguishers of larger capacity (higher numerical ratings) are acceptable. -All extinguishers must be equipped with a manufacturer-installed pressure/charge gauge that shows -“FULL”. -Special Requirements -Teams must identify any fire hazards specific to their vehicle’s components and if fire extinguisher/fire -extinguisher material other than those required in section T15.1 are needed to suppress such fires, then at -least two (2) additional extinguishers/material (at least 5 lb. or equivalent) of the required type must be -procured and accompany the car at all times. As recommendations vary, teams are advised to consult the -rules committee before purchasing expensive extinguishers that may not be necessary. -□ Chemical Spill Absorbent -Teams must have chemical spill absorbent at hand, appropriate to their specific risks. This material must -be presented at technical inspection. -□ Insulated Gloves -Insulated gloves, rated for at least the voltage in the TS system, with protective over-gloves. Electrical -gloves require testing by a qualified company. The testing is valid for 14 months after the date of the test. -All gloves must have the test date printed on them. -□ Safety Glasses -Safety glasses must be worn as specified in section D10.7 -□ Additional -Any special safety equipment required for dealing with accumulator mishaps, for example correct gloves -recommended for handling any electrolyte material in the accumulator. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix G -Example Relay Latch Circuits -The diagrams below are examples of relay-based latch circuits that can be used to latch the momentary -output of the Bender IMD (either high-true or low-true) such that it will comply with Formula Hybrid + -Electric rule EV7.1. Circuits such as these can also be used to latch AMS faults in accordance -with EV2.1.3. It is highly recommended that IMD and AMS latching circuits be separate and -independent to aid fault identification during the event. -Note: It is important to confirm by checking the data sheets, that the output pin of the IMD can power the -relay directly. If not, an amplification device will be required -36 -. -Figure 50 - Latching for Active-High output Figure 51 - Latching for Active-Low output -36 -An example relay is the Omron LY3-DC12: -http://www.ia.omron.com/product/item/6403/ - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix H -Firewall Equivalency Test -To demonstrate equivalence to the aluminum sheet specified in rule T4.5.2, teams should submit -a video, showing a torch test of their proposed firewall material. -Camera angle, etc. should be similar to the video found here: -https://www.youtube.com/watch?v=Qw6kzG97ZtY -A propane plumber’s torch should be held at a distance from the test piece such that the hottest -part of the flame (the tip of the inner cone) is just touching the test piece. -The video must show two sequential tests and be contiguous and unedited (except for trimming -the irrelevant leading and trailing portions). -The first part of the video should show the torch applied to a piece of Aluminum of the thickness -called for in T4.5.2, and held long enough to burn through the aluminum. The torch should then -be moved directly to a similarly sized test piece of the proposed material without changing any -settings, and held for at least as long as the burn-through time for the Aluminum. -There must be no penetration of the test piece. The equivalent firewall construction must have -similar mechanical strength to the aluminum barrier called for in T4.5.2. This can be -demonstrated by equivalent resistance to deformation or puncturing. - -2025 Formula Hybrid + Electric Rules – Rev. 3 January 19, 2025 -Appendix I Virtual Racing -Challenge -The Virtual Racing Challenge will be held in 2025. -END \ No newline at end of file diff --git a/scripts/document-parser/txtVersions/FSAE.txt b/scripts/document-parser/txtVersions/FSAE.txt deleted file mode 100644 index 4455df950f..0000000000 --- a/scripts/document-parser/txtVersions/FSAE.txt +++ /dev/null @@ -1,5628 +0,0 @@ - - -Formula SAE® Rules 2025 © 2024 SAE International Page 1 of 143 -Version 1.0 31 Aug 2024 -Rules 2025 -Version 1.0 -31 Aug 2024 - -Formula SAE® Rules 2025 © 2024 SAE International Page 2 of 143 -Version 1.0 31 Aug 2024 -TABLE OF CONTENTS -GR - General Regulations....................................................................................................................5 -GR.1 Formula SAE Competition Objective .................................................................................................... 5 -GR.2 Organizer Authority.............................................................................................................................. 6 -GR.3 Team Responsibility ............................................................................................................................. 6 -GR.4 Rules Authority and Issue..................................................................................................................... 7 -GR.5 Rules of Conduct .................................................................................................................................. 7 -GR.6 Rules Format and Use .......................................................................................................................... 8 -GR.7 Rules Questions.................................................................................................................................... 9 -GR.8 Protests ................................................................................................................................................ 9 -GR.9 Vehicle Eligibility ................................................................................................................................ 10 -AD - Administrative Regulations ....................................................................................................... 11 -AD.1 The Formula SAE Series ...................................................................................................................... 11 -AD.2 Official Information Sources .............................................................................................................. 11 -AD.3 Individual Participation Requirements............................................................................................... 11 -AD.4 Individual Registration Requirements ................................................................................................ 12 -AD.5 Team Advisors and Officers................................................................................................................ 12 -AD.6 Competition Registration ................................................................................................................... 13 -AD.7 Competition Site ................................................................................................................................ 14 -DR - Document Requirements .......................................................................................................... 16 -DR.1 Documentation .................................................................................................................................. 16 -DR.2 Submission Details ............................................................................................................................. 16 -DR.3 Submission Penalties.......................................................................................................................... 17 -V - Vehicle Requirements ................................................................................................................. 19 -V.1 Configuration ..................................................................................................................................... 19 -V.2 Driver.................................................................................................................................................. 20 -V.3 Suspension and Steering .................................................................................................................... 20 -V.4 Wheels and Tires ................................................................................................................................ 21 -F - Chassis and Structural.................................................................................................................. 23 -F.1 Definitions .......................................................................................................................................... 23 -F.2 Documentation .................................................................................................................................. 25 -F.3 Tubing and Material ........................................................................................................................... 25 -F.4 Composite and Other Materials ......................................................................................................... 28 -F.5 Chassis Requirements ........................................................................................................................ 30 -F.6 Tube Frames ....................................................................................................................................... 37 -F.7 Monocoque ........................................................................................................................................ 39 -F.8 Front Chassis Protection .................................................................................................................... 43 -F.9 Fuel System (IC Only) ......................................................................................................................... 48 -F.10 Accumulator Container (EV Only) ...................................................................................................... 49 -F.11 Tractive System (EV Only) .................................................................................................................. 52 -T - Technical Aspects ........................................................................................................................ 54 -T.1 Cockpit................................................................................................................................................ 54 -T.2 Driver Accommodation ...................................................................................................................... 58 -T.3 Brakes ................................................................................................................................................. 63 -T.4 Electronic Throttle Components ........................................................................................................ 64 -T.5 Powertrain.......................................................................................................................................... 66 - -Formula SAE® Rules 2025 © 2024 SAE International Page 3 of 143 -Version 1.0 31 Aug 2024 -T.6 Pressurized Systems ........................................................................................................................... 68 -T.7 Bodywork and Aerodynamic Devices ................................................................................................. 69 -T.8 Fasteners ............................................................................................................................................ 71 -T.9 Electrical Equipment .......................................................................................................................... 72 -VE - Vehicle and Driver Equipment ................................................................................................... 75 -VE.1 Vehicle Identification ......................................................................................................................... 75 -VE.2 Vehicle Equipment ............................................................................................................................. 75 -VE.3 Driver Equipment ............................................................................................................................... 77 -IC - Internal Combustion Engine Vehicles .......................................................................................... 79 -IC.1 General Requirements ....................................................................................................................... 79 -IC.2 Air Intake System ............................................................................................................................... 79 -IC.3 Throttle .............................................................................................................................................. 80 -IC.4 Electronic Throttle Control................................................................................................................. 81 -IC.5 Fuel and Fuel System ......................................................................................................................... 84 -IC.6 Fuel Injection ...................................................................................................................................... 86 -IC.7 Exhaust and Noise Control ................................................................................................................. 87 -IC.8 Electrical ............................................................................................................................................. 88 -IC.9 Shutdown System............................................................................................................................... 88 -EV - Electric Vehicles ........................................................................................................................ 90 -EV.1 Definitions .......................................................................................................................................... 90 -EV.2 Documentation .................................................................................................................................. 90 -EV.3 Electrical Limitations .......................................................................................................................... 90 -EV.4 Components ....................................................................................................................................... 91 -EV.5 Energy Storage ................................................................................................................................... 94 -EV.6 Electrical System ................................................................................................................................ 98 -EV.7 Shutdown System............................................................................................................................. 102 -EV.8 Charger Requirements ..................................................................................................................... 107 -EV.9 Vehicle Operations ........................................................................................................................... 108 -EV.10 Event Site Activities .......................................................................................................................... 109 -EV.11 Work Practices ................................................................................................................................. 109 -IN - Technical Inspection ................................................................................................................ 112 -IN.1 Inspection Requirements ................................................................................................................. 112 -IN.2 Inspection Conduct .......................................................................................................................... 112 -IN.3 Initial Inspection ............................................................................................................................... 113 -IN.4 Electrical Technical Inspection (EV Only) ......................................................................................... 113 -IN.5 Driver Cockpit Checks....................................................................................................................... 114 -IN.6 Driver Template Inspections ............................................................................................................ 115 -IN.7 Cockpit Template Inspections .......................................................................................................... 115 -IN.8 Mechanical Technical Inspection ..................................................................................................... 115 -IN.9 Tilt Test ............................................................................................................................................. 116 -IN.10 Noise and Switch Test (IC Only) ....................................................................................................... 117 -IN.11 Rain Test (EV Only) ........................................................................................................................... 118 -IN.12 Brake Test......................................................................................................................................... 118 -IN.13 Inspection Approval ......................................................................................................................... 119 -IN.14 Modifications and Repairs ............................................................................................................... 119 -IN.15 Reinspection ..................................................................................................................................... 120 - -Formula SAE® Rules 2025 © 2024 SAE International Page 4 of 143 -Version 1.0 31 Aug 2024 -S - Static Events.............................................................................................................................. 121 -S.1 General Static ................................................................................................................................... 121 -S.2 Presentation Event ........................................................................................................................... 121 -S.3 Cost and Manufacturing Event......................................................................................................... 122 -S.4 Design Event..................................................................................................................................... 126 -D - Dynamic Events ........................................................................................................................ 128 -D.1 General Dynamic .............................................................................................................................. 128 -D.2 Pit and Paddock................................................................................................................................ 128 -D.3 Driving .............................................................................................................................................. 129 -D.4 Flags ................................................................................................................................................. 130 -D.5 Weather Conditions ......................................................................................................................... 130 -D.6 Tires and Tire Changes ..................................................................................................................... 131 -D.7 Driver Limitations ............................................................................................................................. 132 -D.8 Definitions ........................................................................................................................................ 132 -D.9 Acceleration Event ........................................................................................................................... 132 -D.10 Skidpad Event ................................................................................................................................... 133 -D.11 Autocross Event ............................................................................................................................... 135 -D.12 Endurance Event .............................................................................................................................. 137 -D.13 Efficiency Event ................................................................................................................................ 141 -D.14 Post Endurance ................................................................................................................................ 143 -Verify this is the current version of this document at the FSAE Online website www.fsaeonline.com -REVISION SUMMARY -Provided as a courtesy. Not a complete list. See GR.3.3 and GR.6.6 -1.0 Changes in sections: F.4.2.6, F.4.3, F.5.11, F.10.2, F.10.3, T.1.8, T.2.4, EV.5.10, EV.5.11 -Ground Clearance, Impact Protection V.1.4.2, F.6.4.4.b, F.7.5.1, F.8.5.6, F.11.3 -Allowance for Late Submissions DR.3.3.1 -Other Selected changes: F.5.6.3, T.8.3.3, EV.3.2.4, EV.5.4, EV.5.5, EV.7.3, EV.5.6.1, EV.5.6.2, -EV.5.9, EV.7.8.4 - -Formula SAE® Rules 2025 © 2024 SAE International Page 5 of 143 -Version 1.0 31 Aug 2024 -GR - GENERAL REGULATIONS -GR.1 FORMULA SAE COMPETITION OBJECTIVE -GR.1.1 Collegiate Design Series -SAE International's Collegiate Design Series (CDS) programs prepare undergraduate and -graduate engineering students in a variety of disciplines for future employment in mobility- -related industries by challenging them with a real world, engineering application. -Through the Engineering Design Process, experiences may include but are not limited to: -• Project management, budgeting, communication, and resource management skills -• Team collaboration -• Applying industry rules and regulations -• Design, build, and test the performance of a real vehicle -• Interact and compete with other students from around the globe -• Develop and prepare technical documentation -Students also gain valuable exposure to and engagement with industry professionals to -enhance 21st century learning skills, to build their own network and help prepare them for the -workforce after graduation. -GR.1.2 Formula SAE Concept -The Formula SAE® competitions challenge teams of university undergraduate and graduate -students to conceive, design, fabricate, develop and compete with small, formula style -vehicles. -GR.1.3 Engineering Competition -Formula SAE® is an engineering education competition that requires performance -demonstration of vehicles in a series of events, off track and on track against the clock. -Each competition gives teams the chance to demonstrate their creativity and engineering -skills in comparison to teams from other universities around the world. -GR.1.4 Vehicle Design Objectives -GR.1.4.1 Teams will act as an engineering firm that will conceive, design, fabricate, test, develop and -demonstrate a prototype vehicle -GR.1.4.2 The vehicle should have high performance and be sufficiently durable to successfully complete -all the events at the Formula SAE competitions. -GR.1.4.3 Additional design factors include: aesthetics, cost, ergonomics, maintainability, and -manufacturability. -GR.1.4.4 Each design will be judged and evaluated against other competing designs in a series of Static -and Dynamic events to determine the vehicle that best meets the design goals and may be -profitably built and marketed. -GR.1.5 Good Engineering Practices -Vehicles entered into Formula SAE competitions should be designed and fabricated in -accordance with good engineering practices. - -Formula SAE® Rules 2025 © 2024 SAE International Page 6 of 143 -Version 1.0 31 Aug 2024 -GR.2 ORGANIZER AUTHORITY -GR.2.1 General Authority -SAE International and the competition organizing bodies reserve the right to revise the -schedule of any competition and/or interpret or modify the competition rules at any time and -in any manner that is, in their sole judgment, required for the efficient operation of the event -or the Formula SAE series as a whole. -GR.2.2 Right to Impound -GR.2.2.1 SAE International and other competition organizing bodies may impound any onsite vehicle or -part of the vehicle at any time during a competition. -GR.2.2.2 Team access to the vehicle or impound may be restricted. -GR.2.3 Problem Resolution -Any problems that arise during the competition will be resolved through the onsite organizers -and the decision will be final. -GR.2.4 Restriction on Vehicle Use -SAE International, competition organizer(s) and officials are not responsible for use of vehicles -designed in compliance with these Formula SAE Rules outside of the official Formula SAE -competitions. -GR.3 TEAM RESPONSIBILITY -GR.3.1 Rules Compliance -By registering for a Formula SAE competition, the team, members of the team as individuals, -faculty advisors and other personnel of the entering university agree to comply with, and be -bound by, these rules and all rule interpretations or procedures issued or announced by SAE -International, the Formula SAE Rules Committee and the other organizing bodies. -GR.3.2 Student Project -By registering for any university program, the University registered assumes liability of the -student project. -GR.3.3 Understanding the Rules -Teams, team members as individuals and faculty advisors, are responsible for reading and -understanding the rules in effect for the competition in which they are participating. -GR.3.4 Participating in the Competition -GR.3.4.1 Teams, individual team members, faculty advisors and other representatives of a registered -university who are present onsite at a competition are “participating in the competition” from -the time they arrive at the competition site until they depart the site at the conclusion of the -competition or earlier by withdrawing. -GR.3.4.2 All team members, faculty advisors and other university representatives must cooperate with, -and follow all instructions from, competition organizers, officials and judges. -GR.3.5 Forfeit for Non Appearance -GR.3.5.1 It is the responsibility of each team to be in the right location at the right time. -GR.3.5.2 If a team is not present and ready to compete at the scheduled time, they forfeit their attempt -at that event. - -Formula SAE® Rules 2025 © 2024 SAE International Page 7 of 143 -Version 1.0 31 Aug 2024 -GR.3.5.3 There are no makeups for missed appearances. -GR.4 RULES AUTHORITY AND ISSUE -GR.4.1 Rules Authority -The Formula SAE Rules are the responsibility of the Formula SAE Rules Committee and are -issued under the authority of the SAE International Collegiate Design Series. -GR.4.2 Rules Validity -GR.4.2.1 The Formula SAE Rules posted on the website and dated for the calendar year of the -competition are the rules in effect for the competition. -GR.4.2.2 Rules appendices or supplements may be posted on the website and incorporated into the -rules by reference. -GR.4.2.3 Additional guidance or reference documents may be posted on the website. -GR.4.2.4 Any rules, questions, or resolutions from previous years are not valid for the current -competition year. -GR.4.3 Rules Alterations -GR.4.3.1 The Formula SAE rules may be revised, updated, or amended at any time -GR.4.3.2 Official designated communications from the Formula SAE Rules Committee, SAE International -or the other organizing bodies are to be considered part of, and have the same validity as, -these rules -GR.4.3.3 Draft rules or proposals may be issued for comments, however they are a courtesy, are not -valid for any competitions, and may or may not be implemented in whole or in part. -GR.4.4 Rules Compliance -GR.4.4.1 All participants must comply with the latest issue of the Formula SAE Rules. Refer to the FSAE -Online Website to verify the current version. -GR.4.4.2 Teams and team members must comply with the general rules and any specific rules for each -competition they enter. -GR.4.4.3 Any regulations pertaining to the use of the competition site by teams or individuals and -which are posted, announced and/or otherwise publicly available are incorporated into the -Formula SAE Rules by reference. -As examples, all competition site waiver requirements, speed limits, parking and facility use -rules apply to Formula SAE participants. -GR.4.5 Violations on Intent -The violation of the intent of a rule will be considered a violation of the rule itself. -GR.5 RULES OF CONDUCT -GR.5.1 Unsportsmanlike Conduct -If unsportsmanlike conduct occurs, the team gets a warning from an official. -A second violation will result in expulsion of the team from the competition. -GR.5.2 Official Instructions -Failure of a team member to follow an instruction or command directed specifically to that -team or team member will result in a 25 point penalty. - -Formula SAE® Rules 2025 © 2024 SAE International Page 8 of 143 -Version 1.0 31 Aug 2024 -GR.5.3 Arguments with Officials -Argument with, or disobedience of, any official may result in the team being eliminated from -the competition. -All members of the team may be immediately escorted from the grounds. -GR.5.4 Alcohol and Illegal Material -GR.5.4.1 Alcohol, illegal drugs, weapons or other illegal material are prohibited on the competition site -during the entire competition. -GR.5.4.2 Any violation of this rule by any team member or faculty advisor will cause immediate -disqualification and expulsion of the entire team. -GR.5.4.3 Any use of drugs, or the use of alcohol by an underage individual will be reported to the local -authorities. -GR.5.5 Smoking – Prohibited -Smoking and e-cigarette use is prohibited in all competition areas. -GR.6 RULES FORMAT AND USE -GR.6.1 Definition of Terms -• Must - designates a requirement -• Must NOT - designates a prohibition or restriction -• Should - gives an expectation -• May - gives permission, not a requirement and not a recommendation -GR.6.2 Capitalized Terms -Items or areas which have specific definitions or have specific rules are capitalized. -For example, “Rules Questions” or “Primary Structure” -GR.6.3 Headings -The article, section and paragraph headings in these rules are provided only to facilitate -reading: they do not affect the paragraph contents. -GR.6.4 Applicability -GR.6.4.1 Unless otherwise specified, all rules apply to all vehicles at all times -GR.6.4.2 Rules specific to vehicles based on their powertrain will be specified as such in the rule text: -• Internal Combustion “IC” or “IC Only” -• Electric Vehicle “EV” or “EV Only” -GR.6.5 Figures and Illustrations -Figures and illustrations give clarification or guidance, but are Rules only when referred to in -the text of a rule -GR.6.6 Change Identification -Any summary of changed rules and/or changed portions marked in the rules themselves are -provided for courtesy, and may or may not include all changes. - -Formula SAE® Rules 2025 © 2024 SAE International Page 9 of 143 -Version 1.0 31 Aug 2024 -GR.7 RULES QUESTIONS -GR.7.1 Question Types -Designated officials will answer questions that are not already answered in the rules or FAQs -or that require new or novel rule interpretations. -Rules Questions may also be used to request approval, as specified in these rules. -GR.7.2 Question Format -GR.7.2.1 All Rules Questions must include: -• Full name and contact information of the person submitting the question -• University name – no abbreviations -• The specific competition your team has, or is planning to, enter -• Number of the applicable rule(s) -GR.7.2.2 Response Time -• Please allow a minimum of two weeks for a response -• Do not resubmit questions -GR.7.2.3 Submission Addresses -a. Teams entering Formula SAE competitions: Follow the link and instructions published on -the FSAE Online Website to "Submit a Rules Question" -b. Teams entering other competitions please visit those respective competition websites -for further instructions. -GR.7.3 Question Publication -Any submitted question and the official answer may be reproduced and freely distributed, in -complete and edited versions. -GR.8 PROTESTS -GR.8.1 Cause for Protest -A team may protest any rule interpretation, score or official action (unless specifically -excluded from Protest) which they feel has caused some actual, non trivial, harm to their -team, or has had a substantive effect on their score. -GR.8.2 Preliminary Review – Required -Questions about scoring, judging, policies or any official action must be brought to the -attention of the organizer or SAE International staff for an informal preliminary review before -a protest may be filed. -GR.8.3 Protest Format -• All protests must be filed in writing -• The completed protest must be presented to the organizer or SAE International staff by -the team captain. -• Team video or data acquisition will not be reviewed as part of a protest. -GR.8.4 Protest Point Bond -A team must post a 25 point protest bond which will be forfeited if their protest is rejected. - -Formula SAE® Rules 2025 © 2024 SAE International Page 10 of 143 -Version 1.0 31 Aug 2024 -GR.8.5 Protest Period -Protests concerning any aspect of the competition must be filed in the protest period -announced by the competition organizers or 30 minutes of the posting of the scores of the -event to which the protest relates. -GR.8.6 Decision -The decision regarding any protest is final. -GR.9 VEHICLE ELIGIBILITY -GR.9.1 Student Developed Vehicle -GR.9.1.1 Vehicles entered into Formula SAE competitions must be conceived, designed, fabricated and -maintained by the student team members without direct involvement from professional -engineers, automotive engineers, racers, machinists or related professionals. -GR.9.1.2 Information Sources -The student team may use any literature or knowledge related to design and information from -professionals or from academics as long as the information is given as a discussion of -alternatives with their pros and cons. -GR.9.1.3 Professional Assistance -Professionals must not make design decisions or drawings. The Faculty Advisor may be -required to sign a statement of compliance with this restriction. -GR.9.1.4 Student Fabrication -Students should do all fabrication tasks -GR.9.2 Definitions -GR.9.2.1 Competition Year -The period beginning at the event of the Formula SAE series where the vehicle first competes -and continuing until the start of the corresponding event held approximately 12 months later. -GR.9.2.2 First Year Vehicle -A vehicle which has, at minimum, a newly built chassis and is in its initial Competition Year -GR.9.2.3 Second Year Vehicle -A vehicle which has competed in a previous Competition Year -GR.9.2.4 Third Year Vehicle -A vehicle which has competed in more than one previous Competition Year -GR.9.3 Formula SAE Competition Eligibility -GR.9.3.1 Only First Year Vehicles may enter the Formula SAE Competitions -a. If there is any question about the status as a First Year Vehicle, the team must provide -additional information and/or evidence. -GR.9.3.2 Second Year Vehicles must not enter Formula SAE Competitions, unless permitted by the -organizer of the specific competition. -The Formula SAE and Formula SAE Electric events in North America do not allow Second Year -Vehicles -GR.9.3.3 Third Year Vehicles must not enter any Formula SAE Competitions - -Formula SAE® Rules 2025 © 2024 SAE International Page 11 of 143 -Version 1.0 31 Aug 2024 -AD - ADMINISTRATIVE REGULATIONS -AD.1 THE FORMULA SAE SERIES -AD.1.1 Rule Variations -All competitions in the Formula SAE Series may post rule variations specific to the operation of -the events in their countries. Vehicle design requirements and restrictions will remain -unchanged. Any rule variations will be posted on the websites specific to those competitions. -AD.1.2 Official Announcements and Competition Information -Teams must read the published announcements by SAE International and the other organizing -bodies and be familiar with all official announcements concerning the competitions and any -released rules interpretations. -AD.1.3 Official Languages -The official language of the Formula SAE series is English. -Document submissions, presentations and discussions in English are acceptable at all -competitions in the series. -AD.2 OFFICIAL INFORMATION SOURCES -These websites are referenced in these rules. Refer to the websites for additional information -and resources. -AD.2.1 Event Website -The Event Website for Formula SAE is specific to each competition, refer to: -https://www.sae.org/attend/student-events -AD.2.2 FSAE Online Website -The FSAE Online website is at: http://fsaeonline.com/ -AD.2.2.1 Documents, forms, and information are accessed from the “Series Resources” link -AD.2.2.2 Each registered team must have an account on the FSAE Online Website. -AD.2.2.3 Each team must have one or more persons as Team Captain. The Team Captain must accept -Team Members. -AD.2.2.4 Only persons designated Team Members or Team Captains are able to upload documents to -the website. -AD.2.3 Contacts -Contact collegiatecompetitions@sae.org with any problems/comments/concerns -Consult the specific website for the other competitions requirements. -AD.3 INDIVIDUAL PARTICIPATION REQUIREMENTS -AD.3.1 Eligibility -AD.3.1.1 Team members must be enrolled as degree seeking undergraduate or graduate students in -the college or university of the team with which they are participating. -AD.3.1.2 Team members who have graduated during the seven month period prior to the competition -remain eligible to participate. - -Formula SAE® Rules 2025 © 2024 SAE International Page 12 of 143 -Version 1.0 31 Aug 2024 -AD.3.1.3 Teams which are formed with members from two or more universities are treated as a single -team. A student at any university making up the team may compete at any competition -where the team participates. The multiple universities are treated as one university with the -same eligibility requirements. -AD.3.1.4 Each team member may participate at a competition for only one team. This includes -competitions where the University enters both IC and EV teams. -AD.3.2 Age -Team members must be minimum 18 years of age. -AD.3.3 Driver’s License -Team members who will drive a competition vehicle at any time during a competition must -hold a valid, government issued driver’s license. -AD.3.4 Society Membership -Team members must be members of SAE International -Proof of membership, such as membership card, is required at the competition. -AD.3.5 Medical Insurance -Individual medical insurance coverage is required and is the sole responsibility of the -participant. -AD.3.6 Disabled Accessibility -Team members who require accessibility for areas outside of ADA Compliance must contact -organizers at collegiatecompetitions@sae.org prior to start of competition. -AD.4 INDIVIDUAL REGISTRATION REQUIREMENTS -AD.4.1 Preliminary Registration -AD.4.1.1 All students and faculty must be affiliated to your respective school /college/university on the -Event Website before the deadline shown on the Event Website -AD.4.1.2 International student participants (or unaffiliated Faculty Advisors) who are not SAE -International members must create a free customer account profile on www.sae.org. Upon -completion, please email collegiatecompetitions@sae.org the assigned customer number -stating also the event and university affiliation. -AD.4.2 Onsite Registration -AD.4.2.1 All team members and faculty advisors must register at the competition site -AD.4.2.2 All onsite participants, including students, faculty and volunteers, must sign a liability waiver -upon registering onsite. -AD.4.2.3 Onsite registration must be completed before the vehicle may be unloaded, uncrated or -worked upon in any manner. -AD.5 TEAM ADVISORS AND OFFICERS -AD.5.1 Faculty Advisor -AD.5.1.1 Each team must have a Faculty Advisor appointed by their university. -AD.5.1.2 The Faculty Advisor should accompany the team to the competition and will be considered by -the officials to be the official university representative. - -Formula SAE® Rules 2025 © 2024 SAE International Page 13 of 143 -Version 1.0 31 Aug 2024 -AD.5.1.3 Faculty Advisors: -a. May advise their teams on general engineering and engineering project management -theory -b. Must not design, build or repair any part of the vehicle -c. Must not develop any documentation or presentation -AD.5.2 Electrical System Officer (EV Only) -The Electrical System Officer (ESO) is responsible for all electrical operations of the vehicle -during the event -AD.5.2.1 Each participating team must appoint one or more ESO for the event -AD.5.2.2 The ESO must be: -a. A valid team member, see AD.3 Individual Participation Requirements -b. One or more ESO must not be a driver -c. Certified or has received appropriate practical training whether formal or informal for -working with High Voltage systems in automotive vehicles -Give details of the training on the ESO/ESA form -AD.5.2.3 Duties of the ESO - see EV.11.1.1 -AD.5.3 Electric System Advisor (EV Only) -AD.5.3.1 The Electrical System Advisor (ESA) must be a professionally competent person(s) nominated -by the team who can advise on the electrical and control systems that will be integrated into -the vehicle. The faculty advisor may also be the ESA if all the requirements below are met. -AD.5.3.2 The ESA must supply details of their experience of electrical and/or control systems -engineering as used in the vehicle on the ESO/ESA form -AD.5.3.3 The ESA must be sufficiently qualified to advise the team on their proposed electrical and -control system designs based on significant experience of the technology being developed and -its implementation into vehicles or other safety critical systems. More than one person may -be needed. -AD.5.3.4 The ESA must advise the team on the merits of any relevant engineering solutions. Solutions -should be discussed, questioned and approved before they are implemented into the final -vehicle design. -AD.5.3.5 The ESA should advise the students on any required training to work with the systems on the -vehicle. -AD.5.3.6 The ESA must review the Electrical System Form and to confirm that in principle the vehicle -has been designed using good engineering practices. -AD.5.3.7 The ESA must make sure that the team communicates any unusual aspects of the design to -reduce the risk of exclusion or significant changes being required to pass Technical Inspection. -AD.6 COMPETITION REGISTRATION -AD.6.1 General Information -AD.6.1.1 Registration for Formula SAE competitions must be completed on the Event Website. -AD.6.1.2 Refer to the individual competition websites for registration requirements for other -competitions - -Formula SAE® Rules 2025 © 2024 SAE International Page 14 of 143 -Version 1.0 31 Aug 2024 -AD.6.2 Registration Details -AD.6.2.1 Refer to the Event Website for specific registration requirements and details. -• Registration limits and Waitlist limits will be posted on the Event Website. -• Registration will open at the date and time posted on the Event Website. -• Registration(s) may have limitations -AD.6.2.2 Once a competition reaches the registration limit, a Waitlist will open. -AD.6.2.3 Beginning on the date and time posted on the Event Website, any remaining slots will be -available to any team on a first come, first serve basis. -AD.6.2.4 Registration and the Waitlist will close at the date and time posted on the Event Website or -when all available slots have been taken, whichever occurs first. -AD.6.3 Registration Fees -AD.6.3.1 Registration fees must be paid by the deadline specified on the respective competition -website -AD.6.3.2 Registration fees are not refundable and not transferrable to any other competition. -AD.6.4 Waitlist -AD.6.4.1 Waitlisted teams must submit all documents by the same deadlines as registered teams to -remain on the Waitlist. -AD.6.4.2 Once a team withdraws from the competition, the organizer will inform the next team on the -Waitlist by email (the individual who registered the team to the Waitlist) that a spot on the -registered list has opened. -AD.6.4.3 The team will then have 24 hours to accept or reject the position and an additional 24 hours -to have the registration payment completed or in process. -AD.6.5 Withdrawals -Registered teams that will not attend the competition must inform SAE International or the -organizer, as posted on the Event Website -AD.7 COMPETITION SITE -AD.7.1 Personal Vehicles -Personal cars and trailers must be parked in designated areas only. Only authorized vehicles -will be allowed in the track areas. -AD.7.2 Motorcycles, Bicycles, Rollerblades, etc. - Prohibited -The use of motorcycles, quads, bicycles, scooters, skateboards, rollerblades or similar person- -carrying devices by team members and spectators in any part of the competition area, -including the paddocks, is prohibited. -AD.7.3 Self-propelled Pit Carts, Tool Boxes, etc. - Prohibited -The use of self-propelled pit carts, tool boxes, tire carriers or similar motorized devices in any -part of the competition site, including the paddocks, is prohibited. -AD.7.4 Trash Cleanup -AD.7.4.1 Cleanup of trash and debris is the responsibility of the teams. -• The team’s work area should be kept uncluttered - -Formula SAE® Rules 2025 © 2024 SAE International Page 15 of 143 -Version 1.0 31 Aug 2024 -• At the end of the day, each team must clean all debris from their area and help with -maintaining a clean paddock -AD.7.4.2 Teams must remove all of their material and trash when leaving the site at the end of the -competition. -AD.7.4.3 Teams that abandon furniture, or that leave a paddock that requires special cleaning, will be -billed for removal and/or cleanup costs. - -Formula SAE® Rules 2025 © 2024 SAE International Page 16 of 143 -Version 1.0 31 Aug 2024 -DR - DOCUMENT REQUIREMENTS -DR.1 DOCUMENTATION -DR.1.1 Requirements -DR.1.1.1 The documents supporting each vehicle must be submitted before the deadlines posted on -the Event Website or otherwise published by the organizer. -DR.1.1.2 The procedures for submitting documents are published on the Event Website or otherwise -identified by the organizer. -DR.1.2 Definitions -DR.1.2.1 Submission Date -The date and time of upload to the website -DR.1.2.2 Submission Deadline -The date and time by which the document must be uploaded or submitted -DR.1.2.3 No Submissions Accepted After -The last date and time that documents may be uploaded or submitted -DR.1.2.4 Late Submission -• Uploaded after the Submission Deadline and prior to No Submissions Accepted After -• Submitted largely incomplete prior to or after the Submission Deadline -DR.1.2.5 Not Submitted -• Not uploaded prior to No Submissions Accepted After -• Not in the specified form or format -DR.1.2.6 Amount Late -The number of days between the Submission Deadline and the Submission Date. -Any partial day is rounded up to a full day. -Examples: submitting a few minutes late would be one day penalty; submitting 25 hours late -would be two days penalty -DR.1.2.7 Grounds for Removal -A designated document that if Not Submitted may cause Removal of Team Entry -DR.1.2.8 Reviewer -A designated event official who is assigned to review and accept a Submission -DR.2 SUBMISSION DETAILS -DR.2.1 Submission Location -Teams entering Formula SAE competitions in North America must upload the required -documents to the team account on the FSAE Online Website, see AD.2.2 -DR.2.2 Submission Format Requirements -Refer to Table DR-1 Submission Information -DR.2.2.1 Template files with the required format must be used when specified in Table DR-1 -DR.2.2.2 Template files are available on the FSAE Online Website, see AD.2.2.1 - -Formula SAE® Rules 2025 © 2024 SAE International Page 17 of 143 -Version 1.0 31 Aug 2024 -DR.2.2.3 Do Not alter the format of any provided template files -DR.2.2.4 Each submission must be one single file in the specified format (PDF - Portable Document File, -XLSX - Microsoft Excel Worksheet File) -DR.3 SUBMISSION PENALTIES -DR.3.1 Submissions -DR.3.1.1 Each team is responsible for confirming that their documents have been properly uploaded or -submitted and that the deadlines have been met -DR.3.1.2 Prior to the Submission Deadline: -a. Documents may be uploaded at any time -b. Uploads may be replaced with new uploads without penalty -DR.3.1.3 If a Submitted Document revision is requested by the Reviewer, a new Submission Deadline -for the revised document may apply -DR.3.1.4 Teams will not be notified if a document is submitted incorrectly -DR.3.2 Penalty Detail -DR.3.2.1 Late Submissions get a point penalty as shown in Table DR-2, subject to official discretion. -DR.3.2.2 Additional penalties will apply if Not Submitted, subject to official discretion -DR.3.2.3 Penalties up to and including Removal of Team Entry may apply based on document reviews, -subject to official discretion -DR.3.3 Removal of Team Entry -DR.3.3.1 The organizer may remove the team entry when a: -a. Grounds for Removal document is Not Submitted in 24 hours or less after the deadline. -Removals will occur after each Document Submission deadline -b. Team does not respond to Reviewer requests or organizer communications -DR.3.3.2 When a team entry will be removed: -a. The team will be notified prior to cancelling registration -b. No refund of entry fees will be given -DR.3.4 Specific Penalties -DR.3.4.1 Electronic Throttle Control (ETC) (IC Only) -a. There is no point penalty for ETC documents -b. The team will not be allowed to run ETC on their vehicle and must use mechanical -throttle operation when: -• The ETC Notice of Intent is Not Submitted -• The ETC Systems Form is Not Submitted, or is not accepted -DR.3.4.2 Fuel Type IC.5.1 -There is no point penalty for a late fuel type order. Once the deadline has passed, the team -will be allocated the basic fuel type. -DR.3.4.3 Program Submissions -Please submit material requested for the Event Program by the published deadlines - -Formula SAE® Rules 2025 © 2024 SAE International Page 18 of 143 -Version 1.0 31 Aug 2024 -Table DR-1 Submission Information -Submission -Refer -to: -Required -Format: -Submit in -File Format: -Penalty -Group -Structural Equivalency Spreadsheet -(SES) -as applicable to your design -F.2.1 see below XLSX Tech -ETC - Notice of Intent IC.4.3 see below PDF ETC -ETC – Systems Form (ETCSF) IC.4.3 see below XLSX ETC -EV – Electrical Systems Officer and -Electrical Systems Advisor Form -AD.5.2, -AD.5.3 -see below PDF Tech -EV - Electrical System Form (ESF) EV.2.1 see below XLSX Tech -Presentation (if required, see S.2.4.1) S.2.4 see S.2.4 see S.2.4 Other -Cost Report S.3.4 see S.3.4.2 (1) Other -Cost Addendum S.3.7 see below see S.3.7 none -Design Briefing S.4.3 see below PDF Other -Vehicle Drawings S.4.4 see S.4.4.1 PDF Other -Design Spec Sheet S.4.5 see below XLSX Other -Format: Use the template file or form available on the FSAE Online Website AD.2.2.1 -Note (1): Refer to the FSAE Online website for submission requirements -Table DR-2 Submission Penalty Information -Penalty Group -Penalty Points -per 24 Hours -Not Submitted after the Deadline -ETC none Not Approved to use ETC - see DR.3.4.1 -Tech -20 Grounds for Removal - see DR.3.3 -Other -10 -Removed from Cost/Design/Presentation -Event and Score 0 points – see DR.3.2.2 - -Formula SAE® Rules 2025 © 2024 SAE International Page 19 of 143 -Version 1.0 31 Aug 2024 -V - VEHICLE REQUIREMENTS -V.1 CONFIGURATION -The vehicle must be open wheeled and open cockpit (a formula style body) with four wheels -that are not in a straight line. -V.1.1 Open Wheel -Open Wheel vehicles must satisfy all of these criteria: -a. The top 180° of the wheels/tires must be unobstructed when viewed from vertically -above the wheel. -b. The wheels/tires must be unobstructed when viewed from the side. -c. No part of the vehicle may enter a keep out zone defined by two lines extending -vertically from positions 75 mm in front of and 75 mm aft of, the outer diameter of the -front and rear tires in the side view elevation of the vehicle, with tires steered straight -ahead. This keep out zone will extend laterally from the outside plane of the wheel/tire -to the inboard plane of the wheel/tire. -V.1.2 Wheelbase -The vehicle must have a minimum wheelbase of 1525 mm -V.1.3 Vehicle Track -V.1.3.1 The track and center of gravity must combine to provide sufficient rollover stability. See -IN.9.2 -V.1.3.2 The smaller track of the vehicle (front or rear) must be no less than 75% of the larger track. - -Formula SAE® Rules 2025 © 2024 SAE International Page 20 of 143 -Version 1.0 31 Aug 2024 -V.1.4 Ground Clearance -V.1.4.1 Ground clearance must be sufficient to prevent any portion of the vehicle except the tires -from touching the ground during dynamic events -V.1.4.2 The distance to the ground below the Lower Side Impact Structure ( F.6.4.5, F.7.5.1 ) at its -lowest point must be 90 mm or less and the distance to the ground should be 75 mm or less. -a. There must be an opening for measuring the ride height at that point without removing -aerodynamic devices -V.1.4.3 Intentional or excessive ground contact of any portion of the vehicle other than the tires will -forfeit a run or an entire dynamic event -The intent is that sliding skirts or other devices that by design, fabrication or as a consequence -of moving, contact the track surface are prohibited and any unintended contact with the -ground which causes damage, or in the opinion of the Dynamic Event Officials could result in -damage to the track, will result in forfeit of a run or an entire dynamic event -V.2 DRIVER -V.2.1 Accommodation -V.2.1.1 The vehicle must be able to accommodate drivers of sizes ranging from 5th percentile female -up to 95th percentile male. -• Accommodation includes driver position, driver controls, and driver equipment -• Anthropometric data may be found on the FSAE Online Website -V.2.1.2 The driver’s head and hands must not contact the ground in any rollover attitude -V.2.2 Visibility -a. The driver must have sufficient visibility to the front and sides of the vehicle -b. When seated in a normal driving position, the driver must have a minimum field of vision -of 100° to the left and the right sides -c. If mirrors are required for this rule, they must remain in position and adjusted to enable -the required visibility throughout all Dynamic Events -V.3 SUSPENSION AND STEERING -V.3.1 Suspension -V.3.1.1 The vehicle must have a fully operational suspension system with shock absorbers, front and -rear, with usable minimum wheel travel of 50 mm, with a driver seated. -V.3.1.2 Officials may disqualify vehicles which do not represent a serious attempt at an operational -suspension system, or which demonstrate handling inappropriate for an autocross circuit. -V.3.1.3 All suspension mounting points must be visible at Technical Inspection by direct view or by -removing any covers. -V.3.1.4 Fasteners in the Suspension system are Critical Fasteners, see T.8.2 -V.3.1.5 All spherical rod ends and spherical bearings on the suspension and steering must be one of: -• Mounted in double shear -• Captured by having a screw/bolt head or washer with an outside diameter that is larger -than spherical bearing housing inside diameter. - -Formula SAE® Rules 2025 © 2024 SAE International Page 21 of 143 -Version 1.0 31 Aug 2024 -V.3.2 Steering -V.3.2.1 The Steering Wheel must be mechanically connected to the front wheels -V.3.2.2 Electrically operated steering of the front wheels is prohibited -V.3.2.3 Steering systems must use a rigid mechanical linkage capable of tension and compression -loads for operation -V.3.2.4 The steering system must have positive steering stops that prevent the steering linkages from -locking up (the inversion of a four bar linkage at one of the pivots). The stops: -a. Must prevent the wheels and tires from contacting suspension, bodywork, or Chassis -during the track events -b. May be put on the uprights or on the rack -V.3.2.5 Allowable steering system free play is limited to seven degrees (7°) total measured at the -steering wheel. -V.3.2.6 The steering rack must be mechanically attached to the Chassis F.5.14 -V.3.2.7 Joints between all components attaching the Steering Wheel to the steering rack must be -mechanical and be visible at Technical Inspection. Bonded joints without a mechanical backup -are not permitted. -V.3.2.8 Fasteners in the steering system are Critical Fasteners, see T.8.2 -V.3.2.9 Spherical rod ends and spherical bearings in the steering must meet V.3.1.5 above -V.3.2.10 Rear wheel steering may be used. -a. Rear wheel steering must incorporate mechanical stops to limit the range of angular -movement of the rear wheels to a maximum of six degrees (6°) -b. The team must provide the ability for the steering angle range to be verified at Technical -Inspection with a driver in the vehicle -c. Rear wheel steering may be electrically operated -V.3.3 Steering Wheel -V.3.3.1 In any angular position, the Steering Wheel must meet T.1.4.4 -V.3.3.2 The Steering Wheel must be attached to the column with a quick disconnect. -V.3.3.3 The driver must be able to operate the quick disconnect while in the normal driving position -with gloves on. -V.3.3.4 The Steering Wheel must have a continuous perimeter that is near circular or near oval. -The outer perimeter profile may have some straight sections, but no concave sections. “H”, -“Figure 8”, or cutout wheels are not allowed. -V.4 WHEELS AND TIRES -V.4.1 Wheel Size -Wheels must be 203.2 mm (8.0 inches) or more in diameter. -V.4.2 Wheel Attachment -V.4.2.1 Any wheel mounting system that uses a single retaining nut must incorporate a device to -retain the nut and the wheel if the nut loosens. -A second nut (jam nut) does not meet this requirement - -Formula SAE® Rules 2025 © 2024 SAE International Page 22 of 143 -Version 1.0 31 Aug 2024 -V.4.2.2 Teams using modified lug bolts or custom designs must provide proof that Good Engineering -Practices have been followed in their design. -V.4.2.3 If used, aluminum wheel nuts must be hard anodized and in pristine condition. -V.4.3 Tires -Vehicles may have two types of tires, Dry and Wet -V.4.3.1 Dry Tires -a. The tires on the vehicle when it is presented for Technical Inspection. -b. May be any size or type, slicks or treaded. -V.4.3.2 Wet Tires -Any size or type of treaded or grooved tire where: -• The tread pattern or grooves were molded in by the tire manufacturer, or were cut by -the tire manufacturer or appointed agent. -Any grooves that have been cut must have documented proof that this rule was met -• There is a minimum tread depth of 2.4 mm -V.4.3.3 Tire Set -a. All four Dry Tires and Wheels or all four Wet Tires and Wheels do not have to be -identical. -b. Once each tire set has been presented for Technical Inspection, any tire compound or -size, or wheel type or size must not be changed. -V.4.3.4 Tire Pressure -a. Tire Pressure must be in the range allowed by the manufacturer at all times. -b. Tire Pressure may be inspected at any time -V.4.3.5 Requirements for All Tires -a. Teams must not do any hand cutting, grooving or modification of the tires. -b. Tire warmers are not allowed. -c. No traction enhancers may be applied to the tires at any time onsite at the competition. - -Formula SAE® Rules 2025 © 2024 SAE International Page 23 of 143 -Version 1.0 31 Aug 2024 -F - CHASSIS AND STRUCTURAL -F.1 DEFINITIONS -F.1.1 Chassis -The fabricated structural assembly that supports all functional vehicle systems. -This assembly may be a single fabricated structure, multiple fabricated structures or a -combination of composite and welded structures. -F.1.2 Frame Member -A minimum representative single piece of uncut, continuous tubing. -F.1.3 Monocoque -A type of Chassis where loads are supported by the external panels -F.1.4 Main Hoop -A roll bar located alongside or immediately aft of the driver’s torso. -F.1.5 Front Hoop -A roll bar located above the driver’s legs, in proximity to the steering wheel. -F.1.6 Roll Hoop(s) -Referring to the Front Hoop AND the Main Hoop -F.1.7 Roll Hoop Bracing Supports -The structure from the lower end of the Roll Hoop Bracing back to the Roll Hoop(s). -F.1.8 Front Bulkhead -A planar structure that provides protection for the driver’s feet. -F.1.9 Impact Attenuator -A deformable, energy absorbing device located forward of the Front Bulkhead. -F.1.10 Primary Structure -The combination of these components: -• Front Bulkhead and Front Bulkhead Support -• Front Hoop, Main Hoop, Roll Hoop Braces and Supports -• Side Impact Structure -• (EV Only) Tractive System Protection and Rear Impact Protection -• Any Frame Members, guides, or supports that transfer load from the Driver Restraint -System -F.1.11 Primary Structure Envelope -A volume enclosed by multiple tangent planes, each of which follows the exact outline of the -Primary Structure Frame Members -F.1.12 Major Structure -The portion of the Chassis that lies inside the Primary Structure Envelope, excluding the Main -Hoop Bracing and the portion of the Main Hoop above a horizontal plane located at the top of -the Upper Side Impact Member or top of the Side Impact Zone. - -Formula SAE® Rules 2025 © 2024 SAE International Page 24 of 143 -Version 1.0 31 Aug 2024 -F.1.13 Rollover Protection Envelope -The Primary Structure plus a plane from the top of the Main Hoop to the top of the Front -Hoop, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural -tube, or monocoque equivalent. -* If there are no Triangulated Structural members aft of the Main Hoop, the Rollover -Protection Envelope ends at the rear plane of the Main Hoop -F.1.14 Tire Surface Envelope -The volume enclosed by tangent lines between the Main Hoop and the outside edge of each -of the four tires. -F.1.15 Component Envelope -The area that is inside a plane from the top of the Main Hoop to the top of the Front -Bulkhead, plus a plane from the top of the Main Hoop to the rearmost Triangulated structural -tube, or monocoque equivalent. * see note in step F.1.13 above -F.1.16 Buckling Modulus (EI) -Equal to E*I, where E = modulus of Elasticity, and I = area moment of inertia about the -weakest axis -F.1.17 Triangulation -An arrangement of Frame Members where all members and segments of members between -bends or nodes with Structural tubes form a structure composed entirely of triangles. -a. This is generally required between an upper member and a lower member, each may -have multiple segments requiring a diagonal to form multiple triangles. -b. This is also what is meant by “properly triangulated” - -Formula SAE® Rules 2025 © 2024 SAE International Page 25 of 143 -Version 1.0 31 Aug 2024 -F.1.18 Nonflammable Material -Metal or a Non Metallic material which meets UL94-V0, FAR25 or approved equivalent -F.2 DOCUMENTATION -F.2.1 Structural Equivalency Spreadsheet - SES -F.2.1.1 The SES is a supplement to the Formula SAE Rules and may provide guidance or further details -in addition to those of the Formula SAE Rules. -F.2.1.2 The SES provides the means to: -a. Document the Primary Structure and show compliance with the Formula SAE Rules -b. Determine Equivalence to Formula SAE Rules using an accepted basis -F.2.2 Structural Documentation -F.2.2.1 All teams must submit a Structural Equivalency Spreadsheet (SES) as given in section DR - -Document Requirements -F.2.3 Equivalence -F.2.3.1 Equivalency in the structural context is determined and documented with the methods in the -SES -F.2.3.2 Any Equivalency calculations must prove Equivalency relative to Steel Tubing in the same -application -F.2.3.3 The properties of tubes and laminates may be combined to prove Equivalence. -For example, in a Side Impact Structure consisting of one tube per F.3.2.1.e and a laminate -panel, the panel only needs to be Equivalent to two Side Impact Tubes. -F.2.4 Tolerance -Tolerance on dimensions given in the rules is allowed and is addressed in the SES. -F.2.5 Fabrication -Vehicles must be fabricated in accordance with the design, materials, and processes described -in the SES. -F.3 TUBING AND MATERIAL -F.3.1 Dimensions -Diameter and Wall Thickness values provided in this Section F.3 are based on dimensions for -commonly available tubing. - -Formula SAE® Rules 2025 © 2024 SAE International Page 26 of 143 -Version 1.0 31 Aug 2024 -F.3.2 Tubing Requirements -F.3.2.1 Requirements by Application -Application -Steel Tube Must -Meet Size per -F.3.4: -Alternative Tubing -Material Permitted -per F.3.5 ? -a. Front Bulkhead Size B Yes -b. Front Bulkhead Support Size C Yes -c. Front Hoop Size A Yes -d. Front Hoop Bracing Size B Yes -e. Side Impact Structure Size B Yes -f. Bent / Multi Upper Side Impact Member Size D Yes -g. Main Hoop Size A NO -h. Main Hoop Bracing Size B NO -i. Main Hoop Bracing Supports Size C Yes -j. Driver Restraint Harness Attachment Size B Yes -k. Shoulder Harness Mounting Bar Size A NO -l. Shoulder Harness Mounting Bar Bracing Size C Yes -m. Accumulator Mounting and Protection Size B Yes -n. Component Protection Size C Yes -o. Structural Tubing Size C Yes -F.3.3 Non Structural Tubing -F.3.3.1 Definition -Any tubing which does NOT meet F.3.2.1.o Structural Tubing -F.3.3.2 Applicability -Non Structural Tubing is ignored when assessing compliance to any rule -F.3.4 Steel Tubing and Material -F.3.4.1 Minimum Requirements for Steel Tubing -A tube must have all four minimum requirements for each Size specified: -Tube -Minimum -Area -Moment of -Inertia -Minimum -Cross -Sectional -Area -Minimum -Outside -Diameter or -Square Width -Minimum -Wall -Thickness -Example Sizes of -Round Tube -a. Size A -11320 mm -4 -173 mm -2 -25.0 mm 2.0 mm -1.0” x 0.095” -25 x 2.5 mm -b. Size B -8509 mm -4 -114 mm -2 -25.0 mm 1.2 mm -1.0” x 0.065” -25.4 x 1.6 mm -c. Size C -6695 mm -4 -91 mm -2 -25.0 mm 1.2 mm -1.0” x 0.049” -25.4 x 1.2 mm -d. Size D -18015 mm -4 -126 mm -2 -35.0 mm 1.2 mm -1.375” x 0.049” -35 x 1.2 mm - -Formula SAE® Rules 2025 © 2024 SAE International Page 27 of 143 -Version 1.0 31 Aug 2024 -F.3.4.2 Properties for ANY steel material for calculations submitted in an SES must be: -a. Non Welded Properties for continuous material calculations: -Young’s Modulus (E) = 200 GPa (29,000 ksi) -Yield Strength (Sy) = 305 MPa (44.2 ksi) -Ultimate Strength (Su) = 365 MPa (52.9 ksi) -b. Welded Properties for discontinuous material such as joint calculations: -Yield Strength (Sy) = 180 MPa (26 ksi) -Ultimate Strength (Su) = 300 MPa (43.5 ksi) -F.3.4.3 Where Welded tubing reinforcements are required (such as inserts for bolt holes or material -to support suspension cutouts), Equivalence of the Welded tube and reinforcement must be -shown to the original Non Welded tube in the SES -F.3.5 Alternative Tubing Materials -F.3.5.1 Alternative Materials may be used for applications shown as permitted in F.3.2.1 -F.3.5.2 If any Alternative Materials are used, the SES must contain: -a. Documentation of material type, (purchase receipt, shipping document or letter of -donation) and the material properties. -b. Calculations that show equivalent to or better than the minimum requirements for steel -tubing in the application as listed in F.3.4.1 for yield and ultimate strengths matching the -Non Welded Steel properties from F.3.4.2.a above in bending, buckling and tension, for -buckling modulus and for energy dissipation -c. Details of the manufacturing technique and process -F.3.5.3 Aluminum Tubing -a. Minimum Wall Thickness for Aluminum Tubing: Non Welded 2.0 mm -Welded 3.0 mm -b. Non Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: -Young’s Modulus (E) 69 GPa (10,000 ksi) -Yield Strength (Sy) 240 MPa (34.8 ksi) -Ultimate Strength (Su) 290 MPa (42.1 ksi) -c. Welded properties for aluminum alloy 6061-T6 for calculations in an SES must be: -Yield Strength (Sy) 115 MPa (16.7 ksi) -Ultimate Strength (Su) 175 MPa (25.4 ksi) -d. If welding is used on a regulated aluminum structure, the equivalent yield strength must -be considered in the “as welded” condition for the alloy used unless the team provides -detailed proof that the frame or component has been properly solution heat treated, -artificially aged, and not subject to heating during team manufacturing. -e. If aluminum was solution heat treated and age hardened to increase its strength after -welding, the team must supply evidence of the process. -This includes, but is not limited to, the heat treating facility used, the process applied, -and the fixturing used. - -Formula SAE® Rules 2025 © 2024 SAE International Page 28 of 143 -Version 1.0 31 Aug 2024 -F.4 COMPOSITE AND OTHER MATERIALS -F.4.1 Requirements -If any composite or other material is used, the SES must contain: -F.4.1.1 Documentation of material type, (purchase receipt, shipping document or letter of donation) -and the material properties. -F.4.1.2 Details of the manufacturing technique and/or composite layup technique as well as the -structural material used (examples - cloth type, weight, and resin type, number of layers, core -material, and skin material if metal). -F.4.1.3 Calculations that show equivalence of the structure to one of similar geometry made to meet -the minimum requirements for a structure made from steel tubing per F.3.2. Equivalency -calculations must be submitted for energy dissipation, yield and ultimate strengths in bending, -buckling, and tension. -F.4.1.4 Construction dates of the test panel(s) and monocoque, and approximate age(s) of the -materials used. -F.4.2 Laminate and Material Testing -F.4.2.1 Testing Requirements -a. Any tested samples must be engraved with the full date of construction and sample -name -b. The same set of test results must not be used for different monocoques in different -years. -The intent is for the test panel to use the same material batch, material age, material storage, -and student layup quality as the monocoque. -F.4.2.2 Primary Structure Laminate Testing -Teams must build new representative test panels for each ply schedule used in the regulated -regions of the new chassis as a flat panel and do a 3 point bending test on these panels. Refer -to F.4.2.4 -a. Test panels must: -• Measure one of the two options: 138 mm x 500 mm OR 275 mm x 500 mm -• Be supported by a span distance of 400 mm -• Have equal surface area for the top and bottom skin -• Have bare edges, without skin material -b. The SES must include: -• Data from the 3 point bending tests -• Pictures of the test samples -• A picture of the test sample and test setup showing a measurement documenting -the supported span distance used in the SES -c. Test panel results must be used to derive stiffness, yield strength, ultimate strength and -absorbed energy properties by the SES formula and limits for the purpose of calculating -laminate panels equivalency corresponding to Primary Structure regions of the chassis. -d. Test panels must use the thickest core associated with each skin layup - -Formula SAE® Rules 2025 © 2024 SAE International Page 29 of 143 -Version 1.0 31 Aug 2024 -Designs may use core thickness that is 50% - 100% of the test panel core thickness -associated with each skin layup -e. Calculation of derived properties must use the part of test data where deflection is 50 -mm or less -f. Calculation of absorbed energy must use the integral of force times displacement -F.4.2.3 Comparison Test -Teams must make an equivalent test that will determine any compliance in the test rig and -establish an absorbed energy value of the baseline tubes. -a. The comparison test must use two Side Impact steel tubes (F.3.2.1.e) -b. The steel tubes must be tested to a minimum displacement of 19.0 mm -c. The calculation of absorbed energy must use the integral of force times displacement -from the initiation of load to a displacement of 19.0 mm -F.4.2.4 Test Conduct -a. The Laminate test F.4.2.2 and the Comparison test F.4.2.3 must use the same fixture -b. The load applicator used to test any panel/tubes as required in this section F.4.2 must -be: -• Metallic -• Radius 50 mm -c. The load applicator must overhang the test piece to prevent edge loading -d. Any other material must not be put between the load applicator and the items on test -F.4.2.5 Perimeter Shear Test -a. The Perimeter Shear Test must be completed by measuring the force required to push or -pull a 25 mm diameter flat punch through a flat laminate sample. -b. The sample must: -• Measure 100 mm x 100 mm minimum -• Have core and skin thicknesses identical to those used in the actual application -• Be manufactured using the same materials and processes -c. The fixture must support the entire sample, except for a 32 mm hole aligned coaxially -with the punch. -d. The sample must not be clamped to the fixture -e. The edge of the punch and hole in the fixture may include an optional fillet up to a -maximum radius of 1 mm. -f. The SES must include force and displacement data and photos of the test setup. - -Formula SAE® Rules 2025 © 2024 SAE International Page 30 of 143 -Version 1.0 31 Aug 2024 -g. The first peak in the load-deflection curve must be used to determine the skin shear -strength; this may be less than the minimum force required by F.7.3.3 / F.7.5.5 -h. The maximum force recorded must meet the requirements of F.7.3.3 / F.7.5.5 -F.4.2.6 Lap Joint Test -The Lap Joint Test measures the force required to pull apart a joint of two laminate samples -that are bonded together -a. A joint design with two perpendicular bond areas may show equivalence using the shear -performance of the smaller of the two areas -b. A joint design with a single bond area must have two separate pull tests with different -orientations of the adhesive joint: -• Parallel to the pull direction, with the adhesive joint in pure shear -• T peel normal to the pull direction, with the adhesive joint in peel -c. The samples used must: -• Have skin thicknesses identical to those used in the actual monocoque -• Be manufactured using the same materials and processes -The intent is to perform a test of the actual bond overlap, and fail the skin before the bond -d. The force and displacement data and photos of the test setup must be included in the -SES. -e. The shear strength * normal area of the bond must be more than the UTS * cross -sectional area of the skin -F.4.3 Use of Laminates -F.4.3.1 Unidirectional plies must be enclosed by balanced plies. Unidirectional plies should not be the -nearest plies to core material. -F.4.3.2 The monocoque must have the tested layup direction normal to the cross sections used for -Equivalence in the SES, with allowance for taper of the monocoque normal to the cross -section. -F.4.3.3 Results from the 3 point bending test will be assigned to the 0 layup direction. -F.4.3.4 All material properties in the directions designated by the SES must be 50% or more of those -in the tested “0” direction as calculated by the SES -F.4.4 Equivalent Flat Panel Calculation -F.4.4.1 When specified, the Equivalence of the chassis must be calculated as a flat panel with the -same composition as the chassis about the neutral axis of the laminate. -F.4.4.2 The curvature of the panel and geometric cross section of the chassis must be ignored for -these calculations. -F.4.4.3 Calculations of Equivalence that do not reference this section F.4.3 may use the actual -geometry of the chassis. -F.5 CHASSIS REQUIREMENTS -This section applies to all Chassis, regardless of material or construction - -Formula SAE® Rules 2025 © 2024 SAE International Page 31 of 143 -Version 1.0 31 Aug 2024 -F.5.1 Primary Structure -F.5.1.1 The Primary Structure must be constructed from one or a combination of: -• Steel Tubing and Material F.3.2 F.3.4 -• Alternative Tubing Materials F.3.2 F.3.5 -• Composite Material F.4 -F.5.1.2 Any chassis design that combines the Tube Frame, Monocoque, tubing and/or composite -types must: -a. Meet all relevant requirements F.5.1.1 -b. Show Equivalence F.2.3, as applicable -c. Any connections must meet F.5.4, F.5.5, F.7.8 as applicable, or Equivalent. -F.5.2 Bent Tubes or Multiple Tubes -F.5.2.1 The minimum radius of any bend, measured at the tube centerline, must be three or more -times the tube outside diameter (3 x OD). -F.5.2.2 Bends must be smooth and continuous with no evidence of crimping or wall failure. -F.5.2.3 If a bent tube (or member consisting of multiple tubes that are not in a line) is used anywhere -in the Primary Structure other than the Roll Hoops (see F.5.6.2), an additional tube must be -attached to support it. -a. The support tube attachment point must be at the position along the bent tube where it -deviates farthest from a straight line connecting the two ends -b. The support tube must terminate at a node of the chassis -c. The support tube for any bent tube (other than the Upper Side Impact Member or -Shoulder Harness Mounting Bar) must be: -• The same diameter and thickness as the bent tube -• Angled no more than 30° from the plane of the bent tube -F.5.3 Holes and Openings in Regulated Tubing -F.5.3.1 Any holes in any regulated tubing (other than inspection holes) must be addressed on the SES. -F.5.3.2 Technical Inspectors may check the compliance of all tubes. This may be done by ultrasonic -testing or by the drilling of inspection holes on request. -F.5.3.3 Regulated tubing other than the open lower ends of Roll Hoops must have any open ends -closed by a welded cap or inserted metal plug. -F.5.4 Fasteners in Primary Structure -F.5.4.1 Bolted connections in the Primary Structure must use a removable bolt and nut. -Bonded fasteners and blind nuts and bolts do not meet this requirement -F.5.4.2 Threaded fasteners used in Primary Structure are Critical Fasteners, see T.8.2 -F.5.4.3 Bolted connections in the Primary Structure using tabs or brackets must have an edge -distance ratio “e/D” of 1.5 or higher -“D” equals the hole diameter. “e” equals the distance from the edge of the hole to the nearest -free edge -Tabs attaching the Suspension to the Primary Structure are NOT “in the Primary Structure” - -Formula SAE® Rules 2025 © 2024 SAE International Page 32 of 143 -Version 1.0 31 Aug 2024 -F.5.5 Bonding in Regulated Structure -F.5.5.1 Adhesive used and referenced bonding strength must be correct for the two substrate types -F.5.5.2 Document the adhesive choice, age and expiration date, substrate preparation, and the -equivalency of the bonded joint in the SES -F.5.5.3 The SES will reduce any referenced or tested adhesive values by 50% -F.5.6 Roll Hoops -F.5.6.1 The Chassis must include a Main Hoop and a Front Hoop -F.5.6.2 The Main Hoop and Front Hoop must be Triangulated into the Primary Structure with -Structural Tubing -F.5.6.3 Any front or side view Roll Hoop bend below the respective Roll Hoop Braces must be one of -the two: -a. Triangulated at a side view node -b. Less than 25 mm from an Attachment point F.7.8 -F.5.6.4 Roll Hoop and Driver Position -When seated normally and restrained by the Driver Restraint System, the helmet of a 95th -percentile male (see V.2.1.1) and all of the team’s drivers must: -a. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to -the top of the Front Hoop. -b. Be a minimum of 50 mm from the straight line drawn from the top of the Main Hoop to -the lower end of the Main Hoop Bracing if the bracing extends rearwards. -c. Be no further rearwards than the rear surface of the Main Hoop if the Main Hoop Bracing -extends forwards. -F.5.6.5 Driver Template -A two dimensional template used to represent the 95th percentile male is made to these -dimensions (see figure below): -• A circle of diameter 200 mm will represent the hips and buttocks. -• A circle of diameter 200 mm will represent the shoulder/cervical region. -• A circle of diameter 300 mm will represent the head (with helmet). -• A straight line measuring 490 mm will connect the centers of the two 200 mm circles. -• A straight line measuring 280 mm will connect the centers of the upper 200 mm circle -and the 300 mm head circle. - -Formula SAE® Rules 2025 © 2024 SAE International Page 33 of 143 -Version 1.0 31 Aug 2024 -F.5.6.6 Driver Template Position -The Driver Template will be positioned as follows: -• The seat will be adjusted to the rearmost position -• The pedals will be put in the most forward position -• The bottom 200 mm circle will be put on the seat bottom where the distance between -the center of this circle and the rearmost face of the pedals is no less than 915 mm -• The middle 200 mm circle, representing the shoulders, will be positioned on the seat -back -• The upper 300 mm circle will be positioned no more than 25 mm away from the head -restraint (where the driver’s helmet would normally be located while driving) -F.5.7 Front Hoop -F.5.7.1 The Front Hoop must be constructed of closed section metal tubing meeting F.3.2.1.c -F.5.7.2 With proper Triangulation, the Front Hoop may be fabricated from more than one piece of -tubing -F.5.7.3 The Front Hoop must extend from the lowest Frame Member on one side of the Frame, up, -over and down to the lowest Frame Member on the other side of the Frame. -F.5.7.4 The top-most surface of the Front Hoop must be no lower than the top of the steering wheel -in any angular position. See figure after F.5.9.6 below -F.5.7.5 The Front Hoop must be no more than 250 mm forward of the steering wheel. -This distance is measured horizontally, on the vehicle centerline, from the rear surface of the -Front Hoop to the forward most surface of the steering wheel rim with the steering in the -straight ahead position. -F.5.7.6 In side view, any part of the Front Hoop above the Upper Side Impact Structure must be -inclined less than 20° from the vertical. -F.5.7.7 A Front Hoop that is not steel must have a 4 mm hole drilled in a location to access during -Technical Inspection -F.5.8 Main Hoop -F.5.8.1 The Main Hoop must be a single piece of uncut, continuous, closed section steel tubing -meeting F.3.2.1.g - -Formula SAE® Rules 2025 © 2024 SAE International Page 34 of 143 -Version 1.0 31 Aug 2024 -F.5.8.2 The Main Hoop must extend from the lowest Frame Member / bottom of Monocoque on one -side of the Frame, up, over and down to the lowest Frame Member / bottom of Monocoque -on the other side of the Frame. -F.5.8.3 In the side view of the vehicle, -a. The part of the Main Hoop that lies above its attachment point to the upper Side Impact -Tube must be less than 10° from vertical. -b. The part of the Main Hoop below the Upper Side Impact Member attachment: -• May be forward at any angle -• Must not be rearward more than 10° from vertical -F.5.8.4 In the front view of the vehicle, the vertical members of the Main Hoop must be minimum 380 -mm apart (inside dimension) at the location where the Main Hoop is attached to the bottom -tubes of the Major Structure of the Chassis. -F.5.9 Main Hoop Braces -F.5.9.1 Main Hoop Braces must be constructed of closed section steel tubing meeting F.3.2.1.h -F.5.9.2 The Main Hoop must be supported by two Braces extending in the forward or rearward -direction, one on each of the left and right sides of the Main Hoop. -F.5.9.3 In the side view of the Frame, the Main Hoop and the Main Hoop Braces must not lie on the -same side of the vertical line through the top of the Main Hoop. -(If the Main Hoop leans forward, the Braces must be forward of the Main Hoop, and if the -Main Hoop leans rearward, the Braces must be rearward of the Main Hoop) -F.5.9.4 The Main Hoop Braces must be attached 160 mm or less below the top most surface of the -Main Hoop. -The Main Hoop Braces should be attached as near as possible to the top of the Main Hoop -F.5.9.5 The included angle formed by the Main Hoop and the Main Hoop Braces must be 30° or more. -F.5.9.6 The Main Hoop Braces must be straight, without any bends. -F.5.9.7 The Main Hoop Braces must be: -a. Securely integrated into the Frame -b. Capable of transmitting all loads from the Main Hoop into the Major Structure of the -Chassis without failing - -Formula SAE® Rules 2025 © 2024 SAE International Page 35 of 143 -Version 1.0 31 Aug 2024 -F.5.10 Head Restraint Protection -An additional frame member may be added to meet T.2.8.3.b -F.5.10.1 If used, the Head Restraint Protection frame member must: -a. Attach to the nodes where the Main Hoop Braces F.5.9.2 connect to the Main Hoop -b. Be constructed of a single piece of uncut, continuous, closed section steel tubing meeting -F.3.2.1.h -c. Meet F.5.2.1 and F.5.2.2, as applicable (does not need to meet F.5.2.3) -F.5.10.2 The Head Restraint or mounting T.2.8 must not attach to the Head Restraint Protection -F.5.11 External Items -F.5.11.1 Definition - items outside the exact outline of the part of the Primary Structure Envelope -F.1.11 defined by the Main Hoop Braces and the parts of the Main Hoop tubes above other -tube nodes or composite attachments -F.5.11.2 External Items may be mounted on the outside of the Main Hoop or Main Hoop Brace tubes if -the mount is one of the two: -a. Located at the Main Hoop to Main Hoop Brace node and is rotationally free about an axis -b. Above additional bracing meeting F.3.2.1.o, with calculations that show the mount will -fail below the allowable load as calculated by the SES -F.5.11.3 If mounted between the tubes of the Main Hoop and Main Hoop Braces, these items may -attach to the Main Hoop or Main Hoop Brace tubes and do not need to meet F.5.11.2 above: -a. Crushable lightweight bodywork, intake manifolds, Head Restraint, Manual Service -Disconnect, Master Switches or Shutdown Buttons -b. Lightweight mounts for items inside the Main Hoop Braces -F.5.11.4 Engine mount, motor mounts. or Accumulator Containers should not mount to the span of the -Main Hoop Braces or Main Hoop above other tube nodes or composite attachments -F.5.11.5 Items outside the Primary Structure from the Main Hoop Braces and Main Hoop tubes must -be longitudinally offset to avoid point loading in a rollover -F.5.11.6 External Items should not point at the driver -F.5.12 Mechanically Attached Roll Hoop Bracing -F.5.12.1 When Roll Hoop Bracing is mechanically attached: -a. The threaded fasteners used to secure non permanent joints are Critical Fasteners, see -T.8.2. Additional requirements apply in F.5.12.5 and F.5.12.7 -b. No spherical rod ends are allowed -c. The attachment holes in the lugs, the attached bracing and the sleeves and tubes must -be a close fit with the pin or bolt -F.5.12.2 Any non permanent joint at the end(s) must be a Double Lug Joint or a Sleeved Butt Joint - -Formula SAE® Rules 2025 © 2024 SAE International Page 36 of 143 -Version 1.0 31 Aug 2024 -Figure – Double Lug Joint -F.5.12.3 For Double Lug Joints, each lug must: -a. Be minimum 4.5 mm (0.177 in) thickness steel -b. Measure 25 mm minimum perpendicular to the axis of the bracing -c. Be as short as practical along the axis of the bracing. -F.5.12.4 All Double Lug Joints, whether fitted parallel or perpendicular to the axis of the tube, must -include a capping arrangement -F.5.12.5 In a Double Lug Joint the pin or bolt must be 10 mm Metric Grade 9.8 or 3/8 in SAE Grade 8 -minimum diameter and grade. See F.5.12.1 above -Figure – Sleeved Butt Joint -F.5.12.6 For Sleeved Butt Joints, the sleeve must: -a. Have a minimum length of 75 mm; 37.5 mm to each side of the joint -b. Be external to the base tubes, with a close fit around the base tubes. -c. Have a wall thickness of 2.0 mm or more -F.5.12.7 In a Sleeved Butt Joint, the bolts must be 6 mm Metric Grade 9.8 or 1/4 in SAE Grade 8 -minimum diameter and grade. See F.5.12.1 above -F.5.13 Other Bracing Requirements -F.5.13.1 Where the braces are not welded to steel Frame Members, the braces must be securely -attached to the Frame using 8 mm or 5/16” minimum diameter Critical Fasteners, see T.8.2 -F.5.13.2 Mounting plates welded to Roll Hoop Bracing must be 2.0 mm (0.080 in) minimum thickness -steel. - -Formula SAE® Rules 2025 © 2024 SAE International Page 37 of 143 -Version 1.0 31 Aug 2024 -F.5.14 Steering Protection -Steering system racks or mounting components that are external (vertically above or below) -to the Primary Structure must be protected from frontal impact. -The protective structure must: -a. Be F.3.2.1.n or Equivalent -b. Extend to the vertical limit of the steering component(s) -c. Extend to the local width of the Chassis -d. Meet F.7.8 if not welded to the Chassis -F.5.15 Other Side Tube Requirements -If there is a Roll Hoop Brace or other frame tube alongside the driver, at the height of the neck -of any of the team’s drivers, a metal tube or piece of sheet metal must be attached to the -Frame -This is intended to prevent the drivers’ shoulders from passing under the Roll Hoop Brace or -frame tube, and the driver’s neck contacting this brace or tube. -F.5.16 Component Protection -When specified in the rules, components must be protected by one or two of: -a. Fully Triangulated structure with tubes meeting F.3.2.1.n -b. Structure Equivalent to the above, as determined per F.4.1.3 -F.6 TUBE FRAMES -F.6.1 Front Bulkhead -The Front Bulkhead must be constructed of closed section tubing meeting F.3.2.1.a -F.6.2 Front Bulkhead Support -F.6.2.1 Frame Members of the Front Bulkhead Support system must be constructed of closed section -tubing meeting F.3.2.1.b -F.6.2.2 The Front Bulkhead must be securely integrated into the Frame. -F.6.2.3 The Front Bulkhead must be supported back to the Front Hoop by a minimum of three Frame -Members on each side of the vehicle; an upper member; lower member and diagonal brace to -provide Triangulation. -a. The top of the upper support member must be attached 50 mm or less from the top -surface of the Front Bulkhead, and attach to the Front Hoop inside a zone extending 100 -mm above and 50 mm below the Upper Side Impact member. -b. If the upper support member is further than 100 mm above the top of the Upper Side -Impact member, then properly Triangulated bracing is required to transfer load to the -Main Hoop by one of: -• the Upper Side Impact member -• an additional member transmitting load from the junction of the Upper Support -Member with the Front Hoop -c. The lower support member must be attached to the base of the Front Bulkhead and the -base of the Front Hoop -d. The diagonal brace must properly Triangulate the upper and lower support members - -Formula SAE® Rules 2025 © 2024 SAE International Page 38 of 143 -Version 1.0 31 Aug 2024 -F.6.2.4 Each of the above members may be multiple or bent tubes provided the requirements of F.5.2 -are met -F.6.2.5 Examples of acceptable configurations of members may be found in the SES -F.6.3 Front Hoop Bracing -F.6.3.1 Front Hoop Braces must be constructed of material meeting F.3.2.1.d -F.6.3.2 The Front Hoop must be supported by two Braces extending in the forward direction, one on -each of the left and right sides of the Front Hoop. -F.6.3.3 The Front Hoop Braces must be constructed to protect the driver’s legs and should extend to -the structure in front of the driver’s feet. -F.6.3.4 The Front Hoop Braces must be attached as near as possible to the top of the Front Hoop but -not more than 50 mm below the top-most surface of the Front Hoop. See figure after F.5.9.6 -above -F.6.3.5 If the Front Hoop above the Upper Side Impact Structure leans rearwards by more than 10° -from the vertical, it must be supported by additional rearward Front Hoop Braces to a fully -Triangulated structural node. -F.6.3.6 The Front Hoop Braces must be straight, without any bends -F.6.4 Side Impact Structure -F.6.4.1 Frame Members of the Side Impact Structure must be constructed of closed section tubing -meeting F.3.2.1.e or F.3.2.1.f, as applicable -F.6.4.2 With proper Triangulation, Side Impact Structure members may be fabricated from more than -one piece of tubing. -F.6.4.3 The Side Impact Structure must include three or more tubular members located on each side -of the driver while seated in the normal driving position -F.6.4.4 The Upper Side Impact Member must: -a. Connect the Main Hoop and the Front Hoop. -b. Have its top edge entirely in a zone that is parallel to the ground between 265 mm and -320 mm above the lowest point of the top surface of the Lower Side Impact Member -F.6.4.5 The Lower Side Impact Structure member must connect the bottom of the Main Hoop and the -bottom of the Front Hoop. - -Formula SAE® Rules 2025 © 2024 SAE International Page 39 of 143 -Version 1.0 31 Aug 2024 -F.6.4.6 The Diagonal Side Impact Member must: -a. Connect the Upper Side Impact Member and Lower Side Impact Member forward of the -Main Hoop and rearward of the Front Hoop -b. Completely Triangulate the bays created by the Upper and Lower Side Impact Members. -F.6.5 Shoulder Harness Mounting -F.6.5.1 The Shoulder Harness Mounting Bar must: -a. Be a single piece of uncut, continuous, closed section steel tubing that meets F.3.2.1.k -b. Attach to the Main Hoop on the left and right sides of the chassis -F.6.5.2 Bent Shoulder Harness Mounting Bars must: -a. Meet F.5.2.1 and F.5.2.2 -b. Have bracing members attached at the bend(s) and to the Main Hoop. -• Material for this Shoulder Harness Mounting Bar Bracing must meet F.3.2.1.l -• The included angle in side view between the Shoulder Harness Bar and the braces -must be no less than 30°. -F.6.5.3 The Shoulder Harness Mounting Bar must be loaded only by the Shoulder Harness -The Head Restraint, Firewall, driver’s seat and light bodywork may attach to the mounting bar -F.6.6 Main Hoop Bracing Supports -F.6.6.1 Frame Members of the Main Hoop Bracing Support system must be constructed of closed -section tubing meeting F.3.2.1.i -F.6.6.2 The lower end of the Main Hoop Braces must be supported back to the Main Hoop by a -minimum of two Frame Members on each side of the vehicle: an upper member and a lower -member in a properly Triangulated configuration. -a. The upper support member must attach to the node where the upper Side Impact -Member attaches to the Main Hoop. -b. The lower support member must attach to the node where the lower Side Impact -Member attaches to the Main Hoop. -c. Each of the above members may be multiple or bent tubes provided the requirements of -F.5.2 are met. -d. Examples of acceptable configurations of members may be found in the SES. -F.7 MONOCOQUE -F.7.1 General Requirements -F.7.1.1 The Structural Equivalency Spreadsheet must show that the design is Equivalent to a welded -frame in terms of energy dissipation, yield and ultimate strengths in bending, buckling and -tension -F.7.1.2 Composite and metallic monocoques have the same requirements -F.7.1.3 Corners between panels used for structural equivalence must contain core -F.7.1.4 An inspection hole approximately 4mm in diameter must be drilled through a low stress -location of each monocoque section regulated by the Structural Equivalency Spreadsheet -This inspection hole is not required in the Vertical Side Impact Structure F.7.5.3.b - -Formula SAE® Rules 2025 © 2024 SAE International Page 40 of 143 -Version 1.0 31 Aug 2024 -F.7.1.5 Composite monocoques must: -a. Meet the materials requirements in F.4 Composite and Other Materials -b. Use data from the laminate testing results as the basis for any strength or stiffness -calculations -F.7.2 Front Bulkhead -F.7.2.1 When modeled as an “L” shaped section the EI of the Front Bulkhead about vertical and lateral -axis must be equivalent to that of the tubes specified for the Front Bulkhead per F.6.1 -F.7.2.2 The length of the section perpendicular to the Front Bulkhead may be a maximum of 25 mm -measured from the rearmost face of the Front Bulkhead -F.7.2.3 Any Front Bulkhead which supports the IA plate must have a perimeter shear strength -equivalent to a 1.5 mm thick steel plate -F.7.3 Front Bulkhead Support -F.7.3.1 In addition to proving that the strength of the monocoque is sufficient, the monocoque must -have equivalent EI to the sum of the EI of the six Steel Tubes (F.3.2.1.b) that it replaces. -F.7.3.2 The EI of the vertical side of the Front Bulkhead support structure must be equivalent to or -more than the EI of one steel tube that it replaces when calculated as per F.4.3 -F.7.3.3 The perimeter shear strength of the monocoque laminate in the Front Bulkhead support -structure must be 4 kN or more for a section with a diameter of 25 mm. -This must be proven by a physical test completed per F.4.2.5 and the results included in the -SES. -F.7.4 Front Hoop Attachment -F.7.4.1 The Front Hoop must be mechanically attached to the monocoque -a. Front Hoop Mounting Plates must be the minimum thickness of the Front Hoop F.3.2.1.c -b. The Front Hoop tube must be mechanically connected to the Mounting Plate with -Mounting Plates parallel to the two sides of the tube, with gussets from the Front Hoop -tube along the two sides of the mounting plate -F.7.4.2 Front Hoop attachment to a monocoque must obey F.5.7.2 or F.7.8 within 25 mm of any -bends and nodes that are not at the top center of the Front Hoop -F.7.4.3 The Front Hoop may be fully laminated into the monocoque if: -a. The Front Hoop has core fit tightly around its entire circumference. Expanding foam is -not permitted -b. Equivalence to six or more mounts compliant with F.7.8 must show in the SES -c. A small gap in the laminate (approximately 25 mm) exists for inspection of the Front -Hoop F.5.7.7 -F.7.4.4 Adhesive must not be the sole method of attaching the Front Hoop to the monocoque - -Formula SAE® Rules 2025 © 2024 SAE International Page 41 of 143 -Version 1.0 31 Aug 2024 -F.7.5 Side Impact Structure -F.7.5.1 Side Impact Zone - the region longitudinally forward of the Main Hoop and aft of the Front -Hoop consisting of the combination of a vertical section minimum 290 mm in height from the -bottom surface of the floor of the monocoque and half the horizontal floor -F.7.5.2 The Side Impact Zone must have Equivalence to the three (3) Steel Tubes (F.3.2.1.e) that it -replaces -F.7.5.3 The portion of the Side Impact Zone that is vertically between the upper surface of the floor -and 320 mm above the lowest point of the upper surface of the floor (see figure above) must -have: -a. Equivalence to minimum two (2) Steel Tubes (F.3.2.1.e) per F.4.3 -b. No openings in Side View between the Front Hoop and Main Hoop -F.7.5.4 Horizontal floor Equivalence must be calculated per F.4.3 -F.7.5.5 The perimeter shear strength of the monocoque laminate must be 7.5 kN or more for a -section with a diameter of 25 mm. -This must be proven by physical test completed per F.4.2.5 and the results included in the SES. -F.7.6 Main Hoop Attachment -F.7.6.1 The Main Hoop must be mechanically attached to the monocoque -a. Main Hoop mounting plates must be 2.0 mm minimum thickness steel -b. The Main Hoop tube must be mechanically connected to the mounting plate with 2.0 -mm minimum thickness steel plates parallel to the two sides of the tube, with gussets -from the Main Hoop tube along the two sides of the mounting plate -F.7.6.2 Main Hoop attachment to a monocoque must obey F.7.8 within 25 mm of any bends and -nodes that are below the top of the monocoque -F.7.7 Roll Hoop Bracing Attachment -Attachment of tubular Front or Main Hoop Bracing to the monocoque must obey F.7.8. -F.7.8 Attachments -F.7.8.1 Each attachment point between the monocoque or composite panels and the other Primary -Structure must be able to carry a minimum load of 30 kN in any direction. -a. When a Roll Hoop attaches in three locations on each side, the attachments must be -located at the bottom, top, and a location near the midpoint - -Formula SAE® Rules 2025 © 2024 SAE International Page 42 of 143 -Version 1.0 31 Aug 2024 -b. When a Roll Hoop attaches at only the bottom and a point between the top and the -midpoint on each side, each of the four attachments must show load strength of 45 kN in -all directions -F.7.8.2 If a tube frame ( F.6, F.11.2 ) meets the monocoque at the Attachments, the connection must -obey one of the two: -a. Parallel brackets attached to the two sides of the Main Hoop and the two sides of the -Side Impact Structure -b. Two mostly perpendicular brackets attached to the Main Hoop and the side and back of -the monocoque -F.7.8.3 The laminate, brackets, backing plates and inserts must have sufficient stiffness, shear area, -bearing area, weld area and strength to carry the load specified in F.7.8.1 in any direction. -Data obtained from the laminate perimeter shear strength test (F.4.2.5) must prove sufficient -shear area is provided. -F.7.8.4 Proof that the brackets are sufficiently stiff must be documented in the SES. -F.7.8.5 Each attachment point requires no less than two 8 mm or 5/16” minimum diameter Critical -Fasteners, see T.8.2 -F.7.8.6 Each attachment point requires backing plates which meet one of: -• Steel with a minimum thickness of 2 mm -• Alternate materials if Equivalency is approved -F.7.8.7 The Front Hoop Bracing, Main Hoop Bracing and Main Hoop Bracing Supports may use only -one 10 mm or 3/8” minimum diameter Critical Fasteners, see T.8.2 as an alternative to F.7.8.5 -above if the bolt is on the centerline of the bracing tube to prevent loading the bolt in -bending, similar to the figure below. -F.7.8.8 Each Roll Hoop or Accumulator Container to Chassis attachment point must contain one of the -two: -a. A solid insert that is fully enclosed by the inner and outer skin -b. Local elimination of any gap between inner and outer skin, with or without repeating -skin layups -F.7.9 Driver Harness Attachment -F.7.9.1 Required Loads -a. Each attachment point for the Shoulder Belts must support a minimum load of 15 kN -before failure with a required load of 30 kN distributed across the two belt attachments -b. Each attachment point for the Lap Belts must support a minimum load of 15 kN before -failure. - -Formula SAE® Rules 2025 © 2024 SAE International Page 43 of 143 -Version 1.0 31 Aug 2024 -c. Each attachment point for the Anti-Submarine Belts must support a minimum load of 15 -kN before failure. -d. If the Lap Belt and Anti-Submarine Belt mounting points are less than 125 mm apart, or -are attached to the same attachment point, then each mounting point must support a -minimum load of 30 kN before failure. -F.7.9.2 Load Testing -The strength of Lap Belt, Shoulder Belt, and Anti-Submarine Belt attachments must be proven -by physical tests where the required load is applied to a representative attachment point -where the proposed layup and attachment bracket are used. -a. Edges of the test fixture supporting the sample must be a minimum of 125 mm from the -load application point (load vector intersecting a plane) -b. Test Load application of the Lap Belt and Anti Submarine Belts must be normal (90 -degrees) to the plane of the test sample -c. Shoulder Belt Test Load application must meet: -Installed Shoulder Belt Angle: Test Load Application Angle must be: should be: -Between 90° and 45° -Between 90° and the installed -Shoulder Belt Angle -90° -Between 45° and 0° -Between 90° and 45° 90° -The angles are measured from the plane of the Test Sample (90° is normal to the Test -Sample and 0° is parallel to the Test Sample) -d. The Shoulder Harness test sample must not be any larger than the section of the -monocoque as built -e. The width of the Shoulder Harness test sample must not be any wider than the Shoulder -Harness "panel height" (see Structural Equivalency Spreadsheet) used to show -equivalency for the Shoulder Harness mounting bar -f. Designs with attachments near a free edge must not support the free edge during the -test -The intent is that the test specimen, to the best extent possible, represents the vehicle as -driven at competition. Teams are expected to test a panel that is manufactured in as close a -configuration to what is built in the vehicle as possible -F.8 FRONT CHASSIS PROTECTION -F.8.1 Requirements -F.8.1.1 Forward of the Front Bulkhead there must be an Impact Attenuator with an Anti Intrusion -Plate between the Impact Attenuator and the Front Bulkhead. -F.8.1.2 All methods of attachment of the Impact Attenuator to the Anti Intrusion Plate, and of the -Anti Intrusion Plate to the Front Bulkhead must provide sufficient load paths for transverse -and vertical loads if off-axis impacts occur. -F.8.2 Anti Intrusion Plate - AIP -F.8.2.1 The Anti Intrusion Plate must be one of the three: -a. 1.5 mm minimum thickness solid steel -b. 4.0 mm minimum thickness solid aluminum plate - -Formula SAE® Rules 2025 © 2024 SAE International Page 44 of 143 -Version 1.0 31 Aug 2024 -c. Composite material per F.8.3 -F.8.2.2 The outside profile requirement of the Anti Intrusion Plate depends on the method of -attachment to the Front Bulkhead: -a. Welded joints: the profile must align with or be more than the centerline of the Front -Bulkhead tubes on all sides -b. Bolted joints, bonding, laminating: the profile must align with or be more than the -outside dimensions of the Front Bulkhead around the entire periphery -F.8.2.3 Attachment of the Anti Intrusion Plate directly to the Front Bulkhead must be documented in -the team’s SES submission. The accepted methods of attachment are: -a. Welding -• All weld lengths must be 25 mm or longer -• If interrupted, the weld/space ratio must be 1:1 or higher -b. Bolted joints -• Using no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2. -• The distance between any two bolt centers must be 50 mm minimum. -• Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN -c. Bonding -• The Front Bulkhead must have no openings -• The entire surface of the Anti Intrusion Plate must be bonded, with shear and peel -strength higher than 120 kN -d. Laminating -• The Anti Intrusion Plate must be in front of the outer skin of the Front Bulkhead -• The lamination must fully enclose the Anti Intrusion Plate and have shear capability -higher than 120 kN -F.8.3 Composite Anti Intrusion Plate -F.8.3.1 Composite Anti Intrusion Plates: -a. Must not fail in a frontal impact -b. Must withstand a minimum static load of 120 kN distributed over the 200 mm x 100 mm -minimum Impact Attenuator area -F.8.3.2 Strength of the Composite Anti Intrusion Plate must be verified by one of the two methods: -a. Physical testing of the AIP attached to a structurally representative section of the -intended chassis -• The test fixture must have equivalent strength and stiffness to a baseline front -bulkhead or must be the same as the first 50 mm of the Chassis -• Test data is valid for only one Competition Year -b. Laminate material testing under F.4.2.2 and F.4.2.5 and calculations of 3 point bending -and perimeter shear - -Formula SAE® Rules 2025 © 2024 SAE International Page 45 of 143 -Version 1.0 31 Aug 2024 -F.8.4 Impact Attenuator - IA -F.8.4.1 Teams must do one of: -• Use an approved Standard Impact Attenuator from the FSAE Online Website -• Build and test a Custom Impact Attenuator of their own design F.8.8 -F.8.4.2 The Custom Impact Attenuator must meet these: -a. Length 200 mm or more, with its length oriented along the fore/aft axis of the Chassis. -b. Minimum height 100 mm (perpendicular to the ground) and minimum width 200 mm -(parallel to the ground) for a minimum distance of 200 mm forward of the Front -Bulkhead. -c. Segmented foam attenuators must have all segments bonded together to prevent sliding -or parallelogramming. -d. Honeycomb attenuators made of multiple segments must have a continuous panel -between each segment. -F.8.4.3 If the outside profile of the Front Bulkhead is more than 400 mm x 350 mm, or the team uses -the Standard Honeycomb Impact Attenuator, and then one of the two must be met: -a. The Front Bulkhead must include an additional support that is a diagonal or X-brace that -meets F.3.2.1.b or Equivalent (integral or attached) for Monocoque bulkheads F.2.3.1 -• The structure must go across the entire Front Bulkhead opening on the diagonal -• Attachment points at each end must carry a minimum load of 30 kN in any direction -b. Physical testing per F.8.8.6 and F.8.8.7 must be done to prove that the Anti Intrusion -Plate does not permanently deflect more than 25 mm. -F.8.5 Impact Attenuator Attachment -F.8.5.1 The attachment of the Impact Attenuator to the Anti Intrusion Plate or Front Bulkhead must -be documented in the SES submission -F.8.5.2 The Impact Attenuator must attach with an approved method: -Impact Attenuator Type Construction Attachment Method(s): -a. Standard or Custom Foam, Honeycomb Bonding -b. Custom other Bonding, Welding, Bolting -F.8.5.3 If the Impact Attenuator is attached by bonding: -a. Bonding must meet F.5.5 -b. The shear strength of the bond must be higher than: -• 95 kN for foam Impact Attenuators -• 38.5 kN for honeycomb Impact Attenuators -• The maximum compressive force for custom Impact Attenuators -c. The entire surface of a foam Impact Attenuator must be bonded -d. Only the pre-crushed area of a honeycomb Impact Attenuator may be used for bond -equivalence -F.8.5.4 If the Impact Attenuator is attached by welding: -a. Welds may be continuous or interrupted -b. If interrupted, the weld/space ratio must be 1:1 or higher - -Formula SAE® Rules 2025 © 2024 SAE International Page 46 of 143 -Version 1.0 31 Aug 2024 -c. All weld lengths must be more than 25 mm -F.8.5.5 If the Impact Attenuator is attached by bolting: -a. Must have no less than eight 8 mm or 5/16” minimum diameter Critical Fasteners, T.8.2 -b. The distance between any two bolt centers must be 50 mm minimum -c. Each bolt attachment must have pullout, tearout and bending capabilities of 15 kN -d. Must be bolted directly to the Primary Structure -F.8.5.6 Impact Attenuator Position -a. All Impact Attenuators must mount with the bottom leading edge 150 mm or less above -the lowest point on the top of the Lower Side Impact Structure -b. A Custom Impact Attenuator must mount with an area of 200 mm or more long and 200 -mm or more wide that intersects a plane parallel to the ground that is 150 mm or less -above the lowest point on the top of the Lower Side Impact Structure -F.8.5.7 Impact Attenuator Orientation -a. The Impact Attenuator must be centered laterally on the Front Bulkhead -b. Standard Honeycomb must be mounted 200mm width x 100mm height -c. Standard Foam may be mounted laterally or vertically -F.8.6 Front Impact Objects -F.8.6.1 The only items allowed forward of the Anti Intrusion Plate in front view are the Impact -Attenuator, fastener heads, and light bodywork / nosecones -Fasteners should be oriented with the nuts rearwards -F.8.6.2 Front Wing and Bodywork Attachment -a. The front wing and front wing mounts must be able to move completely aft of the Anti -Intrusion Plate and not touch the front bulkhead during a frontal impact -b. The attachment points for the front wing and bodywork mounts should be aft of the Anti -Intrusion Plate -c. Tabs for wing and bodywork attachment must not extend more than 25 mm forward of -the Anti Intrusion Plate -F.8.6.3 Pedal assembly at full travel and adjustment must have a minimum 25 mm clearance to the: -a. Rear face of the Anti Intrusion Plate -b. All Front Bulkhead structure F.6.1, F.7.2, F.8.4.3 -c. All Non Crushable Items inside the Primary Structure -Non Crushable Items include, but are not limited to batteries, master cylinders, hydraulic -reservoirs -F.8.7 Front Impact Verification -F.8.7.1 The combination of the Impact Attenuator assembly and the force to crush or detach all other -items forward of the Anti Intrusion plate must not exceed the peak deceleration specified in -F.8.8.2 -Ignore light bodywork, light nosecones, and outboard wheel assemblies - -Formula SAE® Rules 2025 © 2024 SAE International Page 47 of 143 -Version 1.0 31 Aug 2024 -F.8.7.2 The peak load for the type of Impact Attenuator: -• Standard Foam Impact Attenuator 95 kN -• Standard Honeycomb Impact Attenuator 60 kN -• Tested Impact Attenuator peak as measured -F.8.7.3 Use the Test Method F.8.7.4 or the Calculation Method F.8.7.5 to prove the force requirement -F.8.7.4 Test Method -Get the peak force from physical testing of the Impact Attenuator and any Non Crushable -Object(s) as one of the two: -a. Tested together with the Impact Attenuator -b. Tested with the Impact Attenuator not attached, and add the peak load from F.8.7.2 -F.8.7.5 Calculation Method -a. Calculate a failure load for the mounting of the Non Crushable Object(s) from fastener -shear, tearout, and/or link buckling -b. Add the peak attenuator load from F.8.7.2 -F.8.8 Impact Attenuator Data - IAD -F.8.8.1 All teams must include an Impact Attenuator Data (IAD) report as part of the SES. -F.8.8.2 Impact Attenuator Functional Requirements -These are not test requirements -a. Decelerates the vehicle at a rate not exceeding 20 g average and 40 g peak -b. Energy absorbed must be more than 7350 J -When: -• Total mass of Vehicle is 300 kg -• Impact velocity is 7.0 m/s -F.8.8.3 When using the Standard Impact Attenuator, the SES must meet these: -a. Test data will not be submitted -b. All other requirements of this section must be included. -c. Photos of the actual attenuator must be included -d. Evidence that the Standard IA meets the design criteria provided in the Standard Impact -Attenuator specification must be included with the SES. This may be a receipt or packing -slip from the supplier. -F.8.8.4 The Impact Attenuator Data Report when NOT using the Standard Impact Attenuator must -include: -a. Test data that proves that the Impact Attenuator Assembly meets the Functional -Requirements F.8.8.2 -b. Calculations showing how the reported absorbed energy and decelerations have been -derived. -c. A schematic of the test method. -d. Photos of the attenuator, annotated with the height of the attenuator before and after -testing. - -Formula SAE® Rules 2025 © 2024 SAE International Page 48 of 143 -Version 1.0 31 Aug 2024 -F.8.8.5 The Impact Attenuator Test is valid for only one Competition Year -F.8.8.6 Impact Attenuator Test Setup -a. During any test, the Impact Attenuator must be attached to the Anti Intrusion Plate using -the intended vehicle attachment method. -b. The Impact Attenuator Assembly must be attached to a structurally representative -section of the intended chassis. -The test fixture must have equivalent strength and stiffness to a baseline front bulkhead. -A solid block of material in the shape of the front bulkhead is not “structurally -representative”. -c. There must be 50 mm minimum clearance rearwards of the Anti Intrusion Plate to the -test fixture. -d. No part of the Anti Intrusion Plate may permanently deflect more than 25 mm beyond -the position of the Anti Intrusion Plate before the test. -The 25 mm spacing represents the front bulkhead support and insures that the plate does not -intrude excessively into the cockpit. -F.8.8.7 Test Conduct -a. Composite Impact Attenuators must be Dynamic Tested. -Other Impact Attenuator constructions may be Dynamic Tested or Quasi-Static Tested -b. Dynamic Testing (sled, pendulum, drop tower, etc.) of the Impact Attenuator must be -conducted at a dedicated test facility. This facility may be part of the University, but must -be supervised by professional staff or the University faculty. Teams must not construct -their own dynamic test apparatus. -c. Quasi-Static Testing may be done by teams using their University’s facilities/equipment, -but teams are advised to exercise due care -F.8.8.8 Test Analysis -a. When using acceleration data from the dynamic test, the average deceleration must be -calculated based on the raw unfiltered data. -b. If peaks above the 40 g limit are present in the data, a Channel Filter Class (CFC) 60 -(100Hz) filter per SAE Recommended Practice J211 “Instrumentation for Impact Test”, or -a 100 Hz, 3rd order, low pass Butterworth (-3dB at 100 Hz) filter may be applied. -F.9 FUEL SYSTEM (IC ONLY) -Fuel System Location and Protection are subject to approval during SES review and Technical -Inspection. -F.9.1 Location -F.9.1.1 These components must be inside the Primary Structure (F.1.10): -a. Any part of the Fuel System that is below the Upper Side Impact Structure -b. Parts of the Fuel Tank other than the Fuel Filler Neck and Sight Tube above the Upper -Side Impact Structure IC.1.2 -F.9.1.2 In side view, any portion of the Fuel System must not project below the lower surface of the -chassis - -Formula SAE® Rules 2025 © 2024 SAE International Page 49 of 143 -Version 1.0 31 Aug 2024 -F.9.2 Protection -All Fuel Tanks must be shielded from side or rear impact -F.10 ACCUMULATOR CONTAINER (EV ONLY) -F.10.1 General Requirements -F.10.1.1 All Accumulator Containers must be: -a. Designed to withstand forces from deceleration in all directions -b. Made from a Nonflammable Material ( F.1.18 ) -F.10.1.2 Design of the Accumulator Container must be documented in the SES. -Documentation includes materials used, drawings/images, fastener locations, cell/segment -weight and cell/segment position. -F.10.1.3 The Accumulator Containers and mounting systems are subject to approval during SES review -and Technical Inspection -F.10.1.4 If the Accumulator Container is not constructed from steel or aluminum, the material -properties should be established at a temperature of 60°C -F.10.1.5 If adhesives are used for credited bonding, the bond properties should be established for a -temperature of 60°C -F.10.2 Structure -F.10.2.1 The Floor or Bottom must be made from one of the three: -a. Steel 1.25 mm minimum thickness -b. Aluminum 3.2 mm minimum thickness -c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) -F.10.2.2 Walls, Covers and Lids must be made from one of the three: -a. Steel 0.9 mm minimum thickness -b. Aluminum 2.3 mm minimum thickness -c. Equivalent Alternate / Composite materials ( F.4.1, F.4.2 ) -F.10.2.3 Internal Vertical Walls: -a. Must surround and separate each Accumulator Segment EV.5.1.2 -b. Must have minimum height of the full height of the Accumulator Segments -The Internal Walls should extend to the lid above any Segment -c. Must surround no more than 12 kg on each side -The intent is to have each Segment fully enclosed in its own six sided box -F.10.2.4 If segments are arranged vertically above other segments, each layer of segments must have a -load path to the Chassis attachments that does not pass through another layer of segments -F.10.2.5 Floors and all Wall sections must be joined on each side -The accepted methods of joining walls to walls and walls to floor are: -a. Welding -• Welds may be continuous or interrupted. -• If interrupted, the weld/space ratio must be 1:1 or higher - -Formula SAE® Rules 2025 © 2024 SAE International Page 50 of 143 -Version 1.0 31 Aug 2024 -• All weld lengths must be more than 25 mm -b. Fasteners -Combined strength of the fasteners must be Equivalent to the strength of the welded -joint ( F.10.2.5.a above ) -c. Bonding -• Bonding must meet F.5.5 -• Strength of the bonded joint must be Equivalent to the strength of the welded joint -( F.10.2.5.a above ) -• Bonds must run the entire length of the joint -Folding or bending plate material to create flanges or to eliminate joints between walls is -recommended. -F.10.2.6 Covers and Lids must be mechanically attached and include Positive Locking Mechanisms -F.10.3 Cells and Segments -F.10.3.1 The structure of the Segments (without the structure of the Accumulator Container and -without the structure of the cells) must prevent cells from being crushed in any direction -under the following accelerations: -a. 40 g in the longitudinal direction (forward/aft) -b. 40 g in the lateral direction (left/right) -c. 20 g in the vertical direction (up/down) -F.10.3.2 Segments must be held by one of the two: -a. Mechanical Cover and Lid attachments must show equivalence to the strength of a -welded joint F.10.2.5.a -b. Mechanical Segment attachments to the container must show they can support the -acceleration loads F.10.3.1 above in the direction of removal -F.10.3.3 Calculations and/or tests proving these requirements are met must be included in the SES -F.10.4 Holes and Openings -F.10.4.1 The Accumulator Container(s) exterior or interior walls may contain holes or openings, see -EV.4.3.4 -F.10.4.2 Any Holes and Openings must be the minimum area necessary -F.10.4.3 Exterior and interior walls must cover a minimum of 75% of each face of the battery segments -F.10.4.4 Holes and Openings for airflow: -a. Must be round. Slots are prohibited -b. Should be maximum 10 mm diameter -c. Must not have line of sight to the driver, with the Firewall installed or removed -F.10.5 Attachment -F.10.5.1 Attachment of the Accumulator Container must be documented in the SES -F.10.5.2 Accumulator Containers must: -a. Attach to the Major Structure of the chassis - -Formula SAE® Rules 2025 © 2024 SAE International Page 51 of 143 -Version 1.0 31 Aug 2024 -A maximum of two attachment points may be on a chassis tube between two -triangulated nodes. -b. Not attach to the Shoulder Harness Mounting, Main Hoop or Main Hoop Bracing -F.10.5.3 Any fasteners used to attach Accumulator Container(s) are Critical Fasteners, see T.8.2 -F.10.5.4 Each fastened attachment point to a composite Accumulator Container requires backing -plates that are one of the two: -a. Steel with a thickness of 2 mm minimum -b. Alternate materials Equivalent to 2 mm thickness steel -F.10.5.5 Teams must justify the Accumulator Container attachment using one of the two methods: -• Corner Attachments and Analysis per F.10.5.6 and F.10.5.8 -• Load Based Analysis per F.10.5.7 and F.10.5.8 -F.10.5.6 Accumulator Attachment – Corner Attachments -a. Eight or more attachments are required for any configuration. -• One attachment for each corner of a rectangular structure of multiple Accumulator -Segments -• More than the minimum number of fasteners may be required for non rectangular -arrangements -Examples: If not filled in with additional structure, an extruded L shape would require -attachments at 10 convex corners (the corners at the inside of the L are not convex); -an extruded hexagon would require 12 attachments -b. The mechanical connections at each corner must be 50 mm or less from the corner of -the Segment -c. Each attachment point must be able to withstand a Test Load equal to 1/4 of total mass -of the container accelerating at 40 g -F.10.5.7 Accumulator Attachment – Load Based -a. The minimum number of attachment points depends on the total mass of the container: -Accumulator Weight Minimum Attachment Points -< 20 kg 4 -20 – 30 kg 6 -30 – 40 kg 8 -> 40 kg 10 -b. Each attachment point, including any brackets, backing plates and inserts, must be able -to withstand 15 kN minimum in any direction -F.10.5.8 Accumulator Attachment – All Types -a. Each fastener must withstand the Test Load in pure shear, using the minor diameter if -any threads are in shear -b. Each Accumulator bracket, chassis bracket, or monocoque attachment point must -withstand the Test Load in bending, in pure tearout, pure pullout, pure weld shear if -welded, and pure bond shear and pure bond tensile if bonded. -c. Monocoque attachment points must meet F.7.8.8 - -Formula SAE® Rules 2025 © 2024 SAE International Page 52 of 143 -Version 1.0 31 Aug 2024 -d. Fasteners must be spaced minimum 50 mm apart to be counted as separate attachment -points -F.11 TRACTIVE SYSTEM (EV ONLY) -Tractive System Location and Protection are subject to approval during SES review and -Technical Inspection. -F.11.1 Location -F.11.1.1 All Accumulator Containers must lie inside the Primary Structure (F.1.10). -F.11.1.2 Motors mounted to a suspension upright and their connections must meet EV.4.1.3 -F.11.1.3 Tractive System (EV.1.1) components including Motors, cables and wiring other than those in -F.11.1.2 above must be contained inside one or two of: -• The Rollover Protection Envelope F.1.13 -• Structure meeting F.5.16 Component Protection -F.11.2 Side Impact Protection -F.11.2.1 All Accumulator Containers must be protected from side impact by structure Equivalent to -Side Impact Structure (F.6.4, F.7.5) -F.11.2.2 The Accumulator Container must not be part of the Equivalent structure. -F.11.2.3 Accumulator Container side impact protection must go to a minimum height that is the lower -of the two: -• The height of the Upper Side Impact Structure F.6.4.4 / F.7.5.1 -• The top of the Accumulator Container at that point -F.11.2.4 Tractive System components other than Accumulator Containers in a position below 350 mm -from the ground must be protected from side impact by structure that meets F.5.16 -Component Protection -F.11.3 Rear Impact Protection -F.11.3.1 All Tractive System components must be protected from rear impact by a Rear Bulkhead -a. When the Rear Bulkhead is 100 mm or less from an Accumulator Container, the structure -must be Equivalent to Side Impact Structure (F.6.4, F.7.5) -b. When the Rear Bulkhead is more than 100 mm from an Accumulator Container, the -structure must meet F.5.16 Component Protection -c. The Accumulator Container must not be part of the Equivalent structure -F.11.3.2 The entire top edge of the Rear Bulkhead must go to a minimum height of the Upper Side -Impact Structure F.6.4.4 / F.7.5.1 -F.11.3.3 The top of the Rear Bulkhead must be vertically above the bottom of the Rear Bulkhead -F.11.3.4 The Rear Bulkhead Support must have: -a. A structural and triangulated load path from the top of the Rear Impact Protection to the -Upper Side Impact Structure F.6.4, F.7.5 at the Main Hoop -b. A structural and triangulated load path from the bottom of the Rear Impact Protection to -the Lower Side Impact Structure F.6.4, F.7.5 at the Main Hoop - -Formula SAE® Rules 2025 © 2024 SAE International Page 53 of 143 -Version 1.0 31 Aug 2024 -F.11.3.5 In rear view, the Rear Bulkhead must protect the Tractive System components with a diagonal -structure or X brace that meets F.11.3.1 above -a. Differential mounts, two vertical tubes with similar spacing, a metal plate, or an -Equivalent composite panel may replace a diagonal -If used, the mounts, plate, or panel must: -• Be aft of the upper and lower Rear Bulkhead structures -• Overlap at least 25 mm vertically at the top and the bottom -b. A metal plate or composite Equivalent may replace upper, lower, and diagonal tubes. -If used, the plate must: -• Fully overlap the Rear Bulkhead Support F.11.3.3 above -• Attach by one of the two, as determined by the SES: -- Fully laminated to the Rear Bulkhead or Rear Bulkhead Support -- Attachment strength greater than 120 kN -F.11.4 Clearance and Non Crushable Items -F.11.4.1 Non Crushable Items include, but are not limited to motors, differentials, and the chassis itself -Accumulator mounts do not require clearance -F.11.4.2 The Accumulator Container should have a minimum 25 mm total clearance to each of the -front, side, and rear impact structures -The clearance may be put together on either side of any Non Crushable items around the -accumulator -F.11.4.3 Non Crushable Items mounted behind the Rear Bulkhead must not be able to come through -the Rear Bulkhead - -Formula SAE® Rules 2025 © 2024 SAE International Page 54 of 143 -Version 1.0 31 Aug 2024 -T - TECHNICAL ASPECTS -T.1 COCKPIT -T.1.1 Cockpit Opening -T.1.1.1 The template shown below must pass through the cockpit opening -T.1.1.2 The template will be held horizontally, parallel to the ground, and inserted vertically from a -height above any Primary Structure or bodywork that is between the Front Hoop and the -Main Hoop until it meets the two of: ( refer to F.6.4 and F.7.5.1 ) -a. Has passed 25 mm below the lowest point of the top of the Side Impact Structure -b. Is less than or equal to 320 mm above the lowest point inside the cockpit -T.1.1.3 Fore and aft translation of the template is permitted during insertion. -T.1.1.4 During this test: -a. The steering wheel, steering column, seat and all padding may be removed -b. The shifter, shift mechanism, or clutch mechanism must not be removed unless it is -integral with the steering wheel and is removed with the steering wheel -c. The firewall must not be moved or removed -d. Cables, wires, hoses, tubes, etc. must not block movement of the template -During inspection, the steering column, for practical purposes, will not be removed. The -template may be maneuvered around the steering column, but not any fixed supports. -For ease of use, the template may contain a slot at the front center that the steering column -may pass through. - -Formula SAE® Rules 2025 © 2024 SAE International Page 55 of 143 -Version 1.0 31 Aug 2024 -T.1.2 Internal Cross Section -T.1.2.1 Requirement: -a. The cockpit must have a free internal cross section -b. The template shown below must pass through the cockpit -Template maximum thickness: 7 mm -T.1.2.2 Conduct of the test. The template: -a. Will be held vertically and inserted into the cockpit opening rearward of the rearmost -portion of the steering column. -b. Will then be passed horizontally through the cockpit to a point 100 mm rearwards of the -face of the rearmost pedal when in the inoperative position -c. May be moved vertically inside the cockpit -T.1.2.3 During this test: -a. If the pedals are adjustable, they must be in their most forward position. -b. The steering wheel may be removed -c. Padding may be removed if it can be easily removed without the use of tools with the -driver in the seat -d. The seat and any seat insert(s) that may be used must stay in the cockpit -e. Cables, wires, hoses, tubes, etc. must not block movement of the template -f. The steering column and associated components may pass through the 50 mm wide -center band of the template. -For ease of use, the template may contain a full or partial slot in the shaded area shown on the -figure -T.1.3 Driver Protection -T.1.3.1 The driver’s feet and legs must be completely contained inside the Major Structure of the -Chassis. - -Formula SAE® Rules 2025 © 2024 SAE International Page 56 of 143 -Version 1.0 31 Aug 2024 -T.1.3.2 While the driver’s feet are touching the pedals, in side and front views, any part of the driver’s -feet or legs must not extend above or outside of the Major Structure of the Chassis. -T.1.3.3 All moving suspension and steering components and other sharp edges inside the cockpit -between the Front Hoop and a vertical plane 100 mm rearward of the pedals must be covered -by a shield made of a solid material. -Moving components include, but are not limited to springs, shock absorbers, rocker arms, anti- -roll/sway bars, steering racks and steering column CV joints. -T.1.3.4 Covers over suspension and steering components must be removable to allow inspection of -the mounting points -T.1.4 Vehicle Controls -T.1.4.1 Accelerator Pedal -a. An Accelerator Pedal must control the Powertrain output -b. Pedal Travel is the percent of travel from a fully released position to a fully applied -position. 0% is fully released and 100% is fully applied. -c. The Accelerator Pedal must: -• Return to 0% Pedal Travel when not pushed -• Have a positive stop to prevent any cable, actuation system or sensor from damage -or overstress -T.1.4.2 Any mechanism in the throttle system that could become jammed must be covered. -This is to prevent debris or interference and includes but is not limited to a gear mechanism -T.1.4.3 All Vehicle Controls (steering, gear change, Cockpit Main Switch / Cockpit Shutdown Button) -must be operated from inside the cockpit without any part of the driver, including hands, arms -or elbows, being outside of: -a. The Side Impact Structure defined in F.6.4 / F.7.5 -b. Two longitudinal vertical planes parallel to the centerline of the chassis touching the -uppermost member of the Side Impact Structure -T.1.4.4 All Vehicle Controls must stay below the top-most point of the Front Hoop in any operational -position -T.1.5 Driver’s Seat -T.1.5.1 The Driver’s Seat must be protected by one of the two: -a. In side view, the lowest point of any Driver’s Seat must be no lower than the upper -surface of the lowest structural tube or equivalent -b. A longitudinal tube (or tubes) that meets the requirements for Side Impact tubing -(F.3.2.1.e), passing underneath the lowest point of the Driver Seat. -T.1.6 Thermal Protection -T.1.6.1 When seated in the normal driving position, sufficient heat insulation must be provided to -make sure that the driver will not contact any metal or other materials which may become -heated to a surface temperature above 60°C. -T.1.6.2 Insulation may be external to the cockpit or incorporated with the Driver’s Seat or Firewall. - -Formula SAE® Rules 2025 © 2024 SAE International Page 57 of 143 -Version 1.0 31 Aug 2024 -T.1.6.3 The design must address all three types of heat transfer between the heat source (examples -include but are not limited to: exhaust pipe, coolant hose/tube, Accumulator Container) and a -place that the driver could contact (including seat or floor): -a. Conduction Isolation by one of the two: -• No direct contact between the heat source and the panel -• A heat resistant, conduction isolation material with a minimum thickness of 8 mm -between the heat source and the panel -b. Convection Isolation by a minimum air gap of 25 mm between the heat source and the -panel -c. Radiation Isolation by one of the two: -• A solid metal heat shield with a minimum thickness of 0.4 mm -• Reflective foil or tape when combined with conduction insulation -T.1.7 Floor Closeout -T.1.7.1 All vehicles must have a Floor Closeout to prevent track debris from entering -T.1.7.2 The Floor Closeout must extend from the foot area to the firewall -T.1.7.3 The panel(s) must be made of a solid, non brittle material -T.1.7.4 If multiple panels are used, gaps between panels must not exceed 3 mm -T.1.8 Firewall -T.1.8.1 A Firewall(s) must separate the driver compartment and any portion of the Driver Harness -from: -a. All components of the Fuel System, the engine oil, the liquid cooling systems, any lithium -batteries -b. (EV only) All Tractive System components other than Outboard Wheel Motors EV.4.1.3 -and cable to those Motors where mounted at the wheels or on the front control arms -T.1.8.2 The Firewall must extend sufficiently far upwards and/or rearwards and/or sideways where -any point on the drivers body less than 100 mm above the bottom of the helmet of the tallest -driver must not be in direct line of sight with any part given in T.1.8.1 above -T.1.8.3 Any Firewall must be: -a. A non permeable surface made from a rigid, Nonflammable Material -b. Mounted tightly -T.1.8.4 (EV only) The Firewall or the part of the Firewall on the Tractive System side must be: -a. Made of aluminum. The Firewall layer itself must not be aluminum tape. -b. Grounded, refer to EV.6.7 Grounding -T.1.8.5 (EV only) The Accumulator Container must not be part of the Firewall -T.1.8.6 Sealing -a. Any Firewall must seal completely against the passage of fluids (the Firewall itself, joints, -edges, any pass throughs and Floor Closeout) -b. Firewalls that have multiple panels must overlap and be sealed at the joints -c. Sealing between Firewalls must not be a stressed part of the Firewall -d. Grommets must be used to seal any pass through for wiring, cables, etc - -Formula SAE® Rules 2025 © 2024 SAE International Page 58 of 143 -Version 1.0 31 Aug 2024 -e. Any seals or adhesives used with the Firewall must be rated for the application -environment -T.2 DRIVER ACCOMMODATION -T.2.1 Harness Definitions -a. 5 Point Harness – consists of two Lap Belts, two Shoulder Belts and one Anti-Submarine -Belt. -b. 6 Point Harness – consists of two Lap Belts, two Shoulder Belts and two leg or Anti- -Submarine Belts. -c. 7 Point Harness – consists of two Lap Belts, two Shoulder Belts, two leg or Anti- -Submarine Belts and a negative g or Z Belt. -d. Upright Driving Position - with a seat back angled at 30° or less from the vertical as -measured along the line joining the two 200 mm circles of the template of the 95th -percentile male as defined in F.5.6.5 and positioned per F.5.6.6 -e. Reclined Driving Position - with a seat back angled at more than 30° from the vertical as -measured along the line joining the two 200 mm circles of the template of the 95th -percentile male as defined in F.5.6.5 and positioned per F.5.6.6 -f. Chest to Groin Line - the straight line that in side view follows the line of the Shoulder -Belts from the chest to the release buckle. -T.2.2 Harness Specification -T.2.2.1 The vehicle must use a 5, 6 or 7 Point Harness meeting one or more of the three: -a. SFI Specification 16.1 -b. SFI Specification 16.5 -c. FIA specification 8853/2016 -T.2.2.2 The belts must have the original manufacturers labels showing the specification and -expiration date -T.2.2.3 The Harness must be in or before the year of expiration shown on the labels. Harnesses -expiring on or before Dec 31 of the calendar year of the competition are permitted. -T.2.2.4 The Harness must be in new or like new condition, with no signs of wear, cuts, chaffing or -other issues -T.2.2.5 All Harness hardware must be installed and threaded in accordance with manufacturer’s -instructions -T.2.2.6 All Harness hardware must be used as received from the manufacturer. No modification -(including drilling, cutting, grinding, etc) is permitted. -T.2.3 Harness Requirements -T.2.3.1 Vehicles with a Reclined Driving Position must have: -a. A 6 Point Harness or a 7 Point Harness -b. Anti-Submarine Belts with tilt lock adjusters (“quick adjusters”) OR two sets of Anti- -Submarine Belts installed. -T.2.3.2 All Lap Belts must incorporate a tilt lock adjuster (“quick adjuster”). -Lap Belts with “pull-up” adjusters are recommended over “pull-down” adjusters. - -Formula SAE® Rules 2025 © 2024 SAE International Page 59 of 143 -Version 1.0 31 Aug 2024 -T.2.3.3 The Shoulder Belts must be the over the shoulder type. Only separate shoulder straps are -permitted. “Y” type shoulder straps are not allowed. The “H” type configuration is allowed. -T.2.4 Belt, Strap and Harness Installation - General -T.2.4.1 The Lap Belt, Shoulder Belts and Anti-Submarine Belt(s) must be securely mounted to the -Primary Structure. -T.2.4.2 Any guide or support for the belts must be material meeting F.3.2.1.j -T.2.4.3 Each tab, bracket or eye to which any part of the Harness is attached must: -a. Support a minimum load in pullout and tearout before failure of: -• If one belt is attached to the tab, bracket or eye 15 kN -• If two belts are attached to the tab, bracket or eye 30 kN -b. Be 1.6 mm minimum thickness -c. Not cause abrasion to the belt webbing -Bolt tabs are checked in double tearout. Eyes are checked in single shear through the smallest -radial cross section. -T.2.4.4 Attachment of tabs or brackets must meet these: -a. Where brackets are fastened to the chassis, no less than two 6 mm or 1/4” minimum -diameter Critical Fasteners, see T.8.2 or stronger must be used to attach the bracket to -the chassis -b. Welded tabs or eyes must have a base at least as large as the outer diameter of the tab -or eye -c. Where a single shear tab is welded to the chassis, the tab to tube welding must be on the -two sides of the base of the tab -Double shear attachments are preferred. Tabs and brackets for double shear mounts should -be welded on the two sides. -T.2.4.5 Eyebolts or weld eyes must: -a. Be one piece. No eyenuts or swivels. -b. Be harness manufacturer supplied OR load rated for T.2.4.3.a minimum -Threads should be 7/16-20 or greater -c. Be aligned to allow the harness clip-on bracket to pivot freely, and not touch other -harness brackets (lap and anti sub) or other vehicle parts -d. Have a positive locking feature on threads or by the belt itself -T.2.4.6 For the belt itself to be considered a positive locking feature, the eyebolt must: -a. Have minimum 10 threads engaged in a threaded insert -b. Be shimmed to fully tight -c. Be properly aligned with the clip-on harness bracket (not twisted) to prevent the belt -creating a torque on the eyebolt. -T.2.4.7 Harness installation must meet T.1.8.1 - -Formula SAE® Rules 2025 © 2024 SAE International Page 60 of 143 -Version 1.0 31 Aug 2024 -T.2.5 Lap Belt Mounting -T.2.5.1 The Lap Belts must pass around the pelvic area below the Anterior Superior Iliac Spines (the -hip bones) -T.2.5.2 Installation of the Lap Belts must go in a straight line from the mounting point until they reach -the driver's body without touching any hole in the seat or any other intermediate structure -T.2.5.3 The seat must be rolled or grommeted where the Belts or Harness pass through a hole in the -seat -T.2.5.4 With an Upright Driving Position: -a. The Lap Belt Side View Angle must be between 45° and 65° to the horizontal. -b. The centerline of the Lap Belt at the seat bottom should be between 0 – 75 mm forward -of the seat back to seat bottom junction. -T.2.5.5 With a Reclined Driving Position, the Lap Belt Side View Angle must be between 60° and 80° to -the horizontal. -T.2.5.6 The Lap Belts must attach by one of the two: -a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 -b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame -T.2.5.7 In side view, the Lap Belt must be capable of pivoting freely by using a shouldered bolt or an -eye bolt attachment -T.2.5.8 Any bolt used to attach a Lap Belt, directly to the chassis or to an intermediate bracket, is a -Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• The bolt diameter specified by the manufacturer -• 10 mm or 3/8” -T.2.6 Shoulder Harness -T.2.6.1 From the driver’s shoulders rearwards to the mounting point or structural guide, the Shoulder -Belt Side View Angle must be between 10° above the horizontal and 20° below the horizontal. -T.2.6.2 The Shoulder Belt Mount Spacing must be between 175 mm and 235 mm, center to center -T.2.6.3 The Shoulder Belts must attach by one of the four: -a. Wrap around the Shoulder Harness Mounting bar -b. Bolt through a welded tube insert or tested monocoque attachment F.7.9 -c. Bolt to a well gusseted tab behind the Shoulder Harness Mounting Bar or clip to an eye ( -T.2.4.3 ) loaded in tension on the Shoulder Harness Mounting bar -d. Wrap around physically tested hardware attached to a monocoque - -Formula SAE® Rules 2025 © 2024 SAE International Page 61 of 143 -Version 1.0 31 Aug 2024 -T.2.6.4 Any bolt used to attach a Shoulder Belt, directly to the chassis or to an intermediate bracket, is -a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• The bolt diameter specified by the manufacturer -• 10 mm or 3/8” -T.2.7 Anti-Submarine Belt Mounting -T.2.7.1 The Anti-Submarine Belt of a 5 point harness must be mounted with the mounting point in -line with or slightly forward of the driver’s Chest to Groin Line with an Anti-Submarine Belt -Side View Angle no more than 20° -T.2.7.2 The Anti-Submarine Belts of a 6 point harness must mount in one of the two: -a. With the belts going vertically down from the groin, or with an Anti-Submarine Belt Side -View Angle up to 20° rearwards. -The Anti-Submarine Belt Mount Spacing should be approximately 100 mm apart. -b. With the Anti-Submarine Belt Mounting Points on the Primary Structure at or near the -Lap Belt anchorages, the driver sitting on the Anti-Submarine Belts, and the belts coming -up around the groin to the release buckle. - -Formula SAE® Rules 2025 © 2024 SAE International Page 62 of 143 -Version 1.0 31 Aug 2024 -T.2.7.3 Installation of all Anti-Submarine Belts must go in a straight line from the Anti-Submarine Belt -Mounting Point(s) without touching any hole in the seat or any other intermediate structure -until they reach: -a. The release buckle for the 5 Point Harness mounting per T.2.7.1 -b. The first point where the belt touches the driver’s body for the 6 Point Harness mounting -per T.2.7.2 -T.2.7.4 The Anti Submarine Belts must attach by one of the three: -a. Bolt or eyebolt through a welded tube insert or tested monocoque attachment F.7.9 -b. Bolt to a tab or bracket, or clip to an eye ( T.2.4.3 ) on a tube frame -c. Wrap around a tube meeting F.3.2.1.j that connects the Lower Side Impact tubes F.6.4.5. -The belt must not be able to touch the ground. -T.2.7.5 Any bolt used to attach an Anti-Submarine Belt, directly to the chassis or to an intermediate -bracket, is a Critical Fasteners, see T.8.2, with a minimum diameter that is the smaller of: -• The bolt diameter specified by the manufacturer -• 8 mm or 5/16” -T.2.8 Head Restraint -T.2.8.1 A Head Restraint must be provided to limit the rearward motion of the driver’s head. -T.2.8.2 The Head Restraint must be vertical or near vertical in side view. -T.2.8.3 All material and structure of the Head Restraint must be inside one or the two of: -a. Rollover Protection Envelope F.1.13 -b. Head Restraint Protection (if used) F.5.10 -T.2.8.4 The Head Restraint, attachment and mounting must be strong enough to withstand a -minimum force of: -a. 900 N applied in a rearward direction -b. 300 N applied in a lateral or vertical direction -T.2.8.5 For all drivers, the Head Restraint must be located and adjusted where: -a. The Head Restraint is no more than 25 mm away from the back of the driver’s helmet, -with the driver in their normal driving position. -b. The contact point of the back of the driver’s helmet on the Head Restraint is no less than -50 mm from any edge of the Head Restraint. -Approximately 100 mm of longitudinal adjustment should accommodate range of specified -drivers. Several Head Restraints with different thicknesses may be used -T.2.8.6 The Head Restraint padding must: -a. Be an energy absorbing material that is one of the two: -• Meets SFI Spec 45.2 -• CONFOR CF45 (Blue) or CONFOR CF45M (Blue) FIA Technical List No 17 -b. Have a minimum thickness of 38 mm -c. Have a minimum width of 15 cm - -Formula SAE® Rules 2025 © 2024 SAE International Page 63 of 143 -Version 1.0 31 Aug 2024 -d. Meet one of the two: -• minimum area of 235 cm -2 -AND minimum total height adjustment of 17.5 cm -• minimum height of 28 cm -e. Be covered with a thin, flexible material that contains a ~20 mm diameter inspection -hole in a surface other than the front surface -T.2.9 Roll Bar Padding -Any portion of the roll bar, roll bar bracing or Chassis which might be contacted by the driver’s -helmet must be covered with a minimum thickness of 12 mm of padding which meets SFI Spec -45.1 or FIA 8857-2001. -T.3 BRAKES -T.3.1 Brake System -T.3.1.1 The vehicle must have a Brake System -T.3.1.2 The Brake System must: -a. Act on all four wheels -b. Be operated by a single control -c. Be capable of locking all four wheels -T.3.1.3 The Brake System must have two independent hydraulic circuits -A leak or failure at any point in the Brake System must maintain effective brake power on -minimum two wheels -T.3.1.4 Each hydraulic circuit must have its own fluid reserve using separate reservoirs or an OEM -style reservoir -T.3.1.5 A single brake acting on a limited slip differential may be used -T.3.1.6 “Brake by Wire” systems are prohibited -T.3.1.7 Unarmored plastic brake lines are prohibited -T.3.1.8 The Brake System must be protected with scatter shields from failure of the drive train (see -T.5.2) or from minor collisions. -T.3.1.9 In side view any portion of the Brake System that is mounted on the sprung part of the vehicle -must not project below the lower surface of the chassis -T.3.1.10 Fasteners in the Brake System are Critical Fasteners, see T.8.2 -T.3.2 Brake Pedal, Pedal Box and Mounting -T.3.2.1 The Brake Pedal must be one of: -• Fabricated from steel or aluminum -• Machined from steel, aluminum or titanium -T.3.2.2 The Brake Pedal and associated components design must withstand a minimum force of 2000 -N without any failure of the Brake System, pedal box, chassis mounting, or pedal adjustment -This is not a design criteria. The Brake Pedal and Brake System may be tested by pressing the -pedal with the maximum force that can be exerted by any official when seated normally -T.3.2.3 Failure of non-loadbearing components in the Brake System or pedal box must not interfere -with Brake Pedal operation or Brake System function - -Formula SAE® Rules 2025 © 2024 SAE International Page 64 of 143 -Version 1.0 31 Aug 2024 -T.3.2.4 (EV only) Additional requirements for Electric Vehicles: -a. The first 90% of the Brake Pedal travel may be used to regenerate energy without -actuating the hydraulic brake system -b. The remaining Brake Pedal travel must directly operate the hydraulic brake system. -Brake energy regeneration may stay active -T.3.3 Brake Over Travel Switch - BOTS -T.3.3.1 The vehicle must have a Brake Over Travel Switch (BOTS). Brake pedal travel exceeding the -normal range will operate the switch -T.3.3.2 The BOTS must: -a. Be a mechanical single pole, single throw (two position) switch (push-pull, push-rotate or -flip type) -b. Hold if operated to the OFF position -T.3.3.3 Operation of the BOTS to the OFF position must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 -T.3.3.4 The driver must not be able to reset the BOTS -T.3.3.5 The BOTS must be implemented with analog components, and not using programmable logic -controllers, engine control units, or similar functioning digital controllers. -T.3.4 Brake Light -T.3.4.1 The vehicle must have a Brake Light that is clearly visible from the rear in very bright sunlight. -T.3.4.2 The Brake Light must be: -a. Red in color on a Black background -b. Rectangular, triangular or near round shape with a minimum shining surface of 15 cm -2 -c. Mounted between the wheel centerline and driver’s shoulder level vertically and -approximately on vehicle centerline laterally. -T.3.4.3 When LED lights are used without a diffuser, they must not be more than 20 mm apart. -T.3.4.4 If a single line of LEDs is used, the minimum length is 150 mm. -T.4 ELECTRONIC THROTTLE COMPONENTS -T.4.1 Applicability -This section T.4 applies only for: -• IC vehicles using Electronic Throttle Control (ETC) IC.4 -• EV vehicles -T.4.2 Accelerator Pedal Position Sensor - APPS -T.4.2.1 The Accelerator Pedal must operate the APPS T.1.4.1 -a. Two springs must be used to return the foot pedal to 0% Pedal Travel -b. Each spring must be capable of returning the pedal to 0% Pedal Travel with the other -disconnected. The springs in the APPS are not acceptable pedal return springs. -T.4.2.2 Two or more electrically separate sensors must be used as APPSs. A single OEM type APPS -with two completely separate sensors in a single housing is acceptable. - -Formula SAE® Rules 2025 © 2024 SAE International Page 65 of 143 -Version 1.0 31 Aug 2024 -T.4.2.3 The APPS sensors must have different transfer functions which meet one of the two: -• Each sensor has different gradients and/or offsets to the other(s). The circuit must have -a pull-up or pull-down resistor to bring an open circuit input to 0% Pedal Travel -• An OEM pedal sensor with opposite slopes. Non OEM opposite slope sensor -configurations require prior approval. -The intent is that in a short circuit the APPSs will only agree at 0% Pedal Travel -T.4.2.4 Implausibility is defined as a deviation of more than 10% Pedal Travel between the sensors or -other failure as defined in this Section T.4.2. Use of values larger than 10% Pedal Travel -require justification in the ETC Systems Form and may not be approved -T.4.2.5 If an Implausibility occurs between the values of the APPSs and persists for more than 100 -msec, the power to the (IC) Electronic Throttle / (EV) Motor(s) must be immediately stopped -completely. -(EV only) It is not necessary to Open the Shutdown Circuit, the motor controller(s) stopping -the power to the Motor(s) is sufficient. -T.4.2.6 If three sensors are used, then in the case of an APPS failure, any two sensors that agree -within 10% Pedal Travel may be used to define the (IC) throttle position / (EV) torque target -and the 3rd APPS may be ignored. -T.4.2.7 Each APPS must be able to be checked during Technical Inspection by having one of the two: -• A separate detachable connector that enables a check of functions by unplugging it -• An inline switchable breakout box available that allows disconnection of each APPS -signal. -T.4.2.8 The APPS signals must be sent directly to a controller using an analogue signal or via a digital -data transmission bus such as CAN or FlexRay. -T.4.2.9 Any failure of the APPS or APPS wiring must be detectable by the controller and must be -treated like an Implausibility, see T.4.2.4 above -T.4.2.10 When an analogue signal is used, the APPS will be considered to have failed when they -achieve an open circuit or short circuit condition which generates a signal outside of the -normal operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. -T.4.2.11 When any kind of digital data transmission is used to transmit the APPS signal, -a. The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. -b. The failures to be considered must include but are not limited to the failure of the APPS, -APPS signals being out of range, corruption of the message and loss of messages and the -associated time outs. -T.4.2.12 The current rules are written to only apply to the APPS (pedal), but the integrity of the torque -command signal is important in all stages. -T.4.3 Brake System Encoder - BSE -T.4.3.1 The vehicle must have a sensor or switch to measure brake pedal position or brake system -pressure - -Formula SAE® Rules 2025 © 2024 SAE International Page 66 of 143 -Version 1.0 31 Aug 2024 -T.4.3.2 The BSE must be able to be checked during Technical Inspection by having one of: -• A separate detachable connector(s) for any BSE signal(s) to the main ECU without -affecting any other connections -• An inline switchable breakout box available that allows disconnection of each BSE -signal(s) to the main ECU without affecting any other connections -T.4.3.3 The BSE or switch signals must be sent directly to a controller using an analogue signal or via a -digital data transmission bus such as CAN or FlexRay -Any failure of the BSE or BSE wiring that persists more than 100 msec must be detectable by -the controller and treated like an implausibility and power to the (IC) electronic throttle / (EV) -Motor(s) must be immediately stopped completely. -(EV only) It is not necessary to completely deactivate the Tractive System, the motor -controller(s) stopping power to the motor(s) is sufficient. -T.4.3.4 When an analogue signal is used, the BSE sensors will be considered to have failed when they -achieve an open circuit or short circuit condition which generates a signal outside of the -normal operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. -T.4.3.5 When any kind of digital data transmission is used to transmit the BSE signal: -a. The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. -b. The failures modes must include but are not limited to the failure of the sensor, sensor -signals being out of range, corruption of the message and loss of messages and the -associated time outs. -c. In all cases a sensor failure must immediately shutdown power to the motor(s). -T.5 POWERTRAIN -T.5.1 Transmission and Drive -Any transmission and drivetrain may be used. -T.5.2 Drivetrain Shields and Guards -T.5.2.1 Exposed high speed final drivetrain equipment such as Continuously Variable Transmissions -(CVTs), sprockets, gears, pulleys, torque converters, clutches, belt drives, clutch drives and -electric motors, must be fitted with scatter shields intended to contain drivetrain parts in case -of radial failure -T.5.2.2 The final drivetrain shield must: -a. Be made with solid material (not perforated) -b. Cover the chain or belt from the drive sprocket to the driven sprocket/chain wheel/belt -or pulley -c. Start and end no higher than parallel to the lowest point of the chain wheel/belt/pulley: - -Formula SAE® Rules 2025 © 2024 SAE International Page 67 of 143 -Version 1.0 31 Aug 2024 -d. Cover the bottom of the chain or belt or rotating component when fuel, brake lines -T.3.1.8, control, pressurized, electrical components are located below -T.5.2.3 Body panels or other existing covers are acceptable when constructed per T.5.2.7 / T.5.2.8 -T.5.2.4 Frame Members or existing components that exceed the scatter shield material requirements -may be used as part of the shield. -T.5.2.5 Scatter shields may have multiple pieces. Any gaps must be small (< 3 mm) -T.5.2.6 If equipped, the engine drive sprocket cover may be used as part of the scatter shield system. -T.5.2.7 Chain Drive - Scatter shields for chains must: -a. Be made of 2.66 mm (0.105 inch) minimum thickness steel (no alternatives are allowed) -b. Have a minimum width equal to three times the width of the chain -c. Be centered on the center line of the chain -d. Stay aligned with the chain under all conditions -T.5.2.8 Non-metallic Belt Drive - Scatter shields for belts must: -a. Be made from 3.0 mm minimum thickness aluminum alloy 6061-T6 -b. Have a minimum width that is equal to 1.7 times the width of the belt. -c. Be centered on the center line of the belt -d. Stay aligned with the belt under all conditions -T.5.2.9 Attachment Fasteners - All fasteners attaching scatter shields and guards must be 6 mm or -1/4” minimum diameter Critical Fasteners, see T.8.2 -T.5.2.10 Finger Guards -a. Must cover any drivetrain parts that spin while the vehicle is stationary with the engine -running. -b. Must be made of material sufficient to resist finger forces. -c. Mesh or perforated material may be used but must prevent the passage of a 12 mm -diameter object through the guard. -T.5.3 Motor Protection (EV Only) -T.5.3.1 The rotating part of the Motor(s) EV.4.1 must be contained in a structural casing. -The motor casing may be the original motor casing, a team built motor casing or the original -casing with additional material added to achieve the minimum required thickness. -• Minimum thickness for aluminum alloy 6061-T6: 3.0 mm -If lower grade aluminum alloy is used, then the material must be thicker to provide an -equivalent strength. -• Minimum thickness for steel: 2.0 mm -T.5.3.2 A Scatter Shield must be included around the Motor(s) when one or the two: -• The motor casing rotates around the stator -• The motor case is perforated -T.5.3.3 The Motor Scatter Shield must be: -• Made from aluminum alloy 6061-T6 or steel -• Minimum thickness: 1.0 mm - -Formula SAE® Rules 2025 © 2024 SAE International Page 68 of 143 -Version 1.0 31 Aug 2024 -T.5.4 Coolant Fluid -T.5.4.1 Water cooled engines must use only plain water with no additives of any kind -T.5.4.2 Liquid coolant for electric motors, Accumulators or HV electronics must be one of: -• plain water with no additives -• oil -T.5.4.3 (EV only) Liquid coolant must not directly touch the cells in the Accumulator -T.5.5 System Sealing -T.5.5.1 Any cooling or lubrication system must be sealed to prevent leakage -T.5.5.2 The vehicle must be capable of being tilted to a 45° angle without leaking fluid of any type. -T.5.5.3 Flammable liquid and vapors or other leaks must not collect or contact the driver -T.5.5.4 Two holes of minimum diameter 25 mm each must be provided in the structure or belly pan at -the locations: -a. The lowest point of the chassis -b. Rearward of the driver position, forward of a fuel tank or other liquid source -c. If the lowest point of the chassis obeys T.5.5.4.b, then only one set of holes T.5.5.4.a is -necessary -T.5.5.5 Absorbent material and open collection devices (regardless of material) are prohibited in -compartments containing engine, drivetrain, exhaust and fuel systems below the highest -point on the exhaust system. -T.5.6 Catch Cans -T.5.6.1 The vehicle must have separate containers (catch cans) to retain fluids from any vents from -the powertrain systems. -T.5.6.2 Catch cans must be: -a. Capable of containing boiling water without deformation -b. Located rearwards of the Firewall below the driver’s shoulder level -c. Positively retained, using no tie wraps or tape -T.5.6.3 Catch cans for the engine coolant system and engine lubrication system must have a minimum -capacity of 10% of the fluid being contained or 0.9 liter, whichever is higher -T.5.6.4 Catch cans for any vent on other systems containing liquid lubricant or coolant, including a -differential, gearbox, or electric motor, must have a minimum capacity of 10% of the fluid -being contained or 0.5 liter, whichever is higher -T.5.6.5 Any catch can on the cooling system must vent through a hose with a minimum internal -diameter of 3 mm down to the bottom levels of the Chassis. -T.6 PRESSURIZED SYSTEMS -T.6.1 Compressed Gas Cylinders and Lines -Any system on the vehicle that uses a compressed gas as an actuating medium must meet: -T.6.1.1 Working Gas - The working gas must be non flammable - -Formula SAE® Rules 2025 © 2024 SAE International Page 69 of 143 -Version 1.0 31 Aug 2024 -T.6.1.2 Cylinder Certification - The gas cylinder/tank must be commercially manufactured, designed -and built for the pressure being used, certified by an accredited testing laboratory in the -country of its origin, and labeled or stamped appropriately. -T.6.1.3 Pressure Regulation - The pressure regulator must be mounted directly onto the gas -cylinder/tank -T.6.1.4 Lines and Fittings - The gas lines and fittings must be appropriate for the maximum possible -operating pressure of the system. -T.6.1.5 Insulation - The gas cylinder/tank must be insulated from any heat sources -T.6.1.6 Cylinder Material – gas cylinders/tanks in a position 150 mm or less from an exhaust system -must meet one of the two: -• Made from metal -• Meet the thermal protection requirements of T.1.6.3 -T.6.1.7 Cylinder Location - The gas cylinder/tank and the pressure regulator must be: -a. Securely mounted inside the Chassis -b. Located outside of the Cockpit -c. In a position below the height of the Shoulder Belt Mount T.2.6 -d. Aligned so the axis of the gas cylinder/tank does not point at the driver -T.6.1.8 Protection – The gas cylinder/tank and lines must be protected from rollover, collision from -any direction, or damage resulting from the failure of rotating equipment -T.6.1.9 The driver must be protected from failure of the cylinder/tank and regulator -T.6.2 High Pressure Hydraulic Pumps and Lines -This section T.6.2 does not apply to Brake lines or hydraulic clutch lines -T.6.2.1 The driver and anyone standing outside the vehicle must be shielded from any hydraulic -pumps and lines with line pressures of 2100 kPa or higher. -T.6.2.2 The shields must be steel or aluminum with a minimum thickness of 1 mm. -T.7 BODYWORK AND AERODYNAMIC DEVICES -T.7.1 Aerodynamic Devices -T.7.1.1 Aerodynamic Device -A part on the vehicle which guides airflow for purposes including generation of downforce -and/or change of drag. -Examples include but are not limited to: wings, undertray, splitter, endplates, vanes -T.7.1.2 No power device may be used to move or remove air from under the vehicle. Power ground -effects are strictly prohibited. -T.7.1.3 All Aerodynamic Devices must meet: -a. The mounting system provides sufficient rigidity in the static condition -b. The Aerodynamic Devices do not oscillate or move excessively when the vehicle is -moving. Refer to IN.8.2 -T.7.1.4 All forward facing edges that could contact a pedestrian (wings, end plates, and undertrays) -must have a minimum radius of 5 mm for all horizontal edges and 3 mm for vertical edges. - -Formula SAE® Rules 2025 © 2024 SAE International Page 70 of 143 -Version 1.0 31 Aug 2024 -This may be the radius of the edges themselves, or additional permanently attached pieces -designed to meet this requirement. -T.7.1.5 Other edges that a person may touch must not be sharp -T.7.2 Bodywork -T.7.2.1 Conventionally designed Bodywork or a nose cone is not considered an Aerodynamic Device -T.7.2.2 Bodywork, a nose cone, or another component mounted to the vehicle is an Aerodynamic -Device if is designed to, or may possibly, produce force due to aerodynamic effects -T.7.2.3 Bodywork must not contain openings into the cockpit from the front of the vehicle back to the -Main Hoop or Firewall. The cockpit opening and minimal openings around the front -suspension components are allowed. -T.7.2.4 All forward facing edges on the Bodywork that could contact people, including the nose, must -have forward facing radii minimum 38 mm. This minimum radius must extend 45° or more -relative to the forward direction, along the top, sides and bottom of all affected edges. -T.7.3 Measurement -T.7.3.1 All Aerodynamic Device limitations are measured: -a. With the wheels pointing in the straight ahead position -b. Without a driver in the vehicle -The intent is to standardize the measurement, see GR.6.4.1 -T.7.3.2 Head Restraint Plane -A transverse vertical plane through the rearmost portion of the front face of the driver head -restraint support, excluding any padding, set (if adjustable) in its fully rearward position -T.7.3.3 Rear Aerodynamic Zone -The volume that is: -• Rearward of the Head Restraint Plane -• Inboard of two vertical planes parallel to the centerline of the chassis touching the inside -of the rear tires at the height of the hub centerline -T.7.4 Location -Any part of any Aerodynamic Device or Bodywork must meet V.1.1 and V.1.4.1 -T.7.5 Length -In plan view, any part of any Aerodynamic Device must be: -a. No more than 700 mm forward of the fronts of the front tires -b. No more than 250 mm rearward of the rear of the rear tires -T.7.6 Width -In plan view, any part of any Aerodynamic Device must be: -T.7.6.1 When forward of the centerline of the front wheel axles: -Inboard of two vertical planes parallel to the centerline of the chassis touching the outside of -the front tires at the height of the hubs. -T.7.6.2 When between the centerlines of the front and rear wheel axles: - -Formula SAE® Rules 2025 © 2024 SAE International Page 71 of 143 -Version 1.0 31 Aug 2024 -Inboard of a line drawn connecting the outer surfaces of the front and rear tires at the height -of the wheel centers -T.7.6.3 When rearward of the centerline of the rear wheel axles: -In the Rear Aerodynamic Zone -T.7.7 Height -T.7.7.1 Any part of any Aerodynamic Device that is located: -a. In the Rear Aerodynamic Zone must be no higher than 1200 mm above the ground -b. Outside of the Rear Aerodynamic Zone must be no higher than 500 mm above the -ground -c. Forward of the centerline of the front wheel axles and outboard of two vertical planes -parallel to the centerline of the chassis touching the inside of the front tires at the height -of the hubs must be no higher than 250 mm above the ground -T.7.7.2 Bodywork height is not restricted when the Bodywork is located: -• Between the transverse vertical planes positioned at the front and rear axle centerlines -• Inside two vertical fore and aft planes 400 mm outboard from the centerline on each -side of the vehicle -T.8 FASTENERS -T.8.1 Critical Fasteners -A fastener (bolt, screw, pin, etc) used in a location specified in the applicable rule -T.8.2 Critical Fastener Requirements -T.8.2.1 Any Critical Fastener must meet, at minimum, one of these: -a. SAE Grade 5 -b. Metric Class 8.8 -c. AN/MS Specifications - -Formula SAE® Rules 2025 © 2024 SAE International Page 72 of 143 -Version 1.0 31 Aug 2024 -d. Equivalent to or better than above, as approved by a Rules Question or at Technical -Inspection -T.8.2.2 All threaded Critical Fasteners must be one of the two: -• Hex head -• Hexagonal recessed drive (Socket Head Cap Screws or Allen screws/bolts) -T.8.2.3 All Critical Fasteners must be secured from unintentional loosening with Positive Locking -Mechanisms see T.8.3 -T.8.2.4 A minimum of two full threads must project from any lock nut. -T.8.2.5 Some Critical Fastener applications have additional requirements that are provided in the -applicable section. -T.8.3 Positive Locking Mechanisms -T.8.3.1 Positive Locking Mechanisms are defined as those which: -a. Technical Inspectors / team members can see that the device/system is in place (visible). -b. Do not rely on the clamping force to apply the locking or anti vibration feature. -Meaning If the fastener begins to loosen, the locking device still prevents the fastener coming -completely loose -T.8.3.2 Examples of acceptable Positive Locking Mechanisms include, but are not limited to: -a. Correctly installed safety wiring -b. Cotter pins -c. Nylon lock nuts (where temperature does not exceed 80°C) -d. Prevailing torque lock nuts -Lock washers, bolts with nylon patches and thread locking compounds (Loctite®), DO NOT -meet the positive locking requirement -T.8.3.3 If the Positive Locking Mechanism is by prevailing torque lock nuts: -a. Locking fasteners must be in as new condition -b. A supply of replacement fasteners must be presented in Technical Inspection, including -any attachment method -T.8.4 Requirements for All Fasteners -Adjustable tie rod ends must be constrained with a jam nut to prevent loosening. -T.9 ELECTRICAL EQUIPMENT -T.9.1 Definitions -T.9.1.1 High Voltage – HV -Any voltage more than 60 V DC or 25 V AC RMS -T.9.1.2 Low Voltage - LV -Any voltage less than and including 60 V DC or 25 V AC RMS -T.9.1.3 Normally Open -A type of electrical relay or contactor that allows current flow only in the energized state - -Formula SAE® Rules 2025 © 2024 SAE International Page 73 of 143 -Version 1.0 31 Aug 2024 -T.9.2 Low Voltage Batteries -T.9.2.1 All Low Voltage Batteries and onboard power supplies must be securely mounted inside the -Chassis below the height of the Shoulder Belt Mount T.2.6 -T.9.2.2 All Low Voltage batteries must have Overcurrent Protection that trips at or below the -maximum specified discharge current of the cells -T.9.2.3 The hot (ungrounded) terminal must be insulated. -T.9.2.4 Any wet cell battery located in the driver compartment must be enclosed in a nonconductive -marine type container or equivalent. -T.9.2.5 Batteries or battery packs based on lithium chemistry must meet one of the two: -a. Have a rigid, sturdy casing made from Nonflammable Material -b. A commercially available battery designed as an OEM style replacement -T.9.2.6 All batteries using chemistries other than lead acid must be presented at Technical Inspection -with markings identifying it for comparison to a datasheet or other documentation proving -the pack and supporting electronics meet all rules requirements -T.9.3 Master Switches -Each Master Switch ( IC.9.3 / EV.7.9 ) must meet: -T.9.3.1 Location -a. On the driver’s right hand side of the vehicle -b. In proximity to the Main Hoop -c. At the driver's shoulder height -d. Able to be easily operated from outside the vehicle -T.9.3.2 Characteristics -a. Be of the rotary mechanical type -b. Be rigidly mounted to the vehicle and must not be removed during maintenance -c. Mounted where the rotary axis of the key is near horizontal and across the vehicle -d. The ON position must be in the horizontal position and must be marked accordingly -e. The OFF position must be clearly marked -f. (EV Only) Operated with a red removable key that must only be removable in the -electrically open position -T.9.4 Inertia Switch -T.9.4.1 Inertia Switch Requirement -• (EV) Must have an Inertia Switch -• (IC) Should have an Inertia Switch -T.9.4.2 The Inertia Switch must be: -a. A Sensata Resettable Crash Sensor or equivalent -b. Mechanically and rigidly attached to the vehicle -c. Removable to test functionality - -Formula SAE® Rules 2025 © 2024 SAE International Page 74 of 143 -Version 1.0 31 Aug 2024 -T.9.4.3 Inertia Switch operation: -a. Must trigger due to a longitudinal impact load which decelerates the vehicle at between -8 g and 11 g depending on the duration of the deceleration (refer to spec sheet of the -Sensata device) -b. Must Open the Shutdown Circuit IC.9.2.2 / EV.7.2.2 if triggered -c. Must latch until manually reset -d. May be reset by the driver from inside the driver's cell - -Formula SAE® Rules 2025 © 2024 SAE International Page 75 of 143 -Version 1.0 31 Aug 2024 -VE - VEHICLE AND DRIVER EQUIPMENT -VE.1 VEHICLE IDENTIFICATION -VE.1.1 Vehicle Number -VE.1.1.1 The assigned vehicle number must appear on the vehicle as follows: -a. Locations: in three places, on the front of the chassis and the left and right sides -b. Height: 150 mm minimum -c. Font: Block numbers (sans serif characters without italic, outline, shadow, or cursive -numbers) -d. Stroke Width and Spacing between numbers: 18 mm minimum -e. Color: White numbers on a black background OR black numbers on a white background -f. Background: round, oval, square or rectangular -g. Spacing: 25 mm minimum between the edge of the numbers and the edge of the -background -h. The numbers must not be obscured by parts of the vehicle -VE.1.1.2 Additional letters or numerals must not show before or after the vehicle number -VE.1.2 School Name -Each vehicle must clearly display the school name. -a. Abbreviations are allowed if unique and generally recognized -b. The name must be in Roman characters minimum 50 mm high on the left and right sides -of the vehicle. -c. The characters must be put on a high contrast background in an easily visible location -d. The school name may also appear in non Roman characters, but the Roman character -version must be uppermost on the sides. -VE.1.3 SAE Logo -The SAE International Logo must be displayed on the front and/or the left and right sides of -the vehicle in a prominent location. -VE.1.4 Inspection Sticker -The vehicle must have space for the Inspection Sticker(s) IN.13.2 that is: -• A clear and unobstructed area, minimum 25 cm wide x 20 cm high -• Located on the upper front surface of the nose along the vehicle centerline -VE.1.5 Transponder / RFID Tag -VE.1.5.1 Each vehicle must have a functional, properly mounted transponder and/or RFID tag of the -specified type(s) -VE.1.5.2 Refer to the Rules FAQ on the FSAE Online website for transponder and RFID tag information -and mounting details -VE.2 VEHICLE EQUIPMENT -VE.2.1 Jacking Point -VE.2.1.1 A Jacking Point must be provided at the rear of the vehicle - -Formula SAE® Rules 2025 © 2024 SAE International Page 76 of 143 -Version 1.0 31 Aug 2024 -VE.2.1.2 The Jacking Point must be: -a. Capable of supporting the vehicle weight and of engaging the Quick Jacks shown on the -FSAE Online website -b. Visible to a person standing 1 m behind the vehicle -c. Color: Orange -d. Oriented laterally and perpendicular to the centerline of the vehicle -e. Made from round, 25 - 30 mm OD aluminum or steel tube -f. Exposed around the lower 180° of its circumference over a minimum length of 280 mm -g. Access from the rear of the tube must be unobstructed for 300 mm or more of its length -h. The height of the tube must allow 75 mm minimum clearance from the bottom of the -tube to the ground -i. When the vehicle is raised to where the bottom of the tube is 200 mm above ground, the -wheels do not touch the ground when they are in full rebound -VE.2.2 Push Bar -Each vehicle must have a removable device which attaches to the rear of the vehicle that: -a. Allows two people, standing erect behind the vehicle, to push the vehicle around the -competition site -b. Is capable of slowing and stopping the forward motion of the vehicle and pulling it -rearwards -VE.2.3 Fire Extinguisher -VE.2.3.1 Each team must have two or more fire extinguishers. -a. One extinguisher must readily be available in the team’s paddock area -b. One extinguisher must accompany the vehicle when moved using the Push Bar -A commercially available on board fire system may be used instead of the fire -extinguisher that accompanies the vehicle -VE.2.3.2 Hand held fire extinguishers must NOT be mounted on or in the vehicle -VE.2.3.3 Each fire extinguisher must meet these: -a. Capacity: 0.9 kg (2 lbs) -b. Working Medium: Dry chemical/dry powder. Aqueous Film Forming Foam (AFFF) and -Halon extinguishers and systems are prohibited. -c. Equipped with a manufacturer installed pressure/charge gauge. -d. Minimum acceptable ratings: -• USA, Canada & Brazil: 10BC or 1A 10BC -• Europe: 34B or 5A 34B -• Australia: 20BE or 1A 10BE -e. Extinguishers of larger capacity (higher numerical ratings) are acceptable. -VE.2.4 Electrical Equipment (EV Only) -These items must accompany the vehicle at all times: -• Two pairs of High Voltage insulating gloves - -Formula SAE® Rules 2025 © 2024 SAE International Page 77 of 143 -Version 1.0 31 Aug 2024 -• A multimeter -VE.2.5 Camera Mounts -VE.2.5.1 The mounts for video/photographic cameras must be of a safe and secure design. -VE.2.5.2 All camera installations must be approved at Technical Inspection. -VE.2.5.3 Helmet mounted cameras and helmet camera mounts are prohibited. -VE.2.5.4 The body of a camera or recording unit that weighs more than 0.25 kg must be secured at a -minimum of two points on different sides of the camera body. -VE.2.5.5 If a tether is used to restrain the camera, the tether length must be limited to prevent contact -with the driver. -VE.3 DRIVER EQUIPMENT -VE.3.1 General -VE.3.1.1 Any Driver Equipment: -a. Must be in good condition with no tears, rips, open seams, areas of significant wear, -abrasions or stains which might compromise performance. -b. Must fit properly -c. May be inspected at any time -VE.3.1.2 Flame Resistant Material -For this section some, but not all, of the approved materials are: Carbon X, Indura, Nomex, -Polybenzimidazole (common name PBI) and Proban. -VE.3.1.3 Synthetic Material – Prohibited -Shirts, socks or other undergarments (not to be confused with flame resistant underwear) -made from nylon or any other synthetic material which could melt when exposed to high heat -are prohibited. -VE.3.1.4 Officials may impound any non approved Driver Equipment until the end of the competition. -VE.3.2 Helmet -VE.3.2.1 The driver must wear a helmet which: -a. Is closed face with an integral, immovable chin guard -b. Contains an integrated visor/face shield supplied with the helmet -c. Meets an approved standard -d. Is properly labeled for that standard -VE.3.2.2 Acceptable helmet standards are listed below. Any additional approved standards are shown -on the Technical Inspection Form or the FAQ on the FSAE Online website -a. Snell K2015, K2020, M2015, M2020D, M2020R, M2025D, M2025R, SA2015, SA2020, -SA2025 -b. SFI Specs 31.1/2015, 41.1/2015 -c. FIA Standards FIA 8860-2010 (or newer), FIA 8859-2015 (or newer) - -Formula SAE® Rules 2025 © 2024 SAE International Page 78 of 143 -Version 1.0 31 Aug 2024 -VE.3.3 Driver Gear -The driver must wear: -VE.3.3.1 Driver Suit -A one piece suit, made from a minimum of two layers of Flame Resistant Material that covers -the body from the neck to the ankles and the wrists. -Each suit must meet one or more of these standards and be labeled as such: -• SFI 3.2A/5 (or higher ex: /10, /15, /20) -• SFI 3.4/5 (or higher ex: /10, /15, /20) -• FIA Standard 1986 -• FIA Standard 8856-2000 -• FIA Standard 8856-2018 -VE.3.3.2 Underclothing -All competitors should wear fire retardant underwear (long pants and long sleeve shirt) under -their approved Driver Suit. -VE.3.3.3 Balaclava -A Balaclava (head sock) which covers the driver’s head, hair and neck, made from Flame -Resistant Material -VE.3.3.4 Socks -Socks made from Flame Resistant Material that cover the bare skin between the driver’s suit -and the Shoes. -VE.3.3.5 Shoes -Shoes or boots made from Flame Resistant Material that meet an approved standard and -labeled as such: -• SFI Spec 3.3 -• FIA Standard 8856-2000 -• FIA Standard 8856-2018 -VE.3.3.6 Gloves -Gloves made from Flame Resistant Material. -Gloves of all leather construction or fire retardant gloves constructed using leather palms with -no insulating Flame Resistant Material underneath are not acceptable. -VE.3.3.7 Arm Restraints -a. Arm restraints must be worn in a way that the driver can release them and exit the -vehicle unassisted regardless of the vehicle’s position. -b. Arm restraints must be commercially manufactured. Arm restraints certified to SFI Spec -3.3 and labeled as such meet this requirement. - -Formula SAE® Rules 2025 © 2024 SAE International Page 79 of 143 -Version 1.0 31 Aug 2024 -IC - INTERNAL COMBUSTION ENGINE VEHICLES -IC.1 GENERAL REQUIREMENTS -IC.1.1 Engine Limitations -IC.1.1.1 The engine(s) used to power the vehicle must: -a. Be a piston engine(s) using a four stroke primary heat cycle -b. Have a total combined displacement less than or equal to 710 cc per cycle. -IC.1.1.2 Hybrid powertrains, such as those using electric motors running off stored energy, are -prohibited. -IC.1.1.3 All waste/rejected heat from the primary heat cycle may be used. The method of conversion is -not limited to the four stroke cycle. -IC.1.1.4 The engine may be modified within the restrictions of the rules. -IC.1.2 Air Intake and Fuel System Location -All parts of the engine air system and fuel control, delivery and storage systems (including the -throttle or carburetor, and the complete air intake system, including the air cleaner and any -air boxes) must lie inside the Tire Surface Envelope F.1.14 -IC.2 AIR INTAKE SYSTEM -IC.2.1 General -IC.2.2 Intake System Location -IC.2.2.1 The Intake System must meet IC.1.2 -IC.2.2.2 Any portion of the air intake system that is less than 350 mm above the ground must be -shielded from side or rear impacts by structure built per F.6.4 / F.7.5 as applicable. -IC.2.3 Intake System Mounting -IC.2.3.1 The intake manifold must be securely attached to the engine block or cylinder head with -brackets and mechanical fasteners. -• Hose clamps, plastic ties, or safety wires do not meet this requirement. -• The use of rubber bushings or hose is acceptable for creating and sealing air passages, -but is not a structural attachment. -IC.2.3.2 Threaded fasteners used to secure and/or seal the intake manifold must have a Positive -Locking Mechanism, see T.8.3. -IC.2.3.3 Intake systems with significant mass or cantilever from the cylinder head must be supported -to prevent stress to the intake system. -a. Supports to the engine must be rigid. -b. Supports to the Chassis must incorporate some isolation to allow for engine movement -and chassis flex. -IC.2.4 Intake System Restrictor -IC.2.4.1 All airflow to the engine(s) must pass through a single circular restrictor in the intake system. -IC.2.4.2 The only allowed sequence of components is: -a. For naturally aspirated engines, the sequence must be: throttle body, restrictor, and -engine. - -Formula SAE® Rules 2025 © 2024 SAE International Page 80 of 143 -Version 1.0 31 Aug 2024 -b. For turbocharged or supercharged engines, the sequence must be: restrictor, -compressor, throttle body, engine. -IC.2.4.3 The maximum restrictor diameters at any time during the competition are: -a. Gasoline fueled vehicles 20.0 mm -b. E85 fueled vehicles 19.0 mm -IC.2.4.4 The restrictor must be located to facilitate measurement during Technical Inspection -IC.2.4.5 The circular restricting cross section must NOT be movable or flexible in any way -IC.2.4.6 The restrictor must not be part of the movable portion of a barrel throttle body. -IC.2.5 Turbochargers & Superchargers -IC.2.5.1 The intake air may be cooled with an intercooler (a charge air cooler). -a. It must be located downstream of the throttle body -b. Only ambient air may be used to remove heat from the intercooler system -c. Air to air and water to air intercoolers are permitted -d. The coolant of a water to air intercooler system must meet T.5.4.1 -IC.2.5.2 If pop-off valves, recirculation valves, or heat exchangers (intercoolers) are used, they must be -positioned in the intake system as shown in IC.2.4.2.b -IC.2.5.3 Plenums must not be located anywhere upstream of the throttle body -For the purpose of definition, a plenum is any tank or volume that is a significant enlargement -of the normal intake runner system. Teams may submit their designs via a Rules Question for -review prior to competition if the legality of their proposed system is in doubt. -IC.2.5.4 The maximum allowable area of the inner diameter of the intake runner system between the -restrictor and throttle body is 2825 mm -2 -IC.2.6 Connections to Intake -Any crankcase or engine lubrication vent lines routed to the intake system must be connected -upstream of the intake system restrictor. -IC.3 THROTTLE -IC.3.1 General -IC.3.1.1 The vehicle must have a carburetor or throttle body. -a. The carburetor or throttle body may be of any size or design. -b. Boosted applications must not use carburetors. - -Formula SAE® Rules 2025 © 2024 SAE International Page 81 of 143 -Version 1.0 31 Aug 2024 -IC.3.2 Throttle Actuation Method -The throttle may be operated: -a. Mechanically by a cable or rod system IC.3.3 -b. By Electronic Throttle Control IC.4 -IC.3.3 Throttle Actuation – Mechanical -IC.3.3.1 The throttle cable or rod must: -a. Have smooth operation -b. Have no possibility of binding or sticking -c. Be minimum 50 mm from any exhaust system component and out of the exhaust stream -d. Be protected from being bent or kinked by the driver’s foot when it is operated by the -driver or when the driver enters or exits the vehicle -IC.3.3.2 The throttle actuation system must use two or more return springs located at the throttle -body. -Throttle Position Sensors (TPS) are NOT acceptable as return springs -IC.3.3.3 Failure of any component of the throttle system must not prevent the throttle returning to -the closed position. -IC.4 ELECTRONIC THROTTLE CONTROL -This section IC.4 applies only when Electronic Throttle Control is used -An Electronic Throttle Control (ETC) system may be used. This is a device or system which -may change the engine throttle setting based on various inputs. -IC.4.1 General Design -IC.4.1.1 The electronic throttle must automatically close (return to idle) when power is removed. -IC.4.1.2 The electronic throttle must use minimum two sources of energy capable of returning the -throttle to the idle position. -a. One of the sources may be the device (such as a DC motor) that normally operates the -throttle -b. The other device(s) must be a throttle return spring that can return the throttle to the -idle position if loss of actuator power occurs. -c. Springs in the TPS are not acceptable throttle return springs -IC.4.1.3 The ETC system may blip the throttle during downshifts when proven that unintended -acceleration can be prevented. Document the functional analysis in the ETC Systems Form -IC.4.2 Commercial ETC System -IC.4.2.1 An ETC system that is commercially available, but does not comply with the regulations, may -be used, if approved prior to the event. -IC.4.2.2 To obtain approval, submit a Rules Question which includes: -• Which ETC system the team is seeking approval to use. -• The specific ETC rule(s) that the commercial system deviates from. -• Sufficient technical details of these deviations to determine the acceptability of the -commercial system. - -Formula SAE® Rules 2025 © 2024 SAE International Page 82 of 143 -Version 1.0 31 Aug 2024 -IC.4.3 Documentation -IC.4.3.1 The ETC Notice of Intent: -• Must be submitted to give the intent to run ETC -• May be used to screen which teams are allowed to use ETC -IC.4.3.2 The ETC Systems Form must be submitted in order to use ETC -IC.4.3.3 Submit the ETC Notice of Intent and ETC Systems Form as given in section DR - Document -Requirements -IC.4.3.4 Late or non submission will prevent use of ETC, see DR.3.4.1 -IC.4.4 Throttle Position Sensor - TPS -IC.4.4.1 The TPS must measure the position of the throttle or the throttle actuator. -Throttle position is defined as percent of travel from fully closed to wide open where 0% is -fully closed and 100% is fully open. -IC.4.4.2 Two or more separate sensors must be used as TPSs. The TPSs may share the same supply and -reference lines only if effects of supply and/or reference line voltage offsets can be detected. -IC.4.4.3 Implausibility is defined as a deviation of more than 10% throttle position between the -sensors or other failure as defined in Section IC.4. Use of values larger than 10% may be -considered on a case by case basis and require justification in the ETC Systems Form -IC.4.4.4 If an Implausibility occurs between the values of the two TPSs and persists for more than 100 -msec, the power to the electronic throttle must be immediately shut down. -IC.4.4.5 If three sensors are used, then in the case of a TPS failure, any two TPSs that agree within 10% -throttle position may be used to define the throttle position target and the 3rd TPS may be -ignored. -IC.4.4.6 Each TPS must be able to be checked during Technical Inspection by having one of: -a. A separate detachable connector(s) for any TPS signal(s) to the main ECU without -affecting any other connections -b. An inline switchable breakout box available that allows disconnection of each TPS -signal(s) to the main ECU without affecting any other connections -IC.4.4.7 The TPS signals must be sent directly to the throttle controller using an analogue signal or via -a digital data transmission bus such as CAN or FlexRay. Any failure of the TPSs or TPS wiring -must be detectable by the controller and must be treated like Implausibility. -IC.4.4.8 When an analogue signal is used, the TPSs will be considered to have failed when they achieve -an open circuit or short circuit condition which generates a signal outside of the normal -operating range, for example <0.5 V or >4.5 V. -The circuitry used to evaluate the sensor must use pull down or pull up resistors to make sure -that open circuit signals result in a failure being detected. -IC.4.4.9 When any kind of digital data transmission is used to transmit the TPS signal, -a. The ETC Systems Form must contain a detailed description of all the potential failure -modes that can occur, the strategy that is used to detect these failures and the tests that -have been conducted to prove that the detection strategy works. -b. The failures to be considered must include but are not limited to the failure of the TPS, -TPS signals being out of range, corruption of the message and loss of messages and the -associated time outs. - -Formula SAE® Rules 2025 © 2024 SAE International Page 83 of 143 -Version 1.0 31 Aug 2024 -IC.4.5 Accelerator Pedal Position Sensor - APPS -Refer to T.4.2 for specific requirements of the APPS -IC.4.6 Brake System Encoder - BSE -Refer to T.4.3 for specific requirements of the BSE -IC.4.7 Throttle Plausibility Checks -IC.4.7.1 Brakes and Throttle Position -a. The power to the electronic throttle must be shut down if the mechanical brakes are -operated and the TPS signals that the throttle is open by more than a permitted amount -for more than one second. -b. An interval of one second is allowed for the throttle to close (return to idle). Failure to -achieve this in the required interval must result in immediate shut down of fuel flow and -the ignition system. -c. The permitted relationship between BSE and TPS may be defined by the team using a -table. This functionality must be demonstrated at Technical Inspection. -IC.4.7.2 Throttle Position vs Target -a. The power to the electronic throttle must be immediately shut down, if throttle position -differs by more than 10% from the expected target TPS position for more than one -second. -b. An interval of one second is allowed for the difference to reduce to less than 10%, failure -to achieve this in the required interval must result in immediate shut down of fuel flow -and the ignition system. -c. An error in TPS position and the resultant system shutdown must be demonstrated at -Technical Inspection. -Teams must have a method to demonstrate that the actions in IC.4.7.2.b above are met. -System states displayed using calibration software must be accompanied by a detailed -explanation of the control system. -IC.4.7.3 The electronic throttle and fuel injector/ignition system shutdown must stay active until the -TPS signals indicate the throttle is at or below the unpowered default position for one second -or longer. -IC.4.8 Brake System Plausibility Device - BSPD -IC.4.8.1 A standalone nonprogrammable circuit must be used to monitor the electronic throttle -control. -The BSPD must be provided in addition to the Throttle Plausibility Checks IC.4.7 -IC.4.8.2 Signals from any sensors must be sent directly to the BSPD. Outputs from other modules may -not be used in place of the raw sensor signals. -IC.4.8.3 The BSPD must monitor for these conditions: -a. The two of these for more than one second: -• Demand for Hard Braking IC.4.6 -• Throttle more than 10% open IC.4.4 -b. Loss of signal from the braking sensor(s) for more than 100 msec -c. Loss of signal from the throttle sensor(s) for more than 100 msec - -Formula SAE® Rules 2025 © 2024 SAE International Page 84 of 143 -Version 1.0 31 Aug 2024 -d. Removal of power from the BSPD circuit -IC.4.8.4 When any of the above conditions exist, the BSPD must Open the Shutdown Circuit IC.9.2.2 -IC.4.8.5 The BSPD must only be reset by cycling the Primary Master Switch IC.9.3 OFF and ON -IC.4.8.6 The BSPD must not reset when the Cockpit Main Switch IC.9.4 is turned OFF -IC.4.8.7 The BSPD signals and function must be able to be checked during Technical Inspection by -having one of: -a. A separate set of detachable connectors for any signals from the braking sensor(s), -throttle sensor(s) and removal of power to only the BSPD device. -b. An inline switchable breakout box available that allows disconnection of the brake -sensor(s), throttle sensor(s) individually and power to only the BSPD device. -IC.5 FUEL AND FUEL SYSTEM -IC.5.1 Fuel -IC.5.1.1 Vehicles must be operated with the fuels provided at the competition -IC.5.1.2 Fuels provided are expected to be Gasoline and E85. Consult the individual competition -websites for fuel specifics and other information. -IC.5.1.3 No agents other than the provided fuel and air may go into the combustion chamber. -IC.5.2 Fuel System -IC.5.2.1 The Fuel System must meet these design criteria: -a. The Fuel Tank is capable of being filled to capacity without manipulating the tank or the -vehicle in any manner. -b. During refueling on a level surface, the formation of air cavities or other effects that -cause the fuel level observed at the sight tube to drop after movement or operation of -the vehicle (other than due to consumption) are prevented. -c. Spillage during refueling cannot contact the driver position, exhaust system, hot engine -parts, or the ignition system. -IC.5.2.2 The Fuel System location must meet IC.1.2 and F.9 -IC.5.2.3 A Firewall must separate the Fuel Tank from the driver, per T.1.8 -IC.5.3 Fuel Tank -The part(s) of the fuel containment device that is in contact with the fuel. -IC.5.3.1 Fuel Tanks made of a rigid material must: -a. Be securely attached to the vehicle structure. The mounting method must not allow -chassis flex to load the Fuel Tank. -b. Not be used to carry any structural loads; from Roll Hoops, suspension, engine or -gearbox mounts -IC.5.3.2 Any Fuel Tank that is made from a flexible material, for example a bladder fuel cell or a bag -tank: -a. Must be enclosed inside a rigid fuel tank container which is securely attached to the -vehicle structure. -b. The Fuel Tank container may be load carrying -IC.5.3.3 Any size Fuel Tank may be used - -Formula SAE® Rules 2025 © 2024 SAE International Page 85 of 143 -Version 1.0 31 Aug 2024 -IC.5.3.4 The Fuel Tank, by design, must not have a variable capacity. -IC.5.3.5 The Fuel System must have a provision for emptying the Fuel Tank if required. -IC.5.4 Fuel Filler Neck & Sight Tube -IC.5.4.1 All Fuel Tanks must have a Fuel Filler Neck which must be: -a. Minimum 35 mm inner diameter at any point between the Fuel Tank and the Fuel Filler -cap -IC.5.4.2 The portion of the Fuel Filler Neck nearest to the Fuel Filler cap must be: -a. Minimum 125 mm vertical height above the top level of the Fuel Tank -b. Angled no more than 30° from the vertical -IC.5.4.3 The Fuel Filler Neck must be accompanied by a clear fuel resistant sight tube for reading the -fuel level which must be: -a. Visible vertical height: 125 mm minimum -b. Inside diameter: 6 mm minimum -c. Above the top surface of the Fuel Tank -IC.5.4.4 A clear Fuel Filler Neck tube may be used as a sight tube, subject to approval by a Rules -Question or technical inspectors at the event. -IC.5.4.5 Fuel Level Line - A permanent, non movable fuel level line must be located between 12 mm -and 25 mm below the top of the visible portion of the sight tube. -This line will be used as the fill line for the Tilt Test, and before and after Endurance to measure -the amount of fuel used during the Endurance Event. -IC.5.4.6 The sight tube and fuel level line must be clearly visible to two individuals (one to fill the tank, -the other to visually verify fill) without the need of assistance (artificial lighting, magnifiers, -etc) or the need to remove any parts (body panels, etc). -IC.5.4.7 The individual filling the tank must have complete direct access to the filler neck opening with -a standard two gallon gas can assembly. -The gas can is minimum 25 cm wide x 25 cm deep x 35 cm high, with a 25 cm spout at the top -IC.5.4.8 The filler neck must have a fuel cap that can withstand severe vibrations or high pressures -such as could occur during a vehicle rollover event - -Formula SAE® Rules 2025 © 2024 SAE International Page 86 of 143 -Version 1.0 31 Aug 2024 -IC.5.5 Fuel Tank Filling -IC.5.5.1 Fueling / Refueling policies and procedures are at the discretion of the fuel crew and officials. -IC.5.5.2 The tank will be filled to the fill line, or if a filling system is used, to the automatic stop point. -IC.5.5.3 If, for any reason, the fuel level changes after the team have moved the vehicle, then no -additional fuel will be added, unless fueling after Endurance, see D.13.2.5 -IC.5.6 Venting Systems -IC.5.6.1 Venting systems for the fuel tank and fuel delivery system must not allow fuel to spill during -hard cornering or acceleration. -IC.5.6.2 All fuel vent lines must have a check valve to prevent fuel leakage when the tank is inverted. -IC.5.6.3 All fuel vent lines must exit outside the bodywork. -IC.5.7 Fuel Lines -IC.5.7.1 Fuel lines must be securely attached to the vehicle and/or engine. -IC.5.7.2 All fuel lines must be shielded from possible rotating equipment failure or collision damage. -IC.5.7.3 Plastic fuel lines between the fuel tank and the engine (supply and return) are prohibited. -IC.5.7.4 Any rubber fuel line or hose used must meet the two: -a. The components over which the hose is clamped must have annular bulb or barbed -fittings to retain the hose -b. Clamps specifically designed for fuel lines must be used. -These clamps have three features: a full 360° wrap, a nut and bolt system for tightening, -and rolled edges to prevent the clamp cutting into the hose -IC.5.7.5 Worm gear type hose clamps must not be used on any fuel line. -IC.6 FUEL INJECTION -IC.6.1 Low Pressure Injection (LPI) -Low Pressure fuel injection systems are those functioning at a pressure below 10 Bar. Most -Port Fuel Injected (PFI) fuel systems are low pressure. -IC.6.1.1 Any Low Pressure flexible fuel lines must be one of: -• Metal braided hose with threaded fittings (crimped on or reusable) -• Reinforced rubber hose with some form of abrasion resistant protection -IC.6.1.2 Fuel rail and mounting requirements: -a. Unmodified OEM Fuel Rails are acceptable, regardless of material. -b. Non OEM fuel rails made from plastic, carbon fiber or rapid prototyping flammable -materials are prohibited. -c. The fuel rail must be securely attached to the manifold, engine block or cylinder head -with brackets and mechanical fasteners. -Hose clamps, plastic ties, or safety wires do not meet this requirement. -d. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 - -Formula SAE® Rules 2025 © 2024 SAE International Page 87 of 143 -Version 1.0 31 Aug 2024 -IC.6.2 High Pressure Injection (HPI) / Direct Injection (DI) -IC.6.2.1 Definitions -a. High Pressure fuel systems - those functioning at 10 Bar pressure or above -b. Direct Injection fuel systems - where the injection occurs directly into the combustion -system -Direct Injection systems often utilize a low pressure electric fuel pump and high pressure -mechanical “boost” pump driven off the engine. -c. High Pressure Fuel Lines - those between the boost pump and injectors -d. Low Pressure Fuel Lines - from the electric supply pump to the boost pump -IC.6.2.2 All High Pressure Fuel Lines must: -a. Be stainless steel rigid line or Aeroquip FC807 smooth bore PTFE hose with stainless steel -reinforcement and visible Nomex tracer yarn. Equivalent products may be used with -prior approval. -b. Not incorporate elastomeric seals -c. Be rigidly connected every 100 mm by mechanical fasteners to structural engine -components such as cylinder heads or block -IC.6.2.3 Any Low Pressure flexible Fuel Lines must be one of: -• Metal braided hose with threaded fittings (crimped on or reusable) -• Reinforced rubber hose with some form of abrasion resistant protection -IC.6.2.4 Fuel rail mounting requirements: -a. The fuel rail must be securely attached to the engine block or cylinder head with brackets -and mechanical fasteners. Hose clamps, plastic ties, or safety wires do not meet this -requirement. -b. The fastening method must be sufficient to hold the fuel rail in place with the maximum -regulated pressure acting on the injector internals and neglecting any assistance from -cylinder pressure acting on the injector tip. -c. Threaded fasteners used to secure the fuel rail are Critical Fasteners, see T.8.2 -IC.6.2.5 High Pressure Fuel Pump – must be rigidly mounted to structural engine components such as -the cylinder head or engine block. -IC.6.2.6 Pressure Regulator – must be fitted between the High Pressure and Low Pressure sides of the -fuel system in parallel with the DI boost pump. The external regulator must be used even if -the DI boost pump comes equipped with an internal regulator. -IC.7 EXHAUST AND NOISE CONTROL -IC.7.1 Exhaust Protection -IC.7.1.1 The exhaust system must be separated from any of these components by means given in -T.1.6.3: -a. Flammable materials, including the fuel and fuel system, the oil and oil system -b. Thermally sensitive components, including brake lines, composite materials, and -batteries - -Formula SAE® Rules 2025 © 2024 SAE International Page 88 of 143 -Version 1.0 31 Aug 2024 -IC.7.2 Exhaust Outlet -IC.7.2.1 The exhaust must be routed to prevent the driver from fumes at any speed considering the -draft of the vehicle -IC.7.2.2 The Exhaust Outlet(s) must be: -a. No more than 45 cm aft of the centerline of the rear axle -b. No more than 60 cm above the ground. -IC.7.2.3 Any exhaust components (headers, mufflers, etc.) that protrude from the side of the body in -front of the Main Hoop must be shielded to prevent contact by persons approaching the -vehicle or a driver exiting the vehicle -IC.7.2.4 Fibrous/absorbent material, (such as header wrap), must not be used on the outside of an -exhaust manifold or exhaust system. -IC.7.3 Variable Exhaust -IC.7.3.1 Adjustable tuning or throttling devices are permitted. -IC.7.3.2 Manually adjustable tuning devices must require tools to change -IC.7.3.3 Refer to IN.10.2 for additional requirements during the Noise Test -IC.7.4 Connections to Exhaust -Crankcase breathers that pass through the oil catch tank(s) to exhaust systems, or vacuum -devices that connect directly to the exhaust system, are prohibited. -IC.7.5 Noise Level and Testing -IC.7.5.1 The vehicle must stay below the permitted sound level at all times IN.10.5 -IC.7.5.2 Sound level will be verified during Technical Inspection, refer to IN.10 -IC.8 ELECTRICAL -IC.8.1 Starter -Each vehicle must start the engine using an onboard starter at all times -IC.8.2 Batteries -Refer to T.9.2 for specific requirements of Low Voltage batteries -IC.8.3 Voltage Limit -IC.8.3.1 Voltage between any two electrical connections must be Low Voltage T.9.1.2 -IC.8.3.2 This voltage limit does not apply to these systems: -• High Voltage systems for ignition -• High Voltage systems for injectors -• Voltages internal to OEM charging systems designed for <60 V DC output. -IC.9 SHUTDOWN SYSTEM -IC.9.1 Shutdown Circuit -IC.9.1.1 The Shutdown Circuit consists of these components: -a. Primary Master Switch IC.9.3 -b. Cockpit Main Switch IC.9.4 - -Formula SAE® Rules 2025 © 2024 SAE International Page 89 of 143 -Version 1.0 31 Aug 2024 -c. (ETC Only) Brake System Plausibility Device (BSPD) IC.4.8 -d. Brake Overtravel Switch (BOTS) T.3.3 -e. Inertia Switch (if used) T.9.4 -IC.9.1.2 The team must be able to demonstrate all features and functions of the Shutdown Circuit and -components at Technical Inspection -IC.9.1.3 The international electrical symbol (a red spark on a white edged blue triangle) must be near -the Primary Master Switch and the Cockpit Main Switch. -IC.9.2 Shutdown Circuit Operation -IC.9.2.1 The Shutdown Circuit must Open upon operation of, or detection from any of the components -listed in IC.9.1.1 -IC.9.2.2 When the Shutdown Circuit Opens, it must: -a. Stop the engine -b. Disconnect power to the: -• Fuel Pump(s) -• Ignition -• (ETC only) Electronic Throttle IC.4.1.1 -IC.9.3 Primary Master Switch -IC.9.3.1 Configuration and Location - The Primary Master Switch must meet T.9.3 -IC.9.3.2 Function - the Primary Master Switch must: -a. Disconnect power to ALL electrical circuits, including the battery, alternator, lights, fuel -pump(s), ignition and electrical controls. -All battery current must flow through this switch -b. Be direct acting, not act through a relay or logic. -IC.9.4 Cockpit Main Switch -IC.9.4.1 Configuration - The Cockpit Main Switch must: -a. Be a push-pull or push-rotate emergency stop switch (pushing the button is the OFF -position) -b. Have a diameter of 24 mm minimum -IC.9.4.2 Location – The Cockpit Main Switch must be: -a. In easy reach of the driver when in a normal driving position wearing Harness -b. Adjacent to the Steering Wheel -c. Unobstructed by the Steering Wheel or any other part of the vehicle -IC.9.4.3 Function - the Cockpit Main Switch may act through a relay - -Formula SAE® Rules 2025 © 2024 SAE International Page 90 of 143 -Version 1.0 31 Aug 2024 -EV - ELECTRIC VEHICLES -EV.1 DEFINITIONS -EV.1.1 Tractive System – TS -Every part electrically connected to the Motor(s) and/or Accumulator(s) -EV.1.2 Grounded Low Voltage - GLV -Every electrical part that is not part of the Tractive System -EV.1.3 Accumulator -All the battery cells or super capacitors that store the electrical energy to be used by the -Tractive System -EV.2 DOCUMENTATION -EV.2.1 Electrical System Form - ESF -EV.2.1.1 Each team must submit an Electrical System Form (ESF) with a clearly structured -documentation of the entire vehicle electrical system (including control and Tractive System). -Submission and approval of the ESF does not mean that the vehicle will automatically pass -Electrical Technical Inspection with the described items / parts. -EV.2.1.2 The ESF may provide guidance or more details than the Formula SAE Rules. -EV.2.1.3 Use the format provided and submit the ESF as given in section DR - Document Requirements -EV.2.2 Submission Penalties -Penalties for the ESF are imposed as given in section DR - Document Requirements. -EV.3 ELECTRICAL LIMITATIONS -EV.3.1 Operation -EV.3.1.1 Supplying power to the motor to drive the vehicle in reverse is prohibited -EV.3.1.2 Drive by wire control of wheel torque is permitted -EV.3.1.3 Any algorithm or electronic control unit that can adjust the requested wheel torque may only -decrease the total driver requested torque and must not increase it -EV.3.2 Energy Meter -EV.3.2.1 All Electric Vehicles must run with the Energy Meter provided at the event -Refer to the FSAEOnline Website AD.2.2 for detail information on the Energy Meter -EV.3.2.2 The Energy Meter must be installed in an easily accessible location -EV.3.2.3 All Tractive System power must flow through the Energy Meter -EV.3.2.4 Each team must download their Energy Meter data in a manner and timeframe specified by -the organizer -EV.3.2.5 Power and Voltage limits will be checked by the Energy Meter data -Energy is calculated as the time integrated value of the measured voltage multiplied by the -measured current logged by the Energy Meter. - -Formula SAE® Rules 2025 © 2024 SAE International Page 91 of 143 -Version 1.0 31 Aug 2024 -EV.3.3 Power and Voltage -EV.3.3.1 The maximum power measured by the Energy Meter must not exceed 80 kW -EV.3.3.2 The maximum permitted voltage that may occur between any two points must not exceed -600 V DC -EV.3.3.3 The powertrain must not regenerate energy when vehicle speed is between 0 and 5 km/hr -EV.3.4 Violations -EV.3.4.1 A Violation occurs when one or two of these exist: -a. Use of more than the specified maximum power EV.3.3.1 -b. Exceed the maximum voltage EV.3.3.2 -for one or the two conditions: -• Continuously for 100 ms or more -• After a moving average over 500 ms is applied -EV.3.4.2 Missing Energy Meter data may be treated as a Violation, subject to official discretion -EV.3.4.3 Tampering, or attempting to tamper with the Energy Meter or its data may result in -Disqualification (DQ) -EV.3.5 Penalties -EV.3.5.1 Violations during the Acceleration, Skidpad, Autocross Events: -a. Each run with one or more Violations will Disqualify (DQ) the best run of the team -b. Multiple runs with Violations will DQ multiple runs, ex two runs with Violations DQ the -two best runs -EV.3.5.2 Violations during the Endurance event: -• Each Violation: 60 second penalty D.14.2.1 -EV.3.5.3 Repeated Violations may void Inspection Approval or receive additional penalties up to and -including Disqualification, subject to official discretion. -EV.3.5.4 The respective data of each run in which a team has a Violation and the resulting decision may -be made public. -EV.4 COMPONENTS -EV.4.1 Motors -EV.4.1.1 Only electrical motors are allowed. The number of motors is not limited. -EV.4.1.2 Motors must meet T.5.3 -EV.4.1.3 If Motors are mounted to the suspension uprights, their cables and wiring must: -a. Include an Interlock EV.7.8 -This Interlock(s) must Open the Shutdown Circuit EV.7.2.2 before failure of the Tractive -System wiring when the wiring is damaged or the Wheel/Motor assembly is damaged or -knocked off the vehicle. -b. Reduce the length of the portions of wiring and other connections that do not meet -F.11.1.3 to the extent possible - -Formula SAE® Rules 2025 © 2024 SAE International Page 92 of 143 -Version 1.0 31 Aug 2024 -EV.4.2 Motor Controller -The Tractive System Motor(s) must be connected to the Accumulator through a Motor -Controller. No direct connections between Motor(s) and Accumulator. -EV.4.3 Accumulator Container -EV.4.3.1 Accumulator Containers must meet F.10 -EV.4.3.2 The Accumulator Container(s) must be removable from the vehicle while still remaining rules -compliant -EV.4.3.3 The Accumulator Container(s) must be completely closed at all times (when mounted to the -vehicle and when removed from the vehicle) without the need to install extra protective -covers -EV.4.3.4 The Accumulator Container(s) may contain Holes or Openings -a. Only the wiring harness, ventilation, cooling and fasteners may pass through holes in the -Accumulator Container(s) -b. Holes and Openings in the Accumulator Container must meet F.10.4 -c. External holes must meet EV.6.1 -EV.4.3.5 Any Accumulators that may vent an explosive gas must have a ventilation system or pressure -relief valve to release the vented gas -EV.4.3.6 Segments sealed in Accumulator Containers must have a path to a pressure relief valve -EV.4.3.7 Pressure relief valves must not have line of sight to the driver, with the Firewall installed or -removed -EV.4.3.8 Each Accumulator Container must be labelled with the: -a. School Name and Vehicle Number -b. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow -background) with: -• Triangle side length of 100 mm minimum -• Visibility from all angles, including when the lid is removed -c. Text “Always Energized” -d. Text “High Voltage” if the voltage meets T.9.1.1 -EV.4.4 Grounded Low Voltage System -EV.4.4.1 The GLV System must be: -a. A Low Voltage system that is Grounded to the Chassis -b. Able to operate with Accumulator removed from the vehicle -EV.4.4.2 The GLV System must include a Master Switch, see EV.7.9.1 -EV.4.4.3 A GLV Measuring Point (GLVMP) must be installed which is: -a. Connected to GLV System Ground -b. Next to the TSMP EV.5.8 -c. 4 mm shrouded banana jack -d. Color: Black -e. Marked “GND” - -Formula SAE® Rules 2025 © 2024 SAE International Page 93 of 143 -Version 1.0 31 Aug 2024 -EV.4.4.4 Low Voltage Batteries must meet T.9.2 -EV.4.5 Accelerator Pedal Position Sensor - APPS -Refer to T.4.2 for specific requirements of the APPS -EV.4.6 Brake System Encoder - BSE -Refer to T.4.3 for specific requirements of the BSE -EV.4.7 APPS / Brake Pedal Plausibility Check -EV.4.7.1 Must monitor for the two conditions: -• The mechanical brakes are engaged EV.4.6, T.3.2.4 -• The APPS signals more than 25% Pedal Travel EV.4.5 -EV.4.7.2 If the two conditions in EV.4.7.1 occur at the same time: -a. Power to the Motor(s) must be immediately and completely shut down -b. The Motor shut down must stay active until the APPS signals less than 5% Pedal Travel, -with or without brake operation -The team must be able to demonstrate these actions at Technical Inspection -EV.4.8 Tractive System Part Positioning -All parts belonging to the Tractive System must meet F.11 -EV.4.9 Housings and Enclosures -EV.4.9.1 Each housing or enclosure containing parts of the Tractive System other than Motor housings, -must be labelled with the: -a. Symbol specified in ISO 7010-W012 (triangle with black lightning bolt on yellow -background) -b. Text “High Voltage” if the voltage meets T.9.1.1 -EV.4.9.2 If the material of the housing containing parts of the Tractive System is electrically conductive, -it must have a low resistance connection to GLV System Ground, see EV.6.7 -EV.4.10 Accumulator Hand Cart -EV.4.10.1 Teams must have a Hand Cart to transport their Accumulator Container(s) -EV.4.10.2 The Hand Cart must be used when the Accumulator Container(s) are transported on the -competition site EV.11.4.2 EV.11.5.1 -EV.4.10.3 The Hand Cart must: -a. Be able to carry the load of the Accumulator Container(s) without tipping over -b. Contain a minimum of two wheels -c. Have a brake that must be: -• Released only using a dead man type switch (where the brake is always on until -released by pushing and holding a handle) or by manually lifting part of the cart off -the ground -• Able to stop the Hand Cart with a fully loaded Accumulator Container -EV.4.10.4 Accumulator Container(s) must be securely attached to the Hand Cart - -Formula SAE® Rules 2025 © 2024 SAE International Page 94 of 143 -Version 1.0 31 Aug 2024 -EV.5 ENERGY STORAGE -EV.5.1 Accumulator -EV.5.1.1 All cells or super capacitors which store the Tractive System energy are built into Accumulator -Segments and must be enclosed in (an) Accumulator Container(s). -EV.5.1.2 Each Accumulator Segment must contain: -• Static voltage of 120 V DC maximum -• Energy of 6 MJ maximum -The contained energy of a stack is calculated by multiplying the maximum stack voltage -with the nominal capacity of the used cell(s) -• Mass of 12 kg maximum -EV.5.1.3 No further energy storage except for reasonably sized intermediate circuit capacitors are -allowed after the Energy Meter EV.3.1 -EV.5.1.4 All Accumulator Segments and/or Accumulator Containers (including spares and replacement -parts) must be identical to the design documented in the ESF and SES -EV.5.2 Electrical Configuration -EV.5.2.1 All Tractive System components must be rated for the maximum Tractive System voltage -EV.5.2.2 If the Accumulator Container is made from an electrically conductive material: -a. The poles of the Accumulator Segment(s) and/or cells must be isolated from the inner -wall of the Accumulator Container with an insulating material that is rated for the -maximum Tractive System voltage. -b. All conductive surfaces on the outside of the Accumulator Container must have a low -resistance connection to the GLV System Ground, see EV.6.7 -c. Any conductive penetrations, such as mounting hardware, must be protected against -puncturing the insulating barrier. -EV.5.2.3 Each Accumulator Segment must be electrically insulated with suitable Nonflammable -Material (F.1.18) (not air) for the two: -a. Between the segments in the container -b. On top of the segment -The intent is to prevent arc flashes caused by inter segment contact or by parts/tools -accidentally falling into the container during maintenance for example. -EV.5.2.4 Soldering electrical connections in the high current path is prohibited -Soldering wires to cells for the voltage monitoring input of the BMS is allowed, these wires are -not part of the high current path. - -Formula SAE® Rules 2025 © 2024 SAE International Page 95 of 143 -Version 1.0 31 Aug 2024 -EV.5.2.5 Each wire used in an Accumulator Container, whether it is part of the GLV or Tractive System, -must be rated to the maximum Tractive System voltage. -EV.5.3 Maintenance Plugs -EV.5.3.1 Maintenance Plugs must allow electrical separation of the Accumulator Segments to meet: -a. The separated Segments meet voltage and energy limits of EV.5.1.2 -b. The separation must affect the two poles of the Segment -EV.5.3.2 Maintenance Plugs must: -a. Require the physical removal or separation of a component. Contactors or switches are -not acceptable Maintenance Plugs -b. Have access after opening the Accumulator Container and not necessary to move or -remove any other components -c. Not be physically possible to make electrical connection in any configuration other than -the design intended configuration -d. Not require tools to install or remove -e. Include a positive locking feature which prevents the plug from unintentionally becoming -loose -f. Be nonconductive on surfaces that do not provide any electrical connection -EV.5.3.3 When the Accumulator Containers are opened or Segments are removed, the Accumulator -Segments must be separated by using the Maintenance Plugs. See EV.11.4.1 -EV.5.4 Isolation Relays - IR -EV.5.4.1 All Accumulator Containers must contain minimum one fuse (EV.6.6) and two or more -Isolation Relays (IR) -EV.5.4.2 The Isolation Relays must: -a. Be a Normally Open type -b. Open the two poles of the Accumulator -EV.5.4.3 When the IRs are open, High Voltage T.9.1.1 must not be external of the Accumulator -Container -EV.5.4.4 The Isolation Relays and any fuses must be separated from the rest of the Accumulator with -an electrically insulated and Nonflammable Material (F.1.18). -EV.5.4.5 A capacitor may be used to hold the IRs closed for up to 250 ms after the Shutdown Circuit -Opens EV.7.2.2 -EV.5.5 Manual Service Disconnect - MSD -A Manual Service Disconnect (MSD) must be included to quickly disconnect one or the two -poles of the Accumulator EV.11.3.2 -EV.5.5.1 The Manual Service Disconnect (MSD) must be: -a. A directly accessible element, fuse or connector that will visually show disconnected -b. More than 350 mm from the ground -c. Easily visible when standing behind the vehicle -d. Operable in 10 seconds or less by an untrained person -e. Operable without removing any bodywork or obstruction or using tools - -Formula SAE® Rules 2025 © 2024 SAE International Page 96 of 143 -Version 1.0 31 Aug 2024 -f. Directly operated. Remote operation through a long handle, rope or wire is not -acceptable. -g. Clearly marked with "MSD" -EV.5.5.2 The Energy Meter must not be used as the Manual Service Disconnect (MSD) -EV.5.5.3 An Interlock EV.7.8 must Open the Shutdown Circuit EV.7.2.2 when the MSD is removed -EV.5.5.4 A dummy connector or similar may be used to restore isolation to meet EV.6.1.2 -EV.5.6 Precharge and Discharge Circuits -EV.5.6.1 The Accumulator must contain a Precharge Circuit. The Precharge Circuit must: -a. Be able to charge the Intermediate Circuit to minimum 90% of the Accumulator voltage -before closing the second IR -b. Be supplied from the Shutdown Circuit EV.7.1 -EV.5.6.2 The Intermediate Circuit must precharge before closing the second IR -a. The end of precharge must be controlled by feedback by monitoring the voltage in the -Intermediate Circuit -EV.5.6.3 The Tractive System must contain a Discharge Circuit. The Discharge Circuit must be: -a. Wired in a way that it is always active when the Shutdown Circuit is open -b. Able to discharge the Intermediate Circuit capacitors if the MSD has been opened -c. Not be fused -d. Designed to handle the maximum Tractive System voltage for minimum 15 seconds -EV.5.6.4 Positive Temperature Coefficient (PTC) devices must not be used to limit current for the -Precharge Circuit or Discharge Circuit -EV.5.6.5 The precharge relay must be a mechanical type relay -EV.5.7 Voltage Indicator -Each Accumulator Container must have a prominent indicator when High Voltage T.9.1.1 is -present at the vehicle side of the IRs -EV.5.7.1 The Voltage Indicator must always function, including when the Accumulator Container is -disconnected or removed -EV.5.7.2 The voltage being present at the connectors must directly control the Voltage Indicator using -hard wired electronics with no software control. -EV.5.7.3 The control signal which closes the IRs must not control the Voltage Indicator -EV.5.7.4 The Voltage Indicator must: -a. Be located where it is clearly visible when connecting/disconnecting the Accumulator -Tractive System connections -b. Be labeled “High Voltage Present” -EV.5.8 Tractive System Measuring Points - TSMP -EV.5.8.1 Two Tractive System Measuring Points (TSMP) must be installed in the vehicle which are: -a. Connected to the positive and negative motor controller/inverter supply lines -b. Next to the Master Switches EV.7.9 -c. Protected by a nonconductive housing that can be opened without tools - -Formula SAE® Rules 2025 © 2024 SAE International Page 97 of 143 -Version 1.0 31 Aug 2024 -d. Protected from being touched with bare hands / fingers once the housing is opened -EV.5.8.2 Two TSMPs must be installed in the Charger EV.8.2 which are: -a. Connected to the positive and negative Charger output lines -b. Available during charging of any Accumulator(s) -EV.5.8.3 The TSMPs must be: -a. 4 mm shrouded banana jacks rated to an appropriate voltage level -b. Color: Red -c. Marked “HV+” and “HV-“ -EV.5.8.4 Each TSMP must be secured with a current limiting resistor. -a. The resistor must be sized for the voltage: -Maximum TS Voltage (Vmax) Resistor Value -Vmax <= 200 V DC 5 kOhm -200 V DC < Vmax <= 400 V DC 10 kOhm -400 V DC < Vmax <= 600 V DC 15 kOhm -b. Resistor continuous power rating must be more than the power dissipated across the -TSMPs if they are shorted together -c. Direct measurement of the value of the resistor must be possible during Electrical -Technical Inspection. -EV.5.8.5 Any TSMP must not contain additional Overcurrent Protection. -EV.5.9 Connectors -Tractive System connectors outside of a housing must contain an Interlock EV.7.8 -EV.5.10 Ready to Move Light -EV.5.10.1 The vehicle must have two Ready to Move Lights: -a. One pointed forward -b. One pointed aft -EV.5.10.2 Each Ready to Move Light must be: -a. A Marker Light that complies with DOT FMVSS 108 -b. Color: Amber -c. Luminous area: minimum 1800 mm -2 -EV.5.10.3 Mounting location of each Ready to Move Light must: -a. Be near the Main Hoop near the highest point of the vehicle -b. Be inside the Rollover Protection Envelope F.1.13 -c. Be no lower than 150 mm from the highest point of the Main Hoop -d. Not allow contact with the driver’s helmet in any circumstances -e. Be visible from a point 1300 mm vertically from ground level, inside a 2000 mm -horizontal radius from the light -Visibility is checked with Bodywork and Aerodynamic Devices in place - -Formula SAE® Rules 2025 © 2024 SAE International Page 98 of 143 -Version 1.0 31 Aug 2024 -EV.5.10.4 The Ready to Move Light must: -a. Be powered by the GLV system -b. Be directly controlled by the voltage present in the Tractive System using hard wired -electronics. EV.6.5.4 Software control is not permitted. -c. Flash with a frequency between 2 Hz and 5 Hz with 50% duty cycle when the voltage -outside the Accumulator Container(s) exceeds T.9.1.1 -d. Not do any other functions -EV.5.11 Tractive System Status Indicator -EV.5.11.1 The vehicle must have a Tractive System Status Indicator -EV.5.11.2 The Tractive System Status Indicator must have two separate Red and Green Status Lights -EV.5.11.3 Each of the Status Lights: -a. Must have a minimum luminous area of 130 mm -2 -b. Must be visible in direct sunlight -c. May have one or more of the same elements -EV.5.11.4 Mounting location of the Tractive System Status Indicator must: -a. Be near the Main Hoop at the highest point of the vehicle -b. Be above the Ready to Move Light -c. Be inside the Rollover Protection Envelope F.1.13 -d. Be no lower than 150 mm from the highest point of the Main Hoop -e. Not allow contact with the driver’s helmet in any circumstances -f. Easily visible to a person near the vehicle -EV.5.11.5 The Tractive System Status Indicator must show when the GLV System is energized: -Condition Green Light Red Light -a. No Faults Always ON OFF -b. Fault in one or the two: -BMS EV.7.3.5 or IMD EV.7.6.5 -OFF -Flash -2 Hz to 5 Hz, 50% duty cycle -EV.6 ELECTRICAL SYSTEM -EV.6.1 Covers -EV.6.1.1 Nonconductive material or covers must prevent inadvertent human contact with any Tractive -System voltage. -Covers must be secure and sufficiently rigid. -Removable Bodywork is not suitable to enclose Tractive System connections. -EV.6.1.2 Contact with any Tractive System connections with a 100 mm long, 6 mm diameter insulated -test probe must not be possible when the Tractive System enclosures are in place. -EV.6.1.3 Tractive System components and Accumulator Containers must be protected from moisture, -rain or puddles. -A rating of IP65 is recommended - -Formula SAE® Rules 2025 © 2024 SAE International Page 99 of 143 -Version 1.0 31 Aug 2024 -EV.6.2 Insulation -EV.6.2.1 Insulation material must: -a. Be appropriate for the expected surrounding temperatures -b. Have a minimum temperature rating of 90°C -EV.6.2.2 Insulating tape or paint may be part of the insulation, but must not be the only insulation. -EV.6.3 Wiring -EV.6.3.1 All wires and terminals and other conductors used in the Tractive System must be sized for the -continuous current they will conduct -EV.6.3.2 All Tractive System wiring must: -a. Be marked with wire gauge, temperature rating and insulation voltage rating. -A serial number or a norm printed on the wire is sufficient if this serial number or norm is -clearly bound to the wire characteristics for example by a data sheet. -b. Have temperature rating more than or equal to 90°C -EV.6.3.3 Tractive System wiring must be: -a. Done to professional standards with sufficient strain relief -b. Protected from loosening due to vibration -c. Protected against damage by rotating and / or moving parts -d. Located out of the way of possible snagging or damage -EV.6.3.4 Any Tractive System wiring that runs outside of electrical enclosures: -a. Must meet one of the two: -• Enclosed in separate orange nonconductive conduit -• Use an orange shielded cable -b. The conduit or shielded cable must be securely anchored at each end to allow it to -withstand a force of 200 N without straining the cable end crimp -c. Any shielded cable must have the shield grounded -EV.6.3.5 Wiring that is not part of the Tractive System must not use orange wiring or conduit. -EV.6.4 Connections -EV.6.4.1 All Tractive System connections must: -a. Be designed to use intentional current paths through conductors designed for electrical -current -b. Not rely on steel bolts to be the primary conductor -c. Not include compressible material such as plastic in the stack-up -EV.6.4.2 If external, uninsulated heat sinks are used, they must be properly grounded to the GLV -System Ground, see EV.6.7 -EV.6.4.3 Bolted electrical connections in the high current path of the Tractive System must include a -positive locking feature to prevent unintentional loosening -Lock washers or thread locking compounds (Loctite®) or adhesives are not acceptable. -Bolts with nylon patches are allowed for blind connections into OEM components. - -Formula SAE® Rules 2025 © 2024 SAE International Page 100 of 143 -Version 1.0 31 Aug 2024 -EV.6.4.4 Information about the electrical connections supporting the high current path must be -available at Electrical Technical Inspection -EV.6.5 Voltage Separation -EV.6.5.1 Separation of Tractive System and GLV System: -a. The entire Tractive System and GLV System must be completely galvanically separated. -b. The border between Tractive System and GLV System is the galvanic isolation between -the two systems. -Some components, such as the Motor Controller, may be part of both systems. -EV.6.5.2 There must be no connection between the Chassis of the vehicle (or any other conductive -surface that might be inadvertently touched by a person), and any part of any Tractive System -circuits. -EV.6.5.3 Tractive System and GLV circuits must maintain separation except as allowed in in EV.7.8.4 -EV.6.5.4 GLV Systems other than the IRs EV.5.4, parts of the Precharge and Discharge Circuits EV.5.6, -HV DC/DC converters, the BMS EV.7.3, the IMD EV.7.6, parts of the Ready to Move Light -EV.5.10 the Energy Meter EV.3.1 and cooling fans must not be inside the Accumulator -Container. -EV.6.5.5 Where Tractive System and GLV are included inside the same enclosure, they must meet one -of the two: -a. Be separated by insulating barriers (in addition to the insulation on the wire) made of -moisture resistant, UL recognized or equivalent insulating materials rated for 90° C or -higher (such as Nomex based electrical insulation) -b. Maintain spacing through air, or over a surface (similar to those defined in UL1741) of: -U < 100 V DC 10 mm -100 V DC < U < 200 V DC 20 mm -U > 200 V DC 30 mm -EV.6.5.6 Spacing must be clearly defined. Components and cables capable of movement must be -positively restrained to maintain spacing. -EV.6.5.7 If Tractive System and GLV are on the same circuit board: -a. They must be on separate, clearly defined and clearly marked areas of the board -b. Required spacing related to the spacing between traces / board areas are as follows: -Voltage Over Surface Thru Air (cut in board) Under Conformal Coating -0-50 V DC 1.6 mm 1.6 mm 1 mm -50-150 V DC 6.4 mm 3.2 mm 2 mm -150-300 V DC 9.5 mm 6.4 mm 3 mm -300-600 V DC 12.7 mm 9.5 mm 4 mm -EV.6.5.8 Teams must be prepared to show spacing on team built equipment -For inaccessible circuitry, spare boards or appropriate photographs must be available for -inspection -EV.6.5.9 All connections to external devices such as laptops from a Tractive System component must -include galvanic isolation - -Formula SAE® Rules 2025 © 2024 SAE International Page 101 of 143 -Version 1.0 31 Aug 2024 -EV.6.6 Overcurrent Protection -EV.6.6.1 All electrical systems (Low Voltage and High Voltage) must have appropriate Overcurrent -Protection/Fusing. -EV.6.6.2 Unless otherwise allowed in the Rules, all Overcurrent Protection devices must: -a. Be rated for the highest voltage in the systems they protect. -Overcurrent Protection devices used for DC must be rated for DC and must carry a DC -rating equal to or more than the system voltage -b. Have a continuous current rating less than or equal to the continuous current rating of -any electrical component that it protects -c. Have an interrupt current rating higher than the theoretical short circuit current of the -system that it protects -EV.6.6.3 Each parallel element of multiple parallel battery cells, capacitors, strings of battery cells, -strings of capacitors, or conductors must have individual Overcurrent Protection. -EV.6.6.4 Any conductors (wires, busbars, etc) conducting the entire pack current must meet one of: -a. Be appropriately sized for the total current that the individual Overcurrent Protection -devices could transmit -b. Contain additional Overcurrent Protection to protect the conductors -EV.6.6.5 Battery packs with Low Voltage or non voltage rated fusible links for cell connections may be -used when all three conditions are met: -• An Overcurrent Protection device rated at less than or equal to one third the sum of the -parallel fusible links and complying with EV.6.6.2.b above is connected in series. -• The BMS can detect an open fusible link and will Open the Shutdown Circuit EV.7.2.2 if a -fault is detected. -• Fusible link current rating is specified in manufacturer’s data or suitable test data is -provided. -EV.6.6.6 If conductor ampacity is reduced below the ampacity of the upstream Overcurrent Protection, -the reduced conductor longer than 150 mm must have additional Overcurrent Protection. -This additional Overcurrent Protection must be: -a. 150 mm or less from the source end of the reduced conductor -b. On the positive and the negative conductors in the Tractive System -c. On the positive conductor in the Grounded Low Voltage System -EV.6.6.7 Cells with internal Overcurrent Protection may be used without external Overcurrent -Protection if suitably rated. -Most cell internal Overcurrent Protection devices are Low Voltage or non voltage rated and -conditions of EV.6.6.5 above will apply. -EV.6.7 Grounding -EV.6.7.1 Grounding is required for: -a. Parts of the vehicle which are 100 mm or less from any Tractive System component -b. (EV only) The Firewall T.1.8.4 -EV.6.7.2 Grounded parts of the vehicle must have a resistance to GLV System Ground less than the -values specified below. - -Formula SAE® Rules 2025 © 2024 SAE International Page 102 of 143 -Version 1.0 31 Aug 2024 -a. Electrically conductive parts 300 mOhms (measured with a current of 1 A) -Examples: parts made of steel, (anodized) aluminum, any other metal parts -b. Parts which may become electrically conductive 5 Ohm -Example: carbon fiber parts -Carbon fiber parts may need special measures such as using copper mesh or similar to -keep the ground resistance below 5 Ohms. -EV.6.7.3 Electrical conductivity of any part may be tested by checking any point which is likely to be -conductive. -Where no convenient conductive point is available, an area of coating may be removed. -EV.7 SHUTDOWN SYSTEM -EV.7.1 Shutdown Circuit -EV.7.1.1 The Shutdown Circuit consists of these components, connected in series: -a. Battery Management System (BMS) EV.7.3 -b. Insulation Monitoring Device (IMD) EV.7.6 -c. Brake System Plausibility Device (BSPD) EV.7.7 -d. Interlocks (as required) EV.7.8 -e. Master Switches (GLVMS, TSMS) EV.7.9 -f. Shutdown Buttons EV.7.10 -g. Brake Over Travel Switch (BOTS) T.3.3 -h. Inertia Switch T.9.4 -EV.7.1.2 The Shutdown Circuit must directly carry the current driving the Isolation Relays (IRs) and the -Precharge Circuit Relay. -EV.7.1.3 The BMS, IMD, and BSPD parts of the Shutdown Circuit must be Normally Open -EV.7.1.4 The BMS, IMD and BSPD must have completely independent circuits to Open the Shutdown -Circuit. -The design of the respective circuits must make sure that a failure cannot result in electrical -power being fed back into the Shutdown Circuit. -EV.7.1.5 The Shutdown Buttons, BOTS, TSMS, GLVMS and Interlocks must directly carry the Shutdown -Circuit current -EV.7.1.6 The team must be able to demonstrate all features and functions of the Shutdown Circuit and -components at Electrical Technical Inspection. - -Formula SAE® Rules 2025 © 2024 SAE International Page 103 of 143 -Version 1.0 31 Aug 2024 -EV.7.2 Shutdown Circuit Operation -EV.7.2.1 The Shutdown Circuit must Open when any of these exist: -a. Operation of, or detection from any of the components listed in EV.7.1.1 -b. Any shutdown of the GLV System -EV.7.2.2 When the Shutdown Circuit Opens: -a. The Tractive System must Shutdown -b. All Accumulator current flow must stop immediately EV.5.4.3 -c. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less -d. The Motor(s) must spin free. Torque must not be applied to the Motor(s) -EV.7.2.3 When the BMS, IMD or BSPD Open the Shutdown Circuit: -a. The Tractive System must stay disabled until manually reset -b. The Tractive System must be reset only by manual action of a person directly at the -vehicle -c. The driver must not be able to reactivate the Tractive System from inside the vehicle -d. Operation of the Shutdown Buttons or TSMS must not let the Shutdown Circuit Close -EV.7.3 Battery Management System - BMS -EV.7.3.1 A Battery Management System must monitor the Accumulator(s) Voltage EV.7.4 and -Temperature EV.7.5 when the: -a. Tractive System is Active EV.11.5 -b. Accumulator is connected to a Charger EV.8.3 -EV.7.3.2 The BMS must have galvanic isolation at each segment to segment boundary, as approved in -the ESF -EV.7.3.3 Cell balancing is not permitted when the Shutdown Circuit is Open ( EV.7.2, EV.8.4 ) -Chas s is -Master Switch -Brake -System -Plausibility -Device -Ba ery -Management -System -TSMP -HV+ -Trac ve System -le -right -Shutdown Bu ons -GLV System -GLV System -Trac ve System -Accumulator -Fuse(s) -IR -Accumulator Container(s) -Trac ve System -cockpit -IR -Precharge -Precharge -Control -GLV -Ba ery -Interlock(s) -GND -GLVMP -HV -TSMP -Iner a -Switch -Brake -System -Plausibility -Device -Insula on -Monitoring -Device -Brake -Over -Travel -Switch -MSD -Interlock -LV -TS -le right -GLV System -Master Switch -GLV System -GLV Fuse -Trac ve -System -Trac ve -System - -Formula SAE® Rules 2025 © 2024 SAE International Page 104 of 143 -Version 1.0 31 Aug 2024 -EV.7.3.4 The BMS must monitor for: -a. Voltage values outside the allowable range EV.7.4.2 -b. Voltage sense Overcurrent Protection device(s) blown or tripped -c. Temperature values outside the allowable range EV.7.5.2 -d. Missing or interrupted voltage or temperature measurements -e. A fault in the BMS -EV.7.3.5 If the BMS detects one or more of the conditions of EV.7.3.4 above, the BMS must: -a. Open the Shutdown Circuit EV.7.2.2 -b. Turn on the BMS Indicator Light and the Tractive System Status Indicator EV.5.11.5 -The two lights must stay on until the BMS is manually reset EV.7.2.3 -EV.7.3.6 The BMS Indicator Light must be: -a. Color: Red -b. Clearly visible to the seated driver in bright sunlight -c. Clearly marked with the lettering “BMS” -EV.7.4 Accumulator Voltage -EV.7.4.1 The BMS must measure the cell voltage of each cell -When single cells are directly connected in parallel, only one voltage measurement is needed -EV.7.4.2 Cell Voltage levels must stay inside the allowed minimum and maximum cell voltage levels -stated in the cell data sheet. Measurement accuracy must be considered. -EV.7.4.3 All voltage sense wires to the BMS must meet one of: -a. Have Overcurrent Protection EV.7.4.4 below -b. Meet requirements for no Overcurrent Protection listed in EV.7.4.5 below -EV.7.4.4 When used, Overcurrent Protection for the BMS voltage sense wires must meet the two: -a. The Overcurrent Protection must occur in the conductor, wire or PCB trace which is -directly connected to the cell tab. -b. The voltage rating of the Overcurrent Protection must be equal to or higher than the -maximum segment voltage -EV.7.4.5 Overcurrent Protection is not required on a voltage sense wire if all three conditions are met: -• BMS is a distributed BMS system (one cell measurement per board) -• Sense wire length is less than 25 mm -• BMS board has Overcurrent Protection -EV.7.5 Accumulator Temperature -EV.7.5.1 The BMS must measure the temperatures of critical points of the Accumulator -EV.7.5.2 Temperatures (considering measurement accuracy) must stay below the lower of the two: -• The maximum cell temperature limit stated in the cell data sheet -• 60°C -EV.7.5.3 Cell temperatures must be measured at the negative terminal of the respective cell - -Formula SAE® Rules 2025 © 2024 SAE International Page 105 of 143 -Version 1.0 31 Aug 2024 -EV.7.5.4 The temperature sensor used must be in direct contact with one of: -• The negative terminal itself -• The negative terminal busbar less than 10 mm away from the spot weld or clamping -source on the negative cell terminal -EV.7.5.5 For lithium based cells, -a. The temperature of a minimum of 20% of the cells must be monitored by the BMS -b. The monitored cells must be equally distributed inside the Accumulator Container(s) -The temperature of each cell should be monitored -EV.7.5.6 Multiple cells may be monitored with one temperature sensor, if EV.7.5 is met for all cells -sensed by the sensor. -EV.7.5.7 Temperature sensors must have appropriate electrical isolation that meets one of the two: -• Between the sensor and cell -• In the sensing circuit -The isolation must consider GLV/TS isolation as well as common mode voltages between -sense locations. -EV.7.6 Insulation Monitoring Device - IMD -EV.7.6.1 The vehicle must have an Insulation Monitoring Device (IMD) installed in the Tractive System -EV.7.6.2 The IMD must be a Bender ISOMETER® IR155-3203 or IR155-3204 (website) or an approved -alternate equivalent IMD -Refer to the Rules FAQ on the FSAE Online website for approved equivalent IMD -EV.7.6.3 The response value of the IMD must be set to 500 Ohm / Volt or higher, related to the -maximum Tractive System operation voltage. -EV.7.6.4 The IMD must monitor the Tractive System for: -a. An isolation failure -b. A failure in the IMD operation -This must be done without the influence of any programmable logic. -EV.7.6.5 If the IMD detects one or more of the conditions of EV.7.6.4 above the IMD must: -a. Open the Shutdown Circuit EV.7.2.2 -b. Turn on the IMD Indicator Light and the Tractive System Status Indicator EV.5.11.5 -The two lights must stay on until the IMD is manually reset EV.7.2.3 -EV.7.6.6 The IMD Indicator Light must be: -a. Color: Red -b. Clearly visible to the seated driver in bright sunlight -c. Clearly marked with the lettering “IMD” -EV.7.7 Brake System Plausibility Device - BSPD -EV.7.7.1 The vehicle must have a standalone nonprogrammable circuit to check for simultaneous -braking and high power output -The BSPD must be provided in addition to the APPS / Brake Pedal Plausibility Check (EV.4.7) -EV.7.7.2 The BSPD must Open the Shutdown Circuit EV.7.2.2 when the two of these exist: - -Formula SAE® Rules 2025 © 2024 SAE International Page 106 of 143 -Version 1.0 31 Aug 2024 -• Demand for Hard Braking EV.4.6 -• Motor/Accumulator current is at a level where 5 kW of electrical power in the DC circuit -is delivered to the Motor(s) at the nominal battery voltage -The BSPD may delay opening the shutdown circuit up to 0.5 sec to prevent false trips -EV.7.7.3 The BSPD must Open the Shutdown Circuit EV.7.2.2 when there is an open or short circuit in -any sensor input -EV.7.7.4 The team must have a test to demonstrate BSPD operation at Electrical Technical Inspection. -a. Power must not be sent to the Motor(s) of the vehicle during the test -b. The test must prove the function of the complete BSPD in the vehicle, including the -current sensor -The suggested test would introduce a current by a separate wire from an external power -supply simulating the Tractive System current while pressing the brake pedal -EV.7.8 Interlocks -EV.7.8.1 Interlocks must be incorporated where specified (refer to EV.4.1.3, EV.5.5.2, EV.5.9 ) -EV.7.8.2 Additional Interlocks may be included in the Tractive System or components -EV.7.8.3 The Interlock is a wire or connection that must: -a. Open the Shutdown Circuit EV.7.2.2 if the Interlock connection is broken or interrupted -b. Not be in the low (ground) connection to the IR coils of the Shutdown Circuit -EV.7.8.4 Interlock circuits or connections do not require physical separation (EV.6.5) from Tractive -System wiring or components when the Interlock circuit is: -a. In the same wiring harness as Tractive System wiring -b. Part of a Tractive System Connector EV.5.9 -c. Inside the Accumulator Container or Tractive System Enclosure less than 75 mm from the -connection to a Tractive System connector -EV.7.9 Master Switches -EV.7.9.1 Each vehicle must have two Master Switches that must: -a. Meet T.9.3 for Configuration and Location -b. Be direct acting, not act through a relay or logic -EV.7.9.2 The Grounded Low Voltage Master Switch (GLVMS) must: -a. Completely stop all power to the GLV System EV.4.4 -b. Be in the center of a completely red circular area of > 50 mm in diameter -c. Be labeled “LV” -EV.7.9.3 The Tractive System Master Switch (TSMS) must: -a. Open the Shutdown Circuit in the OFF position EV.7.2.2 -b. Be the last switch before the IRs except for Precharge circuitry and Interlocks. -c. Be in the center of a completely orange circular area of > 50 mm in diameter -d. Be labeled “TS” and the symbol specified in ISO 7010-W012 (triangle with black -lightning bolt on yellow background). -e. Be fitted with a "lockout/tagout" capability in the OFF position EV.11.3.1 - -Formula SAE® Rules 2025 © 2024 SAE International Page 107 of 143 -Version 1.0 31 Aug 2024 -EV.7.10 Shutdown Buttons -EV.7.10.1 Three Shutdown Buttons must be installed on the vehicle -EV.7.10.2 Each Shutdown Button must: -a. Be a push-pull or push-rotate emergency stop switch -b. Open the Shutdown Circuit EV.7.2.2 when operated to the OFF position -c. Hold when operated to the OFF position -d. Let the Shutdown Circuit Close when operated to the ON position -EV.7.10.3 One Shutdown Button must be on each side of the vehicle which: -a. Is located aft of the Main Hoop near the junction of the Main Hoop and Main Hoop -Bracing F.5.9 -b. Has a diameter of 40 mm minimum -c. Must not be easily removable or mounted onto removable body work -EV.7.10.4 One Shutdown Button must be mounted in the cockpit which: -a. Is located in easy reach of the belted in driver, adjacent to the steering wheel, and -unobstructed by the steering wheel or any other part of the vehicle -b. Has diameter of 24 mm minimum -EV.7.10.5 The international electrical symbol (a red spark on a white edged blue triangle) must be near -each Shutdown Button. -EV.8 CHARGER REQUIREMENTS -EV.8.1 Charger Requirements -EV.8.1.1 All features and functions of the Charger and Charging Shutdown Circuit must be -demonstrated at Electrical Technical Inspection. IN.4.1 -EV.8.1.2 Chargers will be sealed after approval. IN.4.7.1 -EV.8.2 Charger Features -EV.8.2.1 The Charger must be galvanically isolated (AC) input to (DC) output. -EV.8.2.2 If the Charger housing is conductive it must be connected to the earth ground of the AC input. -EV.8.2.3 All connections of the Charger(s) must be isolated and covered. -EV.8.2.4 The Charger connector(s) must incorporate a feature to let the connector become live only -when correctly connected to the Accumulator. -EV.8.2.5 High Voltage charging leads must be orange -EV.8.2.6 The Charger must have two TSMPs installed, see EV.5.8.2 -EV.8.2.7 The Charger must include a Charger Shutdown Button which must: -a. Be a push-pull or push-rotate emergency stop switch -b. Have a minimum diameter of 25 mm -c. Open the Charging Shutdown Circuit EV.8.4.2 when operated to the OFF position -d. Hold when operated to the OFF position -e. Be labelled with the international electrical symbol (a red spark on a white edged blue -triangle) - -Formula SAE® Rules 2025 © 2024 SAE International Page 108 of 143 -Version 1.0 31 Aug 2024 -EV.8.3 Charging Shutdown Circuit -EV.8.3.1 The Charging Shutdown Circuit consists of: -a. Charger Shutdown Button EV.8.2.7 -b. Battery Management System (BMS) EV.7.3 -c. Insulation Monitoring Device (IMD) EV.7.6 -EV.8.3.2 The BMS and IMD parts of the Charging Shutdown Circuit must: -a. Be designed as Normally Open contacts -b. Have completely independent circuits to Open the Charging Shutdown Circuit. -Design of the respective circuits must make sure that a failure cannot result in electrical -power being fed back into the Charging Shutdown Circuit. -EV.8.4 Charging Shutdown Circuit Operation -EV.8.4.1 When Charging, the BMS and IMD must: -a. Monitor the Accumulator -b. Open the Charging Shutdown Circuit if a fault is detected -EV.8.4.2 When the Charging Shutdown Circuit Opens: -a. All current flow to the Accumulator must stop immediately -b. The voltage in the Tractive System must be Low Voltage T.9.1.2 in five seconds or less -c. The Charger must be turned off -d. The Charger must stay disabled until manually reset -EV.9 VEHICLE OPERATIONS -EV.9.1 Activation Requirement -The driver must complete the Activation Sequence without external assistance after the -Master Switches EV.7.9 are ON -EV.9.2 Activation Sequence -The vehicle systems must energize in this sequence: -a. Low Voltage (GLV) System EV.9.3 -b. Tractive System Active EV.9.4 -c. Ready to Drive EV.9.5 -EV.9.3 Low Voltage (GLV) System -The Shutdown Circuit may be Closed when or after the GLV System is energized -EV.9.4 Tractive System Active -EV.9.4.1 Definition – High Voltage is present outside of the Accumulator Container -EV.9.4.2 Tractive System Active must not be possible until the two: -• GLV System is Energized -• Shutdown Circuit is Closed -EV.9.5 Ready to Drive -EV.9.5.1 Definition – the Motor(s) will respond to the input of the APPS - -Formula SAE® Rules 2025 © 2024 SAE International Page 109 of 143 -Version 1.0 31 Aug 2024 -EV.9.5.2 Ready to Drive must not be possible until the three at the same time: -• Tractive System Active EV.9.4 -• The Brake Pedal is pressed and held to engage the mechanical brakes T.3.2 -• The driver does a manual action to start Ready to Drive -Such as pressing a specific button in the cockpit -EV.9.6 Ready to Drive Sound -EV.9.6.1 The vehicle must make a characteristic sound when it is Ready to Drive -EV.9.6.2 The Ready to Drive Sound must be: -a. Sounded continuously for minimum 1 second and maximum 3 seconds -b. A minimum sound level of 80 dBA, fast weighting IN.4.6 -c. Easily recognizable. No animal voices, song parts or sounds that could be interpreted as -offensive will be accepted -EV.9.6.3 The vehicle must not make other sounds similar to the Ready to Drive Sound. -EV.10 EVENT SITE ACTIVITIES -EV.10.1 Onsite Registration -EV.10.1.1 The Accumulator must be onsite at the time the team registers to be eligible for Accumulator -Technical Inspection and Dynamic Events -EV.10.1.2 Teams who register without the Accumulator: -a. Must not bring their Accumulator onsite for the duration of the competition -b. May participate in Technical Inspection and Static Events -EV.10.2 Accumulator Removal -EV.10.2.1 After the team registers onsite, the Accumulator must remain on the competition site until -the end of the competition, or the team withdraws and leaves the site -EV.10.2.2 Violators will be disqualified from the competition and must leave immediately -EV.11 WORK PRACTICES -EV.11.1 Personnel -EV.11.1.1 The Electrical System Officer (ESO): AD.5.2 -a. Is the only person on the team that may declare the vehicle electrically safe to allow -work on any system -b. Must accompany the vehicle when operated or moved at the competition site -c. Must be immediately available by phone at all times during the event -EV.11.2 Maintenance -EV.11.2.1 All participating team members must wear safety glasses with side shields at any time when: -a. Parts of the Tractive System are exposed while energized -b. Work is done on the Accumulators -EV.11.2.2 Appropriate insulated tools must be used when working on the Accumulator or Tractive -System - -Formula SAE® Rules 2025 © 2024 SAE International Page 110 of 143 -Version 1.0 31 Aug 2024 -EV.11.3 Lockout -EV.11.3.1 The TSMS EV.7.9.3 must be locked in the OFF position when any work is done on the vehicle. -EV.11.3.2 The MSD EV.5.5 must be disconnected when vehicles are: -a. Moved around the competition site -b. Participating in Static Events -EV.11.4 Accumulator -EV.11.4.1 These work activities at competition are allowed only in the designated area and during -Electrical Technical Inspection IN.4 See EV.5.3.3 -a. Opening Accumulator Containers -b. Any work on Accumulators, cells, or Segments -c. Energized electrical work -EV.11.4.2 Accumulator cells and/or Accumulator Segment(s) must be moved at the competition site -inside one of the two: -a. Completely closed Accumulator Container EV.4.3 See EV.4.10.2 -b. Segment/Cell Transport Container EV.11.4.3 -EV.11.4.3 The Segment/Cell Transport Container(s) must be: -a. Electrically insulated -b. Protected from shock hazards and arc flash -EV.11.4.4 Segments/Cells inside the Transport Container must agree with the voltage and energy limits -of EV.5.1.2 -EV.11.5 Charging -EV.11.5.1 Accumulators must be removed from the vehicle inside the Accumulator Container and put on -the Accumulator Container Hand Cart EV.4.10 for Charging -EV.11.5.2 Accumulator Charging must occur only inside the designated area -EV.11.5.3 A team member(s) who has knowledge of the Charging process must stay with the -Accumulator(s) during Charging -EV.11.5.4 Each Accumulator Container(s) must have a label with this data during Charging: -• Team Name -• Electrical System Officer phone number(s) -EV.11.5.5 Additional site specific rules or policies may apply -EV.12 RED CAR CONDITION -EV.12.1 Definition -A vehicle will be a Red Car if any of the following: -a. Actual or possible damage to the vehicle affecting the Tractive System -b. Vehicle fault indication (EV.5.11 or equivalent) -c. Other conditions, at the discretion of the officials -EV.12.2 Actions -a. Isolate the vehicle - -Formula SAE® Rules 2025 © 2024 SAE International Page 111 of 143 -Version 1.0 31 Aug 2024 -b. No contact with the vehicle unless the officials give permission -Contact with the vehicle may require trained personnel with proper Personal Protective -Equipment -c. Call out designated Red Car responders - -Formula SAE® Rules 2025 © 2024 SAE International Page 112 of 143 -Version 1.0 31 Aug 2024 -IN - TECHNICAL INSPECTION -The objective of Technical Inspection is to determine if the vehicle meets the Formula SAE -Rules requirements and restrictions and if, considered as a whole, it satisfies the intent of the -Rules. -IN.1 INSPECTION REQUIREMENTS -IN.1.1 Inspection Required -Each vehicle must pass all applicable parts of Technical Inspection, receive Inspection -Approval IN.13.1 and show the Inspection Sticker IN.13.2 before it may participate in any -Dynamic event. -IN.1.2 Technical Inspection Authority -IN.1.2.1 The exact procedures and instruments used for inspection and testing are entirely at the -discretion of the Chief Technical Inspector(s). -IN.1.2.2 Decisions of the Chief Technical Inspector(s) and the Organizer concerning vehicle compliance -are final. -IN.1.3 Team Responsibility -Teams must make sure that their vehicle, and the required equipment, obeys the Formula SAE -Rules before Technical Inspection. -IN.1.4 Reinspection -Officials may Reinspect any vehicle at any time during the competition IN.15 -IN.2 INSPECTION CONDUCT -IN.2.1 Vehicle Condition -IN.2.1.1 Vehicles must be presented for Technical Inspection in finished condition, fully assembled, -complete and ready to run. -IN.2.1.2 Technical inspectors will not inspect any vehicle presented for inspection in an unfinished -state. -IN.2.2 Measurement -IN.2.2.1 Allowable dimensions are absolute, and do not have any tolerance unless specifically stated -IN.2.2.2 Measurement tools and methods may vary -IN.2.2.3 No allowance is given for measurement accuracy or error -IN.2.3 Visible Access -All items on the Technical Inspection Form must be clearly visible to the technical inspectors -without using instruments such as endoscopes or mirrors. -Methods to provide visible access include but are not limited to removable body panels, access -panels, and other components -IN.2.4 Inspection Items -IN.2.4.1 Technical Inspection will examine all items included on the Technical Inspection Form to make -sure the vehicle and other equipment obeys the Rules. -IN.2.4.2 Technical Inspectors may examine any other items at their discretion - -Formula SAE® Rules 2025 © 2024 SAE International Page 113 of 143 -Version 1.0 31 Aug 2024 -IN.2.5 Correction -If any part of a vehicle does not comply with the rules, or is otherwise a concern, the team -must: -• Correct the problem -• Continue Inspection or have the vehicle Reinspected -IN.2.6 Marked Items -IN.2.6.1 Officials may mark, seal, or designate items or areas which have been inspected to document -the inspection and reduce the chance of tampering -IN.2.6.2 Damaged or lost marks or seals require Reinspection IN.15 -IN.3 INITIAL INSPECTION -Bring these to Initial Inspection: -• Technical Inspection Form -• All Driver Equipment per VE.3 to be used by each driver -• Fire Extinguishers (for paddock and vehicle) VE.2.3 -• Wet Tires V.4.3.2 -IN.4 ELECTRICAL TECHNICAL INSPECTION (EV ONLY) -IN.4.1 Inspection Items -Bring these to Electrical Technical Inspection: -• Charger(s) for the Accumulator(s) EV.8.1 -• Accumulator Container Hand Cart EV.4.10 -• Spare Accumulator(s) (if applicable) EV.5.1.4 -• Electrical Systems Form (ESF) and Component Data Sheets EV.2 -• Copies of any submitted Rules Questions with the received answer GR.7 -These basic tools in good condition: -• Insulated cable shears -• Insulated screw drivers -• Multimeter with protected probe tips -• Insulated tools, if screwed connections are used in the Tractive System -• Face Shield -• HV insulating gloves which are 12 months or less from their test date -• Two HV insulating blankets of minimum 0.83 m² each -• Safety glasses with side shields for all team members that might work on the Tractive -System or Accumulator -IN.4.2 Accumulator Inspection -The Accumulator(s) and associated equipment (Hand Cart, Chargers, etc) may be inspected -during Electrical Technical Inspection, or separately from the rest of Electrical Technical -Inspection. - -Formula SAE® Rules 2025 © 2024 SAE International Page 114 of 143 -Version 1.0 31 Aug 2024 -IN.4.3 Accumulator Access -IN.4.3.1 If the Accumulator Container(s) is not easily accessible during Electrical Tech Inspection, -provide detailed pictures of the internals taken during assembly -IN.4.3.2 Tech inspectors may require access to check any Accumulator(s) for rules compliance -IN.4.4 Insulation Monitoring Device Test -IN.4.4.1 The Insulation Monitoring Device will be tested by connecting a resistor between the Tractive -System Measuring Points (EV.5.8), and several electrically conductive vehicle parts while the -Tractive System is active -IN.4.4.2 The test passes if the IMD shuts down the Tractive System in 30 seconds or less at a fault -resistance of 50% below the response value corresponding to 250 Ohm / Volt -IN.4.5 Insulation Measurement Test -IN.4.5.1 The insulation resistance between the Tractive System and GLV System Ground will be -measured. -IN.4.5.2 The available measurement voltages are 250 V and 500 V. All vehicles with a maximum -nominal operation voltage below 500 V will be measured with the next available voltage level. -All teams with a system voltage of 500 V or more will be measured with 500 V. -IN.4.5.3 To pass the Insulation Measurement Test the measured insulation resistance must be -minimum 500 Ohm/Volt related to the maximum nominal Tractive System operation voltage. -IN.4.6 Ready to Drive Sound -The sound level will be measured with a free field microphone placed free from obstructions -in a radius of 2 m around the vehicle against the criteria in EV.9.6 -IN.4.7 Electrical Inspection Completion -IN.4.7.1 All or portions of the Tractive System, Charger and other components may be sealed IN.2.6 -IN.4.7.2 Additional monitoring to verify conformance to rules may be installed. Refer to the Event -Website for further information. -IN.4.7.3 A separate OK to Energize Inspection Sticker IN.13.2 may be issued to show that the vehicle -may be Tractive System Active EV.9.4 -IN.4.7.4 Electric Vehicles must pass Electrical Technical Inspection and Mechanical Technical Inspection -before the vehicle may attempt any further Inspections. See EV.11.3.2 -IN.5 DRIVER COCKPIT CHECKS -The Clearance Checks and Egress Test may be done separately or in conjunction with other -parts of Technical Inspection -IN.5.1 Driver Clearance -Each driver in the normal driving position is checked for the three: -• Helmet clearance F.5.6.4 -• Head Restraint positioning T.2.8.5 -• Harness fit and adjustment T.2.5, T.2.6, T.2.7 -IN.5.2 Egress Test -IN.5.2.1 Each driver must be able to exit to the side of the vehicle in no more than 5 seconds. - -Formula SAE® Rules 2025 © 2024 SAE International Page 115 of 143 -Version 1.0 31 Aug 2024 -IN.5.2.2 The Egress Test will be conducted for each driver as follows: -a. The driver must wear the specified Driver Equipment VE.3.2, VE.3.3 -b. Egress time begins with the driver in the fully seated position, with hands in driving -position on the connected steering wheel. -c. Egress test may have the driver touch the (IC) Cockpit Main Switch IC.9.4 (EV) Shutdown -Button EV.7.10.4 -d. Egress time will stop when the driver has two feet on the pavement -IN.5.3 Driver Clearance and Egress Test Completion -IN.5.3.1 To drive the vehicle, each team driver must: -a. Meet the Driver Clearance requirements IN.5.1 -b. Successfully complete the Egress Test IN.5.2 -IN.5.3.2 A driver(s) must complete the Driver Cockpit Checks to pass Mechanical Inspection -IN.6 DRIVER TEMPLATE INSPECTIONS -The Driver Template Inspection will be conducted as part of the Mechanical Inspection -IN.6.1 Conduct -The Driver Template shown in F.5.6.5 will be positioned as given in F.5.6.6 -IN.6.2 Driver Template Clearance Criteria -To pass Mechanical Technical Inspection, the Driver Template must meet the clearance -specified in F.5.6.4 -IN.7 COCKPIT TEMPLATE INSPECTIONS -The Cockpit Template Inspections will be conducted as part of the Mechanical Inspection -IN.7.1 Conduct -IN.7.1.1 The Cockpit Opening will be checked using the template and procedure given in T.1.1 -IN.7.1.2 The Internal Cross Section will be checked using the template and procedure given in T.1.2 -IN.7.2 Cockpit Template Criteria -To pass Mechanical Technical Inspection, the two Cockpit Templates must fit as described. -IN.8 MECHANICAL TECHNICAL INSPECTION -IN.8.1 Inspection Items -Bring these to Mechanical Technical Inspection: -• Vehicle on Dry Tires V.4.3.1 -• Technical Inspection Form -• Push Bar VE.2.2 -• Structural Equivalency Spreadsheet (SES) – electronic copy F.2.1 -• Monocoque Laminate Test Specimens (if applicable) F.4.2 -• The Impact Attenuator that was tested (if applicable) F.8.8.7 -• Accumulator Container samples (EV only) (if applicable) F.10.2.1.c, F.10.2.2.c - -Formula SAE® Rules 2025 © 2024 SAE International Page 116 of 143 -Version 1.0 31 Aug 2024 -• Electronic copies of any submitted Rules Questions with the received answer GR.7 -IN.8.2 Aerodynamic Devices Stability and Strength -IN.8.2.1 Any Aerodynamic Devices may be checked by pushing on the device in any direction and at -any point. -This is guidance, but actual conformance will be up to technical inspectors at the respective -competitions. The intent is to reduce the likelihood of wings detaching -IN.8.2.2 If any deflection is significant, then a force of approximately 200 N may be applied. -a. Loaded deflection should not be more than 25 mm -b. Any permanent deflection less than 5 mm -IN.8.2.3 If any vehicle on track is observed to have large, uncontrolled movements of Aerodynamic -Devices, then officials may Black Flag the vehicle for IN.15 Reinspection. -IN.8.3 Monocoque Inspections -IN.8.3.1 Dimensions of the Monocoque will be confirmed F.7.1.4 -IN.8.3.2 When the Front Hoop is integrally bonded or laminated to the monocoque F.7.4.3, provide: -a. Documentation that shows dimensions on the tubes -b. Pictures of the dimensioned tube being included in the layup -IN.8.3.3 For items which cannot be verified by an inspector, the team must provide documentation, -visual and/or written, that the requirements have been met. -IN.8.3.4 A team found to be improperly presenting any evidence of the manufacturing process may be -barred from competing with a monocoque. -IN.8.4 Engine Inspection (IC Only) -The organizer may measure or tear down engines to confirm conformance to the rules. -IN.8.5 Mechanical Inspection Completion -All vehicles must pass Mechanical Technical Inspection before a vehicle may attempt any -further inspections. -IN.9 TILT TEST -IN.9.1 Tilt Test Requirements -a. The vehicle must contain the maximum amount of fluids it may carry -b. The tallest driver must be seated in the normal driving position -c. Tilt tests may be conducted in one, the other, or the two directions to pass -d. (IC only) Engines fitted with mechanically operated fuel pumps must be run to fill and -pressure the system downstream of the High Pressure pump. See IC.6.2 -IN.9.2 Tilt Test Criteria -IN.9.2.1 No fluid leakage of any type when the vehicle is tilted to a 45° angle to the horizontal -IN.9.2.2 Vehicle does not roll when tilted at an angle of 60° to the horizontal, corresponding to 1.7 g. -IN.9.3 Tilt Test Completion -Tilt Tests must be passed before a vehicle may attempt any further inspections - -Formula SAE® Rules 2025 © 2024 SAE International Page 117 of 143 -Version 1.0 31 Aug 2024 -IN.10 NOISE AND SWITCH TEST (IC ONLY) -IN.10.1 Sound Level Measurement -IN.10.1.1 The sound level will be measured during a stationary test, with the vehicle gearbox in neutral -at the defined Test Speed -IN.10.1.2 Measurements will be made with a free field microphone placed: -• free from obstructions -• at the Exhaust Outlet vertical level IC.7.2.2 -• 0.5 m from the end of the Exhaust Outlet IC.7.2.2 -• at an angle of 45° with the outlet in the horizontal plane (see IN.10.2.2 below) -IN.10.2 Special Configurations -IN.10.2.1 Where the Exhaust has more than one Exhaust Outlet: -a. The noise test is repeated for each outlet -b. The highest sound level is used -IN.10.2.2 Exhaust Outlets that are not parallel to the ground may be tested outside of the horizontal -plane. -IN.10.2.3 If the exhaust has any form of active tuning or throttling device or system, the exhaust must -meet all requirements with the device or system in all positions. -IN.10.2.4 When the exhaust has a manually adjustable tuning device(s): -a. The position of the device must be visible to the officials for the noise test -b. The device must be manually operable by the officials during the noise test -c. The device must not be moved or modified after the noise test is passed -IN.10.3 Industrial Engine -An engine which, according to the manufacturers’ specifications and without the required -restrictor, is capable of producing 5 hp per 100 cc or less. -Submit a Rules Question to request approval of an Industrial Engine. -IN.10.4 Test Speeds -IN.10.4.1 Maximum Test Speed -The engine speed that corresponds to an average piston speed of: -a. Automotive / Motorcycle engines 914.4 m/min (3,000 ft/min) -b. Industrial Engines 731.5 m/min (2,400 ft/min) -The calculated speed will be rounded to the nearest 500 rpm. -Test Speeds for typical engines are published on the FSAE Online website -IN.10.4.2 Idle Test Speed -a. Determined by the vehicle’s calibrated idle speed -b. If the idle speed varies then the vehicle will be tested across the range of idle speeds -determined by the team -IN.10.4.3 The vehicle must be compliant at all engine speeds up to the maximum defined Test Speed. - -Formula SAE® Rules 2025 © 2024 SAE International Page 118 of 143 -Version 1.0 31 Aug 2024 -IN.10.5 Maximum Permitted Sound Level -a. At idle 103 dBC, fast weighting -b. At all other speeds 110 dBC, fast weighting -IN.10.6 Noise Level Retesting -IN.10.6.1 Noise levels may be monitored at any time -IN.10.6.2 The Noise Test may be repeated at any time -IN.10.7 Switch Function -The function of one or more of the Primary Master Switch IC.9.3, Cockpit Main Switch IC.9.4, -and/or BOTS T.3.3 will be verified during the Noise Test -IN.10.8 Noise Test Completion -Noise Tests must be passed before a vehicle may attempt any further inspections -IN.11 RAIN TEST (EV ONLY) -IN.11.1 Rain Test Requirements -• Tractive System must be Active -• The vehicle must not be in Ready to Drive mode (EV.7) -• Any driven wheels must not touch the ground -• A driver must not be seated in the vehicle -IN.11.2 Rain Test Conduct -The water spray will be rain like, not a direct high pressure water jet -a. Spray water at the vehicle from any possible direction for 120 seconds -b. Stop the water spray -c. Observe the vehicle for 120 seconds -IN.11.3 Rain Test Completion -The test is passed if the Insulation Monitoring Device (EV.7.6) does not react during the entire -240 seconds duration -IN.12 BRAKE TEST -IN.12.1 Objective -The brake system will be dynamically tested and must demonstrate the capability of locking all -four wheels when stopping the vehicle in a straight line at the end of an acceleration run -specified by the brake inspectors -IN.12.2 Brake Test Conduct (IC Only) -IN.12.2.1 Brake Test procedure: -a. Accelerate to speed (typically getting into 2nd gear) until reaching the designated area -b. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels -IN.12.2.2 The Brake Test passes if: -• All four wheels lock up -• The engine stays running during the complete test - -Formula SAE® Rules 2025 © 2024 SAE International Page 119 of 143 -Version 1.0 31 Aug 2024 -IN.12.3 Brake Test Conduct (EV Only) -IN.12.3.1 Brake Test procedure: -a. Accelerate to speed until reaching the designated area -b. Switch off the Tractive System EV.7.10.4 -c. Apply the brakes with force sufficient to demonstrate full lockup of all four wheels -IN.12.3.2 The Brake Test passes if all four wheels lock while the Tractive System is shut down -IN.12.3.3 The Tractive System Active Light may switch a short time after the vehicle has come to a -complete stop as the reduction of the system voltage is not immediate. See EV.7.2.2.c -IN.13 INSPECTION APPROVAL -IN.13.1 Inspection Approval -IN.13.1.1 When all parts of Technical Inspection are complete as shown on the Technical Inspection -sheet, the vehicle receives Inspection Approval -IN.13.1.2 The completed Inspection Sticker shows the Inspection Approval -IN.13.1.3 The Inspection Approval is contingent on the vehicle remaining in the required condition -throughout the competition. -IN.13.1.4 The Organizer, Chief Technical Inspector, or a designee may void Inspection Approval at any -time for any reason -IN.13.2 Inspection Sticker -IN.13.2.1 Inspection Sticker(s) are issued after completion of all or part of Technical Inspection -IN.13.2.2 Inspection Sticker(s) must show in the location given in VE.1.4 unless told differently -IN.13.3 Inspection Validity -IN.13.3.1 Inspection Stickers may be removed from vehicles that are not in compliance with the Rules or -are required to be Reinspected. -IN.13.3.2 Inspection Approval is valid only for the duration of the specific Formula SAE competition -during which the inspection is conducted. -IN.14 MODIFICATIONS AND REPAIRS -IN.14.1 Prior to Inspection Approval -Once the vehicle has been presented for judging in the Cost or Design Events, or submitted for -Technical Inspection, and until the vehicle has the full Inspection Approval, the only -modifications permitted to the vehicle are those directed by the Inspector(s) and noted on the -Inspection Form. -IN.14.2 After Inspection Approval -IN.14.2.1 The vehicle must maintain all required specifications (including but not limited to ride height, -suspension travel, braking capacity (pad material/composition), sound level and wing location) -throughout the competition. -IN.14.2.2 Changes to fit the vehicle to different drivers are allowed. Permitted changes are: -• Adjustment of the driver restraint system, Head Restraint, seat and pedal assembly -• Substitution of the Head Restraint or seat insert -• Adjustment of mirrors - -Formula SAE® Rules 2025 © 2024 SAE International Page 120 of 143 -Version 1.0 31 Aug 2024 -IN.14.2.3 Once the vehicle receives Inspection Approval, the ONLY modifications permitted to the -vehicle are: -• Adjustment of belts, chains and clutches -• Adjustment of brake bias -• Adjustment to engine / powertrain operating parameters, including fuel mixture and -ignition timing, and any software calibration changes -• Adjustment of the suspension -• Changing springs, sway bars and shims in the suspension -• Adjustment of Tire Pressure, subject to V.4.3.4 -• Adjustment of wing or wing element(s) angle, but not the location T.7.1 -• Replenishment of fluids -• Replacement of worn tires or brake pads. Replacement tires and brake pads must be -identical in material/composition/size to those presented and approved at Technical -Inspection. -• Changing of wheels and tires for weather conditions D.6 -• Recharging Low Voltage batteries -• Recharging High Voltage Accumulators -IN.14.3 Repairs or Changes After Inspection Approval -The Inspection Approval may be voided for any reason including, but not limited to: -a. Damage to the vehicle IN.13.1.3 -b. Changes beyond those allowed per IN.14.2 above -IN.15 REINSPECTION -IN.15.1 Requirement -IN.15.1.1 Any vehicle may be Reinspected at any time for any reason -IN.15.1.2 Reinspection must be completed to restore Inspection Approval, if voided -IN.15.2 Conduct -IN.15.2.1 The Technical Inspection process may be repeated in entirety or in part -IN.15.2.2 Specific areas or items to be inspected are at the discretion of the Chief Technical Inspector -IN.15.3 Result -IN.15.3.1 With Voided Inspection Approval -Successful completion of Reinspection will restore Inspection Approval IN.13.1 -IN.15.3.2 During Dynamic Events -a. Issues found during Reinspection will void Inspection Approval -b. Penalties may be applied to the Dynamic Events the vehicle has competed in -Applied penalties may include additional time added to event(s), loss of one or more -fastest runs, up to DQ, subject to official discretion. - -Formula SAE® Rules 2025 © 2024 SAE International Page 121 of 143 -Version 1.0 31 Aug 2024 -S - STATIC EVENTS -S.1 GENERAL STATIC -Presentation 75 points -Cost 100 points -Design 150 points -Total 325 points -S.2 PRESENTATION EVENT -S.2.1 Presentation Event Objective -The Presentation Event evaluates the team’s ability to develop and deliver a comprehensive -business, logistical, production, or technical case that will convince outside interests to invest -in the team’s concept. -S.2.2 Presentation Concept -S.2.2.1 The concept for the Presentation Event will be provided on the FSAE Online website. -S.2.2.2 The concept for the Presentation Event may change for each competition -S.2.2.3 The team presentation must meet the concept -S.2.2.4 The team presentation must relate specifically to the vehicle as entered in the competition -S.2.2.5 Teams should assume that the judges represent different areas, including engineering, -production, marketing and finance, and may not all be engineers. -S.2.2.6 The presentation may be given in different settings, such as a conference room, a group -meeting, virtually, or in conjunction with other Static Events. -Specific details will be included in the Presentation Concept or communicated separately. -S.2.3 Presentation Schedule -Teams that fail to make their presentation during their assigned time period get zero points -for the Presentation Event. -S.2.4 Presentation Submissions -S.2.4.1 The Presentation Concept may require information to be submitted prior to the event. -Specific details will be included in the Presentation Concept. -S.2.4.2 Submissions may be graded as part of the Presentation Event score. -S.2.4.3 Pre event submissions will be subject to penalties imposed as given in section DR - Document -Requirements or the Presentation Concept -S.2.5 Presentation Format -S.2.5.1 One or more team members will give the presentation to the judges. -S.2.5.2 All team members who will give any part of the presentation, or who will respond to judges’ -questions must be: -• In the presentation area when the presentation starts -• Introduced and identified to the judges -S.2.5.3 Presentations will be time limited. The judges will stop any presentation exceeding the time -limit. - -Formula SAE® Rules 2025 © 2024 SAE International Page 122 of 143 -Version 1.0 31 Aug 2024 -S.2.5.4 The presentation itself will not be interrupted by questions. Immediately after the -presentation there may be a question and answer session. -S.2.5.5 Only judges may ask questions. Only team members who meet S.2.5.2 may answer questions. -S.2.6 Presentation Equipment -Refer to the Presentation Concept for additional information -S.2.7 Evaluation Criteria -S.2.7.1 Presentations will be evaluated on content, organization, visual aids, delivery and the team’s -response to the judges questions. -S.2.7.2 The actual quality of the prototype itself will not be considered as part of the presentation -judging -S.2.7.3 Presentation Judging Score Sheet – available at the FSAE Online website -S.2.8 Judging Sequence -Presentation judging may be conducted in one or more phases. -S.2.9 Presentation Event Scoring -S.2.9.1 The Presentation raw score is based on the average of the scores of each judge. -S.2.9.2 Presentation Event scores may range from 0 to 75 points, using a method at the discretion of -the judges -S.2.9.3 Presentation Event scoring may include normalizing the scores of different judging teams and -scaling the overall results. -S.3 COST AND MANUFACTURING EVENT -S.3.1 Cost Event Objective -The Cost and Manufacturing Event evaluates the ability of the team to consider budget and -incorporate production considerations for production and efficiency. -Making tradeoff decisions between content and cost based on the performance of each part -and assembly and accounting for each part and process to meet a budget is part of Project -Management. -S.3.2 Cost Event Supplement -a. Additional specific information on the Cost and Manufacturing Event, including -explanation and requirements, is provided in the Formula SAE Cost Event Supplement -document. -b. Use the Formula SAE Cost Event Supplement to properly complete the requirements of -the Cost and Manufacturing Event. -c. The Formula SAE Cost Event Supplement is available on the FSAE Online website -S.3.3 Cost Event Areas -S.3.3.1 Cost Report -Preparation and submission of a report (the “Cost Report”) -S.3.3.2 Event Day Discussion -Discussion at the Competition with the Cost Judges around the team’s vehicle. - -Formula SAE® Rules 2025 © 2024 SAE International Page 123 of 143 -Version 1.0 31 Aug 2024 -S.3.3.3 Cost Scenario -Teams will respond to a challenge related to cost or manufacturing of the vehicle. -S.3.4 Cost Report -S.3.4.1 The Cost Report must: -a. List and cost each part on the vehicle using the standardized Cost Tables -b. Base the cost on the actual manufacturing technique used on the prototype -Cast parts on the prototype must be cost as cast, and fabricated parts as fabricated, etc. -c. Include Tooling Cost (welding jigs, molds, patterns and dies) for processes requiring it. -d. Exclude R & D and capital expenditures (plant, machinery, hand tools and power tools). -e. Include supporting documentation to allow officials to verify part costing -S.3.4.2 Generate and submit the Cost Report using the FSAE Online website, see DR - Document -Requirements -S.3.5 Bill of Materials - BOM -S.3.5.1 The BOM is a list of all vehicle parts, showing the relationships between the items. -a. The overall vehicle is broken down into separate Systems -b. Systems are made up of Assemblies -c. Assemblies are made up of Parts -d. Parts consist of Materials, Processes and Fasteners -e. Tooling is associated with each Process that requires production tooling -S.3.6 Late Submission -Penalties for Late Submission of Cost Report will be imposed as given in section DR - -Document Requirements. -S.3.7 Cost Addendum -S.3.7.1 A supplement to the Cost Report that reflects any changes or corrections made after the -submission of the Cost Report may be submitted. -S.3.7.2 The Cost Addendum must be submitted during Onsite Registration at the Event. -S.3.7.3 The Cost Addendum must follow the format as given in section DR - Document Requirements -S.3.7.4 Addenda apply only to the competition at which they are submitted. -S.3.7.5 A separate Cost Addendum may be submitted at each competition a vehicle attends. -S.3.7.6 Changes to the Cost Report in the Cost Addendum will incur additional cost: -a. Added items will be cost at 125% of the table cost: + (1.25 x Cost) -b. Removed items will be credited 75% of the table cost: - (0.75 x Cost) -S.3.8 Cost Tables -S.3.8.1 All costs in the Cost Report must come from the standardized Cost Tables. -S.3.8.2 If a team wishes to use any Parts, Processes or Materials not included in the tables, an Add -Item Request must be submitted. See S.3.10 - -Formula SAE® Rules 2025 © 2024 SAE International Page 124 of 143 -Version 1.0 31 Aug 2024 -S.3.9 Make versus Buy -S.3.9.1 Each part may be classified as Made or Bought -Refer to the Formula SAE Cost Event Supplement for additional information -S.3.9.2 If a team genuinely Makes a part listed on the table as a Bought part, they may alternatively -cost it as a Made part only if a place holder entry is listed in the tables enabling them to do so. -S.3.9.3 Any part which is normally purchased that is optionally shown as a Made part must have -supporting documentation submitted to prove team manufacture. -S.3.9.4 Teams costing Bought parts as Made parts will be penalized. -S.3.10 Add Item Request -S.3.10.1 An Add Item Request must be submitted on the FSAE Online Website to add items to the Cost -Tables for individual team requirements. -S.3.10.2 After review, the item may be added to the Cost Table with an appropriate cost. It will then -be available to all teams. -S.3.11 Public Cost Reports -S.3.11.1 The competition organizers may publish all or part of the submitted Cost Reports. -S.3.11.2 Cost Reports for a given competition season will not be published before the end of the -calendar year. Support materials, such as technical drawings, will not be released. -S.3.12 Cost Report Penalties Process -S.3.12.1 This procedure will be used in determining penalties: -a. Penalty A will be calculated using procedure Penalty Method A - Fixed Point Deductions -b. Penalty B will be calculated using procedure Penalty Method B – Adjusted Cost -Additions -c. The higher of the two penalties will be applied against the Cost Event score -• Penalty A expressed in points will be deducted from the Cost Event score -• Penalty B expressed in dollars will be added to the Adjusted Cost of the vehicle -S.3.12.2 Any error that results in a team over reporting a cost in their Cost Report will not be further -penalized. -S.3.12.3 Any instance where a team’s score benefits by an intentional or unintentional error on the -part of the students will be corrected on a case by case basis. -S.3.12.4 Penalty Method A - Fixed Point Deductions -a. From the Bill of Material, the Cost Judges will determine if all Parts and Processes have -been included in the analysis. -b. In the case of any omission or error a penalty proportional to the BOM level of the error -will be imposed: -• Missing/inaccurate Material, Process, Fastener 1 point -• Missing/inaccurate Part 3 point -• Missing/inaccurate Assembly 5 point -c. Each of the penalties listed above supersedes the previous penalty. -Example - if a point deduction is given for a missing Assembly, the missing Parts are ignored. - -Formula SAE® Rules 2025 © 2024 SAE International Page 125 of 143 -Version 1.0 31 Aug 2024 -d. Differences other than those listed above will be deducted at the discretion of the Cost -Judges. -S.3.12.5 Penalty Method B – Adjusted Cost Additions -a. The table cost for the missing or incomplete items will be calculated from the standard -Cost Tables. -b. The penalty will be a value equal to twice the difference between the team cost and the -correct cost for all items in error. -Penalty = 2 x (Table Cost – Team Reported Cost) -The table costs of all items in error are included in the calculation. A missing Assembly would -include the price of all Parts, Materials, Processes and Fasteners making up the Assembly. -S.3.13 Event Day and Discussion -S.3.13.1 The team must present their vehicle at the designated time -S.3.13.2 The vehicle must have the tires and wheels declared as Dry Tires per V.4.3.1 installed during -Cost Event judging -S.3.13.3 Teams may be required to bring a copy of the Cost Report and Cost Addendum to Cost Judging -S.3.13.4 The Cost Judges will: -a. Review whether the Cost Report accurately reflects the vehicle as presented -b. Review the manufacturing feasibility of the vehicle -c. Assess supporting documentation based on its quality, accuracy and thoroughness -d. Apply penalties for missing or incorrect information in the Cost Report compared to the -vehicle presented at inspection -S.3.14 Cost Audit -S.3.14.1 Teams may be selected for additional review to verify all processes and materials on their -vehicle are in the Cost Report -S.3.14.2 Adjustments from the Cost Audit will be included in the final scores -S.3.15 Cost Scenario -The Cost Scenario will be provided prior to the competition on the FSAE Online website -The Cost Scenario will include detailed information about the conduct, scope, and conditions -of the Cost Scenario -S.3.16 Cost Event Scoring -S.3.16.1 Cost Event scoring will be provided on the FSAE Online website or with the Cost Scenario -S.3.16.2 The Cost Event is worth 100 points -S.3.16.3 Cost Event Scores may be awarded in areas including, but not limited to: -• Price Score -• Discussion Score -• Scenario Score -S.3.16.4 Penalty points may be subtracted from the Cost Score, with no limit. -S.3.16.5 Cost Event scoring may include normalizing the scores of different judging teams and scaling -the results. - -Formula SAE® Rules 2025 © 2024 SAE International Page 126 of 143 -Version 1.0 31 Aug 2024 -S.4 DESIGN EVENT -S.4.1 Design Event Objective -S.4.1.1 The Design Event evaluates the engineering effort that went into the vehicle and how the -engineering meets the intent of the market in terms of vehicle performance and overall value. -S.4.1.2 The team and vehicle that illustrate the best use of engineering to meet the design goals, a -cost effective high performance vehicle, and the best understanding of the design by the team -members will win the Design Event. -S.4.1.3 Components and systems that are incorporated into the design as finished items are not -evaluated as a student designed unit, but are assessed on the team’s selection and application -of that unit. -S.4.2 Design Documents -S.4.2.1 Teams must submit the Design Briefing, Design Spec Sheet and Vehicle Drawings -S.4.2.2 These Design Documents will be used for: -• Design Judge reviews prior to the Design Event -• Sorting teams into appropriate design groups based on the quality of their review. -S.4.2.3 Penalties for Late Submission of all or any one of the Design Documents will be imposed as -given in section DR - Document Requirements -S.4.2.4 Teams that submit one or more Design Documents which do not represent a serious effort to -comply with the requirements may be excluded from the Design Event or be awarded a lower -score. -S.4.3 Design Briefing -S.4.3.1 The Design Briefing must use the template from the FSAE Online website. -S.4.3.2 Refer to the Design Briefing template for: -a. Specific content requirements, areas and details -b. Maximum slides that may be used per topic -S.4.3.3 Submit the Design Briefing as given in section DR - Document Requirements -S.4.4 Vehicle Drawings -S.4.4.1 The Vehicle Drawings must meet: -a. Three view line drawings showing the vehicle, from the front, top, and side -b. Each drawing must appear on a separate page -c. May be manually or computer generated -S.4.4.2 Submit the Vehicle Drawings as given in section DR - Document Requirements -S.4.5 Design Spec Sheet -Use the format provided and submit the Design Spec Sheet as given in section DR - Document -Requirements -The Design Judges realize that final design refinements and vehicle development may cause -the submitted values to differ from those of the completed vehicle. For specifications that are -subject to tuning, an anticipated range of values may be appropriate. - -Formula SAE® Rules 2025 © 2024 SAE International Page 127 of 143 -Version 1.0 31 Aug 2024 -S.4.6 Vehicle Condition -S.4.6.1 Inspection Approval IN.13.1.1 is not required prior to Design judging. -S.4.6.2 Vehicles must be presented for Design judging in finished condition, fully assembled, complete -and ready to run. -a. The judges will not evaluate any vehicle that is presented at the Design event in what -they consider to be an unfinished state. -b. Point penalties may be assessed for vehicles with obvious preparation issues -S.4.7 Support Material -S.4.7.1 Teams may bring to Design Judging any photographs, drawings, plans, charts, example -components or other materials that they believe are needed to support the presentation of -the vehicle and the discussion of their development process. -S.4.7.2 The available space in the Design Event judging area may be limited. -S.4.8 Judging Sequence -Design judging may be conducted in one or more phases. -Typical Design judging includes a first round review of all teams, then additional review of -selected teams. -S.4.9 Judging Criteria -S.4.9.1 The Design Judges will: -a. Evaluate the engineering effort based upon the team’s Design Documents, discussion -with the team, and an inspection of the vehicle -b. Inspect the vehicle to determine if the design concepts are adequate and appropriate for -the application (relative to the objectives stated in the rules). -c. Deduct points if the team cannot adequately explain the engineering and construction of -the vehicle -S.4.9.2 The Design Judges may assign a portion of the Design Event points to the Design Documents -S.4.9.3 Design Judging Score Sheets are available at the FSAE Online website. -S.4.10 Design Event Scoring -S.4.10.1 Scoring may range from 0 to 150 points, at the discretion of the Chief Design Judge -S.4.10.2 Penalty points may be subtracted from the Design score -S.4.10.3 Vehicles that are excluded from Design judging or refused judging get zero points for Design, -and may receive penalty points. - -Formula SAE® Rules 2025 © 2024 SAE International Page 128 of 143 -Version 1.0 31 Aug 2024 -D - DYNAMIC EVENTS -D.1 GENERAL DYNAMIC -D.1.1 Dynamic Events and Maximum Scores -Acceleration 100 points -Skid Pad 75 points -Autocross 125 points -Efficiency 100 points -Endurance 275 points -Total 675 points -D.1.2 Definitions -D.1.2.1 Dynamic Area – Any designated portion(s) of the competition site where the vehicles may -move under their own power. This includes competition, inspection and practice areas. -D.1.2.2 Staging Area – Any area(s) inside the Dynamic Area prior to the entry to an event for the -purpose of gathering those vehicles that are about to start. -D.2 PIT AND PADDOCK -D.2.1 Vehicle Movement -D.2.1.1 Outside of the Dynamic Area(s), vehicles must be pushed at a normal walking pace using the -Push Bar (VE.2.2), with a driver in the cockpit and with another team member walking beside -D.2.1.2 The team may move the vehicle with -a. All four wheels on the ground -b. The rear wheels supported on dollies, by push bar mounted wheels -The external wheels supporting the rear of the vehicle must be non pivoting so the -vehicle travels only where the front wheels are steered. The driver must always be able -to steer and brake the vehicle normally. -D.2.1.3 When the Push Bar is attached, the engine must stay off, unless authorized by the officials -D.2.1.4 Vehicles must be Shutdown when being moved around the paddock -D.2.1.5 Vehicles with wings must have two team members, one walking on each side of the vehicle -when the vehicle is being pushed -D.2.1.6 A 25 point penalty may be assessed for each violation -D.2.2 Fueling and Charging -(IC only) Officials must conduct all fueling activities in the designated location. -(EV only) Accumulator charging must be done in the designated location EV.11.5 -D.2.3 Powertrain Operation -In the paddock, (IC) Engines may be run or (EV) Tractive System may be Active if all three: -a. (IC Only) The vehicle has passed Technical Inspection up to and including the Tilt Test OR -a Technical Inspector gives permission -(EV only) The vehicle shows the OK to Energize sticker IN.4.7.3 -b. The vehicle is supported on a stand - -Formula SAE® Rules 2025 © 2024 SAE International Page 129 of 143 -Version 1.0 31 Aug 2024 -c. The drive wheels are minimum 10 cm off the ground, OR the drive wheels are removed -D.3 DRIVING -D.3.1 Drivers Meetings – Attendance Required -All drivers for an event must attend the drivers meeting(s). The driver for an event will be -disqualified if he/she does not attend the driver meeting for the event. -D.3.2 Dynamic Area Limitations -Refer to the Event Website for specific information -D.3.2.1 The organizer may specify restrictions for the Dynamic Area. These could include limiting the -number of team members and what may be brought into the area. -D.3.2.2 The organizer may specify additional restrictions for the Staging Area. These could include -limiting the number of team members and what may be brought into the area. -D.3.2.3 The organizer may establish requirements for persons in the Dynamic Area, such as closed toe -shoes or long pants. -D.3.3 Driving Under Power -D.3.3.1 Vehicles must move under their own power only when inside the designated Dynamic Area(s), -unless otherwise directed by the officials. -D.3.3.2 Driving a vehicle outside of scheduled events or scheduled practice will result in a 200 point -penalty for the first violation and disqualification for a second violation. -D.3.4 Driving Offsite - Prohibited -Teams found to have driven their vehicle at an offsite location during the period of the -competition will be excluded from the competition. -D.3.5 Driver Equipment -D.3.5.1 All Driver Equipment and Harness must be worn by the driver anytime in the cockpit with: -a. (IC) Engine running or (EV) Tractive System Active -b. Anytime between starting a Dynamic run and finishing or abandoning that Dynamic run. -D.3.5.2 Removal of any Driver Equipment during a Dynamic event will result in Disqualification. -D.3.6 Starting -Auxiliary batteries must not be used once a vehicle has moved to the starting line of any -event. See IC.8.1 -D.3.7 Practice Area -D.3.7.1 A practice area for testing and tuning may be available -D.3.7.2 The practice area will be controlled and may only be used during the scheduled times -D.3.7.3 Vehicles using the practice area must have a complete Inspection Sticker -D.3.8 Instructions from Officials -Obey flags and hand signals from course marshals and officials immediately - -Formula SAE® Rules 2025 © 2024 SAE International Page 130 of 143 -Version 1.0 31 Aug 2024 -D.3.9 Vehicle Integrity -Officials may revoke the Inspection Approval for any vehicle condition that could compromise -vehicle integrity, compromise the track surface, or pose a potential hazard. -This could result in DNF or DQ of any Dynamic event. -D.3.10 Stalled & Disabled Vehicles -D.3.10.1 If a vehicle stalls and cannot restart without external assistance, or is damaged and not able to -complete the run, it will be scored DNF for that run -D.3.10.2 Disabled vehicles will be cleared from the track by the track workers. -D.4 FLAGS -Any specific variations will be addressed at the drivers meeting. -D.4.1 Command Flags -D.4.1.1 Any Command Flag must be obeyed immediately and without question. -D.4.1.2 Black Flag - Pull into the Driver Change Area for discussion with the track officials. A time -penalty may be assessed. -D.4.1.3 Black Flag with Orange Dot - Pull into the Driver Change Area for a mechanical inspection, -something has been observed that needs closer inspection. -D.4.1.4 Blue Flag - Pull into the designated passing zone to be passed by a faster competitor. Obey the -corner workers signals at the end of the passing zone to merge into competition. -D.4.1.5 Checkered Flag - Run has been completed. Exit the course at the designated point. -D.4.1.6 Green Flag – Approval to begin your run, enter the course under direction of the starter. If -you stall the vehicle, please restart and await another Green Flag -D.4.1.7 Red Flag - Come to an immediate safe controlled stop on the course. Pull to the side of the -course as much as possible to keep the course open. Follow corner worker directions. -D.4.1.8 Yellow Flag (Stationary) - Danger, SLOW DOWN, be prepared to take evasive action, -something has happened beyond the flag station. NO PASSING unless directed by the corner -workers. -D.4.1.9 Yellow Flag (Waved) - Great Danger, SLOW DOWN, evasive action is most likely required, BE -PREPARED TO STOP, something has happened beyond the flag station, NO PASSING unless -directed by the corner workers. -D.4.2 Informational Flags -D.4.2.1 An Information Flag communicates to the driver, but requires no specific action. -D.4.2.2 Red and Yellow Striped Flag - Something is on the racing surface that should not be there. Be -prepared for evasive maneuvers. -D.4.2.3 White Flag - There is a slow moving vehicle on the course. Be prepared to approach it at a -cautious rate. -D.5 WEATHER CONDITIONS -D.5.1 Operating Adjustments -D.5.1.1 The organizer may alter the conduct and scoring of the competition based on weather -conditions. - -Formula SAE® Rules 2025 © 2024 SAE International Page 131 of 143 -Version 1.0 31 Aug 2024 -D.5.1.2 No adjustments will be made to times for running in differing Operating Conditions. -D.5.1.3 The minimum performance levels to score points may be adjusted by the Officials. -D.5.2 Operating Conditions -D.5.2.1 These operating conditions will be recognized: -• Dry -• Damp -• Wet -D.5.2.2 The current operating condition will be decided by the Officials and may change at any time. -D.5.2.3 The current operating condition will be prominently displayed at the Dynamic Area, and may -be communicated by other means. -D.6 TIRES AND TIRE CHANGES -D.6.1 Tire Requirements -D.6.1.1 Teams must run the tires allowed for each Operating Condition: -Operating Condition Tires Allowed -Dry Dry ( V.4.3.1 ) -Damp Dry or Wet -Wet Wet ( V.4.3.2 ) -D.6.1.2 When the operating condition is Damp, teams may change between Dry Tires and Wet Tires: -a. Any time during the Acceleration, Skidpad, and Autocross Events -b. Any time before starting their Endurance Event -D.6.2 Tire Changes during Endurance -D.6.2.1 All tire changes after a vehicle has received the Green flag to start the Endurance Event must -occur in the Driver Change Area -D.6.2.2 If the Operating Condition changes to Wet during Endurance, the track will be Red Flagged or -vehicles will be Black Flagged and brought into the Driver Change Area -D.6.2.3 The allowed tire changes and associated conditions are given in these tables. -Existing -Operating -Condition -Currently -Running on: -Operating Condition Changed to: -Dry Damp Wet -Dry Dry Tires ok A B -Damp Dry Tires ok A B -Damp Wet Tires C C ok -Wet Wet Tires C C ok -Requirement -Allowed at -Driver Change? -A may change from Dry to Wet Yes -B MUST change from Dry to Wet Yes -C may change from Wet to Dry NO -D.6.2.4 Time allowed to change tires: - -Formula SAE® Rules 2025 © 2024 SAE International Page 132 of 143 -Version 1.0 31 Aug 2024 -a. Change to Wet Tires - Any time in excess of 10 minutes without driver change, or 13 -minutes with Driver Change, will be added to the team's total time for Endurance -b. Change to Dry Tires - The time used to change to Dry Tires will be added to the team’s -total time for Endurance -D.6.2.5 If the vehicle has a tire puncture, -a. The wheel and tire may be replaced with an identical wheel and tire -b. When the puncture is caused by track debris and not a result of component failure or the -vehicle itself, the tire change time will not count towards the team’s total time. -D.7 DRIVER LIMITATIONS -D.7.1 Three Event Limit -D.7.1.1 An individual team member may not drive in more than three events. -D.7.1.2 The Efficiency Event is considered a separate event although it is conducted simultaneously -with the Endurance Event. -A minimum of four drivers are required to participate in all of the dynamic events. -D.8 DEFINITIONS -D.8.1.1 DOO - Cone is Down or Out when one or the two: -a. Cone has been knocked over (Down) -b. The entire base of the cone lies outside the box marked around the cone in its -undisturbed position (Out) -D.8.1.2 DNF - Did Not Finish – The team attempted a run, but did not complete it, or was not allowed -to complete it -D.8.1.3 DQ - Disqualified - run(s) or event(s) no longer valid -D.8.1.4 Gate - The path between two cones through which the vehicle must pass. Two cones, one on -each side of the course define a gate. Two sequential cones in a slalom define a gate. -D.8.1.5 Entry Gate -The path marked by cones which establishes the required path the vehicle must -take to enter the course. -D.8.1.6 Exit Gate - The path marked by cones which establishes the required path the vehicle must -take to exit the course. -D.8.1.7 OC – Off Course -a. The vehicle did not pass through a gate in the required direction. -b. The vehicle has all four wheels outside the course boundary as indicated by cones, edge -marking or the edge of the paved surface. -Where more than one boundary indicator is used on the same course, the narrowest track will -be used when determining Off Course penalties. -D.9 ACCELERATION EVENT -The Acceleration event evaluates the vehicle acceleration in a straight line on flat pavement. -D.9.1 Acceleration Layout -D.9.1.1 Course length will be 75 m from starting line to finish line - -Formula SAE® Rules 2025 © 2024 SAE International Page 133 of 143 -Version 1.0 31 Aug 2024 -D.9.1.2 Course width will be minimum 4.9 m wide as measured between the inner edges of the bases -of the course edge cones -D.9.1.3 Cones are put along the course edges at intervals, approximately 6 m -D.9.1.4 Cone locations are not marked on the pavement -D.9.2 Acceleration Procedure -D.9.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver -D.9.2.2 Runs with the first driver have priority -D.9.2.3 Each Acceleration run is done as follows: -a. The foremost part of the vehicle will be staged at 0.30 m behind the starting line -b. A Green Flag or light signal will give the approval to begin the run -c. Timing starts when the vehicle crosses the starting line -d. Timing ends when the vehicle crosses the finish line -D.9.2.4 Each driver may go to the front of the staging line immediately after their first run to make a -second run -D.9.3 Acceleration Penalties -D.9.3.1 Cones (DOO) -Two second penalty for each DOO (including entry and exit gate cones) on that run -D.9.3.2 Off Course (OC) -DNF for that run -D.9.4 Acceleration Scoring -D.9.4.1 Scoring Term Definitions: -• Corrected Time = Acceleration Run Time + ( DOO * 2 ) -• Tyour - the best Corrected Time for the team -• Tmin - the lowest Corrected Time recorded for any team -• Tmax - 150% of Tmin -D.9.4.2 When Tyour < Tmax. the team score is calculated as: -Acceleration Score = 95.5 x -( Tmax / Tyour ) -1 -+ 4.5 -( Tmax / Tmin ) -1 -D.9.4.3 When Tyour > Tmax , Acceleration Score = 4.5 -D.10 SKIDPAD EVENT -The Skidpad event measures the vehicle cornering ability on a flat surface while making a -constant radius turn. -D.10.1 Skidpad Layout -D.10.1.1 Course Design -• Two pairs of concentric circles in a figure of eight pattern -• Centers of the circles 18.25 m apart -• Inner circles 15.25 m in diameter - -Formula SAE® Rules 2025 © 2024 SAE International Page 134 of 143 -Version 1.0 31 Aug 2024 -• Outer circles 21.25 m in diameter -• Driving path the 3.0 m wide path between the inner and outer circles -D.10.1.2 Cone Placement -a. Sixteen (16) pylons will be put around the inside of each inner circle and thirteen (13) -pylons will be positioned around the outside of each outer circle in the pattern shown in -the Skidpad layout diagram -b. Each circle will be marked with a chalk line, inside the inner circle and outside the outer -circle -The Skidpad layout diagram shows the circles for cone placement, not for course marking. -Chalk lines are marked on the opposite side of the cones, outside the driving path -c. Additional pylons will establish the entry and exit gates -d. A cone may be put in the middle of the exit gate until the finish lap -D.10.1.3 Course Operation -a. Vehicles will enter and exit through gates on a 3.0 m wide path that is tangential to the -circles where they meet. -b. The line between the centers of the circles defines the start/stop line. -c. A lap is defined as traveling around one of the circles from the start/stop line and -returning to the start/stop line. -D.10.2 Skidpad Procedure -D.10.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver. -D.10.2.2 Runs with the first driver have priority -D.10.2.3 Each Skidpad run is done as follows: -a. A Green Flag or light signal will give the approval to begin the run - -Formula SAE® Rules 2025 © 2024 SAE International Page 135 of 143 -Version 1.0 31 Aug 2024 -b. The vehicle will enter perpendicular to the figure eight and will take one full lap on the -right circle -c. The next lap will be on the right circle and will be timed -d. Immediately after the second lap, the vehicle will enter the left circle for the third lap -e. The fourth lap will be on the left circle and will be timed -f. Immediately upon finishing the fourth lap, the vehicle will exit the track. The exit is at the -intersection moving in the same direction as entered -D.10.2.4 Each driver may go to the front of the staging line immediately after their first run to make a -second run -D.10.3 Skidpad Penalties -D.10.3.1 Cones (DOO) -A 0.125 second penalty for each DOO (including entry and exit gate cones) on that run -D.10.3.2 Off Course (OC) -DNF for that run. Vehicles that stall or spin out may continue if they have not gone Off -Course. -D.10.3.3 Incorrect Laps -Vehicles that run an incorrect number of laps or run the laps in the wrong sequence will be -DNF for that run. -D.10.4 Skidpad Scoring -D.10.4.1 Scoring Term Definitions -• Corrected Time = ( Right Lap Time + Left Lap Time ) / 2 + ( DOO * 0.125 ) -• Tyour - the best Corrected Time for the team -• Tmin - is the lowest Corrected Time recorded for any team -• Tmax - 125% of Tmin -D.10.4.2 When Tyour < Tmax. the team score is calculated as: -Skidpad Score = 71.5 x -( Tmax / Tyour ) -2 --1 -+ 3.5 -( Tmax / Tmin ) -2 --1 -D.10.4.3 When Tyour > Tmax , Skidpad Score = 3.5 -D.11 AUTOCROSS EVENT -The Autocross event evaluates the vehicle maneuverability and handling qualities on a tight -course -D.11.1 Autocross Layout -D.11.1.1 The Autocross course will be designed with these specifications. Average speeds should be 40 -km/hr to 48 km/hr -a. Straights: No longer than 60 m with hairpins at the two ends -b. Straights: No longer than 45 m with wide turns on the ends -c. Constant Turns: 23 m to 45 m diameter -d. Hairpin Turns: 9 m minimum outside diameter (of the turn) - -Formula SAE® Rules 2025 © 2024 SAE International Page 136 of 143 -Version 1.0 31 Aug 2024 -e. Slaloms: Cones in a straight line with 7.62 m to 12.19 m spacing -f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. -g. Minimum track width: 3.5 m -h. Length of each run should be approximately 0.80 km -D.11.1.2 The Autocross course specifications may deviate from the above to accommodate event site -requirements. -D.11.2 Autocross Procedure -D.11.2.1 Each team may attempt up to four runs, using two drivers, limited to two runs for each driver -D.11.2.2 Runs with the first driver have priority -D.11.2.3 Each Autocross run is done as follows: -a. The vehicle will be staged at a specific distance behind the starting line -b. A Green Flag or light signal will give the approval to begin the run -c. Timing starts when the vehicle crosses the starting line -d. Timing ends when the vehicle crosses the finish line -D.11.2.4 Each driver may go to the front of the staging line immediately after their first run to make a -second run -D.11.3 Autocross Penalties -D.11.3.1 Cones (DOO) -Two second penalty for each DOO (including cones after the finish line) on that run -D.11.3.2 Off Course (OC) -a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or -receive a 20 second penalty -b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of -track officials. -D.11.3.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one Off Course -D.11.4 Autocross Scoring -D.11.4.1 Scoring Term Definitions: -• Corrected Time = Autocross Run Time + ( DOO * 2 ) + ( OC * 20 ) -• Tyour - the best Corrected Time for the team -• Tmin - the lowest Corrected Time recorded for any team -• Tmax - 145% of Tmin -D.11.4.2 When Tyour < Tmax. the team score is calculated as: -Autocross Score = 118.5 x -( Tmax / Tyour ) -1 -+ 6.5 -( Tmax / Tmin ) -1 -D.11.4.3 When Tyour > Tmax , Autocross Score = 6.5 - -Formula SAE® Rules 2025 © 2024 SAE International Page 137 of 143 -Version 1.0 31 Aug 2024 -D.12 ENDURANCE EVENT -The Endurance event evaluates the overall performance of the vehicle and tests the durability -and reliability. -D.12.1 Endurance General Information -D.12.1.1 The organizer may establish one or more requirements to allow teams to compete in the -Endurance event. -D.12.1.2 Each team may attempt the Endurance event once. -D.12.1.3 The Endurance event consists of two Endurance runs, each using a different driver, with a -Driver Change between. -D.12.1.4 Teams may not work on their vehicles once their Endurance event has started -D.12.1.5 Multiple vehicles may be on the track at the same time -D.12.1.6 Wheel to Wheel racing is prohibited. -D.12.1.7 Vehicles must not be driven in reverse -D.12.2 Endurance Layout -D.12.2.1 The Endurance event will consist of multiple laps over a closed course to a total distance of -approximately 22 km. -D.12.2.2 The Endurance course will be designed with these specifications. Average speed should be 48 -km/hr to 57 km/hr with top speeds of approximately 105 km/hr. -a. Straights: No longer than 77 m with hairpins at the two ends -b. Straights: No longer than 61 m with wide turns on the ends -c. Constant Turns: 30 m to 54 m diameter -d. Hairpin Turns: 9 m minimum outside diameter (of the turn) -e. Slaloms: Cones in a straight line with 9 m to 15 m spacing -f. Miscellaneous: Chicanes, multiple turns, decreasing radius turns, etc. -g. Minimum track width: 4.5 m -h. Designated passing zones at several locations -D.12.2.3 The Endurance course specifications may deviate from the above to accommodate event site -requirements. -D.12.3 Endurance Run Order -The Endurance Run Order is established to let vehicles of similar speed potential be on track -together to reduce the need for passing. -D.12.3.1 The Endurance Run Order: -a. Should be primarily based on the Autocross event finish order -b. Should include the teams eligible for Endurance which did not compete in the Autocross -event. -c. May be altered by the organizer to accommodate specific circumstances or event -considerations -D.12.3.2 Each team must keep track of the Endurance Run Order and have their vehicle fueled, in line -and prepared to start when their turn to run arrives. - -Formula SAE® Rules 2025 © 2024 SAE International Page 138 of 143 -Version 1.0 31 Aug 2024 -D.12.4 Endurance Vehicle Starting / Restarting -D.12.4.1 Teams that are not ready to run or cannot start their Endurance event in the allowed time -when their turn in the Run Order arrives: -a. Get a time penalty (D.12.12.5) -b. May then run at the discretion of the Officials -D.12.4.2 After Driver Change, the vehicle will be allowed up to 120 seconds (two minutes) to (IC) -restart the engine or to (EV) enter Ready to Drive EV.9.5 -a. The time will start when the driver first tries to restart the engine or to enable the -Tractive System -b. The time to attempt start / restart is not counted towards the Endurance time -D.12.4.3 If a vehicle stalls on the track, it will be allowed one lap by the vehicle that follows it -(approximately 60 seconds) to restart. This time counts toward the Endurance time. -D.12.4.4 If starts / restarts are not accomplished in the above times, the vehicle may be DNF. -D.12.5 Endurance Event Procedure -D.12.5.1 Vehicles will be staged per the Endurance Run Order -D.12.5.2 Endurance Event sequence: -a. The first driver will do an Endurance Run per D.12.6 below -b. The Driver Change must then be done per D.12.8 below -c. The second driver will do an Endurance Run per D.12.6 below -D.12.5.3 The Endurance Event is complete when the two: -• The team has completed the specified number of laps -• The second driver crosses the finish line -D.12.6 Endurance Run Procedure -D.12.6.1 A Green Flag or light signal will give the approval to begin the run -D.12.6.2 The driver will drive approximately half of the Endurance distance -D.12.6.3 A Checkered Flag will be displayed -D.12.6.4 The vehicle must exit the track into the Driver Change Area -D.12.7 Driver Change Limitations -D.12.7.1 The team may bring only these items into the Driver Change Area: -a. Three team members, including the driver or drivers -b. (EV Only) The three team members must consist of an ESO EV.11.1.1 and two drivers. -c. Minimal tools necessary to adjust the vehicle to fit the second driver and/or change tires -Team members may only carry tools by hand (no carts, tool chests etc) -d. Each extra person entering the Driver Change Area: 20 point penalty -D.12.7.2 The only work permitted during Driver Change is: -a. Operation of Master Switches IC.9.3, EV.7.9, Main Switch IC.9.4, or Shutdown Buttons -EV.7.10 -b. Adjustments to fit the driver IN.14.2.2 -c. Tire changes per D.6.2 - -Formula SAE® Rules 2025 © 2024 SAE International Page 139 of 143 -Version 1.0 31 Aug 2024 -D.12.8 Driver Change Procedure -D.12.8.1 The Driver Change will be done in this sequence: -a. Vehicle will stop in Driver Change Area -b. First Driver turns off the engine / Tractive System. Driver Change time starts. -c. First Driver exits the vehicle -d. Any necessary adjustments may be made to the vehicle to fit the Second Driver IN.14.2.2 -e. Second Driver is secured in the vehicle -f. Second Driver is ready to start the engine / enable the Tractive System. Driver Change -time stops. -g. Second Driver receives permission to continue -h. The vehicle engine is started or Tractive System enabled. See D.12.4 -i. The vehicle stages to go back onto course, at the direction of the event officials -D.12.8.2 Three minutes are allowed for the team to complete the Driver Change -a. Any additional time for inspection of the vehicle and the Driver Equipment is not -included in the Driver Change time -b. Time in excess of the allowed will be added to the team Endurance time -D.12.8.3 The Driver Change Area will be in a location where the timing system will see the Driver -Change as a long lap which will be deleted from the total time -D.12.9 Breakdowns & Stalls -D.12.9.1 If a vehicle breaks down or cannot restart, it will be removed from the course by track workers -and scored DNF -D.12.9.2 If a vehicle stalls, or ingests a cone, etc., it may be allowed to continue, subject to D.12.1.4 -and D.12.4 -D.12.10 Endurance Event – Black Flags -D.12.10.1 A Black Flag will be shown at the designated location -D.12.10.2 The vehicle must pull into the Driver Change Area at the first opportunity -D.12.10.3 The amount of time spent in the Driver Change Area is at the discretion of the officials. -D.12.10.4 Driving Black Flag -a. May be shown for any reason such as aggressive driving, failing to obey signals, not -yielding for passing, not driving inside the designated course, etc. -b. Course officials will discuss the situation with the driver -c. The time spent in Black Flag or a time penalty may be included in the Endurance Run -time. -d. If not possible to impose a penalty by a stop under a Black Flag, (not enough laps left), or -during post event review, officials may impose a penalty D.14.2 -D.12.10.5 Mechanical Black Flag -a. May be shown for any reason to question the vehicle condition -b. Time spent off track is not included in the Endurance Run time. -D.12.10.6 Based on the inspection or discussion during a Black Flag period, the vehicle may not be -allowed to continue the Endurance Run and will be scored DNF - -Formula SAE® Rules 2025 © 2024 SAE International Page 140 of 143 -Version 1.0 31 Aug 2024 -D.12.11 Endurance Event – Passing -D.12.11.1 Passing during Endurance may only be done in the designated passing zones, under the -control of the track officials. -D.12.11.2 Passing zones have two parallel lanes – a slow lane for the vehicles that are being passed and -a fast lane for vehicles that are making a pass. -D.12.11.3 When a pass is to be made: -a. A slower leading vehicle gets a Blue Flag -b. The slower vehicle must move into the slow lane and decelerate -c. The faster vehicle will continue in the fast lane and make the pass -d. The vehicle that had been passed may reenter traffic only under the control of the -passing zone exit flag -D.12.11.4 Passing rules do not apply to vehicles that are passing disabled vehicles on the course or -vehicles that have spun out and are not moving. When passing a disabled or off track vehicle, -slow down, drive cautiously and be aware of all the vehicles and track workers in the area. -D.12.12 Endurance Penalties -D.12.12.1 Cones (DOO) -Two second penalty for each DOO (including cones after the finish line) on that run -D.12.12.2 Off Course (OC) -a. When an OC occurs, the driver must reenter the track at or prior to the point of exit or -receive a 20 second penalty -b. Penalties will not be assessed to bypass an accident or other reasons at the discretion of -track officials. -D.12.12.3 Missed Slalom -Missing one or more gates of a given slalom will be counted as one Off Course -D.12.12.4 Penalties for Moving or Post Event Violations -a. Black Flag penalties per D.12.10, if applicable -b. Post Event Inspection penalties per D.14.2, if applicable -D.12.12.5 Endurance Starting (D.12.4.1) -Two minutes (120 seconds) penalty -D.12.12.6 Vehicle Operation -The Chief Marshall/Director of Operations may end the Endurance event (DNF) a vehicle if, for -any reason including driver inexperience or mechanical problems, it is too slow or being -driven in a manner that demonstrates an inability to properly control. -D.12.13 Endurance Scoring -D.12.13.1 Scoring Term Definitions: -• Endurance Run Time - Total Time for the two Drivers, minus the Driver Change lap, -minus any Mechanical Black Flag Time, plus any Penalty time D.14.2 -• Corrected Time = Endurance Run Time + ( DOO * 2 ) + ( OC * 20 ) -• Tyour - the Corrected Time for the team -• Tmin - the lowest Corrected Time recorded for any team - -Formula SAE® Rules 2025 © 2024 SAE International Page 141 of 143 -Version 1.0 31 Aug 2024 -• Tmax - 145% of Tmin -D.12.13.2 The vehicle must complete the Endurance Event to receive a score based on their Corrected -Time -a. If Tyour < Tmax, the team score is calculated as: -Endurance Time Score = 250 x -( Tmax / Tyour ) -1 -( Tmax / Tmin ) -1 -b. If Tyour > Tmax, Endurance Time Score = 0 -D.12.13.3 The vehicle receives points based on the laps and/or parts of Endurance completed. -The Endurance Laps Score is worth up to 25 points -D.12.13.4 The Endurance Score is calculated as: -Endurance Score = Endurance Time Score + Endurance Laps Score -D.13 EFFICIENCY EVENT -The Efficiency event evaluates the fuel/energy used to complete the Endurance event -D.13.1 Efficiency General Information -D.13.1.1 The Efficiency is based on a metric of the amount of fuel consumed or energy used and the lap -time on the endurance course, averaged over the length of the event. -D.13.1.2 The Efficiency score is based only on the distance the vehicle runs on the course during the -Endurance event, and the total fuel/energy used. No adjustment to distance or fuel/energy -will be made. -D.13.2 Efficiency Procedure -D.13.2.1 For IC vehicles: -a. The fuel tank must be filled to the fuel level line (IC.5.4.5) -b. During fuelling, once filled to the scribe line, no shaking or tilting of the tank, fuel system, -or the entire vehicle is allowed. -D.13.2.2 (EV only) The vehicle may be fully charged -D.13.2.3 The vehicle will then compete in the Endurance event, refer to D.12.5 -D.13.2.4 Vehicles must power down after leaving the course and be pushed to the fueling station or -data download area -D.13.2.5 For Internal Combustion vehicles (IC): -a. The Fuel Tank must be filled to the Fuel Level Line (IC.5.4.5) to measure fuel used. -IC.5.5.1 -b. If the fuel level changes after refuelling: -• Additional fuel will be added to return the fuel tank level to the fuel level line. -• Twice this amount will be added to the previously measured fuel consumption -c. If damage or a potential environmental hazard (example - Fuel Tank leakage) exists, the -Fuel Tank will not be refilled D.13.3.4 - -Formula SAE® Rules 2025 © 2024 SAE International Page 142 of 143 -Version 1.0 31 Aug 2024 -D.13.2.6 For Electric Vehicles (EV): -a. Energy Meter data must be downloaded to measure energy used and check for -Violations EV.3.3 -b. Penalties will be applied per EV.3.5 and/or D.13.3.4 -D.13.3 Efficiency Eligibility -D.13.3.1 Maximum Time -Vehicles whose average Endurance laptime exceeds 1.45 times the average Endurance -laptime of the fastest team that completes the Endurance event get zero points -D.13.3.2 Maximum Fuel/Energy Used -Vehicles whose corrected average (IC) fuel consumption / (EV) energy equivalent per lap -exceeds the values in D.13.4.5 get zero points -D.13.3.3 Partial Completion of Endurance -a. Vehicles which cross the start line after Driver Change are eligible for Efficiency points -b. Other vehicles get zero points -D.13.3.4 Cannot Measure Fuel/Energy Used -The vehicle gets zero points -D.13.4 Efficiency Scoring -D.13.4.1 Conversion Factors -Each fuel or energy used is converted using the factors: -a. Gasoline / Petrol 2.31 kg of CO -2 -per liter -b. E85 1.65 kg of CO -2 -per liter -c. Electric 0.65 kg of CO -2 -per kWh -D.13.4.2 (EV only) Full credit is given for energy recovered through regenerative braking -D.13.4.3 Scoring Term Definitions: -• CO -2 -min - the smallest mass of CO -2 -used by any competitor who is eligible for Efficiency -• CO -2 -your - the mass of CO -2 -used by the team being scored -• Tmin - the lowest Endurance time of the fastest team which is eligible for Efficiency -• Tyour - same as Endurance (D.12.13.1) -• Lapyours - the number of laps driven by the team being scored -• Laptotal Tmin and Latptotal CO -2 -min - be the number of laps completed by the teams -which set Tmin and CO -2 -min, respectively -D.13.4.4 The Efficiency Factor is calculated by: -Efficiency Factor = -Tmin / LapTotal Tmin -X -CO -2 -min / LapTotal CO -2 -min -Tyours / Lap yours CO -2 -your / Lap yours -D.13.4.5 EfficiencyFactor min is calculated using the above formula with: -• CO -2 -your (IC) equivalent to 60.06 kg CO -2 -/100km (based on gasoline 26 ltr/100km) -• CO -2 -your (EV) equivalent to 20.02 kg CO -2 -/100km -• Tyour 1.45 times Tmin - -Formula SAE® Rules 2025 © 2024 SAE International Page 143 of 143 -Version 1.0 31 Aug 2024 -D.13.4.6 When the team is eligible for Efficiency. the team score is calculated as: -Efficiency Score = 100 x -Efficiency Factor your - Efficiency Factor min -Efficiency Factor max - Efficiency Factor min -D.14 POST ENDURANCE -D.14.1 Technical Inspection Required -D.14.1.1 After Endurance and refuelling are completed, all vehicles must report to Technical Inspection. -D.14.1.2 Vehicles may then be subject to IN.15 Reinspection -D.14.2 Post Endurance Penalties -D.14.2.1 Penalties may be applied to the Endurance and/or Efficiency events based on: -a. Infractions or issues during the Endurance Event (including D.12.10.4.d) -b. Post Endurance Technical Inspection -c. (EV only) Energy Meter violations EV.3.3, EV.3.5.2 -D.14.2.2 Any imposed penalty will be at the discretion of the officials. -D.14.3 Post Endurance Penalty Guidelines -D.14.3.1 One or more minor violations (rules compliance, but no advantage to team): 15-30 sec -D.14.3.2 Violation which is a potential or actual performance advantage to team: 120-360 sec -D.14.3.3 Violation with potential or actual effect on safety or environment: 240 sec up to DNF or DQ -D.14.3.4 Team may be DNF or DQ for: -a. Multiple violations involving safety, environment, or performance advantage -b. A single substantial violation \ No newline at end of file From 6c6e28395b1077231f8d1321511da060f21d6531 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Sat, 6 Dec 2025 12:55:00 -0500 Subject: [PATCH 14/25] #3622 frontend connections --- src/frontend/src/apis/rules.api.ts | 31 +- src/frontend/src/hooks/rules.hooks.ts | 63 +++- .../src/pages/RulesPage/RulesetTypePage.tsx | 55 +++- .../RulesPage/components/AddNewFileModal.tsx | 274 ++++++++++-------- src/frontend/src/utils/urls.ts | 14 + 5 files changed, 316 insertions(+), 121 deletions(-) diff --git a/src/frontend/src/apis/rules.api.ts b/src/frontend/src/apis/rules.api.ts index 5794b35b3e..8dd048b8ab 100644 --- a/src/frontend/src/apis/rules.api.ts +++ b/src/frontend/src/apis/rules.api.ts @@ -1 +1,30 @@ -// write api functions below here! +import { apiUrls } from '../utils/urls'; +import axios from '../utils/axios'; +import { Rule as SharedRule, Ruleset } from 'shared'; +import { CreateRulesetPayload, ParseRulesetPayload } from '../hooks/rules.hooks'; + +/** + * Creates a new ruleset + */ +export const createRuleset = (payload: CreateRulesetPayload) => { + return axios.post(apiUrls.rulesetsCreate(), payload); +}; + +/** + * Parses a ruleset PDF and creates rules in the database + */ +export const parseRuleset = (payload: ParseRulesetPayload) => { + return axios.post(apiUrls.parseRuleset(payload.rulesetId), { + fileId: payload.fileId, + parserType: payload.parserType + }); +}; + + +export const uploadRulesetFile = (file: File) => { + const formData = new FormData(); + formData.append('file', file); + return axios.post(apiUrls.uploadRulesetFile(), formData, { + transformResponse: (data) => JSON.parse(data) + }); +}; \ No newline at end of file diff --git a/src/frontend/src/hooks/rules.hooks.ts b/src/frontend/src/hooks/rules.hooks.ts index 54a49f22a6..c9bf3c9884 100644 --- a/src/frontend/src/hooks/rules.hooks.ts +++ b/src/frontend/src/hooks/rules.hooks.ts @@ -1 +1,62 @@ -// write hooks below here! +import { useMutation, useQueryClient } from 'react-query'; +import { Rule as SharedRule, Ruleset } from 'shared'; +import { createRuleset, parseRuleset } from '../apis/rules.api'; +import { uploadRulesetFile } from '../apis/rules.api'; + +export interface ParseRulesetPayload { + rulesetId: string; + fileId: string; + parserType: 'FSAE' | 'FHE'; +} + +export interface CreateRulesetPayload { + fileId: string; + name: string; + rulesetTypeId: string; + carNumber: number; + active: boolean; +} + +export const useCreateRuleset = () => { + const queryClient = useQueryClient(); + return useMutation( + ['rulesets', 'create'], + async (payload: CreateRulesetPayload) => { + const { data } = await createRuleset(payload); + return data; + }, + { + onSuccess: () => { + queryClient.invalidateQueries(['rulesets']); + } + } + ); +}; + +export const useParseRuleset = () => { + const queryClient = useQueryClient(); + return useMutation( + ['rulesets', 'parse'], + async (payload: ParseRulesetPayload) => { + const { data } = await parseRuleset(payload); + return data; + }, + { + onSuccess: () => { + queryClient.invalidateQueries(['rules']); + queryClient.invalidateQueries(['rulesets']); + } + } + ); +}; + +/** + * Uploads a file to the drive and returns the fileId + * @returns the fileId of the uploaded file + */ +export const useUploadRulesetFile = () => { + return useMutation(['ruleset-file', 'upload'], async (file: File) => { + const { data } = await uploadRulesetFile(file); + return data; + }); +}; diff --git a/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx b/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx index f39fd4a783..1095eaa3a6 100644 --- a/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx +++ b/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx @@ -6,16 +6,61 @@ import React from 'react'; import PageLayout from '../../components/PageLayout'; import AddNewFileModal from './components/AddNewFileModal'; import { NERButton } from '../../components/NERButton'; +import { useToast } from '../../hooks/toasts.hooks'; +import { useCreateRuleset, useParseRuleset } from '../../hooks/rules.hooks'; // FSAE or FHE page const RulesetTypePage: React.FC = () => { - // testing for AddNewFileModal - const handleFileConfirm = async (data: { file: File; name: string; car: string; isActive: boolean }) => { + const [AddFileModalShow, setAddFileModalShow] = React.useState(false); + const { mutateAsync: createRuleset } = useCreateRuleset(); + const { mutateAsync: parseRuleset } = useParseRuleset(); + const toast = useToast(); + + const handleFileConfirm = async (data: { + fileId: string; + name: string; + car: string; + isActive: boolean; + parserType: string; + }) => { setAddFileModalShow(false); - console.log('Added data: ' + data); // delete this later, once data is used properly + try { + console.log('Creating ruleset...'); + const ruleset = await createRuleset({ + fileId: data.fileId, + name: data.name, + rulesetTypeId: data.car, + carNumber: parseInt(data.car), + active: data.isActive + }); + + console.log('Full ruleset response:', ruleset); + console.log('Ruleset type:', typeof ruleset); + console.log('Ruleset keys:', Object.keys(ruleset)); + console.log('Ruleset.rulesetId:', ruleset.rulesetId); + console.log('Ruleset.id:', ruleset.rulesetId); + + const rulesetId = ruleset.rulesetId || ruleset.rulesetId; + + if (!rulesetId) { + console.error('No rulesetId found in response!'); + throw new Error('No rulesetId returned from createRuleset'); + } + + console.log('Parsing ruleset with ID:', rulesetId); + const parsedRules = await parseRuleset({ + rulesetId: rulesetId, + fileId: data.fileId, + parserType: data.parserType as 'FSAE' | 'FHE' + }); + console.log('Rules parsed:', parsedRules.length); + toast.success(`Successfully parsed ${parsedRules.length} rules!`); + } catch (e) { + console.error('Error in handleFileConfirm:', e); + toast.error('Error uploading file: ' + (e instanceof Error ? e.message : 'Unknown error')); + } }; - const [AddFileModalShow, setAddFileModalShow] = React.useState(false); return ( setAddFileModalShow(!AddFileModalShow)}> @@ -24,7 +69,7 @@ const RulesetTypePage: React.FC = () => { setAddFileModalShow(false)} - onConfirm={handleFileConfirm} + onFormSubmit={handleFileConfirm} carOptions={['1', '2']} /> diff --git a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx index 06bf6b5b82..989cce4c6d 100644 --- a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx +++ b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx @@ -1,198 +1,244 @@ import NERFormModal from '../../../components/NERFormModal'; import Checkbox from '@mui/material/Checkbox'; import { useForm, Controller } from 'react-hook-form'; -import { Box, TextField, Typography } from '@mui/material'; -import { useState, useRef } from 'react'; +import { Box, FormControl, TextField, Typography, FormLabel, FormHelperText, Button } from '@mui/material'; +import { useState } from 'react'; import * as yup from 'yup'; import { yupResolver } from '@hookform/resolvers/yup'; +import { useToast } from '../../../hooks/toasts.hooks'; +import { FileUpload } from '@mui/icons-material'; +import { MAX_FILE_SIZE } from 'shared'; +import { useUploadRulesetFile } from '../../../hooks/rules.hooks'; interface AddNewFileModalProps { open: boolean; onHide: () => void; - onConfirm: (data: NewFileFormData) => Promise; + onFormSubmit: (data: NewFileFormData) => Promise; carOptions: string[]; } interface NewFileFormData { - file: File; + fileId: string; name: string; car: string; isActive: boolean; + parserType: 'FSAE' | 'FHE'; } +const isPdf = (fileName: string) => { + const extension = fileName.split('.').pop()?.toLowerCase(); + return extension === 'pdf'; +}; + interface ButtonGroupProps { options: string[]; + value: string; onChange: (option: string) => any; + error?: boolean; } const sectionHeaderStyle = { fontWeight: 'bold', color: '#ef4345', - textDecoration: 'underline', fontSize: '1rem' }; const schema = yup.object({ - file: yup - .mixed() - .required('File is required') - .test('is-pdf', 'File must be a PDF', (file) => (file ? file.type === 'application/pdf' : false)), + fileId: yup.string().required('File is required'), name: yup.string().required('Name is required'), car: yup.string().required('Car is required'), - isActive: yup.boolean().required() + isActive: yup.boolean().required(), + parserType: yup.string().oneOf(['FSAE', 'FHE']).required('Parser type is required') }); -const ButtonGroup: React.FC = ({ options, onChange }) => { - const [selected, setSelected] = useState(''); - - const handleClick = (option: string) => { - setSelected(option); - onChange(option); - }; - +const ButtonGroup: React.FC = ({ options, value, onChange, error }) => { return (

        ); }; -const AddNewFileModal: React.FC = ({ open, onHide, onConfirm, carOptions }) => { - // For general information in the form +const AddNewFileModal: React.FC = ({ open, onHide, onFormSubmit, carOptions }) => { + const toast = useToast(); + const [file, setFile] = useState(null); + const [uploading, setUploading] = useState(false); + const { mutateAsync: uploadFile } = useUploadRulesetFile(); + const { formState: { errors }, - register, handleSubmit, reset, setValue, + watch, control } = useForm({ resolver: yupResolver(schema), defaultValues: { - file: undefined, + fileId: '', name: '', car: '', - isActive: false + isActive: false, + parserType: 'FSAE' } }); + const carValue = watch('car'); + const parserTypeValue = watch('parserType'); - // For file inputs - const fileInputRef = useRef(null); - const handleAddFileClick = () => { - fileInputRef.current?.click(); + const handleFormSubmit = async (data: NewFileFormData) => { + try { + await onFormSubmit(data); + toast.success('File Successfully Added'); + setFile(null); + reset(); + onHide(); + } catch (error: unknown) { + if (error instanceof Error) { + toast.error(error.message); + } + } }; return ( { + setFile(null); + reset(); + onHide(); + }} title="Add New File" - hideFormButtons - showCloseButton - reset={reset} + reset={() => { + setFile(null); + reset(); + }} handleUseFormSubmit={handleSubmit} - onFormSubmit={onConfirm} + onFormSubmit={handleFormSubmit} formId={'add-new-file-form'} + showCloseButton + disabled={uploading} > - - - - Upload Ruleset File: - - + + + {/* File Upload */} + + Upload Ruleset File + + {file && {file.name}} + {uploading && Uploading...} + + + {errors.fileId?.message} + + {/* Car */} + + Car + ( + + )} + /> + {errors.car?.message} + + {/* Parser Type */} + + Parser Type + ( + onChange(value as 'FSAE' | 'FHE')} + error={!!errors.parserType} + /> + )} + /> + {errors.parserType?.message} + + {/* Active */} + + Active + } + /> + + + {/* Ruleset Name */} + + Name Ruleset File ( - { - fileInputRef.current = e; - field.ref(e); - }} - onChange={(e) => { - const { files } = e.target; - if (files && files.length > 0) { - onChange(files[0]); - } - }} - /> + render={({ field }) => ( + )} /> - {errors.file && ( - - {errors.file.message as string} - - )} - - - - Car: - - setValue('car', value, { shouldValidate: true })} - > - - {errors.car && ( - - {errors.car.message as string} - - )} - - - - Active: - - - + {errors.name?.message} + - - - Name Ruleset File: - - - {errors.name && ( - - {errors.name.message} - - )} - ); }; diff --git a/src/frontend/src/utils/urls.ts b/src/frontend/src/utils/urls.ts index f8367bc87f..dba5df5d4a 100644 --- a/src/frontend/src/utils/urls.ts +++ b/src/frontend/src/utils/urls.ts @@ -436,6 +436,14 @@ const retrospectiveTimelines = (startDate?: Date, endDate?: Date) => (endDate ? `end=${encodeURIComponent(endDate.toISOString())}` : ''); const retrospectiveBudgets = () => `${API_URL}/retrospective/budgets`; +/************** Rule Endpoints ***************/ +const rules = () => `${API_URL}/rules`; +const ruleset = () => `${rules()}/ruleset`; +const rulesetsById = (rulesetId: string) => `${ruleset()}/${rulesetId}`; +const rulesetsCreate = () => `${ruleset()}/create`; +const parseRuleset = (rulesetId: string) => `${API_URL}/rules/ruleset/${rulesetId}/parse`; +const uploadRulesetFile = () => `${rules()}/upload/file`; + /**************** Other Endpoints ****************/ const version = () => `https://api.github.com/repos/Northeastern-Electric-Racing/FinishLine/releases/latest`; @@ -738,5 +746,11 @@ export const apiUrls = { retrospectiveTimelines, retrospectiveBudgets, + ruleset, + rulesetsById, + rulesetsCreate, + parseRuleset, + uploadRulesetFile, + version }; From 190a3d35bccc882ce9f1a2007b3a524397c40eef Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Wed, 10 Dec 2025 15:28:34 -0500 Subject: [PATCH 15/25] #3622 fix page flow for file upload location --- src/frontend/src/app/AppAuthenticated.tsx | 4 +- src/frontend/src/pages/RulesPage/Rules.tsx | 18 +- .../src/pages/RulesPage/RulesPage.tsx | 20 - .../src/pages/RulesPage/RulesetEditPage.tsx | 293 +++++++++++++++ .../src/pages/RulesPage/RulesetPage.tsx | 342 ++++-------------- .../src/pages/RulesPage/RulesetTypePage.tsx | 68 +--- .../RulesPage/components/AddNewFileModal.tsx | 2 +- src/frontend/src/utils/routes.ts | 4 +- 8 files changed, 390 insertions(+), 361 deletions(-) delete mode 100644 src/frontend/src/pages/RulesPage/RulesPage.tsx create mode 100644 src/frontend/src/pages/RulesPage/RulesetEditPage.tsx diff --git a/src/frontend/src/app/AppAuthenticated.tsx b/src/frontend/src/app/AppAuthenticated.tsx index 6672a5aafc..dee893b172 100644 --- a/src/frontend/src/app/AppAuthenticated.tsx +++ b/src/frontend/src/app/AppAuthenticated.tsx @@ -11,7 +11,7 @@ import { PageNotFound } from '../pages/PageNotFound'; import Home from '../pages/HomePage/Home'; import Settings from '../pages/SettingsPage/SettingsPage'; import InfoPage from '../pages/InfoPage'; -import RulesPage from '../pages/RulesPage/RulesPage'; +import Rules from '../pages/RulesPage/Rules'; import GanttChartPage from '../pages/GanttPage/ProjectGanttChart/ProjectGanttChartPage'; import Teams from '../pages/TeamsPage/Teams'; import AdminTools from '../pages/AdminToolsPage/AdminTools'; @@ -131,7 +131,7 @@ const AppAuthenticated: React.FC = ({ userId, userRole }) - + diff --git a/src/frontend/src/pages/RulesPage/Rules.tsx b/src/frontend/src/pages/RulesPage/Rules.tsx index 33df6088c2..0133984551 100644 --- a/src/frontend/src/pages/RulesPage/Rules.tsx +++ b/src/frontend/src/pages/RulesPage/Rules.tsx @@ -1 +1,17 @@ -// switch route page for rules +import { Route, Switch } from 'react-router-dom'; +import { routes } from '../../utils/routes'; +import RulesetTypePage from './RulesetTypePage'; +import RulesetPage from './RulesetPage'; +import RulesetEditPage from './RulesetEditPage'; + +const RulesPage: React.FC = () => { + return ( + + + + + + ); +}; + +export default RulesPage; diff --git a/src/frontend/src/pages/RulesPage/RulesPage.tsx b/src/frontend/src/pages/RulesPage/RulesPage.tsx deleted file mode 100644 index 8e9f3bccad..0000000000 --- a/src/frontend/src/pages/RulesPage/RulesPage.tsx +++ /dev/null @@ -1,20 +0,0 @@ -/* - * This file is part of NER's FinishLine and licensed under GNU AGPLv3. - * See the LICENSE file in the repository root folder for details. - */ - -import { Route, Switch } from 'react-router-dom'; -import { routes } from '../../utils/routes'; -import RulesetTypePage from './RulesetTypePage'; -import RulesetPage from './RulesetPage'; - -const RulesPage: React.FC = () => { - return ( - - - - - ); -}; - -export default RulesPage; diff --git a/src/frontend/src/pages/RulesPage/RulesetEditPage.tsx b/src/frontend/src/pages/RulesPage/RulesetEditPage.tsx new file mode 100644 index 0000000000..cbe892c23f --- /dev/null +++ b/src/frontend/src/pages/RulesPage/RulesetEditPage.tsx @@ -0,0 +1,293 @@ +/* + * This file is part of NER's FinishLine and licensed under GNU AGPLv3. + * See the LICENSE file in the repository root folder for details. + */ + +import { Box, Button, Paper, Table, TableBody, TableContainer } from '@mui/material'; +import { useState } from 'react'; +import { useParams } from 'react-router-dom'; +import PageLayout from '../../components/PageLayout'; +import FullPageTabs from '../../components/FullPageTabs'; +import { routes } from '../../utils/routes'; +import RuleRow from './RuleRow'; +import RuleActions from './RuleActions'; +import { Rule } from 'shared'; +import ErrorPage from '../ErrorPage'; +import LoadingIndicator from '../../components/LoadingIndicator'; + +/** + * Placeholder hook to fetch a single ruleset. + * @param rulesetId - The ID of the ruleset to fetch. + * @returns The ruleset data. + */ +const useSingleRuleset = (rulesetId: string) => { + const placeholderRules: Rule[] = [ + { + ruleId: '1', + ruleCode: 'GR - General Regulations', + ruleContent: '', + imageFileIds: [], + parentRule: undefined, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '2', + ruleCode: 'AD - Administrative Regulations', + ruleContent: '', + imageFileIds: [], + parentRule: undefined, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '3', + ruleCode: 'DR - Document Requirements', + ruleContent: '', + imageFileIds: [], + parentRule: undefined, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '4', + ruleCode: 'V - Vehicle Requirements', + ruleContent: '', + imageFileIds: [], + parentRule: undefined, + subRuleIds: ['5', '6', '7'], + referencedRuleIds: [] + }, + { + ruleId: '5', + ruleCode: 'V.1 - Configuration', + ruleContent: '', + imageFileIds: [], + parentRule: { ruleId: '4', ruleCode: 'V - Vehicle Requirements' }, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '6', + ruleCode: 'V.2 - Driver', + ruleContent: '', + imageFileIds: [], + parentRule: { ruleId: '4', ruleCode: 'V - Vehicle Requirements' }, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '7', + ruleCode: 'V.3 - Suspension and Steering', + ruleContent: '', + imageFileIds: [], + parentRule: { ruleId: '4', ruleCode: 'V - Vehicle Requirements' }, + subRuleIds: ['8', '9'], + referencedRuleIds: [] + }, + { + ruleId: '8', + ruleCode: 'V.3.1 - Suspension', + ruleContent: '', + imageFileIds: [], + parentRule: { ruleId: '7', ruleCode: 'V.3 - Suspension and Steering' }, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '9', + ruleCode: 'V.3.2 - Steering', + ruleContent: '', + imageFileIds: [], + parentRule: { ruleId: '7', ruleCode: 'V.3 - Suspension and Steering' }, + subRuleIds: ['10', '11', '12'], + referencedRuleIds: [] + }, + { + ruleId: '10', + ruleCode: 'V.3.2.1', + ruleContent: + 'Some super long rule content that should wrap to the next line, Some super long rule content that should wrap to the next line, Some super long rule content that should wrap to the next line, Some super long rule content that should wrap to the next line', + imageFileIds: [], + parentRule: { ruleId: '9', ruleCode: 'V.3.2 - Steering' }, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '11', + ruleCode: 'V.3.2.2', + ruleContent: 'Electrically actuated steering of the front wheels is prohibited', + imageFileIds: [], + parentRule: { ruleId: '9', ruleCode: 'V.3.2 - Steering' }, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '12', + ruleCode: 'V.3.2.3', + ruleContent: + 'Steering systems must use a rigid mechanical linkage capable of tension and compression loads for operation', + imageFileIds: [], + parentRule: { ruleId: '9', ruleCode: 'V.3.2 - Steering' }, + subRuleIds: [], + referencedRuleIds: [] + }, + { + ruleId: '13', + ruleCode: 'F - Chassis and Structural', + ruleContent: '', + imageFileIds: [], + parentRule: undefined, + subRuleIds: [], + referencedRuleIds: [] + } + ]; + + return { + data: { name: 'FSAE Original Version', rulesetId, rules: placeholderRules }, + isLoading: false, + isError: false, + error: undefined + }; +}; + +/** + * RulesetPage component for displaying and managing ruleset rules. + * Supports editing and assigning rules to projects and teams. + */ +const RulesetEditPage: React.FC = () => { + const { rulesetId } = useParams<{ rulesetId: string; tabValue?: string }>(); + const [tabValue, setTabValue] = useState(0); + const defaultTab = 'edit-rules'; + + const { data: ruleset, isError, error, isLoading } = useSingleRuleset(rulesetId); + + const tabs = [ + { tabUrlValue: 'edit-rules', tabName: 'Edit Rules' }, + { tabUrlValue: 'assign-rules', tabName: 'Assign Rules' } + ]; + + if (isError) { + return ; + } + + if (isLoading || !ruleset) { + return ; + } + + const handleAddRuleSection = () => { + // Placeholder + }; + + const handleAddRule = (ruleId: string) => { + // Placeholder + console.log('Add rule to:', ruleId); + }; + + const handleRemoveRule = (ruleId: string) => { + // Placeholder + console.log('Remove rule:', ruleId); + }; + + const handleEditRule = (ruleId: string) => { + // Placeholder + console.log('Edit rule:', ruleId); + }; + + // Filter to only show top-level rules + const topLevelRules = ruleset.rules.filter((rule) => !rule.parentRule); + + return ( + + + + } + > + + {tabValue === 0 ? ( + + + + + {topLevelRules.map((rule) => ( + ( + + )} + backgroundColor="#9d9d9d" + textColor="#000000" + hoverColor="#5e5e5e" + rowHeight="10px" + verticalPadding="5px" + /> + ))} + +
        +
        + + + + + + + + + ) : ( + {/* Assign Rules tab content will be added in a future ticket */} + )} +
        +
        + ); +}; + +export default RulesetEditPage; diff --git a/src/frontend/src/pages/RulesPage/RulesetPage.tsx b/src/frontend/src/pages/RulesPage/RulesetPage.tsx index 5706ea16f8..15d01d9a02 100644 --- a/src/frontend/src/pages/RulesPage/RulesetPage.tsx +++ b/src/frontend/src/pages/RulesPage/RulesetPage.tsx @@ -3,289 +3,81 @@ * See the LICENSE file in the repository root folder for details. */ -import { Box, Button, Paper, Table, TableBody, TableContainer } from '@mui/material'; -import { useState } from 'react'; -import { useParams } from 'react-router-dom'; +// List of rulesets for a specific ruleset type +import React from 'react'; import PageLayout from '../../components/PageLayout'; -import FullPageTabs from '../../components/FullPageTabs'; +import AddNewFileModal from './components/AddNewFileModal'; +import { NERButton } from '../../components/NERButton'; +import { useToast } from '../../hooks/toasts.hooks'; +import { useCreateRuleset, useParseRuleset } from '../../hooks/rules.hooks'; import { routes } from '../../utils/routes'; -import RuleRow from './RuleRow'; -import RuleActions from './RuleActions'; -import { Rule } from 'shared'; -import ErrorPage from '../ErrorPage'; -import LoadingIndicator from '../../components/LoadingIndicator'; +import { useHistory } from 'react-router-dom'; -/** - * Placeholder hook to fetch a single ruleset. - * @param rulesetId - The ID of the ruleset to fetch. - * @returns The ruleset data. - */ -const useSingleRuleset = (rulesetId: string) => { - const placeholderRules: Rule[] = [ - { - ruleId: '1', - ruleCode: 'GR - General Regulations', - ruleContent: '', - imageFileIds: [], - parentRule: undefined, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '2', - ruleCode: 'AD - Administrative Regulations', - ruleContent: '', - imageFileIds: [], - parentRule: undefined, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '3', - ruleCode: 'DR - Document Requirements', - ruleContent: '', - imageFileIds: [], - parentRule: undefined, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '4', - ruleCode: 'V - Vehicle Requirements', - ruleContent: '', - imageFileIds: [], - parentRule: undefined, - subRuleIds: ['5', '6', '7'], - referencedRuleIds: [] - }, - { - ruleId: '5', - ruleCode: 'V.1 - Configuration', - ruleContent: '', - imageFileIds: [], - parentRule: { ruleId: '4', ruleCode: 'V - Vehicle Requirements' }, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '6', - ruleCode: 'V.2 - Driver', - ruleContent: '', - imageFileIds: [], - parentRule: { ruleId: '4', ruleCode: 'V - Vehicle Requirements' }, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '7', - ruleCode: 'V.3 - Suspension and Steering', - ruleContent: '', - imageFileIds: [], - parentRule: { ruleId: '4', ruleCode: 'V - Vehicle Requirements' }, - subRuleIds: ['8', '9'], - referencedRuleIds: [] - }, - { - ruleId: '8', - ruleCode: 'V.3.1 - Suspension', - ruleContent: '', - imageFileIds: [], - parentRule: { ruleId: '7', ruleCode: 'V.3 - Suspension and Steering' }, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '9', - ruleCode: 'V.3.2 - Steering', - ruleContent: '', - imageFileIds: [], - parentRule: { ruleId: '7', ruleCode: 'V.3 - Suspension and Steering' }, - subRuleIds: ['10', '11', '12'], - referencedRuleIds: [] - }, - { - ruleId: '10', - ruleCode: 'V.3.2.1', - ruleContent: - 'Some super long rule content that should wrap to the next line, Some super long rule content that should wrap to the next line, Some super long rule content that should wrap to the next line, Some super long rule content that should wrap to the next line', - imageFileIds: [], - parentRule: { ruleId: '9', ruleCode: 'V.3.2 - Steering' }, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '11', - ruleCode: 'V.3.2.2', - ruleContent: 'Electrically actuated steering of the front wheels is prohibited', - imageFileIds: [], - parentRule: { ruleId: '9', ruleCode: 'V.3.2 - Steering' }, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '12', - ruleCode: 'V.3.2.3', - ruleContent: - 'Steering systems must use a rigid mechanical linkage capable of tension and compression loads for operation', - imageFileIds: [], - parentRule: { ruleId: '9', ruleCode: 'V.3.2 - Steering' }, - subRuleIds: [], - referencedRuleIds: [] - }, - { - ruleId: '13', - ruleCode: 'F - Chassis and Structural', - ruleContent: '', - imageFileIds: [], - parentRule: undefined, - subRuleIds: [], - referencedRuleIds: [] - } - ]; - - return { - data: { name: 'FSAE Original Version', rulesetId, rules: placeholderRules }, - isLoading: false, - isError: false, - error: undefined - }; -}; - -/** - * RulesetPage component for displaying and managing ruleset rules. - * Supports editing and assigning rules to projects and teams. - */ +// FSAE ruleset versions or FHE ruleset versions const RulesetPage: React.FC = () => { - const { rulesetId } = useParams<{ rulesetId: string; tabValue?: string }>(); - const [tabValue, setTabValue] = useState(0); - const defaultTab = 'edit-rules'; - - const { data: ruleset, isError, error, isLoading } = useSingleRuleset(rulesetId); - - const tabs = [ - { tabUrlValue: 'edit-rules', tabName: 'Edit Rules' }, - { tabUrlValue: 'assign-rules', tabName: 'Assign Rules' } - ]; - - if (isError) { - return ; - } - - if (isLoading || !ruleset) { - return ; - } - - const handleAddRuleSection = () => { - // Placeholder - }; - - const handleAddRule = (ruleId: string) => { - // Placeholder - console.log('Add rule to:', ruleId); - }; - - const handleRemoveRule = (ruleId: string) => { - // Placeholder - console.log('Remove rule:', ruleId); - }; + const [AddFileModalShow, setAddFileModalShow] = React.useState(false); + const { mutateAsync: createRuleset } = useCreateRuleset(); + const { mutateAsync: parseRuleset } = useParseRuleset(); + const toast = useToast(); + const history = useHistory(); + + const handleFileConfirm = async (data: { + fileId: string; + name: string; + car: string; + isActive: boolean; + parserType: string; + }) => { + setAddFileModalShow(false); + try { + console.log('Creating ruleset...'); + const ruleset = await createRuleset({ + fileId: data.fileId, + name: data.name, + rulesetTypeId: data.car, + carNumber: parseInt(data.car), + active: data.isActive + }); + + console.log('Full ruleset response:', ruleset); + console.log('Ruleset type:', typeof ruleset); + console.log('Ruleset keys:', Object.keys(ruleset)); + console.log('Ruleset.rulesetId:', ruleset.rulesetId); + console.log('Ruleset.id:', ruleset.rulesetId); + + const rulesetId = ruleset.rulesetId || ruleset.rulesetId; + + if (!rulesetId) { + console.error('No rulesetId found in response!'); + throw new Error('No rulesetId returned from createRuleset'); + } - const handleEditRule = (ruleId: string) => { - // Placeholder - console.log('Edit rule:', ruleId); + console.log('Parsing ruleset with ID:', rulesetId); + const parsedRules = await parseRuleset({ + rulesetId, + fileId: data.fileId, + parserType: data.parserType as 'FSAE' | 'FHE' + }); + console.log('Rules parsed:', parsedRules.length); + toast.success(`Successfully parsed ${parsedRules.length} rules!`); + } catch (e) { + console.error('Error in handleFileConfirm:', e); + toast.error('Error uploading file: ' + (e instanceof Error ? e.message : 'Unknown error')); + } }; - // Filter to only show top-level rules - const topLevelRules = ruleset.rules.filter((rule) => !rule.parentRule); - return ( - - - - } - > - - {tabValue === 0 ? ( - - - - - {topLevelRules.map((rule) => ( - ( - - )} - backgroundColor="#9d9d9d" - textColor="#000000" - hoverColor="#5e5e5e" - rowHeight="10px" - verticalPadding="5px" - /> - ))} - -
        -
        - - - - - - - - - ) : ( - {/* Assign Rules tab content will be added in a future ticket */} - )} -
        + + setAddFileModalShow(!AddFileModalShow)}> + Add New File + + setAddFileModalShow(false)} + onFormSubmit={handleFileConfirm} + carOptions={['1', '2']} + /> + history.push(`${routes.RULES}/placeholder_ruleset_id/edit`)}>MOCK edit/assign rules ); }; diff --git a/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx b/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx index 1095eaa3a6..180337943a 100644 --- a/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx +++ b/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx @@ -2,76 +2,22 @@ * This file is part of NER's FinishLine and licensed under GNU AGPLv3. * See the LICENSE file in the repository root folder for details. */ + +// Landing page for the list of ruleset types import React from 'react'; import PageLayout from '../../components/PageLayout'; -import AddNewFileModal from './components/AddNewFileModal'; import { NERButton } from '../../components/NERButton'; -import { useToast } from '../../hooks/toasts.hooks'; -import { useCreateRuleset, useParseRuleset } from '../../hooks/rules.hooks'; +import { useHistory } from 'react-router-dom'; +import { routes } from '../../utils/routes'; // FSAE or FHE page const RulesetTypePage: React.FC = () => { - const [AddFileModalShow, setAddFileModalShow] = React.useState(false); - const { mutateAsync: createRuleset } = useCreateRuleset(); - const { mutateAsync: parseRuleset } = useParseRuleset(); - const toast = useToast(); - - const handleFileConfirm = async (data: { - fileId: string; - name: string; - car: string; - isActive: boolean; - parserType: string; - }) => { - setAddFileModalShow(false); - try { - console.log('Creating ruleset...'); - const ruleset = await createRuleset({ - fileId: data.fileId, - name: data.name, - rulesetTypeId: data.car, - carNumber: parseInt(data.car), - active: data.isActive - }); - - console.log('Full ruleset response:', ruleset); - console.log('Ruleset type:', typeof ruleset); - console.log('Ruleset keys:', Object.keys(ruleset)); - console.log('Ruleset.rulesetId:', ruleset.rulesetId); - console.log('Ruleset.id:', ruleset.rulesetId); - - const rulesetId = ruleset.rulesetId || ruleset.rulesetId; - - if (!rulesetId) { - console.error('No rulesetId found in response!'); - throw new Error('No rulesetId returned from createRuleset'); - } - - console.log('Parsing ruleset with ID:', rulesetId); - const parsedRules = await parseRuleset({ - rulesetId: rulesetId, - fileId: data.fileId, - parserType: data.parserType as 'FSAE' | 'FHE' - }); - console.log('Rules parsed:', parsedRules.length); - toast.success(`Successfully parsed ${parsedRules.length} rules!`); - } catch (e) { - console.error('Error in handleFileConfirm:', e); - toast.error('Error uploading file: ' + (e instanceof Error ? e.message : 'Unknown error')); - } - }; + const history = useHistory(); return ( - setAddFileModalShow(!AddFileModalShow)}> - Add New File - - setAddFileModalShow(false)} - onFormSubmit={handleFileConfirm} - carOptions={['1', '2']} - /> + {/* Placeholder to navigate when clicking on a ruleset type's view button*/} + history.push(`${routes.RULES}/placeholder_ruleset_id`)}>FSAE ); }; diff --git a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx index 989cce4c6d..5eb9935979 100644 --- a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx +++ b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx @@ -157,7 +157,7 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS hidden onChange={async (e) => { if (e.target.files && e.target.files[0]) { - const selectedFile = e.target.files[0]; + const [selectedFile] = e.target.files; if (!isPdf(selectedFile.name)) { toast.error('File must be a PDF'); diff --git a/src/frontend/src/utils/routes.ts b/src/frontend/src/utils/routes.ts index 66882d6cee..414602ca64 100644 --- a/src/frontend/src/utils/routes.ts +++ b/src/frontend/src/utils/routes.ts @@ -83,6 +83,7 @@ const RETROSPECTIVE = `/retrospective`; /**************** Rules ****************/ const RULES = `/rules`; const RULESET_BY_ID = RULES + `/:rulesetId`; +const RULESET_EDIT = RULESET_BY_ID + `/edit` export const routes = { BASE, @@ -152,5 +153,6 @@ export const routes = { RETROSPECTIVE, RULES, - RULESET_BY_ID + RULESET_BY_ID, + RULESET_EDIT }; From cc2155a31c5bcdd5d19edf7e89a8adc347fb872d Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Sun, 14 Dec 2025 19:03:36 -0500 Subject: [PATCH 16/25] #3622 file modal updates --- .../src/pages/RulesPage/RulesetEditPage.tsx | 2 +- .../src/pages/RulesPage/RulesetPage.tsx | 3 +- .../src/pages/RulesPage/RulesetViewPage.tsx | 2 +- .../RulesPage/components/AddNewFileModal.tsx | 159 ++++++++++-------- 4 files changed, 92 insertions(+), 74 deletions(-) diff --git a/src/frontend/src/pages/RulesPage/RulesetEditPage.tsx b/src/frontend/src/pages/RulesPage/RulesetEditPage.tsx index cbe892c23f..72acd0cd43 100644 --- a/src/frontend/src/pages/RulesPage/RulesetEditPage.tsx +++ b/src/frontend/src/pages/RulesPage/RulesetEditPage.tsx @@ -20,7 +20,7 @@ import LoadingIndicator from '../../components/LoadingIndicator'; * @param rulesetId - The ID of the ruleset to fetch. * @returns The ruleset data. */ -const useSingleRuleset = (rulesetId: string) => { +export const useSingleRuleset = (rulesetId: string) => { const placeholderRules: Rule[] = [ { ruleId: '1', diff --git a/src/frontend/src/pages/RulesPage/RulesetPage.tsx b/src/frontend/src/pages/RulesPage/RulesetPage.tsx index 4a0c07e268..11b4effd8c 100644 --- a/src/frontend/src/pages/RulesPage/RulesetPage.tsx +++ b/src/frontend/src/pages/RulesPage/RulesetPage.tsx @@ -25,7 +25,6 @@ const RulesetPage: React.FC = () => { fileId: string; name: string; car: string; - isActive: boolean; parserType: string; }) => { setAddFileModalShow(false); @@ -36,7 +35,7 @@ const RulesetPage: React.FC = () => { name: data.name, rulesetTypeId: data.car, carNumber: parseInt(data.car), - active: data.isActive + active: false, }); console.log('Full ruleset response:', ruleset); diff --git a/src/frontend/src/pages/RulesPage/RulesetViewPage.tsx b/src/frontend/src/pages/RulesPage/RulesetViewPage.tsx index 6b81cfc5a4..85c9baf809 100644 --- a/src/frontend/src/pages/RulesPage/RulesetViewPage.tsx +++ b/src/frontend/src/pages/RulesPage/RulesetViewPage.tsx @@ -5,7 +5,7 @@ import { routes } from '../../utils/routes'; import { Box } from '@mui/system'; import { Typography } from '@mui/material'; import { useParams } from 'react-router-dom'; -import { useSingleRuleset } from './RulesetPage'; +import { useSingleRuleset } from './RulesetEditPage'; import ErrorPage from '../ErrorPage'; import LoadingIndicator from '../../components/LoadingIndicator'; diff --git a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx index 5eb9935979..d7e92a29c8 100644 --- a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx +++ b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx @@ -1,5 +1,4 @@ import NERFormModal from '../../../components/NERFormModal'; -import Checkbox from '@mui/material/Checkbox'; import { useForm, Controller } from 'react-hook-form'; import { Box, FormControl, TextField, Typography, FormLabel, FormHelperText, Button } from '@mui/material'; import { useState } from 'react'; @@ -21,37 +20,37 @@ interface NewFileFormData { fileId: string; name: string; car: string; - isActive: boolean; parserType: 'FSAE' | 'FHE'; } -const isPdf = (fileName: string) => { - const extension = fileName.split('.').pop()?.toLowerCase(); - return extension === 'pdf'; -}; - interface ButtonGroupProps { options: string[]; value: string; onChange: (option: string) => any; - error?: boolean; } const sectionHeaderStyle = { fontWeight: 'bold', color: '#ef4345', - fontSize: '1rem' + textDecoration: 'underline', + fontSize: '1rem', + textUnderlineOffset: '3px', + marginBottom: '5px' +}; + +const isPdf = (fileName: string) => { + const extension = fileName.split('.').pop()?.toLowerCase(); + return extension === 'pdf'; }; const schema = yup.object({ fileId: yup.string().required('File is required'), name: yup.string().required('Name is required'), car: yup.string().required('Car is required'), - isActive: yup.boolean().required(), parserType: yup.string().oneOf(['FSAE', 'FHE']).required('Parser type is required') }); -const ButtonGroup: React.FC = ({ options, value, onChange, error }) => { +const ButtonGroup: React.FC = ({ options, value, onChange }) => { return (
        {options.map((option) => ( @@ -62,13 +61,23 @@ const ButtonGroup: React.FC = ({ options, value, onChange, err style={{ borderRadius: 6, height: 25, - border: error ? '1px solid #d32f2f' : 0, + border: 0, backgroundColor: value === option ? '#ef4345' : '#c7c7c7ff', transition: 'background-color 120ms ease', cursor: 'pointer' }} + onMouseEnter={(e) => { + if (value !== option) { + e.currentTarget.style.backgroundColor = '#dededeff'; + } + }} + onMouseLeave={(e) => { + if (value !== option) { + e.currentTarget.style.backgroundColor = '#c7c7c7ff'; + } + }} > - {option} + {option}{/* ? need ?*/} ))}
        @@ -94,7 +103,6 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS fileId: '', name: '', car: '', - isActive: false, parserType: 'FSAE' } }); @@ -115,19 +123,62 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS } }; + const handleFileUpload = async (e: React.ChangeEvent) => { + if (!e.target.files || !e.target.files[0]) { + return; + } + + const [selectedFile] = e.target.files; + + if (!isPdf(selectedFile.name)) { + const error = 'File must be a PDF'; + toast.error(error); + return; + } + + if (selectedFile.size > MAX_FILE_SIZE) { + const error = `File exceeds the maximum size limit of ${MAX_FILE_SIZE / (1024 * 1024)} MB`; + toast.error(error); + return; + } + + setUploading(true); + + try { + const fileId = await uploadFile(selectedFile); + setValue('fileId', fileId, { shouldValidate: true }); + setFile(selectedFile); + toast.success('File uploaded successfully'); + } catch (error: unknown) { + let errorMessage = 'File upload failed. Please try again.'; + if (error instanceof Error) { + errorMessage = error.message || errorMessage; + } + toast.error(errorMessage); + setFile(null); + setValue('fileId', '', { shouldValidate: false }); + } finally { + setUploading(false); + } + }; + + const handleModalClose = () => { + setFile(null); + reset(); + onHide(); + }; + + const handleReset = () => { + setFile(null); + reset(); + }; + return ( { - setFile(null); - reset(); - onHide(); - }} + onHide={handleModalClose} title="Add New File" - reset={() => { - setFile(null); - reset(); - }} + reset={handleReset} handleUseFormSubmit={handleSubmit} onFormSubmit={handleFormSubmit} formId={'add-new-file-form'} @@ -136,10 +187,10 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS > - + {/* File Upload */} - - Upload Ruleset File + + Upload Ruleset File: {file && {file.name}} {uploading && Uploading...} @@ -150,57 +201,34 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS startIcon={} disabled={uploading || !!file} > - {file ? 'File Selected' : 'Upload'} + {file ? 'File Selected' : 'Select File'} { - if (e.target.files && e.target.files[0]) { - const [selectedFile] = e.target.files; - - if (!isPdf(selectedFile.name)) { - toast.error('File must be a PDF'); - return; - } - - if (selectedFile.size > MAX_FILE_SIZE) { - toast.error(`File exceeds the maximum size limit of ${MAX_FILE_SIZE / (1024 * 1024)} MB`); - return; - } - setUploading(true); - try { - const fileId = await uploadFile(selectedFile); - setValue('fileId', fileId, { shouldValidate: true }); - setFile(selectedFile); - toast.success('File uploaded successfully'); - } catch (error: unknown) { - toast.error('File upload failed'); - } finally { - setUploading(false); - } - } - }} + onChange={handleFileUpload} /> {errors.fileId?.message} + {/* Car */} - - Car + + Car: ( - + )} /> {errors.car?.message} + {/* Parser Type */} - - Parser Type + + Parser Type: = ({ open, onHide, onFormS options={['FSAE', 'FHE']} value={parserTypeValue} onChange={(value) => onChange(value as 'FSAE' | 'FHE')} - error={!!errors.parserType} /> )} /> {errors.parserType?.message} - {/* Active */} - - Active - } - /> - + {/* Ruleset Name */} - Name Ruleset File + Name Ruleset File: ( - + )} /> {errors.name?.message} From b578f543ce358443e379fdd1c9110c71aec884fb Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Sun, 14 Dec 2025 19:58:02 -0500 Subject: [PATCH 17/25] #3622 connect car to file upload modal --- .../src/pages/RulesPage/RulesetPage.tsx | 12 ++-- .../RulesPage/components/AddNewFileModal.tsx | 70 ++++++++++++------- 2 files changed, 51 insertions(+), 31 deletions(-) diff --git a/src/frontend/src/pages/RulesPage/RulesetPage.tsx b/src/frontend/src/pages/RulesPage/RulesetPage.tsx index 11b4effd8c..798541cd7c 100644 --- a/src/frontend/src/pages/RulesPage/RulesetPage.tsx +++ b/src/frontend/src/pages/RulesPage/RulesetPage.tsx @@ -24,17 +24,20 @@ const RulesetPage: React.FC = () => { const handleFileConfirm = async (data: { fileId: string; name: string; - car: string; + carNumber: number; parserType: string; }) => { setAddFileModalShow(false); try { console.log('Creating ruleset...'); + + const rulesetTypeId = 'PLACEHOLDER_RULESET_TYPE_ID'; /* TODO */ + const ruleset = await createRuleset({ fileId: data.fileId, name: data.name, - rulesetTypeId: data.car, - carNumber: parseInt(data.car), + rulesetTypeId, + carNumber: data.carNumber, active: false, }); @@ -44,7 +47,7 @@ const RulesetPage: React.FC = () => { console.log('Ruleset.rulesetId:', ruleset.rulesetId); console.log('Ruleset.id:', ruleset.rulesetId); - const rulesetId = ruleset.rulesetId || ruleset.rulesetId; + const { rulesetId } = ruleset; if (!rulesetId) { console.error('No rulesetId found in response!'); @@ -74,7 +77,6 @@ const RulesetPage: React.FC = () => { open={AddFileModalShow} onHide={() => setAddFileModalShow(false)} onFormSubmit={handleFileConfirm} - carOptions={['1', '2']} /> history.push(`${routes.RULES}/placeholder_ruleset_id/edit`)}>MOCK edit/assign rules
        diff --git a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx index d7e92a29c8..a494839b9e 100644 --- a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx +++ b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx @@ -1,32 +1,32 @@ import NERFormModal from '../../../components/NERFormModal'; import { useForm, Controller } from 'react-hook-form'; -import { Box, FormControl, TextField, Typography, FormLabel, FormHelperText, Button } from '@mui/material'; -import { useState } from 'react'; +import { Box, FormControl, TextField, Typography, FormLabel, FormHelperText, Button, Select, MenuItem } from '@mui/material'; +import { useEffect, useState } from 'react'; import * as yup from 'yup'; import { yupResolver } from '@hookform/resolvers/yup'; import { useToast } from '../../../hooks/toasts.hooks'; import { FileUpload } from '@mui/icons-material'; import { MAX_FILE_SIZE } from 'shared'; import { useUploadRulesetFile } from '../../../hooks/rules.hooks'; +import { useGetAllCars } from '../../../hooks/cars.hooks'; interface AddNewFileModalProps { open: boolean; onHide: () => void; onFormSubmit: (data: NewFileFormData) => Promise; - carOptions: string[]; } interface NewFileFormData { fileId: string; name: string; - car: string; + carNumber: number; parserType: 'FSAE' | 'FHE'; } interface ButtonGroupProps { options: string[]; value: string; - onChange: (option: string) => any; + onChange: (value: string) => any; } const sectionHeaderStyle = { @@ -34,8 +34,8 @@ const sectionHeaderStyle = { color: '#ef4345', textDecoration: 'underline', fontSize: '1rem', - textUnderlineOffset: '3px', - marginBottom: '5px' + textUnderlineOffset: '5px', + marginBottom: '10px' }; const isPdf = (fileName: string) => { @@ -46,13 +46,13 @@ const isPdf = (fileName: string) => { const schema = yup.object({ fileId: yup.string().required('File is required'), name: yup.string().required('Name is required'), - car: yup.string().required('Car is required'), + carNumber: yup.number().min(0).required('Car is required'), parserType: yup.string().oneOf(['FSAE', 'FHE']).required('Parser type is required') }); const ButtonGroup: React.FC = ({ options, value, onChange }) => { return ( -
        +
        {options.map((option) => ( {/* Temporary for navigation */} - history.push(`${routes.RULES}/placeholder_ruleset_id`)}>FSAE Ruleset + history.push(`${routes.RULES}/35fdd134-0ca5-4e42-a50a-3a7ebc852a74`)}> + FSAE Ruleset + diff --git a/src/frontend/src/utils/routes.ts b/src/frontend/src/utils/routes.ts index aa6ce0de87..5d0b4f006e 100644 --- a/src/frontend/src/utils/routes.ts +++ b/src/frontend/src/utils/routes.ts @@ -82,9 +82,9 @@ const RETROSPECTIVE = `/retrospective`; /**************** Rules ****************/ const RULES = `/rules`; -const RULESET_BY_ID = RULES + `/:rulesetId`; -const RULESET_VIEW = RULESET_BY_ID + `/view`; -const RULESET_EDIT = RULESET_BY_ID + `/edit`; +const RULESET_TYPE = RULES + `/:rulesetTypeId`; +const RULESET_VIEW = RULESET_TYPE + `/view`; +const RULESET_EDIT = RULESET_TYPE + `/edit`; export const routes = { BASE, @@ -154,7 +154,7 @@ export const routes = { RETROSPECTIVE, RULES, - RULESET_BY_ID, + RULESET_TYPE, RULESET_VIEW, RULESET_EDIT }; From c1a7dd8ae5e0d2ec924bdbe88f199eb411fe5507 Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Wed, 24 Dec 2025 13:01:34 -0500 Subject: [PATCH 19/25] #3622 upload file backend --- src/backend/src/controllers/rules.controllers.ts | 15 +++++++++++++++ src/backend/src/routes/rules.routes.ts | 5 +++++ src/backend/src/services/rules.services.ts | 11 ++++++++++- src/frontend/src/apis/rules.api.ts | 6 ++++-- 4 files changed, 34 insertions(+), 3 deletions(-) diff --git a/src/backend/src/controllers/rules.controllers.ts b/src/backend/src/controllers/rules.controllers.ts index c84c3e7900..ef834eb146 100644 --- a/src/backend/src/controllers/rules.controllers.ts +++ b/src/backend/src/controllers/rules.controllers.ts @@ -1,6 +1,7 @@ import { NextFunction, Request, Response } from 'express'; import RulesService from '../services/rules.services'; import { ProjectRule, Rule, Ruleset } from 'shared'; +import { HttpException } from '../utils/errors.utils'; export default class RulesController { static async getActiveRuleset(req: Request, res: Response, next: NextFunction) { @@ -292,4 +293,18 @@ export default class RulesController { next(error); } } + + static async uploadRulesetFile(req: Request, res: Response, next: NextFunction) { + try { + if (!req.file) { + throw new HttpException(400, 'Invalid or undefined file data'); + } + + const fileId = await RulesService.uploadRulesetFile(req.file, req.currentUser, req.organization); + + res.status(200).json(fileId); + } catch (error: unknown) { + next(error); + } + } } diff --git a/src/backend/src/routes/rules.routes.ts b/src/backend/src/routes/rules.routes.ts index 9a268ba7c7..9c4710af6a 100644 --- a/src/backend/src/routes/rules.routes.ts +++ b/src/backend/src/routes/rules.routes.ts @@ -2,6 +2,8 @@ import express from 'express'; import RulesController from '../controllers/rules.controllers'; import { nonEmptyString, validateInputs } from '../utils/validation.utils'; import { body } from 'express-validator'; +import { MAX_FILE_SIZE } from 'shared'; +import multer, { memoryStorage } from 'multer'; const rulesRouter = express.Router(); @@ -99,4 +101,7 @@ rulesRouter.post( RulesController.parseRuleset ); +const upload = multer({ limits: { fileSize: MAX_FILE_SIZE }, storage: memoryStorage() }); +rulesRouter.post('/upload/file', upload.single('file'), RulesController.uploadRulesetFile); + export default rulesRouter; diff --git a/src/backend/src/services/rules.services.ts b/src/backend/src/services/rules.services.ts index f1736b8589..1c793f37c9 100644 --- a/src/backend/src/services/rules.services.ts +++ b/src/backend/src/services/rules.services.ts @@ -34,8 +34,8 @@ import { rulesetTypeTransformer, rulesetPreviewTransformer } from '../transformers/rules.transformer'; -import { downloadFile } from '../utils/google-integration.utils'; import { ParsedRule, parseRulesFromPdf } from '../utils/parse.utils'; +import { uploadFile, downloadFile } from '../utils/google-integration.utils'; export default class RulesService { /** @@ -1369,4 +1369,13 @@ export default class RulesService { return savedRules.map(ruleTransformer); } + + static async uploadRulesetFile(file: Express.Multer.File, uploader: User, organization: Organization) { + if (!(await userHasPermission(uploader.userId, organization.organizationId, isLeadership))) { + throw new AccessDeniedException('Only leadership and above can upload ruleset files'); + } + + const data = await uploadFile(file); + return data.id; + } } diff --git a/src/frontend/src/apis/rules.api.ts b/src/frontend/src/apis/rules.api.ts index 8dd048b8ab..7789ec1a68 100644 --- a/src/frontend/src/apis/rules.api.ts +++ b/src/frontend/src/apis/rules.api.ts @@ -20,11 +20,13 @@ export const parseRuleset = (payload: ParseRulesetPayload) => { }); }; - +/** + * Upload ruleset PDF file + */ export const uploadRulesetFile = (file: File) => { const formData = new FormData(); formData.append('file', file); return axios.post(apiUrls.uploadRulesetFile(), formData, { transformResponse: (data) => JSON.parse(data) }); -}; \ No newline at end of file +}; From 355a09f5e67af559b22628deacc5f37542cd68ad Mon Sep 17 00:00:00 2001 From: Ciel Bellerose Date: Fri, 2 Jan 2026 13:43:08 -0500 Subject: [PATCH 20/25] #3622 ruleset pr fixes --- src/backend/src/controllers/rules.controllers.ts | 2 +- src/backend/src/prisma-query-args/rules.query-args.ts | 6 +++++- src/backend/src/services/rules.services.ts | 8 +++----- src/backend/src/transformers/rules.transformer.ts | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/backend/src/controllers/rules.controllers.ts b/src/backend/src/controllers/rules.controllers.ts index ef834eb146..7a43231569 100644 --- a/src/backend/src/controllers/rules.controllers.ts +++ b/src/backend/src/controllers/rules.controllers.ts @@ -102,7 +102,7 @@ export default class RulesController { static async getRulesetsByRulesetType(req: Request, res: Response, next: NextFunction) { try { - const rulesetTypeId = req.body; + const { rulesetTypeId } = req.params; const rulesets = await RulesService.getRulesetsByRulesetType(rulesetTypeId, req.organization.organizationId); res.status(200).json(rulesets); } catch (error: unknown) { diff --git a/src/backend/src/prisma-query-args/rules.query-args.ts b/src/backend/src/prisma-query-args/rules.query-args.ts index acb098e426..ac26cd6844 100644 --- a/src/backend/src/prisma-query-args/rules.query-args.ts +++ b/src/backend/src/prisma-query-args/rules.query-args.ts @@ -65,7 +65,11 @@ export const getRulesetQueryArgs = (organizationId: string) => } }, rulesetType: true, - car: true, + car: { + include: { + wbsElement: true + } + }, createdBy: getUserQueryArgs(organizationId) } }); diff --git a/src/backend/src/services/rules.services.ts b/src/backend/src/services/rules.services.ts index 1c793f37c9..487595ddd1 100644 --- a/src/backend/src/services/rules.services.ts +++ b/src/backend/src/services/rules.services.ts @@ -24,15 +24,13 @@ import { userHasPermission } from '../utils/users.utils'; import { getProjectRuleQueryArgs, getRulesetQueryArgs, - getRulesetPreviewQueryArgs, getRulePreviewQueryArgs } from '../prisma-query-args/rules.query-args'; import { ruleTransformer, projectRuleTransformer, rulesetTransformer, - rulesetTypeTransformer, - rulesetPreviewTransformer + rulesetTypeTransformer } from '../transformers/rules.transformer'; import { ParsedRule, parseRulesFromPdf } from '../utils/parse.utils'; import { uploadFile, downloadFile } from '../utils/google-integration.utils'; @@ -524,10 +522,10 @@ export default class RulesService { organizationId } }, - ...getRulesetPreviewQueryArgs() + ...getRulesetQueryArgs(organizationId) }); - return rulesets.map(rulesetPreviewTransformer); + return rulesets.map(rulesetTransformer); } /** diff --git a/src/backend/src/transformers/rules.transformer.ts b/src/backend/src/transformers/rules.transformer.ts index 4c1b0af6be..37d5d52c0f 100644 --- a/src/backend/src/transformers/rules.transformer.ts +++ b/src/backend/src/transformers/rules.transformer.ts @@ -53,7 +53,7 @@ export const rulesetTransformer = (ruleset: Prisma.RulesetGetPayload Date: Fri, 2 Jan 2026 14:39:14 -0500 Subject: [PATCH 21/25] #3622 added ruleset pr items for ruleset table --- src/frontend/src/hooks/rules.hooks.ts | 13 +- .../src/pages/RulesPage/RulesetTypePage.tsx | 2 - .../RulesPage/components/AddNewFileModal.tsx | 24 +- .../RulesPage/components/RulesetTable.tsx | 236 ++++-------------- .../RulesPage/components/RulesetTypeTable.tsx | 12 +- 5 files changed, 61 insertions(+), 226 deletions(-) diff --git a/src/frontend/src/hooks/rules.hooks.ts b/src/frontend/src/hooks/rules.hooks.ts index 47a438315f..11254ba3cc 100644 --- a/src/frontend/src/hooks/rules.hooks.ts +++ b/src/frontend/src/hooks/rules.hooks.ts @@ -14,7 +14,8 @@ import { parseRuleset, uploadRulesetFile, getAllRulesetTypes, - getRulesetsByRulesetType + getRulesetsByRulesetType, + createRuleset } from '../apis/rules.api'; interface CreateRulesetTypePayload { @@ -36,14 +37,14 @@ export interface CreateRulesetPayload { } export const useGetTopLevelRules = (rulesetId: string) => { - return useQuery(['rules', 'top-level', rulesetId], async () => { + return useQuery(['rules', 'top-level', rulesetId], async () => { const { data } = await getTopLevelRules(rulesetId); return data; }); }; export const useGetChildRules = (ruleId: string) => { - return useQuery(['rules', 'children', ruleId], async () => { + return useQuery(['rules', 'children', ruleId], async () => { const { data } = await getChildRules(ruleId); return data; }); @@ -51,7 +52,7 @@ export const useGetChildRules = (ruleId: string) => { export const useToggleRuleTeam = () => { const queryClient = useQueryClient(); - return useMutation( + return useMutation( ['rules', 'toggle-team'], async ({ ruleId, teamId }) => { const { data } = await toggleRuleTeam(ruleId, teamId); @@ -66,7 +67,7 @@ export const useToggleRuleTeam = () => { }; export const useGetTeamRulesInRulesetType = (rulesetTypeId: string, teamId: string) => { - return useQuery(['rules', 'team-rules', rulesetTypeId, teamId], async () => { + return useQuery(['rules', 'team-rules', rulesetTypeId, teamId], async () => { const { data } = await getTeamRulesInRulesetType(rulesetTypeId, teamId); return data; }); @@ -116,7 +117,6 @@ export const useRulesetsByType = (rulesetTypeId: string) => { }); }; - export const useCreateRuleset = () => { const queryClient = useQueryClient(); return useMutation( @@ -160,4 +160,3 @@ export const useUploadRulesetFile = () => { return data; }); }; - diff --git a/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx b/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx index 4f493cb846..c1c1112be3 100644 --- a/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx +++ b/src/frontend/src/pages/RulesPage/RulesetTypePage.tsx @@ -9,8 +9,6 @@ import PageLayout from '../../components/PageLayout'; import { Box, Typography } from '@mui/material'; import RulesetTypeTable from './components/RulesetTypeTable'; import { NERButton } from '../../components/NERButton'; -import { useHistory } from 'react-router-dom'; -import { routes } from '../../utils/routes'; import AddRulesetTypeModal from './components/AddRulesetTypeModal'; import { useState } from 'react'; import { useCreateRulesetType } from '../../hooks/rules.hooks'; diff --git a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx index a494839b9e..13237b99d8 100644 --- a/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx +++ b/src/frontend/src/pages/RulesPage/components/AddNewFileModal.tsx @@ -52,7 +52,7 @@ const schema = yup.object({ const ButtonGroup: React.FC = ({ options, value, onChange }) => { return ( -
        +
        {options.map((option) => ( ))}
        @@ -96,7 +97,6 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS handleSubmit, reset, setValue, - watch, control } = useForm({ resolver: yupResolver(schema), @@ -193,7 +193,6 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS - {/* File Upload */} Upload Ruleset File: @@ -208,12 +207,7 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS disabled={uploading || !!file} > {file ? 'File Selected' : 'Select File'} - + {errors.fileId?.message} @@ -232,7 +226,7 @@ const AddNewFileModal: React.FC = ({ open, onHide, onFormS control={control} render={({ field }) => (

        4cnUL~@)VTCkQ)?F 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 z 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�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 z z;xfqZ=<_jzJN%h!9+uJ+ue8J+qyCUeA&WHQ#UkZlEoR2Z`sQBL@cQXWcLH2249~|x zneFwv$UUSh?WDE&s!h*&vKgZ&w|E+w?-S$E_sfCw*qJ9D`Ff-$9?6t%O}?QbisHI} zcA~@KW-3xIRhmC`+HwQmbKTJw2J7~t6&tttJaF%^v7}!X#;7sjI>+lga(6`& zGbs4jL1L6a@f{#ayzn(^8x3!IaMIj&d+2B;Z={a8H`u)slzSpb_f2i-w!pO$kU zyZBEy$)CLd9!d3DuIvA!?JJ|>RkkR+0igkYuw2nOO|jpixAeCdu0Q5iHYph#j(`9ztYRM!oFFODvj zkOr91^U45eFlEw}MnhDnl2|puDE_&E&y%2lFO~zC{p%U|N&kaL63Bxw8m|-^;@mIn zo!}b{l%bK7bD%6~k-MZNy@(&_Nbk(_y2Gjw*}?xOj3Zj;b6@wS2uK0hCuQvqIpI&o7~wXAk`kVXIDPhq|RC)+&0ayV#CC z_PH6)U4pw<{%7T~VuU8O4G&U>NA| ztal^~pbP+$HiVWmcAeXKZ+J2Q<}VGDAdKP0cVgcqx$UvjfS+{3$g1t{!b6G>$f`v` z2w7fglYS{|4rC>bCFFMA9*!rMj3tyd_zxwNBBXRm>Q}~irn-}tG?-15%8e7;8Sae_ zB}Y8Q+(iQ~O0flm;yjVgSibQ1W6jgV#lPvNI79~ z!mJGV=><7s0ce5}dM^m^`VRq!LG@^V1I@>H3^ct9ne}gngy5+;FF1~{d@%OWeoFQA!!NPD9jno~Lb@8Y92 zg#SsHN_(Rcs$VfJ`{^kkD5Q22j_|6KPfU9w8tPv*jr#vp=%N=&(qgwDM^Z8x0H=3bu71IWvo+^O>>i?7Qhg$xBl#6#c zkV*Zh7~$W9|16iq}`TSCv8}`tglIc{eeBbFxFnsq_3Hj3lltCX2R}u{Q zLz;vNmaWQbol#Y}V`_AOlmxZzseq4Yqv4lW7&*XRRm(*jHvn2>2nH!>Q3xyPP<|3L zHh+W)w$>Ag%ojuS5KC@}@(?K+GZ7j@IY&gy^Mp1M~8&} z1nifHNiSz%<1nW}HT$Ck2J3OTm~^Wy)00U#{jvG%^maB?4|8YZlJoJucM=uZ&Qj%` zDd+r0_IKqbGDZf{b+i5f-dw5|<|i9+KQhZb*lz7hpiE_i|8KDV_1ASP=~>xeXlF}o zVB^WG6E!+j!sTN>!X2 zM&WDCn;WKF9+^^<%Vc~!9dRu+8R%emQ)`oCCd*x~|ZTKxY2$~M(sZS3my{$SZS^|03u361v+j)*z5 zCU4<#_StJ&9ljrjfNS_LN*~CIXsASy1P4$0w;Cp+IejnlIXsN^Nb$Jv<$9e2USvCz zZ+-dmxQ_!;>u)=Q4yZ7^^v;;4QJW zN9VC@&02SVQ`19^;UA7z`Vs4hk~<5-KjKvM6V?%(uwuujQcquarzdM6SrCiIfiw+D zqx4Cv{|_{1784*aE=R+rIvSlQ@?ry?X#h5OyCfED9Yy1eG!3$&rwOe8PQePa1tfmh z#W~1HYNIwgA0gSz8)pXp2r|av&?$Hh^nDqy%yJ`_NFX|I5Qphfo)6@xu-dv0Vt*4gAZEQ?pRO zgP9@9}Me z7;#U5;Ly!Hn1&wsNG0v;%gOpM{6jP_9k?37dTD_k8NTSArL0lieCjGtn_fp^+u2`D znk8NPhN`|DnQ@s1h;ccLLxAji(~vPX&{$>*Gcl>iXJl2!F+le06n(!XyI91K3W-JC zXC;K>POD=4DV9|vnB2fGWxWa^F7{&(Iup5QFBLYwyKs54PAP02-6z<|7L;z-R?H+? zP+`nCu&p>c>Eo`C!-D+JMmytiFl(wdIDGm z*YXE&^~3S$?8$-OK5@b44@a(vOq(LLize4q;I&78^Z>9)EaXqbVwfp)N17^iLzpT# zu3HEPLvL7m{-6RF<}(AhPrl9=dR1`5wkxu0nSx+`4^JC@!LH$~gMdP&nsE9CN>{L9 zzBI=oR5mQ!hO@_qW-|6!ELf$(+Dub?Tg-Dyt#azL8^OO>U5JIiZ@@z)uGR`R zS8swj>ou1Q%NzAp_J8snjh&nhio-?8jYw4@n* z{p}f0avMuW(L6KsikfMPA+&XNwWkms@20!+-Atj;Pd+wwH$c@Nw18gnih-<{DPuel zC=jnjX6Q}9a_E4R?8z{1DR+WoLrcY?XH%7uM!><4R(~C2mD_Jy$g&d^rriBfFyc8n zSvZ&@Iq>uBOqs}G^s-E`MV)taM*cHV)9T%xvZWn;HtsL3m^55(uH-b_D^9A$!3RX$ z)%_WJ&!%#D285wS{5e9F*S=Y+)|L_SvP;J=oXFIg>#kpO>4<>Am2^b#qPN8y2L^Iw zS|)bxGlL1%m$WuT%B3Uq=1JD|k$4Lk^hy#vRKMemzJGsN9?y>X)MtKSOYhAQ42#Tl z5DkGUCM?|l>egUa#nM7__wAuHe4?NZ<{1}Szsst5Y;abNO`mg-wb#-Zl#@*v@U!+Y^1_m+kwIWz+@A`6t zO$5z(mDi<&Zy6Aclmf@R(dW18m7vU8t6lH~Qs*Eb_#(?uvp&MwWP1s$Uz_2hYWfvFE@moVb*QfmN<|ag7$=R7`jSc3&zY{AT9CeOFut@u6+d!C z2{1SGC@9sw1NB-ss8mcoPISB%=d-*UcUIUZ_KB-9F$2?EyeZMh3Qmdz;3BpAz}mqW z0~b?4Fc}eRy)!Klq!~^kQ2`buR>+c*6`w3kqS32&nT2_lKQ*z0$SpX4dV=OpPK{T` zQw$kvU(56Z1M3~#Mu29m8oA%#3)<6+3Kzy8x4%^!J}Xn!EIdwV2@BMI({{RL7aSc} zfJPh7&k>fKX>FGd6dhSFT^U*g>U~fas3F=A`Pk-dkI%7xQf`?PUup48S-OVk@*`%& zke8C8J@N%40zXN-h{&}RG~n_Pch9_q(^2BUPn*N>XG0WQ@AL{=Y=oGFA~P9oHqF}L z?8+P$w`s$ctB4w}Pb9=o-@9d@*e$vIrXc66cy+Nd7uONi?6eI8;Vj!!8V0|IBKk{k$o4V53}2QBUwjn;Kc z!eVUaPbsqi2~+wV@C`y1rQIQ19eA-`W=#GelcV|*5!=%4iiAP$r%j;|uNF+$Vh=(c zK`2px4xLzvK#mhzTXu@#zb6|}IarG1y!3FQ#yGIK%7hwj#!{>e zyf$EuhEOacIaBG>CrnS>4c&DVj(XBw+oMzzh{Te+vNp)d8HnYq;GGPSa#gq85|OJ}23=0TIU3oirtXgDcGPnq z_d)fJC;_y-DAdK1Wtswg&7KovzUK-`LBv3%t0QW@r!q`h4_bPjFmIM*}Ea)|l{KqnC?l`%pN7zbRkTEa=WWk>LRTF@hslD%y~A{|u`-~~N6-mV&IB`iew?cm~n zQ{->1Uw9?<1T6%UdzKoxfeYFA77eaYItu*a^_E23em;kuRGjV)KXXo#Z0+ekYaxxTb z^(#a8$R=b#-)AOlBI20rh-gGc8@-ZI>q{nFl(?fZheW#xCuEJ|1nr0b{WKdd&g?Zg zV88x5chW9RC|w=UD0Wy6>R)t4t#Yt{`&9$w_6yi0UQd$p)SUNb^UWoXe7WQ8TdVPH zEC{*>j|5Bo$UumU6Aog#v9i~6v8@NQ>-0df{6}b3U3aUT+9AKx zgL2P?=az$e56Ac7wjaTC%oA*Lt2eN9?GiyWVow zGM=7N6H)8&6PD+Z+c|RAyDkq36I;_C=_-_E0@GM>75rOlF+&DjGqQ@~5oalK zI-_j>PMb{fBg4#f5_+T9Ew-go7vvzUwjhG#RTfS3;ddW);uKKR*LQ}y#Vi8|2LHw# zgoGwvfyBF%cjU%ao3Dxe+AFzG4C9eh)4LyKO=qe&L{VFFu-v~1bj#Ii+|bimI)Mh% zDH}V9EuA!BSk0UnBqC_@^ML@tP4n+C+AqM*#;=PR5HL)A z+Nx#abH@x9u-Y#bxQs$y=)8occQxxB;Ss7=n1ZoA@qrSPf~)Emofi0# zi9iE027?9&?U$oaX`^Z@;@)F~j?^RaXcLB9WoQO{eg~pY+KeAL?oupPL}bU_C@im> zU3KSyHnU$uqSmU1N3_Nc?Rhz&n2IHgIfbhv#&Y0$rfhUC>QjER&NW!dBXKqaPGmEP zj9Ia$N2Lg*&p2z#trYxv;AK$w^1D%Pgk=f^wC`oVn}DnR#x=cLYZZiJgIr6!ED|*& z=x8;ry&Ew0F{C3PSTV0UM755Hy7>4%@8jay+zAQ}vIZz0nWu6D^ntl^q}Ky(lx4)j zhR7bNK5@#@xRx-T$qXG;4vx*+>ca*p1m)25ScVOAWNIqMlA%Izs@cU=N1uySgncT< z4+)GD6F4WNowIrcpJ6SErb9=*u(ss=&7n(5HmKIIKa2wxD3Ej`Xu69xzAF={zc}_h z!i#oH&)8`E*-X5CzL*b^32@T9+Vmbga+XGEU1wf(IA{!#jktW<`fSc6+S*ao=U`4x zhIRL_v7;UD#!I;7Gf zhGKqkfqx^8sJv;6_s0Pq^PsN}5|lB!HQi0G&4`c3o=49XPFECZUmj%*<%QhPMM1xC z(J~AS1KAMgk=M7aU%yZyw!}v*i&hwIA}B_+C=4VD7&5IV4PF?1Ok!EF3wJ@8-%=tc z2)}8BBkPl=yqeL^;*xJ++vv0Tk)sG!tY(hLwD7I z3ong(P|x{1riCN`OYY1AbESCIL77eM?2sB7K(6uF63O9bis6>Zaj!g0nduzqK~CwtS@s))$ww9gJVcj;Un4{|#y@sFq9)$Q zw30YSGexU->K`^(VN%nhID8_u7(|^(3nZjmz<1da!X6%n-y@E0i8r>WIikhi5t`-w z#WOj2;L@d2xQb`;VZ(c}B|QX=(dOO(FNzhKw0bZD{CpVZMoDX9Rd`9D7PSiYSg{qo zc;2HWB16W#zqkyAPJ4g3)mJ0WTxg6* z?i^oC&FCRWFv=q-6P$gut~0JWkR#yaxq-wk^j95gb9j8<3iklcf#vXYn90QEo<~dS zJ)6IW&qRYipug@web<9)3L2h6lE`Rt<6+~BqtG^pY~YUr-q`OOTD-Ayy~wSNyB!WT z>?zEA^6+(`tAeYJ%(%Y(X3>G%hna_s2@8dzk-9r8@J$c^RZ&1b#$tOOT##q*@!>^w zsCZFr3nb4#+#K$?hmEm}h=qp@7{-uZ!i3XPaJH|j;<0Q2)qmY{rbsM>2XOZ0{SI}k z>oal6Yj)j%H~bmTe*a^@RfnR7iE-wIhM(47c~ZpW%?E~eat444$i)@)SrJ@&NBQqb zl4`t?A2v#l{;>JqA3suJ{f^5z(AxE2z*)SB33&M}^!|1s6p*%+GJSCok^8JV`l!+I zz=DllJ$Z^|$(n)YhwyA;?0Q|0`LN!3SR#;%{DMhrW$nvO+Wt5#A8ya-nwX!7xM6yD zz{|Dp1(!C*{HZKT%zU54q!%XGPD)iGg;ioRE;QOf)2E^QB*UF8^6?j*Xh*6+9!ytVePgMUGC~Hy{ zY_B@0sDW*|L9V#l$Rf@C&e+em`E^BwEHw%(X&7=E#vxFsBGH3gk<~Y1{g&)i za}4!J@Rgp1z+nXT4-3bfoxKn(+AE?V+_Z(pCq#(?+pc@(i(TX;gjx3M8xq#t$9Ef$ z#Bfpp(4}kq7!eD7$NrFetD$fj=rCoAkt2HZ)&pF)^Ty&d8V^oI4?DL#JO+UVG)C-U z%h`5G@cmIw&68i@h+}JLOlu&njkF-3>GDW8A>53u(&~7>voC5*GDmh7jM7DR8q)?^ z`+irg4xyuhD+@#BTR7-JFAc(j#Q#-gNLMn5J`~hxR>VNg)JBe^fV{2WKmzkf)PQv>qH3}_{f+Dtg(o&~qFLA*GDuiV6@667rS zs#5et9W{D#Fug`B2~nq*Ne5zQ^5ek#KU9dE7bPjtF}k+Cg<>@vD%J5;@~NxI=U>@v z@S`s}02NlV)4pCTfMSq#I-DP{Sgv1a=E1L!nI5eRQTUUbT)|!xqasc>@VR3PS;<%o z7IO39E=tacB9a`FuqUi62js=?D>CSbrg-1sFqU>8x+14GAvPl?_hv)^zrd2dn|7UV zWDEa^`AUE={u}?s?+Sy0PRg(gbUe^%N<>7_BXaElVJm|E1c!TV)Vl~Fg#1^}wx#5b ze%FtK&1ftkmz>yky+0V2k=e4#)Ihl8^X2`+xMW<)VHoNFWpfO5Ds;$L{6qi?2qBSv zF)VXailAT+{U9VzsXvbV2!4Pxz9ZBLr9Yf(nJ}0LfCw7FzzXeGf|CIjkWoYdcS{0p zT|16FxPEBI0q!CUdt=v3ETKb*Rx+_?*Il^$=F~Pv`vmM6+}jZb1soWLst0aPZXV5QQ;jSzO2insaJL8?$cr3`<{JpsAp)2LUaDM?l zet3wTx~MaDz3A*~&EsuVopQEVzooq?u;s7_lLWaRd}zr7g%fX`4A1}}BooS$&cee( zi&4sGl&1?R`=c4505n1P$pB^0HY|4SsQM}}`JOe5ZTMzFJ4}k|xDltf)zWUPt9+9* zisN9OI6DNp=6Isp2;_Qsi!CSu5ykCY;)i zmf5LmhP7=$Khg3gy_jNI^masxyIs9u`DU2bN zXE4q9l?O13`QrO7H@p)7zd;o_5tu+ivcX?`*<&lgKEI0t4jdMX#k`aP=tj zT*lclCJSWPxh=bT28)eD=(Avjvg zy#Z!TUDi2W2-ORw0jjcQ*5w&bTfiy0z|L)GN(4 z#swEFX}fIZ5d0TR&F7RBqRkr=7rY&-8&=)IY#PVGo}hKZ9T@cM43etAfs`soP1U78 zSEOVT$od*?v~NxXD9i7$l4?}6q`=o@z}L0)WgOYDR*eTG7k@;QzG0(Vync*oA2It` z<%l_*fMA2!IGy`Dv#Hzl(R^XFYPF(Ew`3vGjau(#qjfL=Br(s8pEXN3k%z~c--9J{ z&mwn^%293I*9CRdfG?=+O8kN9Yi+gXJ;PP&7xU3X290hP)$Th~Y-5@eCl2x`4Zh8$ zv+uBoB_c!r!^i3z9RIUpR2Eh)us2j^7grJ%b{4k(#W5-iHw!bzfBsnAHd{L3l()+C z&`iT8f-(ZR-ERJ7ZR?#ga

      ?&}n0kZ>T!5{3aVUbS`Kj6B)j)0*!JAsH?jZXe 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

    2. 4cnUL~@)VTCkQ)?F zOe^w`7By2CKEr;*=^bPedPw)usda2=)^ZsenaPu2=ZP&RVO~#N6ufBqSg5>6g65#f zcwbK~W^T{faT;A05$6@v#qt0=9dP;bwtHUXaVBCC#jaB`!8HsI9zEtqUnhrdjpjQ$ zNz}#2O&n=penny+I!5sxId)9XCCMC_mI2@pc=$5K^1Ef-0TO5$KVVT&=pGk~O^c2c;hdbZ+hT%6 z=-MZ5-$vXtt}FpwwIh8!`R0vQT-&G7JelivAB&clA-CtMX`33s>nuiBS*X-lnV{ED z2aiCPE=xw`adx|71*4rnct`NYVL~c!^Pq3`rIrQm_?Ona3|i4R-%-C`JtEUiFB=%8 zqu1HSZ||qmu~G?uPog7-u4xC1RPex_5f?Kbc%@B3y~J@kE4!WPbYk+T}VRGp#abEZmBcJk8;^r~% z7E}${@h7@LJ@916SJ^BWUc&=8RF-Pc2 zJ$OC_^il=*vCI?Vu~Se+<61K&q)^jEO{&xj%R9tUM!JNVd?st%?;8z_l?$^_H>!-u zvG;ZnGlR=FSfG!BMvr|omm%;-jqGz&>0vziCu@MBSi#!5Jee{`2Xxd?CI(riMGd|H z4M=?CTemT=U|43eO~V@V8K~0Cj@pVwbv+rlamFe{tegC~3(bK9&2?M-2c5&}ZW8i6 zZel8OFyVqCk6ONFGUU5RU9ojcDt%%S@7ZP<6FEO_^Tb5op6snyG&do$uUDwufDFf6 z&TK{LX_qg{{gvPWr}kmf-Moz6`vGpLyqIBFNulYjsI`KoCueVC3{MFBnLKaPiuYQ; zu@0R058c%;vGubP=mqGL=M850YG#^eMn*(4c8aJ!5!9 zr&Lw`sOgWJuBZDrb-+?^odM<-l~v%wG_7;^&et_CuL*qXLDXoiCMI-0YPHcJH*Gy= z-$UP{#J3K`B7v=_Ljy{Az1-uwOz!fyW2#hi>4FlTedz84!q|S#Y0wh=q&WxM*7=}d zK-y|;D7cd6S2J?U6Pj*;V0ptuT=UO|F`5f|B}0% zBEx1BH}I;1#H2paWmsisPfhMS1@L&m@T@2hk>CL>EE*3fVqcn zRy(DO6Z@iVF=xr;l2a&uLv+hmu!&|pSXXj_JtJE)gr4O%W9;196LN6M-o>|eJ?@#uHX$)kyQ;zg78M`i4SfTl0&xbmBb*n?6w7c)IFLRJ#8PcBUoB&Lmes0IjcwvQUk9VKWV=Ys(DZeFhDI0Ag_aaev5xJEVVt8<(t7g|CaCQ?Ik|>%Q=Wx8>7ui zYdR||vB|^`yu4g*L^sat#!g2MgvOt;k0UwqoTK`o0675G3Y(7&|;K57au zmKEk4<*=w#cQg}bgU6SJQmbhfegD38FC0?F;{d4|*r;i$W(P-(3+=4V+BYy*H8#c#QeZ z{Bf=!o7V)945;q{=e@+1B+qaNzMr$vxzvDTRLm=3I4^-Ra-o*3QuW(&t(bMBa8T1@ zma;Yk^^fyO=C#!JY1b<-A7IrMpK->A8(7WSb0xp6SRYK3wH_LC_EDVs=wfivI8N+> zx2;sRF{`Qg%#hT#%Hgx6Z4JfT4^N`=_a?wYOX8ADNeW zo)ENM6zCVDYuksG3%wnE<=YZns?I9L>;127KBeie0Q*_!J?UL0msaKk6SJpoI*Z7ft?B(`FVXd5H)A%6|gR~T+pMHLjZZ#Y-^aSiQvMy|zo+Y#i}CF|l^9 zI2KHh(IaSHYuGGmi}Cm(y8;=wXqUA5i5k4=1Tx59w(eN0^J7nI_v)%IBP&GS6z4Zf zlU0c(n>WU`z9=8&Mo|Wi~Sy$ zQ+)ILh;vi?B20IeZZFa|3!38uOP5a>NJ3a)b*bA6t%k}OUS`ni8wpa$5=3$q6Rkwb z)*-}Cj$4l>)EG|=bg8k&cp3Hkg(FyBHK4g6@M7+8k-D~CHru1HSEStc(Mh9QzM)_f zwMtE{4ids+=YFOAez4S}-<0!VWo_Lj7+HE}sGNt$VO(eKi!>-p*8$wo&+U z1n(tK(fDD`^6wsZPGHsLA5iSyJnn$MJ8J=!b^g@xv(5D9;RY~vd>r*_N%tvJrIDsJe=e0GK}^b}^FzY~8od%x?(H9XDl&-w;@1==%ouNptb&u86o zYe#)P=}v2-`de3*$2_~10PXn_F*aA!ehxO*-$(VN+V4mV;=zAN?dEra{Yt~fX-D*nJ>{if)4eK(s(@3AYWpcqTaIGZZD z&1;qKK|nfUIzDR|qy%GvP{<~7fzsCM_l1c8-Mz&!ePCR`U62VYCb1=o^3JR~37M^# z?-MchMhk&D+c({qY<`Y(^K2z@PCv+;&ud@u<6+?zd;4Dr&{RP0$ni!Rhmm z6;+uDFgdRC6U3Gu^%02Il;c#1s5wvaL`9^BKe{*-uMScN#g}OCzM9RrOVUMp;H*j! z@=Lb48uySJ6`*q$qUQw>_(krRPGZD#xNOJi>v`_DqWsGZ~%KMGu(+{ zYRlM))#9(F=uE>7h(Jh>H&76QMS4t5U4KLxj}x^Us(F;D*0SQ{#*~8`?(eem-WUqg zwamlmAu%Afs0)+ahZJ~+&4~z#|u*KDnH`-c-JWh(;OK1Zn9FdR8 z790QAHTK0pTsVbJ1>ncCLjTg|aMIG(BL;coK#XO@+S}@ti=vqOfqf!^_K2no~trYlsVGP5$`}+8Z3% zwCzvw`QQ`*1|K_yQZq$nPyxX(X!#90R?QNK{KZlv)IE9k{NduIOJi})<13$|sNg{c zI<%@|x!hRw&0S2-9&g*Y#=Gu$G6buYSq0yFAGeee=CYt;J^9a(C4P8}2$zzrV{|Y# zRwU@tw{=A!EqbB)PJmz06*e_rKa5|WSw0R*3|&Bbus!J!vag??00))Er$~L`sp{q5 zEJ#YifFsZpT%i>rXwx0Bz+}UsJf3)iKP*KBdnbxdI`4_qn~y_l&i#0YPQd0{xjclr zRx&9bdR3M~2QlV;#wKxGn>Yc{_fEoi>^P!4mFs>G3AGrnvPP5mP0HK3Fw@o?9Qje^ zIAuSx#Sxh5=B0P;ny(Y)V^+%EBGH}XRt#(yAF*T7y*MD33E@&1&$STqCAYB#ZV;%* zGWuc$van-EUkzFJ&I^X58kBu4_Mc%l*!aNL2NzAV$!`73qs&#*fB`I+N$fjWv?^Gv z@q?MQ0=5!zVBPi5-QnUOZ;Hhb_m~QnhJ;Kbk5{xdzB?xOpiBTbt~r5M)=_4p9q0X{ zWF>N_%>+PiwOfMDaMe#5hey);7I0anz8FWQ%lUEM;|V^&HY{!*so@xH5$Q+M1?CKH z1}fowCB^vQx>*1YrAgQw-F#hI8t*G^1xRqDNx`FILNwBEoBQUP3~rrjv2{FLwH{c@ zcu+cWN9o6;q;))zzBpI2A{ai3-vs&7KWGGJk6~-nFA7`V1~bx`hU$yJm})58M(-pBKVm`S?F!&VLSWN0hTOl!kS(Nz1xF1# z%OfMoZpU66g5jK}MC!_u$_|1L4wGJ+h19*5gCp3P+E6sV4Jd+{g-I$jt}ugma|3WA z{J08Gg7IULcdL5jBD%ye8=X%{lg*Sg6YR+^2;oUF!mW;|mNjAv0fk>dSKiiM&J}p$ zE>tVN5xfEm+ZbL4ri+xKt%_CK;iO}D;{f-pf_~C&(lmKbp-j0yL40W+5ep`Jz>p!> zl!hionlE{WSAT#ROViVALHsQo*{#fWO9|SJW)ay5A^(D<68ETiC{jBgyx>2`C3V1IaC zAG|pk_{QC8kckRqM0a{I_=*>F*DM^<+Uh2z442wjUm_H<;;KfedER5GV$5W%REl#J zS%870dkPz~G7Uc(6ScFG37! zn>fYv8Y2qY`$e>uLj<1FjszH`u?)iYvY;B6d91FAI@l2L-(^P9rb z{&PT0{E}XQ?Vht-qDF&qrFK0xx<5tt*kg2ko^Ls1u8T}5UT~g!Gz(${yq;814&mEm zz@7GkE)4$lW(x&GqkwsxF;e}#1A+be@H-08`-+`#b>vk|fl9Pgj4SM|oS@k=Wo(Rziewqc zVOK#j&RSQsD(9T{Q7UK7Z|pr)3Di+)KRe*1;rF)yubKDd%ggh@RFg{ud2kpnIvQcd zy}M27)IfQ**~g z(~q0fH2|V;EIMZbBDtStUV+9R;cXp}KzXR8V4_igrWkaZUOKh|Mb!~ zMmBARHhbr#++EbRX{q@Ao#VkYw#Sey)~&C=>Sr+SXIbJN~+Rc2;C2G$@nU`2GJt~rTu`u7ri6hRO z z%w#TtA7aH4GU?*>FvqU92%}zz`ws2Bme>S6gbI~f&s&QZf4G3D^{)m*{?`Cu9fxmR zBNEA>bm*mGSHsaw)u6DIJ9%;H2rAS{=I5c+aPWDYdD0T!%4nsA5;ExeSn{8sOSjXE zEJxa61qpRfob@`p@H@M8oawFw%JsqFom7hMJ(|lfGU#dVRALL?M;;jox&G!@P~ugIyR$IQNm3DzhW)J>wHHRzER z$?GZ;P8Tl!vNYHP6E{g&Ws|Ou{;hm@#-i zXEX_@kP$4Ml6&XAO!=hbC-$HFBC!7)1l-*>7*6h3c z6T&swb&AnyzJ;CP%u^AxJju;vr1n@LJ)&St3K(HVwWs^gJUBjp%!QP+jzpN1h;jknq%xA~R%9E+*@LLmL0s+m*Z8eG=@}-j}SlE`+BO;Y@2#9xOaBE_C zZRi=7$sH~Sq4Jktx+l+t+l@p@RY-An<)a@$tx9e>#kd>>M|MlKcH@(EWlz2o0ECvM z_3gS9=?g9Q07FNkrhze}VeeLj{pi(byi%fN>!|P6JjiS6?HVWmh97o@W+k`KMLyYZ zt006DxJ4NDywxZt=w_LpW8GoY0>aoFa&1s8mxB22ERY*u=Em1SO8ex7^##_o5(G?A zQk!$%Z75ws(OusznK8(qC~9-RDR`uDO9(#Iqd-!BJLT53Z6UTTOwucHR3!F@H1NsW zTIopD8T)~pa2qUuULQV{iER}oE|*9jE+A*;u{~re>%4T#%9S}xV^2%{Se2ENC3m{& zLz|m}B%m7+!+ZK^LD&b$Q;KG?>0)YVjMsqcw4I?;zIALSJ>~248WB-LaO31ydJDb~ z-*_-Dv+Q8zmv+M;|HTS5C->+9?OHg&LLbWmNE@b>GJqH5i?(L!(wk{ZjVSdHdyRo0 zfJO=Fx*(~@h!vN_&5VPo%;!dV8*i(s3cuE5icgskZSYb&MDz6>ljw@5!Zt%MZQ+Ob zc$b)2-l|iblc7kLdFVOS$JN8sM`p){ITO*JzQR9YL2Q5HTKs?ScV+uKKO+$P0NeI{I{1L5!=K5kz~otW9xf(Mj{lOu z{IRc+=Qn>R+ut}E*?<%ZXk}yvIx4w%fI5Ki<$qQExsLzFS^1m4lkIODjclwuOu*_q zc6N@RHHB;(fS+jUAFBRK9jw4|zyDxCoGiaNJlX!$(f9`x5dcgC23keg0bD=r$N=E- z0Gsswq3X|d{N!!_WKw_FR>=8#TOr%u&`ba~_fG>dJ1cN`SV`D`jE);PonNZ{OC4-~ zl#tB%dkQXa*#DP}{n0!CoWJTLf%&^X!*Dr)Ws<;k`K9X5b^PRh|D4Ak)+TbY{FZ{t z_BYHDz|FA$y>Q80-GOzwq1~Aq6j~zme0QkMe)vy9F}aU&i5oA(ncw!1hM8 zPUzwHThrREIG2<%F+CvCk2Q6vhF(L$lX>1qkyR8>1bpQ5vl%({DK9ZP;?l8M@v&$h z+q-X8E_dm%PW8ke?+YuA&Lel3A8u_EH0$U;E=YevK^O^!XVw~LF#hF;ifQ0pf0I_Dsv6o>|Xk&i_S@tu}_*8S!XM6WHT&skdZrM-ri8R-7jwU zNZt>=CnmZHNKV_2SPpgzfAObCOtu)oiVxthmWG0GFeaXyTyiqpRY*~9Xh;0EUb0_H zw#-NG$-tq?dbV}_&R1JP(phaoLekomxNMp~E*P)o5|;mmR8y2l@$ec5>MJ>fO8SsA zOt=zLh)gpQ*o&WF+<58R8X8>bJv#y|51}x7Hv3tWR#FHVM9sak@oc)Bxljw?%vS*J ztS}`k7bnE+!5gnw6G%ld7)kUU3QLl(O|p#hrFik<0^p(CldC1#pScpn%l+W^HY zxSRmrsMrt60@UO($I%%iiLmo};PHi;5XkYUYfw$s@U^U6u{WjR0F}4!a5y5EhV8~{ z65=qa(nND2qakLY(2x+BIkvWBt<9TDki4zltGXdW9go~B_)mDk+yV_yl9Y-X=+V;vXNO5bHdc!B-ysd`?htI zVM6=98Gq*pM0%^D);(&3mVz+UD4e86hdw(Ek-a*VEF=>m1hjQl75mA__4D2hQ;l;8c$6#EHVPMBbH>-Ne zA~(SeHWu_7N8uu*MvZZh#a501meFVlEq40)sK&-Fl+DfV!FmMYen~6f*k%lROIy&+ zwaOAAu}k%(-8C4Att>61+zs+AbSakl_B}E43d8n%q?}IgSsSQD7w3J}9;&SO+qZlU z_;mv|*#|V2qLo-UO0$pY(gaN6RiGENi!C{uXuy!^5uYn;dq+=8-amB2WcgQME%yg( z?_Bmo*$f}eVg~tUHMywATPRh*Poa2v>ItD2>AE?B6Cas^UR`aG z1EI%^gm5<;VJ&nW*{QDXXc&B*tG+kzu4D!Ccfc1jBg5A2SKp9MJek%3lXlEz~)jbDIwlt9d^mB-fZ&MRNJ z*1VJKHH-0OLz||zS^N0m{s_OH{2^dPWmr5-QY4yc{>*^@)~M8Z7kaLLVcl?yfc-*R zey=4Rt+<7iVxf^ds=bXL1}tr03qxT!?ScSsz5AmCt|s`Wok%g77ZaKQlJZP0_Xv@H6FAbO3< zyPt;>1}l4=yFSrNbxYSb+e=hLf!&N=v>(tXN1jEc^FL5!jrPk&o}IESc>6@W z*~HlmkkP8!!N69ONu3pBhS&D5JHKpxGJhYmePOD=T|-yBoEEG^n_>Z)M<1^#IXpy( zhd3zOSmr?Yjbq+aT#!jwGqGb1F|QXiS0iK^F)6n*-YZ41xLwP)*D#A+z}hr%LQf(F zEI}gkR_hzc^66Rpl2s_`nDOl3KITd}wW{=6Q+LXDT#0Wh>TRF}w}^FAQw_6B-uOv* zO)M8}f;Qy6)1YPB=?vUg+(Hj#z7pV9cP4>WYi!86 zN2oYNcX^NgLBlVULPPDjXSfz_itPick-{5|K`BWl*syL4;2x7mo625F5wn+lE*OX3 z>il&c8(AyMC4;Z>+2)s5Jzj`Cl?^OLkh)ws4cZDzs4+VBZp%-?cG5mQ?iYpoxK$hn zO4XPDV3Oj?yB*|v>z4Ty$$uv2D-uZ7Cq+|DaahnZ{HR!cL-OXOA+VU5N?MW3sGS)YFW2v~bn*ZWL8 z)p26U_t*t`a`e=tpZk^1Ny-6NMt6Irt97=$mo2wdz*A-k4sFY$ue#9AE?{v7!e3Wr zPv-bE3$Knajfaow&kX1nL0IFj>P~>|pu%R=pGMXH>;FwKIu{K^Vp6?7k zxOJjs*20pwPlxDZDmw%ttlBowdIiy?A{8c5*8$v0*xH=xu;U$#v_OuAV)q1 zUaHcu)A6EC$WkIWx?=hB83c+JEiw+?K0ci5D?A5z1}Sf|QP|}zIaM+z&I0s!P5t3n z2+B1(dL4>)Q8A8PnMP6uPPU6v2K~^U3gwR%NzZVd-+$O7Zow?YmaBx32Nr9JwG@k6>?PZu(=v4u|R7TMz{JZadL4wT9#YS zkVsP1E1fBp~8v@fJ%1Ys1?$hiKf!y-|=4;3ElEqVM*1SS`6+F|I%1Jz+H)pd76 zZRgj^AH!?$9mldegY-UiEOoeO-3l+XQ&cLR^b@MU#>;thkTe$6`7VLB6Ean1JVf$5 z^aiot8~BD9R#B+7KPkpf;5AA}w;A|f#MJq^@;*n@?ht(QFVxK_drz5*9>2I8U(#4b zp9HHwf9@EfXAJ$=-{=(LcLEj9D>$Xano|dq>FLt`!2uvD=|2&0Q?9mMKc(1fJAifC z67Kb3B+Himw9W3Kb@HSJTUZxkAlZ&Vq|oSigm4sp&xa5Rv{(z~DdhUyErY!8(-544 zXV@JE{P&K;PYKj7c$ryhtFoSEG!6z%p5h`KB!f9lkp>+g42?9(uVf=_Oil8MubhFL z=N4ZdSvn{3cpG%kuCDR$O5hXUqzY$g+sZ)rOHHO*kXbsq>m|=4&o=v)qvK~}y<9a{ zl`oInehvm>1bZ+1rIk-;i@ru7FQ(0(SC&g^MiRdoT2BadKB-oSxh>Z&f$$(P;PKJZ)ej$co} zKdBHa`yb+%-{2(>#Qmj?pL~!Ncsm}*Fu7QPtHBL~Qve`JWo7?U8UNl`#m@CdGFX3O zm+XJT3|WC4RY1N80HWoe8M-V#`@{Z6)PJdi6$lysb6Hq_yPf`XW`DJb0Kj|kKuXBU z4ZJMR3CvIcFac-tOVppq0051U{{qR_xPhAh___c7h_e26Ii3A)kRcl@&{)Vt!V26Y zKg-?Nd61|m_J4(jf3RhLzA|t<{#OTZ=K?LYf2{++@^ACt`1un5 zxh}uKOOAhik5%(@G-H0NXl!j};`-0`5eWxpJ7yI#7l(JwCT1?cHyCjbS4mY@BUdxv z$C9etB)_EgS{*8mn49D{8vDPiU9B%vxta;hYoN)EI_j;&(G5fPGBm<&#fkJ zgJiI}O5pt{50gXC zY#C_QHLB%xF;0(<_lELW1*-isC`xmp(}ATLc49w{-Dd@JZ*F#XMH^h$-D*82aIM^y zECfMKUBrj`%hGwU>ANp4^X`|uLISLvT)qn%f&|*R@ zY9psqoH!?9>oxjY)VvRG^**=jd+gE(L6l_%byg=rqi*Nu7QcT{Z_9I1e3(Cb@O5e! zAGVY`ddA=6_O=vsHx4vF(x=!;K|iPLbZ8&ySSWb$&vxtBH{k1?m`H^1uQo^SQD1PuB ze(ZwBzN!i<8O~@h;B_F{pk#}N@KAXEhGV9Ey4}HGrkP+Q>J0rVC_=0v>r0W~7`bU8 z<)Xt!QX#0IZi5(Q435KU1k#`oU1`WK0w01&poHOtX~+T?+LSE)X)VmpZQM-icHQT4 zRwK53>x`E(uw1g?UFFlk?~H>G*$F{tV&o^M7(ujN5S`7qhHx-zP6Ozm+1PC>PMCq)ez>|_`Lr8#_+7!%_ znhrFef}Wb0)Hjj@UM5a~(eUMmR6>Y=_w>RTlR}Kr!B~Y&ox~g68ChiN*XgWsckKSy zS3d0}7|9U1+okWB#}@DAB~1C0>&5BXt#dUC5&BN*3yo0Fn|mS|XjiCq-tAtH&taK$ zk==`7GV?MZ81H=bpkZ(c%c`60X+{8KN(w~-@=6*ARmpDr5a+ef3+I&dFwHxq;-vA~ zJXerfdYvy<_ZLr-ET0ZfikSs-xeT|u>dzVi4sEyY_ABn+?(x1p;G0zPdA!EdT=s3# zs@)r{ZI?;hD}UJ@Nw0mxd<8)UFZcoQefV*?J)6>i=n+*4tARvwimtZ(D&)lXrsq`x zVJ=Jp(lOt7#Yz~4qy=@Pih6tNl^BUA!$gpPJ*r@}EJJ9N6LfU#0net}6a!$pnY$EBc*K~VsE=i9#6*rkbX z0!yzBu>#AW4aa|>sE!(HykCR&A=&~j=y-RVcGS?XHX`iucFuvG_?g!GDsLh|GKUM+hIMug}~c-=;P}itz*eB=lA%?jnT$IGcFO6&q793W!0RD z_^g&Lu*&lgQ-yzMo5Fk8+xHifaNXdDD{RKR!I^IqkupzO40UbE}4^vm}>C` zieqZeAQ(|j88)0Z-hOM)S#`pVC#@Dj?`R9IhR%_E^Q45E2d+-FiC+P1;4y-&FA=DC z2R4$1POl~^MvmofGQ`Wk(ND70NXo+Wyb*Y4=XU>i)dG-2L3p-Nz1x$Wnr=i2Z2TlS z>*MQL8DYrkByBh5<})LM=G(?BiSfmkooaI@ODoZcb0q~72l_RPo@Jeh#_%H;ItPQZ z+omv6Mgzno;(?(R=qs*%!~|JD!^c53IQHC)T7u{#hzOj6C@jk(`syip= z1=iSdJb{f|i>fejZE@W1nZ*kgN9-Oo_-Eoi+|9#Tt}n48TPQ(heGOJ?-iKdGBCaA0 zJ4D}SsH6Bm)%0yW`KyzcNM(_;98DwL&S%@ap?$AMU0oIEC=tS8$>Hr1Ge!}3nS+G2 z$Y1(JvDtd#^33q)1AOx?(#9ZD{x_6jYJQ&e4F3)4r!uoHFK~?wPLEBUSA49(+z7?P z4cMi0v{0+ghwWA(aUIbrQXLa*`X94ji7?;|G7;-0z0uQQjh|dqg@s+Mrg_~H{J zO?TlJ7E^z)S?L|$ZZ(!YnQO9``awY~+y&y}rPU|zF`^j)>Q$@yro8t?XFSt~)Pmim zynec$=L9UK(e#S-waey=UR84X)(Y8J=52yqKP`YY`_VSN&;K#?rq%dhX8G(o8vvZeMYU(l~c#t>yJn2JDEFeera*^>< zbr{{Y#WhJejFtDCMTOSciNsa`I#{+#Gjw&b^$(;lVMZQCx#~Qh1|0X~B)33Ql4Y9l zh@=L1yi39-rosTpS6i76@5)#$p?A;9$xCKtifgm7`oN7O>fv;G)lv&upaWRZE{=Cd`NNgyvK*n&nV}y7q&*4W#~dbF z8(}_B3;T^?hswpy#C#ML%A6-{go}awX5+hL^M;P<=G__N>k4Y}gfO-UL|51rosC%k z*Rpt?^3Nz3c4|k%d$afTNSM&l9;b3np^@&#hL#i+?U1Me^s18GTpM7l-$-^NiB)qI zDrl8ztEwF;hd{dU#WJjEBztDDr*x+dmd)|}R{LJ?gPZlY{Q8vgCj`DwUh5Q?n4w7; zMf-r+WSNBJa1E}h_*-(#vRql8AD9S3&n~y`*a3081ENlE9;?6QC zvMhnpxVseY6z(pCySo?e?(XhdxVsnb?(P&0g%$4ZuvtC3J3GD8J@aED_6He}2|=8^ z_r90;?s?~Y0#;F+bl{>|RhMRCvtnTdNg*Z+9kqLIDEe%X$ z*`DTDRe88o^jLW*IDJJ2Z3kVAu_m@FLb=s~}asT(pu4LZVQe%;&= zQr&i27?MCTvcCfirFkF&iWx^>_k5G?2^hXm3J`cC%Qsh9pH=*jb9(A1e<3FaC8~=M zcm1>veg3^m$n@T0tqU?Mf3**g+XL8Y`-dW44Wj}?7udcZO zJjhq)1dQG-blaWX!Mm7kWt4GQV|WBo;|)(^Q-At=R-fFSkm3SOkJ^D5J=s1dqamvesD%Y5*t3g zr|w~t7R1k6rRzqqJ9X7v6JlOeGV6GvvKo%A4F!P-bOc9`Lm8=Wo*>VIB^rTkc9L$M ziFQuc_JHm>=T59)7_F9E=6sZa)=D}NC1>b(HF>%)&s#y590Ft? zRTeM;(|0k3cdDm9Lv(shf{rd6bDK)Fv+r9HF;iO$Trvi}_^DNQ6RAWN0Re~;d1sHg z#nCZ5V%aTlfG7`R55}`$NU@Ncu>iSH2amJfev=bE?T&@d2k?Z7 zpRo)xsh2$jXz&z%%z_Y1m{dUddF2h8S#Y7@X``QpeLZ4S8FYnK31$)+9x8u`?I=JU z$k4%Ft{9NbyOT{OhWOMQww0wTsGdmfnV#1heV2>lCq99Jj2RlTG+hS9l}v;fcJP3U zZ2f5;V-rm#EbwO#|4Bv_djP+PM8rrh6-e%w=6UWFUIfbCI?~{bVP!;#drUd8v42do z3IVA{%mUIh-&?LmR#gH=9N4NaicP4IV~dB|U^o;)rDz&%hd(n0-nv^c?eO&R+aM8G zKulXBZZP#~RwM}DusBN6ljMzQ6m<~_n58{|W=U8I1pgGXQ%AGYzP}^lGJ9$<7%)<4 z*1?e$kWL9fnOSj#Tg<}>Sd5(ffha1^lz?hj zLuv$z=e4C3x_96s*tEY^!pQcOJz|X%ZF}v zg6J`$+@yTo&Kb1~C4>udWg(%Rv-M%EOsjyKcRUY>DA*U*@-}SKAmCwfvtaS|$v#QK zpMuw;lpv-GPOJgMK$3c7!K$Hg3-K@{f`gqI29_GW5b`bw~1!tK5kUn%Q77pF&x~@V5fJ#O9D`tN_K~Zn6 z6UvFgB=I91I@H0AL&0_x`(I0s`>{@J4a3lb$0iuZUIX9o|_lqh2v$)V!mGtKk{e5`sG5`|Jt;5Go2kuUX#$Wx;sZ<_iceOcUELWIFujsFw-xds*pH8e(XZR>^HB7n zuThY3-D7rcO2rem;;piXlS6vO=TDI(l453D}@Rt&DX@I|3UFJbpB8K?F_KA+Q zA)CvU0f*Se!Q$%O@5%@T+ebBUKBCBh4deS$0T6|E_Zal}_}XUDNho3TK0*jWwI zQ%FV@2!NqA53GquC#p9Gcl(O9dE9y5CrVUVz?o3@zU@OUwid!cA*>XHFHz@9h%Qbgj=vdK|AUTZ{5@HukDmi%_M=7(EwFY)}6^kUa+d65G<)CtQlR? zSRa56#N?9jcTfo0f+qFoskaES*!Moy$HZz|v!e62DJCNqUGIv!s#(EHs^^lx_I}?Q zrb1D}`}}SmGkmn?%Jr!Z3-sW=S<7yIB*-nd5TR+^0C2u@+@9ee=}W`QIVnzGc7dnJ z*sH1~FXKGqO_x%WW3^8Zg+XJ@j`#OMbS=QeVbh&@LJpO3IM@WWP9oE(O}6OYJ;6ed)(F>%2!J0Q470oa}MdfTUN;I=o<_sk*&Bbu!4p? zvVY#<7dqw^f4u8T;0T7qHyd*(xTOPl_d@j9lw5dsqt8fUF^|esV$s7kU>F6pF|@Q;i4CVBX{gssh%9=N??{K| zp*1LBOKq42)KD5H0aB!4nEW5uw85zh@d=B+PjLTKoVAtBeI8oj4u{NseU$3TK3crr z!##>If3B>}9B~lk1WdnmvH#`cQxL^wCTT^htY`tMIe*mYl%!(@9^_eo@Qb#s_+kAS z3gc6=w}QU|ulC63<7@Ze1S;6i zz`ZqT_EBI3;sv$?)jER=OJv6< zhm^|E!lsEQsEW%J3YBb(rJtxQZch?~4EjO@?YaWJyFwksHch~ghs$>XE9w?L!Yo3M zZA;k`a306i1(O8YRE=lVrEcNeknuDnIq*iInGD*uTZ~D<}Vo#b)OtaAk zcy|zv6tok2sAPcUFJ`ETie5WYatOoS90o*@r`FfNmAH4^MW~)?ESy^@8M&5MiMa|- z+_Iak4sWu)QMe`9k@xCA*ekWC1~|`i?w^G@)x104_DT&7Gk~x>)wqes4R~-)Pp5!D z>r`G&JfLzQ-GR)eNNHR4O=rtO=x6ybspyYOCY4cvr{BoM?%5S7&ZQO?%&w zMV@vyOB~7fU$^!>+%lTq{6DR1>P5XQd3cfYk2X<*j;Y`SN`sCix0E1F4|E2q^P{H? zWG{z!Q7j@r!;r88=tflW;_y%gk%iSVV|sw;8`Lp^l$0_99JS9Q0#lwGso|InW1?jP zh3&y+(Mw3gWyy-H^+Z!9MxR0N9+rvJ9L;z{NV6JA*JQ3-wq>h-SmHdOXl*|Rk@_v=id_(6m+}C5&}E>0y2&*c`C$v{;apmE`1&C#pvFp_VNNfK=lIJr zCVDkPAXB=Xid;Y0^Cw)m+6V8$ed|p^%4)e=mSS}(d-}mS2BcXIkD5qB8yRwQE>N3= zKEaK1lj5fp@PN_fwF)Sf;yw!yYeoGmD3(IV!pB2Rw+v8J`hDGiFG+RH*+~cFL;YJN z-{w1Bg1u z+XYWT4L?17D}F48KdDqoP#>!a%Z!FX_NN!Ci3|u+RQ1%aC#X0qKJIGwUzz4ge%A{^{iXwO7Q-$n=K=_|Mz!CwbOv)&OlUw0pO&fjx}F?27+cljbt7K+VOT{CuX z&Wrjh!8cf4+Hlm4sgpW1lWCu4t9wq+3^4sOv_eE^pE=!-QGd%lVY(Ea+VZj(>w?|02yPc3RjCOaz+b53%Wmt`&*Hf5FOLn4C` z%ASB86QS4z9z9Upm|Ym{^opAyXRJ~^60qvmIbg0mpkeeX5B_SFU)iD#Bp?z+Xbgiw zSTloBp_@ZlN{qU$;BOG^NTPyoeAMi!C?%R29`(x~oe5-40b6q&`L$9tLe;gca~~|@ zSR8VRJ-jtz5Yi=4fjX}hXLS}jv*+UaCoNaW761=Q764-Xy#A=JJ4hcAG3_`XUmZ`2Om2DM!TXRjao3Q@w-Z?RYz9&WE{S&5t=# zt>hBlkFDw43RYHf%FM*^zoELw~m^6ZDm^Pg9AO4-yf?aj94rpjBDneClJbwE0O`Z2}l+|dp|V^_tzA~KjY z)5UvHl69`|Oqo7EX$xbd0gGC>q_+VU z0uA+9QkU!}3w3DlW8ZK(ieDn{JbuotrR+GslZs6#fve5HsOI;_yNOKir60Byd#94YLl4 z@mTCSY32c>lK_~^{WQ-}Nx4~*N;q4Bn_aEKjA7FxE)sg)N|42O71PT*i0^}yYL?vJ zMRNi)1Dn5w#l^}=V;ggMHRa}An&o($>)`k#hHftultnSUV76Y&7JORNp-;`JMPxjZ@K5h7wDXHNQZsoJ_~`@!a3~4Byg$JLsKD7L2>Jhf>!v!MJtcxi%w+?9ESh zP^C7D#2*+OX6Dmrh&FDKI~13pm%yMo5)!!WZj|iHE+>ifXGUp;Q@Bo}!SmS$w9oykiD zP7!m@NhL_Ey972o84U=>+uQ?xjA()pk|ZG{D*Rlg_tY#*G9jyv$HIG2c@0O#c)iPG z5B|Ixdh_Bfah0uV;EaF%1YbkfIw+MWZha_{`JF0ifToFB?{Vmx*!}rBMfE6o#p-k2 z8+s>UX+;-FX@%&Ms*WkkqCzqvw>Q1064v{W0rFT&ZdLlg`E+NCOdqul2gVwV_RJLN zvVHXYjhFZ@GR3^Xy48241U8@&6`XE^!brGek=a|-C}uw&lHpfun--$Y48&S#5m7nc zRVq+pV-ULt_>q=9rIitkb5Qb;5Vntes!wRk#RJxs%>E5LACmF*5sHa=3L8v2->6xL z$u=Fc$jwZjw=>zn%QH;095u-ZxeDR<;bz!LZhz=C*w1u%h#XPqE|u_n`;pJy8avBy z7VdCvkBL#CYFr`;*)n92Xn9I&oM?}hPc{`HQC5Hi4bLh3E-hbC3YYxoVX4h8pBsF? z7gPTk1rFSSyK+_hA5Fm+|azxujg*0r6f!1d+xV4_VGwOanGHaj@*beXM~;4Czx5|NTy0Y z3RNF_s3E!J;_g5B_RE@P`gAltM9aWCp}&ZgTfGG`vS1 zA#)h^3~AHdEDGb~(w#JX%}E{iyoQb7@l%;f6e~%8*wi@WsjRf64SCtnyIW2t{B=~H z5&da4vko&?%r)T*#ueIh_}<8&ikf%>4l?EEZ?J&Rth2lIfNdYa@B4imkHTyIFOx(YbT^n^%*6~ zP&4eBZ(|^q$`8j&YYC(@yi`k;rsYN2DyKFbA~nZmU+tz1P8n+w>eScm_GcZyn4YSFUM5jj8wza%QoFV6XcUOnTSZJxF8Hha4Ech`u&6l1JV1I}3 zh0BWQo?~a_KJ>w4WOoZyjStduh8gKICEbk^#V_meK;ovqDmJ)AfwNbvkBY7IVoU5; z9}JX|tEl&btyQ{Mu|LZBX0WI#oBR{7mm*ITE90-mAPcvgWrEtP!Lcmo;bWd*^cMF=zf{w@*2sW?Ar8V8g+2vnFjY^rPD`9PKk+g^Ki%yHPSJ8G$Ae~nH zZms$Vik#YL{5HTq1`rR?LKCY7g*K_{=FM2ysBJ9j`nvoC!k6-o(!~$aU1#%{7(-w{ zTO5*;({F(YyXnWFc-Z3?__j_}vhmc(j+;@&Su(UQj=ss}SFn!|1-Q->${M143rxP) z6TRQhSOlJjSkEX~K-tXkVJ+CPfSjw=c`Y8P1_ydeLX8{r$pp&X@z2y)40k4DBC_k| zi_e&#DAc4-@YhTJ#I(`n)x+;Bi z#TlPCG&tupd#4YHXiObKliT&U$5pBm*u>%I>MAR=?_cl3wsuENYA_`TEJxi~M?1-N zVKrpv0JEkU;?1K<4sk6W8O1arc1u*6@)7PQAbo2;Aa~REepr^73KEEko(CS_7jO1H zX|_qXCHD|_qIFqx;+vOjdP);3u)Op{uxAfFBbVIJ1FNT}uz%ZbSgm*E7LiAf)D}G& zhmU!2S{0~NSK^96LrYCLcK?}@PRiijeU3^Tsp{Dn?(79QU1I$)lo(r*o7M#6$S-sC zgB}k00#mXObAmEKcVf!Z*URe{ZgNqB5iUHH5eqm>d&8c2T0;iY9n(xvQ2xtZ$5 z#7tN3b%gJJ91~1Q1X$cFJr)$)oKgl-%nP(XZYSBQY7|PU2Jpn9^-mixh63bo>Q+Y? z*~ym*YN{bXd0|IdO_Ec0`aITt@$O40`f5HvvW`ktt93x<_6{*ZO5n2YxfhFS0rKA} zyG6%e6=2@-aLhMvm~68}i=Y=VATRNVk5@=)zq3~*3}E2?ycvRo^Avv~shz?>)EmBt zh6D=ki;c2zM@d7v<-^=*WjX_GSyP+*R-^M!l<(UR)IAb9 zRuMN^nwnpD|6{7^t39s}0(Gu5zGh3t^Vu&Y6{eWSp=5j1FY2mq28?ysKn={UYZ8fX z0`pyw`F&hu$Ef>JB6^&~ibRDR8&2>J&RcYz;7g@p4j%m3r9T4a);OA0Mw@HXb4wB- zE}v`D`<(7U4XpFT5rK|}y~Faq?^I=!pL{LS54F}Osc5Ze=);ab!l-r%Idc!ikRwjU z-E7MuT#WI0`f^ePGP+hp_pQSf1>Dm)B(Vtf!T2-X)q}VT8v3Vh?`%g&#^AJL{o5ns zG=-H2p(wZz@qJ5w+<_5Pr(ay6_Xe!sBrm{ODeA=S^J}tz>o#gE-nbXYN~V-}gkB9L zG6?JBklILzQCw#D`Dz*9veGYLVKBBFLiR9Pc?hS*XC9U=jx4Z4G(5ccUy}I@l)fWW zIeb8uMqHI$QAyd^eITlTHDN?K(!~}1P-KtVO0KW`B3t93Q`iG#~YiUul^A@O*tGfo4eS zQ9x=QO+SMHb$Y4xO_BRt^VdAvFWM*o>ZkL2=q&9wVcjLKSlbU^czu!JMuKTgP&^tI zMdm$c&`rS@2C+Bwf9!pByB~&iIz0>_!`B-I{yv@j@dQH44Y=I#!+Y~X_|lPJ4`Gk< z@Bth-iPm-sxHLA6+^F2vejsIC)wyVkWW)u>m4Z?c0+9Pqas14Mly9$Kh?g#;7lRfs2@jx>3fF^= z2Om=$Ycr+dUduaPFIh6I6ZAsinYeXfkZ|%N#n}58Ju#ca2tfJz{Bp(!WAH3dS345) z;Nh5x*(usZ=cpyNlo7>BFB#Wux&CSuknBhmDs9HjYurwQnz#3Yx^)^vqIce{J;%_k z4`IdN<##2hKSjfp#y>?{{vDQ+ zjqy)$Bi8?ruwiE9qyywV*jNE|Nx!2;jKAxW*Z|26_PEe?2e%k}3JO72a%2e~KId@-u&{g9T6s1gINlWdkIB0K8U4K#LR` zA?qKi{!#~k@A`jaZ2m0}la1+5kt0CJfx2ZT$@q{ksI#?*rs_GZEn61xRLLXZgK6{-Nrx$Kzj?Dbw#G;m_m2_7C6V z|IqPY8YX~tuRrraWo*|Z6CQw`5IblH;j_(M*fV5!!2rcX?k9toR|BH=3~8XWvusyJ zqjLGXS8}W4uS4I<$?jHY=S^lgITD4-$}1{P+9N`TZ^}DH#Z)ej=C|!t_6ph!a9?jO zE$%O?`zsDYcP@#$X-nKyriw#TVwcdn?lwhu>Gs9MdJpEmZB@q-8Z&lOaUS>BHo#_j~((P2X|> z?#5c5t7!1K8y-gdzy<5~1y}pHx$4Jw9Q5^iodIu{kWM{xo&l@HA;c0#H5r8K$`RL$-g6qL{ep6X)^6=jI!j+*y<7sMyIm#iAe7bes)-@FZ>A=uUfM43XD-Tch zBws3E=MJ}|`{<%Df);)vu)`PSr;IBaj)+8}3zHO7i!t*sJSvYEA;KUHfntsW5C8R2 zfL+5(k-%vZiee$pfZVjn`_ZVfe**U40|e{JUot@+hoF@GVwMh1m z0T?79t>Es)6fCKs4|f#gAcG;eFjB z0pQ{ou4vDJd{iYQD!6?*_P{bq<=vN-B3m;=Jt>||w8pH@pD9)YQ6H%;HgX+dWJ3{V zgyV9*tE3*Wnh`RJ!0#L#|4*9SSLnNlr7@Skgfiy|aK-wGV zz;n4EM{4T@(XT+yU@{%62I_Z0Xc$NGW!+AZ*{g)&8Jxjuw*S-T!yFsKwp7+OdtOaS%#-iN4Kb8fxHdv6?|sH`Ah_t?*oRBM znsUJ;T@x$nHT65wp~169z&z5=o|!Ge$G{XM+kJ(V^JGf- zhS_iES!w*nWTPRsSck*zW4HoeGNlfV%AhC^ml)fx`KWyWTNA86uzRKbI^^c}*-NEC zt9jm9-?bbYMxy4EV#)zQ5i!vcAEMUQ@P!(%0mV1%$GiNT4L{9il~aAaGUACOw`Q@C zA2tZo6D(281fNy!#abuselml|fs-vfZ`!5}>HpIBJamH+k8Etpp7|MyDshMBQ;PZA zxD9{ZXx}S_NfJ(Wqv!+_uTUOFE>GB8+=SHa{w^7c9t|SRhIO4vMN%h3-Ocj~b{=>M zQ5yDyvghJ$8uP4BuROi!Ks=A*K}zOPHk$w4G?u1to(=2>c^R};)( zTQtZqQI!9aG`U0PApv_X^$EE(-j@ixWlSB$Vh0?Dq{S)v^)A#YRQt0`G+&+s6<*+z z1FR`a20Dy|4&2pL0-x#hOT(XuiE|RERGX3#jWlD7s-1SC2r3i<+*SpBE#0p66v(k+ z1;a%ow$w$7_lz7GTsvs;lm7T@VtgN*>aVyCk|5M_p5);W1!@i8zrOs)5>yzYcX0Z& z?K{zZyRVicSNkm+|_MS44jE{ zB$z$N6XO#To0*zNjr#f|e(!qfRxe^zq+irH)=HY57F3jvK8w{vXsn_}X%J!#o7V~@ zcI&X|k^~HwY3y`%1AmoLjcM%sxoFIaIR-Ds!T9rBxfjrW>S=1F`qC|28%kQ3vPoSP zBaXGid8dq=@ktuVkehte)x*!SqI}XHyc~qu6I3Re6OMJD_y?IM(mk4N7d2C)(7m4> z`&TAR--mF!rq=aF+0fHyqbRU81~4tVowyUYVtq;o%bg4o^>>`{NTPVm9xJ3#CTyEG zpMHwdaA-rsT0srhh!iT+gbElYJwJssR-smqeX$!$;?q`U+ZHr{gzs8EUMbp>r9|{G zFK1OvYeztMItkO^FWq3(dEd{2anAyxL}8LxH*3_tmK8Yi9>c&STh-Dv&@6o92Df-H z*JXF%VTi(+L3a;oloXId+0AjR!w3}dx0S>3oxh&!Gr`9ZYsk0QjcTF!P{C<4d*+4v zo{&zj5u=mz#L#3xLpbuyAgB_?<`}B}7N~e&0@qyuEv(#`vjPMtw92<_7`df%6|%Ig zUWa&jke`VdJi(zhic2oT&~n#3)1Ey%IQD`c=oCrf4U7V00-0}enMVn6VAI{Q;>}Op z+d6u?)5R|{ph5}4RBi=wj!V&&<|QsGAjb2UcU}DsY3T;Y08T5CV+C|19Z!ysw(>H! zFIaPv9yCD9*q_485soif4FYB)lg=L46=s7$Z zQqcp#vZ63&^OaTA%V8sNJVMn&GJEIM`dPcF%Ht4?B6c!mA}MHw^cdmM{3)|X)X2SL z<0`RXU?)FztqLXP<)3QI`~9*6{i-x;j|a z7V~SSFjur*PjWd~hd*$Xqvtwa*<+HsL&WL{hH7MdHYty#z$yhun}4|4F8ClNgTm#!m9#SY8aJx|e-S1+I3m^B0#GSKrov zCEczM$oV?cP4M6=cbvzhk(rr$nqSctW6)5q*-IWs9OJrm4EJ;x z;+6hCGJnaiaxq-+>#(RX^SMu!7o^nAvVBT)J^JVv6x`lIK+Mev{M1*hWHlMBRM#){ z=#v!}NSzT@kH5m|?rK!|iMGa={#J;D>PjiDwuurVkR{=w7j0FqZ~(M4yx_`Tiit+% z&JVO*#4mA*poYOfRs)&IcSsAf(#>d;kCZqOK?J48zHVgwHCjwS1cv8v3~+$XrfhVFwE+*%DL_MzZeF8%j@(P!n_T>+JIW2-r?^@Kcoz%6~`qP>_b>19DR z^7bxCwVXUkU0QRQW8+4ua9C@*&7ZMXi1RcDCqR8oGxe{KK5Gl2oQZp_pu>S!A`J%B z$t6%>l+wx^JrF&G^QJiu{2E(tF{nJXyFdwBGyJ9?fo&ldpX=M_< z?Fz_ZJ;%M)Z5c{|{uqf_CbmCd{<}W%+Ea*g@v43PS0Sdu$+i*5*hjeOHk;L&*+=*; zB9layc3YpD8J$Z!{eqbv*YXF$38bh)LE&Tk=xMIY9!Z1h(fh#4INGkC!8NQ!92rd$ zq4dZ^bPl`0e@N)+Dfo&Orz|)?nyipd`9iQnd)T=g?|sm*r^A=_-bJ7>AXvoXY#gUd zC$4L#MAJnYo?I(PyM#6Vf(Nu+t|SO*#8Y+CVk!}0;s9}v)%USor*s~4#&?hDMQ-3f ztr@_@AEV*^B=_A|z6#al@zV^>NiOR?gQ9}bZ>5oD2&CRp@vtHCRw=B@cG#}i`B>u)g0MAiDS*X?WtBcGCHm=)qtT(SdCpQmSI0I zQ4u+kER9Pzf^s3m5$uEzSc$+)5^HKKQoIT*iw?rR~trkFr)8-vVufX5V<K1*c3>dAegRrF%BRWCii#7*E)Lykh_gt@Jqlwol&`w;0 z8~^0Z!svUI$4bMqe1(&Y&u^MJuM$)!o(+k{bn9V4OdzN1*s`1GLeoIiM_ic0{u7O|a z)VQo5M6fGqBCq3iE&qmkOtVujXR*S64*yo+;C!`1%+h}24+_x>Z8>Zso47oVn2uU* zR;j}7EB-LE6Zjs7+Nu*%f-|$Qi+cjRgyOrV>B}QJw5n?vg;>VyG&0hKxwkNPSaT1P z^qSIa*N-Q2yDvnEzI-tM5h5;c9DWI`>CEz7N_q&BXpq`#eJjl9{%dbp9mPb)4?UT2 z3MTjsKRW7it?&34l{&caIc|6)?exaL1%8f5d9M#G(CEr3*-8zIkF@Wx2$CRu9; zw72@x2dGWh&F+<(hiXwrxofIIniHD*GA$1-?#de@X7qQaZ4L2*>q#^*y8)cQbjjfsbrVa#ZDMIXlD$ zm*s?}5b9KU1lpGxrEE%)6t}wQO>bby{~1O8%R3}gl7wdePEQY%6_(pLZ}Q00wjokq zcbE3H&5efE!k^{iN3Oboz(@r~FISS7VVQV);9;SpuH%YGa)^WNn`$JHZCmx|DgNnW ze+NE))idx=A+5~trJql*?EvM7F>Y~Rs1ognfP8hV!G82lsNE3Rm=1}v`76s%4$STGH;oF*PSIX>3-0|ATA>E`aL1@Q<5gT^v8!Rn?M_g zj2-X*O0^=ReI=At(;+!;6eBW3w>^2JBQNp(qxx`0HsxOjS(#I8!j zGgAvd!JCDTDFRbO3GlYo?yE?E3BrGYbxSlu+j}**JV4K=<%kk=${bk>B#??-*#@$@D4bERFE= zx-k&^c`ZLLoDd98yT#Sju;1h}&=eUc|G&3CU5rp&CS zZ}`*@$0y83#O&05f~3sVp%XkXs93rtfRXi^8WsBUy*@yvYaC|*cOHqh&9PWatUSFXhv2>S`BPGQ&)8kl|Z zqrM{RTA_GG%^4$ZSR`yFE-EepZT#2d2@!v=-X#`3+7`cRTJo|^tAQ_uY&&4k&SJ4d zVw{oH?^Xg-?@u_({@c5FQw(fudg27RZ1rN&CE{VsZLy;bw|7=`$rdpg%8rrY$040R zHOJ8gI%1167n(Tv2`;8pmVlLy&JSO5$IyM0qmC%`aPjPN(8=YTg)7FQJi^U z+*j?64wQFDm6H+PPt_0FKUhY_Ko5_qwyfd?gxisM_3Y$T5%JwE@QrI|WX!T9+w`QJ z2h&3!Z{_we2^=ZB{UUsosNzLgZ<4RXFmrtdk>7lMsTm3X!t?>KEdO?M_W!@>1Hf$l ztwI)npTPcm1D*8`8Uzc&AMOHx8p^`>Uv3}&`yw%>KQ%=GTCx6K2cYI3(C@~=2%u5` z`rQEiRcwG~00;u}zX5~_0KBL_+NJ~yoy=`*=#}VI6eWKDP?$M6**S92)4RI5(is3Y zuZYLQwLjT8zWj1eP=5tT5DSyb0=HCADPlR+x+7<#zyq! zj<(juPR0(p<_?Ukth5Zw3@o&cfPZD|NJ$7V!2Z=&V)_$;6u>O_+jq(gFfIV#4JJ0m z-$imP08lJ|6TtMlNbYYc4<1_x`4nu+RaX{2}TuW&BsZ(w`56|KKbA=6?Vx7JmbKf8$6v0gx1CLI5FzgZZ!R z&)*$-|6CqyzhS(8ULKqbe_E#O|H)V41kh2~{+A9`=06C=|1Wg>X_*3A6#sTwm;nm{ z(C-E~A#eg#$!}u|FzWvpo&R!P{=NOl{3rVp;3fW3$KM2k*#3b&{%0Vl6A%bm=lCNK zG{EajKU60kk=Vchw`|Xp5jaZ5&1Qnn_Ch#r(Y)o-u0}h2BF9C4fFq}(ptv~_b6Whx zkNG>%BgIQ*zi;MO(J6!-SlC*wi^|Z+<7_?d0)T|LS75;y}dymA0MsKtr2%B9@+@ z+S2RfLc~Q$xuoRubqDli`o&crX~&lmgT@H^JzA-^eCMs5?_+HLVlzv()7SMioOvpc z!9eZX!v%*Iz0qY%oB(dEdO4xL-1)X=x6aV13-p6g^DULR&fD|*Mz^TdtF6l&-^HeP z5cm7dTe}c{Bnv`=CZr4!A}DEUSfH{kkYde{xEm;#t^q-}m)>wpG`DZ*NvP+;Pj3&m z(#}(DngDrW>5!Vh_LJvZ240kcV;?V4u~P20R5g$o0I zKp*&~LB09Uamm-h{-}5`!;qZ-oz%7?jNEKuB~FA|L(8lu60i;obKN%O9ma+FfFo*{=H zT`6vmTG(1C4~VqL)|X&jjO6m3QNrBUA7(qq=`gI=lCoSN@FaxAw@|aGwEd`xB6%5c zI@@9VFIqGH%Pfniv7lJz1~*~~v{H4s`+D?G4Rn2^@-C%tHrU~*+Iv0n{$g=o1HtTQ zZWoT1Okg7TIVs2FE1yUU#RG*uG7}O!gRrjrE;RDQ_?c#^2Jw2Wi;x=H>W8&*^cvv` z9lZln+a+2;^Q)VRPWP)K^FcZM>92npI?47P$-~Kj0k3L8lxYS+pnN0W`nILmM;OtX zV0Bl3+j&nfk|m+OH3({HZ#bM1X%!RZ{dD;h5Io#%e51uiwJ+A49jkljYf78Zw_9%wbn+!IB{e0jib>UV*#5G1gka3F;_F0*m7rhmT`{!gY z&pj))c#S!sQdx|I4;REy`$8dAE_yO zb0jmEQ>|XG`9t<`9Ik-NINaJOB9dtsqa1?5N>jJd>`M=rN)_eD&Va7soDlMj?NPQJV-2=+rkL(nuJ%MeIdUw}KQ^IoOIx5VcFM z97zKVbb9%qE1OlZ|c*XASiss*V)hzomyF;`3fz5X|7_g01>PL{XRS@H=4qR?a?+7^QYTngH^93nq@8Xz>=h$gIE1<(;vBL+8`F+GKju-BmjA)tTZVPHt!v+ONq2XvbazO1h=8PYcXvy7 zH_{;8jRMl$-7Veu+|0Gt+H1O}bL|iBaXjyb#}DFPiOVsrd%$u1#(ACw17NY`4Jhv$ zyUm=fs98sL$fkZll)YQ5SVv5{(VBVVoTrdxE!WhRDe zc!l^GEVIZ9hkPADg`BlV?WZ-q5W-SAg+yj~!-l9oCCF$)%qL5(*qlV@3~#qotG$nOzH zTu?Wi*L}}fWW%7+s^@nqV~XIN_d!fqFu@BT=D1Sb(6_$rB)hjJZ>B-UXMeg-&AaCpLQ<7Xgn->ZY9M9LzQg^z)JsKy zknu>%PNFf|V#+S!=tD4Cl|(;AYBd`~N*=0Wb2}J%;!VZ-!7Tn1Ixqif&h|v2Ds()B z5$m$!C`-SG&ulni2}HvRda}vUcn^J!_fGA4S1pR&`2@jclG|*i%9rsY&U!UMGDeiWW^Y&T9>q1koT|+(5}V-ruJop|*(wmp)N)@ZK7}U5KVg z|1HG!lu^g}4!H-oVlan@%Q46%vtYEhZ@8xSZrHSi_qbkyP#`%5fsRK$4S5Si-m91& z)ahN+g=kSD?*iTtJYs54cb+243dpdY8xo?}A$QmKC*GEJG@Q%miF}}-1^+1Twp4hs zPwCsd$s^>!(kVEFdd~tXj^Y;h5tr9`Nel@;Zqa(rXEI`u*t7$2x8E!yu>`%OnV_OK zO?%n`)9`gpV^OhT+C zf9ygFeGZ?Bei?p7=~^y1uznX;%Uh5BZlU> z(%bu&G)o?M6p+&e$Eq@Mrj%+|Vb+PtS=LCCrYb7KR%1RI-1iMlua(M2-@GnYh)dwt zayuzqC?e;&L9C%ixi}x6l+7YDpJRPEF;QQagc}9H9#ErezI(OV>kw@dez31%FGgyq zu*jnCY_O7Tp&Kp9z_X>Qnpy2GpEH%PY6=zv$G6tJ4hbG)!D@5H#YJt#6V<(VG6oo5mG!#9Rb+EQSOom9?(^U>0^r4APML=DL=MJH;m~3;!)4SB%T|UE6 z?txp9B7dOt^w@uWHnsVwV6N0zcJr_E$gia3p3V;A=(deznd zK05Aia&D{Wdv|KIIsk*Te^L^ws7H|qKI$}EB?0=Nl6{8JCFY@ShA5e!7RvRBR(w&Q z+Uvd8B&OZTRgRcX90zrQA^l9Os>NE?CA|mCLF+Bmx=F{a8BD0VoC;LJcPp)n!ekU^ zk%^zWRJfD2Fb+r|+-gN7w-K0oBXz}F(>2gX%TktKSl-3zI-~d_Hwc4&vIU@4`25EG z?CVj8pL3oi)u`@;>%%Z2OIm(~Bd55`ds*rObKb72&rLDSF@vBiz-nzKTqD1LEtqKdzSP z9%eT+Id7Z!O5!>{cKUJM48P;*O8)o=qSk23Kn2!vVSk*wmwmFOBkNDl3_2V}Aph~* z1{az0yLn%!&DDY`(rGKMT<=pg#Ff2$sFU*Ep4Icm&>?&xKh4bW5`0(%oVK|D0k&%YLu?*-5l z!YDbeOtGenyYbM@vZ5!KWfSI}uk4qT9V#rUD#*FjyrPAxI&%XgBgdj`T`CP12v=Hx z0yIZp%Cf4wd7|d?=N`UO;=`Jqb2#+Gu0@-VDODLxnuexB3Dh!OXph$Gr26IE4Kk~4 z@Z8jWj7BSwEz<-iDaImaU!-DTh zK)mws*KV>ff*pkhQetvQ!aOl4N1NZ=^LeySQ9s=}`7fxw+Je8NFpKEWk1RFEeI2wb zAA;&b5&X#3*U#qH=$egqK__WuXcjqd#hFxM^urRQdJ3@@^`0$^6C~2QbkUk*oT1_v z7c^MODUhlP1V(ostVR;ORF*5jCZR;#ppHpj`eREp)B97R!(dTuP+tG;xI3j$B09T$ z-^@yb%3j(tsOeXct#$lVR)XI?Q=xm*fzQ*W)DS8jTSP=>-B#jpv@%$ieDGPwq$56C z-k80JYW}=mX^wV3t+=yyrG9HHH0mf2Tdb6!3=W!dR@`qZSsJBf@p{>PU?zXfwt#lS zMWUj)(LVgRy%?(&5+uc1#cXpJ@1q~BeG4LyV7^24QLUS>j!ZfD=tNvoaU-MUHp}uC z5DWiz#A90)rQOqta&4EK=mTODIYETn9Db#4kvw3LA%qP?n+r)-k+k)rQ} zMaW8T5Z1srKs=U@TVfunt8%-r~CWLp^RW!-W`3 zR82xQKb~r$>lsc~)?v&O;%Msnd9-U*GmXnHNh&IoEb2yBvWS-}nu=K>)767B>779@Jkh>0?dsa}b@^R1|AsyL z#7&u&+m3t9KSs(_);L|^r21sfMNe1w4vL$&BMeoRmIV}&rR-jcp5vHk=k`$db{1YT znf1;s-X-;(U>AQ)&z^LK^izlQ*Li1a{fr-|;Yk^lj5mBmQTfB%ATqRYQ!7?eQ*Iu# zQf?|DVd-Jqj46qtpQ?HB12n3&Ds_eqO^?^;Xo}8eE5Gr%eshD!bJI~bU%0xA`*6p_ zby)Pp3FJ~+>=@)CfQv!^eAGHT$5c}NVi#7}H5aMS8?sSHa^g+iOw)CZ%as%n?QDaf z3z8V?;wZduecb5wLFyc(YYxy&?oc>O$k!5mT)P565sl021f zS;jd&Ysn}A7|rgq2$?dk$`RHWN%?sy$>pNG2)y@ARLULd*9#@f#^<=W4Xzd_Jph;*VTg~r~81(bvQ1x#=}G3o?RId?@upvlts3?1caIM z3_TfK^m~a2#6a!8Wn&bHUj<{qDbG*vm=({F>0hAysyVir(U82rTmW7EVAwPrkwTb0 zWlVI$o&$BILhYv5*JLF;WZiSRb(#%I=O91XL9ki{90gPp(@S~z2`&LwApWqz9Q3F3WV*|#^mrj7Oa39 zd3LfhGr{$JM<%PdJ_%%1jaChS06D>GC*gncA&N3==>j9i70iP!tPdx9Q}a_yXCcGv zI76%%;~QqVd*xIvv~yreWs3O?0x9lKZ$5iD{j6K)fFk&muMqQ9c>HxI+=fI(0)hPj zAJ|gYgg>|Nkp+nQajw2ip)o(0m}ko`tJL;E-j-$zBhEhn?c&2fdh9c10`p^D(inZ+ z#O{Xv-Q?J$ky2zf^8PEe3%#!;WFStqZ4yZyv@;V9jw0J8R5Yfez>XQO)<@lsuK3V= zh~PxK$_}+2Xf-i0Uo*bW&G#1K?9-B&7K0tzOemYwLk3sFL&G!PV3oXMnhw;bI;^Q} zh;uRC7wy20G~hJiXvrnNKWrOnu188a#T`U)7#XUp8j#llm1E)h7-Vp80ip$Ja8Nqi znv#mf&b|Pe?oR^EbrNZ9=Hf~&Csf7{Y5?)z!8Jv7fzlfAykk_Lk+%9lxM-CM_32Z~ zll{J&NB|8G6C{Rppn_m9yI}`@37pn}9+6oAg#8sxIy+t&b>Q-5v)akG-#NDfbzln(Dl(A+T?E-T|Y!6!wOK|Ki@J{qKWmVPk0uhY)U1_ve)3In+4&PSvCwd_r+HlU zTE{N0DZ24Oo*l^?Lq&!tQ}yTzC97%AXjq@^*E(3`ib`KINB9-T_eSOfp(n|&!ISac zE-~pSCm&X3ea?^>H6tnwV@x{#?octYa3{1vML2j}Nz4wjpuPrw@Pl7IrYv1T!@LG7 zhdt7!wbWGeHlC_{wFw}u4r+X%Se41|cRf=-8K50|e)#^q2(BjL>hp3cpY-9%G3l6@ zh$YPP65=lM^Wz0|pcz2`iH4o0kmo}*Q|83mPcrR{R_XcH^%rk8_e&vRfOJBL`RyvXMDxVBtw!SoYiyk?lJq%OJ?I<4^<*Dp({~uusn{Tyvc#D^Dt7A&ooSze~W}*IW z!G>Z)w7qN}mYUODW}l(Gxm(DzlGT*-#2MAQdwsSxg|LYcru&vQXxhRku;$Cv@_!j%Tq?6o`(=PA$S)*NhLF9e;*hn3>0%>*%(^J`sO5B?9s zzu}5Nn9qL?qyIvx^?#o$0?hDlD`WyxTujV>evI)Cr~(870jv}dME!PV{|m!-p=iG{ z3^wLpVu9HI6KVrk4j^t}WBxCx4g(#KXT%1e1jgU9ls_|_->`#UVu4;Fo&HXv!^{rQ z3qY&H0Z8gzg5FtQ2oo!yV`BQfw2u7+SN#k50hvmFwI07{mH zqRj!N+<&Np<7JKiRR`M(uKAz)@(bhoqxQc^6k~a5j(?T$(i{J=ia!HT01^L16~7X$ z|3KPaSSRqHvAig!*oc`K01gUl4(m(9{@%Mr@ zKoR+Gbuj<+w*10jIsP5A{l(eF2x-xUEoAwX&y@bx(W0VoS_ zr~*j(C69~cFMEbT)?*r2Cfebj7)!V&w}Nb zL-&u~`H~=+G!5jA4FPiZ#5q7FH0C;PPHlHVMM^ZWb)r> z0zQ)M&t#Z@7i6RB_Teqb*+W%7Cgjn^e@zmF$Vk{2b> z$l9Z`K2$MJTmuR9c?3pWOfcyNgz+qIQUcip)Wb7PZbPCGbwWQUs%~wv1Cq!-7LxK( zFcJqe&n9cGFZm~2X2?46`L|pCY#}~*3DmA0=>4E;W1@&?K~fKEQc(_A+TPRp-dyOq zU0YYu?|pOK7vw3Qk$O*GwLoChbzr&pl?$}X$i+zT83{{@sUf=s4^khYfG9rru7aQs zbU4?ae*k2W?BSGKEPyOh0K`L{g1Q{JevAQZP1|xGbaA^Z z3&A{D6h$>KI^;pg#FM?DPTpJu4V4dIC<`9u6$;e$NQlQnnw;@a)av`=^a&8El8_M- zkhgWGcZ`_k89Nw7I;H8L5f~reiP|_#oPdaU%_iD5H}i!=AVYY5xUgj42*@JC+$E*1 znC9wTM=;J}G=O6SWRdWsWO{F>wP_hlpH97riTyba?82-x^;FmmhueW##F(&yKaJDcMAmO{ z57a(bD%I!570h!g-c7YXB>!6TD`%4BEF_^!nNB~;6Jd9+?x0M#_kjJ7zxAmJ)^#KqI|jFPaaKrnCdUc@9&ohs-kkHXJPe26=Nbuh3MHD62$GGXbo~nlqI$E(;Vf zrk|@!?$zlwN`olrOd9r?pvsNnqMQYr(G<*PwOPX(PCHvlc!6i^<*2L>T?-ymGfNw@IkBi-Kc3#lYl@4ymyH{ZuZ^ zTi{_xpt$*lc-wGNmZY0fV8>>q0A49MN+}t7a+})#H0E>rl?oY_Q4!jr8>gjZy+&CiD^S~ zk>q7?zxMUby*^cs(}9zS)Rir7`|jr_avDB{OIs0m2dOXWXPw^z4TElP7=H~;)(dmd zIa=Gu61S$3g{$nky;VJ>B*Lvdm?8GoKnx)gE`mgbEunTyEsE=FcwODLtM}Jvv4Ao@ zz1YTRyzc1+P!Ct?zJQ1lsQ`gmSD-uE>Op(1^jp-N8GtRlFS@>gzJ@5^0Da5@tn>z}euL~rvEHi&sP z4Hn^}hZTh82g4VszwJR?u*(WKZyxz5#RQQ0q{gq?Ucq2`j`-0q+?0%-u%>-OH7o5s zC3ckElQbhyi_J3;hgwE(_-t$1fl@Wynm5mq?tTY3g4mO|Ee>wyT1iAYbO@@FDjBYX z)-__FcnJa#30IAntGEPnmPydC=B}P)KUNt#^d;r0CF>f)NwM(foS<-Lw?kr%_KL(q z5?Lk&b7k?UfBErhY4#Xx_hze`+S_}tpW_s}`zqZn=yK^BA2AyC`9TfSK7m+K7|tee zC7YM_a|&AAL$dbg;N^957b; z_C~zww5TK(F7Bd(L}3#=kBMd2Ql3cSTKUxpM%VrFq|FX$d>?}iH{W}u;P@I#4trVk zZ3nErjn|5O&q5gCDGkQd0S(iGQa5(ZPVIh%r}G2Ix4ym=kvCAw6oT4q+TVr_KHlW9 z$W}BN9y8<(hZbw%C)6R17KHHXQOKb7+T(ST;FQ!0E>e_MfjU=H73(LgtF^?|B)Ndt zkHJ|_PZr6?s#qUyM=jyKenvfj=Plnj>oxU%0KDF1H$@o(Ed`Q1`#z9jX>M2aA9u!A zf#MMG&Pj%U3kqs30%&R^I16dS2`bpV{Wty z3_9w?j&g55tC2v+l(wggVRB2OGuMFz*-)zodvm{_2i!LZ4~GuNva2)g4*1VCd?8PM z)s4cC(KrnfvTZnTQxM5`#5^d|BA|3Q)H#0kSo=HABYdXG%15eC#%fbs{v1*)=+xSf z<8&FqPuLWOo$zjmVK}^TLnEESrw?j;zVT5HvPmIDhjf2d{6i$h9@ir(ejas)FI<*ge<<hvQ5KW7$9MVSe7~8NBn#Zsg(GA~4<0!%{*~FlewB{p zNoNMD^AGlM_h#JQHg)7MRK6)t@B5*^fA7rv*;;JS2Ii-CENo zd|kCz%e>LEK9!A+RJm!-5H<|+&X$5EB2&gJ*Ui|DA(^T>Deif9mB#&e#Y=5Zq7h2W z!Yyy;6}FTmN|lu=?TKj06NNK}MXcyd)zxaQj7!njUYngp&D=;-N4GA~;oWf68qB5C z({hLCBmdwlhA-+jw0gH2_R7C%jZSg}kKOc%4k83Ey*K=m+M@S-!zt7)$?*aDSHqGS zcrh+{2ZFLmUvETq4R11;j90c6Q*tQ{J83ASmGj2f*=ZlyRa(7rJ3W?X6u2!NctE~a z!aea~pJ6??foSSt;=G}yKv&NfvXIHvR=SLE;49D@x7ETFsLwA8xk|?{X>eQE8HY@@ z+Xi2J*9MZUTnt|1;oT<9L8A8I2LesdN*0<+C79A_(CjeVjxk$?4$^ML*GkOdmh7r6 zJR4psGIA#Ja8|Wjdy6Vn1h_gG=RMXf2>pr5f5JyHfDuU6pmNH1i>r%zm;^^n&go zT@P7;`{_vC`aC*M9I~O~TOrdD#hqUpHRO(Ts2n$d%*(n^32;#a_YO7R3_>Dlpltd4 z5bxpO77)!{>0VJld_MIlBh2wR0ogicy$0c`*Tr|0Lk3+B<#uZTSHVs{8(Avxs(;+Yz%jn3%UF-w46wP% z_}I!D#vluY^LpbeS^!$Q20U09r*p0_?g*<_9iH-+(@#IFmUz8~tv#1C785ucrJ{p@ zpPDFC=KFmX#5UuXKKaM*a@jk@!tF3y%a-uk=frtkOgV!$f8()S1+R; zr7=`Z_pu^H;Tv@#lI$O`c*o~sed8c&$U}R56r=SO?ZT%{g)f(S9sJD!7M#Tz={_A) zuadp8>vD3uG>ahxZz{WY@tEoaeNDpby@voOLNa(qroAaf6kan*S3iQWFj3rP$VImj zYvzWF#bTa_Liy%7>cl*l)X(v{FcL3k@A5g>k8ZQvNGE2^3cj&fVtKx4lnh_47QQ+l zVv*{3#1}R*EOjHBaM7AV&x zmY8-p#P=x+jZd#)Z_oP#;nX7H%m@iK6Id(%5rkdvF42}VET7OdzaCmo983u}5Q`8Z zk&tQwdhdgzvK-_})jA_E_OIB2#J3m}-A#^~d9gO{oGf_Mi1983W8S6~d?ER;v1qCG zKJ|^2;d)ud(WIV5Jj${ouanUZ_oor+AC>t&_}^#8DQFnoW+(e>q&0D%H=PB7G~JaU z9K<7*X2XepSPEFgIIo(ESUb{v$DK)w!_2;+)iU4h+^?4%G+ z-l?q(L#`gzIo8bQGQ_hf!$2bOj)J$1PVy@eLs?xSM=bf5bKTXcg>l&i*HWo%B?$s5 zXSRK{vUGo%?XKrAG*CvL^c1XFnRMDWYv*r~9II!|2Q~O73)T@5|UjNN1^J?62+6qplr}!P6&HwiPNANB779*2=>_ zoFuW2M!i-m_*VxSxJSjCLqUtOlUj#h!~%b4#V{LQ)Mf{Bt;oEUC7Q@pEn_zSN_R%3 zw}n^nYK4*2{Ci;%=xlhr)rroJ72jRZ&G0Qp7LQu$CZ@&IWghvA1%-f0MzIS4IlUPx z4u8&@AR9ws#NRgcZ)3Av8un!6Y8FTD@9tw*6sH(#}oqZbg z=Rd4?OqPA<+08ixah;GLA>sk?mo#|@&<$2y2cM+q62q1~_UYwMdrHo0owdF@#acux zxCXg9MkpZ43|&~eAQaF;EFh|5D`3+{T3*<@;G=c_VSnfEW!pv|=LOL?8(Gc0fhplm zxn=X14f|}vb{WJ4{McXB2&&+<`+@8Ik~Is?0=Gf&$>bdPvMlMm>iFp*7!P$-evHuC@+?t3wBd*b@()%qho#Mie;c(FD1)X; z0)^Z+Z07Umg(AYB<*a^1!Yl4!W&m!-=#j3^^3eGzkT-4|g}2GVolsySO@b&Z9GZUD z^38d6^kC)**>f!B><-h0e@17{`eNf4n4mkv6{r%Yes2>F1>9g-LwJsAnzdtwS4GBB zrD|%Pa3ocSpT&UXb8XR+AI$Eef}>oW0XxjdN{ zEVcuNok1>g!EKWJW5;5xU}&_-nhRytYENTcZTJ$5VTqG09cYQs*-S`R?+hGNVs06k zbzfe!$+>NO@=j`@;7$;G_k<1(IO$y}5XmurR}dS-Qsa_O?iyk!Vy&L!s6$_~*zakv zqV)`0W*X}}tj(Mu-DS1gGWfY7#!Sx#@gwv-P&)3amlGxD?pJk0i0-5#9IO ztV3)si?^EJUzqq~SObFv$)CS4M<`0}lS`KdziAYXyqemB;vS~zEtN{HKv~y5%YUH} zsJ6&=*#cc1DY4!0ZX@X^p%0kK-Em6SwKoJytaokl2arj({f1j{{0EKA|9x)tGAjSO zsqcS50RT0<*!}$%6!?c1;qS(VjQ^{d>o0JE^FKfVMgSQB1+cPkzPQ{mF#zZaKt_NI zBI9qT@qf&c|22PR1xChyF@OGrO#lPszg>gLZTrmNv zwts^HEP$x%FY5ROP5__vZ|h*Vgv{ppcP{V=E(qGWO{KV{2MOtCrI+wQ)Sj);KUy-_0OsD zUqF&S8WR}81DFVaBrlRez*dtH*sR~90icKeeLYxSAl?6157uA!#2=1@|E%K=$)&2? zCsPAGd-{JCC2D1BL9b|FXXRk4XJ7{iGew;3#gy!I?G1oGiz#ss|G_a|Y(uRq?Sa1% z1?&kqng1w-5BNndBxL3M5h#oSXe&BaW+q}_QqTBDcgg75+nNCX_F}O3hkTTQ7?6Si z4D;o^fy#eBY-i^9V@Uts8m%RzR#{3$_(QTS0u8048>(ehE(PKxk}=TCcRq#4KlUzs zAU-S}Z0J|NY5^PKA`CY&r}|idZW9OwVI{|jQMz5KgOH5rJRFQ^Zi?KQ+sQ~(BtD2o z=FQLfh^S>8mn|4*C@7zsFPxKw0ftc;?+VFTjAM)^`9l}AjX2~Dn|FwmrU3lM*uJdd z4uz^oLb0>(a(+_QS5PXHS`)FO=p{A72Y4$ktzwj7yHt7b(we0IWMsi!giB6 zvDYo*SK#F_8=BTOm&MN6dZi$xWQAxW&y-_{pND7_$+?u#Atk#Lq}ol7N-VSk74&!q zyDz}PMFSNyD{<@mal@VUJYvKY;)+@OJ1;(+-5t*S2a=#gEJB&61ud*K)b(?$ z7-U6rHcE>%EIv@xF@(>9CD+oa9{nM(Jn**A*qS{zZd$=mtx`4|UFD4FhM3(UwEK9Y zC1W1h>5=);&C>}E1xGF0)$tofI`&PHLp1plgM@WvuFzTv6|BGcX7NJl{&f`pzux+P zz4iZPZ~gmCh~FO+EKL8nQu5y?MXRQi-2w+{TXX+2sF;nJ3>t_;)W;%a&IqbL6{fzP zvO!%YX!U%H>HZk8oYN6@%Yxo=n6^4jw$Vt~^oZ-@BC$UtJ@5MGN(FNOaF_J!SZhP=IMEaIqCJaD~2d z-htw~-k$ti0{I|gBQg?lG?xl|oEYhyaN47t*D=J?di&M2Bgt1uw4FIxlbi-T5{kIs zfd|lR_~|5CHlY&|o3l057pu~#QVSz?z^c@M%}niTxR67kXcYEv^{&Y?Sp?dYr9Bw& zVwZ0Giv)%QFKU6<$&J4iRvxW<10m(p4{`AVo0xkT#{IlWmo!&ckG9lzbA?);sflRf zEKqTrJH(daDrwv&nMH*}FwGoo5+cLp^3*h3_Z~hJ`bR2f{762Ho_CF$-owV(85g56 z$c_Ethwm9GU8x%?`vp8XEJ8NN&z^iayGQPnq@jX_uSne;>gg?4uh^7-I8Azj%{B(p zm&O7C@l!lsKY2<$z^PP@x@VtOQp`cQDuz|Zo39u(?St=vDg)}9_lLCrl8aY6e2)y{ zIky`Vt)8$66W3x3fs;=xJtRK%Eny8ZIWJf{s?=UN?fk8=m?hT*xlC!SgJs*~xri`~ zDV%dKnkKnOT4NF1&6gskb#r()4Ca_PPG`WVv>vgYj=FGt@U?=EWw=sQaaibsiG*pN zICFgEVug^X5ZACrD7QC%Nqo)}!IGv;%#cHA>j56b5oRA$uw{7OqV){b7-&p~k-;%k ztdckvlMk|>V9m5m@>hBANSar@K(L!c8g8;l^J2jy8W`jg$#e<<>yTUSeEtdfkknc3{^LWziGQ>n zWGQ7{rk>th>UTfJZ)EzPwM=kaMn%$GU7TxF6BGJ1YwU&7MnL2H9lndb4QK7SRplE> zn-AdJ5CrcTz%MYWpFbqAchr0p*U4yd@j%-zHpC)C0R_q18etAu)S8rC=MMd-LT0l# zc)D_`>F4_PB>faVRscde6l&#TjWT7W>I0E`=vc5I#jDs9Ga}adm~3YU65H5yN3L}T z#ojb9M-2WUt^P7Y+V9HW`UsgVCD@SF70O*@;h>x1x$O_8G#5kz-s68;0d-5U31W{Q zXrLx4gX{?DUoBv3Ow#7{+&WiZRa!OM^Ko$n<*ZjMt_rI~Ty($^Go)tjlMcI?0yX;@ zod%69!RQ|yXSobjiNc=!;r+sNA>*c|mo;X>B~(?~0kfKhGpt8e4hd=I{ihiOy84W| zb(R>|H#mG1#%q`N*IhFxdJBCj?>*Ly$dv`SO4<9@F3iZShd}F8ZJXKC^*0Gr=3d!b zRnSAtMRvLzfQZ*CZLdLqaE0eNAqmS)wPgZSzJVjYHNg5xa*mJp4L(i169n2TdEI=LWuIs`Uc4r>_pVT z(c9Z?!D>a*iC#U>o1mtyf>ZdWyFVqUmS95v8_P`}Bv(@cBcm)DjucK|B=83Q418WZ zE$UepOo)!2!W&D->FvjPoY9bSw_=b*;FG1?D^R%`W ztu_O5lmd}p&G^n*bR%JVVuAvfvmJ}{CG0dG=RuV0a15_7fiJ0VOf0}*YNOGd$Y~Si zzYn!&Eq*#uiu^f8rCFeS8^ z^L@-sp@Bu5+b_pV{DWR__g)kFNtQ zwi|ox2ZliwNvAO?1k1T|b|s6kAKwYQ#(oIz)*qy#J)AnQMzU~rx>?;^6J{76nS6o_ z9m$KN8a@h^W=Gx+5yoDi4a21lZWEtO^c7j*tAc^aU{q0W`Yxp_xjHFzrD&1~3GP1` zspjgLCvu7!41+^=)rc0 zfyFa4YCMZV;f17dxdv5zB;r@QH8?JPE<_t46caS1*=og3e_fJB=90P ze>r>GB@#}?aEa|%Lm+7g5l=%{hNBhHG`PVO7o`+18yY~+Aa3W^;0oRVvrBFAWSR|$ zMR=6d2|3@GitO`B)J(F{@CFSte%sl3To^`!8`KQz)4X}1j$ir^J;x91Q;k4a^iZY8 zz?4to%r~!q{}o^0DEJ^Fa-j7YyEuq78rL`2z+mi^p(09Vi|(yWLSpwH;~%-*@QGK) zP%zDVvXnire)zl<5G0EGxteW(rl<$~ik3}a@#3=eE~k_Kqi&S^7ubz1)f8iVXc)9Q zyXT;kYMI&)y8=%>@bq259&;&nJ3s1zRC)fv$FD@K88uTF36%Q=CO>s=aS1bqUW2t- z__d2VZ(l%@%bYkR=sBCg#&eX9vA5Mnr6?0EKl#3|&tTf8L%0jreRU6CPKR+f4IKlA z)5i%;A`e+|2yLtXObmfp5qXyHjH&z#F(s)Gz)VC^!kyR}v6@9``os2!$nGQ{Ys})p zFxItll?S=RnvO;qX4nJg&Bqv=Ix5H1y9sc8DVEEfO-tmUP0CFUP2Y{@fQ955Cp-K* z;ntiG#O_w9;V+BDqe%`y!QG8Y!ZHlI<2qfJKWamxCdk0U890*hgu;3Jg{D3$C|E~G z-rcAPSik0^y1;ltbbODkF-$vE$-*aO>@ehO`HHKc2!ZK4x4C-F(7Qz)oq{4Bbk1Rt zJYooDu>J;a2$h3rN5LCKir7#1NNC{`)Q*zzAnMc~Pz3RQ(k`xj<|%DoY`VXUQiYwX z&YZpaN?)tuA|4mnpBP(z+t@si@@+_$%8qqLARd=qP<@O2#5$hjI+{O%P_}N)?ek}6WZ#CZLAb9>zQmS77&@?r zVWYh}kFEsYj8TLu)}Ux|f=zb+N|SI}5e;4=QqZ>Zh6q)S~-NZkdo8IalKv^hXO zADU`-KT)V@YGhxR#$?~~I(hYWlwpp;LBG&8kk)o`Stg+St_id(b=^Kgb1C~17Qe$Sq;y~HX+9{#ql6$b&)$>XVmFHD&Q|9KRsdciPAJ2!F@05_lSgv1p{-uVcVf_ zAI2M?kk=(Vq`PpeAN-hPYsHw{bx`JL24=`DXzW!v*|$i%y-w->$RpWJn1o<``B?j3}UTq9e2Bq!{;@j&1^Sd^jtSj9$R`jcvIP)ot+@ zL4=!@bmXV30XO6$!V(RYlb>ox>gY~W(~VE(_XzWr9+mAhQQ8Ef5->-4qjoKYHK{X_ zg^$?6m>t~r_|e~9lk2Z8bE)ALTZYb&f7ZrWLd~?#aTbwsjYq)9WylU&-U@% zot9|}@=#iGBy*y5Pv1s8J6*u-Or_1;ec|S~uZj;I)0b-kQq9wz^;3eV+r!;p($(JY zMTCU^w5e=)^=Yg>nZv%nSJAvtQWzrnsl?545Gy>P&v zXYn-iHQ=Rev`oJjW;rp=TQ)#9?kJ5;M`WA?`Cu!COP5bZ>`!xpq;Q;H^bm)RhYe(h!6RL6uOXzlv-ShU?TZkpb_AjT8YCBV> z>vK$>@vp^-e)2iL zcYKYN^y7m%tQ&q)$>JSUtG!1wq+ycVmxWOGfdFIWFgEy_>s7fvFF|V0BR!KGex3^8bQT>ACp{GFe z=}+>T@(3K3pK_lwlBe3RH*EOhF`c{krQwIu=ZXX>B(zcQ%39xE8hCGrsA#8YAY{{9 z3gKCKA}0cORu=TZ9**)Xp8sh4#+crse1Ib8FPQMw+zLU|q$AOky?hH8}cgL{87$)UhjN$}JUbu~37)3vTz% zbU#yIT52t(H`ZRc(blw&S2WkxB`=F!ZzR5MT-wk3AeOoM{emL;{IgBq?+5a_b z{j2o=_{xj@A`=j*1W00lH-LPB1+WHWWczI$EPvt&jDWQ2FL=VAu@@uYP97LV%ms7KKSNdgfW zQj%IJ7fe7U&MQvJQ}6Bov||PyA=YonFA)iOX=3-sOe9Xawz3T8h*9{>)BSm9exK2G z_t%^I+spma%$*tf$nM+nTg}G7RNGpfcGo78ld;T@hq^+~8^IQrYn6wC%hxOCfRF-w zEi~y#rbxqL8UYVcw_`5GNwcDF=xu1SsmMDostF3pBQJUmC<7Nv$1SfWX z^e0uCg5xj_Ne^e$JE7}BxR%t zW>%M!;y%($Nmi5(SQmHWOG-`tYm<6n zL8>kbU|X%lc>7w&YZW5#Q67#&b#Gm~N&9>~dPAWV^XlWe%ks>k+P;-YRx9mjPq*6VTj@#Y1J#+!(o0*J!E)knm(ljNs3Q4-pf4RSy1UYN0vfy4 zjnH1((OCp4ORB?qlP~Zlv_4{=Nl9%#PfFVS*9_mUxyS|b&K~g<#=lG10=Zk>X~=CrJeR?Tq|3R=h0Y; zerWwFFZ<8EzOzcUS%Wg_$Z0u{m0N3t%3aCt^yk-h-B#qriQ4+(Y|B#6sbFW5lWp-t z9>D#}UfX^g4Mh#emL-r#E<1UGEZ@)Hy-?B+a5I#-g_PW=fD_ z^CIh;5}~rr=G!a%sv*39*Pr^Xl~F_YEw5uE(+|j+2Z#l&aF0b9(GH@`R`AKQ6DhzQ z2D=n^5@;y*ot30}m_*2w^pbLtM_C(!mA0`v-UqF-Y0C@PsLdy; z-w)!)u|k*qC@wVXVh5AH(T*r|45fC_eq-5*98`yKi>I*L6q}MIkW)g=H9z(|&XynD zH*|Df)K-=@ma?nDUNi4o1b<3gWQK$)iqg@UKpf~CWoC1K5 zeiI5>w)r(%VJwnxn}p@wJE=OQxR_Ft zd;#aCkx_(x2$6)fPUR9%-!r;K4}Pa*mv90@FMN#BH3q64bGp(AX3O*Ct}-dQDDFJw zDIJ!lFSW?>9XnU)hN}V{f;Xc^U9$_v zhpx>x_5l}%OOH7!8p{ZLOLsCfR&fZtwuXA31qfRUZA_qqwsulvbID3FTpRXa91Y$iR?Fd134_Tx)2#b zup>7-a>a17UD9gi=s~-6I8APzw0d-I+shzNvXT!&x8@KW#+z1Q?$biMA@|3ra7v3{ zw5SZKLQ*NVb3*-E)%)GAcox#mD?`rfWPf01CH&+de^mcayZ13;37K`z-Y2!d>~b)% ze!|!TTK4KmvkrG*MQAOhslyDBaZuVRa()ja+7aB3FtoCDy#;dC#1nz6Y7hc=(ebW9&`4q%51L_zt(|+_Z7=d;jcKlZo4d9KV~!O4Pja)un^Eaqrt*RA z&_WQs+R*lm+?di0etm*Q%M!Q60Azln^=zxl9fS(e zWKv(p(pSrA;TY!lz=|OwM{HHTnGA%HVT~Nv9hy*q^ixp0X&yy!XD~iyZB310b<*?^!p-q{v0|^O@X%3)HHQ2UJA$9G@HA_!3ob?{ z_MV#6ik*x)9*;2Ay*yv6ylNqiQTbBkhfJ-TeA?`6ZjBp5bmIfR+6j*0yGlZm-p)YF z^8G1)_1pbNhHIdqfdTg?W~fn63s7)lwUFfReW2`TOfa#156P5cYVQc?_}un3)w*{I zbg;%xZZ@#_hN+EJI*KxLB$*)oA^q3*dp6G4Z~Ceyc!^o4DJAFTn5hV7Oa5Y!_IZ3U zg|;SBf#ILQ0PT5%pKgG@a?KH_^lDtP3S$>6SsJ^95?NC0drnIZowH6gGUyeEoFCWC zrcdR(w5fE>G@i(wd^r}qF^E!ht;48mWWd!g-_Fok)SY-qNjJHkZlyhHy)d%j%U|4i z>fJGukHlU8uG{0NXtB%)Xr$6@G}ub`f`XCmu_NN*7Zet@5CRf)8~l zp*M2;iEln|t=m};Zo`{`HIwu>J$?3}gxGjRkMC?yt(h9Y|E0McFDHN%uyIlL(_gKs z+5cWPd=sl0fH}Ayo?-`%@UD+kie=b{MA8G;sAquqR?CIQ!LVkq#Wcl4bEdUO@uh_7 zAbYJmS7RND%QpRm+}9XHV6CNo@! zn|&><{=DBW0v$vX5-9z0v349To|pq39yhY3ot!Uiw!0E1(5z!^3_n%mvm zy7Ai)`RmUTAEA4i?HS)yEALoP6yf2k8b1=0Dr)s-MUFGA zk&y~galpQ^5};nVMxELqHIx&G`W=Ia!ICr^K{-1x80Y0~Urgf*OM|?aZ#RTYiR?{2 z=q++kByAFD@aEU|K9}%^m*5vB9ip<1S@`F;ONy2k>G3St+HDb+I zTp{mmZ!xQ5kFT@6Pn~J>PkZPoQSN|;?8!<4_aCI;tnt1OU?4VH2_NZi+0z%qE#Cmy zZq%XomIQ(t+1>Y<>pe16%U1PZ!O9E~PVx%s;`a2V9bLg|RC3t> z9G>B6U%-F)7E!)o>X(#w^!Ssh&-w|gu-KzJi(b<|q3FATn@QZT<4^(b-Fb9#cdG*1 zax}YxA9(5u1D*@BTO!ArAX;Yxxm$%GY*$F#vS@tY;NZMYr)SWQbG)%UgPzML9Il?i zDAffJ2H9aV_Xe~(L6dY(89S0Aeaj@dOg^;f?^*D3yjAFvC-X;R%7;60c zUIXNQt;k0scwJMf+r*TUwGqJZ>%!u*bbH;z^)onFMng&8MH5SnJWqBd37|w6;~1Nc zdC_c~AcT`WnRE8EWe~K@1i7(qj&5V2^T6gm9q;h);e{Y}HqV~oPVi&tbvAbB17lXU zZywWc5~Kx%+@-{pevuWSUTee<$+Tj$@M&+Y4J&FBZDme<3a);)W7geAH@U{2d@tso zxzCB;*Fv*9%VxCO`~lLxfE#t{+s)9zp^rlQGs8W3fO@CxE!!b?h<;`hQc42hLXVbra|Jsk78#Wg=Wk0=t{2{@+yN-c#;iCYVPl}ht-Kwmc2}st{?QTBn_5ZZg}CITanNEg?4ihbLt66ID-<254n}e< zD8H|#(}v|1kFz)0p9tl3wZ96N$K4x9m?wcrDk17LDgzI%36rWHikpKcY;U2(Y$(zl zR|JR2KdFPm=EJ^$Cxv;6@wROace2W`aLwwC{i>WJXc+%UXJ|inD#X0|vy8={VF_K(~b7SlH-A#(g$I;GHwB z+g=~d3}|K(49wx&Wbs@Pg1&-xhhb~(%yp!E9K|&)B5Ljaey=W0Kf%8>AaJpzr1nN? zgaIoZSDbw+)PLS0(D$%H?Sw@Nh=&s6WRGalekHBxJMn6aEcM<5`!%R7YXg!_>Ee2^ zz!qbJSNo7V?KZKGwre2&NI)JFp3JDFj)|SMG-`kTuuH{b;BBC}EZ!1$KW{273HZ|TUGAyXANa)OE!J9`39;4l8BrsW~6ryY%vcuW&MrnmOjhK z!J*0{^l7%YNzlIcHl(wY`kHlwEB0kw+og3`&o?aPrZ*9)l@s&+#~CduMtC?$=B{HG zv!%qf2gAF3Teeucefj3c072GN?!OkYnE_JcKMGF&=lcWzbd!Ic@OME8K$_#=`U4*H zpVAy4+YQi7|6giie=W^%{CfbKnfbS@_z%+DAG{!dfDEAJ0Fvkc%E)h8&VNkxcXKcU z0{#C@FlG52#{M7T9LK*iVwnF3_5Z^htQ>%^{=24w8^BuuuxbE`C7@LZKwtT*{vI(i zm)~B%zX$XI9HzgT<4?jq^Zz1b|8XV&S}7n*4%m3W%FM#R3JB=`hAMIW-Fo~MuK%SU za{$_S{$e@)r0WAh?Eg9~|CBG~{zLNp@A=YA=k;ck?x&b-;I!TJ3<{uNBHrw2DuwSQ z^KATerAGxP;G)VHl=b^bjr^Cm*_n4SkR5rJ??5bcLDS;l^`;jfTIc@TmmmU!%XaKj z(W!6O1JA8?cb_yAMstreC)RtWYX}@B?zZpFtP@)not^x>o|?i4-}MfY>pyNJZx1iP zpI`6EU`T(aDNB$fmHjdsmeSA3c{?&Rb@IMFJiXt4<0nrESC*?TDWz2NV<0)DjEP{O zNQ!1szuG99d3U8Ab1Upl*4wLW^m&*+8OtR_c@wYp=jQh+?Y`MAr5uSgPlrRTW56LN zpo~PO7@%84B3r;RIh0R$LGpUK3C_~RxSXoDOXGZO^6AlQHds=qXZpnaBT=Vs)2Yi4 z!opT<8_dGj74v$I50Q#6aiY%K|HuKITGrT^UgmA4kcc2c`4j5?90Rpt{|e3V-6kJW zVLh=h%O|E5WunCp!4no(GwWmqJ{TGC(Jn=c=B{Tgy8cO;qn=Rl4>59Ssv`M?KAT2b z$?r`09Ncx1+|XR3KhmU1d{U2DxC-Yi-x#=}CHFzK-arVx!0Pr!cZO+>_kdfBQRVum zejd@Ls!Be0>KKthy6ZuP3kHKPcH<6+u$rt1@l=CI*Q`^q6UqcszF{sJOy>5+ge~bG zyBMWIeS;_n&c%}FmqAqq5gOx(w?;5wPv0mMgVznul|q($jJl_Z2#e|g#xIwT$SH&K zYOI_hG}}~*%)@|Td=|r0#(`;2E9ho3Ptrpl&l8C!u`1vT1SE_&1aD{3*B}s8~ygH(5pEgFU~lKzNjNr?Q3@;%@7|qGetu=#FqgZO9k$vwAcARw>tG z5QIPs2e-%*RKXcruKW1ltNeSAH|}ncQrCa zlOX&IH%0PuXEJEaMW$9EI?pf-<{LT?TQ~h;b*pNPPJBH$V)_}8{F!{b_7y)etMbpd zOM7B12N)ubP(IKRv(g!xvA8)EoMpOjuLjGLd2Q>xTB!DnFJLYjux#eJn1zvIUCMD%_DurM^Y9WsrREBuL3M0)VEGRzsIC~P$YT+N9aBtCbmCxUPrBE{;{cQw1k zo>?GPT>i;%@Ub7T1YbCb5v`kV-d}LbaZ=c|gJG_{_9IWfoCkEMKe{7cP0~CBFf)qg zj%JVKOW|wwnxcN9G9)uGGGpkDYSO)#Vwvy}$j2$Jld zv+CU_iS((bxIko0hJvi-btPaK8&gLO61V*r;V?W`*riLHEhtxL&$g2CJZ}~(4>9-4 zDx7EW`XKi5citzhRh*gr1xp(}-8D^2*}EBTto@bParjS`=ECivN-gRDdiM3#mPm>G zqC7|HHZWN0e7yk)b>NSaO@1{NOnRe<;lc+p6>;g2Ri^5A50plcXgUy5Zw6H-qa`cF zl75nv0Kmag53L=Zh+uPL%H@Df$5EwiVNKR};814-pKU4_Cf7k;kIkQG6)uN0Oo>h)*;E+9h!Z+?4Gxjy zcOb~-VTnD_>$5x{{y0p5!#UtwMl139MMup-h`mAXOzgQcpfqeEp0i^S1l7|&FqxzB z-UP@XD85!&R-6e1s3LHsS}n}^SylI-lMI8AfTstxl&M2WyF%UAN0Lkh%3Rt`dTH-m zpH+-H#q7fvfKbtx=OKLPS$zP9f8VHx*JKK9G9ABL|4CKh;2bDNm5iAg;+$_zxDe>y zAVyGlDCs0)(y0-rBDL=PlVQD1?VYAcx`PgW6LHvz>vJX!CX?&{m(MfEsa(0IOhUVb zOu2{5aQ;Z*`tt3w>zgv2Euu5#_XJ*FZdp@F=4gJpxw37folTPCc{}KC*=ODS_iz2S z9-KSHZg=ME9j$9e_F&m%@}ZpTjG4d9n_c#9yWrC-#O-}K&uP|AKqaWA{bSns8fwU97cECtDd*eQ@SEEGqc}F5e<eZfNCy`BuRW#C-dSE{#^u|!%>LLP%ed*_i7Uxd*J>AYZAW4Q`-PkzQ0C2 z5qESW4SB`vj+|)R#qD-MG6MtJP}4Zjg9rNwNr95g;RhY?Y@`nwi<<9Mf0WxM}jG{tXqFcY-!D{xQpAGu`@e(#MDcleT zIIRXO-eqg68W9J6v&I`{gj?_Q-1TH#m1;=!_@qaKT>T!^ zAAs3~KnA#du7k{leI~fzU8yg!W<=9syB-gw#uq)<)2zOsejjt+{Io{~`9U)r+6^a? zd`XE^GOQJ}L4|BQL7*Y7#ME}2aa;S;K9fP!l~XYJZN$Y}ZHJt^gj!Fs&jT_?m1A6O z1;c%5=aKm9;F;)Tu#KSE9|vJl=M` z9MFlp`Wu)5d2AtaPT}F=M*}adFgc8{F_&z_{-!%&JaOcwFu8^dP%f&5y!UKGqe9;S zvAsESEWb}GFEPBW-*&4n1(rLSp7+cn_4b@lceLRN+#+hW?f4m80+NwcTX7E1&G}2< zJo1u>3Wwm`@Ny*aGQQ|>go~~jz_}4@6&wQL4$xW3H6kDS9bdxt=9`lMIenohhiEX+93^ zN0tD5^KX0n0dp6QTvdIWD+Qu!%6MPqR~iQBtr3jcQ=dnpwIQd6V0*dufp{kb_DDg? zvksof6D0g}taAdudAK7O$q{*Ip=KJI<~InO48br9a3Etg;>=%UTE{I$8dGL#S>Bx8 z%a%wigL{bsyGtH$M78Ha3D7tw7~t|YG7pc{20db&mC-6SS^3{3Y8&Xq6y$`dxbM$VJ}!(*u> znf}GcednaS#RI&B_}*J?rO0uwc^wRA*|iJ~qR{i89X7_LwUip0Cd63T1qjOmgDspD z+mm>H4Li~op_HgL7&fA(k~$}u(Y2WnC|Ce{;dlU=U9V%=jOoxa^NRr7c0=_W^69{{ z-7I_Q>xDsNo1J640C;i23zmOd>n&P&B~f8H!Iu}KamtKl)KD~H`E}?He#FiiEnC?_ z<-0neZK(|#TTc92d0S9kgg^+Grf-^|l zrg9C=czV8yBql26_Sn_dj}Kj5Ht!G=K~6jkiYHIMQ3d&@{EV5g<)&`Jo!8t6=#;%$ zcilcb1?g^2J;l>!Sr+La-mxlo-ub5qg}OjEyFvV5?=p;K;4cQR0q8>GW%8(L?D(g8 z_y^iw@dIqcSQgrN3jIZmT%z-w=C-V)iV%nLH@9|O=G6=};rkRhbp@E)I~6t0{KEt~ zvh4LOqRhW4mcD>YTF;T|HRDiLpLWiAOauwN!&5!fUrE`oIlD0}o#ig}4KuWSVZx5U ztMKaTpnYmJH|3T(^ETJ8N19-VeJKQ+FHiAHw2BK*g-5MICm7HWb9tX_@ZOskHLmE) zT{dCf-H0W|oBueT?IrJ0Re*>oS8bEVGDicf98+uimf5S3`gi zGvb#W1S>p>BgpsmJ}WZE5YZpAxk|{wR|V@lIPx}SCTZ5K;T_oqo<31{r;jLw?jfE$ z4S9-K7|cqiF$Nrlz!2)1n1JtsA*7g1r zKxF3ptFRl#pMsEoPz?TIrI-QI86bN2pF!E*u}CJsr+*I0{yPAK<@ZDG1rUY&jnD^#AejL`6u=LF z?8*&bVgG%5_rHU|{~Dps`R@P_=HDsSf6{$fxd2xLfNT99bFcxX`rpU+H!cf+ul^UO zh4WAHGazsJk7N9f#sXmAfDrQU%YzkA9}mF0|Hn{&C%68Ivi;ZjWzIjz&wohP|8%;G1bXa0jj|6j3Tj=#K0Isc?S15&vEyc~cVlmjrv zZ$1rx9t4Ol14#COx^@72{O^{78Q>!PH~AR=cKNH*@+bKjpsoM&9BcqP004vm#Ha!B za2CK+fV4U@AV$sf59{%7F=`IL)d!TU92&voiN?dS97e zm{IrAcdIcRxEX^Jh?NY6eL+_V0*d(6tu(8?H%BNa%u0YiGg5ex4o2O^#MFZwPgac@ z$SULF&}%c{;_DJ|HeJI<$Jt6rH$b%=KRr_Tgk6is^vjHoX9zz4H{Jl`8_Z007a~5A zAw-domqF`QAl<2@8VivgSScp!R|!0ijYmHp%%@H5^+##nBXrF1K#b$Q2=DAB+k*Pb zIC6SHwP_AE(I6K{!zD;(8CFEY0SfTZKNv%Ij%VCqWm>_t`CsLeFm!CCKDL zfeL9j6S^Idr`PGRB&%0R!JIJzo0OqMr;%}vhX#i2&e6%0YZ-g730+?|tjde9(c&Q& zm*LNaL&TP&l3ZF&{D8NLjl^Z4j@xC(7GX>=pUEjY(&0-ve5zPq2oh!=O;f3dO?2Un zfoUyQCOCwJqsl>2;i&>b7SHv2Lr@kTvRfz+GNUghR_}9p+D=`7md#{Knvi6ZgDPr^ zrsnLkYf=&JD7;`HubS7BeBg!JoEjp<@Z(6sDd}L2Cdh++Gu-SbJw(eyfE7bV%UR06 zd?dipkV`jF6sdr+?`*{Rc()YRe-&R$gV5fPhW#}PF<%)Armr&LbR~OFzlo~J^A9b9{jj_WD-vdE3Kw0FeFxuz=qAG$|=v_Yl%VlN~ulM=kfiA?)vTl zJOJ%zy8%gLn#!-@J+b-hc65Po}?kulc`!69rUh{A8HGj4c^#F((36$+@5>K2T6zBs}yu5S8w0{9}EOQwJ`h$Ua<50%$1>3%JN}j)Y*h z|74coz8O#aZqhrzKor-OxFJce+n%{viVw)y<`<+mA}oktiyn8)&fd1alO^n<0Slr0~hx4t{CLRZ#TLtv$&-zsxPA)Vv-vR8)*3rWe`1 z-C(dP@WdnT3v~$Ff)!z?nnNCj>XSb|-6ZE-?rdE?tJkZ!zq-8e*2nSk=&rT>!DKan zyJ5Jz{%|iRce{8mr@*1gtu3L-KzaTMB4C*A6RihEr3a7ti&aXBC-ve43VT78fq!BS z<)u|yVN+VAwwx20O4sLf0McdQefAa<-))&FzqhH#$tk>Jm=bRprpfhVBGfJ}?mn z2mc+#+;=S1@6hy`w5B14mq5hETS#c3diKw2%g?|=Sp0I?(k$??Ne_KMZfe|IjBzz{ zd5|t5##Y~E_xnYbztcd033{+_N=-HKgURS{2gBhbm9Rca1R4!A4) zDEwHm2F#$4!NhE=!t5h(Jmm<46oO^z=tqvKP1glKGus5D zr6h)ecWXC zgXW*BhNQKzl*Gd-2~`_iXqeoG4(#cKPoLjWIg#s7%~;yEzl#a76$o47U{8GX=IG|- z!GG}S_G1{26~x)*5>c;7rsXGddvTn$Q5oVp^A(2bj4tEEmG)?wLi_-F1ukd0u% zD8v7Xg26~U@zW+EZ+A=YEEp*wPoyUyNx`^dqn5&KmkF&1%LtpPS%??NcVFaQf3$Ci zawOGWZrSjo1VHM^F5U5DJ$ZsbJ1e+YKEbNDJ_6}Q`c1VDr+J&?pCf`zUNZFYq*_A} z5XcT0h=8Yl@2FZwG=kPl`}vHZo>JWnx!y(``yNStW2pS<-%&DirPNYmzxL_?e?tSb z-S#0ARmLVlP>$SAx3Y(#${BW_H3t8+B#iLq<3K)4y`&&qpIGBP;xcma!`(+%K?mJ+ zwx9|+!Y8~6u_y*Q@eVCT{q_+uO@g0f_^O1-GeS}eG{EPJ>*)@8=}CJVcNo`1IQJD zm4l02OkR4gq zx}ez_J;%v`KqeY7`P9i&?>wdA#CD!2WICD`i*peydgvv3ECI==#mf~NrpithJ{tv= z;ZUkA=)^=00BJ(UjuFplR}`pcW!VN=z){IW`l`;ELDOI_yJx|(!8 zDsNokCF4 zePs~KdzW26U4Yfs?hE4zH*7)=i>3(~y5&B^_2jRSDZVb`oAshX^Qaw~S()VW5Ta3uj1;!Xlm< zg7ve#`WnZ2-lbB6kZYd9XG0Zd?ZZrTehSi3eXQ)`!_YIeH%(Po0(g2`n2?+8!&F8$ z7Fl!KEsF2lvSS#8<%S}=r@IsFuqwgbe zwp(;+_G-b9T*$Q@e7;Rq$VbxY%|sDPD(w7D=^ayP6GM&mi4-pFN@=_q2;^V*cA%H- z$U(Ym2A@WXewtV_4N7aNA)PL93}WIh5}n+M=c!!^$TIrP0jW*JS1dn0ldy-7QsrdK z;=%+w>9|g)tr%~mo>_N=ST3n|hE67KCKAIh^U$3&KdxR#^+pAcSt;y5s8#K~V>)H>3Oa8d6#sFq79kHvvKl;5$a1+w4zI5VOaM}$69 zytbX>>`jWfF034$iN3-Y+rG6%_|h3xcCJEBL=|^8P*90W#*e!KYCYLwcfWgOCa6+5 z*N(vwMaBu}xVf}&!_E_X!)tJiy-YeoFY_wF`LT-r#YR_&iX*VOw-R@-yni_9^d~L4 z$R~Mq(K0mefS7^9V+;7)|3z0sdgrrHfhCAcV0N9 z$fM@kv!NFAHGyi7LdL9U8))+5=JjYKx2(r;B(a|!nw9Pm7a*=F&DyOYqb=N&##PzW zWrj{Gq&Fr5m)bCgTPhGj4rwP9MWy1xAd8J0Arl?Tb(%6!skhgZ-&wy97;Ax78!&mS z00r^}z87YIpXN#P7PHB4nm#_PT+odF&`dzRq`AcQ=kGMm$MauAV&i*T>!@;o>oMqt zobU9yTR+GyC)Vtvr-rQ7dp?b?*m)8YI|-Jj9$H|=X5LDv4DWu9EF-=zj|+@8FG>;l zQJ+pLF6g_8@0!j2lSzO|7+QnLFeOqbVsYh*&qKmlcNcWl6*oUv>GZr4f|Y zCT~nAIBPE9u`tav;5o75RBcx4dTY0rHte=4cZdUsqi@CdI@NCo^~sLZcrsGuoWt=y zEYWnOWKWqri&vb1LL|-3{XTy)cLW>KKy9~b#C*!G7N#*QpsPmcm#S2jqjN1)MB_1t zA!{ao@@o+KML3elCj#~XXRZ|cpuU6CFw9q~^~sr0uF1y4*J-yI-h+y`m?pLf-Czaf znUeuHKxQ~MJ^((%o5M1+x7 zb=<6*i{;cMvVud)bSM7kPYLBlhElO-XI;xaWgTsGGOL_?J;kRuLmEREY{Gh5i#1-- z1_{VH>)421qpK^?m!#Baw+1B|0=v(4hMZH5Ex=O*URZM#cxI@KmJwRYiu0;plCc6T4+2Fe`qrbpx*&eL_TobP{y$jaGl21~oo!`;{sH8~f8w|Lhx0P7xVaidgu$~b)8?swCo zj&2l|Z@o@wPh`m}L1@UF{CBYjd%(@3Hg*qT3n4F8&A&-+*9saB~R+PzTF?qhI5?lO%CVxqqyIS^&=TkepMXIZ=z=%R&CaF_%z2# zQ|{{K;88h#5BdcfH`W97cjC+cV&?q+Kz#XMY@Xlt8-R_^4#?AU0y<~`W*|2aJHYGs z`{HPpKlGgc@)H2j_y4J%bN>gq!pz?E4=aP2`40~IKiC?-eJ%jO<3GmuO`8YUb^o8n zVEe0ZKR5HA%qD>0`7bHzFT}DxDv|;A4qyQQBo8(Yfae2no0$Kp4fl^-1^-IbvvT~! zCIfEfKed697iNgBuq_p3?yth`DH_zEa^De)dq}jaFe^VtNV@6j z?~Bv=znol`0b=zA(}RW)7Mjbyc=$Rx7!U(y7%SDcG&Cy*<}>dw1YepaEzI8UW_AxM zO>WEr7~w?T7?TsB#Nh%cw8>7L1FmLzq82~4CK}$m29{N%utRmS^v|!PJsHrhrHg{a zqQ%mQ!W>esHyBH!T5SPcs^nd=fX2J?t9N$f`GBZ~fb*;DUdE5Q9!@Zx@gyP+#C&Kc zEG4o6ve8{hA&B8JQVt?dsjN<3jEI~tAFst`P1#>-UES^0+Di;k!A##p!fJzOMjl?Q zy^-Wk5AKEJ?MtldM@v=Y2TzbY1%Bv?V;6I^5s-XLKoz+n4GR!Sbf?fDG-4hPOntJZ zFe5FwA?t60FNN;h5ml@wlJ+|eN2X#A`jk6;esUPy2+hJc9Uz8wD?H?6ghIG5ZF7%D znJ7%>$CZIhDFMv=fkJ+gO3sr_FzV>+%ECX3dIQ1jAI2yg`t4eNYnL~{VLrq&iE$-T zg$FjqBMG~u10pXnfRrmR1`g%Q`6F)rtD(X}QI>gCEwrr=VFlO^awlwbQX>rTE&WmM z+DR}22;c(?3d|TwikLa2+iB9t{O~c;tdVJ3>;RHjgm=`j(c+kp@&^V*6m&}u)k zGU5T5dQ;(Vy#~9D4E=0O_G-X_6@_A1e>ABU#R!9VLbNx$xTOax8+EeMC{;Nrn5KYR zyFjS<6|90#AlKo+^pOz;Lm8$b*E3=&^d`Hkq-itZ+G89J; z>U{Aq^lRCsX(O|BvQ9%wlq0GIi=ENj13^MbHa3QU}Ye!eTrslz=A6ed|)#<*2NwKS=0;k!+ zRv_UI!Ehqg(A@Wc+9}$F$uZbnw~4Xc$hU4I7c9!&>p`I>nfk%|My-{C>**hK6JH-> zVF>lJ+*BpHB3*_%$iw>k^u$YZe+&EvZtYMhOGYFJH8F`sW691#XC7k?QR8(3d2HzD zZpzr^LU3{_U#2$5z_G%-GlWnt?mWR@j|)v3l@uwW0wP0PxT902S;gKpx3FNCani?| ze8vJ&21>j#xIthtg+Vmw{T`mn?qJYu@2o)OS$(hH!kQoZ$fo%d*5$(sjA8a(b?HT? zX^bQ-HWr~3|B7<_P#n)%I{uW_`Eh|2oV)8TUNVKyNY%INnM@z%H*@fe<~D{ztIrtt ztt&8>3cJb2Ijpxa(9CGZ6s*5sDk@YFU4HUr`--(~#h5GHKP;=s%rBrv4kAeW=W z9-7v$yD%&BCH=sX9Jiuxg&+C4>3F|$hZ{$b=b_rj!qai%0$pRSifa-}Y1d|pbppgl zE9-->G6VwM(${JpG@FO|D+b*1xsYf$9eTgzM0WK+4=Wjdza)OOGua?-n}MOCV0_No zZm`QOeLIK_SvJMew0J2O`y^;8kzByrAQB>P!uJMbfLp^bSuXpFd|01Nim{h2i_D5z zVko{JaRD1b(JipLrCo0;N(TtMj0>-C;yhf6S4hqny>Fa>u==DEt|N;ed$@o=v8z+Cw zbt}}tCaDh2&q6#phv&lo=_6vH4EfOWD+bO!n|==a1;mn)OX#z9+e+@HlNpa?Gp*6w{Y*)I4*iAp}Vg|{wgYk32Yqr%z`g|`z;l}8lbu1R5N8@2DKnCmjl#XwW#tWLE6C`Qc49?~u z_wx~)jX!V_SRQeFY(068mGAhCN!>kWMA9;S#naq&AdMsG`OF8-MBr_W@G?|Wzmv6L z#xEnwcONIQKjqT_?wo@jRUV+aAmaApLeQhBE{8NofvKL7kn4_nWISV8Wsmvcai6k_ z8~cZX|Lx8lrJx-ymCg#h^F2HMa|MG1!MA(sZ1o=R1k|u;0viJ~fXIExjj8a6MVoA3 zCXK{Tc_KOd!cTTR^1?5~u{2|4C#E~AfMFKYM$JAPtsOrm4`_mYfMfm4=X9D{fjrDL zt(1f?_ex)zd@&-^r73+#RPJ#3t~K@qxbCj?`GiKk%BC)-p&jmS_(Q-pZGO$A=;Wub zb&J4_+IG2tk79NvRnpuxbXC2}9^c(*dwZCz^a4n@Vtu61a{-D5tUkC~Cx>%eB)szP+w|4?)yZk;^ zIgaRlYmh=6A4v_jJodd!*WHxW_^4R2(=mj%`FH|$2((m{0_B>DJqVY)PvhG6$%sMA zHIok*9Mc?P`3@yZag4grnmK`@Lm*e%Ow}RBRsJQ57Q|b}?4#`bl4>VJ$m?vC1-_Jm zY`ynKDG0BjOBmcJ$=p3zsA6i{b;MEb$2#kJbyJAZ^SX-qO|@9!hD{+X(ZU2W@HwVT z>8!1M%{3)y*0*i+nXWCZcv&N}KAOasBKvRx6h&o$PV>;{WFX$h)*o8>-^s{8J@3Vb z`IuavH-$1AznZ|!Zh085k}aszeOgm@ZEE9c5{4chv%^*oMld5fK>Uh?Pjf213Om}i zw<>$=h6VWpmEo#X9%Ln)AEB82b+tXNH+Ch+bUG~NSje|m1i`twnL353?{p6zeVoX_ zDpSNsg*{xv33OG0kV?P8S=Cv7v#7VT;i4!b(`A88cKu`QaTuAwc_=RH3n8 z)sm%m`N+balh~2=_ts@;6rV8TmZ?HESQN>em8`p;OB^y! zLhMxpO>s_7-g&b}pP=I*#1(U`G$Liw$oAm;h;mWAkNcHMFN>Wx;5)$sQl z7;zHQ*RxaFT&ZNjRDME!Tuup3&Eh|dQ16b&9_(n@M{Cv!95>Wr^Bnnvngh_9evU9u zEQBe!=>y%l*bba-2(JJ8eY^&i4CRbHtzmg3!ARIT2Hq+4CSBAotxJhb4@ahV`0p8mnjEi)VS8P*dqY9>)F{-w?^sIQ& z4Qxp-U`_4}_MIoh7kE?AbTqph2QVz*q?tl(p1bjmK=_A$66uVX{koSZgP5JfpvhHR zS9Z{DMPRl#nJGWxx};)3&)mOPVxgQwbzr+wyokLR_W5XRa%)4`2?AL(WQ@Mhfd#+hV~8{?n*WHWg|d_fVK{w}XXx{f8_B3|x!${6 zVaHnCTn00rzUzy>YIV0}0{#_tz(yuHeThxX-867&b{M-ZD7k^eG!g!aXjys4V_2nI z~}D{8u>0^%)!x+nDqP6VYQfhbjo`4 z%=NVjAO%Po^85|!UR$3Zjuy!yQTXDTo&q+uo>o6L^cO*Uy1gBBCdwXf!kM-=vXqZQ zSSDfNI9yv$Vr$uG`n_{4Y+ROS+c##mOMbO;(L`2d9<*ztlpL}CKg7LdSeDz`H7woT zAl*oJcPZW7-7O8$T?&G9cZVPd(%m5--Q8XCUAUfS?Y-UV`rcoUf9~V(AjUn^vUS&+#6Idg;aRy-HctQnnfWZ79NJzV6;0N!}hRg51<)^wqje(YMzf zXIM5(4$G%#3uMfhiyfSP_HN#fsbIzECRwmeTxf6aqa@JT=r-5|nEQ**Pl7!_Sc>}t6$d6jv z5;I)9;l!;!KTj;w<^jKcR@P`@a{Q*|oGYltw(j^ac&3qrvLT%Pfn#^vw=CN6qoEkV zZ2YGss871q%AeVYk{#0?6Q+9^GaoTsscbk8R^busM}oCbn_^`TO$9B z07ZgR$ZtA_z%22WHxr7i~C>t0nVRWhyO5V_te1z-V`g4>iCqW$^lHR12)q?Q2llyn)RuD{C6jn z^_P>#oIke?|9zV77aQj(vGZwCACNO}0)`;WfSlofQT-0b(}4WHU;xU4UoFQ^bLxOp z;?HH_0&-=608?Ne1Dk{em|A~IR|U+sS$-Sq`jh`T@WsEv@zbC>%RltDnE`_qU|m_* zSm}YL>yyDYFn9hJs^2Zg|F1#yzk)aa)!_c&5&owJH{h7_v;t2C?0}pCFuDeuRsKTt zdmR5^U&H!KnG5GngX&M(k3XGSRzT?UBw%3Tqz7_ypX3yPFa2Mrev1PzO8@u$!S>6# z{3QDU!fXGG<1YoplPx@u>&gn`{XW&@2ddxU_;F?aeOfqvWq;1j`IG7g$P)e+jNdof z+1OcrtmD5o+O>e$(`p~rgvXB0sWhj`@CK&#d;@^d!~>X$RJg<{ zNsn);wzvDBoX@~vxQQxO$wuGCgiMrO^GMCy=ld0?leIaPlb$`bmaVl%#iBq4l4}mx z1gf*?itm?S3~z3yV$>@1((cKE;?oI3OK$emQ2Dpu+$1a*5JgKx82pxaTelWw8n zkI-GumB#PS4=+l-$aS6*uI@4b-`K(N{c%sNCsx&BUu=cq#}F#H@_ybJW)|{SY^on2 ziQiYGQ#siWdsK8P2juQa=}Jov;(m(6nA^!QUm$<>GD^|Dmqz{sp887qE;XXFE}q& zJH_~n$>IakO|i@xJ+GCKJ&N89e+fFhkra!=>ZVtOIvV3oQ}>8-9)rQ&5j7|3S<2?z znav*9!P}9O9VxK$4{H#N(p!~cG?2O{E;*sBw42}nv(qI!wB?;}~kcKXsW zm{G@d*EQ$yt~JZh%MQMF5I^5Jp2PE>OhH)DEwq=5#;DJ&{erkh-_mWe&dc@0C)-^86xKyj0-EEUG~K z!tfIb1DcSCtdFS*ZEPOHbwID_gfa8LkOqzIas!>Cc2q-`kvizr7`QjJLv)7vdQGyw zK^JWf1B%);-8L{t(A9T!Yo_#cv|^_8*adI-AcEd(?KS=r3p4L zBGb<9EP+0JrXUW8Yy)Xddo>fJ`>@0_Mxn4sUza+)p_??CZI^5x+vf<{-P?yS`XKzm zlXUw_!Z5}TY-(pVUzi)>3aU3+2OVs&It=GQF2gLA8wC0Z>mw7J-$8b#)l{Joq$|_5 zrEXgW>t?`kO=eE|2>(h||9d^`#C(vzn<^uVf=K69&#&V`A(2gv*skIPiU+!TM`*Ib zZ>;MAM*WuiY#F>F`?xS!H^|W4#_K#&g_t-;$knR+fDivZU8Oc>mL_4dNtnJ1x>?qO3YunEZn9B!931s8)^mb1@o->4c-;|Bm8#W zo5U!>0vKU&JOZ5|Dp3rmbOxxy_cFdYRr-;zjBLB@Ol|Us^aOA{GdFl3y)!U6C$~;- zXlu2$!QWHir5(7@uY!G^eNeU*^kajCB09&EBjv{JK1gynEzjW{6|ZU~n>1s%b#aYs50sRlBo+a6&UQ0n6w z+74(w-Nxf26`a#pQjMlPdV13CEKphSiK;1`0ZC@)ZUU@`lV;sHy_itKzV*d58`e=B z(o>``&q0_h<{tIC*D3T$m&pWDN_!t}8J498PUc;c)i<)cqGwl&PSQZ|TP#R>z|XcT zl(!OcZp#-=8jZxL+!(9}f;%g&>8`MuSsM1hbxy5r$^0gh9o9%T$ot8;Wf8)J(>PE`&Q0=lIIuhKO&yQ8_mxdg-mgR|7tK({@`q} zi@cmZL>(*Gupcg)MnGKt+>#**$~IC(t*1XG1p8uUWTrle?>Vmedn1!xpd$MF2Z5S{ zy62+aGMb-hpnKQ4^uMnMkFOcWXP~&1zF@%}nKvH6xw~DKQ`!=K-H{c_`(;@Jr-yVp z?lSisUcbHK=No)&Ctoqsa*dj*{)n_rhA;94L*3O&2|74mmC*KEHs}QGK%&xeT(o__ zyWYo-FOk25D==r;St;w$wk7PEVcRC+?_9@EfIDPz7fQ}l8@D?R4y2BLb$OA*3l(sm zyh1dY%qu(#8LKGI)Ra{mR8C=D#*0+=X@HHYC$~%}(PdggB@BMwxEey{CK7=bT6*dF z?F4g|=adeg&(E>J-_Q1-un};3@?X5Oy9fje?4mK5C&HrykOY z@0A*|4y?hkkG2$~`FrOV`g+HNO?^B*l=H9A;ox%8F02E8xgAslq0jMsT_o{p2s0Z@ zAj!KIp|mi9?Rj?RWeZ5_Rn9?FGs;Hi?8liEtj-~xO ztdSOvs{1ybH_-%?HtSbEy^-m0Bl8SO3utm7W+K1zJI|mXNUJk}@np|fTnNQ6cKxL8 ztO9@2o&&*BPnX{ZXKjrAEC?%ef`I)Q3G+OIhS-uJvGg^^Uh%6U$i#C}wEO^wXsvfI zJ9vfFOpe_f>-lUj4!v>%-WzhgG2$wXj_Pb^3>dB3u52nQ_u59UvtG5S0-2%ulp=dF z_7*j;&n~4g^%DKHAB(sF1o3)A+qb2!i2wt@Rtp~^QgXuc4q74NQ9GCcv|*w>46XjiPlde#sT81im ztNVcLhi7+O_<>YP^IR=>O>PkjEPgVcQWGc>o8jw_m!8?D8=AFc>ZF0*pw=IjLRhTG zmTuAGF$^Q`uALueifSN}%nO48M!PY9!MOc_~u$mz-J`b=CMp|~(H)ehUQHXd#~ zukh**)vKnCL=IV;#kTlb3AMDd*y543HrgWW)x-^FUU zj2*Gbi)|q{>EL8ZhSJ^l2|m>5UP!1=U*1<2++TeT zo&PIE9Rk#W%}Z}0n*`F`Uh;O-dvc0B>GC%Wc$6Zr$nbANWW>-tA@EvmJF=Uw$Y`GrlPJmE-wuaEA+CYqU#!N~1mJiiRuMav-ohQpZj)4kx zuCWI~#VX0xu2$x1BI+9)Xj2TUup#8?heT(scciic*LxJr!v)<|O~nJ0G*c>gF3$(m zxC$ZOb7*7-L9yG+!sKz549bQ?zMj~P%aV_v91MbW#Frj}+tbHI*zE6uvr-{O$ag^A zW#?hxu5nqltW?>9*2MY%nailf`Ux%4!*udOgyUG1={4_%1hJ@BYM3~SgI$iHQ(VQg zUrnK1gr_XEP_fl7kvXxnRSadooh<#vU|f%P}eDpWH+7mG+*vA4mKm%S||m>#)--~_6x6^twG z`O47fcco?c9+|MsVp=q{H!t}aQ6bVJp=^^?Vq%Iv?}VjU*av#U>Dm~YodAAp66B|z zhGvM6H#!zjSrqz9qUqC9sT=ep%b#n!aD%zN_oryh$U={_dQqynnH+<((JB#5&3*5{ z4p*G{u(5p3<9IZ3SW|5gvYuL+n{Zj{_m$}AleT8O(n9&l!cOXFkM z?l$2c01sZCZ!l?#inUNZM5RW)v%kpn5^nOWI~9MpH=c z50LmmeQ#_{zYUo_xJ9KcT~iOgkR{ipJxEpP)}wxj;~R7Fc3L;NvGar}14z9tpG&xV zre7qq&B`a~fS=A);Nkj}*UIYV*<;bea>tUR(gTt{Rt|3_*crw!Ei;1qSpn*@hTyot z^CW}xRs*w8XS=o9BzV=@gfe64wn9k*lBu@ASc6z2mqIH-``V^+9s*6o?4DhDS75e# z7kKZW$i9P&`0sFrHf*2;SuH8=_eLbk@*UjFX@=)0pRI4;%hudX$Gd8RB{2wigE(-! zQ_&6&aRmv2HitcI47_|>|7v7NNN14Wz;3*psoIjyvxAHxV$^SO-KHUATvVQ%?;*!Y zt)&J2QkNS)ne%r0Tds&n`j8R1F$lhjSWQ8FKW_2eA%z=7p|hRo`@>wS%e{k}ve;J^ z=;PB^jwUoPue(K%pqm-0ZnhSyit2#V3@ej{?Ncz=Y5F z_j|f5~!f*i{i0ZOG9R^H7w1S%D~Gn4OQw1U8BQbwmgjp$>#AQ8e?xmH;8$+yizA%2~|MB88;=gaUj9iRQqx7 zEXJBF09$GhpKQcOEP>|^N9<+}VsSeEEwT@_qr_YKSaW9zdK0)|&or9Rjiy{{%x z7Yvk38wbCa*5tEdI@$T9*1arv%{s-8*myt1UkQ5e4YJ;J$A~LVPsk4 z7qf42eao{j3$;_`pT%^uoJc6T&FM;rK17s*0JbW)^W6tNh4m(l!PFQ3(`y=`3gUVr4S*0C=gM-gO-2%nhq zQqbq_`l9o@eM%X9kbRob+M%NT=+=>U@bzcXSNG zoMq}R5pqKn)XT`1Mw^Ugb~x%D>A)Z6bZj<0-B7ym`4Bz@MDx6oAF0{1in>=ZtzrgN zoyPc5H{BG8<<^ zzakamyF<^#4qY~l(A_bNQL==3%@?@ngc?335z`yUq9QZeP`F@ZRR^SYsZ zn`T_2j^BK2iuE>(d(YZwYg{GKL%~T`rP&|M6v{`?%I_&F1qFf#a&3C4(b0zT8kf+v zJ-aHs_?;z#|06uSIzDG?KBfLf<_KY>BQp0FmKF5yS9M4N72n?6tKfAqkCbz*8rC=l zLr{+iqNvvymTpaV#uZp=3gM!7SZ>FLn*;yBiM=lOk`wx%XO~mUL(%JNV!)~R4y74| zu=|P>G+SP<8dMhjP|^ZzBfrSR7B;)w{R3Jo~_Vt8p3WYRG)l9JhQifQkd8bz~x_BSqoWFgCbBEo}{0(o% z`VXww|2=O9*aH2l<^2nSh#BBO06QCYAnFqERRY|Ro}6>onSmL1mfv;WnE)o~-xvTU zz<~c3gxOET-4D0vi}dL-z^8z4^OkdtHJ`T z-+!GJcCMfJLm=AXA8-KD7~nTE0)#FA1K{2P_pKkGehcG=)7;-Me$Cr){X`!Eo?d^3 z0r&)R{4b0r+7RF<|DRwm|1!n-uMmrWvARze-Jhz$!UUvz12$|wR)giqi|ij^{P4T` zdo|df)*D#4|G2`~xqk8t1dhSKVEmrNWaVP~v8(>YVovD*?qibGK1i{Ttr8YY`Li7C zT!37NYPj?&l7-8Nc*~#$DN}&|oIDra`$K*5l#LGpuj~c;3EOUh?t0+stUre5}yFj;Xh!U%`63 zI!Iy9HL>iNv3^StegNGk_>D2D9vTNb=e>2{a@O*x2Xd+>#o>aH0x$pd)?vq*Q5&i3|Zg^Y5tU3hh?F2whTw*-sQWA_Gy;XkI(yH$})AsarH)$;rXl=`<&5${+YX+{iLgT;`FOkuYJKAceNu81bY! zy)ChP;&9JL?8(m%TO4QB!I3&h<%>{bH%GJk{M#EfHA{;ZH>YxVLb;enVduM~=C90! z$CK?POtkOA*zYw8iXfV{He#G+GgZm?g*zOEQ`2x6$_DNr#ABr@>jw0psV!S*<-e!G zlfh6F5| zz!mU>qN2PL=xtA&RoaJ>!HrZ-+h=O(+I~i?X^vc#WlKk~WPq?9k(qH$ARi-t^&TRd zeI&1#4jM6MiYeGL)k-;;Gcqt{$V4x6@%hVW3fFh{@6i<43=DM*2#k{h$ECLU`tc}; zpx`Q@v8%)(e3(A+SNp19nleL`0H5IPR2j!VVjB1#nv@_vv*r#f-zb}-wcA;x0#SX< z>0gL|P6V3}70~r?m>@9l9CrWIB(z)8fa;Cr7!f?{X-HefXez_s3^aa>2W-dTtD5t}d(PxR|NbVlB{wkQ z3B*9G2>F9PTUn-ph=XVRv#>8{HW)!u>Kpk;U6D@bkwLq+H>SNnP$#D(#~05yM-)mY zVqMK&wIwNzjN+E6wxtVw9Z(Tz*?VIT4zAFkDS@C`vMfiKhlsXgT>frjH@Bur6Q>?q z%$)ZeHZnOe(g7_$!r>lPQ5wP)scDC|G;$Pa(^?%Cr@JVGHd#7b6IV*S_*F>zYX;>a zbBU=O8vS+KF<7NSBtsp0#o#2ClfF74BPsLtq%mIcFkc$3Ax7O(#3&3}MbzM2-rSb+ za>&9|y<6}yc>22VJgET?31MCV&H1T>^Vailw%Auh4mWq^!u#L^ z8A@Vx)mg|x%9A@}TEt4j;Np2rpyqGCXt(jg?@p4J32Z}>nnUPvnc(8lUhR0z?#%=j z@qAs$Ga}WK4zl`w>QuLA*X^x!oWMi4Q;6$*uG%0wtxoC29bxc2i@4VUL%6n zKF&XfnIdz3b?RhJyhSVxW<`~ayKJ7_UWSY~O_dueViiLOVf8#-QFJx^h{9tzS_u&j81$qu8CWPR zw1#8+s%cc5Oz0#QR|P8eiurJ}SB*D?ekdvxOj58VWI-{bI?yeUON(hWme>)t~dFBwPGx8G^MulVNAUgRJ7+71er?cB)bgUrK9Co0_zI-Gb9UG{Vg3@9;QYdGXe4L}^@GQK~GA2lY zly<{a{AhwNbbTUnFa3!JV<+9*F0K~?GTHO^==pPk&56|Z+n3%Z-IU;2wsq-ZIV7hbW?^w17GULyWg6#F9u@hRihxO7 z;7FfY$0a}#fI$s&3Pe|`wGM5PJnq5xNB5Cb7{-vBEmJb~I26NtOB(Ooe-Fatl8X_z zd?_948%DR7>`z2!wcjyGnCu4ooz6!DBcvz#4GSoHE!v`a8kb4CE{8lGMe`S(*ZZo~ z)(P{s6B1ZgX`O?{$?sSO_L>q3=4FLK z=I`V}ccoU+yGRejU%ZG!tlBNFGU)`9ONmL0+}HP(8-OC=b2c&uIwUK2d(%kaLQ> zfgfKfj1*r-GH=x-F5 zdyBm%m)zH8L9e-CsehO^khH@pR>alHK6{6qt=UNlW<3Y41XC4~xV&?mJkR6@6FDHU z@sPnd#QJe0(brJ{T!6e8eYQK#;>(zbNhsXy=`EW1`4M9~Tx$I(E}A=zLiWrFkx6c) z;6|qG;xZ8f)b$5(NwvpT?A=b`H{SHCtkR+#RorTpYWSqM5q(#F>5WQ;OL@m0+R${o z&nrE&xhpz2ltpE}F0zrjCD)+C4N3rynIu$t>OE5DAo7OgXz_R>nXf#ec%E*P$ES6v zH#EnE>EEn|v+?~*>WaYis>Kvk8x+C5s!m6ijZ(vdsZKQ#Flf{TFtKm!fhjE+uT&Wc z)g?ye$RC2?%xNh)0EZBB158Vi;P&2Akw7@$0x~w=Ca=Jwsc3nw2tb{A14Xd>&r^H!5dRTe3q z_X~nsiR@eG6$d1_nR=!hMA-LEroPMHP%mIlzs89zFNhRc9=L0)%(N-cq0*A@8+5%f zEq$%DT36xi4!?g~_!VaJP$I_fX0k|!iC~LFD=Rxhn2dMHoUrgBP?9p8%aKadapH(b z)Dewaxt^u8f_Jb0TS-Jay6x_bEWdi%c|!&TkyZ#2G|>SIk(AKxMes>E$I7FSwp@|K{AeU=adcd+Zkt$B}@ ztB8~AT?)Rz^QprT+kRydeO5H$+iGfb^)d87dwr7ix~IJ3+*I%hO2SGqKIGdt=o8+o zHOTQP$TZPrS#PH$_nNZTEk=4y+FXR+ zX}CmG_w842ZPdZUzD#NXpPoHj=0@`Vu0AQUt+LW+3T!U{o>GMof%!0eJW19oqK167 z`Q$Hhg{7m%jJ`Q9<9aHlmKU4} zBFe;cYhMKjinj5r-IaY*irx>|qJVy2Q0;b)Us^p?k7sL0U1)~+%HWppMwWiD@B0f z0(L+NiL|-vbL#?X5$|d(V^h8&zzUkZXdY5AVQu?vW5CBSFwV_Kv1Z4~v2(FSL5r97 z~mc zQ820_jf~m@9qL==3q805&xWPI{;>&OCj!`K293vxrUz!B$JY2rS#6}kXHDd@BEvFv zDBmU}7Q?LQ)U@F6*bZGcG@|pY^xlW?=dCZDZGJ1-kZ>ZB_h%ZA zkXly|*M7?3`1-M)a4yn)sJDuL9Q+*M-~RrGv>DB~67nDSwMOgHFzeyJl&t(oUr zFd50Z4C^FKvy?ohr3~nh+Lf+_QePh|rSK~W6iwdAznd{HAo6IEO{tPvBnjMJd4KjC z24f{_mq1wN{0jy;CgG^B6@HKIBdQqt&4pOG;dewS>X*Q9vCC-j0r5E(p_0aT)+K(y z-G^NS+I`A3aZDuZ<71XoTF35mA!?;kutVK`#W1iO%Trj8OG6A^c=h}_S~l+xL6r}N zC2G*D0{$eM3@TwprFS;Ov#Nq4#1V$$n3#DOGfutPoS$~vvm0R8u58t#ul;E1`bK#f z%f;vA*%8E6Qqxom`-#)WvV(@5?X@L~SY*o^M{zi^(Equ)gKO1pjaq{j0I z@5cg79R39s;7^3sZL?*XKCy(PzcpGU{dOw_4E-qapDWW1xEg&K2fadW#EweeRnp7&nnyf!i*H>=kAYL?rrKOG zU|o_+R&W)w3KwzwSn}n=_cwJZ&z)D1`J~;|+}ecIi z)ZnHU1gz?7LETlkgf0vw^_BN!yst^vb}-K6lzk`PFkIS8Tge>xacO=_vWt_;8Y*yvBqzyEux2M}`n5h2TytJB{ZFRV;}trOEf zWxV{SHj3pb|M%zqB*$MN2mjV4{Ra`w({Bb;S^twY!wN7hK(50-WX=5O%m3Xc{bkpf zgYhS7<4I8Vr;4!x8ZE#to&8CB0&og|=mh99vjYSJ^KYphCXWB0oLGKEIRWqF$))LE z>%smHoB|V|4g)wNc4iiUbOYj{0m=!;c=>_qw_S8VWA|^=7u!<+(SO(FCvJoNA4r9# z+zvpE#0F@^fVas4a2rp_Gk}7P>Gu@ekL07j>%s(NVE+QgPvizb^Zl_dEKEQ_0M#DL zQzZZ<4$!Qz{ST_&t;bK9+CT^XS2%tmHvppZk2sz(fB+(a70A>EXbomSNe56ltZaY_ z82j&V{3qAL{KR$qTox{-pUd(OtOB6)`VqbJ7YtTF;K=bL==&p#rxpIYD!)7}TueV# z<=*&-zJRz=W6_t`Ql>wxhVf|&9ZX*rP*U- zecGgK0M*C>h#G&tL;p&W|9dUipAPWPCE;NFiEnz6fd29308*I%E)tM)0vnVKIJdyV zf#nCH-)#)Q^X?x@!om2HTn!MA{t*T=Qtga{ZRO|4(rz z`>(R+IT(N9n>haA9t9$Wo^}Qka9#n^J|KVVX@r0YV63@*OI0)dr`8n^=>DoIKaCIo z&#pf%2P;qkK#0l&kmLYm4$$B9T)=YtK=r$_{P>Z7Zw|I!X&E_wb`AXT2>1hI&cXp) zoJ>SdDNMjVVg(3%;KBSCsNcePI(z?u@x-71*B<@ZH1LNE^N%n9=`k}ACvcYnk2Th( zaf1H^^*b0$0PKIm0pwZz3dc`RH;#X}MOgrD7WkY2B!+PUYE)Jht|#T~U#NbM<3A1y zu%N%f@zXU5T#A3*9Z%1Zr_q+bZ~$C2fc*ar$1k5MKi{KIVE?{5e$URb0W%aon>hmP z>z`atwO+?0}hL z_}-TmuM@V=d-3rsx*-y)LFO;ZCq5Y0+-mbMgCrj$qCc*bAmFlAc5;jbiU(QU| zhv#@1TTrrwd1r(xpS*J0M`1|tiryWKDRIX+3tQx@v5dov2}S!xWH)SKdVkQBbalM2 z^;nVXgqpl2Zvn^p*hx5!>kInG-V9A?(bpY+ibh!p`(bR}n`r$6&)-j;D6Q9n$5)6c zzh24rtsI(aH41iSR5AD#`3ZY)Bskhgl_v345V@a`3No}$oAIzDoxO;3e5oTi&g~OF zt55)>oG>5jG!bd+xXJdq3Yj@h7|Ss`#^1%KeA$}H&xE&xxj{91z0xhKpASe(y%|ua z0f}jcq+;+g2rZU}<275Je>$2vIn8L91MIj|D(C%2vIOJY9Vv-RZDLa5jlho)O>Zhx z(k0Yf>zX&n@Mt77D(vE&IbM4L3@yEhtg8(weirm|-DcMdcI2qaSAfA6a?%So7!Y(LPg5pOE5ERo&&m4_w8#r@ew9@0?4xcBx3EeBHH?=+Y>vE6{RttlE$$ zP%xmy)R%}Q(46jL_7WFY2cee(6NQs&a7&Y#&;`ZEeu3)yiQp>5;X2p67$#Iu)Em;n zZbrTOkkKaQ5zE>5(d5k>JlFKw`Kl;id~RUrvs(dC+v zFG#Q!=mu(1XS#y>`C35VPi#O|Y!FXptPVIDZFFL)v@>o&phHEImh`26cG~Y_ImI-B z=3hpb=c-)irhyf6@w^{4d%G)#EW+QB_FDe+SUrx~7NhN;XkG+exAW$;R?Aip0jXKkFoCk(4-q;c^r8bGh0D-+NMKlrF{g_}te z%y9^NO)3IKw79tqe^>`0emnHMxt%pVlwrGf*Ew8Q4DuM{IvVw{HRfx~vRtd;3OTAd zzjhpiTpZ?oH=R#|?y*j_|2~gmhp3fe-5aeNEtP;T8%ipqY!UeV7te2OE`=|N5Q1JC z8pW`P?jq^G zT`qkfk%L$+rqf0x+#%Kch5#vQ_m(d9fcFj-G=S0VOws_=3GO+!HKuvJRAl7Lw{dq! zmC5*LbjuiZO{O<|x}0K@@L#aYtzo`|VWrY*nGu~3YhjJ=;c-5~ zv(qfStS70RG!rSC!d9p1Zh0EbdCp);kf{l#FW|w>RPq*dDdGHJdPNl8uR<=w&6JPT z$4O|7G5Ft1bGeCsq29-R`951Pq)KB8=U%0P>Wt_r?d!U9R(~cg{NlI3zzgwd>VQs6?_Sz~KA#OK8~auIE*PM^W`sr0@ob7CszOubN8xu?vqSt$?~ zRA)};QZxKaoBwUD;<{YWfRw9Br!Bm_%`&>$i|T!S>vZrcEadcO*%L$}k@YIOn}*Xi zsjmL+sb_llF$qUPx_RlZTM*IskLK>ljmW)Bzb6@es)aM8zhsH>(%mdv(U75gqm%82 ziF@*I}|ZhTa2!8nQ9Lrt2hElhI1&YoS( z>lO8&7gMzUy}Frw0GZ8xQ2JEyL7#O1r}!RAu97XSNPmH%*)v~KRx7a29OB=*&A)0w zKa}QhtDA-MfsOLRjz+p=w1!!CQmgur_7hzmV)5wHrgT|q4OeDV?cawC8{2-%-nIQ^ zU!L+lO6}ELV>mA?X{Mx*CQhGOg8_{_N|nL%y!_k6#RaDEKvY^-NZr&i!QtJOOB{PL zhh58L6w9+_9K#l~I(3`Pl%x-MT^>V$<(x1<>X{nQbaU^c)Qw0BqE?gS1&e7-(Qmg7 zmJ7Bu`HY9jyKbX~<*sPsCpZ_Nn_}0NkjQl;G@+wRQ)8_qMzXBc9ec9^BVPj%?wOQL zNT7sHbKm!M5%iBsUpvWp*crqMG}pgeC2Ia6(WI@fki5g{Tfq|6<(XirSJfBR=Tl0D z(XmTWaftH36JYqoU5j?y)2%GW>Vu(gHN;6Xs#Y#^UF{**B*ufdhT)rZ7&1>NkkrM` zJ(oLamzX@ssn6I2a_K|Gc-7)H)pUv`Cj3pm7%aEtP{QMUoA(L?3qzn{Sy9_AzWO#H zH3nnCPZ>o${qvGksCec|z*7XR01ra?Jw;Izs`aW7{Fx0C_C4%eSHJ zhj=t_%;ZvCcEQPr55uXq`;lO;!Eu``XH;&SG6NLa@eT z=kY!XSh4D_6Tl^}H+>=`*{RVqGSxK--&*S1+xk4(E5EK=tRcW6rHVt999o{Ii z)RJHG%|cwDB9pdKBc>y)_54AEcTyP10jBK$5wFODWvpxr~c> zd+&w-mlZRiI&!g;`~7+q$<2sost}f!1(jef+{2RQ`pDYLQ+KrRWJLH zCKYK0)rAe+btP>|Zd+<{2tGRY>I00zs@l9C=jleiI-N^;9hCfhp6Sf1$C-~4i8l2w zCT?&ovj~oN=DqB6LkhDJzP@7nfQ8X`*aX?bA$V$b@hZ{)TKn~Ld{|@2=N>UOfsmqD zYzAK(*uTHo(}$`mV$2^sYo2a{--`72du1KpukQ9j01@8=O1miQjKhw$Ga*RGr=uSE zwugj+D8LPgV}{|3k1`9}018uh27J`SWys4rY!6(u+INKveZ>L{j`;jDe#_^y_mFM z-ciO}NsZ-N`lsf&FH97^n8J2kFk&-Y^~mG4?h)U`r;%A>DjXR6U3s_n6!8#_P*Nbi zt%9X#Ct?ojPbq1M^(q?L2&VA_yi>-Dz4;|o-yFi$a%o#1fq6%?t< zh&>QEE6QEnGzUo})Qo{g3}Mc}hZaHp}>$lS!n^Pocq$I zOi$UpKuIRONXRH&X>rZQ?<<@mM(#B^wmoopa)JfgvneDP;~c;@K8X0EKrDj! z+mf-yGT`mY%dlj<@RRMIb5(R2MN%BFLHqc+2$%grlh@DxX8El9l`+`7Avlpe)r8X;u_XoR;8FL-*BtAWj*as?7GFZ1U>j zU-}kdZ0i@q%g3rxn6N16V|UxM)wj=#=xGBNE$k$SPE7^G7c*4_wlCvQ%>6XgYSU9K z=a(pt!+kaoroer3F0g7}tf6#X-NmCsWua0^Lxv9*%IrT}=fBGZ9eJ5v?c6+?g&3r= z!X*&S+x3M>TP2(Bp7jt-hDDBJ&T^W5CWR)>W{Vmh2AO5|l1^;#5JS|HvSTF0sMd|L z=D~C+m7RbH!R^tof|B!yJ5U9yEo=ZDPD!D@GBn3lddgbWQ9Z{<7;%JlfVlpul)^ou zM!x?9;Q+p-hV!IBETe{Tg0M{^3C4T=3M9fb0kMdg2BJCQDE@$0DFup4+%k*EXNa+2hvJHp~_uN`E{X|(pgT={h)aW{?Z+V0F2bKSy|w`t!Id54l< z*jW0yHDrtR)w?^EEf{)kx;D?X3krpLpU66mXd`uuqKR^mV7#FEShC;|ycXmXDdES* zVXtjrWEv`)!KMnrawc7ln)t?3Tx~~&pUX|;?Yo6FVxfJU8JP4#zRx+#Jl&bbS&mVb z64RF~^NUssIdB&du6pI4+@QU95Bc_AMb#&Jo9KDg2VkGweQ!;wWssfEoI}H=JHG+T z2^w{2;)@p6lWCIq#%7OxXDO@dAFDhz*uQljV5xTa3$r?qAGcT zWPRwg!b3a#q6x!3?C2~@hX6C=MyNKTQ0qW@&W7#E-KOZ(FX7@ubfP-B@oYgMY2Q5T zN(MjAkMBxZm)nXexPB-oSF5Ql#=eVpgFtbQNX4|XIsH?OrwQe~cl3U#NxiI79A8EI~{hA}1`kENwsQ1$TXLr%A&>O}oW zyo231no_V`Lir*^90JouO>(HI(xpRRN?enI^{n)EBbAjx{niG@MftRSt@MjUo=a9M zaj3wDZF`Nbw-f!@$Sc&CkdSV6N-dACv&_3A!BM=(+Dv*Aj74|8 zilb_ba1es`NRvQFQkW;F#Ay`QF4kBqQ8-!Kj(OV=c1JU$4-?drlp&N1b0AlVoQx8^ zZXr?8fje#ENd0v()mX=MQ{o)E%s`mYUB+A*%>N;RP^cVPj)Q*Ep3Q$9pocf^PKL8xlyC3yBnX; z_YNkPWXRYTGOu15DB9r7j4h_R=*km|F$#2f+g8>MQ!ySOO}Ui}iFcf&@Wt@3(j+Lv zL)h+q?otfXP%GixX1R1pC^!%mua&R7G4FA}h-Yi5)j?fzP}%5$=BY%^W@~}lR7&Sh zORbVO=FRkLiWq$}7>El^P%Kt+k?BnUoewFPBXbf!OtQfN6DjdqBJ|xr-1%ct+(o4ZFdEqi6qa+KG z!2&Z>oFyNo0`A$*dXTEwCT=Fn&Hg{)&N;Z!b=~$s$F^QEKvHICxW;x~Z$!?|DhJ z4`brE@E-o?p|0RQ;zbLg{amY(7UK$4r!SMbg|isz9iEDpGGFs(YZTV2MM=wej>mFQ z*uaV0r$q-i>cjtq6Ka8mj4cp8U4qul_H<{{g=2Mlc_iL~qd%fVVkWF5pgzx)h^VV?O>`c16kL8aR;eJ5^t1-R6D*a<&@TVxtd`Obu{r-L6)viXhgyi^*NXZ^f#bZ091M_OOSS=rtDR22k zR^;9YL)xfRdX`>J*<|MXpHVFf1%zj<$nWs9s{O81GgbU;S#_D((MAJ}n5;%MtLcpL z?J^wu-D3lA`N}Vk<<0}6Rz)^FZ-I*Z66_v7giz0ps8SF zWoqog@E_xf+dJ7Z2n*YL=m6deBOwb3Qc=9nLht|e|?_OK5FbzhN*m9ygVElFPv--$cITlx61ycYXZ8tL`o#% zms<48uT~D;rczfJWzL!y=c&`?8>&-gI5x!htSn&~ruaPMz~AEQ4-=fNgD1L_1$Km-vWiBK5T0)rD$3^CzJ3#l4<&@fAy zLWU=R6cH$+m0f=}pi7l(SJ2F=2&Jq{>IsA>uG^08fZ%D>`U9I z^(b2!KJ1HEX9|K(zLc7oKoRa#USa*@q?3_kqf5gjk3#q{t`&JXe*49%f~(TEBBgRb zuFL6j0IH5_KeHBMu_fJ%mUQ@%CK33X4Ph8+=7D6hp-6WJP{?CNy_&q(E|8Los%FKg zBVJl0v9+nE?hO1jue`IZ>^ny+Hq$W)wdAkcXQUa-2GqANBCCBlF7X3tMfj2s(h&eT z3ZmU?JBsiQYA34(jdc?G_W4B@i&HEfjdiG=9Yt`%XnqRCG(=a1dBR{wV-2RbE zjROo4{og;@5Ocxr>?~1BcwHQe7Ltd)6t{x?BUsE21QsmZPxCfJKyL#i9g>sw9%{>; zT88R$ADq=x6xb`YO87yWSDh`E#sn-x52#3lFK<0VfcP#UT3VtFj=q2*c~bi0Y6s;@ zIg!Q&W;Un*1fgthIP)Gn>OH-s9<4Q3E{!Yr%M5`>MZX=gN4Qz<E9MMI zSAb3Fs9Tc!))H{zHC)}7ExSzj#skb32ijA=K~r{;Im`~P>6^POVRH_*y5KWhpo=w0 zVQMlGVc5pw;EH`qW8)BR`ehh~P<0_wI!a=})l`{cVOpbDI)|G>! zkIXm#@uM&JEY~N7-yOF=Q2|kBosvE^u3)gpCH8^?#5QAR#&Pv!Zn3E*Dm2(<00*j| z>42mA01k}o5-3NR!Ka6d-aL1A_EE(P;yarA*&v@;A#0OOdzax?Np*HVCp^wOBOuIs zD4Rr7NA4FCPFE0XHbUm)@27?uVBjpd#2nKu2E3wG^3xF0 zTu20_b$UI%%rU7(yRhbu^(9`3-}*|p!Al&;JBzvPLLN;nGrGDDkcpKyfq1SvPL~|d z0_;oq1N)-5+>E`&aX-B3_`=}JvLPVYRX)Z&fhs;O)U2cd??&sa6dz6f`MCxjBJQhU z@GU5(XqY?@fIPOw1Lc2FOoz8krEQ`5oLO9Cvub{eT+3KGr%pJ%EDlf|fSuEODqhsrO&K$g;RpMM zni5^Ecz|Sio8$PdVp`=m5HsItXMiE*^2sH~&GasLNvu!Ta?O_*J~dA||BBqvz|ov~ zewx_%D0uU{b^b(P=aYFJp3T?rZYhB$X1oCe2!`u%ztB8PxeSD;6N@9T8+@tk=XkDV z>{=;)UfL8GdxHPyo~@GEu6z>sX>UjTS2x&yLI$t`U=_eB9DqdqZmwfvVg}#}fcw;6 zEnNSFEL{$!KQR)V|AY!)0X*meC?z&Pz5rm$&H}La1NN=I*&?RDbV~m#<#`-Te}W_c zH|4*5*7#i?2-ubX`y7Alp8;R}f0*M>l*Avf%irze0sIaCw_pXJBLF8l3xL@Gz+M1w z3lMnxSC{2?szn#W!s0e`evHpIn0{G|w)BH8M!UQn9 z|F=2*A=Sje{3izRkEn|OxGI1BNXE*=`KN9CfZk{O-C;QY&jww6yek7@GvgL_<&Yqx z%V)09s~z8=yeM0J6>YebwwL&|mOIWlPGn}{HIqo5Kbzrxkt>B*%Ox2j4i|A6Cg3Wb zi>{)lc&ipg@NBKVo+XI#(N#S> z+__m#eY!u-W`w-Xm!(FE!u-fKkyag8<>-2o2RNmFwEMmu+;yNTgBz0CQP^)vwlJVN zh#eC~iWbQw^m4>IY{qj$wtVho8Q^v}G|GFLN@ArCuIZG`Q z^oLV=2uWF(ObFc`iJ5UwvK}cYyZ?TO#_=SxWz17=is0S((T~4Y>wsQKsDijqB%|kW z*GqsPuR`dalXoV#ybxdZws0QQ(HS_u_SsCS3N`f9a7Q2}#052^J|3}HUm6c0F@5@T zUYQ6BWttHt0_rF`F8NhpyjK#K)Jd@&CR8c;^x4k1TdaZ@`Ea|-2c7D$1a%x}@{=SU zuf)_bDRV?=ynMeTg*e3WFI2MQJgQc#ykQ3iM?T(2@EuUAH&}rnnCxu=&shIJf1JGj zV4u;!l(>d&fK}S!0tt}z9JWPhVv^udeycz^_~wTR7iBmo%?=EDrhHw-QLk79f{$G(x)vu`2qK=u434mcb<{IfOM|K!crC43ptFlw zG8)9{r#H!3-n{3i_!Hk-1y|j;~Udki4bXODJ73WAt8(WOhyv&ArIj?e08t zLoRQR{tS!t>T$oF3#s5gYW`@XI4FJ8SrE+B z_KD>xJ28H%$D#)w>29*n30Wwg_{)s%OJ;OVl)?TwNnf@#@Pk`m(A%B7L4?Qc7{oBI z{q^oo0@2s&7c5maWw;=$H3`?_S>w=F3r3VIo?;)aaC zKhOL4(By&{F39oI=PC^yjpuQ)%ait}PPv5Lf%!0+hyeG~Gu)QPZ!4HCBxm2t*C?bKuZIaDy6bGkVOba6!GWb|JRNeJhBpf7E$R4o zUu{Iy`eCwf7S7KN>Jmt|aD&tb!OiVLoeo#G6~>&+`4^9oVb^5L_$s)jDtJ#LB@?H# z(`2`k;|YBos-PGs5#0nO-hmZC`=P-B(M;H6q?K%Ak4~8p)X!r!4-aQm=nL!OV4(CF zo)(%((7z|RG98Q6*OQSWn6IKdds;$!uG@}AIYvTtLaRd*=2ct1d6c9(^4dVa|T&Oo>pq!>}1}n934Rj%W;@}#b7#;9&UK?EzLhb_mHeuMauy_K+oH%UqR4!twf^42OmDgi5e9E>stPc$Emrb) z^H9eH*?|m#-z!d>LK3f1cKll$9PVfLw~Gb6hDnl2V2PyK0$NZ^Ini638O<>kRYB0>{IKoT;M!*-F+qR1q%fF_+v_1X>)PLc$jlae7Usu zXck$Ve7$k6QLO8__l84u!g5OqQ;>{V>%p<|P#2au3=Kjd(56=cztCDbjqzIpVJ1AC zXH{P`#av*7W3YAOD9u5JNjP>4}d!Px@=V_|G-C!Zp%?8Ehb#eto|xLruU(!Lx9-C_MMfHVASL4TOVP3 z)OoHJOG`cN&8YwIGB{Y#4OgW+8q~v6gV3F93fPVJs3yb%+8LGc53MZ*;~&S0Sk_EU z->Q(jGLp2(m1t~_PoNo$j)L`Fl!H{-o8MOw=?wQ(+k>tunoex&OSmz13G0jsOgId= z*dq8U?Aav82<0D)d#hyBWbn{-FM&h(aBqTp@rAp1QPHe7>=?Q3mHI+ou}u_u>MVl| zX&?7gwT!N2%&|y(lAl zLGCgpHTXca5IT!drS zp+9l-NLotR(*dPJ{#JH~RNPlz_p|yS{k{Pg1Ls@S!85`sqdAJ*LIgVt#pD;GesHA) zz2jweBAYu}kcD+krLc1${3^X1FrH7V+|iT+vHc93Fz?LaFO)eh`Hc?FOTqFUqD(zW zkRhA(C`&?kWz_L(fl}3LXjxz&Oh$3)%t&0?y%qFbu&aZ8FHnY9Cr727J3ke`27W!g zS^W%EP3BUNY0_nddl_hX5{}%g=nmJBzC)>h3;T?Crix+9^bE1^zCyG^fM5896x^7Y ztG-PKWj2lt!55p}D~HVeP_~*D8-x<$W`Q+-6n0m*QeZi#~`Q%MHx=s>uS2zP-&26R^Va%!7l74HRBgg)7 ziMvH{9RrpiP`n+sPXdqg3?}T+VJTRx1?v4qahm`7+m4|OWGEC(dXxr!ckaRW+VuK4 zxLJYS-56eu7bw-Eh48~&f9<@Rw#siwdzrQRp8Cvo;_V>4t(vb(@4N;jDOH4HJ}H>a za=GMzX?DV&jzYh$Ufw34lulJ#e#t)IiLGZy;fEH1Ptku2o#lBx1$%KsvEnGUt)a0n zcKxBPkw<~J8+%{f)14fP**$3Oep<%mO+(H$b~E|?U|yA_uf)7M@T-(KIm$}DSkB&D zX~xn4=BQml;4*bERk|B+X*sHlNy2SY79tGrdf9L#n{Q#}kzAZOi>rb~S@I8l)fJHn zHB0jnF{wMV3TQ9qMS32$##ygK;nZ9|l<(_-4{Zfm>RcZ{DNlB}(e}09*da0%9~h}` zkL!fMaocd*i~3?uX3LEFMAB=bJ(M)CF69(H9y0fHf=ZgBOa`W;gT1zj5 zk|*)h?Wf??zx7 zIit`R9R~LbS`yJUMNiuk7KwVvcu4V-qd4PywOdNGp=MP}?EAJ|D%5+(+)zwN&g>EM zqlrY>{H|HH@gWcGb(oZYvb~sMm(0g$A*KUQourADH~pq26=Y$TgWz5HPLqixq+0ig<9giRr)5lK-Ppx zd>%DOuIU+1&Avj{sF)Ar68$G`jv>xL?9nhd^eyZ@H^P%jeYYt^;}C1u9*@>5gX{qg zo^`PVy5uo=6IyL7rsWCh;*bU=uBag*rZ?o5Q#d2(#O@@Njz|_8cb74=Tb|My1FjzZ z+-~91%yGMDXr86j3`=L)*IRuzet!cFMo-8>G~)_O1^$ZcMvJQ@Tg$2SurdF#hn2EW z(^n5{C6prIw9iTc%eAq_l$^<2U?aLFJ|tT;?xavgZTP}_=tyE97?`ULZ&xT8c-+v? zNM^N+(sV4a47?%Ogs?98bL*l@tcQh9z(Q9{#8BwE)wFql!2j>8Qj%Q8_?Ur+F&dCH z122+f5no-iHOp_gs^S_co_h|+@AbUH;CYE%6mE960|lP15nF8)nj57M$OmQB^QPzE*W|eG`!TYOVPN&%EcRQ(GG>)Kf#ju0BgQce^>{uwrh6Ms&(LsicX8} z4YJ7K9Z28>_&F5C7W?pxM_7c7Z$}HGv+&gXmdni&K83Z>`udNsoNU(tQG0SfpMr`% zB61@pIiW;ZW;&r1;g5S}^DlKaAQJ^M*lr@z6v-zPgr}-Z;)xK6?Q~2PfheHJ5ERDe z(1i8d3gZjAZK$sYk>m(czr>cQ26lU{#r1Ky!&F?5gUGWc!ERg9F}k43VcJ_k!Dc0TfZnCeF>W_7|BE&%?8&nPLi z`kJeHN2Cv_Risu&d@y`1O0Llzw0Nmn9Fg5&zK{_Ye|8BOkbf;3^vVsc5qYe2!GAn> z-n$#K+UVS`pODCE;0+a?!qF$qZHJ3CTQLbO%f;mpK|7xC_bQ*Z#&v=F=DDlrxCYPy0oGRpD}A+SmMw) zQ~Ylq?Z{1;KC?|if9 z-kV}FKQ?;|K6k9zj!#+|_(O=$;K`vS7#q^|{elLEG3I(cCCR-;^cs?)gi<{t5j9ss zf4Z>~E;o$<$8fM6w$QM$*uz%VGsNAQo8easJvX; z^rLBAcleWWcv6%Kw8)xKKufz#+6i^7A+fY>B^8i;GJhjRxfBuAkcjVo8)cLrnN^#a`*p@Q2gTy~oA2XOGbx~W(^Q4=q_xZ|zY zgLT=QwzrZVj+{FI0&QgG9ik>brb+27H`h(-tNr4rD9`T`J{)>wosI3bG;2#tp?(4E zrGWfwb}==1-0Gj-6peR3E|w@KnnkMAeILQS-R9*k%fdbgx{`RDP7cT-lacltb7f^x- z5M2SLsec>lue9HPZHzxzNdYdvza4`Wu#W)b@Uj6yOndM1M5{ptbV93%|c# z{|}DhPd?H=wDW&K_+@ANLqPwpkjw!+Tb12mqz`$tUxxfEl_C~qtX@)jdT4cR>2eSI zAYWxl?Jk4sz$mS4Ceac7lsor0%GxBD4W=*+zYVLM=h?RN0($=5+1J1H6^p6q@9j#z zJ?(BQsqODp8xi~Q;7-{43E=Xrp@w(urSH?$jy|7VojtVo#(ya9B^zDODeOG0M?M+* zGr$VJF(gZe5QlXo%SMXTcRj`nL@s}9TwC~GUIqUl`-)?{dLwsYKtGB8hwQ8Hb=zAY zpKQkos!K(8wynwU@%CfG9+c@#FXp4Q>k;2?ck}VFRj`^C%IFp~3$YEDsxXN#Iv*HI z)3{_QU`uA_{Sd|RXt`zAQ*EO5-TTpyzgF|%-&NnGo(Wgq349lZJ#kJ{%^kkGu%7>MC>B!x~|iLlNH z@>}#h8(%=kkCILBbo?Mu9fm*~3Y79u_!Ah2=|GFN=5o zln(B7MLbE~56jd2khZ|Bki)skj9?#CjR9d=dqo3igxpy)wI{#aS#|1r$ll8++*#Sl6OOIdW-`|C?x(vi89=Bc{7o0#C`uTF`IG*;3suv=t=6BYjSTkP>%E(3T2iS-GHjMGZGhu;nJy z8TakAzgTCzGq_k6ObPiBUYhu$R?%vZa!Mm3%8;}-L?`0O0Y+9_iPVC)$Yw18iv)>k z|9!Q7jVjWY%ulxJ`lGLKWU1PKS8*JB&STNVu+i6x5!@Y#-OKcX=!8cS9HXM|Yz(WC z4!FqB7f2{mI-9lsvBUw(n7o~n$-bKaEl?)oDd6m$#WB!@S==D!L6!{sXFWu&6%;y| z(?(Xx0I0oOAUHwK)c%x7iVdl>5T$JcXB!0ZsFlxvB!v3#QCi#iJXmf+4gGydGHrr& z4e*yr*f+SnsDb?#it=wAQ4kcdp`%$CtpmtQD!NFR-^Sb81Q^vFLblSpOEVf(MZ+|A zcY(RJ#3*+!IrjLpx=vUqzqIFU+m2%S?c;|ubB)`YRI7MRk?D}n)R=q8`1GB2(zF-%?kre6rgv#+1?HZG``?DlqMGAe>a%AfP<)aoo% z$^!~9e&H|0e9Lg0vx+vGMNN@o;7-UlP}EL|QHT! z-*Wweo6JX#2&n%@4`|bVtKs~-|8#i@8X^T{;?w;p&fWL2YMh7$D)P*0a{3hIk_7Gg z5h}ji*_zcg@M-wITZsBme)ZJ##POXq*n8tLr7UhPPsg?j#x4`@BPI9eK@71=B4uDIdeQ^FTDjMVu$@L|LF0eH zaC}rLUSO4pN~On7Q9+C((M{DOjGTltd3awQCLiCfwGV#mGFs{vSE8RD7ngAswB^D=B?du}#R4#geo{SERV6xC#GBQ|lPQS{Zd{7v;S>hQW?@XP6 zNOERPU4zV1r;%>up#7$#!JF0{DrVgEH5yCZ;G*JuEo{u-ixiI;r)h~w5X}S5SIWSA zn~3vx!;BJv4q3JGoYb}(DMPWO>?(Zed|ts~G5#_fZsvf6d8Z(X0-E-%oRN@}m0mtU zgas@if_&UhGak?jBtimvIc)tb(8Y8JY!W$wR0rSq1b3_2Mbg7=TR~2xI%uq&J9)^k znse=od2%l0E&FT_SEbYl4p-s&byE$77q1MIE{yieZv)Mc?GXVVo=kE73DCO=27DN- z=`Eu>^Ud7aSxmAlwS^jK%#vA&Whx5AcCdm;@M`hr8g9v1ONV!5E_?;M)?F`2#ylObQZE}&1z0<2IUD{yL0nhvXwGw;=@ zCVlpJN7|9u_L>}8;lOG3Uk|zTjSG>SKn)2cys*=GI+4*hyV9f8%rFGR;$yG1HZ)R?s9U0!N^W?i1E7!-=&%lc7WYcyclz+Rr%(fSq3 zGkwPNiUxU}C$45Gso-I{JHOxo=ow|cl8)5oLg_kUgFnsmHqji$WaYYt3O~1@d!@E! zMn*lG)bQqDW1-B7TYsQvM4#RseF6brGTLxEmXkpFg&mLf?5D-Lj*v}$+GaFCzs(Tl zqFB3h5uwalzd&@g*d%1upiq%7?y6G8x**m9zGr}9aVks|4yJ}G-FSFS{fX2|!c1sQ zw#hT1D{g;Yu8C>Yf(yeQaIg1ks2owivnG9Z%<8WBLUh?~fZG6mxPM{lvXVkeM2tz8 zSqUCTj#rUNoVUz%C_9xryJLuQZPt9D_psYs1w4hXZ;LyA0ZYx1rlM&C{+hGCF;@HF zO~HXGsVeR8t>-KQ^ai{$6wbz1@mUE8g=cqDBhgcT`_%e}WjN6Zs%S1|^jk;b{AJtD z`fJ)2Xqmw(Jh*Oo{i28i+V{T-fd~fZvSa-WHxe+w8hve zC4+0js&VeWG*vXhhmR~z%0|-LAY1X8b6=-6jy5FAXEl4;k0(bJlU(9fCCw4ERwEuJ z#q=0!dFSA&# zh731lVda^h-(8l(9HoOex#93dg*x4V83oT1YlX^fGc1QELoB2D{%os+exMg37gy9e zRqK21r*M1@l6M;%Y-$c3(+e#cY-1Js3x41&ZZ__ft>@-$9?xs73{Vi&Izrw7ek&pX|}KU4Z>M$8pzeS1Fho7=Ow zy(VOCe)dp|Q`ja|$)DPE2)zWmaG5*o6BUFt+H^{t^u4f-Aq_*nHmg1^yR3S#4!Q3>FEU>zDJH0d^|Aiqf085XBG-El7JpKw+7UZTn~5KQy< zY+zmAQ74X<#@IlBRgLF#s>j_@P3(TMwQ8fG8Hb`hzKk3;cPn`nPai00vBMTKzuWGO z3#G9^(GTNt7GjaP!NFCGS528qHMT0uleNhziY4%8Fi%fG&O;V@W0w!IlVPWUwy{g6 zg(06r^+4d{i9%=DXR~MBnHCv*SF1O^`bI{#(_=(O12v;@4YW+{y<#;UxPK@EkeMan$OC@{5OBe3NwjYfT8P@d)tk!~eND2@4CxU4&z0ngPLHu=@qjms6 zU~=KXL?&Xi&Oy*G@e7Nm9dK*AC?=8=`6Dh8c}iSSr0qz4f5OhMvDS52pE7UP^9-!2 z(xCLh=h^09CW8asp)wy3SH<_;TG^J2d`xW^y`Q0X$3AcE0&a;L~VP6Q2#h;ildA_e^#Z!4(!i658KQ|(j=Nvla=-L{T6*(n2`zCFy7reVjKcb!P*dy|QLO;y%Tg$BzZ%Cy|& z=DRTo9?GZBI{JoQm>vQ9X!1K=Tr744BsGYAB#gcmR!#j}n8+z?uQ6w@4Xwx+)mS~z zOsNfX>FLcFgz6ak8D)(VRV!p)DZql)mfeD$JOgCXg(=f9no(Jdr&pF@FPk}z$d)7A z(7N;$^XAq0jZ$9QT_HbYu}(uyP+i+%9iyPVzZsu{m>Oi@PU-162Ws;=bzd#=Xk!eE z5dC6-;1wKCZe`=w%NFz)KsgTKdUBu#4SO(_t$&@SD zRZ=Z*q`31Eh{p%B*)G2(d(4@AJ`x$!WQq%-wf@260{si({*s0KFH}oF+S1>OVE_B7 zB_K2GZzud6WCc*^02xVu04r8Nsm*VkmkZF(_1Cdpe`I6*r)UX?cKn}89oL^hVy=He ztg-lfl0J7HrmxUEjP{#b% zm*tNu{hybG4IsMy0|E67R@N$jbzDPXP+sem8>s?tc2Ci0Uu15t;t@jsH0X zVC4Tf1sBtwaOU5ElK(=Q7AqI?AE)?VGH%CzbsbH|&k~m{pB>mTVRlR9EaQ%oa@8mL zE}enODWSVtjEKxa`FzZHa&=v+swD%;j$+itK{9`as;gmCpWdjc-M$ssjd`Xu@BFSh zT45i<7?6ECee-htb$NR_^t$t=;-*92_+6K7sutf)`|XH8jGgA>vp-txW+#$=htIY* z{|7^A;FZ{?U$Jw7^8;fTzuvMn0g+fQFZ!CY7 zb^ZuG^=pe7um$a+vOCtB?RY)kkM@`AzuVk->C*3P3HkhXna&_jgjZ6J5xNS<)3OW! zLF(7XK1YN$jO8{U`GgTUCa@9VJQVBQVYT`*_jRK~=ZkilHwHu=fkmNDOK|w9S94Y# zSn`XVR~b2i3R`7Er7DV}D{w8t^F85)flN;ojDN>z$#-x%Dj{G&krkE$;6NECCBj{d zj>TrhBv@u6rv(9VT048gbgfx=QvObkTzqpV*Z6FHkqkW{bk}kVJ3MvvbBz{BYBsV| zxn6}T!!fIRpoIbcB$|++v(dTDf3zLto=7ptX^jll0qd!fVKPJlCwf{q zzVe`eTNnywajQZC!-BmOl3~SQMl=#JlAbzS4^(~V^g}eZS7X)TY^QdvXmJSuReVR%s&@5IZLFj~R zW-duJDX}aqkGDZsTzE8EH<~9nUrk7`y3L~n5T-??z_rLB-IDzzLHcs0If{SLO3E#a z{3NpM9Wz2jidWc;NCag6rJZ%H2pnC79Ki4@`zQ=Cs~X)(aG9O^quP>_nZVm?6q(EC zd|o$~**lBpxZH&P_4a7vNkcwxbJn~#M<6Q*+6)!z3;DAMG_!Lk;sCTFI-G&@7>+Ul zB65zU!^GlSIrc3X1j3X!l8rj6xST7ZSFB7m6=B%j)fC7_F!&{Qx_$tJ<#cM3QI_n+ zmKe>GA5{GY><3?W7j7Tg6E^(|cVIMqS48|+r7Ss`{ySvDEBC&RG~!EM6vXIwnbZxc z9QRHP2_)YB_JxmvHYq4-QaSH4Yj6)0?BGHhLMNRg)39YwY!(+}$Ja&ynE9ep5VT@T zPiL@5tS0Bw$AY1I=;H$wNvP;$Pzy&rM&cl4ProDLU+(h4pQK^ivf1C2*KmOB+dxK! zup42c`yNrS5{IVR%a`ZQP6$FWqBWO|;eFmnLg;VWE26lwr5VebK&OYl7bG)vSY5ze zbw;=u&2OZo3W|NXz5(HN{_$xunCiR5wLOLdoDI1LTc5_$<31ghSqK|6>)=!9@D>EA zZ~ir%D%pyPQ-P@MBPXs5Sl?3L)-19!Hds4WLBI?qbjFG&j@YlWkguKTww;I-@Zbg+ z(QZ94i=X_Co@WPoTyqnzZO7~j#>BmA@o`=tpC~Udu_8r6REE+$5r_1-QxfD>jV`*` z18PJsD{=OygeVyuqC|b$evO##+}}h)a1dSe=`K^qq5_|mVL|y zNk~F9CJCr@^DEea_w!?x>SEeOe`pQ@0hiKHI%GuGR8_EZe>Ow{?J7+W@)@#iJ2C=& z(_qU9VAka0Q~X)8BA|_q{;48c!Njl!2wp;_?+iCCA#52+ug`Cfj+2Js%i?=y`Gjw5 z*3uUHu1U9nF+8|Kxrtm~*5R{$QtJ_$#i;0rW%o1;_pzfmvyfx)ZKhRe+XqiOc9l7+t>%nc=jfpc%Ni!^|jJ+P9T?8UcQhP=dHBD?{utC_{DS>9{ za8m@cZ)C)Q4Yp7>#z?Nm(bGaTdM=Ds)Y*A&XHkRX&tiJId@`q{596GZqReg>7=k1q9v{Bi3Su*z)$zyI0QYNksyOlzt z;u*<$AINphj11i1A+*T-9QjdusN)|ZFvHvXljnmr*XNX_v5HMkqJ|sG+wnx(|8Or2 zH5(IDl%Noe+1)hk(GF(M^el9m`cB!>9Bwrb=th!>TbrUubjy^yeR zUw{Z?`8_BZpWmWh>3dL%tj>u6u;nW~(pe&ix4(^=Mt--MUT2{oq%FAb3)1`!C=N=! zXu<4cKN$2q%FPv)>`w`w$9)j3r`$*{#E_*|9?3~{J{~A({@F7mVFP2(aQG~~d2p~p zy9bA>?#(ktoB9Y(WsRZt`6iDHeE7SOeYfcF7RIj|Z`H50l+wTi7;<^bEVf^Cx(B6t z18?f9;CMDRtK|~BEKf#HQTJV)6wM(74(xBZA;L*QLfwRa>7t_co2rpru&Ab{je6lp z$_3o9Ss{eEJcGzAo93yd6m?K|ymt=EwRc5AHnw(K_4o}-aS@pd7pN$N2?&Kyr|6@$ zK`ISLT#Z1}kje--_z_?k!whWjS>h>A=8luM1qx%(&8-r_*DmI;F0M7-8d+0>ug zetqx%g*^JL1ph3TZW9cgM}PFl4p1=S&blnw5lqG`3Kz1k+yv7=pUd!i3fxr-b9O|Y z;Ak700RMoLwl_a7nHUPrQVg#$;HET(IwwK_)c+~68Y1{(sOc?dh5b8hd3`3S%-#xZ z5K>rQr2$@R27Uw2@+!gWI@Sv$B7Z#(#GMn^8(+fuMUyjUkn}RtecP>ZEOct23f(UV zk(MlXXnt3wtEk4?K=B2?AjxDz1qMKgd7~f^y0he!QG^^JS0JWoZf*^qMf@cTG&aI^ zLcPlDX%dLJXh}&K_<>O8<9vG(~e`gYvWS`L? z@hi1`Q{{UKOOA?D5rhOYgH8HaMX+!H*pWB6c%2aSgNse2^#&0~S#rW#`|;9PTD*=L zGj)OMnBmzJ__-SWU|0+NgWLXw>q!6Y&v?PcDcn6?kO^*&t#Gq=IyXjE@6c)OM^Brt zMKc}d*qStLmO;7NeS1b~7!PGv`g%T_(X_~GaV|kZ31?CT*Y%P^liQH$gGA6cxC1=4 z1h-#g!>-#o9j0q3)2^5KVP(HsY^ac2QXK$;om zQMdNgT1ZqW6NcR2>Ef!KcrQ6#h`c{SF`a54$tIGkYR`r2%*nYI&!t=RM8y;y{FDm( zws0NLze|aIWt(x>lh$%N1l59o4~Yub!M#*ew#Vl5oQs_b6?MM7Y6bWG0E@i-!vuD@ zGQh|KA{jC)b+Zi0g4Di)$8|LHTisW_b4?sWW@<9ovOQhhPdxN^Eu7UzoRuY(V+*RN z#0)&NaL1}|LF*RyCpm9{j-OqXBS%L4s}NLOAb;g#r6|L#J8HZ(VpSDcLW=1JXQ3G? zH9Em>PDbA+!l-st;&bH|51LrK(Ul4z&L|42-*Z-Wx__cnPVA-6A^?hdLa=eV>PA4t z(>XIJIFbRMt&o+A32R^_5_0q8M~VFV9Oz- zV1g(rAEjwIQYYwp*gY@uKG>{S4sq`pQn`eEMT|a%J7M%!bwopQflXC}x=%!%a?K}a zu~b5H%X?<%pLEdEPrHr|L|zQ+8EQ+pkk$%3>+?R-t@3NH5#%1nUkpyCA`7XoY-u2) z8Cdy6l%rnJSlE7KWsxj5uYips&ce~G?8u0^;xe48mXl~GG z#D_j7Rn1~GnWJ6!<+5Q!FJRoH49#1a_LU5-UYP=IMYqq`<4xVg$LlQf@T#?J2p2VT zXb4yJ18Bb>@Jn-3ult>3Fb75f!fLR|)p9ru3Vyc?_T$S{T0r?!OCPWc;&pfoF$lJMgRtml!8ZO-5a^rY!Zc!@DMRgiim7$1jD%W0>8OrK@ zox&@aFSXS_e;2!Tn2T>tr;~e|8ZHhmCMBZORLHCr^j1eDaFtdX*fkF%HE}7U)K_i5p<1m$TIf4(SmHA=`bp9jPeR$K$_Zx+Mqu$i|G6vDjHQ)sWsPj-euHqd4X5s0 z0{De{mP2=ZaIin6an2oehaG1#t`N2t69w^RN~?$*_6I?j~f z!d!iiYObdRn3eR>5w9b`mmn}t=y|!#wfKnK_=;1j*Zj4gJ}s<;_F-1>S9?Z( zGv1O9DeR7YgUeMn0XP?=p5m0O28tW-F%dq$OIiF75AzAcwkHXG>2?3Cp;JTElxE-O zbrf}6j|BV;m&zgR4=0D={1qO^`&}~cYyI}0K7tD_?}=CwR@c8|ufm6Z^wRJwtnA_= zZsXlSGrGYTZS%|f2Qk(=)Rsg~FG?*>eLwsua%jcgb1`v{(-V7H*sK<*U*?>?6c;Wb z_XTq|no}&FrPIfve_E=7-u%>fo+_y@Ay0nLn=NS2I>(Cp$j;M(v4AE`?uRxu#%J?v zV=9{Vz}lmy!v>goyH~8f7_Zfvh5?Fx$Ozg=*zt^eQ?N#%@kZDaWQA11{%c%;3vyHr z5B&9yvVJ)v8}@<4W14z+zlGvpK4tQ%pc5{&dUoP2*a& z$vg8-fOqBTbuHu@)Yaeu%quvFKhPv+}0i`wg*oa1wCRt0kQ-4=n9 zKk~4zw9*+a5m-&|{gijz{EG$5^!Q-qggN*!sQ;9D?qk(D$JyI%CA>!GO z3DsqT_jbo;5z(&`u9I(_X(mutVU>CHWf6S+&5S0Jd^yxI^K6G3>I?gYiYv&ZA?y2M zkp6oDqzGbe`p}fWe|FNc;314$S2H0l-C8K^?U^|EGk)pRN>p~SajSv{?H3%|l~7jP zu$aZVL$a7L6XEwl8x7Pls8I0`iCGUvx$*=Yg%)woqixW{&~luQS~=1EQ|;)hC>-uQ zLYG87`jb^KoKi7(#|F}AV4|eHAi;-&58(S>oppbuY5$A;(*FxI?SHX)%ES&3PXX;Z z01CqIZW$)P3N8TZ1gQRDXZlMK7oe~H9e3c*yLOoVs9Q4qu5kEI-SYoKN=cjBSkfy3 zAX8d^{uY3o{#(>$`7N%q0>pJ@Kob$5E8?Gs>wgod|5HC@{=IYznE8(!2IfC<7yv5u zKc9mc(1!q^b^Vt50b91rfIa2EiMh;xj+ehY4}k3bcjv+Mdr|qn&+$hN0~4T0=)cb6 zpKutMS^t5<(4nK}xWe}t*fA79T-Ox7#FhyiN-7)MqA|iCfy==iHg!>UAuvvueZZ0i-wQd&zeoS zD!ddxHy$rtWTNYeb<1$ZwSoP$kMsJL6hGREjDq(K{LB4o)SI^#+9l9Op-`Ql$fa$j zq$>K5Sl3%1ZA@%u2NxgLlPm+F8&X}x%2mAI12~*+e8do8Wb!ZQ*FC(Ahqsrs^~KAq z)0Aw|v-*qJSf8AlBmC3joFOsWtb>7WM;oyF$g7$q?OE|3Slo|N!kW& z$(&BeeLd~3wcq4pnds~Ayy*0FGiyK9p>Zb=E(TfdS$Fn+VDP3TUwFH1$fzu~V45lh zM1fzF++GJa>0r`x?Qo@Er-%vBuL&HGuS-*fM0lJ~TD2!iJQU}xuw_U_+0q69SFk&d zefypKDqa*x7PXCmbeqpPaIA7!PVZyJTd~S$_PA~0XB}c~PKG_i+xe&-g{XOfIKMUA zbXpI7Z`y#7qi;ticD;1+yO@ti+RGq0#_)WgA8g*ZGIcHN#mZ?8XJ~a|j)?wox3*9i zLYkM$Em;@xQ7dNvC3$Y1dIbw^T0|x8hKT-GtUguC9E>*|&BD(z0=vhfk#S;H+%H%Z zoPff5IKi~h|B!ISaUpC3J&K6k_iP0r9p*&kh<;Hm@BdoLFPDnQ#XzEeilPe$vgB5Q z(8C^0)7j6J|4A%?>Ln)qqP4e7Ml6)!7jHb;~FBBVu7ONfU z39naCSh$c?W#gR?jixqv7madG*29dl&Ye;h+C~>169#rW^dL1z!UfpIA6#OZLlR2UU;W;OxJD-G4C6FxYLHXQ!2kmN=q zQw#XYV)Y{q)*}D38JzxLLBa*FZ6-TTkDV*+B&uIXDzS86Wr|;P&YWbStaUQBB<1*K zA}Wf7AWv$6#N3`9sbx^JTMwsW3`sPUt*sWVX|zl)6`>R~zHF--1<7|^hZ8~skXOkN zOpI=y!pMMy%h`H^OeKtABKcy4@W|pinKri?P7-*q&0KVuqpGU-Z`(AQE%60hje*@< z;ihlO%INDV#@USj1luNEq=!#5B^MG0S*0M>;$gBwZ1DGd8GvxMrU4+?;-BAXX#Z`u-$SCcAwj6 zP)M_TtOw2)taEO+7Aoq*r_Me$7!Z}nR$UdW!pCuIqKP6GM&QM^RtVnlXr=qh5~&rr55>&(xuP(jU6W_F&RXG2FL+|RXSeJSuh+vBZ-vQ z{p_Eqob>VaCNXnVV)fN-B@o0pT&zNy7)&{$Z0timnR1;*xM9fgV+-V~dEh|jvw6WtN? z{)~&8q4-mV%Kpu`boWXjT_bP!!Au21tuTo$98nh0^36rZctgOSC@muzJd}1(u+u;#v%dwuPxY34jlTu#C zV1y#1I=gdCK)ku=cMzu_G!+S?b}?77M6}O(A=YgTEl!o0JjzG!_j!Y(BWK#t2KX*Q z^cMIo7(U&g7@qoZ(Dx@{#e^+kI@+1fBuV;G{(=ADfhaD6J0Qnqm0dGv^Po-cK&3jw~A# zSum#|tb)`x4}Muo5C>jZS17du69vf;te;ucf~C7s=1%}MGySXYk=cfrU6DuxZBL?dj$X z^(y-LXX_knX%&$Lui*jft8iRw!N?NA+$sGE@uU81pl%%ERXULtg$LK%QQ0m`&lFxm z>yQSnp}_^^;XZlvg%J;?F&%txUmMY$lURU(1!8FMCk5V+?4fy|O{AIDF`yyMYKlBg!^?VQ3|pf4oQW}j?$SM#c76#eu+Ep zEpb0bg(&46ahRV%dsD@edtnaACnbI->DJNYI@6U|MjU7 zsG6I+jTWR$-QVR0k$X1`4$tEd3{DVTWLFQRyrpz3x;~Sap1#AJn=x^W1U2OMrE-Xk zzGt7UuR-AtG1zH&R2d=V0$3b=!XN$}>E%0H(;tU$)OjVK2?UT2Vk*Hb%#ODUWntvA zB4(C6(m(H;^ikF~La!pwAh9E{5OnEyQ36tb21U${=jCzvZv2p84s$Vv&*MT<0R*LM zoVDf)wd?U_%f?H_*A%qTS-+S#Ywh1dE|SbEa7pV_-n+}=-9|z7^eSI!AQC~^9d_|< zx*4Qm?zHc^{JGz0RA%hQ>uj)JaUeAjD+5wDswc{(WP1|EwBmK5@cKSy&>H-&?k&G zr!<`ThnNW}?tgGB;gZE8DC1S|c|s;|MFyS{&gRrN11qHRL8*C6?f~p!eR~(7i=!AH z-N{j$P+Zgb*a18$mx-&{%yS}bZ}?5oPwv*&A0E!)iG*;$z4>1bGrbGoDK+9^+d z{`}6?((5rRt(KPVY|Gn54eL0vGb#Xo1UA9KWJ+a6=EF}=|57uApij#hD($j7sP1e+ z!ypM0UH{NY5OlfOyt8Exgw!j0SXZicGf3XTkavdngYLv77Mv@brO`0<+oTjc4CWw6 z77mVwi|(kzVN+d8K@4wjdQjN(o3{L1Ovl2P!}YzPug_RB)oR#e=qIA?V)$H7q`>b@ zyRT|n#MhY#%dOc8+yrAICHGA~C??k1pDP)%<+rNn&0VfMRIilmzkR!Pd>*}bSQHhN zChr&FM@TE4X@EX?Hg*e-AIbwkouvbI@9_QZj)q8LtP&IGhkx>BnYj{02d8Ym;CyYeSRb$m*8+2#NtTJk{YypTPj00Vd7g| z>5?$UqR3(AgLWEnFGNnB0y4YSjrZF7b8&ml@!7-Kq2SCzO$H|xKG|I;rOhri+XZT1 z>jqxDAR=ZKij{ucgU;91rBQWiY4Og&pSbl*W5>n0Z8$6kWt#E3z5}XKjs?8Bu8>ON z*JISofLocbA?Z>U6E?)Pz*VM&t0u6r$g?U|S+GA3F18iz!*m>Cl2=)tK6Gu_L;qZd z1C;Onotp9|>eByl9gd0N@0Th6%~$_7U;W>F^?&o#|IJtbH(&k#3BEeh?>_Q>X5TRX zuG0npOaMF=76N7fOdL?W&I+Jc|FvuK$KrLC-@eR$H%7bb?kU&8;Be>Z-+N53K79KS*9 zzdag`8fR_Vc@v$%gf(ZcrJm3*0 zD}cBDSI5D`^!us(=WzgH1b;TiAIbMj4FAew1YmvutafHLKqLa-F#@6)zvuYdRR6;{ z7=LGC{`=eGj|mMX#((880yskeZ;z3knT`d3*#Ue4ye^EtgBpM7b^gP7u(JM%$H@5) ztam0ryZe8=P5+6v$HMs!wKoeoQjTlG$ek6E9|kdBMgx8Yt4S77X{6wmxGd>PHE>#; z0TU5I>qg9j#Ni&`?B`mVZHpU=f>La&!q&yRrUHhkrq z9v4-Q^)ACSQoeJ!h3{(+*%z3q779634US5*m!Y$cg9p_d%iK()l4h1tN+G?S>e+lT zVbW`3=|U>f#QOL;w0cKaNtiDlqKB4NQ@1uNHQgSPuq0bQSt`+aB*rV!o*$PdrBxkN8#~ z|1Ak@;(RckJD6mFynD{%Y0ISqZg4v4!KSo>ue?2uXgI9J0qbhN#1|}B%$WNy)PevU z-|z&dF%%sLu>iSAx&UHc1KW6jr-!V(4AQj+?*saVfisZkbskMoRL|fbTPJ1@*lB)) z4FIP=G1$?beBg+Fvd$$JiE|H@5dhLD4M@VIDY%468=0mI=7UTT$x9UMeiTXk9BYOg zJEPz*Nj#nxGNO!!9KFW${zWvSjeM3m2F}PAbTu(!(Gx|Y^pT9U3r$5Q0kQ$eccjF% zXO5w+fXS^a1-dN*L^v3aPy~S4Vf>BRnLtl6*vnK1v6wjcGD;)8TRl~HUAh{Ck+;kw z6e~a#r4z^eOH#oGZR{ufmrG<6!DwIljKD~#>@8pg1Ze@YClS< z5BBJ@SG-Uh{8Km(Io&!OGjN>(U0HQhVTfe!H)Z|ha#L1BA&=805DM)u_FF|{$%`Z& zP9*Ay>orDzOvmQCuU6A&@rY}}6vxSI2hq8IacSEJ;|@Bi8$h~$0E7M7x!x(Erdi;D zC*9a?%E8*W90MQ3wM)cLDBL6DNC_OY);jHPGCf-4j$t^gRc^Z_IkjkeGNi<;~Pg1+k%}O^OCtrwsnq2?d5Ev&%HbPE$10g7L9AA**+Efg} zHMq3aPGNgtB68-M%g;r-dmbi90c8!wsaM2h5D-nn#4HKO0SfB1ED<{nsxrC6N3cx% zQX=*oRB^aphV+QV-n3);%G$oOK*@((&9@Udl{ja1HwjinRxKMlPU_LX!ObdQN6*h2 zu{L#O892K^I}2xf0-TtZeX2`4*;)dnz4iIZy473DL)J|!VbFof_yLDsW=TLl%sw_4 zai&k<<(hZo(`Ul4d!t%caP^ax!9&k<8$3YKz*w_r(Uadi)5 z_oX{t>tOMyP9DBE_{0Aieo?==vlP z2pr7)L&c*Xo?SJ0a$!u^rJQ1@egNf;8#JD8iRJLs>`7ozV%l4CLP=Cag0JK)^6O;W z2CHo<4@yulW76_@D{W0IL(e}I=Zrw)&txijJ~U{QLN*J)3Pqa0?b9G#jz`T{q-%_H zw?AuBOmH@GaGCjdLu3Cs4cM0K&>9b1bo0C|bS@O$&t$Id$lQ|P9@uC0U|HgLb6!Ei z<8E;hWgRitt+$}KC|Z>b6f%qV5eXaxzCBa1UMm(nyN%8jJQMgJ#-5k`nNuKm_9N=| zW6PO0-aB329xTI%zQL8L8OD4UD;PqXD5e3o;A?`X+bUS)OR5gwWE;UTvGjPppI6J} zRek-Oxr93x9SF(@ko)=HDLIjy?;%o(a4=28@P__}loz`gBZ9%4?fp z?gh%_f_-Mi5dfWydmw`)kVXX$+vkPx@Gk>PFurt?pJ~W%s|xFg797Fq+cJ>;njF|6 zslB$R3~fcRPF3Ooxmqilti-(sdM@Xzfe2Ttx&^b5>44Qi3)biD@HIwym)Jv6c<`sC<>t%}QWR0e&tp2f()9k9PbAma(G0s5I zJK!8OUKz%;_V^{ZLksj>l$=Y(t{Qr)!g(yk&OPGZH5%cPM-UAO1mBg7dMn(ini}G* zVs)MS`zRcvtI5<1Js>TXiAnUK50aj7KA+1f(dE9H*UZYjCh_FJc&G6}Uj^)!Uf6+0 z&3YFK#caMusd}K;NC{)Vgf12zMOJUn$|f0@EC~9KxGJHyx{oVdO?9$P&QNm@`7G)QCAx5f!0Jh?ZMn3)G+Tt`-y$Vk_VK_&>QxfY3SmVPWdAR#?0P+=Bn^wq>9zVXc|V$6EO^ItHVHL1M_ZS?_8R!ZEa$wvu%2>r28VqXa{+; zz{5$uNa|OuL@s~L1=ceUBL+`V?2b82q-douMJK$D+IKsC&Gh!sZ-(y!M$2%F>2?m- zqZw-Cpxo-0X|aM8`pFF)RO(t>8uHZ^k#n6hBXzsTB!GuF)9>6GI0Bo~BOq4d%tE|0 zuKwoQ+2F&SXQIeCStCRRpcxP{vB?^PtEokH6``axE5pXqM>5J6`R~>)praYzv3H-R zw_Fv&tQ7<6&@YuV7_E>sNng;aM&@Ms+4|C}DIB`I%jcz(F2_%73b4w2=9|5E!ws+f zR3zGROnrDY;C+mXb>^I8VaVQAb zh1Bt_J?Pkf%-tefNn~OS%?xwTsdP=uAIC;X}_T zy(mcUu&i}Wb9w#5(KT<@EHQK4N z!T$~~$Wb8rx_x3w-xN83H%EcOY(~9#Sj$qJ=`NdpbyPwFos6yX=)22;r{m|I^0H)6 zZ#AD!Ge;x(W~ld2eXmiDpgEFype~K5I}>00V9O{bLrI%0B-6 zpcu8#VFvwKn>YE20hO+lP^>aal_TA?TV8Clk7IHO+?Au%WeY0^ z;;DTj!6FumbiF%&UNqQwNyi`G6Syp1ueypi;D-bx92+K#)&(ps*(kt&CBs3zH#@`& ziag74tnq1008=~0{H(~lk>?%~?Zg2sK(1Di8W0^SRO!4Q{k|$B1wYE?Ie5>5#uVVI zf>M8c|CEf#5~hYf9shv2bF93@IkqW1bPk!TDL!p*e})F9!FC}gam3OSDBS72GEJGD zfyY0s0d68DCjP^Y3&EU22S0)zL>P5n{y9im%79ltrh^lq;=0vHCRgqo><`ex&rBuNscG50YZs2yFBjmZ=bu4M&; zWeTjS7W06=si~{Lw>AoCb23pjCm^@Ut(MgF6}Y4i)=@sTTwD{W5!zM@Ez9aotTDSD zI!%ZNwB{9j)oz8V;D%yGZBw!qWwox>%T&u)!m-KvC|rGAR5i)=kR)lh>d<76-oy-5 zxQB2LXX6?-l^3}OTO~A_$bIPymsN;mY?B<#v~7L9aP`0DP0dkM5ZxEzqT-r=S~Y{< z+O|=3bujC(I!$?dD{QN=vGwOa zVRM|pkPVauA1m?%7#`&bsL5j*Zukb)yFA)TIC3p=hgRJ$a;LgV4uPH}i`reXoJ`IO znDNBv=VD3U7Iy0>O%2+5zH|E??9LGkP&_1ysa0d+Qg8vszBjexiZU2e% z_kZ4L1Z?yFm-_T?r}5uT;u;b{hZfH2%NgGy)8(|GIqr$pw~$4dC8z5HJA@ z$KNIn2cWhW03Tyw|0gC6fXelEp4OlDHm*0 zSpFfd#`rHBPd3iql@*KtgAL$~GI9W7YRvz8roVF5{wIgQ@(*D(Km_i;4&$E~T5ODe z8~^X2V|uo094Nl@aTncUp7sh~6wyct7~;4jY$H!>sz=UwY3>E>_xg2)MkFOYJN_fA zW=b(qC&RUxX5mlL_-+@{w{7=pX!~}rvJ~USO0{-wF0sCR)b!zr_T_Bv`ReE)@x)f{ zX=LcsrgpS^VE1_M_^G&8%6F=MtvyY8dF_Vs<>pWZE9jAaKOmSUWRnZMayWM5^#rn! z%j4$$`EX){^lK)hL4VbOm@NknCQ~z!aV~Lj5e!Q64bW6a+w5so5Zel_x74xiMa;%4 zo8j)}%H2x=JLdEbf9wX1kY*uQm`W;(0#8(&z7V8&yP&urKJj)m5>G!JpY%$&(bfi^ z>cVcI=P4aNJ~h2ji3n0e*a(uSU6WpF?5+_b72e>G!!1urfeG6$hyJR`t()L3g*_s{ zZLYM(95Ep#nBHZP;R0QUPmuA6(e1H;(Yx^iDD}aO$3ZrL{I<1_$^7e-Os369SlY7v zg~0J7uCZwR3JR)qeXOf;p^}vH;U+TV1S43)cT!0yTf{Pu5g)VhJV;0amls-$%v50n zJGebNZzR}K{GIM?kzCoKAH;7LI+NDdoh6+72rlVGF0ccYpt#V4F$KFVXakjv9C`G!y4FY+6QcM>B*8(*+ipB5EZq(HDFW=XnI;aFLazJhEocdHnELRhQ=FSQ6 zl}k@07s+Tc`kN5-cs|w82!-C{idxc&VK^bT$f-X26|~0>L$@1<&Vto{+ zf_XY*6UW04F++O*Lf`$a(jCZjS+KMf-;r_j?L;GUaI4BXv0{PRRyzd-l$lX87v_6I zWv_jQ82m_NCaX~nVTtLm?Un`8=yJ|fki+y%DI3;Zo~}uSRx_~gXmuea_>oKas(OMA zJEG@FL(rp$gIG1MhXhK#zPtiA?tR@G3TXP0dI8%-L)Ed#`JTYy!sI%Tq;1j7jRmwJ zL&nR~69%6Wkj^R#H}wb5gy=ww=DUr0giI6l&0Goum| z)X|KZ*?lMDG@d7&GuT*X!NH*Efk5YR-nSXT0(z@rdbmJ!n@b3vO!-T#<1}>FH8nm~ zbwx18Mp4^#s+ZeQ}`T!H|saPReCA z8*GJxS_x1w#Bd0svuI1aWV3nI!5I)1jE3S95A`iT@h~|z=)P?coi=+bskg7%*1wkZ zZW+9XQET{9lZ@HSeAiNret?MYM#+b5W*d6BrQTR%c1hpmM6aC5#}|KFvnpo zi3`!)OQLBDF|^BxyS-3#`({raDOdu=w>ZxoHoX6GSc`T0*+~Wsk2y9+Mq282kqma8 z50N}PxTO`k#a@Cccw*Y~F`$Yxw>P}pysuB@Yw_HDxfa~CF)hTQyq5)D#Q|-o z2qh(iLZ)r`!eH}Ju=xxRw1nVwzm3Kks~Jy_m>(*2#b^uX^(mAOCkR`c^P9@lN7_NAJ{dU^3DJVYIxng=?3)E19T24%Ja6jSMKh`u4 z@oRHoJV+KTqn29HEn>e>p-mWv5Lx(378ggTiJaJb3ODc|#ond?2g8$$1ZJL^$D^tc zG@@bZt*9Qwh7Q4a=6ZLv$s`j?5ucI#r=7vTKwyT|Lhe+xuSjP)aU-lX?B?l=IZ%QJ z?ECplWb?#!>H2OwuV!Lt>NBZv3zs-x2p7=(jIdG_c>ZoXyhyHb_xNGlP#utOLb1J% zML`1ipRukdtq@B@;h<#Sq1DX47C}&bHM`d>3s;p@>OFl9?=L5S^q=<>;Fg95+>^(&j01WsYwT3cH^=N;cS+`_jhQ^>qdZkQP${jR_w*!eN~ zXlOzko>`1spPHJB&kl8pu|_crkE@+mYA>&LrVp!|__X@wDTD@h*)NFQ_&We_2sfTJsf5_517I%tEu&Zj28K?zmvWZTkh# zgN1eaoFJBBS~z}1g)|8BVcm&!m78aNf~QPFf@vS{Sz2?Cq2r9GooD1KYk@54XF27M$I#RlIG6) z8j!fQOd+ggQ@625mQyG*Bd6LR;c2Z3wxOO>PqaChz|HZ)_bpWd>B3ZDd-dkiQa1eD zp;DVW4zbHl?&c61LUIo_bj)u165D-u%78p)CBi$zG(2}+m+9xX^gafdA1;h4pY_xH z>_KH83vfvNx9CO(Av_B)LfzU|1fyxjt<3G{j#%~d3aP}iKy0R*oUY5wPR{xH^7f&a z%kQ1nch6IT43Z}e?po|h8N@S*SMl0`#_Et|rom3IKh_3tAPllG8EOx+;gi;6!5*3m zsl$SduW`YOyWa~ZpBl@ZeSrcY<6+?DtE>fO*y(092OqLa@MBpAVO%i8NjvrVeB){L zbQ-!bT0uF_^N$xiLj9dwru5tQZ|Zszb@_D6qL1v}TEFV_Bl1QNSmA|8lZf`W;SEy9 z?p9cHg>Q%*+~pQ6UyGqgBihNQzeoK#IL^pB-Z9;hJ4hnG1vZ`jB%7P#)50T+iCXVn zeKkps73vjWen+hPew4M+;ID_-r8|x8F^zaZBw>%*niEu+!8nhQ9Yr~`6#g^@apSu$ zc*UF675Kw&lT(pbce_Z0(K6anryPsoxNPU&%UT>asyPu!_2(jf=~+Q zF(0COM@cW*mb%7UF0!01LlTCfRXV{oNl=|;YY~yF;VBDQDdSVP>CJgga^&15O?Z2Z zt>Q8_fqZAvU)vw@jmugh=`{S7qe$US1D6)$LXQ)D6)5w}>mzeF6IY)voTMjHq0OL| zb8d0T)2toCm&PpmYbh=bSkkxs`l0Y%VPFIYZ`IH|S-J=g_+Gy4Md}LiGw3Fq!naT@ z1R>r&TJ2+ToMOA!Ck?h04Nx4{l*7e4)EE_&_8bGNUlsZDmQn#yX_sk=+I3qd?}Z=C zQ9|4Ha@4-rC+)$WP+9A}EO|QP6M-wFRhwJF6PV0Q)R7B6>(c#lxX$TLS{1bf7n3r< zH18{D5slbU`dv=U7&Ko#IWvUmYTdDKnTaA3Fm4JRz3-EuYV{|4v`N_Lm{LawV>(%x z_eIiQ+eAl$lYL%D7(0p3;&Z(SR^{kL2;n{7Fk;*kZ-IIW3P?m+@_@_}S%EJbeosd_ z#TbLJYj6ZPt#cN%M2|Ts->-DMGPZZ90Kc2~nwCr5g z#s^n!K(oiyRdk7kvnBgUar!;6oQ~ecO^v1*nI|%8DWW;Mj*KSXa+cB5K~_e85-k3d zJxrZ7Yn3ZuPC0bphH|MRI{ARhWwrmT6!~iqjgb{q=o<*!B(zAA{`2Axbn8q3r?4iC z%vI05@nImRUPQIgo^E6w-|~+kgzEAvTCIyfk;IYgYUVQ{SjgT2VEYT^xDfeBDa;q| zD8Gk-!Up6mHwW7nC+bDpZ9;Nlh7%*OS9}r?N6OQm@CM*GK~P@4EiW6ES@y|>UadXo zy46w*J>*LHXY}eY&1*WoBb$X~-oaIyli1P^o=)p8Hevlcv`4O3?$9UF6golOq@&Z0 zwK$Y#1Pk0gGw44#+DfHRGnjJ@>wHDjKF4}JkL$}RfuTP`TYTsHZXt3@j-f6EErn5{ zpB{Jq3OOW?=sX@tZB4n;0xQ_g$J-4qxJ>yXMsVuX2m}?YTtqg3)$Ym!|06I8RDzQ_ z!+Rr&>-=iCtPs3FF6a9yFQChnn8cFn`;67f!Ey@D@p4KQ?}u4+mMkt&0`Uu_-oYNG zZtVur2X(nFZbLZVwGT`YGIXU=o7tsUENfFxAz|apQPQfUB2_2JiPZYF;;imYxze5l zD{FSfv0^G})uKvf=?}DxK71=iCR!WT<@rt&38~!gQ^6|5{YM!pUaBrtpw%**lx6hN z4U`7uGFN6gHj+jXWw6IE(|M*ltyHRWLP5^MlNqf>%4t**{}0XF#5c{i!6gDzAlHfnD>dQQTp%5Q2qo<+Ty!cr03oV z$mCimcjv5`YS4mJmfor$_hu|H|3Ro#F>d{X`|+Wh4lxqE@seAIN}}vtPh(781z*la zxn|hiQ&0z=UY!b-eENPMHmuCuz-oY0@*{J)g7ij%(XDmHhi}k^Z`5CzX#Zky{r>_J z?O&|4Gjjrx1^`eNJLB&jTNY+!I=})y8$gU?{Oc8e=09Mf7}@@$`+%M09}*8t|6-+` zk(K?o@Caz7r2_;in3?`Y&tl{N$bp>yT>up1;i3PVAt-3%WNvFiuSBn+DDnG)!pzCZ z&XJ3r-qqEW&eYMs#MZ{j+{T2?$kv+P$k-9k5=H;j#D@Nht&y{}iH(z@iKDHvgOQ0N zoq?mB8zliB-#Ab9?onhIH>9KJ}U(XRp7^buvFvHdDviDb>bqPA04aZQnfOry`H1 zd@(NgwIgh8H-iMjK8zK^<*^=Z6DSqXZ8u++y2AF?*e`51IypZ`f|CTX!oRgO*^+qC zpD_{_OO9$q$o?q`dJq)~ zR}dzep!ffqz5LJt`y$nX=%#_lV86JuA7Xrf_8ZGwydu(vYlCwdOi z32_D`e>GT6%#;CtHG%G@fkbXm3wtvL`RjAyQvqkP9N3FzW|?Nprh!zJv}_ zPH=x-Do{Vz5>ExIc=MJupAc_K0_tuY92MlG?*-^B;IBx|U(m5S=N!StHM@8gg?630 z9FFPaN^uBn>%_$+gvQD4cz9w%l3|bvJ|)J$0-)g6xQ2Id>-4!yU`C*;DB<$I3~E|+ zvGm=(InM0mhHHAMhj*P8-t<>-bm<;Q?cLq%PvL)Ydzb2L$4oSIzn=qKjwCaJklNGF z==jBut3bmXSt68xK$^N9==k<2y~t##E9FnKZ#V;p3c8ESY6bIpBZ`yUVm?O~-`cQ6-qN&H0ulps5>otalC+X55#P_QL zSf-#WcHXDE)1N?;vnAs3*WYjw^%u9rbqgdISijf$Vz$B$!S6oRoWsBoy zjmcVAB&i_fJ2|LSmeeMbyqfe4OP~;Ou$m22^~H)_vy+L^oNQe->5{?hJ+wrMT{GF7 zKW0UJo16g6AOa5n5gp9<2GJuGhjPt_uBq-uUW)-4Ewk>2`@}92A=51 zsK75RLkWZMeTHA(7Tvhd;FS0W1nXEuvFpwl9SZ@wY+m<8Y0Tj;;d2^oB}$@8iWI{c z8pw|rd_H*whbp73pKT(}fjdZR!<9lk6d#zoS)4|3z>F3<>s*s&qU8dld_p=-F}*&* zJ%_ZFE(-Hea00!wydhz(MPvv&c|ibJ5AGNQwWO3bQfNbW6DW-xTL}2%&-Q3TzxAMv zg9eqCU%<%|8Q?I-uCI@aUUt|L!lJVii*)QyQ4XmxG3l{>P()9=r)y{W7N6hEemnbRgvsmO~=!N1m$+`y1l^A#r$9SH_y#tlm> zNAu;!A^k8#FnVll;D)A@F{u3}Zv!eHhg>^Zf|X;~fE?37mSh|}X*+fGopMZrm0I#g z&La37=P5+}$d{iOhKj^@&Qmxl4^%$L zeAc{WS=CPI>0sUje06;ajr_rToHti@y)Mu;Y881-lsFV1wrsknQHE;ZVYDSRu2cNJL z^T_m|`VBtRF)yjZ?6Gf!&_^;sR`iStzibq{iptwfLrJ5d3;9i`t_f0e1ZyaD*i2t>?C+Droux5|{Q^q-5?hdT$1#9p zzz1!14PDPD`%5(5lsro~7PNODt>4gu@)lWaTd(Ou^V`oPidW;W2h{R$E5E2mX%B%T zoC4uZECM<(4^gq&qIU^K2l=5-Eo8l&1ZW8bg_4_!h?Eb9_`=)T3i4&3ThIm*Wghr^ zHUb1yBs$N^qGOQxK@wRCf<`dnN3F{T!f*@yud^i~16G^gl ziqeBcn^`Ir=q#r#FOCXS?(%D@=nXI|P5Ziii$Xe0@tlaj7bC9EXKF6o!g@BfRvvy6>oL9(@(+sw?|W@ct)x0#{M z%*>2!W@cu)&D3UQW@dKVukM}I&fD3Y*^%~1t0#?rl&q3U6&0D4S&9?qJ7;Em4pPB_ z*a+Gw%2mtp{&H2LhIw5)I)>txAJ#B8C7!f1}wM)c@$5hr#9&igD7e2-d z8OZnP;drjo-t7N$A=ZO)t=o#-y`b|2r*ac8x0j{bu%7X=XeP1~Tt3)*8qHm^5j-Da z%%q8&HA?RfLo^80XHyW)5;LL=qGVzU12B0oT;EC+1&G58v)-fqkpVS|ec3aFW%pw& zE3NH7%=&SrJ1VIpSXhAub@rJ%pfu_tCyNp*El4S^SAAe5@4q+RXp4rvt#=gmc9bg- zm#xD*%Z9WmbwBM>--Er&Ai5+!T-t}dn@fvNNg+350%^##5OB}wRK5tC&VkAgCtL(Z z;aG5-oH6~NEE{J!L-f08M6m$|?DXqB|5dfOO>Gb%6j>(<#xbEp=4k*I4I*pa2nhe! z$wPeI6|WXP9esKv{_kSK+T zP<`D+mP|c16|7u4#KvJ!!o9`W*s9LngQW;pwXD5xU8dtiu&I0mvtr=sk=Fb6I!|&> z5!dCw$R4562ECGTObBhBW9rSU77Z=8Mm6cv@of~bf*e0aH_fr5!vX309a5hkaA7hW$~4fMW)Kh8EJLyF)ag zS96W{3hr&G9QJ)JHByiUJ$DUT^ejs0%~Ev2tuhz}7mv*xGV_*U@e2!{IOY?FaIK-_ zGHkj0RlchhjxR8y1t_|GS6+z8O7i_#`+7&?IQD?X-Tt8$ML}!h@5KT3rpcLL;SD_w zWAGrE!@c8p<{_ZZBJUt6tF^pbq>c&Cu=9$pl3dqn4-Ci21v4V4rqHs?yHzjLa>Co{ zPoGsTF<5-2M;il(6FuT15Y-4Yn=RnE1yD3BWL z-*y$xzdDp`l5)94%rOI3(cZ-4GG+U936{aWUDI91)za@Eysa0CL%ppB!5=DL&n#f+ zT0Bg5r5fFN3yy;4V@EMF7-q&FkV+#Og3TZuE@#waB3Vh8`b-;eiDuwQU6de*r;6ZP zph<=_Mu@!Yms_LVTo12P?@~AsSvHR8z`lb3zqNk-XpwF4j&{1@>aGBHWsfLUq@NJp z42#(OsfFqWU9{4Bn_ZjrLkR8HYP>O|OXG`3hLlyuNCgZ@tKs53gE+y~e2fPgdi~|M zX%&_q$agFOE}m%ncC(6?8|!^T_mWeVl0Jjz)7rn$xV75x+JitHUpvcJ=p5I+`$`YC z>ln&v9a`Jx`8hV`4GE@&+l~r1dRGoHBp(xUuG;6oowUXdS;F02vj=drLn|VH6MVIv zUT`zN(1MH`g%$e+k>SP@baXM%5K#To+G9SihRtSmU`xTEzRPxh3Gc%U2G<~yZZDa` z%MZzJJ}y^m6d{hUspdy0{q`XHtQTh5E$WY__jZ8Ge6_O!(r ziwL!;HhqC#5Ag>&G#Xu(2u?7v;5SwTtXIDbjlbNel*76&_C-+U^GX{Ml-(eT;@X?s zBOv5EvM&qeP zp<+6{L^x{67Ts(|ph_N(wpcjLMmL7x=|(jV#*!7?B4N&h zPKFdJT1!ukBfvj9^UVh0JB=+yva0F^K`2qNub|9+-F1iMp3i&T;O9h6FVnKOt7WCr z`&DLl3Usaz_f{0)55c&zHx5*G^Cy!WeD8;Yoj9xW*!o@I@YjrJDqu48p)2NkoRxq z%+aY2lSGfWGOdacg$;9RsGd=0c8DE8pkb;K@cU)py=?`~y9AV$grxiW}FyhA`eu)`LsiCC_ zkP>dm10*4mRuuL;b@YJsAf|I)OkYt&O8cSE(CHLOiE2h*M}c}68^#mc)$8{DpzH%~ z^Ip18qoLEHAv1O^d;`a2>8$!EB~OVvzylO#_JgYt@NBBh+}HMB>of)o6yoHAq0(?# z?aGKlr#wHtwPk13gUS~PbHz?*WDVngJddH_3t_-!zEQ58Og~zXp_}BB+F$h|OwxEn zWvf$g^xD7UDRT8!_~8q6Oa&Rp#H0Pl_3c@e37W9R7t*54A{_33xe$p(GxYLr`QBmH zq8fy}den@>gVmAkh^~M?b+Ta?{2R6Z@mE=;5i6TCR$F#ngP9Bj3tL7Vb_VZzw7$%G zkk3z)HtTEp+mDk0^x$fO)yU5^uHVJQukVk@AQZFc$g_ulR3M!|xETd|kCJZ>0CM9>XayzZ<P#T&HP+ZzO8f@Lc#T^6>;@i#__BnH3e+^4V%Z7<&_5 z862d(ANad|japMbEic8<>f$G;b~xzX-N(4@h?NgzYG=sGF1G_Q1SnVq2kZTbz4KrFE9Z4@4vXgvH-jb04D`26Cm*h zV5k5<%UA#iHD-XZ;O|ng{wWW^-$23uD&;@C&;Q};00g4{TN(dmsQ7dB;PSyan1iDbO5q)wyD>7Pa!8S15oXC=V@;gPue58EaO5Q%+ zzuwq<_b724>n^&m_4Ro>yh5>kMYuYpx83q8WdC?tV;}Z|Zy1Oz(3yt2;Sk8fAooG% z2SJ^|Ry~G8+}QVi_u9$&#&+qo!E)yLwy9IS6rI>5EyNF%OaZ#udvw;WEid0E>CDd? zp9q*@(%zNDp)lH}t*e(Zj9#M;P%-S>?iS7980j?+o`r zh;s&^2n)t^i%PbeMgEkP7hy>A&de?ie}cyC?h{uspm|SVe~!LiyC==wmo}4-On!+^ z9)Ta!LCT%(BE$p|?US!udjU5dw=J<$l3^~3qVF0^=f*IfgWeP{gJ+CO#q(v}NcMRJr5fOLQkvwyGymWIc$fx|bY4 zJl12b+CF{TJzc3@gukzrR-d-QSpeN zycF-V2|0>#Np81^gN&<+azweOC5$4H43TNcu2qSNPpk>jNi09LS=tK0eKb7rY&K6? zWPgGf=FszbUkA*6{!(w*EYtwxPJ6xfJu^3cpC%=g|H}3fZMmzQMB2;t9EaDO5fAKC z{5}o;y1ni%=}NvW51Tu+UwwcI|51@kK$oX9EwX0q|GGhxOSyd?i=`k~T+?^Czz~Gc zxa^TG*Xj7IhM%%n=)Xak2UO@hcK3w~R4@pGss)pG|oHLTA$$d9iGXondNYBWH z9F+pjn<56x#oPq^DuF#^atXdULsJ z;;xgz?xdwjTO0tg*Xfdm6)gnzfqu^CxZLIUjs|Z)PL)8hm&ivNnWG78zpnNL(e>op zdcVwTUhR%EADR$Js5W)qJ@;$N3v2c-)@-IIue7c{u~CMb#5_M4=~!+0t~rtLfEkY; zX*h*e<*tdSszV9Vz*$bO=lL@IQ;JzNs$8 z#q4!-$~KX+E)G#@R#dy_6!Ce2jpRc80z**UxqHjH1s(M=E*LyXBZ<&>u`mTSUQB6v3Pc-6&Q5WixRmpiuLJqMzmHKi+I@51 zXQ1ULW5i!?$Sq=xo4mHJtQa-ojRp!6A%s!5p^7%6s1JJev(!9<60kTh!!ane{ch<%$x1q@ zgnil#Zf`2)PVLdzM0;hy}UT(P--7(@(o|kp=)sB zO23}g!A@eGTpfU54S1c@X?5+fsAoFAMc+lL+E2Cl7rTtQppHr4T>g}9(T4bi5cFjp zG5EAoX@+W^;YOKLp#WaOKe9mS{*9#^YX-?}1do$4GcA}_X_Peos{xP14xiJ8LCLKFL`d)UqW%9#V?p^6yaQxDMcTJe_Yo;orpS0 zO+c$*W9c2=gc^UX8TNH19enw{;-_4^j8D=;mbgRK*(o*S@AgQMawc(y3T7A0lyTE7 zAj?EL-+=b%-t|}q$@bsy7!eClyVR&2gpY^;%yRCd?q}cU!!?b=QLWuB4uZB9>sFw9 zvsQtU26hfoZ}1F3W2osb!|POv<3w;Vjq#R+yC_ELdt3=jG=aPYF`YM@5tE)7L*<=; zFQ+%4EY_T^o0erBSZzYAw)1h16EN4vL1srs1p+X&V27#MD3x~O{l#70!EO>pXmImR zdwc@G6`vx8L5@$W_2tq6Sv9(A=~nF6LKkdTlDa55Ejt1lwY*@(F|+MoY^#e;JbHN} z;JC@gqfM8pU%f)p$&tl)dn~mI4^%r5rCiHB^nZ zIz6c-5z}!{M$?zyyo(QmAA93Y5GjDA;SBjF05%mCK0bB6jE z-(P$PC)WZ_SSd|F!cKR$c?=?uRW(&XQCF@nI8I{Q!krO+ZP(jcH+)v_(;&x)AA$>ccJ`#lHmkmN2!ZmSdGDwl zK04dQzVWx+`xYQ7-ZRu=aavUN1;Ut%KdIyQVZ3x3sp8XywO=(efb?0cDTsODKm0l{ z$Yl^UnXPY~Eh|e3&sia~W+pn{!pQ8XekMdb;;epar%O@Nmwqd55uHJe)v9Vs>fvw2 zF;T9xlhQBS3+&6gq9O6W#2d^1*hh{N(t2eeXZba#7;cjhLh6#N88(@kCyw-N>>Q*< zvAe%c;PuVmJqT_<0_DyXVXA-ESXRqKp5QIbaW+KcS zu&>3s0%e1C55u^c;rR6j4+rU zemQLH_9@^y!T^Te;z9Y&{wricQV@>XA#Prh0{(UmS`OLg1Cjg@Gb}Myzcb&D0WssO z9D%D!4Z{(*Gb%#HjPf(!VySk1Km1#LDinu;WfEq>241eEgUU%x;q3TCtjd0pW4n}# zVE-I3w)YVfQf@(s`y*_47PQ;asEiqvW5>u?M1p>mR%JP%dIt}xKDvhj!2RqeDtNXy z>URTPe#DG%bB5OHXQhBngyV4LP*a+_27Wg!<1me*LCSIT&w2X{%LX#5+MZ!5P(b^FeG_nQvauGjSjLDl=nW+wa_=h*d|b`M(WD=F4*~W`dNV zMtn{sk`V(|S?`Ek*1RXflEkpn>u?6`0N<{*i4}3IDRh>8A@D|#ykzOT ziyuEU{eIS2FZ~EfLeNsw$oix zLr()w-`UQOd8ERkR6UNcW>12GpWMAhfi39KYF=6}Oa3O(AGUy*ZvfFqvFuBVy`I-n z)q7u`ccG(ulh;wp@1$hwpRL3=6^`^e*cklXdklTF>H+sA_C@$LnTtQ!BA0vf%7Wxgsf$dL9}*B6XEGk*Fg|-Gp>M3 zk)6YYX6RD9rCBy%c57J4-_y`qvb#Z?5SZ0NB`&S5z8g<)H@I=-%g0xEJFfS#G;Y-u zIhXez$Un=T};kPy+&_5$mh7!w9q^m2~+6HVbHkNSYO5zc(^Tl#45}tSNz;gIX z#;7G-?daai)~bb&3OKBR`9&@>r=-sJV*;v;KRNTO*1x1m<;O_DpC@uN=R;m9wug#G z`HfgXQX@)wp?4z;h&s3s+e<qTH}J3i`m$Ldb&@}Us@&JYn06gz@T(1V*M=8(Q#LNKG4@$7Va zQ{q9>&W2t90dIb0mtlSMo9%*m3a6l%r&-ncT0@t?7!ySBkr!D%n0jS#V@|(^c0*Rs zU$Z5csOO1)Q`I^z6qZf7Z*6Z+Ccm_Id?yIfYBL&aE@%e$xF70a_s^k-=kHClesqd!?>Z&K+s)o5LdaR6 z0_KnYuGt-jhq5bgE;Kej9NpH_y9X^Xd7~1J-dmk15Cg;!F;AZasdsxPOn-Uz(L}|4 zXV_&IBkKVS-?rAYO6IH0mF?o3zsEcxX*CD=JE z4Q!G~o7zV8>ccU-pX@Tf!5rF}KlvY0BBtefRrk$b1}<>@Nc-6-H53R8;bNrDFBu`8 z`wE^CBV}4CR!XS}RF^8`>6GKR&9Df0-b7j)N8tmAIzXi}UdjVwJ0dpaKl1Ly+^Q!!y9nuQPBGKLdPl z8$}Apxu_?)<@sSwAg78s;1^;q9bc<_SPWT1d{{tVi+r3)*bDpMY+>>Ds0^sA8O&IP zQrnM*-tV@fi^fg@(u}isUh!Sa9lQjp%5e!4DyYRF=gXv+bC1zf4syw`lV>#!V&L=| zt73Q_5u+8(w~Y|Q&WA<B99$!@&i=dSgGBzpccN4aD{ul!vdqR?^a178fed^UIGD&!-GECmBZ!a2>}@4oY@G zmsR3txtO?m`EBZMelP+>FQvd%+rwRpZ3Tv!SXJL^-$tm!O)82mP$VtD_^siqpUtWa z-HFz?KJ)6aIlM?++2=-xF_`0J6(}8dGyJ{f(gw z5Hj@FG4+3;sWCIN)3E{+8^AmN5rhPo+5=P^1}1=}^iNL9nE+G%|5OG$>z_mK|7&Xh ze{;G1P8onU{CV5}sYrh^%KlQ*-!J12A>iM;0dO?_S7rQdH~t$L=`WBnX4XIT97aG6 z66+uFKYvJD|FbgwCJyP3mi>D=)Zf<*SXdeUtpBgtLDwHH!&W5UsiZ=NDE=wn|7htI1uOl9l7>1x;5;=CWzyR%JI zEY+-Jw5XrQHeeVa?)p+;&>AzoFO=!4`aJFu_!^EiVA$GB>S}i$McolbEl=#8gNL38 zLF7PT9fw(z1%Ul@_dE0HTs*H1@vP_eNNK$C;qkmV3zGFUW9QH5a)Weze_M%EmWWh= ztUFEo!(50gb4(bWgQRpF6@M)TMQ3=$r(Fj-+}EYaI&s?D<#MH7F*LSnffPh+$P|RO z?pys-anhEmf-vXEsVRR@I9{wRxBNiX>2qX@)+V9Q3QzuV6dxBAz~F*(TbiOhB)Cs{ zZ=oZ%Kw7iHk`0w)&9QLZN8p?V!DX+gjt@;n9k)4{c8Q%6rV__>@}3etO;E-GpX3tH z1$+pRIj)`SJOiF%j7spSZn?k^#xsi?Vo!c#u z%^(Hz*hXx!LX;pnQHCH2_SgU*We=tP!+$`^o+%9wEviY^KFmWD-$FY_i3RL!)hqX+ zb+q|SrH#+~0nSoQx0@v^_hIsv+xKC1Wr8+PRMS2uD2cDl)D|*aTw6B)%-l28xJ8Ah zz_QW7L_<+Xl6EbMhxE2vogXi0&Fz5|jKbs=HiYQ{;k7CU7|gF7#Pxo7C3fqeMts5Kc_ ze+dVs2fbhYSymC$(@W_<)?WrG(DY84n^qhkP;dwn5s&WMdSnxv+ivdoPaBH97Niyi$`DM2t6?8to^BCv=vDzVD20OgrIn=3 z3C{WBpBGlI^Kg4}=T4MjV=0ISLhrC@H{fJ}hd01_``#7cniJkOx`+inu_f}HV1xkIqDjr1Lnt|CO*$CrDRrk_9l);B)68;1#BJ4F$@6a5gmF#B#gyeTX zTmFR`;d&0gviEHvDP#OP!K5S4YylT>0SY9VMXUh+eU@;y!=mUL{OL8yKrOkpwvVMN zPad9RN+WaU>ZYAx7u*-&Be0_rlq;9FjFM+iT<&0OX1YGNI5vIw3;hrqCak_53`2P8 zlR*?inHK9MzMPo3if7j=9!OVKCljG|)R;6wg(^g=Kkg!jQHgXt_WP%8-Fy1uJppXEbjAXN|X$3L=1o)fhpb(}Z!;Gv+SvfM+c{L-49ES#V7e-N&c??1$ z`6=HFk09#=$QuF1<#{$GjVO6zL%X3J*4J2nWauC5i-zafRARU3HGaW^KmkTZNwsD*GrA>3+%6 zSpG;Q&=ce=M6wUS^4CdkWNE0^0r^(*v3ajCgT0M>kc-`DS4;nl76Am0a^S zpm)r4meT0%ZC;gAepZ?cZmFPIP}OZrP;x=9HsJl`OtW84pleO%+1s>FYP~JRE*6z_ zBPYGruwwo}8^M_QlN#<7(sVJlOZ)Jqr{`DrVWEqQ99OjO@%9((*cVh9AG%v{cDPkuIM*5X zCoI6s{xp^12#6wFr{s9DucSrw?ZjzgGV!8t?f<8JPsHG zS#E1XKC0`JI_)~1&9v2LBqf8Eg>ZOv|el)uarXnO^OIqg)dB3zW5 z5937bkVf**i69s}l#rj}M3=GfdWp}2Mu z@V|&yeKLt&L#IdUq}~g;(1)CNZ7Ofa&uSbKY|ZJPU$M|egq)Fs8c|Cpc3hi_!i<$o znu%a21B2F;fxACdDW-#+_{`?%IRIByL&?0OY)EvM1%f#qwLm0VV#o{Ao)mHo`^$1l zaj?xItR)=)iOK(xAy`hri;BtRa1rVlUGh*~8vm)^Tm7{U(^m!!W4Y;&d@xUz4xPPf z?Z`4`rrA^q?f6@_zFgL6zKW!G2*rb3H;UI?_%_2jy6;-CpX^uj21Q-x-xt()1!-=+g3QU8WF9xuHw1&jlU!hSXF?KCjrnoapSZEYQ+VEJR zSu;pc{c@#|JFiXn6_=@(VwLNk+YLG7UkY(4!Oq&<$)u{ z>i|*iX={SV${%USEAuBe^ABUdwYJ>4j2_i8F1gX1J>b9O+M=F33qMHjJx571CKeYO zBZuy0bM2Mqb(1(0k5G9|jSkRQM?6H-_dxGg5%g!*uebcX) zbe9KpVk4UME1_ui2D~%>gSSQ+&LH7=&^g4+RepXJo(^>kT4jY{dGi-lyA$H6(_NR< z$57OXV(2Cu_qBCv{`dn%OMvfo5wyrcXDbolgi*&+7GFzY1J-uzfT5=u_G*QKI7 zF2br`ZMd9av%f_x%LE(zHjWvONr&Wp*lJ&k3Wad?LvCa4B3EWjKIHPLe2WbyaLIT5V|l%v zY~g$81Vg6P6R4r(-dI;8Gqiorx&A?aE+ZIyu~zM9hhUydP^rcurB7fR7nPe;E-cZb zgFV*(v3vv;f=aiEm3-;)*p_$<13slM_wieeFE^BqbFeP;8!~mb_8tqcsvl0y!xhv~ zcqng;GtB7Qh*1fMB5KgvWoZsu*w3PSn%}Yf>5cw@ik}vska_-`tWs_V*3Zok%#rX5 z>574sV^$C1YV`?#QP+q&+I+;*K>JX+tlDI2bGgR76vs*7#k)tP`K)iqSBJ3JxCZp- z=^yddzx7m&IsEitl<@oy?jX#S>#+ofm6E&B_+U$SF|(o5_E?Nn)lUmeXP4P_!pf5paTq; zYRd;Tu+VryXmz39=*j$M(nQl-1F%U>4Y@a^;?#2(pnTL9vy0A z^09uy6GQTN2@*E;?2G&AIy7;AEuvtluZ0F>Y?(p*AfZmPtCWqU=S>r+y(Dc6O=Zh| z`pr6Waf|o1mcWz|rnB1cmGD<*l|9$IQ6D63uYjgTv~^{gWS;r{iMi3-)D#G#X0$`} zDwnUzdT3h51Wfu~dW+V+p|Z)QDd#l@;-*&fIXcqVFBTvIylYJ~ap|agT;l7pyxPk= zC!|yL7*qW4fF~(sjG1V!qq)m*bY@f`AhR`oKlB@93O+X+QbneRl^R&>x=k}a&ta~w z(WuRLngoV*%)wo2)(oqUggwPX=yum^1Eum(yZ9h##LZQ0pc;c8{>fP%P(8oo%n>wt zw_G!FyV#{?Ahj!~O4@iVa(|S`KjY9qakhULB-BwyK0$BDY1X3Kw*pogiuY$F!>2+0 z3j$}5I-|4Vn&tpVs}&KOE{K6fVVfDCZ87NQ%V!#yoX+l_LAF~&y25_Qyr7h&gJB9@ z>YB=7(EF~4PGF0KnL*#4UyX;nI37b?L&5GlSgUU;u((_T-GBSDLM1;4P%YCEV$&c* z9g&6S6>|{|qeLe|x-gt>so({jUpJXG^G*GVxbaiPAy8pEDC6X8xK5qjDdS{!^r9-E zo?aC_9!+AR((<0-7{QP~gQHrrK8@XPFyCD!IR`O9^xE#%YVxT>rNwV9N%TMD%zfa* zrU5_GcLKX>M5(_l^qZTrenlCBLC~;$nZ?I$fL<%(x=m7boP*P$#e$#Oo?(1wc8MV} z&&axfxuWl|v4|knRG(&qG@4yYkV|9|mv*M$W7RSE9a_dx3w%brrOcG0ILhbZZ97v+ErG^~5^sR|%7t z#y;NX40jbljzYylAe83ASz+8~+~VE5!_cro)f2&1%QxEtOSq~Ql=dMFWP~m%wXOk! zso^&nyde!u?9Xs+lRsX09tgEEFBOf>5(QUK!UiGxf-cG&7_QqUtyW*FrE`^pzC1|`43k+jhg{7oD;y0LS2x$Ww6Me$LeR^r|TU4hmfCc_iZsP^jH8Ac5| zhW^7M*MWBrGarog^C0b6y47Vq7MQCsoG(9`5B-=Qi=y3sN4#=<=PHY1GSZbzFmjM- zJzkT!{RHD~f%`i{N|yg-ZTEkFNcrd9>pvJ$vM@3I0qtjH0Bjbs5VEjx{;_w@3V8DG zPY3^FSUTGugId7oOxel7*~m%3zyZMIB4lU%n@x8>OijophTDndWV_tVv>Y5eGsUj{qtuQ7Ca67^&zHK~~E9kkb=T=cEGR zik-GeMm~@iFW}D`FEe}U?3RyUVfXH6?yh}OJa#ba`R!!F=`nULqeavH_4|i{+--ZN zoLo(g?f3Un--!3>)SRsF$T9le76440aDYEeg&39bJ;PXPJTjKxjL{&7j;%Sj2~g?xzpzF`^s zUhj6`^6z8A2*Uyuw9vceXz7TtpnuS|&})E28N>>f{kDniAI323Pt#f>Ep+5_-W{Ku zxvDe|=@bP^qo#?*w;x-7%7s!`GWcR=ANSrVAPl`Iocg!&g-)q^HBhQXj6WdW*oqNa z2QWMWGyW=?x7Y6!*vcO6H&;+G#6&>7Wy2-E_DA3y4Iq8U6OR(GKs9%9G0ljSPoo^^ ziyg_+~ zqP7a)-)H>*d$o2$M!03fQCu|^+&5v`b6^K5e8va>rA!dq&6?DUkACT&hKn#5g30Is zxzCeQ(q)KdB+)MhxuV|3)j$W=1@@ny$6ja77d40qNl1z95e6Nfj|y9~I?0KThyER9 zJg6u*&YnwBW>HCz2FA5seCWwoBUPVEu1|0O4Z{Fi#6|@eft4DGodmJe4@qe#7nlc> z*X_+YEr2?#6Bn&?kpru&o-lgrsPIQrsu+aBFcg-*6XF|$D@g2u)Xec@4grUO5dgIH z?7`?dX9p>c&|I{BSRGry%i+J#^%UF<2%`2V+x8X#u?7cUYlg2k2S-;ak?G~^WeoP0 zG%g&xEkPB^@L!(?CD|;S`;FjNym^;(t6a41;a(h<qrQ~GyxZm8M&pj80n0tdA>`N$ zyQJkxIqYept3vmC)cPR0iLmU^b6gslcbA85(}(kK^$q*xqkV%b!iu_9j&5OFs*kVG zUrLr_Z*CC% zu%Q#g7s$nzaA1K^o*fx3MDKS}=mcuHy`)U_@xLp3>)hi%5~dlduz0x0Xqo= zPR9R|>X7Ug(Q86}&(_u!LQy^4OlGzgf52J{f`@gFgz=apFL+^7NedvI;`+`!YN{@k zQ)oTjI&)_5{#hL^a)E=(MNEt;_bJ1))-PpW#?dyX!AqpyHBJZ^FY?t-h>M= z`V%sRI5>~Mej>LUgp$BgXRh1$-A$_jvurS0Xuu4Am=g$mM`$k|OW28Ypr0PLt#V_r z(EQuJsCOA6yE|{#Pn=R!V#;;Vk09i&5d_OR_D&XdE6D@T1(6VWfAlB9^TH2k6JonO=`q8dmr5T#cCO>5M?BaTzqxDIZ1T%5No z)Fqws&S4wOlHizPl^t7fZ8_9Nku9R!rs%Y7W$9AlY3IqZ%{J~mZd?QDI{~@Yk2xJu z@}Y>)3mnZA!iq+nnFrCB9Ld;6LRKXsI@3gO`Ne>-^H42r4&w0UIpmaOjctsYS{=l; z1Xg=$qx$Fdc^xJYe~a+lBM2dB%%L#l5nK{w@V*?fwpBZ^;NB_M+(0x6nvnkAvRGNeM<@ z^ARVNUeM0b&dwr*4LB#9y0AvlHl>Y+m3Y=!oQ{@|6wzLo83Zxtr4Sij+p95iU|dA| zAQHd!EF}C^;)jpN-jY@0on`v`MEh!0f&@Sb1Yf9pJGAD#i}H>iO6xDPS#JrJP0*@& z#QG9b56|H&8h|Coj)v#twyG=xPr7)}YYlk-AGLJ_^~*i?rN99{_n{V-0Kg6!z6TY9 zgsQ!G77K+(6GhAs{E-9Gn0YbOk0}-uttN^WdYW)rNk1l1;hGOrE={P2pM17#lHPh^ z#3rl2u`a;A-+FkKNBL^J;dPrz97Ah8nT)ib5u+R*RU zGk&a=n{|%xY{~vJe7Pp`Z``L_O@uh3PdvUlU~KU7lb6KRU?_JRAy+EC;$$GMWoB65 zN|$O=cma*Kr7ZJw59h@-kPqh&?e4~K6RfP$a+HGUmO~c*|N;k}tzwmM5n<7%_?I>)k5ej87`P;a=(3b%@mZVPmNB zi^v|2jWL1mcc!(M)&Xi-xWO9JniTaEN5+zb7>x0cA5bASCp2b~qNz?fh)2jA)QR=| zy6kmu39jc4@ZtFGDu|AuU6*;W{BwK2uM5;CUQtXc38^akYt^aFyRl;dwD!?V;%T-x zI%VYtmjZ_E#DOnvv_H@U05Q&rVd>SWw9H%0apqly0p~g?U%U*DUuW)6(4(3TZJ{Mv zU_o=Wmxm+o(Y`9ERd6Iwk0=r7G0G0|1w*);8pB4EE9=7GUi#N<<28Na%Y3Z*A|Q%l zhy*+G)>pa0nw&traim--#(y)r=bC8NK!HGxDrK0Kq&-B)*z#&%yJe^K*o!j2xsQJ= z-U~_$Vu|zcMQ%qu#n-C3f?5yJh_3zYtlB3ro+l@zZ2MjHY;8V=T2vJ`fQ_dV^O#@W z&#@w``V9*X-$kokF5#6rfsG4p);eL)#c0m|=g(h-y!Q{ezcvKcMx#ZMY!f#J$Hh7x z^2vD`n|n{7L%5)r39QGc5u-k;-2&xZOX5wn#0#1!c7-8R*}cvlN-U?V!sH{ z4RJK8Yn7~n@(YR@uX(d4SJ7rW{y34=n8~{(a#{Cy52nD+t@2@bOh-hx20uZ$y%-tjgArJ(rYjH@mbO{Tj)^@UFfEzJLo--6;5xxP zG%*WIyHvu+e>RF?gQn)&BV z=@)8+Xs0s6?qmkk)+SQ;o$@({H47?8Sw;K#HL>qGkfmkGG*@Hsm`#_koboi2^i~v( zQePXPtAZOAo`o0JUP-N79pcq1zPh`LW~J;!v_&h4qjH@M@gF7CLq2?qPlUJtUP9tj z+qUU|!u5SfBW_p`)uz8agm?{p-|CTIP{;aiaFWr~BN z-tK=@d*PfWMYfWqXdbFKSvw-^vY+8d9vcyKS<9EcyOy;m9@<%USmRp17#hmwbJjl$ zwdpuud;+c&mtql1oZ+eXK>ZQDtwW83W5HafQLbc{3mUAy*r&$C~g zs`s-nV}aw5EGCJ6cF)NX>g0&#|=An9d-Cb5r9|O8T&Nmyrpcy}o1Z@07$n z8^#lue_$0t9>2~I@cmvk)sajes_O8Ulc~DjCt|O`>a;6JL2EX)CP~r^u4350+C_`& zY8z3(+f4xBZnm2z*D`-OCAphf>VLR^Xxrg!kQ~eE`)F)lp{bgI&x)ziCOYj(<_)L)k+4aK1pDnObUV}m$GSh*Leh9~lGZSrw zv0f<&_t|UF$cKr?paj<|%d(W-PAdSJ^yhM|8_@9mu6$6=Sz!%g*ea;=c3rkD(K1b^ z!12sPlu#q27@H4nCg>zunxpNT!-~5?rJ&{$%=aWn6y^sfPf6(GMo27oQIpv52JnlY zxCmRTnr6{DojAqA?iME1Iin+9>C_Pqv}tT{EII@5{42_fi6;7o^Sc`9x3P7E zNP1t0c+2xM9t`7V8&_eIMLNi~ zG=SW$%oH2j`yAYv^tSQZN@(N&JEb*v%Z0c*yB^T`<=%;7V~RyLX>U9oW=cNH1*uI5 zog%HVVHkgroD$R7uMDH06y}bMYSRUqgf|YFdZ_GLD|V#SR>|GfL|7FpY4-xxfj(nu?`$vkr{zB37cOkAhjnnSW!r!U8;mf4N6mr*J zRX5Zsk_rm~3AvTO|PI&h+t<81$xYn<9xW@F+bgpLu6vPdFU+JpSB6}Gj z+2%hvcBy)P(x}oxSlc-P5l2&G16S~>@JVT$)qRrw?7VeX!U7cfUbv}Z_Z>f zxCy`LQc%36y*?@ZH1_%OdT}EzntqRPNgX4GrRU&}Dm~n|)mDcflfxYVmnC@x+{c^1 zV<^_cL0)wP!E+77K^f0`H456u10=@|-sM#8GI2Bc``}X%QxSek3G=;nBmM#w%#n*} zwkx}2h5rzX$~^K5)%AU_*^eFArb^yM@8KwSDuQuj9+Pi9q`ENCH*#hz?7WKIwoLA0 zTLWLhXsjg}DX(y$5gPQlsX|KXRc*+b0b5KQD_%st&ml=cDU%9Y7~Sx?>5)EAP-i*` zo}PXQM6$gZG=hr)pNT9-5~}hySJGLlpjw^mdLZu~6!5#}koJs;%e*^7dEd#jO6DnF zBfBgbM6PLY?kqF5&85V-CWpYGZeHeK)0=5-T)2h@^(K2@!Y-}|DzYtZcE-(bM9C-5 zk{x+Y$8Zju*|fcD-Rg}DOmpw|Y;;WC3;Zw&hB(t#m(EsF*_P{VGDezf*b9VP#Y~cN z$qvA+++$tEE5aqtB2GHpN7vl45*96EDMz;A9mYRGMVseuv!}{P?ck%x&xBteb)p%l z5&8y(p~PZwQ}P>T;KR?OK7qEQ+2a41X8QN3`hVaP{J%gm{rlF}|1K^6Z^qVtGq(Pl zvGw1Kt^a0h{r`ip1u*&l=dSG^{J{P(y#rQ$EPy})V0Xs^;O6{k4Pxb>V`l^G@r0BC zWG;0g0FsAZjEIH)|2tNS^)E0X0J!U4j===LS^;>Q|6>ehKxsO|p9SQ9bquz@z=T-- zT`U2>G~xtQxN|c60go}Wu>NUMXJ+`XR=BhMg(U=NiT{_U@h2Ygr#t>X#$aJ%pkreH z-!aBtXjg!@_^-!c0_=e~|Hc~o8|MlT8DS%0VgOtz{}t93JKJBfBCP*rZ_doh@Q1(l z2YCh%Vz0|BvJhBLIQM1~`-dpwa!u zO#h|B_={5j5Xbq?EA(FkXBgT4HvWG)1vJ5P6J|^N3O}3q11O4vICiixCfJNhjv^ta&7+!jcu8Qfi?vm_}tmldHC#Xby?0y zN_el=hx-nT+tJDvBRx60?-g5ec3m}*^V82hts@zZtsI@YTWn9WTL7m(>D1J6`#9{w z>y08-@RQyUIIJezCqP=U%z5u#dJYEaQ-`tDSmuxRh3@;Y4W2NyL@gmo1z0@2ESf zh#wL6i(U7JtY%3uobPA0PL_>jwp8g~DrX7E+;AgSvFJ3V7u9Z&$NnNU>D zfrwdw*lrO3Xe*-n9hJcINc}@{zYekV2G$#z!aBh27Gf*F=T6>`K8G7sN=!4iGU?pD zT^xvP-3|;iepk>?XKI=w=DCy5BP542L{=YkRe=+mUSnv0Sf2vqjLw;}Rt8)R9QdfD zqfD3ueF*D|<`MECL*QsK0i_QH&l0azt+?$e$izM#lqeitr-vhc<-_wNvp_#L2CKf9?N+n}KoNk_^MDBrT z_nt?90NV5-Cz9d_j0 z8Js@E*?3+#w$S)^T%{@iqfp)XJB6ad$Ej^AxV zwiwn3KbN*Jax0kGLia4aE}q=JCn8jc&MKaXf1cb_>bpVYN%{oISvewP+BdfWd zCc1gXayj+8gr4wLJw$Q*W>Zygn#zh$XcT}r!E++W!#^?&jTLg&TdMj^TAW#Kzcu!p`PDm1_M`{ms}k-&^-g35 z@vx9yg5cBTGFSvlG1BxGE@-6*DI`y(lJIf-TChpU=O-&t@PXR7!1;;N#>x_cz6sR@ zHO5oJfV~BboM;BMD6o)3c)C(w1~=jJwdONv1$(b- z;~B`!QE+uyo$VB&75i!Id0$`#%g4ECb=6z&n@L`^JAdk1*}MN7!k-f*WbXKgU1+rR z5awga9hfO|jUXDc7RJ_3XsDxQ!W1+;)N2y#!q<;~7VOBFBr!AH5vv<9&7Dr~1p&`* zY3eO?Ql)i_zE7_gzz2QJJbj}7{NULS>p^xC4Y=8p#4V8BA>ev+F4KvJgSN#TEM3$b zBa*WoVSN=Va;nc_7RyLJJVJKctUp^5^wQFQ%2fAIe!%9@OslV6dV)5VyOjAxU0Kc_ zEy5Eny57%RAp>CvH2F5B^+1rm5`CU+vdJt27p#8qiFK?pK$5ia0Y-Sx0vc5=vH)a< z=T&n)z%V~XjkHoL$v{0I*l|JdA}V;=^H@heilmlCD58Ivr#G?7Ipu9ok?vso<#cSe zFadnCdGI=N17-fFxv)hz#3~bb`+bh1H$uPhHKn9s!ec?rXdYdQ-6)dVwq!8l%W+ho zj<$tq@5&gTT0^Y4P55Fjqxv%pM2xlkJ46<#m>mb9>POX4=qbB3>-5@SnRd2`*hgOP zR*yJ1Rxkf{$uq`proh!f5SsGoFsND6#vN}@y@g_sRzd^JT%1wW}7xM{B;J?&dkS6CaO zVdi%l$y6HQF_(&lVZs>2>$Nm#C%HHm40{mnl@Eb`svtge(&AY>!lOOT2p5Jl`6;3; zAd_OdP5~1pB$p1as7N=HCT3IE%S9nO%!0_vm=AmI6OxqA@>WV`8TOuq^58pUBaD}C z4Y>ffPhcXQC~y(!eCHF=I!p%1&0^MhnqYS<(|Mj8VCog9ZU{DK0ju=c=ve*sUSkioE+vAz;xVvJZpY!C!?#__`LA*FvuvN~{ts|cNH zh4jX3kbN%e0F9k~{OFGF^DB|j92FYALmGP2(i%xpv_`Q6YDTmNHN*;8-Ce9HuE4#GzOXL6N{- zLKRSP^ye7SZo(B49_A(iu7p~e{<<(#bX-D8kIfjRXc>>K!i@7^nkNQ#2G+#9rC1G= z^3lP4W82w0jJUscJ&`=RDCHYRjIOa>h_t_Op#=0cg3I^gPne+v3K zueg&wOzhn8!7?~5n+MPx)gX*2WfN<1$#BNJ4tm(+DeobDYpPp14Qq1gaz7>xRVYS;UdWdFleimdT8`uiH!^-l-38f2W2ZeOX5i? zD`$uBiNdNoAoX4rWuBdyr=PoA`bA{6DI;nw>Z78i8_PDxtpHZkbEyC46DD2TueqH# z0lbcLkzDsH=!inNX^ty~sV0Fdv^TPX*FAg{dhM_vVP%#MUuy@iI0f@35#&adD^Iw$ zruG4p4x1m#Eczm2L?8{hOx*U`LO&`Ai4>_ZV#aUX0*94tX6!NvCSoHn8A&bZ2uA}) z+lJiBH|a!LHuq6LWLw9LeQ7dQ)XIP)0sNymo-l5HBq>klAkAoYx&T9Kh&rHFTF_97 zcnRE@;$YCO`~h~>g>OXtr(Qz3rE9g>WQ1iNqB~{%0n8@OK2y?6RaW0?9hi&?&JmqW zpdZ1pPsf;G*hBT2fqd+7UmeGt{bmo$cpAj+O_}E>%Eswz0*>0h9xszFV2a{jY9SN5 zuzrxhR1#?hq?6mew&(Xs`7ZplMn=D1Dl=B75#Tpb zs$a~hJhA(`tR`#7+$K?tM$ZNxvap|1CCYBvHhQjjsmz5|b{z`=?I5zY4Khlu%6{j2 z%-cc%s!fRRgsO64p!vdi;l*m~j_m11UtE`xf#Yudf&vMo1+H-GiDu~r1{rxNDi|`x zHjXynd$Gmo1Rw2(Hg4{C0@be6R{`$d#+i$jyd{Od)pOi2OB^hsEB9*^aXY63UABDq z7(qr|=Tuv05ILU*Mv-#d6=rA8QAuSkqUU0E(Iy4BR9l6U*k{cU+2IA+JT#f{4w8@0 zhsb*qW*Yh?9McLcxp*=>P`$;~Ja+gwo7=5=j(lqTZp78CGmmuq2wh(6+JYm&+h8uF zVSM10PoAM9)@l1UEH^c_1%pdm7Td~7(=>AeXdo5c9+FIU1r3zsWY){a3Kp$s?ZfXlqcP&(h`%eo!z5XcLex0M)jh8 znd&%ymIm39*;lKU*JpGW zxHl)p$DI9`t&zR0InAEQ6`At`*-qr_wFCoKZfnNq7Y79wGx@KCgdWskziwN757XKM z`S=>ABCon~?SR|BHiBn2+)TV(L$vOfo5Xj;!#FSs1fW-$&IX3tAe9Miq?&QzG9`&x zdX8Y=GrS782vjE4%;ffva(dc_GjEa1!rE*goRLR@O4S>5WNW_;lN>|2E-;azQU|Iy zbEVN9gStwb^cSgCUs(DLIJa>&UIQ&P)S3l&N`?2+qaACPPVdutrN_`-5_Lh%UKOykTW&vOcG@&#+Wbz&%yVcT*$H%7bfnKRJ#3WjvhXtP~d3HWik z%HpwFa|ZdL8r%Gp*u0Z@CJb*aD9SlGL6Io7gpKmfMLQzTbPZ`8i<8&UV0vN7nJKbE ze$X5hLwQWzss&xQT#VZk*&#w)hc-!oV3N2hGUitV`lJO6Dv7iK@CzbB#VM?!^};+S zZv~#0GSfVrvUy$yeKK9I2h`8{ZGaC|s3ce0r)1@ymUE z@e*za)m$7z%`$Sl4v##yXSmC-a%jvG)=%=jA&Vco&?-5e2G}%qxr5}=0ZS(f}&U~0UliW zu5qtI}fq&ruHVg)?lxjzz`?II1=gY0j^z~DrZFz;^TzHNz7oSDCArno>Zrt9@ z?L*G+UfA00laqta*T`Zmx>)*4I^4JUoN+^~MgC9P%^Y8(PtR8h7}7UAx|DDckk8^) z6qo0R$*oT^47;rk!fqd@wNf6HqH(JLj)er?amYzCKu&ov6jger-_6u$*K-2r-z5;nzLSOK;J3QK%Hy<+-> zW`5MRgjhjR!?r}+0H@^}2w@h{digAZNHnUjIw~$Sp5zgB6U|oQmV^sB##;NU+~CZdanKyUdYBp1hI8{-VkR%*&$K9l zdzYz|VaW^R35iLh0qWJ^?g#%?uRh~$rjo0}rhRU%r?+`;%RV)jy&oDNArg_aF%d{EY2i zx6TU~Ovc_P<4FGUtBj>?+1or&^L4nMst}~zvkfiFe)nm&StHk&kUujg^7zSaa91mO zY;d;bDhMFwpdS|w2N!SSBu&(T8)YRVW_NL}CKZF80;DAgV-(vS>QZr~;-emTHQ zcez7@UF5to>h#W9h+T_IMm$i*L#m|yczqq+0;79A;r9iN^9V%b@5|5Giz56{s8~Ct zxal-eeV_(O_mdt+8YSX9%xaL8oaQ1ZmF^vZ?)aTxJ+-Eb6iRw__8H>Ie^0B23o`(F zL*;rJj2UbB>g1TaOAUgtbF*@rK3}7!TiKnO599iHOI7;rWELJp8S@GHC6L@(Ii@Bh z;8y|qmb(f;-qi`a108xKq9U=|M4?4guivgtgd9bZqwXTO)>Lu+y?yV9i8!*&7j`yE z3xqmvV_ndZQeJ_2Sa4ErBHL6EkgozOI1F0!D$H&PL|6QEbgc8jWodzhmg@OYb_-~1 zxlc0A%gM~XDS4ybwV>w9*8)|ct^N$2DxrbmQ<;is$&I7D&1m;4aMjbArJX4EGiJ=m zeB!M%7#yvjHn#d)bF+mAg^dHNkq%;HU;tm)HKfA%PJq^+D`>)rN=?4yqVoezjr2ld zfXd`P42_38IahmIIfZJ3;M9JAa(8&kZ~xn~B^n^j_gkROW~)nf-BjNq;S=@pgwvJT znn5%QVCfx~fO$qL>=fD(hUFk0|3rAiU({*1;iWxGH>ql)o-s>B#@KGft5n#*D1bM` zC@% z?Nr(Fh+89FaToA}iCSV%oV}-~JMww8qsP^>@h$240C-@cnbD|WO z3D}`Nd(Rc68nW)$3npJo)FAU}3W?79i*WrLadYA*fe?WRY{}HEMKtOmvLles%|vKi zjqq6Wkod?FdWQ>>1eV8e7H7cjjJv&W$Z4$)c# zcr~V_sLF0kNMc?K*)o9owE2~W2xg3C@arPRz4@Fqgc$0;f^o=Wo?D)TWd z;$*c%J7dr(@xEY49xr2%xWvbgUQiKHPAS+LLH@22f0oXhaq@2Di_c? zNCcP_piRN&^iU$HM<5$f1aOBv6JX-rB_KC`Qcw_G{zN|Pk-{qKMuBMO?^4dCoj)>z zq)}voc?I;Bz_GNMND*DT2NuB->Z&O~9^e4@f?OoH81_MP^UNLM0pK*&Z5LZ zVaF~{Aq~cHjfX^`uYT$db4NlGE*n>5BL+P?60Rz zwuImji8z4zv{|jzDm!N%TT)JNU4R(dZJUA~l1|k0?sIf-hw|PN-+R+I`lON<-Rs0R z3VljgPphC+&7;A7BTOvU?ZV&Ky-dN0EL?&J-DZI3v$q=Cel z*B<$VmCs*c-yoRWpAOigL%*^aB)&j=+tjc2mNea%tC#5EV`@$%Z-bj0Rr!H6uKMm; zen-@=VDgJ2s?Pbw8)?=kwKQ+6lz{m8YYU_~PeV1{hNtFwZtS{##ffVguxg75UuhqS zR*IP`tCY!)S1&MfVLLm|#IE6}P{f&;n#rTV5)CBh#Dso~07RN<4>{o-@}W863^b*J5c^?Ez@d|K z*7p%|DfEp}%Oo^v{Au-pD_a=PD(SB3CC&jIedQliS2{q{;9=>H-(X8TuXAiI7SzoQ z9vUI65wo=qI?oF_AQjp84kkDH;PcyUa~Ub)iTTeV@(aJe>F8jf@vLIiTG@ONbWtyz zEY10O@yRY(a}oWcnYwfKipr&7W+>OZ{#z&M!xhTMwf|s+c4fS<(xAkbejw$mF=G1w zRgBiM2RCh7D6te_O&PvbEDWrcUswuYOOtysS&Yr`vk1#$XUpqJT;F9l*?QEO$lC1(4Dy8OSQ}u@;s8K}#joU)n24_IY zl$$hF+!vJ$vIHzvnDCTpdrmuugl(zfhwg>ZTgwCZf}2DtYf5%XeYe{G(q=*l_c0_NbD6} zo%RU{X)F57?ui*0nq(O`H>-Jv^x{0pG`Dw*;P}q-6Y^`@k=+m4*I~ zHxzH{MS&V@0`P&yxgcwzvV8Z8hV@ib4oti_b`#elFR_ow?TIxEuOm7|fFY!&r;EjrdwP6RV^Al%mOm8eSVtkBw4c1Pg^>oYT%Ho+v ztCpsl+tS41P|J%vkuq(cF5foS-fcfDcDVSaj}rQwe-rQI2+u@kMozf&9#J>gPtewnqyqgzyh7jKHM1*p#OJ*%G1Lx0KpYY4g?) zydLw`fUabns)W00d?>+%is(r)_v8ss5gX)3=dm$1Aq(8RmEEhP#+;|5U2gIfH1+iw z?wmSE&ytNiUNYBt##NI^j)1yFG=kRQ-?0#N)@fF9iS&{}7a<4HY{YNlF>V{y?8Ap6 zy=s%u)3$;tsZu#mEscZ0b-|Uh37tc~NHVazN?d=Y)>jGnip!qvMgmvLXBxZ)%-6We zVr+qSe(g)ZQKbQ(A`irHZExt=Dokb5QBkS)P?MT?NknZc2;=8b>-5Z5TBXCWoO4|F z3&Y|e(W4(*rGLhQeyPMg7WtwgBYZGkwHCfwia>e=zMtdyiwBIJPh;m-hD73K%it;> z%j9x7T3##y{{c(`{?#(wQYG6D<0)L=loj?a$EJLUF)BJsH=(!*MT^#UP3`NCF56VH zC@%W+Nz|!vB%)t}eymTH0~EuFw){j#hlHn4@Rz{iDbJ(GI3LlW*)!ZP4@PiflcT~NqN*mg9Bl}?PFvZ%KU@Mb4T zQ=F^O4Vz;APofdEN}6nU2Ux4Vpl-2Uu}=|oZ6y-n4O7Q3ymafP+@^J~F0Q(ot~a-) zb@6K1)9=Y#9mckPTE0>XX zUR6+LN^zW2WEeFJGVolR;!f0RkCsBu)CJ5`1eUiz2GpiCVU~yuv*5r7Dif)KOz8^N zbqm5{o>x(F1+`aj95!D+MJuYRLNZ4kexEJPu3&1v5Nk&XVxk|eWz@@2IPYIx7N32~ z+%s<8(0r&48Ld2y9oKhkHH~P7$~WDpmtZWtu=wUIPcx=F`0KK%N_B1hgjJ7zIcdSD z2t(yOyNDMvlRGv3Ju`LDRnG=?=_qq)1#^UBQo=Q?CtSCG+KOVw(iLp*SZr{FX&=v z(Mq@Fb)DEUa@49j!r>Ik>%D+E!y%aVO*vtTb3FM$ePLZd-qTRG>^cNf`f#(i+o-dN zYM8W=fNTP+3u53`j!XAdi!0NER7;834Bb~mt*sqxu%-{qp`9}*J^t6g?60^nXNGe~ zyloaug`=Gs?LDf>N+ujDyvK`ynKG5kmUg<^PGU$8;+v8Non(yt9D~sJ98$*C+OuWF zgmiem&Q$N|{*X{>NI$)1&JyoRE69o$K;QW%X zOB-C|oWQMy zfAu0DY9t&i@60uB3RH25w%#)q!%UVhO_R$kc+}eX{&ldnYs+V zpy_Ef?@Y^RHNoR(Yy@wn+vJDQIh7vkgj=_vmCmJVnfx)d-_aI_2ZF1}Rk|Jb;RWXq zPQPbjM)kf<)ENx6YDK8CIQ#~l_SSaAf~BerzPCYE4OW)_4Sa5#D#147thrn-+de`< zHZkasa}xMMCqAXR8ndx_t&2^_SXsM2E56SQ&B5mxdT-$LN`7V8(i4AkvhT0o2`Wi; zCjP1txJ^fSZ&yi!w+_ok3e0PZXssRExwiTA15~}w-DzOAtKpvkiav_5mW|DX*aoH zclOB~GQPJI;+C%RIz{o-8ubwBWh*p>eXeQ*HH@HyM4WJ97ao5ij`e&-#8Ed zFOV$%jVX~4K&4>^cryWokAR*>PG&krKs78QBOTj6t$Sqro89t%lA{4wnSZ2M{-p<% z?cbOZ|8&y=#$f#8&158E;Q;Ww0TxAec7Pr3pBdno{=D#i60Dj3G0*$2a{!><{}Ubk z4>V@xKh`?{V&`w3#6MM_j6|G&T66zt6(|$qA5Y!?JPl?>fJFRP{g#vIFZNxwzc(fR z3;h<*(aXmN5A%0EJp2{MHL+VA)t4|2vStz}<{&2;Ky*_L&t}l7rpSe0mq&o?OMag) z1QF*d|7z;{(8Xo1U;;Ce3_@o43>j2@+)2Ba*b$~^%JjU&pzqtwTYmZ62}wrX*0del zqhID0&xY9%;at0SmfEwakMFy^_D+#rz4Lc;{`UdhPLIj1%xw4Suut-D3~?dXIOKuo zD<`9Nenw~WN$Tt+lt=tdL#=1e=cc}%eLH+{z39XnBW4M3>sVcyy*_p|q^|0H%q#dl zk!SLD^76hp3`dBrfUeCXY4_c3Ir&)NuZbh@K{hjBfXd6jh!NR7Gk=iWS)K~{oaHmlT&+6gC)%C zkGV~1M`Thbc!{@Z5~7oKU2_m)MY>ivoh_*2z5Y393eC|>dy@E{*{Hp^UNZ#)F@~u3 zJtVmt_C+qP6zyY_Z#}Zn_8;THW{4_SZGy%iF4s60{Shs=j;MHBB$-I?`%ltngS^tt z7nu%rjt(c8�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 z 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

    ?&}n0kZ>T!5{3aVUbS`Kj6B)j)0*!JAsH?jZXe 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