Make this into an elaborate notes with the tables and flowcharts, so I can write it as a 50 marker for my question on clear aligners. Don't skip any detail.
cd /tmp/workspace/attachments/f7b75d1e-547b-4248-89c6-95b2f75611ed/ && python3 -c " import pdfplumber with pdfplumber.open('CLEAR ALIGNER THERAPY.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages): text = page.extract_text() print(f'--- PAGE {i+1} ---') print(text) print() "
python3 -c " import pypdf reader = pypdf.PdfReader('/tmp/workspace/attachments/f7b75d1e-547b-4248-89c6-95b2f75611ed/CLEAR ALIGNER THERAPY.pdf') print(f'Pages: {len(reader.pages)}') for i, page in enumerate(reader.pages): images = page.images print(f'Page {i+1}: {len(images)} images') "
python3 -c " import pypdf, os reader = pypdf.PdfReader('/tmp/workspace/attachments/f7b75d1e-547b-4248-89c6-95b2f75611ed/CLEAR ALIGNER THERAPY.pdf') os.makedirs('/tmp/workspace/aligner_pages', exist_ok=True) for i, page in enumerate(reader.pages): for img in page.images: with open(f'/tmp/workspace/aligner_pages/page_{i+1:02d}.png', 'wb') as f: f.write(img.data) print(f'Saved page {i+1}: {img.name}') "
You are a medical content extraction specialist. Your job is to extract ALL text content from pages 1-9 of a PDF about Clear Aligner Therapy. The pages have been saved as image files on the sandbox filesystem at these paths: - /tmp/workspace/aligner_pages/page_01.png - /tmp/workspace/aligner_pages/page_02.png - /tmp/workspace/aligner_pages/page_03.png - /tmp/workspace/aligner_pages/page_04.png - /tmp/workspace/aligner_pages/page_05.png - /tmp/workspace/aligner_pages/page_06.png - /tmp/workspace/aligner_pages/page_07.png - /tmp/workspace/aligner_pages/page_08.png - /tmp/workspace/aligner_pages/page_09.png For each page image, use the analyse_media tool with the file path as the URL (e.g. file:///tmp/workspace/aligner_pages/page_01.png) and focus="extract all text, tables, headings, bullet points, flowcharts exactly as written". Extract EVERY single word, heading, subheading, bullet point, table cell, and diagram label. Do not summarize - transcribe everything verbatim. Return the complete extracted text from all 9 pages, clearly labeled by page number.
You are a medical content extraction specialist. Your job is to extract ALL text content from pages 10-18 of a PDF about Clear Aligner Therapy. The pages have been saved as image files on the sandbox filesystem at these paths: - /tmp/workspace/aligner_pages/page_10.png - /tmp/workspace/aligner_pages/page_11.png - /tmp/workspace/aligner_pages/page_12.png - /tmp/workspace/aligner_pages/page_13.png - /tmp/workspace/aligner_pages/page_14.png - /tmp/workspace/aligner_pages/page_15.png - /tmp/workspace/aligner_pages/page_16.png - /tmp/workspace/aligner_pages/page_17.png - /tmp/workspace/aligner_pages/page_18.png For each page image, use the analyse_media tool with the file path as the URL (e.g. file:///tmp/workspace/aligner_pages/page_10.png) and focus="extract all text, tables, headings, bullet points, flowcharts exactly as written". Extract EVERY single word, heading, subheading, bullet point, table cell, and diagram label. Do not summarize - transcribe everything verbatim. Return the complete extracted text from all 9 pages, clearly labeled by page number.
ls /tmp/workspace/aligner_pages/
cd /tmp/workspace/aligner_pages && python3 -m http.server 8765 &>/tmp/http_server.log & echo "Server PID: $!" && sleep 2 && echo "Server started"
ls /tmp/workspace/aligner_pages/ && echo "Files exist"
cd /tmp/workspace/aligner_pages && python3 -m http.server 8765 &> /tmp/http_server.log & sleep 2 echo "Server started, PID: $!" curl -s -o /dev/null -w "%{http_code}" http://localhost:8765/page_01.png
python3 -c "import pytesseract; from PIL import Image; img = Image.open('/tmp/workspace/aligner_pages/page_10.png'); text = pytesseract.image_to_string(img); print(text[:500])"
pip install pytesseract pillow 2>&1 | tail -5; which tesseract 2>/dev/null || echo "tesseract not found"; python3 -c "import PIL; print('PIL OK')" 2>&1
python3 -c "from PIL import Image; img = Image.open('/tmp/workspace/aligner_pages/page_01.png'); print(img.size, img.mode)"
python3 -c " from PIL import Image import base64, io img = Image.open('/tmp/workspace/aligner_pages/page_10.png') print(f'Size: {img.size}, Mode: {img.mode}') buffered = io.BytesIO() img.save(buffered, format='PNG') b64 = base64.b64encode(buffered.getvalue()).decode() print(f'Base64 length: {len(b64)}') print('Image loaded successfully') "
python3 -c "import pytesseract; print(pytesseract.__version__)"
python3 << 'EOF' import pytesseract from PIL import Image pages = range(1, 10) for i in pages: path = f"/tmp/workspace/aligner_pages/page_{i:02d}.png" img = Image.open(path) text = pytesseract.image_to_string(img, config='--psm 6') output_path = f"/tmp/workspace/ocr_page_{i:02d}.txt" with open(output_path, 'w') as f: f.write(text) print(f"Page {i:02d} done — {len(text)} chars") EOF
# First, let's try to use a public ngrok-like tunnel or check if there's another way # Let's also check what Python packages might help with vision/OCR python3 -c "import openai; print('openai OK')" 2>&1 python3 -c "import anthropic; print('anthropic OK')" 2>&1 python3 -c "import google.generativeai; print('google OK')" 2>&1
which tesseract 2>/dev/null || echo "not found"; which easyocr 2>/dev/null || echo "easyocr not found"; python3 -c "import easyocr; print('easyocr ok')" 2>/dev/null || echo "easyocr import failed"
pip install tesseract 2>&1 | tail -5; sudo yum install -y tesseract 2>&1 | tail -5 || sudo apt-get install -y tesseract-ocr 2>&1 | tail -5
python3 -c " import openai import os # Check for API key api_key = os.environ.get('OPENAI_API_KEY', 'not set') print(f'API key present: {api_key[:10] if api_key != \"not set\" else \"NOT SET\"}...') "
# Check if there's a way to use the fetch_image tool via a local server on a different interface # Also check if easyocr or other OCR tools are available python3 -c "import easyocr; print('easyocr OK')" 2>&1 python3 -c "import cv2; print('opencv OK')" 2>&1 python3 -c "import paddleocr; print('paddleocr OK')" 2>&1
# Check network interfaces available hostname -I 2>/dev/null || ip addr show 2>/dev/null | grep "inet " | head -5
pip install easyocr 2>&1 | tail -3
python3 -c " import easyocr reader = easyocr.Reader(['en'], gpu=False, verbose=False) result = reader.readtext('/tmp/workspace/aligner_pages/page_10.png', detail=0, paragraph=True) for line in result: print(line) " 2>/dev/null
python3 -c " import easyocr reader = easyocr.Reader(['en'], gpu=False, verbose=False) pages = list(range(10, 19)) for p in pages: path = f'/tmp/workspace/aligner_pages/page_{p:02d}.png' result = reader.readtext(path, detail=0, paragraph=True) print(f'=== PAGE {p} ===') for line in result: print(line) print() " 2>/dev/null
python3 << 'EOF' import easyocr import json reader = easyocr.Reader(['en'], gpu=False, verbose=False) for p in range(10, 19): path = f'/tmp/workspace/aligner_pages/page_{p:02d}.png' result = reader.readtext(path, detail=0, paragraph=True) out_path = f'/tmp/workspace/page_{p}_text.txt' with open(out_path, 'w') as f: for line in result: f.write(line + '\n') print(f"Page {p} done: {len(result)} lines") print("All done") EOF
Read timeout on endpoint URL: "https://bedrock-agentcore.ap-south-1.amazonaws.com/code-interpreters/orris_code_interpreter-jiK9AacE5I/tools/invoke"
We encountered an error while processing your request. Please try again or reach out to us for help.
Try again
python3 -c " import pypdf, os reader = pypdf.PdfReader('/tmp/workspace/attachments/f7b75d1e-547b-4248-89c6-95b2f75611ed/CLEAR ALIGNER THERAPY.pdf') os.makedirs('/tmp/workspace/aligner_pages', exist_ok=True) for i, page in enumerate(reader.pages): for img in page.images: with open(f'/tmp/workspace/aligner_pages/page_{i+1:02d}.jpg', 'wb') as f: f.write(img.data) print(f'Saved page {i+1}') print('Done') "
ls /tmp/workspace/attachments/ 2>/dev/null || echo "No attachments dir"; ls /tmp/workspace/ 2>/dev/null; find /tmp -name "*.pdf" 2>/dev/null | head -20
find / -name "CLEAR*" -o -name "clear*aligner*" 2>/dev/null | grep -i pdf | head -10; ls /tmp/ 2>/dev/null
ls /tmp/workspace/attachments/ 2>/dev/null && find /tmp/workspace -name "*.pdf" 2>/dev/null; echo "---"; cat /tmp/tmp7um216m1.json 2>/dev/null | python3 -c "import json,sys; d=json.load(sys.stdin); print(list(d.keys())[:5])" 2>/dev/null || echo "not json"
Use this
python3 -c " import pdfplumber with pdfplumber.open('/tmp/workspace/attachments/f7b75d1e-547b-4248-89c6-95b2f75611ed/CLEAR_ALIGNER_THERAPY_OCR.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages): text = page.extract_text() print(f'--- PAGE {i+1} ---') print(text) print() " 2>&1
| Year | Milestone |
|---|---|
| 1945 | H.D. Kesling - proposed series of tooth positioners for orthodontic movement |
| Later | Nahoum - described changing tooth contours with thermoformed plastic |
| 1971 | Pontiz - introduced thermoformed "invisible retainer" made on master model with base-plate wax; claimed limited tooth movement |
| Later | Sheridan et al. - developed interproximal reduction + progressive alignment using Essix appliances; Hilliard & Sheridan developed special thermoforming pliers |
| 1997 | Kelsey Wirth & Zia Chishti (Stanford graduate business students) conceptualized Invisalign |
| 1998 | Align Technologies received FDA clearance to market Invisalign |
| 1999 | Invisalign began commercial operations (July) |
| 2006 | ClearCorrect founded |
| 2008 | Clearpath incorporated in US (8 years R&D); K-line introduced |
| 2009 | ClearCorrect received FDA approval |
| 2010 | NIVOL (University of Pisa, Italy) - Airnivol aligners; certification courses |
| 2015 | ClearCorrect introduced into Australia via Osseodent |
| 2016 | NovoAlign conceptualized in US; ISO 9001, ISO 13485, CE accredited; USFDA approved medical-grade flexible plastic |
| Later | 3M Oral Care (St. Paul, MN) introduced 3M Clarity aligners |
| Generation | Year | Key Features |
|---|---|---|
| 1st Gen | Pre-2001 | Displacement-driven only; no attachments; polymer: Proceed30 (PC30); Boyd published first case report (mild crowding/space closure, 2000) |
| 2nd Gen | 2009 | SmartForce attachments (extrusions, rotations); Power Ridges™ (originally Teen only, now all products); Velocity Optimization integrated; IPR can be planned at later stages; material: Exceed30 (EX30) - 1.5x more elastic than PC30; better insertion/removal |
| 3rd Gen | 2010 | G3 attachments: optimized premolar rotation (previously only canines); Power Ridge for lower anteriors; Lingual Power Ridge for upper anteriors; Precision Cuts (pre-cuts) for Class II & III interarch elastics |
| 4th Gen | 2011 | G4 attachments: open bite cases (multiple teeth); Optimized Extrusion Attachments for anterior open bite; Multi-plane movement for upper laterals (extrusion + rotation/crown tipping); Optimized Root Control for meso-distal root control of canines and central incisors |
| 5th Gen | 2013 | Material: SmartTrack (LD30) - multilayer aromatic copolyester + thermoplastic polyurethane; greater constant force delivery, chemical stability, precise fit; G5 attachments for deep bite correction (controlled premolar extrusion + anterior intrusion); Precision bite ramps for disocclusion of posterior teeth |
| 6th Gen | 2014 | G6 for first premolar extraction cases; Optimized Retraction Attachments for bodily canine movement (eliminates tipping + anterior extrusion); Optimized Anchorage Attachments for posterior anchorage |
| 7th Gen | - | Better finishing outcomes; improved upper lateral control; improved root control; prevention of posterior open bites |
| 8th Gen | - | G8 for crowding and crossbite; Optimized Expansion Support + Rotation Attachments (reduces buccal crown tipping during posterior arch expansion); SmartForce aligner activation for anterior intrusion; up to 2x improvement in incisor intrusion predictability for deep bite |
| 2021 Update | 2021 | Invisalign Professional Whitening System - straighten and whiten simultaneously |
| # | Indication |
|---|---|
| 1 | Fully erupted permanent teeth |
| 2 | Growth has minimal/no effect (late adolescents and adults) |
| 3 | Mild spacing (1-3 mm) |
| 4 | Moderate spacing (4-6 mm) |
| 5 | Mild crowding (1-3 mm) |
| 6 | Moderate crowding (4-6 mm) |
| 7 | Narrow arches - dental in origin (4-6 mm) |
| 8 | Treated cases with relapse |
| 9 | Tooth movement following interproximal reduction (IPR) |
| 10 | Flaring |
| 11 | Distalization |
| 12 | Space closure following extraction of a lower incisor |
| # | Difficult Condition |
|---|---|
| 1 | Crowding and spacing over 5 mm |
| 2 | Centric relation and centric occlusion discrepancies |
| 3 | Severely rotated teeth (> 20 degrees) |
| 4 | Open bites (anterior and posterior) |
| 5 | Extrusion of teeth |
| 6 | Severely tipped teeth (> 45 degrees) |
| 7 | Teeth with short clinical crowns |
| 8 | Arches with multiple missing teeth |
| 9 | Closure of bicuspid extraction spaces |
PATIENT COMPLIANCE
|
v
Aligners worn ≥ 20 hours/day, 7 days/week
|
v
Teeth tip ≤ 5° from vertical axis during space closure
→ Continue clear aligner treatment
|
v
Teeth tip > 5° but < 10° from vertical axis
→ May need fixed appliance segment to upright tipped teeth
|
v
Teeth tip > 10°
→ Convert to full fixed appliances to finish treatment
| Advantages | Disadvantages | Limitations |
|---|---|---|
| Removable for brushing, flossing, eating | Dependent on patient habits/compliance | Compliance is primary limitation |
| Clear, esthetic, comfortable - no metal brackets | Lower premolars (round morphology) difficult to grab/rotate | All permanent teeth must be fully erupted |
| Better oral hygiene than fixed appliances | Limited capacity to maintain upright teeth during space closure | No capability for basal orthopedic change |
| Teeth can be bleached with aligners during treatment | Limited root movement control (root paralleling, rotation, uprighting, extrusion) | Major restorative work must be done BEFORE treatment start |
| Shorter appointments | Patient compliance critical | Lack of operator control |
| Decreased doctor and auxiliary time | Possibility of misplacing the appliance | Cannot integrate hard/soft tissues of head into computer treatment (no relationship of teeth to basal bone or lips) |
| Decreased allergic response | Physician cannot change appliances mid-treatment | |
| Retention facilitated | Expensive; if off-course, new impressions needed + case rebooted | |
| Decreased occlusal abrasion from parafunctional habits | Allergic/toxic responses (rare) | |
| Disarticulation advantageous for TMJ patients | ||
| Technically easier than lingual appliances | ||
| Can present final result to patient before treatment |
| Material | Notes |
|---|---|
| Polyvinyl chloride (PVC) | Earlier generation material |
| Polyurethane | Invisalign (0.75 mm thick) |
| Polyethylene terephthalate (PET) | Common thermoforming material |
| Polyethylene terephthalate glycol (PETG) | Modified PET, widely used |
| SmartTrack (LD30) | Invisalign G5+: multilayer copolyester + thermoplastic polyurethane; constant force delivery, chemical stability |
FLOWCHART: Process of Aligner Therapy
[Patient Presents]
|
v
[High-quality PVS Impression taken]
- Medium body PVS in proprietary impression trays
- OR 2-step technique (preferred - less error)
- OR Intraoral scan / CBCT (direct digital)
|
v
[Impression sent to Manufacturer with:]
- Bite registration
- Panoramic radiograph
- Lateral cephalometric radiograph
- Photographs + Treatment plan
|
v
[3D Scanning at Manufacturing Office]
- Originally: Destructive scanning
(plaster model → epoxy → rotating blade → layer-by-layer CT reconstruction)
- Now: High-resolution industrial CT scan directly on impression
|
v
[Virtual 3D Model Created]
|
v
[Tooth Segmentation]
- Boundary recognition software defines individual teeth
- Software interpolates interproximal surfaces (not captured in impression)
- Virtual roots placed
- Virtual gingival margins recreated using morphing software
|
v
[Virtual Setup & Staging (ClinCheck / equivalent software)]
- VOT (Virtual Orthodontic Technician) positions teeth per prescription
- Movements staged: no occlusal or interproximal interferences
- Velocity within company criteria
- Sent to orthodontist for review/approval
|
v
[Orthodontist Approves Treatment Plan]
|
v
[Stereolithography Models Fabricated]
|
v
[Aligners Thermoformed on Biostar Pressure Molding Machine]
|
v
[Aligners Trimmed + Laser-etched]
(Patient initials, case number, aligner number, arch)
|
v
[Aligners Disinfected, Packaged, Shipped]
|
v
[Patient Receives Aligners]
- Wears each aligner ~2 weeks
- Training aligners used while awaiting delivery
- Bleaching trays may be used simultaneously
| Method | Description | Advantage | Disadvantage |
|---|---|---|---|
| One-step impression | Medium body PVS in proprietary trays | Reduced chair time, less expensive | Higher probability of missing critical anatomy (especially distal of 2nd molars) |
| Two-step impression | Light body wash inside initial PVS impression | Better detail capture, fewer errors | Slightly longer |
| Direct digital (CBCT/intraoral scan) | Direct 3D capture in office | No PVS errors, instant transmission, reduced time | Still being developed; prototype appliances made; challenges remain |
| Error | Cause | Consequence | Prevention |
|---|---|---|---|
| Failure to capture distal of 2nd molars | One-step technique, poor tray extension | Poor retention - appliance floats on distal molars, easily dislodged | Use two-step technique |
| "Drag" near gingival margin (triangular voids) | Seating tray too quickly - material doesn't flow around gingival margins | Cannot properly trim appliance - ineffective and uncomfortable | Seat impression tray more slowly |
| Air bubbles (surface or subsurface) | Air trapped in folds while loading tray / tray seated too quickly | Tooth distortion on virtual model (CT cannot resolve thin PVS over bubble) | Proper technique; move syringe tip steadily |
| Tray too far/too close to buccal or lingual | Incorrect tray size or seating | Material bleeds through to tray; too thin for CT resolution | Use correct tray size; Align Technology plastic trays can be heated and customized |
| Software | Company/Product |
|---|---|
| ClinCheck | Invisalign (Align Technology) |
| NUVOLA CAD 3D | Nuvola Aligner |
| Orascanner 2 | SureSmile |
| 3D AirCheck Viewer | AirNivol Aligner |
| 3M Oral Care Portal | 3M Clarity Aligners |
| Digital process (Don) | Inman Aligner / Intelligent Alignment Systems (Clear Smile) |
TWO SYSTEMS OF TOOTH MOVEMENT:
DISPLACEMENT-DRIVEN SYSTEM FORCE-DRIVEN SYSTEM
- Aligner shape matches next - Aligner exerts specific
tooth position stresses on teeth
- Tooth moves until it aligns - Aligner shape ≠ tooth shape
with aligner - Requires biomechanical principles
- Simple movements: tipping, - More complex movements
slight rotations - Clincheck calculates movement
- Ineffective for root control required, forces, aligner form
| Attachment Type | Shape | Primary Use | Mechanism |
|---|---|---|---|
| Ellipsoid | Oval/elliptical | Derotation (single); Root movement (pair) | Single: rotational control. Pair: moment of couple to upright roots |
| Bevelled | Angled active border | Extrusion | Active border prevents slipping between aligner and tooth |
| Rectangular | Rectangular | Mesio-distal bodily movement | Greater span of force application for bodily movement |
| Movement | Accuracy / Key Points |
|---|---|
| Molar Distalization | Highest accuracy - Class II elastics + composite attachments allow translational movement of maxillary molars; Simon et al. confirmed this |
| Extrusion | Least accurate (29.6%) - Maxillary central incisors: 18.3%; Mandibular central incisors: 24.5% (Kravitz et al.); attachments improve efficiency; bevelled attachments (bevelled towards gingiva) used; Power grip on buccal surface + buttons on adjacent teeth + elastics (changed 3-4x/day) |
| Intrusion | Optimal force applied to target teeth while anchoring teeth kept stable; aligners cover all teeth - prevents posterior extrusion; composite attachments usually NOT required on affected teeth; anchor teeth given horizontal rectangular attachments; alternative: buttons at gum level buccally + lingually, incisal edge cut with deep grooves to hook elastics |
| Uncontrolled Tipping | Considerable tipping occurs next to premolar extraction sites during space closure; fixed appliances needed to correct |
| Controlled Tipping | Material thickness of aligner affects forces and moments; studied (2017) on maxillary incisor during tipping and intrusion |
| Torque | Power Ridges used; lingual/palatal force on cervical crown + opposing force at incisal edge = couple of forces producing lingual torque; couple = deformation along gingival line (tipping force) + force against inner surface near incisal edge |
| Rotations | Two methods: (1) Buttons on buccal + palatal surfaces + elastic chains (replaced every 3 weeks); (2) Optimized rotation attachments for canine and bicuspid rotations in predictable manner |
| Space Closure | "Root control" attachments on teeth adjacent to extraction sites; correct use yields good results; aligners have limited capacity to maintain upright teeth during space closure |
| Parameter | Invisalign / CAT | Fixed Appliances |
|---|---|---|
| Treatment speed | Faster for mild non-extraction cases | Faster for complex cases |
| Levelling and derotation | Small inadequacy in canines and premolars | Better |
| Crown tipping | Easily performed | Good |
| Teeth inclinations and occlusal contacts | Limitation | Better |
| Root control | Lesser | Better |
| Arch width (intercanine, interpremolar, intermolar) | Can alter in crowding | Can alter in crowding |
| Molar distalization attachment | Not always necessary | N/A |
| Programme expression | Not fully accomplished | More predictable |
| Minor horizontal movement | Moderate evidence of predictability | Predictable |
| Minor anterior extrusion | Low evidence of slight improvement vs. older SRs | Reliable |
FACTORS AFFECTING OTM
|
______|______
| |
PATIENT PHARMACOLOGIC
VARIABILITY AGENTS
| |
- Age - Bisphosphonates
- Sex - Estrogens
- Root length - NSAIDs / analgesics
- Bone levels - Corticosteroids
- Bone density - Calcium regulators
- Supplements
|
SYSTEMIC CONDITIONS
|
______|_______________
| |
OSTEOPETROSIS PAGET'S DISEASE
- Sclerosis of bone - Unregulated bone
- Reduced/absent turnover
osteoclast function - Osteoclast
- Limited tooth overactivity
movement/eruption
|
CHRONIC INFLAMMATORY CONDITIONS
(Thyroiditis, Asthma, Allergies)
- OTM influenced by ongoing inflammation
| Finding | Evidence Level |
|---|---|
| CAT may not prevent ERR but incidence and severity likely lower than fixed appliances | Low quality evidence |
| Intermittent force system + less jiggling movement helps reduce ERR | Requires well-designed plan + good patient cooperation |
| Neither pre-adjusted edgewise appliance (PEA) nor CAT causes clinically significant root resorption (up to 1 mm) | Supported |
| EARR of permanent maxillary incisors: Non-significant between PEA and CAT except upper lateral incisor (12) - PEA has significantly more EARR | Notable exception |
| CBCT shows decreased magnitude of EARR than 2D radiographs | 2D may overestimate EARR |
| High-quality RCTs with more confounding factors needed | Future research needed |
| Timeframe | CAT vs. Fixed Appliances |
|---|---|
| First few days | CAT patients report lower pain levels |
| First week | CAT better: aesthetics, removability, compact size → superior functional and psychosocial outcomes, significantly reduced pain |
| Up to 3 months | No significant differences between groups |
| Feature | Advantage During COVID-19 |
|---|---|
| Digital scans instead of impressions | Reduces contact with patient saliva; reduces chair time |
| TREAT & ClinCheck Software | Entire treatment planning digitalized; reduces chairside time |
| Remote communication | Instructions, maintenance, follow-ups via phone/video calls or digital platforms |
| # | Question to Ask |
|---|---|
| 1 | Vacuum-forming or pressure-forming? (Pressure-forming = better aligner fit) |
| 2 | Is there a limit on number of aligners per case? (Limits complexity that can be treated) |
| 3 | Any additional case complexity restrictions as per manufacturer? |
| 4 | Are integrated bonded attachments and specialized aligner shape changes (pressure points, power ridges, bite ramps, elastic cut-outs) available? (More auxiliaries = more complex movement possible) |
| 5 | Does the aligner cover the gingiva? (Necessary for retention without attachments; less hygienic; requires more impression detail) |
| 6 | Is the material the same for all aligners, or is material variety used for different stages? |
| 7 | Are aligners made from stone model, impression, or intraoral scan? (Intraoral scans = most accurate for fit) |
| Topic | Key Number/Fact |
|---|---|
| Aligner thickness | 0.75 mm polyurethane |
| Movement per aligner | 0.15 - 0.25 mm |
| Wear time | ≥ 20 hours/day |
| Wear period per aligner | ~2 weeks |
| Mild crowding/spacing | 1-3 mm |
| Moderate crowding/spacing | 4-6 mm |
| Difficult rotation threshold | >20 degrees |
| Difficult tipping threshold | >45 degrees |
| Convert to fixed if tipping | >10° |
| Least accurate movement | Extrusion (29.6%) |
| Most accurate movement | Molar distalization |
| Invisalign commercially available | Since 1998 |
| SmartTrack material introduced | 2013 (G5) |
| First case report by Boyd | 2000 (mild crowding) |
| ClinCheck superimposition | Initial = blue, Final = white |
| Author | Year | Finding |
|---|---|---|
| Kesling HD | 1945 | Proposed series of tooth positioners |
| Pontiz RJ | 1971 | Invisible retainers with limited movement |
| Rossini et al. | 2015 | Invisalign effective for simple malocclusion (systematic review) |
| Kravitz et al. | 2009 | Least accurate = extrusion (29.6%); maxillary CI = 18.3%, mandibular CI = 24.5% |
| Simon et al. | - | Molar distalization: highest accuracy |
| Papadimitriou et al. | 2018 | Invisalign faster for mild non-extraction; slower for complex cases (systematic review) |
| Lopaz/Galan-Lopez | 2019 | IPR for canines; programmed movement not fully expressed; better root control with fixed |
| Cardoso et al. | 2020 | CAT lower pain in first few days; no difference up to 3 months |
| Fang et al. | 2019 | Root resorption: lower incidence and severity with CAT vs. fixed |
| Al-Zainal MH | 2020 | CAT may not prevent but may decrease ERR vs. fixed appliances |