Patent 12274325

Derivative works

Defensive disclosure: derivative variations of each claim designed to render future incremental improvements obvious or non-novel.

Active provider: Google · gemini-2.5-flash

Derivative works

Defensive disclosure: derivative variations of each claim designed to render future incremental improvements obvious or non-novel.

✓ Generated

Defensive Disclosure for US12274325: Rapid-Entry Footwear Innovations

This document outlines derivative variations of the inventions described in US patent 12274325, aimed at establishing prior art for potential future incremental improvements by competitors. These disclosures cover a range of material and component substitutions, operational parameter expansions, cross-domain applications, integrations with emerging technologies, and inverse/failure modes.


Derivative Variations for Claim 1 (Apparatus)

Claim 1 describes a rapid-entry shoe comprising a sole, an upper, a rigid stabilizer provided at a rear portion of the sole with a convex base portion, an elevated portion acting as a shoehorn, and a foam liner coupled to the stabilizer for heel retention.

1. Material & Component Substitution

Derivative 1.1: Carbon Fiber Composite Stabilizer with PTFE-Coated Elevated Portion

Enabling Description: The rigid stabilizer, including its base and elevated portions, is fabricated from a multi-directional carbon fiber reinforced polymer (CFRP) composite. This composite material, utilizing a thermoset epoxy resin matrix, provides exceptional rigidity, impact resistance, and lightweight properties. The elevated portion, configured to act as a shoehorn, is further surface-treated with a Polytetrafluoroethylene (PTFE) coating (e.g., by immersion or spray application and subsequent curing) to significantly reduce the coefficient of friction, thereby facilitating frictionless foot entry. The base portion's convex structure maintains its geometric form through the layered composite construction.

classDiagram
    class RapidEntryShoe {
        +Sole
        +Upper
        +CarbonFiberStabilizer
        +PTFECoatedElevatedPortion
        +FoamLiner
    }
    class CarbonFiberStabilizer {
        <<rigid material>>
        +BasePortion
        +ElevatedPortion
        +isConvex()
    }
    class PTFECoatedElevatedPortion {
        <<shoehorn>>
        +frictionCoefficient: float
    }
    class FoamLiner {
        +heelRetention: boolean
    }
    RapidEntryShoe *-- CarbonFiberStabilizer
    CarbonFiberStabilizer -- PTFECoatedElevatedPortion
    CarbonFiberStabilizer *-- FoamLiner
Derivative 1.2: Viscoelastic Gel Liner with Integrated Micro-Ventilation

Enabling Description: The foam liner, coupled to the stabilizer for heel retention, is substituted with a viscoelastic gel pad (e.g., silicone or polyurethane gel with a Shore A hardness of 10-20). This gel liner features an array of micro-perforations (diameter 0.5-1.0 mm, spaced 2-3 mm apart) that extend through its thickness. These perforations facilitate active air circulation and moisture wicking between the heel and the stabilizer, preventing heat and sweat buildup. The gel's viscoelastic properties allow for dynamic, shape-conforming heel retention during donning and wear, while the convex surface geometry is maintained by the underlying stabilizer.

flowchart TD
    A[Start Foot Insertion] --> B{Foot Contacts Gel Liner?};
    B -- Yes --> C[Gel Deforms Viscoelastically];
    C --> D[Micro-Ventilations Activate];
    D --> E{Air/Moisture Exchange};
    E --> F[Heel Conforms to Liner];
    F --> G[Heel Retention Enhanced];
    G --> H[End Donning];
    B -- No --> A;
Derivative 1.3: Shape-Memory Alloy Actuated Stabilizer with Dynamic Shoehorn

Enabling Description: The rigid stabilizer's elevated portion incorporates Shape Memory Alloy (SMA) (e.g., Nickel-Titanium alloy) wires or strips embedded within a flexible polymer matrix. Upon detecting foot insertion (e.g., via a pressure sensor in the footbed), a low-voltage electrical current is applied to the SMA elements. This triggers a phase transformation, causing the SMA to dynamically flex the elevated portion further rearward and upward, exaggerating the shoehorn effect for maximal foot entry. After full insertion (sensor cessation or timed delay), the current is removed, and the SMA reverts to its original rigid, heel-retaining shape. The base portion remains rigidly fixed to the sole.

stateDiagram
    state "Shoe at Rest (Closed)" as Rest
    state "Foot Insertion Detected" as InsertDetect
    state "SMA Actuation (Open)" as SMAActuate
    state "Foot Fully Inserted (Closed)" as FullInsert

    Rest --> InsertDetect : Foot Pressure
    InsertDetect --> SMAActuate : Apply Current to SMA
    SMAActuate --> FullInsert : Foot In, Remove Current
    FullInsert --> Rest : Ready for Wear
    InsertDetect --> Rest : No Insertion / Withdrawal

2. Operational Parameter Expansion

Derivative 1.4: Industrial-Grade Rapid-Entry Safety Boot for Extreme Pressures and Contaminants

Enabling Description: A rapid-entry safety boot is designed for industrial environments requiring protection against extreme downward pressure (up to 5000 N, e.g., falling objects) and corrosive chemical contaminants. The stabilizer is constructed from hardened steel plate (AISI 4140, 5mm thickness) encapsulated within a chemically resistant, high-durometer polyurethane (Shore D 80). The base portion is structurally integrated into the midsole's steel shank. The elevated portion acts as a hardened shoehorn. The heel retention liner is an injection-molded, chemical-resistant elastomeric blend (e.g., EPDM/Viton®) with a ribbed internal surface for grip, providing both heel retention and cushioning against impact forces. The entire assembly is hermetically sealed to prevent ingress of contaminants.

classDiagram
    class IndustrialSafetyBoot {
        +HardenedSteelStabilizer
        +PolyurethaneEncapsulation
        +EPDMLiner
        +SealedConstruction
        +SteelShank
    }
    class HardenedSteelStabilizer {
        <<rigid material>>
        +BasePlate
        +ElevatedPlate
        +Material: "AISI 4140"
        +Thickness: "5mm"
    }
    class EPDMLiner {
        +Material: "EPDM/Viton®"
        +RibbedSurface
        +ChemicalResistant
    }
    IndustrialSafetyBoot *-- HardenedSteelStabilizer
    HardenedSteelStabilizer -- EPDMLiner
Derivative 1.5: Micro-Scale Rapid-Entry Actuator for Prosthetic Liners

Enabling Description: A micro-scale rapid-entry system is integrated into a prosthetic limb socket liner (e.g., for transfemoral prostheses). The "stabilizer" here is a rigid, miniature framework (e.g., 3D printed titanium alloy with lattice structure, features less than 1mm) strategically placed at the posterior-inferior aspect of the liner. Its "base portion" is fused to the liner's structural shell, and its "elevated portion" acts as a micro-shoehorn to guide the residual limb into the socket. The "foam liner" is a high-density, open-cell silicone material (Shore A 00-50 durometer), micro-textured for directional friction, coupled to the stabilizer's internal surface, ensuring minimal friction during entry and maximum retention post-donning. A user-actuated pneumatic or micro-hydraulic bladder system temporarily inflates to slightly expand the liner opening during entry.

sequenceDiagram
    participant User
    participant ProstheticLiner
    participant MicroStabilizer
    participant MicroPneumatics

    User->>ProstheticLiner: Initiate Limb Insertion
    MicroPneumatics->>ProstheticLiner: Inflate Bladder (Expand Opening)
    User->>MicroStabilizer: Limb Contacts Micro-Shoehorn
    MicroStabilizer->>ProstheticLiner: Guide Limb (Low Friction)
    User->>ProstheticLiner: Limb Fully Inserted
    MicroPneumatics->>ProstheticLiner: Deflate Bladder (Contract Opening)
    MicroStabilizer->>ProstheticLiner: Engage Micro-Textured Liner (Retain Limb)

3. Cross-Domain Application

Derivative 1.6: Rapid-Entry Animal Hoof Boot with Stabilizer for Equine Therapy

Enabling Description: This system applies to a rapid-entry boot for an animal's hoof (e.g., horse, cow), specifically for therapeutic or protective applications. The "sole" is the hoof-contacting portion, and the "upper" covers the pastern. The "stabilizer" is a rigid thermoplastic (e.g., high-density polyethylene, HDPE) structure, thermoformed to the hoof's caudal aspect. Its "base portion" is integrated into the boot's sole plate, forming a convex structure around the heel bulbs. The "elevated portion" extends upward and rearward, acting as a "hoof-horn" to guide the hoof. A gel-infused synthetic fur liner, attached to the stabilizer, provides cushioned heel retention, preventing rubbing and ensuring comfort during movement.

graph TD
    A[Equine Therapy Boot] --> B{Hoof Access};
    B --> C[Rigid Hoof Stabilizer (HDPE)];
    C --> D[Integrated Sole Plate (Base Portion)];
    C --> E[Elevated Hoof-Horn (Guiding)];
    D & E --> F[Gel-Infused Fur Liner];
    F --> G{Hoof Retention & Comfort};
    G --> H[Therapeutic Wear];
Derivative 1.7: Rapid-Entry Modular Protective Gauntlet for Robotics Technicians

Enabling Description: A rapid-entry protective gauntlet designed for robotics technicians manipulating delicate or energized machinery. The "stabilizer" is a segmented, rigid composite (e.g., aramid fiber reinforced polymer) structure located at the rear (ulnar aspect) of the gauntlet, protecting the wrist and lower forearm. The "base portion" is integrated into the gauntlet's wrist cuff, forming a convex guard. The "elevated portion" extends proximally, acting as a "wrist-horn" to guide the hand and forearm into the gauntlet. A pressure-sensitive memory foam liner, coupled to the stabilizer, provides custom-fit retention and impact absorption, allowing rapid donning while ensuring wrist stability.

classDiagram
    class ProtectiveGauntlet {
        +ModularDesign
        +AramidFiberStabilizer
        +WristCuff
        +MemoryFoamLiner
    }
    class AramidFiberStabilizer {
        <<rigid material>>
        +BaseSegment
        +ElevatedSegment
        +isConvex()
    }
    class MemoryFoamLiner {
        +pressureSensitive
        +impactAbsorption
        +retention
    }
    ProtectiveGauntlet *-- AramidFiberStabilizer
    AramidFiberStabilizer -- MemoryFoamLiner

4. Integration with Emerging Tech

Derivative 1.8: AI-Optimized Adaptive Stabilizer and IoT-Monitored Rapid-Entry Footwear

Enabling Description: The rapid-entry shoe incorporates a sensor array (e.g., pressure sensors in the footbed, strain gauges on the stabilizer, inertial measurement units (IMUs) in the upper). Data from these sensors is fed to an on-board micro-controller running an AI algorithm (e.g., a small neural network). This AI dynamically adjusts the rigidity and profile of the stabilizer and the tension of the elastic elements via micro-actuators (e.g., electrorheological fluid pockets, piezoelectric elements). For donning, the AI predicts foot entry trajectory and optimizes stabilizer pivoting and opening expansion. During wear, the AI adapts to activity (running, walking) to provide optimal support and retention. The data (e.g., donning time, heel pressure distribution) is transmitted via Bluetooth Low Energy (BLE) to a connected device for personalized fit analytics or preventative maintenance alerts.

sequenceDiagram
    participant Foot
    participant ShoeSensors
    participant MicroController_AI
    participant MicroActuators
    participant Stabilizer
    participant ElasticElement
    participant MobileDevice

    Foot->>ShoeSensors: Apply Pressure (Entry)
    ShoeSensors->>MicroController_AI: Send Data (Pressure, Strain, IMU)
    MicroController_AI->>MicroActuators: Compute & Send Adjustments
    MicroActuators->>Stabilizer: Adjust Rigidity/Pivot
    MicroActuators->>ElasticElement: Adjust Tension/Expansion
    Stabilizer->>Foot: Guide Foot / Retain Heel
    ElasticElement->>Foot: Expand Opening
    MicroController_AI->>MobileDevice: Transmit Telemetry (via BLE)
Derivative 1.9: Blockchain-Verified Manufacturing and Smart-Tag Authenticated Rapid-Entry Footwear

Enabling Description: Each rapid-entry shoe is manufactured with a Near-Field Communication (NFC) chip embedded in the stabilizer's base portion. This chip stores a unique digital identifier and a cryptographic hash representing the shoe's material composition, manufacturing date, and supply chain journey. This information is immutably recorded on a distributed ledger (blockchain). Consumers can use a smartphone app to scan the NFC tag, verifying the authenticity of the product, confirming the origin of ethical materials (e.g., recycled polymers for the stabilizer, sustainably sourced foam for the liner), and accessing transparent repair/recycling instructions. This ensures compliance with environmental, social, and governance (ESG) standards throughout the product lifecycle.

flowchart TD
    A[Raw Materials] --> B{Supplier Verification (Blockchain)};
    B --> C[Manufacturing Process];
    C --> D{NFC Tag Embedding (Stabilizer)};
    D --> E[Product Data Hashing];
    E --> F[Blockchain Transaction (Immutable Record)];
    F --> G[Retail & Consumer];
    G -- Scan NFC --> H[Smartphone App (Verification)];
    H -- Verify Hash --> I[Blockchain Ledger (Authenticity)];

5. The "Inverse" or Failure Mode

Derivative 1.10: Self-Releasing Rapid-Entry Footwear for Emergency Egress

Enabling Description: A rapid-entry shoe equipped with a safety release mechanism. The rigid stabilizer, while preventing downward collapse, is designed to instantly disengage its heel retention function and/or pivot open completely in emergency situations (e.g., vehicle crash, entanglement). This is achieved via a dedicated, independent actuator (e.g., a small pyrotechnic charge or a powerful spring-release mechanism) connected to a quick-release joint in the stabilizer's base portion or elevated portion. Activation is triggered by an external pull-tab, an integrated impact sensor, or a remote signal. In this "failure mode," the shoe prioritizes immediate, hands-free doffing over retention, allowing for rapid and safe egress from hazardous situations. The foam liner is designed with a low-shear interface to prevent snagging the foot during release.

stateDiagram
    state "Normal Wear (Heel Retained)" as Normal
    state "Emergency Detected" as Emergency
    state "Stabilizer Disengaged/Open" as Disengaged
    state "Shoe Doffed" as Doffed

    Normal --> Emergency : Impact Sensor / Pull-Tab / Remote Signal
    Emergency --> Disengaged : Actuator Triggers Quick-Release
    Disengaged --> Doffed : Foot Exits Rapidly

Derivative Variations for Claim 10 (Method)

Claim 10 describes a method for donning a rapid-entry shoe, involving inserting the foot, contacting a pivoting stabilizer (with a specific foam liner), causing the stabilizer to pivot, and simultaneously contacting an elastic element that expands the foot opening.

1. Material & Component Substitution (Method Focus)

Derivative 10.1: Pneumatically-Assisted Stabilizer Pivoting and Expansion

Enabling Description: The method for donning a rapid-entry shoe incorporates a pneumatically-assisted system for the stabilizer's pivoting and foot opening expansion. Upon inserting the first portion of the foot, an initial pressure sensor in the toe box activates a micro-air pump. This pump inflates a series of small, strategically placed bladders within the stabilizer's pivot mechanism and along the elastic element's periphery. The inflation forces the stabilizer to pivot rearward more rapidly and to a greater extent, simultaneously maximizing the expansion of the elastic element and the foot opening. As the foot fully inserts, a second set of sensors detects complete entry, and the bladders are slowly deflated, allowing the stabilizer to return and the elastic element to contract, securing the heel.

sequenceDiagram
    participant User
    participant Foot
    participant ToeSensor
    participant MicroAirPump
    participant StabilizerBladders
    participant ElasticBladders
    participant FootSensor

    User->>Foot: Insert First Portion
    Foot->>ToeSensor: Activate
    ToeSensor->>MicroAirPump: Initiate Inflation
    MicroAirPump->>StabilizerBladders: Inflate (Pivot Stabilizer)
    MicroAirPump->>ElasticBladders: Inflate (Expand Opening)
    Foot->>StabilizerBladders: Bottom Contacts, Assists Pivot
    Foot->>ElasticBladders: Top Contacts, Assists Expansion
    User->>Foot: Insert Second Portion
    Foot->>FootSensor: Detect Full Entry
    FootSensor->>MicroAirPump: Initiate Deflation
    MicroAirPump->>StabilizerBladders: Deflate (Stabilizer Returns)
    MicroAirPump->>ElasticBladders: Deflate (Elastic Contracts)
    User->>Foot: Heel Secured
Derivative 10.2: Electromagnetically-Retained Foam Liner with Variable Stiffness

Enabling Description: The method for donning includes a foam liner with embedded micro-electromagnets, acting in conjunction with a sensor array. During initial foot insertion, the micro-electromagnets are de-energized, allowing the foam liner to be maximally pliable, offering minimal resistance to the foot. As the foot's bottom portion contacts the stabilizer and causes it to pivot, a pressure sensor in the heel activates the electromagnets. These electromagnets create a localized magnetic field that interacts with ferromagnetic elements within the foam, effectively increasing its stiffness and density, thereby enhancing dynamic heel retention and reducing slippage. The magnetic field strength can be varied based on foot pressure or user preference.

stateDiagram
    state "Pre-Insertion (Liner Pliable)" as Pliable
    state "Foot Contact (Liner Stiffening)" as Stiffening
    state "Heel Retained (Liner Stiff)" as Retained

    Pliable --> Stiffening : Foot Pressure > Threshold
    Stiffening --> Retained : Electromagnets Energize
    Retained --> Pliable : Foot Removal / De-energize

2. Operational Parameter Expansion (Method Focus)

Derivative 10.3: Rapid Donning Method for Contaminated Environment Full-Body Suit Boots

Enabling Description: A method for rapidly donning specialized boots integrated into a full-body hazmat or cleanroom suit, where maintaining sterility or preventing contamination ingress is critical. The suit's integrated boot utilizes a rigid, sterilizable polymer stabilizer and an elastic element with an airtight, self-sealing membrane. The method involves: (a) positioning the user's foot directly above the boot opening, (b) initiating partial foot insertion with a controlled downward force, (c) the foot's bottom portion contacting the elevated portion of the stabilizer, which pivots rearward under controlled resistance from an external spring-loaded hinge. Simultaneously, the top portion of the foot contacts the elastic element, which expands the opening while its self-sealing membrane maintains a sterile barrier. (d) Completing foot insertion rapidly, causing the stabilizer to snap back into position and the elastic element to contract to its sealed state, creating an immediate, hermetic seal around the ankle. This method minimizes exposure time to the environment.

sequenceDiagram
    participant User
    participant Foot
    participant HazmatBoot
    participant Stabilizer
    participant ElasticElement_Seal

    User->>Foot: Position Foot Over Opening
    Foot->>HazmatBoot: Initiate Partial Insertion
    Foot->>Stabilizer: Bottom Contacts, Pivots Rearward (Controlled)
    Foot->>ElasticElement_Seal: Top Contacts, Expands Opening (Maintains Seal)
    User->>Foot: Complete Rapid Insertion
    Stabilizer->>HazmatBoot: Snaps Back (Secures Heel)
    ElasticElement_Seal->>HazmatBoot: Contracts (Forms Hermetic Seal)
    User->>HazmatBoot: Boot Donned, Environment Sealed
Derivative 10.4: Zero-Gravity Rapid Donning Method for Astronaut Boots

Enabling Description: A method for donning astronaut boots in a zero-gravity environment, where stabilization and precise alignment are challenges. The boot features internal tethers and an active stabilizer. The method comprises: (a) engaging the boot's pre-aligned docking interface with a suit leg attachment point, thereby securing the boot's sole; (b) guiding the foot into the boot's opening using internal suit foot guides; (c) the foot's bottom portion making controlled contact with a lightweight, rigid carbon-composite stabilizer. This contact initiates a spring-loaded, dampened pivoting motion of the stabilizer, facilitated by the low-friction environment. Simultaneously, the top portion of the foot contacts an elastic element within the upper, which actively expands via internal pneumatic channels to accommodate entry. (d) Upon full insertion, micro-magnets within the boot's internal structure provide initial passive retention, while the stabilizer returns to its non-pivoted state and the elastic element contracts, providing a snug fit without relying on gravity.

stateDiagram
    state "Boot Undocked" as Undocked
    state "Boot Docked & Stabilized" as Docked
    state "Foot Insertion In Progress" as Inserting
    state "Foot Fully Inserted & Secured" as Secured

    Undocked --> Docked : Docking Interface Engaged
    Docked --> Inserting : User Guides Foot
    Inserting --> Inserting : Foot Bottom Contacts Stabilizer (Pivots)
    Inserting --> Inserting : Foot Top Contacts Elastic Element (Expands)
    Inserting --> Secured : Full Insertion Detected
    Secured --> Docked : Stabilizer Returns, Elastic Contracts
    Secured --> Undocked : Undock Boot

3. Cross-Domain Application (Method Focus)

Derivative 10.5: Rapid-Entry Method for Emergency Medical Splint Application

Enabling Description: This method applies to the rapid application of an emergency medical splint (e.g., for ankle or lower leg fractures). The splint is designed with a rigid structural frame (analogous to the shoe's stabilizer) around the posterior aspect and an elastic compression sleeve (analogous to the elastic element). The method involves: (a) orienting the patient's injured limb to align with the splint opening; (b) gently guiding the distal end of the limb (analogous to the first portion of the foot) into the splint; (c) the limb's posterior aspect contacting the rigid splint frame's elevated portion, which is designed to pivot slightly outward under gentle pressure, creating a wider entry channel. Simultaneously, the limb's anterior aspect contacts the elastic compression sleeve, which temporarily expands to facilitate entry. (d) Once the limb is fully seated, the splint frame returns to its original position, and the elastic sleeve contracts to provide initial stabilization, allowing for quick and secure immobilization prior to definitive treatment.

sequenceDiagram
    participant MedicalPersonnel
    participant InjuredLimb
    participant EmergencySplint
    participant SplintFrame
    participant CompressionSleeve

    MedicalPersonnel->>InjuredLimb: Orient Limb to Splint
    MedicalPersonnel->>EmergencySplint: Guide Distal Limb into Splint
    InjuredLimb->>SplintFrame: Posterior Contacts, Pivots Outward
    InjuredLimb->>CompressionSleeve: Anterior Contacts, Temporarily Expands
    MedicalPersonnel->>EmergencySplint: Seat Limb Fully
    SplintFrame->>EmergencySplint: Returns to Original Position
    CompressionSleeve->>EmergencySplint: Contracts (Initial Stabilization)
    MedicalPersonnel->>EmergencySplint: Splint Applied Rapidly
Derivative 10.6: Rapid-Entry Method for Canine Protective Paw Wear

Enabling Description: A method for rapidly donning a protective paw boot onto a dog, particularly for working dogs or those with paw injuries. The paw boot features a rigid, articulated paw stabilizer (e.g., molded polymer) at the caudal aspect of the paw and an elasticized cuff. The method comprises: (a) holding the dog's paw above the boot opening; (b) inserting the paw's distal digits (first portion) into the opening; (c) the paw's plantar surface contacting the elevated portion of the paw stabilizer, causing it to pivot rearward (e.g., with a living hinge or spring mechanism). Concurrently, the paw's dorsal aspect contacts the elasticized cuff, which expands the opening. (d) Fully inserting the paw, allowing the stabilizer to rebound and the cuff to contract, providing a snug, secure fit for active movement. The internal foam liner provides comfort and prevents chafing.

flowchart TD
    A[Hold Paw] --> B{Insert Paw Distal Digits};
    B --> C[Paw Planter Contacts Stabilizer (Pivots)];
    C --> D[Paw Dorsal Contacts Elastic Cuff (Expands)];
    C & D --> E[Fully Insert Paw];
    E --> F[Stabilizer Rebounds];
    E --> G[Elastic Cuff Contracts];
    F & G --> H[Secure Paw Boot];

4. Integration with Emerging Tech (Method Focus)

Derivative 10.7: AI-Guided, Haptic Feedback Donning Method

Enabling Description: A method for donning rapid-entry footwear augmented with AI and haptic feedback for optimized user guidance. The shoe contains micro-vibrators embedded in the upper and stabilizer, controlled by an AI-powered micro-controller analyzing real-time pressure sensor data from the footbed and strain gauges on the stabilizer. The method involves: (a) initiating foot insertion; (b) as the foot contacts the stabilizer and elastic element, the AI algorithm calculates the optimal foot trajectory and pressure distribution for efficient donning. (c) The micro-controller then provides haptic feedback (e.g., vibrations) to the user's foot, guiding them to adjust their foot's angle or pressure to maximize stabilizer pivoting and elastic element expansion. For example, a stronger vibration on the medial side might indicate the need to shift weight laterally. (d) The haptic feedback ceases once optimal insertion parameters are met, and the shoe confirms successful donning. This is particularly useful for users with limited mobility or sensory perception.

sequenceDiagram
    participant User
    participant Foot
    participant ShoeSensors
    participant AI_Controller
    participant HapticFeedback
    participant Stabilizer
    participant ElasticElement

    User->>Foot: Start Insertion
    Foot->>ShoeSensors: Pressure/Strain Data
    ShoeSensors->>AI_Controller: Real-time Input
    AI_Controller->>AI_Controller: Process Data, Calculate Optimal Trajectory
    AI_Controller->>HapticFeedback: Send Haptic Commands
    HapticFeedback->>User: Vibrate Shoe (Guide Foot)
    User->>Foot: Adjust Foot Based on Haptic Feedback
    Foot->>Stabilizer: Pivot Action
    Foot->>ElasticElement: Expansion Action
    AI_Controller->>AI_Controller: Monitor Progress
    AI_Controller->>HapticFeedback: Stop Haptic Feedback (Optimal Insertion Achieved)

5. The "Inverse" or Failure Mode (Method Focus)

Derivative 10.8: Low-Power/Manual Override Donning Method

Enabling Description: A method for donning rapid-entry footwear in a low-power or failed-system state (e.g., when battery for active components is depleted, or an electronic fault). The rapid-entry shoe is designed with a passive spring-loaded pivoting stabilizer and a mechanically elastic upper. The method involves: (a) inserting the first portion of the foot, applying deliberate, slightly increased downward and forward pressure to overcome the passive resistance of the stabilizer's pivot mechanism; (b) manually guiding the foot's bottom portion firmly against the elevated portion of the stabilizer, forcing it to pivot rearward via mechanical leverage rather than active assistance. Simultaneously, the top portion of the foot must be pressed against the elastic element, which relies solely on its inherent material stretch for expansion, requiring more force from the user. (c) The foot is fully inserted, and the stabilizer and elastic element return to their default, passive retention positions. This method ensures functionality even without active power, albeit with increased user effort.

flowchart TD
    A[Start Manual Insertion] --> B{Apply Increased Force};
    B --> C[Foot Contacts Stabilizer (Manual Pivot)];
    B --> D[Foot Contacts Elastic Element (Manual Stretch)];
    C & D --> E[Overcome Passive Resistance];
    E --> F[Fully Insert Foot];
    F --> G[Stabilizer Returns (Passive)];
    F --> H[Elastic Element Contracts (Passive)];
    G & H --> I[Heel Retained (Low-Power Mode)];

Combination Prior Art Scenarios

Here are three scenarios where the technology of US12274325 can be combined with existing open-source standards to establish further prior art.

1. AI-Optimized Fit & Comfort with ONNX Runtime Integration

Scenario: A rapid-entry shoe (as per US12274325) incorporates an AI model (e.g., a neural network) that learns user-specific foot dynamics during donning and wear. This model, developed using open-source frameworks like TensorFlow or PyTorch, is converted to the Open Neural Network Exchange (ONNX) format. The ONNX model is then deployed and executed on a low-power embedded microcontroller (e.g., using ONNX Runtime for embedded devices) within the shoe. The AI optimizes the responsiveness of smart materials in the stabilizer (e.g., electrorheological fluids) and elastic elements to provide a custom "rebounding fit" for each user. This combines the core rapid-entry and stabilization features with an open-source standard for AI model deployment.

2. IoT Sensor Data Telemetry using MQTT and Eclipse Paho

Scenario: The rapid-entry footwear (as per US12274325, with enhancements like Derivative 1.8) integrates an array of biometric and mechanical sensors (e.g., pressure, gait, temperature). The sensor data, including donning event timestamps and heel retention force, is collected and formatted according to a simple JSON schema. This data is then transmitted wirelessly using the Message Queuing Telemetry Transport (MQTT) protocol, an open-source messaging standard for IoT devices. The shoe's embedded module uses an open-source client library like Eclipse Paho MQTT Client to publish data to a local or cloud-based MQTT broker, enabling real-time monitoring, predictive maintenance for shoe components, or performance analytics, adhering to open IoT communication standards.

3. 3D-Printed Modular Stabilizer and Liner Components with ASTM F2792 Compliance

Scenario: The rigid stabilizer and the foam liner (as described in US12274325) are designed as modular, interchangeable components, precisely manufactured using Additive Manufacturing (3D printing) techniques. The design files for these components are stored and distributed in an open-source format like Standard Tessellation Language (STL) or Additive Manufacturing File Format (AMF). The materials and manufacturing process (e.g., selective laser sintering of Nylon 12 for the stabilizer, fused deposition modeling of flexible thermoplastic polyurethane for the liner) are developed and qualified in accordance with ASTM F2792 – Standard Terminology for Additive Manufacturing Technologies. This allows for customized and on-demand production of replacement parts or personalized fits for the rapid-entry footwear, leveraging open standards in additive manufacturing and material science.

Generated 5/28/2026, 12:05:17 AM