概要
ヘッドスペース分析とは試料の上部空間(ヘッドスペース)に揮散した香気成分を捕集・分析する方法です。乾葉/熱湯抽出など条件別の香りを比較することができます。
同義/別表記:HS分析、HS-SPME、headspace analysis(しばしば SPME–GC–MS と組み合わせ)
詳説
手順例
SPMEファイバーで捕集
→GC–MSで分離・同定
→寄与分析
紅茶実務
- 乾葉ヘッドスペース=銘柄の個性。
- 熱抽出ヘッドスペース=飲用時の立ち上がりの把握に有効。
🫖紅茶文脈での使い方(英語短文)
英文: Headspace analysis of hot infusions showed higher linalool oxide and citral in the top note.
和訳: (熱抽出ヘッドスペースで、リナロール酸化物とシトラールのトップ寄与が高いと分かりました。)
🧸くまの一言
ヘッドスペース分析はいかにも化学的に「紅茶の個性」を確かめているという実感の持てる手法です。
/* 1) 関連用語(辞典用のパーツ名に合わせて) */
get_template_part('parts/related-dictionary', null, ['post_id' => get_the_ID()]); /* 2) 「辞典カテゴリ」:公開&階層のタクソノミーを1種類だけ出す
- post_tag / category / post_format / dictionary_tag は除外 */
$dict_cat_tax = null;
$tx_objs = get_object_taxonomies( get_post_type(), 'objects' );
if ( $tx_objs ) {
foreach ( $tx_objs as $tx ) {
if ( ! $tx->public || ! $tx->hierarchical ) continue;
if ( in_array($tx->name, ['post_tag','category','post_format','dictionary_tag'], true) ) continue;
if ( stripos($tx->name,'dictionary') !== false
|| stripos($tx->labels->name,'辞典') !== false
|| stripos($tx->labels->name,'Tea Term') !== false ) {
$dict_cat_tax = $tx->name; break;
}
}
}
if ( $dict_cat_tax ) {
$terms = get_the_terms( get_the_ID(), $dict_cat_tax );
if ( $terms && ! is_wp_error($terms) ) {
echo '';
}
} /* 3) 「辞書タグ」:dictionary_tag をピルで出す(無ければ何も出さない) */
$tags = get_the_terms( get_the_ID(), 'dictionary_tag' );
if ( $tags && ! is_wp_error($tags) ) {
echo '';
} /* 4) 前/次ナビ(安全版の parts/adjacent.php を使っていればそのままでOK) */
get_template_part('parts/adjacent', null, [
'post_id' => get_the_ID(),
'post_type' => get_post_type()
]);
?>