function WorkshopManual({ onNavigate }) { const [doc, setDoc] = React.useState('sop-lathe'); const index = [ { grp: 'Standard Operating Procedures', items: [ { id: 'sop-lathe', t: 'Centre Lathe Operation', tag: 'SOP' }, { id: 'sop-drill', t: 'Pillar Drilling Machine', tag: 'SOP' }, { id: 'sop-weld', t: 'MIG Welding Setup', tag: 'SOP' }, ]}, { grp: 'Safety Instructions', items: [ { id: 'saf-ppe', t: 'PPE Requirements', tag: 'SAFETY' }, { id: 'saf-elec', t: 'Electrical Safety', tag: 'SAFETY' }, ]}, { grp: 'Maintenance', items: [ { id: 'mnt-lathe', t: 'Lathe Lubrication Schedule', tag: 'CHECKLIST' }, { id: 'mnt-tool', t: 'Cutting Tool Care', tag: 'GUIDE' }, ]}, { grp: 'Troubleshooting', items: [ { id: 'tsg-finish', t: 'Poor Surface Finish', tag: 'FAULT' }, { id: 'tsg-chatter', t: 'Tool Chatter & Vibration', tag: 'FAULT' }, ]}, ]; const steps = [ { t: 'Pre-start inspection', d: 'Check machine for damage, confirm guards are fitted, verify emergency stop is accessible.' }, { t: 'Workpiece mounting', d: 'Mount workpiece securely in the chuck. Ensure concentricity and remove the chuck key immediately.' }, { t: 'Tool selection & setting', d: 'Select correct tool for the operation. Set tool height to centre line using the tailstock centre as reference.' }, { t: 'Speed & feed selection', d: 'Set spindle speed (N = 1000V / πD) and feed rate based on material and operation. Refer to the cutting chart.' }, { t: 'Machining operation', d: 'Engage the guard, start the spindle, and apply cut gradually. Use coolant where specified.' }, { t: 'Completion & shutdown', d: 'Stop spindle, retract tool, remove workpiece, clean the machine, and isolate power.' }, ]; return (
This standard operating procedure describes the safe and correct method for operating a centre lathe for turning operations, aligned to NCVT Fitter practical exercises.
{/* Objective & tools card */}