概要
トリアセチンは、食品用溶媒・可塑剤として用いられる高沸点キャリアです。沸点が高いので揮発がゆるやかで、香りの尾(ベース)を支える設計に向いています。
同義/別表記:グリセリン三酢酸エステル、triacetin 、glycerol triacetate
詳説
特性
脂肪臭、苦味があります。エタノールより残留しやすいため、トップは精油+ティンクチャー等で補うとバランスが良いです。
食品添加物(INS番号1518)として、主に乳化剤や溶剤、ガムベースとして使用されます。キャンディー、ガム、ベーカリー製品などで使われ、食感の向上や成分の安定化に役立ちます。また、アメリカ食品医薬品局(FDA)によりGRAS(一般に安全と認められる)物質に分類されており、日本の食品添加物としても指定されています。
取扱
密閉容器で遮光・常温保管します。
表示
各国の添加物基準に従って表示します。日本では「トリアセチン」または「グリセロールトリアセタート」と表示されます。
🫖紅茶文脈での使い方(英語短文)
英文: We used triacetin as a carrier to anchor vanilla notes while keeping the top clean.
和訳: (トリアセチンをキャリアに使い、バニラのベースを支えつつトップをクリアに保ちました。)
英文: Switching from ethanol to triacetin may require a slightly lower dosage and longer resting.
和訳: (エタノール→トリアセチンに替える場合は、添加量を少し下げ、馴染ませ期間を長めにすると安定します。)
🧸くまの一言
トリアセチンはいろいろな用途に使われますが、一番わかりやすい使い方としては「香りを長持ちさせる」目的です。実際トリアセチンにエッセンシャルオイルなどを溶かし込むと、ものによって差はありますが香りが長持ちします。
/* 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()
]);
?>