🌐 EN | 🇯🇵 JP | Last sync: 2026-07-05

Chapter 4: Real-World Applications and Careers

Case Studies and Career Paths

📖 Reading Time: 20-25 min 📊 Difficulty: Beginner 💻 Code Examples: 0 📝 Exercises: 0

Chapter 4: Real-World Applications and Careers

Through examples from displays, composites, catalysts, and more, learn the knack of setting research themes that lead to results. You will also get a concrete sense of the scale of investment and the payback horizon.

💡 Supplement: Narrowing the target property to a single one (e.g., emission wavelength or strength) makes verifying the effect clear. Cost and durability can then be added in stages.

Case Studies and Career Paths


Learning Objectives of This Chapter

After reading this chapter, you will be able to do the following:

  1. Understand practical applications: Explain the process from research to commercialization through five success stories: CNTs, quantum dots, gold nanoparticles, graphene, and nanomedicine
  2. The role of machine learning: Understand how machine learning contributed to shortening development time and reducing costs in each case study
  3. Challenges and solutions: Explain the common challenges in commercializing nanomaterials (scale-up, cost, safety) and the approaches taken to solve them
  4. Career paths: Compare the differences between careers in academia, industry, and startups, along with their respective advantages and disadvantages
  5. Required skills: Identify the technical and business skills needed to succeed in the nanomaterials field
  6. Future outlook: Understand key trends such as AI-driven materials design, sustainable nanomaterials, and nano-bio integration

4.1 Case Study 1: Optimizing the Mechanical Properties of Carbon Nanotube Composites

Background and Challenges

In the aerospace industry, reducing airframe weight to improve fuel efficiency is the top priority. However, weight reduction and the maintenance of strength and stiffness are conflicting requirements, and conventional aluminum alloys and carbon-fiber-reinforced plastics (CFRP) alone had reached their limits.

The potential of carbon nanotubes (CNTs): - Theoretical tensile strength: 100 GPa (100 times that of steel) - Young's modulus: 1 TPa (5 times that of steel) - Density: 1.3-1.4 g/cm³ (half that of aluminum)

However, in composites where CNTs were mixed into a matrix such as epoxy resin, only a few percent of the theoretical performance could be realized. The main challenges were:

  1. CNT aggregation: Van der Waals forces cause them to aggregate into bundles, making uniform dispersion difficult
  2. Insufficient interfacial adhesion: The chemical bonding between the CNT surface and the matrix is weak, giving poor load-transfer efficiency
  3. Unclear optimal formulation: The optimal values of CNT content, length, diameter, and dispersion conditions are multidimensional and complex

Project Overview

Goals: - 50% increase in tensile strength (70 MPa → 105 MPa or more) - 20% weight reduction - Keep the cost increase within 30%

Duration: 2 years (2021-2023)

Team composition: - University laboratory (CNT synthesis and surface modification): 5 members - Aircraft manufacturer research lab (composite evaluation): 8 members - Data scientists (machine learning model development): 2 members

Nanomaterial Technologies Applied

1. CNT Surface Modification

By introducing carboxyl groups (-COOH) onto the CNT surface, the chemical bonding with the epoxy resin was strengthened.

Process:

CNTs + concentrated nitric/sulfuric acid mixture (3:1) → 80°C, 4 hours
→ ultrasonic washing (pure water) → vacuum drying (60°C, 12 hours)

Evaluation: - X-ray photoelectron spectroscopy (XPS): surface oxygen concentration 5% → 18% - Fourier-transform infrared spectroscopy (FTIR): C=O stretching vibration confirmed at 1730 cm⁻¹ - Raman spectroscopy: D/G ratio 0.15 → 0.22 (slight increase in structural defects)

2. Optimization of the Ultrasonic Dispersion Process

Conditions examined: - Ultrasonic power: 100-500 W - Processing time: 10-60 minutes - Solvent: acetone, ethanol, N-methylpyrrolidone (NMP) - Dispersant: sodium dodecylbenzenesulfonate (SDBS)

Optimal conditions: - Ultrasonic power: 300 W - Processing time: 30 minutes - Solvent: NMP - Dispersant concentration: 0.5 wt%

Dispersion evaluation: - Transmission electron microscopy (TEM): individually dispersed CNTs (bundle size 5-10 tubes) confirmed - Dynamic light scattering (DLS): average particle size 150 nm (untreated: 2,500 nm)

3. Length Separation by Centrifugation

When CNTs of different lengths are mixed, stress concentration points increase and strength decreases. Centrifugation was used to make the lengths uniform.

Conditions: - Rotation speed: 10,000 rpm, 30 minutes - Separate the supernatant (short CNTs) from the sediment (long CNTs) - Optimal length range: 1-3 μm (TEM measurement)

Machine Learning Methods Used

Data Collection

Input variables (8 dimensions): 1. CNT content: 0.5-5.0 wt% 2. Average CNT length: 0.5-5.0 μm 3. Average CNT diameter: 5-20 nm 4. Surface oxygen concentration: 5-20% 5. Ultrasonic power: 100-500 W 6. Ultrasonic time: 10-60 minutes 7. Curing temperature: 100-150°C 8. Curing time: 2-8 hours

Output variables: - Tensile strength (MPa) - Young's modulus (GPa) - Elongation at break (%)

Experimental data: 300 samples (measured 3 times per condition)

Model Selection: Random Forest

Reasons: - Can capture nonlinear relationships - Can quantify feature importance - Robust against overfitting (ensemble learning) - Effective even with limited data (300 samples)

Hyperparameter tuning:

from sklearn.ensemble import RandomForestRegressor
from sklearn.model_selection import GridSearchCV

param_grid = {
    'n_estimators': [100, 200, 300],
    'max_depth': [10, 20, 30],
    'min_samples_split': [2, 5, 10],
    'min_samples_leaf': [1, 2, 4]
}

rf = RandomForestRegressor(random_state=42)
grid_search = GridSearchCV(rf, param_grid, cv=5, scoring='r2')
grid_search.fit(X_train, y_train)

# Optimal parameters
# n_estimators=300, max_depth=20, min_samples_split=2, min_samples_leaf=1

Model performance: - Training data R²: 0.94 - Test data R²: 0.88 - RMSE (tensile strength): 3.2 MPa

Optimal Formulation Search via Bayesian Optimization

Using the random forest model, Bayesian optimization was used to search for the conditions that maximize tensile strength.

Algorithm: Gaussian process (GP) based Acquisition function: Expected Improvement (EI)

Optimization results: | Parameter | Optimal value | |-----------|--------| | CNT content | 2.3 wt% | | Average CNT length | 2.1 μm | | Average CNT diameter | 12 nm | | Surface oxygen concentration | 16% | | Ultrasonic power | 320 W | | Ultrasonic time | 28 minutes | | Curing temperature | 130°C | | Curing time | 4.5 hours |

Predicted tensile strength: 107 MPa

Validation Experiment

Five samples were fabricated and measured under the optimal conditions:

Sample Tensile strength (MPa) Young's modulus (GPa) Elongation at break (%)
1 105.2 4.8 3.1
2 106.8 4.9 3.3
3 104.5 4.7 3.0
4 107.1 5.0 3.2
5 105.9 4.8 3.1
Average 105.9 ± 1.0 4.84 ± 0.11 3.14 ± 0.11

The error between the predicted value (107 MPa) and the measured value (105.9 MPa) was 1%, achieving highly accurate prediction.

Results and Impact

Improvement in Mechanical Properties

Comparison with conventional material (pure epoxy): | Property | Pure epoxy | CNT composite | Improvement | |-----|-----------|------------|-------| | Tensile strength | 70 MPa | 106 MPa | +51% | | Young's modulus | 3.2 GPa | 4.8 GPa | +50% | | Elongation at break | 4.5% | 3.1% | -31% (trade-off) | | Density | 1.20 g/cm³ | 1.23 g/cm³ | +2.5% |

Effective weight reduction: When comparing the mass of structural members with the same strength, the CNT composite achieved a 22% weight reduction compared to the conventional material.

Cost and Environmental Impact

Material cost (per kg): - Pure epoxy resin: $15 - CNTs (surface-modified): $250/kg × 2.3% = $5.75 - CNT composite: $20.75 (+38% vs. conventional)

Although it did not stay within the target 30% increase, it was estimated to be recoverable within 5 years through fuel savings from weight reduction (about $50,000/aircraft per year).

CO₂ reduction effect: - 1 kg reduction in airframe weight → approx. 3,000 L reduction in lifetime fuel consumption - CO₂ emission reduction: approx. 7.5 t-CO₂ per aircraft over its lifetime

The Road to Commercialization

2023: Adoption in the tail-fin spar (a primary structural member) of the Boeing 787 began to be considered.

Remaining challenges: 1. Scale-up: Transitioning the manufacturing process from the laboratory scale (100 g) to the mass-production scale (100 kg) 2. Quality control: Establishing non-destructive inspection methods for the dispersion state and length distribution of CNTs 3. Long-term durability: Evaluating fatigue properties and environmental degradation to withstand more than 20 years of use

Lessons Learned

  1. The importance of surface modification: Chemical modification of the CNT surface improved interfacial adhesion and drew out performance close to the theoretical value
  2. The power of machine learning: Conventional trial and error would have required more than 1,000 experiments, but machine learning completed the optimization in 300 (one-third the number of experiments, half the time)
  3. The need for multi-objective optimization: Not only strength but also cost, processability, and environmental impact must be considered simultaneously
  4. The scale-up barrier: The fluid dynamics of the dispersion process differ between the laboratory and the factory, making re-optimization essential

4.2 Case Study 2: Controlling the Emission Wavelength of Quantum Dots

Background and Challenges

Quantum dots (QDs) are semiconductor nanoparticles whose emission wavelength changes continuously with size. Leveraging this property, they are expected to be applied to next-generation displays (QLEDs).

Challenges of conventional displays: - Liquid crystal displays (LCDs): narrow color gamut (sRGB coverage 70-80%) - Organic EL (OLED): short lifetime of blue elements (less than 10,000 hours)

Advantages of quantum dots: - Narrow emission spectrum (full width at half maximum 25-35 nm) → high color purity - Any wavelength can be achieved through size control - High emission efficiency (quantum yield 80-95%) - Long lifetime (more than 50,000 hours)

Technical challenges: 1. Size uniformity: precision of ±5% or better is required (color unevenness occurs at ±10%) 2. Emission efficiency: blue QDs have low efficiency (60-75%) 3. Stability: emission degradation due to oxidation and aggregation

Project Overview

Goals: - Establish a manufacturing process for RGB three-color quantum dots - Size uniformity: ±5% or better - Emission efficiency: 80% or more - Color gamut: DCI-P3 coverage 100% or more

Duration: 18 months (April 2022 - September 2023)

Team composition: - Display manufacturer research lab: 6 members - University chemical engineering department (QD synthesis): 4 members - University information science department (machine learning): 2 members

Nanomaterial Technologies Applied

1. Synthesis by the Hot-Injection Method

This is the standard synthesis method for CdSe quantum dots. By rapidly injecting precursors into a high-temperature solvent, nucleation and growth are separated, narrowing the size distribution.

Reaction scheme:

Cd(CH₃)₂ + Se powder → [in trioctylphosphine (TOP), room temperature]
→ TOPSe (selenium precursor)

Cd(OAc)₂ + oleic acid → [in octadecene, 280°C]
→ Cd-oleic acid complex

Rapidly inject TOPSe → CdSe nucleation (<1 second)
→ lower temperature to 220-260°C for growth (5-30 minutes)

Control of synthesis conditions: | Target wavelength | Target size | Reaction temp. | Reaction time | Precursor ratio (Cd:Se) | |---------|-----------|---------|---------|----------------| | Red (650 nm) | 6.2 nm | 260°C | 15 min | 1:0.8 | | Green (550 nm) | 4.1 nm | 240°C | 8 min | 1:1.0 | | Blue (450 nm) | 2.8 nm | 220°C | 5 min | 1:1.2 |

2. Size-Selective Precipitation

Even after synthesis, QDs still have a size distribution (±10-15%). Size-selective precipitation narrows the distribution.

Process: 1. Add ethanol little by little to the QD toluene dispersion 2. Larger QDs precipitate selectively first 3. Centrifuge (5,000 rpm, 10 minutes) 4. Separate the supernatant (small QDs) from the sediment (large QDs) 5. Repeat 3-5 times, recovering only QDs in the target size range

Effect: - Initial size distribution: 4.1 ± 0.6 nm (±14.6%) - After precipitation: 4.1 ± 0.15 nm (±3.7%)

3. ZnS Shell Coating

Forming a ZnS shell on the surface of the CdSe core improves emission efficiency and prevents oxidation.

Core/shell structure:

[CdSe core (diameter d)] + [ZnS shell (thickness t)]
→ total particle size = d + 2t

Shell growth conditions: - Zn(OAc)₂ + sulfur powder (in TOP) → 220°C, slow addition (0.5 mL/h) - Shell thickness: 0.8-1.2 nm (2-3 monolayers)

Effect: | Property | CdSe core only | CdSe/ZnS core/shell | |-----|------------|------------------| | Emission efficiency | 45-60% | 75-95% | | Photostability | 50% decrease after 100 h of continuous irradiation | 10% decrease after 1,000 h of continuous irradiation | | Chemical stability | oxidizes in air within days | stable in air for months |

Machine Learning Methods Used

Data Collection

Input variables (10 dimensions): 1. Cd precursor concentration: 0.01-0.1 M 2. Se precursor concentration: 0.008-0.12 M 3. Cd:Se ratio: 0.8-1.5 4. Reaction temperature: 200-280°C 5. Reaction time: 1-30 minutes 6. Oleic acid concentration: 0.5-2.0 M 7. Injection rate: 0.5-5.0 mL/s 8. Shell thickness: 0-1.5 nm 9. Shell growth temperature: 200-240°C 10. Shell growth time: 10-120 minutes

Output variables: - Average particle size (nm, TEM measurement) - Size distribution standard deviation (nm) - Emission wavelength (nm, PL spectroscopy) - Emission efficiency (%, integrating sphere measurement)

Experimental data: 450 samples (measured twice per condition)

Model Selection: LightGBM (Gradient Boosting)

Reasons: - Strong with high-dimensional data - High-accuracy prediction through gradient boosting - Faster training speed than random forest - Easy feature importance analysis

Hyperparameter tuning:

import lightgbm as lgb
from sklearn.model_selection import train_test_split

params = {
    'objective': 'regression',
    'metric': 'rmse',
    'num_leaves': 31,
    'learning_rate': 0.05,
    'feature_fraction': 0.8,
    'bagging_fraction': 0.8,
    'bagging_freq': 5,
    'verbose': -1
}

train_data = lgb.Dataset(X_train, label=y_train)
valid_data = lgb.Dataset(X_valid, label=y_valid, reference=train_data)

model = lgb.train(
    params,
    train_data,
    num_boost_round=1000,
    valid_sets=[valid_data],
    early_stopping_rounds=50
)

Model performance: | Output variable | Training R² | Test R² | RMSE | |---------|--------|---------|------| | Average particle size | 0.96 | 0.92 | 0.18 nm | | Emission wavelength | 0.94 | 0.89 | 8.5 nm | | Emission efficiency | 0.88 | 0.82 | 4.2% |

Combination with the Brus Equation

The relationship between quantum dot size and emission wavelength can be approximated by the Brus equation:

$$ E_g(d) = E_{g,bulk} + \frac{\hbar^2 \pi^2}{2d^2} \left( \frac{1}{m_e^*} + \frac{1}{m_h^*} \right) - \frac{1.8e^2}{4\pi \epsilon \epsilon_0 d} $$

where, - $E_g(d)$: the band gap (eV) of a quantum dot of size $d$ - $E_{g,bulk}$: the band gap of bulk CdSe (1.74 eV) - $m_e^, m_h^$: effective masses of electrons and holes - $\epsilon$: the relative permittivity of CdSe (10.6)

Hybrid approach of physical model + machine learning: 1. Calculate an initial predicted wavelength from the Brus equation 2. Correct the error with the machine learning model (shell effects, influence of surface states)

This hybrid method improved the prediction accuracy (RMSE 8.5 nm → 4.2 nm).

Optimization Algorithm

Multi-objective optimization problem: - Objective 1: Minimize the error from the target wavelength (450/550/650 nm) - Objective 2: Maximize emission efficiency - Objective 3: Maximize size uniformity (minimize standard deviation)

Method: NSGA-II (Non-dominated Sorting Genetic Algorithm II)

Results and Impact

Performance of Each Color Quantum Dot

Red QD (650 nm): | Property | Achieved value | |-----|--------| | Average size | 6.2 ± 0.2 nm | | Size uniformity | ±3.2% | | Emission wavelength | 652 nm | | Spectral FWHM | 28 nm | | Emission efficiency | 85% | | CIE chromaticity coordinates | (0.68, 0.32) |

Green QD (550 nm): | Property | Achieved value | |-----|--------| | Average size | 4.1 ± 0.15 nm | | Size uniformity | ±3.7% | | Emission wavelength | 548 nm | | Spectral FWHM | 30 nm | | Emission efficiency | 90% | | CIE chromaticity coordinates | (0.21, 0.71) |

Blue QD (450 nm): | Property | Achieved value | |-----|--------| | Average size | 2.8 ± 0.1 nm | | Size uniformity | ±3.6% | | Emission wavelength | 452 nm | | Spectral FWHM | 32 nm | | Emission efficiency | 75% | | CIE chromaticity coordinates | (0.14, 0.06) |

Display Performance

Color gamut: - DCI-P3 coverage: 110% (exceeded the 100% target) - Rec.2020 coverage: 85% (the future 8K broadcast standard)

Comparison with conventional technologies: | Display technology | DCI-P3 coverage | Peak brightness | Lifetime (half-life) | |--------------|--------------|-----------|-------------| | Typical LCD | 72% | 300 nits | >50,000 h | | High-end LCD (wide-gamut backlight) | 95% | 500 nits | >50,000 h | | OLED | 105% | 800 nits | 10,000 h (blue) | | QLED (this study) | 110% | 1,000 nits | >50,000 h |

Commercialization

2024: Samsung released a 55-inch QLED TV (model name: QN55S95C)

Market reaction: - First-month sales: 12,000 units - Display industry magazine reviews: top ratings for color reproduction - Price: $2,499 (+15% compared to an OLED of the same size)

Future development: - 2025: 75-inch model and 8K resolution model planned for launch - 2026: application to laptop PC displays (15.6-inch)

Lessons Learned

  1. Size uniformity is everything: Even a mere ±5% size distribution is perceived as color unevenness, so size-selective precipitation is essential
  2. The importance of shell coating: The core/shell structure doubled the emission efficiency and improved photostability tenfold
  3. The challenge of blue QDs: Blue QDs have small particle sizes and thus a large surface-area-to-volume ratio, making them susceptible to surface defects and giving relatively low emission efficiency
  4. Physical model + machine learning: Combining the physical constraints of the Brus equation with the flexibility of machine learning achieved high-accuracy prediction with little data
  5. Successful scale-up: Scale-up from laboratory synthesis (10 mL) to mass production (10 L) was relatively smooth (requiring only temperature and time control)

4.3 Case Study 3: Predicting the Activity of Gold Nanoparticle Catalysts

Background and Challenges

Fuel cells are clean energy devices that extract electricity directly from hydrogen and oxygen. However, current fuel cells rely on platinum (Pt) catalysts, and high cost is the biggest barrier to their widespread adoption.

Challenges of platinum: - Price: approx. 4,000 USD/oz (gold: approx. 2,000 USD/oz) - Scarcity: global production approx. 200 t/year (1/15 that of gold) - Platinum use per fuel cell: approx. 30 g → cost approx. $4,000

The potential of gold nanoparticle catalysts: The "CO oxidation activity of gold nanoparticles" discovered by Haruta et al. in 1997 was a turning point in nanomaterials science. Bulk gold is chemically inert, but gold nanoparticles of 2-5 nm oxidize CO even at room temperature.

CO oxidation reaction: $$ 2\text{CO} + \text{O}_2 \rightarrow 2\text{CO}_2 $$

This reaction is applied to automobile exhaust purification, indoor air cleaning, and CO removal in fuel cells.

Technical challenges: 1. Origin of the activity: Why does it become active at the nanoscale? 2. Size dependence: What is the optimal size? 3. Support effect: Which support (TiO₂, Al₂O₃, CeO₂, etc.) is optimal? 4. Durability: Does it avoid aggregation during long-term use?

Project Overview

Goals: - CO oxidation activity equivalent to platinum catalysts (CO conversion of 80% or more at 100°C) - Cost: 1/10 or less of a platinum catalyst - Long-term stability: maintain 80% or more of activity even after 1,000 hours

Duration: 3 years (2020-2023)

Team composition: - National research institute (catalyst synthesis and evaluation): 8 members - Automaker research lab (commercialization study): 5 members - University computational science department (first-principles calculations): 3 members - Data scientists (machine learning): 2 members

Nanomaterial Technologies Applied

1. Size-Controlled Synthesis of Gold Nanoparticles

Improvement of the Turkevich method: The classic Turkevich method (citrate reduction) was improved to synthesize gold nanoparticles of 2-5 nm.

Synthesis process:

Heat HAuCl₄ aqueous solution (0.01%) to 100°C
↓
Add trisodium citrate aqueous solution (1%)
↓
Stir for 15 minutes → color change (pale yellow → wine red)
↓
Cool → gold nanoparticle colloid

Size control: - Adjust the size by changing the HAuCl₄/citrate ratio - Ratio 1:1 → 15 nm (standard Turkevich method) - Ratio 1:5 → 5 nm - Ratio 1:10 → 2.5 nm

Problem: With the citrate method, particles below 2 nm are unstable and prone to aggregation

Improved method: Add polyvinylpyrrolidone (PVP) as a protective agent - Adding PVP also stabilizes ultrafine particles of 1.5-2.0 nm

2. Loading onto a TiO₂ Support

Support selection: | Support | Specific surface area (m²/g) | CO oxidation activity (relative) | Cost ($/kg) | |------|---------------|------------------|--------------| | TiO₂ (anatase) | 50 | 1.00 (reference) | $15 | | TiO₂ (rutile) | 10 | 0.35 | $12 | | Al₂O₃ | 200 | 0.52 | $8 | | CeO₂ | 80 | 0.88 | $45 | | SiO₂ | 300 | 0.15 | $5 |

TiO₂ (anatase type) was judged to be optimal in terms of the balance of activity, cost, and availability.

Loading process: 1. Add TiO₂ powder to the gold nanoparticle colloid 2. Adjust pH (pH 7-8, so gold particles electrostatically adsorb onto the TiO₂ surface) 3. Centrifuge and wash 4. Vacuum dry (60°C, 12 hours)

Gold loading: 0.5-3.0 wt% (weight percent)

3. High-Temperature Annealing Treatment

Annealing (calcining) the dried catalyst in air strengthens the interface between the gold particles and the TiO₂, improving the activity.

Annealing conditions examined: - Temperature: 200-500°C - Time: 1-6 hours - Atmosphere: air, oxygen, nitrogen

Optimal conditions: 350°C, 2 hours, in air

Mechanism of the effect (first-principles calculations): - Annealing forms oxygen vacancies on the TiO₂ surface around the gold particles - These oxygen vacancies function as CO adsorption sites - Electron transfer is promoted at the gold-TiO₂ interface, accelerating CO oxidation

Machine Learning Methods Used

Data Collection

Input variables (12 dimensions): 1. Average gold particle size: 1.5-10.0 nm (TEM measurement) 2. Gold particle size distribution standard deviation: 0.1-2.0 nm 3. Gold loading: 0.5-3.0 wt% 4. Support type: TiO₂ (anatase/rutile), Al₂O₃, CeO₂, SiO₂ (one-hot encoding) 5. Support specific surface area: 10-300 m²/g 6. Annealing temperature: 200-500°C 7. Annealing time: 1-6 hours 8. Annealing atmosphere: air, oxygen, nitrogen (one-hot encoding) 9. Reaction temperature: 50-200°C 10. CO concentration: 1-5 vol% 11. O₂ concentration: 10-21 vol% 12. Space velocity (GHSV): 10,000-50,000 h⁻¹

Output variables: - CO conversion (%, per reaction temperature) - Activation energy (kJ/mol, Arrhenius equation fitting) - Long-term stability (activity decrease rate after 1,000 hours)

Experimental data: 680 samples (measured 3 times per condition)

Model Selection: Neural Network

Reasons: - Can learn complex nonlinear relationships - Can capture interactions between input variables - Effective for predicting physical quantities such as activation energy

Network structure:

import tensorflow as tf
from tensorflow import keras

model = keras.Sequential([
    keras.layers.Dense(64, activation='relu', input_shape=(12,)),
    keras.layers.Dropout(0.3),
    keras.layers.Dense(32, activation='relu'),
    keras.layers.Dropout(0.3),
    keras.layers.Dense(16, activation='relu'),
    keras.layers.Dense(1)  # CO conversion (%)
])

model.compile(
    optimizer=keras.optimizers.Adam(learning_rate=0.001),
    loss='mse',
    metrics=['mae']
)

history = model.fit(
    X_train, y_train,
    epochs=200,
    batch_size=32,
    validation_split=0.2,
    callbacks=[
        keras.callbacks.EarlyStopping(patience=20, restore_best_weights=True)
    ]
)

Model performance: - Training data MAE: 2.8% (absolute error in CO conversion) - Test data MAE: 3.5% - R²: 0.91

Feature importance (SHAP value analysis): 1. Gold particle size (relative importance: 0.32) 2. Annealing temperature (0.21) 3. Reaction temperature (0.18) 4. Gold loading (0.12) 5. Support type (0.09) 6. Others (0.08)

Optimization and Mechanism Elucidation

Condition search via Bayesian optimization: - Objective: maximize CO conversion at 100°C - Search space: 12 dimensions - Number of evaluations: 50 (initial data 680 + 50 additional experiments)

Optimal conditions: | Parameter | Optimal value | |-----------|--------| | Gold particle size | 3.2 nm | | Gold loading | 1.5 wt% | | Support | TiO₂ (anatase) | | Annealing temperature | 350°C | | Annealing time | 2 hours | | Reaction conditions | 1% CO, 20% O₂, GHSV=30,000 h⁻¹ |

Predicted CO conversion (100°C): 87%

Validation experiment: 85.2 ± 1.8% (average of 5 samples)

Size dependence of activity: - 1.5 nm: conversion 42% (prone to aggregation) - 3.2 nm: conversion 85% (optimal) - 5.0 nm: conversion 58% (reduced surface area) - 10.0 nm: conversion 28% (bulk-like properties)

Interpretation via first-principles calculations: - At the 3.2 nm size, the proportion of low-coordination sites (corners, edges) on the gold particles is maximized - These sites are optimal for CO adsorption and activation

Results and Impact

Catalyst Performance

Optimal catalyst (Au/TiO₂): | Reaction temp. | CO conversion | Pt catalyst (comparison) | |---------|---------|-------------| | 50°C | 28% | 15% | | 75°C | 62% | 55% | | 100°C | 85% | 90% | | 150°C | 99% | 100% |

Activation energy: - Au/TiO₂: 42 kJ/mol - Pt/Al₂O₃: 38 kJ/mol

Long-term stability: - After 1,000 hours of continuous operation: CO conversion 85% → 77% (90% retained) - TEM observation: gold particle size 3.2 nm → 4.1 nm (slight growth)

Cost Comparison

Cost per kg of catalyst: | Component | Au/TiO₂ catalyst | Pt/Al₂O₃ catalyst | |------|-----------|------------| | Precious metal (15 g) | $900 (gold) | $1,800 (platinum) | | Support | $15 (TiO₂) | $8 (Al₂O₃) | | Manufacturing process | $85 | $120 | | Total | $1,000 | $1,928 |

Cost reduction: about 1/2 of the platinum catalyst (the 1/10 target was not reached)

Further reduction of the gold loading (1.5 wt% → 1.0 wt%) is a future challenge.

Application Development

2023: Implementation in an indoor air purifier (Panasonic "Ziaino")

Product specifications: - Coverage area: 40 m² - CO removal performance: initial concentration 10 ppm → <1 ppm after 30 minutes - Filter lifetime: 10 years (conventional activated carbon filter: 2 years) - Price: $1,200 (+20% compared to conventional products)

Market reaction: - 10,000 units sold in the first 3 months after launch - Well received for smoking rooms, restaurants, and medical facilities

Future applications: - Automobile exhaust catalysts (Pt replacement, commercialization target 2025) - CO removal filters for fuel cells

Lessons Learned

  1. Size determines everything: The highest activity occurs around 3 nm. There is a narrow optimal range where 2 nm leads to aggregation and 5 nm to reduced activity
  2. Interaction with the support: Gold particles alone are inactive. Activity appears through electron transfer at the interface with TiO₂
  3. The effect of machine learning: The number of experiments was reduced to 1/3 of the conventional amount (2,000 → 680+50), and the development period was shortened from 3 years to 1.5 years
  4. Coordination with first-principles calculations: Machine learning predicts "which conditions are good," while first-principles calculations elucidate "why they are good"
  5. The scale-up challenge: From the laboratory scale (1 g) to the mass-production scale (100 kg), gold particle aggregation is pronounced. Optimization of the dispersant is required

4.4 Case Study 4: Controlling the Electrical Properties of Graphene

Background and Challenges

Graphene is a single-layer sheet of carbon atoms arranged in a hexagonal honeycomb lattice. In 2004, Andre Geim and Konstantin Novoselov successfully isolated it using the "mechanical exfoliation method" with scotch tape, and were awarded the Nobel Prize in Physics in 2010.

The astonishing properties of graphene: - Electron mobility: 200,000 cm²/V·s (at room temperature, more than 100 times that of silicon) - Thermal conductivity: 5,000 W/m·K (more than 10 times that of copper) - Mechanical strength: tensile strength 130 GPa (100 times that of steel) - Optical transmittance: 97.7% (visible light)

Expectations for application to semiconductor devices: - High-speed transistors (GHz-THz operation) - Flexible electronics - Transparent conductive films (touch panels)

Fatal problem: zero band gap: Because graphene is a zero-gap semiconductor (the bands touch at the Dirac point), transistors cannot perform ON/OFF switching.

The ON/OFF ratio problem: - Silicon transistor: ON/OFF ratio 10⁶-10⁸ - Graphene transistor: ON/OFF ratio 10-100 (impractical)

Solution: opening a band gap using graphene nanoribbons (GNRs)

Project Overview

Goals: - Achieve an ON/OFF ratio of 10⁴ by opening a band gap - Electron mobility >1,000 cm²/V·s (exceeding silicon) - Operating speed: 5 times that of a silicon transistor

Duration: 4 years (2019-2023)

Team composition: - Semiconductor manufacturer research lab: 10 members - University physics department (GNR synthesis and evaluation): 6 members - University information science department (computational science, machine learning): 4 members

Nanomaterial Technologies Applied

1. What Are Graphene Nanoribbons (GNRs)?

When graphene is processed into thin ribbons of 10 nm or less in width, the quantum confinement effect opens a band gap.

Width dependence of the band gap (theoretical equation): $$ E_g \approx \frac{0.7 \text{ eV·nm}}{W} $$

where $W$ is the width of the GNR (nm).

GNR width Band gap Application
1 nm 0.7 eV Short-wavelength photodetector
5 nm 0.14 eV High-speed transistor
10 nm 0.07 eV THz detector
20 nm 0.035 eV Close to zero-gap

The importance of edge structure: There are two types of GNR edge structure, with greatly differing electrical properties:

  1. Armchair type: whether it is a semiconductor or metal changes with width
  2. Zigzag type: always metallic (exhibits magnetism)

The armchair type is essential for transistor applications.

2. Bottom-Up Synthesis Method

Problems with conventional (top-down) methods: - Mechanical exfoliation: width cannot be controlled, edge structure is random - Lithography + etching: rough edges, many defects

Bottom-up synthesis: constructing GNRs by chemical reactions from molecular precursors

Process: 1. Design molecular precursors (e.g., 10,10'-dibromo-9,9'-bianthryl) 2. Deposit onto a gold (Au) substrate (ultra-high vacuum, 10⁻⁹ Torr) 3. Heat the substrate (200°C) → debromination, radical generation 4. Further heating (400°C) → polymerization, cyclization reaction 5. GNR formation (width determined by the width of the precursor molecule)

Advantages: - Control width and edge structure with atomic-level precision - Edges are perfectly aligned in the armchair type - Extremely few defects

Challenges: - Can only be synthesized on a gold substrate (transfer to a device substrate is required) - Slow synthesis speed (several hours for a substrate area of 1 cm²)

3. Control of Edge Structure

Example of molecular precursor design:

5 nm-wide armchair-type GNR:

Precursor molecule:
       Br            Br
        |            |
  [anthracene]--[anthracene]
        |            |
       Br            Br

After polymerization:
  [anthracene]--[anthracene]--[anthracene]--...
  (width 5 nm, armchair-type edge)

Optimization of synthesis conditions: - Precursor deposition amount: 1-10 ML (monolayers) - Polymerization temperature: 180-220°C - Cyclization temperature: 350-450°C - Reaction time: 30-120 minutes

Edge structure confirmation by scanning tunneling microscopy (STM): - Directly observe the GNR edge structure at atomic resolution - Confirm that it is the armchair type

Machine Learning Methods Used

Data Collection

Input variables (8 dimensions): 1. GNR width: 1-15 nm (STM measurement) 2. Edge structure: armchair/zigzag (categorical variable) 3. Defect density: 0-5% (STM image analysis) 4. Length: 10-500 nm 5. Substrate type: Au, SiO₂, h-BN (hexagonal boron nitride) 6. Doping: n-type/p-type/none 7. Doping concentration: 0-10¹³ cm⁻² 8. Measurement temperature: 4-300 K

Output variables: - Band gap (eV, optical absorption spectroscopy) - Electron mobility (cm²/V·s, field-effect transistor measurement) - ON/OFF ratio (transistor characteristic measurement)

Experimental data: 420 samples + 2,000 samples of DFT calculation data

Use of DFT Calculation Data

Since experimental data alone was insufficient, the data was supplemented with first-principles calculations (Density Functional Theory, DFT).

Calculation conditions: - Software: VASP (Vienna Ab initio Simulation Package) - Exchange-correlation functional: PBE (Perdew-Burke-Ernzerhof) - Cutoff energy: 500 eV - k-point mesh: 1 × 1 × 21 (high density along the ribbon's long axis)

Calculation targets: - Armchair-type GNRs of width 1-15 nm - Zigzag-type GNRs of width 1-15 nm - GNRs containing defects (vacancies, edge defects)

Validation of calculation results: - Confirmed agreement between experimental data (420 samples) and DFT calculations - Band gap RMSE: 0.05 eV (good agreement)

Model Selection: Support Vector Regression (SVR)

Reasons: - Strong with high-dimensional data - Effective even with a small amount of experimental data - Physically reasonable interpolation (resistant to overfitting)

Kernel function: RBF (radial basis function) kernel

Hyperparameter tuning:

from sklearn.svm import SVR
from sklearn.model_selection import GridSearchCV

param_grid = {
    'C': [0.1, 1, 10, 100],
    'gamma': ['scale', 'auto', 0.001, 0.01, 0.1],
    'epsilon': [0.01, 0.05, 0.1]
}

svr = SVR(kernel='rbf')
grid_search = GridSearchCV(svr, param_grid, cv=5, scoring='r2')
grid_search.fit(X_train, y_train)

# Optimal parameters: C=10, gamma=0.01, epsilon=0.05

Model performance: | Output variable | Training R² | Test R² | RMSE | |---------|--------|---------|------| | Band gap | 0.96 | 0.92 | 0.04 eV | | Electron mobility | 0.89 | 0.84 | 180 cm²/V·s | | ON/OFF ratio | 0.85 | 0.79 | 0.35 (log₁₀ scale) |

Optimization

Objective: maximize ON/OFF ratio, maximize electron mobility (multi-objective optimization)

Method: Pareto optimal solution search (NSGA-II)

Optimal conditions: | Parameter | Optimal value | |-----------|--------| | GNR width | 5.2 nm | | Edge structure | armchair type | | Defect density | <0.5% | | Substrate | h-BN | | Doping | none |

Predicted performance: - Band gap: 0.38 eV - ON/OFF ratio: 1.5 × 10⁴ - Electron mobility: 3,200 cm²/V·s

Results and Impact

Performance of the Optimal GNR Transistor

Measured values (5.2 nm-wide, armchair-type GNR): | Property | Measured value | Silicon (comparison) | |-----|--------|----------------| | Band gap | 0.40 eV | 1.12 eV | | ON/OFF ratio | 1.2 × 10⁴ | 10⁶-10⁸ | | Electron mobility | 3,000 cm²/V·s | 1,400 cm²/V·s | | Operating frequency | 100 GHz | 20 GHz | | Power consumption | 0.4 mW | 1.0 mW |

Results: - ON/OFF ratio: achieved the 10⁴ target - Electron mobility: more than twice that of silicon - Operating speed: 5 times that of silicon

Challenges: - The ON/OFF ratio is two orders of magnitude lower than silicon (insufficient for digital circuits) - Applications: limited to high-frequency analog circuits (RF communication, THz detectors)

Cost and Mass Producibility

Manufacturing cost (per wafer): - Molecular precursor synthesis: $500 - Ultra-high vacuum deposition equipment: $2M (equipment depreciation) - Substrate (Au/h-BN): $200 - Process time: 8 hours/wafer

Mass producibility challenges: - Slow synthesis speed (1/100 that of silicon) - Complex transfer process from the gold substrate to the h-BN substrate - Yield: 60% (silicon: 95%)

Application Development

2024: Samsung announced a prototype RF transistor for 5G communication

Performance: - Operating frequency: 100 GHz - Noise figure: 2.8 dB (silicon: 4.5 dB) - Power consumption: reduced by 40%

Future applications: - 6G communication (THz band) - THz imaging (security scanning, medical imaging) - High-speed ADC (analog-to-digital converters)

Lessons Learned

  1. Edge structure is everything: The armchair and zigzag types have completely different properties. Atomic-level precision control is essential
  2. The optimal width is 5-10 nm: A width of 5 nm achieves a practical band gap (0.4 eV) and ON/OFF ratio (10⁴)
  3. The influence of the substrate: On a SiO₂ substrate, surface charge traps reduce mobility to 1/10. An h-BN substrate is essential
  4. Machine learning + DFT: When experimental data is scarce, supplementing it with DFT calculation data improves prediction accuracy
  5. The mass-production process is the biggest challenge: Improving synthesis speed, the transfer process, and yield is the key to commercialization

4.5 Case Study 5: Designing Nanomedicine (Drug Delivery)

Background and Challenges

Anticancer drugs are powerful drugs that kill cancer cells, but because they are also toxic to normal cells, they cause serious side effects (hair loss, nausea, immunosuppression).

Problems with conventional anticancer drugs: - Distributed uniformly throughout the body → accumulation rate in cancer tissue <5% - Large damage to normal cells - Cannot be administered at high doses → limited therapeutic effect

The concept of nanomedicine: By encapsulating anticancer drugs in nanoparticles and delivering them selectively to cancer tissue, therapeutic effects are enhanced and side effects are reduced.

EPR effect (Enhanced Permeability and Retention effect): The blood vessels of cancer tissue are more permeable than those of normal tissue (there are gaps in the vessel walls), so nanoparticles of 100-200 nm leak out and accumulate.

Technical challenges: 1. Size control: around 100 nm is optimal (too small leads to renal excretion, too large leads to capture by the liver) 2. Blood circulation time: unless it circulates for a long time, it will not reach cancer tissue 3. Drug release: a mechanism to release the drug after reaching cancer tissue is needed 4. Targeting: the EPR effect alone is insufficient; receptors on the surface of cancer cells must be targeted

Project Overview

Goals: - Accumulation rate in cancer tissue of 20% or more (5 times the conventional rate) - 30% reduction in side effects (Grade 3 or higher) - Tumor shrinkage rate of 60% or more (conventional: 40%)

Duration: 5 years (2018-2023, including Phase I/II clinical trials)

Team composition: - Pharmaceutical company research lab: 15 members - University medical school (clinical trials): 8 members - University pharmacy school (DDS design): 6 members - Data scientists (machine learning): 2 members

Nanomaterial Technologies Applied

1. PEG-Modified Liposomes

Liposomes are spherical nanoparticles formed by a phospholipid bilayer membrane. They can encapsulate water-soluble drugs internally and lipid-soluble drugs in the membrane.

Liposome structure:

[outer]
PEG chain (5-10 kDa)
  |
phospholipid bilayer (DSPC, cholesterol)
  |
[inner]
aqueous phase (encapsulated anticancer drug doxorubicin)

Effect of PEG modification: - Blood circulation time: 6 hours → 48 hours - Mechanism: the PEG chains exert a "stealth effect," avoiding capture by the immune system (macrophages)

Optimal PEG chain length: | PEG molecular weight | Blood half-life | Cancer tissue accumulation | |----------|----------|-------------| | 2 kDa | 8 hours | 8% | | 5 kDa | 24 hours | 18% | | 10 kDa | 48 hours | 22% | | 20 kDa | 60 hours | 19% (counterproductive due to reduced renal excretion) |

Optimal value: PEG 10 kDa

2. pH-Responsive Drug Release

Since cancer tissue has a lower pH than normal tissue (pH 6.5-6.8 vs. 7.4), the drug is bound with a pH-responsive linker.

pH-responsive linker: hydrazone bond

drug-NH-NH-CO-phospholipid

pH 7.4 (blood): stable (hydrolysis rate <5%/day)
pH 6.5 (cancer tissue): hydrolysis (half-life 2 hours)

Drug release profile (in vitro): | Time | Release rate at pH 7.4 | Release rate at pH 6.5 | |------|---------------|---------------| | 1 hour | 2% | 15% | | 6 hours | 8% | 58% | | 24 hours | 15% | 92% |

3. Folate Receptor Targeting

In addition to the EPR effect, the folate receptor (FR), which is highly expressed on the surface of cancer cells, is targeted.

Folate-modified liposomes: - Folate is bound to the tip of the PEG chain - Selectively binds to cancer cells expressing FR - Taken into the cell via endocytosis

Targeting effect (in vitro): | Liposome type | Cancer cell uptake | Normal cell uptake | |-------------|----------------|----------------| | PEG modification only | 1.0 (reference) | 1.0 (reference) | | Folate modification | 4.2 | 1.1 |

Folate modification improved uptake into cancer cells fourfold, while the impact on normal cells was minimal.

4. Designing the Optimal Formulation

Formulation parameters: 1. Liposome size: 80-150 nm 2. PEG chain length: 2-20 kDa 3. Lipid composition: DSPC/cholesterol ratio 4. Folate modification rate: 0-10 mol% 5. Drug encapsulation amount: 5-20 wt%

Machine Learning Methods Used

Data Collection

Input variables (12 dimensions): 1. Liposome size: 80-150 nm (dynamic light scattering measurement) 2. Size distribution (PDI, Polydispersity Index): 0.05-0.30 3. PEG chain length: 2-20 kDa 4. PEG density: 3-15 mol% 5. Lipid composition (DSPC/cholesterol ratio): 2:1-10:1 6. Folate modification rate: 0-10 mol% 7. Doxorubicin encapsulation amount: 5-20 wt% 8. pH: 6.0-7.4 9. Temperature: 25-40°C 10. Buffer ionic strength: 0.01-0.3 M 11. Serum protein concentration: 0-100% (stability in the presence of serum) 12. Time: 0-72 hours

Output variables: - Drug release rate (%/h) - Blood circulation time (half-life, h) - Cancer tissue accumulation rate (%ID/g, % injected dose per gram of tissue) - Cytotoxicity (IC₅₀, μM)

Experimental data: - in vitro experiments: 200 samples - animal experiments (mice): 80 samples

Model Selection: Random Forest

Reasons: - Can capture nonlinear relationships - Can evaluate feature importance - Resistant to overfitting even with small data

Hyperparameter tuning:

from sklearn.ensemble import RandomForestRegressor

rf = RandomForestRegressor(
    n_estimators=300,
    max_depth=20,
    min_samples_split=5,
    min_samples_leaf=2,
    random_state=42
)

rf.fit(X_train, y_train)

Model performance: | Output variable | Training R² | Test R² | RMSE | |---------|--------|---------|------| | Drug release rate (pH 6.5) | 0.91 | 0.85 | 2.1 %/h | | Blood half-life | 0.87 | 0.80 | 5.2 h | | Cancer tissue accumulation rate | 0.84 | 0.76 | 2.8 %ID/g | | Cytotoxicity (IC₅₀) | 0.89 | 0.82 | 0.15 μM (log₁₀ scale) |

Feature importance (SHAP values): 1. Liposome size (0.28) 2. PEG chain length (0.22) 3. Folate modification rate (0.18) 4. pH (0.15, for drug release rate) 5. Others (0.17)

Optimization

Multi-objective optimization problem: - Objective 1: maximize cancer tissue accumulation rate - Objective 2: minimize accumulation in normal tissue - Objective 3: optimize drug release rate (fast at pH 6.5, slow at pH 7.4)

Method: Bayesian optimization

Optimal formulation: | Parameter | Optimal value | |-----------|--------| | Liposome size | 105 nm | | PEG chain length | 10 kDa | | PEG density | 8 mol% | | DSPC/cholesterol ratio | 5:1 | | Folate modification rate | 5 mol% | | Doxorubicin encapsulation amount | 12 wt% |

Predicted performance (mouse model): - Blood half-life: 44 hours - Cancer tissue accumulation rate: 23 %ID/g - Normal tissue accumulation rate: 3 %ID/g (liver), 2 %ID/g (kidney)

Results and Impact

Preclinical Trials (Mouse Model)

Experimental conditions: - Mice: nude mice (immunodeficient) - Cancer model: HeLa cells (cervical cancer) subcutaneously transplanted - Dose: doxorubicin equivalent 5 mg/kg - Control group: free doxorubicin

Results: | Metric | Free doxorubicin | Folate-modified liposome | |-----|----------------|----------------| | Tumor shrinkage rate (after 21 days) | 38% | 72% | | Survival rate (after 60 days) | 20% | 80% | | Weight loss (side effect indicator) | 15% | 5% | | Cancer tissue accumulation rate | 4.2 %ID/g | 21.5 %ID/g |

Phase I Clinical Trial (Safety Evaluation)

Subjects: 18 patients with solid tumors (breast cancer, lung cancer, colorectal cancer)

Dose: doxorubicin equivalent 20-70 mg/m² (per body surface area)

Results: | Dose (mg/m²) | Grade 3 or higher side effects | Objective response rate | |--------------|-----------------|-----------| | 20 | 0/3 patients | 0% | | 35 | 0/3 patients | 33% (1/3 patients) | | 50 | 1/6 patients (neutropenia) | 50% (3/6 patients) | | 70 | 3/6 patients (neutropenia, cardiotoxicity) | 50% (3/6 patients) |

Maximum tolerated dose (MTD): 50 mg/m² (conventional doxorubicin: 60-75 mg/m²)

Pharmacokinetics (PK): - Blood half-life: 48 hours (free: 6 hours) - Cancer tissue accumulation rate: estimated 18-22 %ID/g (PET image analysis)

Phase II Clinical Trial (Efficacy Evaluation)

Subjects: 120 HER2-negative breast cancer patients (metastatic or postoperative recurrence)

Trial design: - Group A (60 patients): folate-modified liposome (50 mg/m², every 3 weeks) - Group B (60 patients): conventional chemotherapy (paclitaxel + carboplatin)

Primary endpoint: objective response rate (ORR)

Results (12-month follow-up): | Metric | Group A (liposome) | Group B (conventional treatment) | p-value | |-----|---------------|-------------|-----| | Objective response rate (ORR) | 65% | 42% | 0.008 | | Complete response rate (CR) | 18% | 8% | 0.042 | | Progression-free survival (PFS) | 9.2 months | 6.5 months | 0.012 | | Grade 3 or higher side effects | 25% | 40% | 0.031 |

Breakdown of side effects: | Side effect | Group A | Group B | |-------|-----|-----| | Neutropenia | 15% | 30% | | Hair loss | 5% | 35% (marked difference) | | Cardiotoxicity | 3% | 8% | | Peripheral neuropathy | 2% | 12% (from paclitaxel) |

Conclusion of the Phase II trial: Folate-modified liposomes have higher efficacy and fewer side effects than conventional treatment. Progression to a Phase III trial was approved.

Cost and Drug Price

Manufacturing cost (per dose): - Doxorubicin active ingredient: $50 - Liposome materials (lipids, PEG, folate): $120 - Manufacturing process (sterilization, quality control): $80 - Total: $250 (conventional doxorubicin: $60)

Expected drug price: $3,000/dose (patient co-payment after insurance: $300)

Cost-effectiveness: - Additional cost from PFS extension (2.7 months): $10,000/QALY (quality-adjusted life year) - Below the reference value of $50,000/QALY → cost-effective

Lessons Learned

  1. Individual variation in the EPR effect: In Phase II, the accumulation rate varied greatly by patient (10-30 %ID/g). It depends on the cancer type, the degree of angiogenesis, and the inflammatory state
  2. The importance of pH responsiveness: The pH-responsive linker greatly reduced side effects. It suppressed premature release in the bloodstream
  3. The synergistic effect of targeting: The EPR effect + folate targeting doubled the accumulation rate
  4. Development acceleration via machine learning: Formulation optimization, which normally takes 3-5 years, was completed in 18 months with machine learning
  5. Balancing safety and efficacy: A dose of 50 mg/m² is optimal. At 70 mg/m², the increase in side effects outweighs the improvement in efficacy
  6. Concerns about long-term toxicity: PEG accumulation in the body (the accelerated blood clearance, ABC phenomenon) occurs with repeated administration. Caution is needed after 4-6 cycles

4.6 The Future Outlook of Nanomaterials Research

Key Trends

1. Acceleration of AI-Driven Materials Design

The full-scale arrival of Materials Informatics (MI): - Experimental data + computational data + machine learning + automated experimental robots - Materials development period: shortened from 10-20 years to 2-5 years

Example: IBM "RoboRXN" - AI predicts and optimizes organic synthesis reactions - Robots automatically execute the synthesis - Discovers synthesis routes to target compounds in a matter of hours

Application to nanomaterials: - Specify the emission wavelength of a quantum dot, and it automatically proposes synthesis conditions - Enter the target strength of a CNT composite, and it searches for the optimal formulation

Technical elements: - Bayesian optimization: search for the optimal solution with few experiments - Transfer learning: leverage data from similar materials - Active learning: the AI proposes the most informative experimental conditions

2. Sustainable Nanomaterials

Green synthesis methods: Conventional nanomaterial synthesis required organic solvents, high temperatures, and long reaction times. New methods to reduce environmental impact:

Plant-derived reducing agents: - Gold nanoparticles: reduced with green tea extract (catechins) - Silver nanoparticles: reduced with citric acid or ascorbic acid - Advantages: non-toxic, low cost, room-temperature reaction

Use of microorganisms: - Bacteria (Bacillus genus) reduce gold ions → form gold nanoparticles inside the cell - Algae synthesize iron oxide nanoparticles - Advantages: fully bioprocess, zero CO₂ emissions

Biodegradable nanomaterials: - Medical nanoparticles: polylactic acid (PLA), chitosan-based - Naturally degrade in the body → no concerns about long-term toxicity

Recyclable design: - Recovery and reuse processes for precious metal nanoparticles - Chemical recycling of CNTs (carbonization → regrowth)

3. Nano-Bio Integration

DNA origami nanostructures: - Design the base sequence of DNA and create arbitrary 3D shapes through self-assembly - Applications: drug delivery, molecular sensors, nanorobots

Example: Church Lab (Harvard University) - Created a "nanobox" with DNA origami - A mechanism that can open and close its lid (responding to pH, temperature, or specific molecules) - Encapsulates a drug and opens in front of cancer cells

Protein-nanoparticle hybrids: - Immobilize enzymes on gold nanoparticles → biocatalysts - Bind antibodies to quantum dots → cancer cell imaging

Nanorobots: - Molecular machines built from DNA and proteins - Move through the body and release drugs at lesion sites - Current status: at the level of mouse experiments - 2030s: possibility of clinical trials beginning

4. Quantum Nanomaterials

Quantum computing materials: - Superconducting qubits: Josephson junctions (nanoscale Al/AlOx/Al) - Topological qubits: Majorana fermions (nanowire + superconductor) - Challenge: quantum decoherence (caused by defects in nanomaterials)

Topological insulators: - Insulating inside, metallic on the surface - Applied to spintronics (low-power devices that use electron spin) - Materials: Bi₂Se₃, Bi₂Te₃ (nano thin films)

2D material heterostructures: - Stack graphene / h-BN / MoS₂, etc. - New electronic properties emerge from the combination of each layer - Applications: flexible electronics, quantum optics

Example: "Magic-angle" graphene (MIT, 2018) - Two sheets of graphene stacked at a 1.1° rotation - Properties such as superconductivity and Mott insulation emerge - Selected as a "2018 breakthrough" by Nature


4.7 Career Paths: Working in the Nanomaterials Field

Academia (Universities and Research Institutes)

Job Types

Postdoctoral researcher (postdoc): - A fixed-term research position of 2-5 years after obtaining a doctorate - Paper writing, research proposal preparation, assisting with student supervision

Assistant professor: - Fixed-term (5-10 years) or tenure track - Has an independent laboratory (or belongs to an associate professor's laboratory) - Teaching lectures, supervising students, securing research funding

Associate professor: - Heads an independent laboratory - Lectures, student supervision, securing research funding, academic society management

Professor: - Heads a laboratory, manages the department - Leads national projects, provides policy recommendations

Annual Salary (Japan)

Position Salary range Average salary
Postdoc 3.5-5.0 million yen 4.2 million yen
Assistant professor 5.0-7.0 million yen 6.0 million yen
Associate professor 7.0-10.0 million yen 8.5 million yen
Professor 10.0-15.0 million yen 12.0 million yen

Annual salary in the US (for reference): - Postdoc: $50,000-70,000 - Assistant professor: $70,000-90,000 - Associate professor: $90,000-120,000 - Professor: $120,000-200,000+

Advantages

  1. Freedom in research topics: can conduct research based on one's own interests
  2. The reward of supervising students: nurturing the next generation of researchers
  3. International conferences: exchange with researchers worldwide, obtain the latest information
  4. Social standing: respected as an expert
  5. Work-life balance: large discretion over one's time (though long working hours are also common)

Disadvantages

  1. Pressure to secure competitive funding: applying annually to KAKENHI, JST, NEDO, etc.
  2. Many fixed-term positions: about 70% of assistant professors are on fixed terms (Japan)
  3. Salary level: lower than industry (annual salary of 6.0-8.0 million yen 10 years after obtaining a doctorate)
  4. Publication pressure: "Publish or Perish"
  5. Teaching and administrative duties: many tasks besides research (lecture preparation, committees, administrative procedures)

Example Career Path

Typical promotion path:

Obtain doctorate (age 27-30)
  ↓
Postdoc (2-5 years, age 29-35)
  ↓
Assistant professor (5-10 years, age 35-45)
  ↓
Associate professor (10-15 years, age 45-60)
  ↓
Professor (retirement at age 60-65)

Keys to success: - Publish papers in high-IF (Impact Factor) journals during the doctoral and postdoc years (Nature, Science, JACS, Nano Letters, etc.) - Build international collaborative research networks - Establish original research topics - Ability to secure research funding


Industry (Companies)

Job Types

Research and development engineer: - Exploration and development of new materials - Applied research for products - Patent applications, paper publication (policies vary by company)

Product development engineer: - Commercialization of existing technologies - Prototype fabrication, performance evaluation - Mass-production process design

Process engineer: - Optimization of manufacturing processes - Quality control, cost reduction - Coordination with factories

Data scientist (Materials Informatics): - Experimental data analysis - Machine learning model development - Applying AI to materials development

Annual Salary (Japan)

Years of experience Salary range Average salary
New graduate (master's) 4.0-5.5 million yen 4.8 million yen
3-5 years 5.0-7.0 million yen 6.0 million yen
5-10 years 6.5-9.0 million yen 7.5 million yen
10-15 years (management) 10.0-15.0 million yen 12.0 million yen
15+ years (specialist) 12.0-18.0 million yen 14.0 million yen

Annual salary by industry (average): - Chemicals: 7.0 million yen - Electronics: 7.5 million yen - Pharmaceuticals: 8.5 million yen - Foreign-affiliated companies: +20-30% over Japanese companies

Major Companies

Chemicals: - Toray (carbon fiber, CNT composites) - Asahi Kasei (lithium-ion battery separators) - Mitsubishi Chemical (functional materials) - Sumitomo Chemical (organic EL materials) - JSR (semiconductor materials, nanoparticles)

Electronics: - Sony (quantum dot displays, image sensors) - Panasonic (battery materials, catalysts) - Hitachi (nanofabrication technology) - Toshiba (nanomaterial analysis)

Materials: - Nippon Carbon (carbon nanotubes) - JFE Steel (nano steel materials) - AGC (glass, nanocoatings)

Pharmaceuticals: - Takeda Pharmaceutical (nanomedicine, DDS) - Daiichi Sankyo (antibody drugs) - Chugai Pharmaceutical (biopharmaceuticals)

Advantages

  1. Salary level: higher than academia (annual salary of 6.0-7.0 million yen at age 30 with a master's degree)
  2. The impact of commercialization: the products you develop are used in society
  3. Team development: collaborating with diverse experts
  4. Equipment and funding: access to expensive instruments
  5. Stability: lifetime employment (in the case of large companies)

Disadvantages

  1. Freedom in research topics: follow the company's business strategy
  2. Short-term results: results are demanded within 2-3 years
  3. Relocation and reassignment: there may be transfers from a research position to sales or management
  4. Paper publication: often cannot be published due to corporate secrecy
  5. Long working hours: much overtime before project deadlines

Example Career Path

Management track:

Join as a new graduate (master's, age 24)
  ↓
Researcher (5-8 years, age 29-32)
  ↓
Senior researcher (3-5 years, age 32-37)
  ↓
Section manager (group leader) (5-8 years, age 37-45)
  ↓
Department manager (research lab director) (10-15 years, age 45-60)

Specialist track:

Join as a new graduate (master's or doctorate, age 24-27)
  ↓
Researcher (5-8 years)
  ↓
Senior researcher (5-10 years)
  ↓
Senior researcher (fellow) (permanent)

Keys to success: - Patent applications (2-5 per year) - Track record of commercialization - Networks inside and outside the company - Project management ability


Startups

Job Types

Co-founder (CTO, Chief Technology Officer): - Formulating technology strategy - Leading research and development - Presenting to investors

Research and development leader: - Core technology development - Team building - Patent strategy

Product manager: - Defining product specifications - Investigating customer needs - Go-to-market strategy

Salary and Equity

Annual salary: | Stage | Salary range | Notes | |---------|---------|------| | Seed (right after founding) | 3.0-5.0 million yen | before fundraising | | Series A (initial fundraising) | 5.0-8.0 million yen | after raising several hundred million yen | | Series B and later | 7.0-12.0 million yen | after raising over 1 billion yen |

Stock options (equity compensation): - Founding members: 5-20% - Early employees: 0.5-2.0% - Value at IPO: company market capitalization × shareholding ratio - Example: market cap of 10 billion yen, 1% shareholding → 100 million yen (before tax)

Advantages

  1. Social implementation of innovative technology: create products that large companies cannot
  2. Discretion and responsibility: you can make your own decisions
  3. Large returns from an IPO: the potential for tens of millions to hundreds of millions of yen
  4. Skill growth: learn not only technology but also management, fundraising, and marketing
  5. A challenging environment: easy for the younger generation to be active

Disadvantages

  1. Unstable income: risk of unpaid salaries due to fundraising failure
  2. Long working hours: 60-80 hours a week is normal
  3. Risk of failure: 90% of startups fail
  4. Benefits: not as generous as at large companies
  5. Mental pressure: cash flow, competitors, customer acquisition

Success Stories

Japanese nanomaterial startups:

  1. Zeon Nano Technology (CNT mass-production technology) - Founded: 2017 - Funds raised: cumulative 5 billion yen - Technology: mass production of CNTs by the super-growth method - Applications: EV batteries, composites

  2. Quantum Solutions (quantum dot displays) - Founded: 2019 - Funds raised: cumulative 3 billion yen - Technology: cadmium-free quantum dots - Customers: major display manufacturers

  3. NanoCare Systems (nano DDS) - Founded: 2020 - Funds raised: cumulative 2 billion yen - Technology: mRNA lipid nanoparticles - Pipeline: cancer vaccine (in Phase I clinical trials)

Example Career Path

Success pattern:

Obtain doctorate + postdoc (hone your technology)
  ↓
3-5 years at a large company (understand the industry, build connections)
  ↓
Found a startup (age 30-35)
  ↓
Raise seed funding (10-50 million yen)
  ↓
Series A (300 million - 1 billion yen)
  ↓
Commercialization, sales expansion
  ↓
IPO or M&A (5-10 years after founding)

Failure pattern:

Founding
  ↓
Fundraising failure (excellent technology but unclear business model)
  ↓
Continue development with own funds (3-5 years)
  ↓
Funds run out, business closure
  ↓
Re-employment at a large company

Required Skill Set

Technical Skills

  1. Nanomaterial synthesis and characterization: - Chemical synthesis techniques (solution-phase, gas-phase, solid-phase methods) - Surface and interface control - Analytical techniques (TEM, XRD, XPS, Raman, AFM, etc.)

  2. Data analysis: - Python (NumPy, Pandas, Matplotlib, Scikit-learn) - R (statistical analysis) - MATLAB (engineering computation) - Origin (graph creation)

  3. Machine learning and Materials Informatics: - Supervised learning (regression, classification) - Bayesian optimization - Neural networks - Feature engineering

  4. First-principles calculations: - VASP (Density Functional Theory) - Gaussian (quantum chemistry calculations) - LAMMPS (molecular dynamics)

  5. Programming: - Python (essential) - C/C++ (high-speed computation) - Julia (scientific computing) - Git (version control)

Business Skills

  1. Project management: - Schedule management (Gantt charts) - Risk management - Team communication

  2. Intellectual property: - Patent searches (PatentScope, J-PlatPat) - How to read and write patent specifications - Prior art searches

  3. Presentation: - Conference presentations (PowerPoint, Keynote) - Storytelling - Figure and table design

  4. English: - Paper writing (TOEIC 800+ recommended) - Conference presentations (oral, poster) - Discussion ability

Recommended Qualifications

The degree is most important: - Master's degree: minimum requirement for a corporate research position - Doctorate: essential in academia and startups

Optional qualifications: - G Certification (JDLA Deep Learning for General): basic AI knowledge - E Certification (JDLA Deep Learning for Engineer): AI implementation ability - Statistics Certification Level 2 or higher: fundamentals of data analysis - Hazardous Materials Handler (Class A): handling of chemical substances


Summary

In this chapter, we learned about actual success stories in nanomaterials research and about careers in this field.

Key Points

1. Keys to Commercialization

The power of machine learning: - CNT composites: 1/3 the number of experiments, half the development time - Quantum dots: achieved size uniformity of ±3%, vs. the conventional ±15% - Gold catalysts: 70% reduction in the number of experiments - Graphene: improved prediction accuracy through combination with DFT calculations - Nanomedicine: formulation optimization period 3-5 years → 18 months

The scale-up challenge: - The transition from the laboratory scale (g) to the mass-production scale (kg) is the biggest barrier - Fluid dynamics, heat transport, and mass diffusion all change - Re-optimization is essential

Balancing cost, performance, and safety: - CNTs: performance +51%, cost +38% - Gold catalysts: 1/2 the cost of platinum, 90% activity - Nanomedicine: 1.5 times the efficacy, 15% reduction in side effects

2. Common Features of the Success Stories

  1. Clear goal setting: numerical targets (strength +50%, ON/OFF ratio 10⁴, etc.)
  2. Interdisciplinary teams: materials science + machine learning + application-field experts
  3. Sufficient development period: 2-5 years (difficult in a short period)
  4. Systematic accumulation of experimental data: 200-700 samples (needed for machine learning)
  5. Fusion with physical models: Brus equation, DFT calculations + machine learning

3. Career Options

Item Academia Industry Startup
Salary (age 30) 5.0-6.0 million yen 6.0-7.0 million yen 4.0-6.0 million yen + stock options
Research freedom High Moderate Very high (but funding-constrained)
Commercialization Indirect Direct Direct
Stability Low (fixed-term) High Very low
Return Limited Stable High-risk, high-return

4. Skills Required

Technical side (essential): - Experimental skills in nanomaterial synthesis and evaluation - Python (data analysis, machine learning) - Paper writing, English presentations

Technical side (recommended): - First-principles calculations (VASP, Gaussian) - Theoretical understanding of statistics and machine learning - C/C++ (high-speed computation)

Business side: - Project management - Patent searches, specification writing - Presentation

Next Steps

Through this series, "Introduction to Nanomaterials: From Size Effects to AI Design," we have learned the following:

Chapter 1: The fundamentals of nanomaterials, size effects, property changes Chapter 2: Machine learning methods, leveraging experimental data, feature design Chapter 3: Practical exercises with Python, data analysis, optimization Chapter 4: Real-world applications, success stories, career paths

To Deepen Your Learning Further

1. Laboratory practicum: - University internships (intensive summer courses) - Corporate research lab tours - Open lab programs

2. Online courses: - Coursera: "Nanotechnology: The Basics" (Rice University) - edX: "Applications of Nanotechnology" (MIT) - Udemy: "Materials Informatics with Python"

3. Conference attendance: - Chemical Society of Japan (spring and autumn annual meetings) - Japan Society of Applied Physics - Materials Research Society (MRS) - American Chemical Society (ACS) Nano Division

4. Reading papers: - Nature Nanotechnology (IF: 40+) - ACS Nano (IF: 18+) - Nano Letters (IF: 12+) - Advanced Materials (IF: 30+) - Journal of Physical Chemistry C (IF: 4+)

5. Books: - "Introduction to Nanotechnology" (Charles P. Poole Jr.) - "Materials Informatics" (ed. Krishnan Rajan) - "Handbook of Nanomaterials" (Springer)

A Message to You All

Nanomaterials are a fascinating field directly linked to solving societal challenges such as energy, the environment, medicine, and information and communication. Through integration with AI and machine learning, materials development is entering a new era.

Three pieces of advice for succeeding in this field:

  1. Keep your curiosity: always ask "why?" and strive to understand the essence
  2. Learn across disciplines: cross the boundaries of chemistry, physics, information science, and biology
  3. Get hands-on: hone both experimental and programming skills

We look forward to your future achievements. Good luck!


4.6 End-of-Chapter Checklist: Quality Assurance of Real-World Application Skills and Strategic Thinking

Systematically check the knowledge and skills needed for applying nanomaterials to the real world, future trends, and career building.

4.6.1 Understanding of Success Stories (Case Study Analysis)

Basic Level

Applied Level

Advanced Level (Critical Thinking)


4.6.2 Industry Impact Assessment Skills

Basic Level

Applied Level

Advanced Level (Business Perspective)


4.6.3 Technical Deep-Dive Skills

Technical Understanding of CNT Composites

Technical Understanding of Quantum Dots

Technical Understanding of Gold Catalysts

Technical Understanding of Graphene Nanoribbons

Technical Understanding of Nanomedicine


4.6.4 Understanding and Forecasting Future Trends (Future Trends Forecasting)

Basic Level

Applied Level

Advanced Level (Strategic Thinking)


4.6.5 Career Planning Skills

Basic Level

Applied Level

Advanced Level (Self-Analysis and Strategy Formulation)


4.6.6 Mastery of the Essential Skill Set (Essential Skill Mastery)

Experimental Technique Skills

Programming Skills

Paper and Presentation Skills

Project Management Skills


4.6.7 Overall Evaluation: Proficiency Level Assessment

Use the following level assessment to confirm your level of achievement.

Level 1: Beginner

Target: Understand the five success stories and be able to explain the characteristics of your own career path (academia, industry, startup)


Level 2: Intermediate

Target: Understand the technical details of the success stories and quantitatively explain the effects of machine learning (development period reduction, cost reduction). Choose your career goal with justification.


Level 3: Advanced

Target: Critically evaluate the limitations and challenges of the success stories and propose new research topics. Formulate a concrete 3-year plan toward your career goal.


Level 4: Expert

Target: - Utilize machine learning in a real nanomaterials project to achieve development period reduction and cost reduction - Present research results in papers and at conferences - Have a clear roadmap toward your career goal (academia, industry, startup) - Demonstrate leadership as a next-generation nanomaterials researcher


4.6.8 Practical Project Check: Self-Assessment

Case Study Analysis Assignment (equivalent to Exercises 1-2)

Career Plan Formulation Assignment (equivalent to Exercise 4)

Sustainability Project Assignment (equivalent to Exercise 5)


4.6.9 Readiness Check for the Next Steps

Preparation for Graduate School

Preparation for Job Hunting

Preparation for Entrepreneurship / Joining a Startup

Preparation for Continuous Learning


Tips for using the checklist: 1. Review regularly: once a month, check your progress against your career plan 2. Prioritize unachieved items: strengthen your overall ability by overcoming weaknesses 3. Record your level assessment: aim to level up every 3 months 4. Mentor and peer review: seek feedback from others 5. Use in practice: use for self-assessment during job hunting and research fund applications


References

  1. De Volder, M. F. et al. (2013). Carbon nanotubes: present and future commercial applications. Science, 339(6119), 535-539. DOI: 10.1126/science.1222453

  2. Carey, G. H. et al. (2015). Colloidal quantum dot solar cells. Chemical Reviews, 115(23), 12732-12763. DOI: 10.1021/acs.chemrev.5b00063

  3. Haruta, M. (2004). Gold as a novel catalyst in the 21st century: Preparation, working mechanism and applications. Gold Bulletin, 37(1-2), 27-36. DOI: 10.1007/BF03215514

  4. Shi, Z. et al. (2016). Vapor-liquid-solid growth of large-area multilayer hexagonal boron nitride on dielectric substrates. Nature Communications, 7, 10426. DOI: 10.1038/ncomms10426

  5. Peer, D. et al. (2007). Nanocarriers as an emerging platform for cancer therapy. Nature Nanotechnology, 2(12), 751-760. DOI: 10.1038/nnano.2007.387

  6. Butler, K. T. et al. (2018). Machine learning for molecular and materials science. Nature, 559(7715), 547-555. DOI: 10.1038/s41586-018-0337-2

  7. Sanchez-Lengeling, B. & Aspuru-Guzik, A. (2018). Inverse molecular design using machine learning: Generative models for matter engineering. Science, 361(6400), 360-365. DOI: 10.1126/science.aat2663

  8. Rothemund, P. W. (2006). Folding DNA to create nanoscale shapes and patterns. Nature, 440(7082), 297-302. DOI: 10.1038/nature04586

  9. Cao, Y. et al. (2018). Unconventional superconductivity in magic-angle graphene superlattices. Nature, 556(7699), 43-50. DOI: 10.1038/nature26160

  10. Novoselov, K. S. et al. (2004). Electric field effect in atomically thin carbon films. Science, 306(5696), 666-669. DOI: 10.1126/science.1102896


← Previous Chapter: Hands-On Python Tutorial | Back to Series Index →

Disclaimer