-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis_chap3.tex
1343 lines (1267 loc) · 78.3 KB
/
thesis_chap3.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\chapter{Ultrafast Structural Dynamics of (EDO-TTF)\textsubscript{2}X}
\label{ch: UED-EDO}
In this chapter, I will present two studies on the photoinduced structural dynamics
of the crystalline material (EDO-TTF)\textsubscript{2}X. For context,
a general overview of this molecular system will be given. This is followed by a description
of the experimental procedure and a discussion of the results from the studies.
The works herein have been reported in the articles
``Mapping Molecular Motions Leading to Charge Delocalization with Ultrabright Electrons''
and ``Ultrafast Electron Diffraction Study of Single-Crystal
(EDO-TTF)\textsubscript{2}SbF\textsubscript{6}: Counterion Effect and Dimensionality Reduction,''
previously published in the journals Nature and Chemical Physics Letters respectively~\cite{Gao2013, Liu2017}.
\section{Overview of (EDO-TTF)\textsubscript{2}X Molecular Systems}
\label{sec: UED-EDO-overview}
In 1941, Albert Szent-Gy\"{o}rgyi%
\footnote{Albert Szent-Gy\"{o}rgyi (1893--1986) is a Hungarian biochemist
who won the Nobel Prize in Physiology or Medicine in 1937
for his work in vitamin C and the chemistry of cellular respiration~\cite{Nobel1922}.}%
proposed that some processes in biological systems, such as photosynthesis,
could be explained by long-range light-induced transfer of electrons
through a chain of interacting proteins in a manner analogous to electrical conduction in metals
as described by band theory~\cite{Szent1941, Szent1946}.
%
Such an `organic metal' would combine the mechanical and functional versatility of an organic%
\footnote{`Organic' originally refers to that which is solely derived from living organisms;
it has now been generalized to describe chemistry that involves the element carbon,
often in association with other nonmetals.}
compound with the electron transport properties of a conventional metal ($\sigma \gtrsim 10^3$~S/cm,
see Fig.~\ref{fig: EDO-overview}a).
%
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_overview.pdf}
\caption[Overview of organic metallicity.]{
Overview of organic metallicity.
(a) Electrical conductivity of various materials for comparison~\cite{CRCHandbook, TTFBook}.
(b) Structural building blocks of Bechgaard-Fabre salts and related compounds
(white = hydrogen, black = carbon, blue = nitrogen, red = oxygen, green = fluorine, brown = phosphorus, orange = selenium).
(c) Schematic of the crystal structure of (TMTSF)\textsubscript{2}PF\textsubscript{6},
showing the overlapping regions of positive (pink) and negative (gray) charge
that enable electrical conduction.
(d) Generalized phase diagram of Bechgaard-Fabre salts;
behaviour at standard ambient pressure is indicated by arrows at top;
abbreviations: `loc' = localization, `CO' = charge ordering, `SP' = spin-Peierls,
`AFM' = antiferromagnetism, `SDW' = spin-density wave, `SC' = superconductivity, `ND' = n-dimensional;
solid lines represent phase transitions while dashed lines are crossovers.
(e) Electrical resistivity $\rho_\parallel$ along the stacking axis
as a function of temperature at standard ambient pressure;
note the superconductive transition of (TMTSF)\textsubscript{2}ClO\textsubscript{4}.
Panels~(c)--(e) are adapted with permission from
Refs.~\cite{BechgaardJerome1982, Dressel2007, Jerome1982} respectively.
}
\label{fig: EDO-overview}
\end{figure}
%
This prospect stimulated significant interest amongst chemists and material scientists,
leading to the discovery of moderately conductive but short-lived compounds like perylene--bromine
($\sigma \sim 1$~S/cm) in 1954~\cite{Akamatu1954} and a proposal by William A. Lamb in 1964
of a synthetic organic polymer that remains superconductive at room temperature~\cite{Little1964}.
A major breakthrough came in 1977 when Shirakawa and his collaborators%
\footnote{This work netted the 2000 Nobel Prize in Chemistry
for Alan J. Heeger (1936--present), Alan G. MacDiarmid (1927--2007),
and Hideki Shirakawa (1936--present)~\cite{Nobel1996}.}
%
discovered that doping \textit{trans}-polyacetylene with iodine vapour
can increase its electrical conductivity by seven orders of magnitude,
reaching $\sigma = 38$~S/cm at room temperature~\cite{Shirakawa1977}.
Around the same time, Coleman, Ferraris, and their coworkers combined
two recently discovered molecules, tetrathiafulvalene~(TTF) and
tetracyano-\textit{p}-quinodimethane~(TCNQ),
to prepare a 1:1 complex that, when crystallized,
conducts like a metal over a large range of temperature
($\sigma_\text{max} = 1.47 \times 10^4$~S/cm)~\cite{Wudl1970, Coleman1973, Ferraris1973}.
The molecule TTF-TCNQ was not simply the result of serendipity but a sagacious feat of molecular design.
%
High electron mobility requires good overlap of valence orbitals
that are not completely filled, thus allowing electrons to easily move from one molecule to another.
However, this requirement also tends to destabilize the material
as the unpaired valence electrons make it susceptible to chemical attack by other substances.
%
It happens that TTF and TCNQ can readily donate and accept electrons
while remaining chemically stable because of the aromaticity%
\footnote{A molecule is said to be aromatic when it has a flat ring of atoms
bound together by an set of overlapping p orbitals.}
of the resulting radical ions, TTF$^+$ and TCNQ$^-$~\cite{LittleBook}.
When crystallized together, TTF and TCNQ molecules self-assemble into
separate stacks of molecules lying parallel to each other
as each species interacts amongst themselves through their heteroatoms and
$\unslant[-.2]\pi$~orbitals (see Fig.~\ref{fig: EDO-overview}b).
%
A partial charge transfer (ca.~$0.56$~e$^-$) occurs and the ions flatten,
further overlapping the $\unslant[-.2]\pi$ orbitals within each stack and
forming an array of conductive wires through the crystal
in the direction of the stacking axis.
In the absence of significant interstack orbital overlap,
bulk TTF-TCNQ behaves as a loose ensemble of
quasi-one-dimensional electron systems, which are highly susceptible to
Peierls instability,%
\footnote{Rudolf E. Peierls (1907--1995) noted in 1954 that
one-dimensional periodic arrangements of atoms with delocalized electrons
tend to dimerize due to electron--phonon coupling~\cite{PeierlsBook}.
}
%
a cooperative phenomenon that eventually destroys the conductive state of TTF-TCNQ
at low temperature ($T \approx $~38--54~K).
%
In a bid to stave off this metal--insulator~(MI) phase transition,
Bechgaard, Fabre, and their coworkers synthesized a new class of
charge-transfer~(CT) compounds based on molecular design principles
similar to those of TTF-TCNQ~\cite{Bechgaard1980}.
%
Known as Bechgaard-Fabre salts,%
\footnote{Named for Danish chemist Klaus Bechgaard (1945--2017) and
French chemist Jean-Marc Fabre (1943--present) who respectively
first synthesized the selenium (TMTSF) and sulfur (TMTTF) derivatives of TMTCF~\cite{Pouget2012}.}
%
they have the chemical formula (TMTCF)\textsubscript{2}X,
where TMTCF$^{0.5+}$ is tetramethyl-tetrachalcofulvalene
and X is a monovalent weakly-coordinating anion like
hexafluoropnictate (PnF\textsubscript{6}$^-$).%
\footnote{Chalcogens are chemical elements in group 16 of the periodic table, e.g.~sulfur and selenium;
pnictogens are those in group 15, e.g.~phosphorus and antimony.}
When crystallized, (TMTCF)\textsubscript{2}X forms a strongly anisotropic material
as the flat cations assemble in parallel, into conductive stacks separated by columns of isolated anions
(see Fig.~\ref{fig: EDO-overview}c for a schematic view).
%
Given this lattice structure and the resulting electronic system,
competing interactions and a subtle interplay
of the charge, spin, and nuclear degrees of freedom
give rise to a variety of collective phenomena~\cite{Kohler2011}.
%
In Fig.~\ref{fig: EDO-overview}d,
a generalized phase diagram of Bechgaard-Fabre salts is shown;
it is replete with ground states separated by phase transitions and crossovers
that can be induced by fine-tuning the coupling within and between the molecular stacks
through pressure --- externally applied
or chemically induced via anion substitution~\cite{Jerome1991}.
%
In 1980, it was discovered that superconductivity could be achieved in
(TMTSF)\textsubscript{2}PF\textsubscript{6} at $T \leq 1.3$~K
by applying $>6$~kBar of pressure~\cite{Bechgaard1980, Jerome1980};
one year later, the perchlorate (ClO\textsubscript{4}$^-$) salt was found
to become superconductive at about the same temperature but under standard ambient pressure
(Fig.~\ref{fig: EDO-overview}e)~\cite{Bechgaard1981, Jerome1982}.
From above, it is clear that the material properties of Bechgaard-Fabre salts depend crucially on
the network of orbital overlaps and weak intermolecular interactions throughout the crystal lattice.
%
To explore this rich physics, numerous other derivatives of prototypical TTF~molecule have been synthesized
by attaching functional substituents to both or either side of the TTF~core.
%
One of them is 4,5-ethylenedioxy-tetrathiafulvalene (EDO-TTF)~\cite{Papavassiliou1990, Mori1990, Meziere2000}
and its 2:1 radical-cation salts (EDO-TTF)\textsubscript{2}X
have been observed to exhibit a MI phase transition upon cooling
unlike any other before~\cite{Ota2002, Ota2003, Ota2006}.
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_static.pdf}
\caption[Metal--insulator phase transition in (EDO-TTF)\textsubscript{2}PF\textsubscript{6}.]{
Metal--insulator phase transition in (EDO-TTF)\textsubscript{2}PF\textsubscript{6}.
Temperature dependence of (a) electrical resistivity, (b) magnetic susceptibility,
and (c) optical conductivity along the stacking axis.
(d) Raman spectra of (EDO-TTF)\textsubscript{2}AsF\textsubscript{6}
above and below $T_\text{MI}$, along with that of neutral EDO-TTF and
(EDO-TTF)$^+$(IBr\textsubscript{2})$^-$;
peaks associated with charge-sensitive C=C stretching modes are color-coded.
Charge density isosurfaces (0.7~e$^-$/\AA$^3$) calculated from XRD data,
as viewed (e) along the stacking axis and (f) from the side,
coloured by charge state (blue: $+1e$, green: $+0.5e$, yellow: $+0e$, red: $-1e$);
(g) lower isosurfaces (ca.~$0.1$~e$^-$/\AA$^3$)
with relevant orbital overlap integral values $S$ ($\times 10^{-3}$).
(h) Thermal ellipsoids of the PF\textsubscript{6} anions.
Panels~(a), (b), and (g) are adapted with permission from Ref.~\cite{Ota2002};
(c) and (d), from Refs.~\cite{Drozdova2003, Drozdova2004} respectively;
(e)--(f), from Ref.~\cite{Aoyagi2004}.
}
\label{fig: EDO-static}
\end{figure}
%
At room temperature, single-crystal (EDO-TTF)\textsubscript{2}PF\textsubscript{6}
appears black and is highly reflective.
%
As seen in Fig.~\ref{fig: EDO-static}a,
the electrical conductivity decreases abruptly at $279.0$~K from $60$~S/cm to
$1.4 \times 10^{-5}$~S/cm and subsequently varies with an activation energy of $0.52$~eV,
indicating a first-order MI phase transition from a high-temperature (HT) metallic phase
to a low-temperature (LT) insulator phase at $T_\text{MI} = 279.0$~K.
%
This is observed again with optical conductivity measurements (Fig.~\ref{fig: EDO-static}c),
which show the simultaneous disappearance of a broad Drude%
\footnote{German physicist Paul Drude (1863--1906) studied optical phenomena
from the perspective of electromagnetism and introduced a classical model of metals
to explain their transport properties~\cite{DrudeBioBook}.}
feature typical of metals and the appearance of two sharp peaks at 4500~cm$^{-1}$ and 11150~cm$^{-1}$.
XRD measurements of the HT phase reveal a triclinic crystal structure with P$\overline{1}$ symmetry,
not too dissimilar to those of (TMTCF)\textsubscript{2}X:
`nearly flat' EDO-TTF molecules stacked perpendicularly in a head--tail arrangement
with PF\textsubscript{6} molecules at cell vertices,
slotted in the soft cavities formed by the terminal ethylene groups.
Overlapping $\unslant[-.2]\pi$~orbitals along the stacking axis form
a quasi-1D electronic band structure that becomes $\frac{3}{4}$-filled%
\footnote{Hole-wise, $\frac{1}{4}$-filled; each of the two EDO-TTF molecules has two valence electrons
and one of the four in total is transferred to the PF\textsubscript{6} molecule.}
during the CT process.
%
The LT phase has a significantly different crystal structure:
the P$\overline{1}$ triclinic unit cell is doubled along the stacking axis
to include four EDO-TTF molecules,
alternating pairwise between two nonequivalent --- `flat' and `bent'%
\footnote{The curvature of the EDO-TTF molecule refers to the sum of
the dihedral angles of the atom chain O--C--S--C and C=C--S--C;
`flat': 1.87$^\circ$, `nearly flat': 2.08$^\circ$, `bent': 13.42$^\circ$.} ---
structures and two PF\textsubscript{6} molecules that are displaced from
the highly symmetric cell vertices.
%
These concomitant pairwise symmetry-breaking structural distortions indicates that
the MI phase transition is in part driven by Peierls instability.
This cooperativity is also evidenced by the bistability of phases seen in
the thermal hysteresis of the magnetic susceptibility (Fig.~\ref{fig: EDO-static}b).
Close inspection of the charge density reconstructed from the XRD data reveals
other unexpected differences between the LT and HT phases.
As seen in Fig.~\ref{fig: EDO-static}g, a `bond order' is apparent
when the intermolecular distances and orbital overlap integral values are calculated~\cite{Aoyagi2004};
below $T_\text{MI}$, bonding along the EDO-TTF stack strengthens
between the pairs of flat molecules while it weakens between the bent ones and
disappears between the dimers.
Furthermore, there is `anion ordering'~\cite{Ota2002}.
From Fig.~\ref{fig: EDO-static}h,
the PF\textsubscript{6} anions in the metallic HT phase are located at the inversion centres
of the unit cell and exhibit rotational disorder whilst the fluorine atoms are isotropically distributed
with large thermal ellipsoids.
%
In the insulator LT phase, the anions are displaced
from their special position of symmetry in the direction of the EDO-TTF stacking axis
and become uniaxially oriented as the atomic displacement parameters of the fluorine atoms
are drastically reduced and the F--P--F bonds point to the sulfur atoms on the neighbouring EDO-TTF molecules.
%
This suggests that the counterions are not merely spectating the MI phase transition
but are actively affected by the bond-coupled Peierls-type phonons of the EDO-TTF cations
through electrostatic interactions~\cite{Aoyagi2004}.
In Fig.~\ref{fig: EDO-static}d,
Raman spectra of (EDO-TTF)\textsubscript{2}X taken at different temperatures show splitting and shifting
of peaks associated with C=C stretching modes that are sensitive to the molecular charge.
Comparison with the spectrum of neutral and charged molecules suggests that the LT phase is composed of
electron donors in two different charge states~\cite{Drozdova2004}.
%
Analysis of charge-sensitive bond lengths~\cite{Ota2002} and
electron counting using XRD-derived charge densities~\cite{Aoyagi2004} further assign
a charge state of +0.5 to the nearly flat EDO-TTF molecules of the HT phase and
$+1e$ and $+0e$ to the flat and bent molecules of the LT phase respectively.%
\footnote{More precisely, nearly flat: $+(0.6 \pm 0.1)e$,
flat: $+(0.8 \pm 0.1)e$, and bent: $+(0.2 \pm 0.1)e$~\cite{Aoyagi2004}.}
%
Hence, a `charge order' commensurate with the previously described bond order
emerges during the MI~phase transition
as the charge-distributed state --- denoted D$^{+0.5}$D$^{+0.5}$D$^{+0.5}$D$^{+0.5}$ or $(\frac{1}{2} \frac{1}{2} \frac{1}{2} \frac{1}{2})$ ---
that is present in the metallic HT phase undergoes disproportionation and molecular deformation at $T_\text{MI}$,
transforming into the charge-localized $(1001)$ state of the insulator LT phase
(Fig.~\ref{fig: EDO-static}e--f).
It is remarkable that the $(1001)$ state of the LT phase is stable
since intuition would have instead given way to an alternating Wigner-type%
\footnote{Hungarian physicist and Nobel laureate Eugene P. Wigner (1902--1995) predicted in 1934
that a free electron gas would crystallize in the limit of zero kinetic energy~\cite{Nobel1963, Wigner1934}.}
$(1010)$ charge state wherein on- and off-site Coulomb repulsion would have been minimized,
as in the case of other quasi-1D molecular systems like
(DI-DCNQI)\textsubscript{2}Ag and (TMTTF)\textsubscript{2}PF\textsubscript{6}~\cite{Seo1997, Hiraki1998, Chow2000}.
%
However, this simplistic assessment ignores the energetic contribution of charge-dependent molecular deformations
and localized electrostatic interactions between the EDO-TTF and PF\textsubscript{6} molecules.
%
Indeed, the $(1001)$ charge order can be found when intermolecular Peierls-type and
intramolecular Holstein-type electron--phonon interactions are included in an extended Hubbard model%
\footnote{American physicist Theodore D. Holstein (1915--1985)~\cite{Emin1986}
introduced in a series of papers~\cite{Holstein1959} an eponymous electron--phonon coupling Hamiltonian
that describes electrons hopping around a fixed lattice of local oscillators;
British physicist John Hubbard (1931--1980)~\cite{Rice1981} also introduced
around the same time~\cite{Hubbard1963} a now-classic Hamiltonian that models
a system of hopping electrons that experience short- (on-site) and
intermediate- (nearest-neighbour) range Coulomb repulsion.}~\cite{Ung1994, Clay2003, Yonemitsu2007}.
Calculations using the `extended Peierls-Holstein-Hubbard' (ex-PHH) model Hamiltonian
(see App.~\ref{ap: exPHH})
have been used to reproduce and assign the two distinct peaks
--- 4500~cm$^{-1}$ ($= 0.56$~eV) and 11150~cm$^{-1}$ ($= 1.38$~eV) ---
in the optical conductivity spectrum of the LT phase (Fig.~\ref{fig: EDO-static}c).
%
Both%
\footnote{A third CT band (CT3) at 6150~cm$^{-1}$ ($= 0.76$~eV),
more clearly seen on shoulder of CT1 below 100~K, is assigned to an excitation
to a mixture of the $(1010)$ and $(2000)$ states~\cite{Drozdova2004}.}
appear to be charge-transfer bands (denoted CT1 and CT2),
resulting from electronic excitation of the type D$^+$D$^0$~$\rightarrow$~D$^0$D$^+$ or $(1001) \rightarrow (0101)$
and D$^+$D$^+$~$\rightarrow$~D$^{2+}$D$^0$ or $(1001) \rightarrow (2000)$
respectively~\cite{Drozdova2003, Drozdova2004, Yonemitsu2007}.
%
Given the close relationship between charge order and
the physics of the MI~phase transition of (EDO-TTF)\textsubscript{2}X,
these CT bands offer readily accessible pathways for controlling the physical properties of the material
via photoexcitation.
%
Earlier works on similar CT compounds suggested that so-called photoinduced phase transitions (PIPT)
can be triggered by pumping at their CT bands with ultrashort laser pulses~\cite{Koshihara1990, Karutz1998, Koshihara1998, Nasu2004}.
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_time-resolved.pdf}
\caption[Ultrafast time-resolved pump-probe spectroscopy in
(EDO-TTF)\textsubscript{2}PF\textsubscript{6}.]{
(EDO-TTF)\textsubscript{2}PF\textsubscript{6} crystals at low temperature
are studied with ultrafast time-resolved pump-probe spectroscopy
using a $800$-nm $120$-fs pump and different probes.
(a)~With photons spanning the CT2~band, a collapse in reflectivity was observed,
indicating photoinduced metallization of the insulator LT phase within a few hundred femtoseconds.
(b)~With a broadband near-IR probe, the transient optical conductivity spectrum was reconstructed,
enabling its assignment to a $(1010)$-type electronic state.
(c)~In the mid-IR range, features associated with the C=C stretching modes are observed;
(d)~their temporal evolution can be fitted to a three-level kinetic model.
(e)~Schematic illustration of time evolution of the charge order and molecular structure
following photoexcitation, as proposed in Ref.~\cite{Fukazawa2012}.
Panels~(a)--(d) are adapted with permission from Refs.~\cite{Chollet2004, Onda2008, Fukazawa2012, Onda2014}
respectively.
}
\label{fig: EDO-time-resolved}
\end{figure}
%
In 2004, Chollet et~al~\cite{Chollet2004} observed using time-resolved reflectivity spectroscopy that
the spectral features of a (EDO-TTF)\textsubscript{2}PF\textsubscript{6} crystal below $T_\text{MI}$
associated with its CT2 band oscillated and decreased dramatically within $3$~ps
being illuminated by a $800$-nm $120$-fs laser with photon energy ($1.55$~eV)
that is nearly resonant to the electronic transition itself (Fig.~\ref{fig: EDO-time-resolved}a).
%
This discovery suggests that the material underwent an ultrafast and reversible photoinduced
insulator--metal~(IM) phase transition and CO melting
when its $(1001)$ ground state is optically pumped to a $(2000)$ photoexcited state
which rapidly decays to the final state that is assumed to be metallic and HT-like.
%
However, the bandwidth of the reflectivity measurements ($1.2$--$2.0$~eV) was too narrow
to reconstruct the transient optical conductivity spectrum using the Kramers-Kronig relations%
\footnote{Dutch physicist Hendrik A. Kramers (1894--1952) and German physicist Ralph de~L. Kronig (1904--1995)
independently showed that the dispersive and absorptive properties of a medium are related from one to another and
can be calculated using a set of mathematical equations now known as
the Kramers-Kronig relations~\cite{Kronig1926, Kramers1927, KramersBook}.}
and characterize the short-lived photoinduced phase.
%
Later, Onda et~al~\cite{Onda2008} extended this experiment to a much wider range of the EM~spectrum
by measuring the photoinduced changes in reflectivity with a near-IR broadband probe
whose photon energies ranged from $0.069$ to $2.1$~eV.
As seen in Fig.~\ref{fig: EDO-time-resolved}b,
the reconstructed optical conductivity spectrum of at $t = +0.2$~ps is distinct from
that of either HT and LT phases, having lost the CT1 and CT2 bands and gained a new CT~band at $0.4$~eV.
These features thus characterize a heretofore unknown electronic state that
the authors were able to reproduce as a nonequilibrium $(1010)$ charge-disproportionate state
using a time-dependent model calculation based on a ex-PHH Hamiltonian.
%
Fukazawa et~al~\cite{Fukazawa2012} further expanded on these PIPT~study
by monitoring the differential reflectivity signal of the photoexcited state
first at select near-IR probe energies up to $t = +1000$~ps with $3$~ps pulses.
%
It was found that, for $t > 3$~ps, the spectral features evolve away from
those of the previously identified photoinduced $(1010)$ state to
those similar to the thermally induced metallic state.
%
This suggests that a metastable HT-like intermediate forms as the initially photoexcited state
relaxes back to the $(1001)$ ground state of the LT phase.
%
To follow the charge- and lattice-coupled dynamics that occur during this photocycle,
Fukazawa et~al also measured the transient reflectivity of the sample in the mid-IR range ($1300$--$1700$~cm$^{-1}$)
that spanned the absorption bands of several charge-sensitive EDO-TTF vibrational modes.
%
As in Ref.~\cite{Drozdova2004}, these modes --- $\nu_\alpha, \nu_\beta, \nu_\gamma$ ---
are stretching vibrations of C=C bonds that lengthen when the molecule becomes more positively charged.
%
Here, it was observed that excited state reflectivity at the vibrational bands
associated with the metallic state does appear eventually,
suggesting a process of molecular and/or lattice deformation (see Fig.~\ref{fig: EDO-time-resolved}c)
%
However, this feature does not appear concomitantly with the onset of ground state bleach,
refuting the earlier conclusion in Ref.~\cite{Chollet2004} that
PIPT occurs and is completed within a few picoseconds.
%
Instead, fitting of temporal profiles in the transient vibrational spectra
supports the idea of a slower process of metallization with a time constant of $94$~ps that is preceded by
an unspecific vibrationally hot transient state in the midst of charge disproportionation and
structural reorganization (see Fig.~\ref{fig: EDO-time-resolved}d and e).
% modifying inter- and intra-stack coupling.
% Susceptible to Peierls mechanism -> transition to insulator at low temperature
% to reduce Mott-Hubbard mechanism -> more polarizable atoms to reduce Coulomb repulsion and increase electron donation
% to reduce Peierls mechanism -> higher pressure -> increase intrastack overlap
% end-groups to reduce interstack coupling
\section{Mapping Molecular Motions in (EDO-TTF)\textsubscript{2}PF\textsubscript{6}}
\label{sec: UED-EDOPF6}
Altogether, the static and time-resolved measurements made on (EDO-TTF)\textsubscript{2}PF\textsubscript{6}
suggests a highly efficient and ultrafast photoinduced IM~phase transition at low temperature
that involves an unique convergence of several collective phenomena:
charge ordering, Peierls instability, bond ordering, and anion ordering.
%
To probe directly the structural evolution associated with this complex process,
the hybrid DC-RF UED setup described in Sec.~\ref{sec: UED-setup} is employed
and the resulting work is described as follows.
\subsection{Methods}
% The sample
Molecules of EDO-TTF are synthesized according to Ref.~\cite{Meziere2000} and
the PF\textsubscript{6} salt is formed through a process of electrochemical oxidation
and crystallization in the presence of tetrabutylammonium hexafluorophosphate
([N(C\textsubscript{4}H\textsubscript{9})\textsubscript{4}]\textsubscript{2}PF\textsubscript{6})
in ethanol~\cite{BechgaardJerome1982, Ota2002}.
%
As seen in Fig.~\ref{fig: EDO-samplePF6}a,
the resulting millimeter-sized black lustrous crystals of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}
are mounted on blocks of epoxy resin in preparation for ultramicrotomy~\cite{UltramicrotomyManual}.
%
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_samplePF6.pdf}
\caption[Photos of (EDO-TTF)\textsubscript{2}PF\textsubscript{6} crystals and ultramicrotomed samples.]{
(a) Black (EDO-TTF)\textsubscript{2}PF\textsubscript{6} crystals in a sample vial, next to
a block of epoxy resin with a singular crystal embedded on top in preparation for ultramicrotomy.
A 100-nm thick crystal section mounted on a TEM copper mesh grid in an optical microscope
under different polarized illumination: (b) parallel and (c) orthogonal to the EDO-TTF stacking axis.
The photos are courtesy of Dr.~Cheng Lu.
}
\label{fig: EDO-samplePF6}
\end{figure}
%
Slices --- 500~$\unslant\mu$m $\times$ 500~$\unslant\mu$m $\times$ 100~nm in size --- are cleaved roughly
parallel to the $\boldsymbol{a}_1$ $\times$ $\boldsymbol{a}_2$ crystal plane
and scooped from the water surface using standard TEM copper mesh grids
with different types of support membranes.
%
These samples are then observed in an optical microscope under illumination of varying polarization
to confirm the dichroism expected of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}:
absorptive to light polarized parallel to the stacking axis, transmissive otherwise.
This behaviour is seen in Fig.~\ref{fig: EDO-samplePF6}b and c as the colour of a crystal slice
disappears as the polarization is rotated by $90^\circ$.
%
Finally, the mesh-mounted crystal slices are placed at the focal position of the UED setup,
depressurized, and cooled to the LT phase by connecting the sample holder to
a home-built liquid-nitrogen cold finger.
As measured by a calibrated platinum thermistor, their equilibrium temperature is found to be $(230 \pm 5)$~K,
well below $T_\text{MI} = 279$~K.
% Laser condition
To trigger the PIPT of (EDO-TTF)\textsubscript{2}PF\textsubscript{6},
the $60$-fs, $800$-nm output of the Ti:Sapph laser system is focused onto a free-standing section
of the sample, with a spot size of $(400 \pm 20)$~$\unslant\mu$m, a repetition rate of 10~Hz,
and a pulse energy of $2.0$~$\unslant\mu$J.
%
Although the pump wavelength is not perfectly resonant with the CT2 band ($897$~nm),
the absorption feature is sufficiently broad that PIPT is still triggered~\cite{Chollet2004, Onda2008}.
%
To maximize absorption, the pump polarization is linear and
aligned with the transition dipole moment of the CT2 band,
which is parallel to the stacking axis of the (EDO-TTF)\textsubscript{2}PF\textsubscript{6} molecules.
%
The pump transmittance of the sample at normal incidence is measured to be $(66 \pm 2)$~\% at 230~K
and $(93 \pm 2)$~\% at 295~K.
Given the incident pulse fluence (0.55~mJ/cm$^2$ or 0.22~$\unslant[-.15]\gamma$/\AA$^2$),
the excitation fraction of 0.08~$\unslant[-.15]\gamma$ per unit cell in the LT phase.
%
% UED conditions
The probe is a beam of $40$-fC (ca.~$2.5 \times 10^5$~e$^{-}$) electron pulses
with a spot size of $(280 \pm 20)$~$\unslant\mu$m FWHM that is centered on the pump spot.
As measured in Ref.~\cite{Gao2012}, the overall IRF is $(430 \pm 75)$~fs FWHM.
% Damage
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_control.pdf}
\caption[UED signal dependence on the pump-laser repetition rate, fluence, and polarization angle.]{
Controlled experiments are performed for validating the integrity of the sample.
Changes in the intensity of $(h_1 h_2 h_3)$ diffraction spots with odd-$h_2$
--- present in the LT phase and absent in the HT phase ---
are monitored as a function of different pump laser parameters:
(a)~repetition rate, (b)~fluence, and (c)~polarization angle.
Panel~(a) shows sample integrity/damage under low/high repetition rate;
Panel~(b), linear sample response to optical pumping;
Panel~(c), nominal dichroism associated with 800-nm absorption at the CT2 band of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}~\cite{Drozdova2004}.
}
\label{fig: EDO-control}
\end{figure}
%
In Sec.~\ref{sec: electrons-vs-xrays}, it is demonstrated that
time-resolved pump-probe experiments can exposed samples to damaging levels of radiation,
potentially leading to spurious results.
%
Here, controlled experiments are collected to validate
the UED measurements on (EDO-TTF)\textsubscript{2}PF\textsubscript{6}.
As seen in Fig.~\ref{fig: EDO-control}, the intensity of select diffraction spots
are monitored under different pump laser conditions.
Panel~(a) shows that photoexcitation at the 1-kHz repetition rate of the laser system causes
the diffraction features to decay, suggesting that
heat deposited by the pump laser is accumulating over laser pulses and
the sample is being progressively damaged.
%
Reducing the repetition rate to 100~Hz prevents this problem,
albeit at the cost of much longer experiment time,
by allowing enough time in between laser pulses for the sample to dissipate the thermal energy radiatively
and/or through conduction to the supporting copper mesh.
%
Panel~(b) shows the dependence of the intensity of diffraction spots characteristic of the LT phase
(at $t = +1$~ns) on the incident pump laser fluence. From the linearity of this trace up to $0.55$~mJ/cm$^2$
(0.22~$\unslant[-.15]\gamma$/\AA$^2$), it is clear that no photodamage has occurred.
%
Panel~(c) shows the intensity of the LT diffraction spots (at $t = +100$~ps)
as a function of the polarization angle of the pump laser.
As expected, a maximum and minimum separated by 90$^{\circ}$ is observed.
Per Malus'~law,%
\footnote{French engineer \'{E}tienne-Louis Malus (1775--1812) discovered that
transmission of polarized light through a dichroic material varies as $\cos^2(\theta)$,
where $\theta$ is the polarization angle of the light~\cite{CollettBook}.}
the absorption of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}
via its CT2 band is maximal when the polarization of the incident light is parallel to
the stacking axis of the EDO-TTF molecules, and minimal otherwise~\cite{Drozdova2004}.
Indeed, the 800-nm photons of the pump laser have targeted the correct electronic excitation
to initiate the desired photoinduced dynamics.
% Unit cell definition
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_unitcell_ori.pdf}
\caption[Indexing of diffraction pattern and refinement of crystal orientation.]{
Definition of crystallographic information.
(a) A new unit cell, `common' to both LT and HT phases, is generated from symmetry transformation
of the one published by Ota et~al~\cite{Ota2002}.
(b) The indexing of the measured diffraction pattern, here represented by intensity contours,
are determined by calculating simulated structure factors and fitting these values to the observed ones.
(c) The orientation of the incident direction of the electron beam $\boldsymbol{k}_\text{inc}$
is shown in relation to the real lattice vectors $\boldsymbol{a}_3$
and its reciprocal counterpart $\boldsymbol{b}_3$.
}
\label{fig: EDO-unitcell-ori}
\end{figure}
%
In the present experiment, diffraction patterns are compared with each other
--- LT versus HT and pump-off versus pump-on --- as a mean to follow the changes in molecular structure
associated with the static and photoinduced phase transition.
%
As such, an indexing scheme common to both patterns is necessary.
%
However, the unit cells chosen by Ota et~al in their publication~\cite{Ota2002} are not totally overlapping
despite structures being in the same P$\overline{1}$ space group (Fig.~\ref{fig: EDO-unitcell-ori}a).
%
Thus, a new pair of unit cells, herein labeled `common' (as opposed to `Ota'), is defined as follows:
%
\begin{equation}
\begin{aligned}
(\boldsymbol{a}_{1, \text{HT}}, \boldsymbol{a}_{2, \text{HT}}, \boldsymbol{a}_{2, \text{HT}})
& \rightarrow (\boldsymbol{a}_{1, \text{HT}} + \boldsymbol{a}_{2, \text{HT}},
\boldsymbol{a}_{2, \text{HT}},
\boldsymbol{a}_{3, \text{HT}}) \\
(\boldsymbol{a}_{1, \text{LT}}, \boldsymbol{a}_{2, \text{LT}}, \boldsymbol{a}_{3, \text{LT}})
& \rightarrow (\boldsymbol{a}_{1, \text{LT}},
\boldsymbol{a}_{1, \text{LT}} - \boldsymbol{a}_{2, \text{LT}},
- \boldsymbol{a}_{3, \text{LT}})
\end{aligned}
\end{equation}
%
The resulting unit cells share similar lattice constants and angles,
with the exception of the length of $\boldsymbol{a}_2$
which is now aligned with the stacking axis of the EDO-TTF molecules.
% Indexing and orientation refinement
There are inherent uncertainties to the crystal orientation of the sample.
These stem from imperfect cleaving of the crystal during sample preparation
to misalignment of the sample holder with respect to the incident direction of the electron beam.
%
Since this quantity is necessary for the indexing and further analysis of the measured diffraction patterns,
an automatic procedure is set up to simulate the partial intensities that constitute a diffraction spot
for any arbitrary crystal orientation and then find the best fit to the observed values.
%
The details are described in Sec.~\ref{sec: UED-data-analysis-1} and
the results are shown in Figs.~\ref{fig: EDO-unitcell-ori}b and c.
The optimum orientation for the diffraction pattern of the LT and HT phases
are determined to be $[ u_1, u_2, u_3 ] = [-0.675, 0.600, 1.000]$ and
$[-0.640, 0.266, 1.000]$ respectively.
%
These two directions agree to about $1^\circ$ when both unit cells are placed
within the same Cartesian coordinate system ($\hat{\boldsymbol{x}} \parallel \boldsymbol{a}_1$
and $\hat{\boldsymbol{z}} \parallel \boldsymbol{a}_1 \times \boldsymbol{a}_2$).
%
The R-factor%
\footnote{The R-factor is a measure of agreement between the structure factor values
calculated from a crystallographic model and those which are experimentally observed;
it is defined as
$R = \frac{\sum \limits _j \left| |F_\text{sim}(\boldsymbol{q}_j)| - |F_\text{exp}(\boldsymbol{q}_j)| \right|}{\sum \limits _j \left| F_\text{exp}(\boldsymbol{q}_j) \right|}$.}
is calculated to be $35.2$~\% and $40.8$~\% for the LT and HT phases respectively.
Although these values are much higher than what is expected for single-crystal XRD,
they are typical for electron diffraction~\cite{ZouBook} and indicate reasonable agreement
between the observed diffraction intensities and those simulated using the present diffraction model
and the published crystal structures.
\begin{table}[ht!]
\centering
{\renewcommand{\arraystretch}{1.5}
\begin{tabular}{ c c c c c c c }
\toprule
Phases & $a_1$ (\AA) & $a_2$ (\AA) & $a_3$ (\AA) & $\alpha_{23}$ ($^{\circ}$) & $\alpha_{31}$ ($^{\circ}$) & $\alpha_{12}$ ($^{\circ}$) \\
\midrule
HT & $9.597$ & $7.343$ & $11.948$ & $93.42$ & $81.58$ & $48.05$ \\
LT & $9.822$ & $14.803$ & $11.487$ & $92.72$ & $80.87$ & $47.99$ \\
\bottomrule
\end{tabular}
}
\caption{Lattice parameters of the `common' unit cell for the phases of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}.}
\label{tab: EDO-unitcell}
\end{table}
\subsection{Experimental Results and Discussions}
\label{sec: UED-EDO-Results}
In Panels a and b of Fig.~\ref{fig: EDO-LTHT}, the electron diffraction pattern of
the (EDO-TTF)\textsubscript{2}PF\textsubscript{6} in the LT and HT phases are shown.
As it can be seen in the difference image (Fig.~\ref{fig: EDO-LTHT}c),
there is a conspicuous appearance of a family of diffraction spots in the HT image.
Under the indexing scheme described earlier, all these spots have a Miller index $(h_1 h_2 h_3)$
where $h_2$ is an odd integer, clearly indicative of the unit-cell doubling along the stacking axis
that is associated with the IM~phase transition.
%
Thus, it is confirmed that the diffraction intensities observable in this crystal orientation
are sensitive to the structural changes relevant to PIPT.
%
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_LTHT.pdf}
\caption[Static electron diffraction patterns of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}
above and below $T_\text{IM}$.]{
Static electron diffraction data of the (EDO-TTF)\textsubscript{2}PF\textsubscript{6} samples
are taken at (a) low temperature ($T = 230$~K) and (b) ambient temperature ($T = 295$~K),
below and above $T_\text{IM}$ respectively.
Panel (c) shows the difference between these two patterns.
}
\label{fig: EDO-LTHT}
\end{figure}
To monitor the photoinduced structural evolution of the molecular system,
pump-on and pump-off diffraction patterns are collected at different time delays.
From the difference images (Fig.~\ref{fig: EDO-TRresults}a),
a complex pattern of intensity changes is visible.
%
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_TRresults.pdf}
\caption[Time-resolved UED data of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}.]{
Time-resolved UED data of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}.
(a) Difference images at different time points show the pattern of diffraction intensity changes
associated with the structural dynamics that follows photoexcitation of the LT ground state;
the difference image between the LT and HT phases is included on the far right to emphasize
the similarity between the HT diffraction pattern and that observed at $t = +1$~ns.
(b) Time traces for some selected diffraction spots are plotted on two timescales
(from $-3.6$ to $+17$~ps; from $+17$ to $+500$~ps)
to showcase the presence of fast and slow processes which are at work.
}
\label{fig: EDO-TRresults}
\end{figure}
%
The most succinct observation is the similarity between the $+1$~ns difference image and the one measured
across the thermal phase transition, immediately suggesting that the photoinduced structural dynamics ends
at a HT-like state.
Fig.~\ref{fig: EDO-TRresults}b gives the temporal evolution of the intensity of
some selected diffraction spots. From these time traces, two components is resolved:
a `fast' change on the order of a few picoseconds and a `slow' one that proceeds on the 100-ps timescale.
%
The former can be explained as the result of femtosecond optical excitation
altering the charge distribution within the EDO-TTF stack, modifying various intermolecular and intramolecular forces,
and driving coherent molecular motions.
%
The slow component is attributed to uncorrelated motions that provide an ensemble-averaged picture
of the structural evolution, i.e.~a thermal relaxation process that brings the molecular system
to the final HT-like state~\cite{Fukazawa2012}.
%
In addition, oscillations with a period of a few hundred picoseconds are apparent after $+100$~ps
(right side of Fig.~\ref{fig: EDO-TRresults}b);
they are likely a manifestation of the transfer of heat to the lattice
as strain waves are generated~\cite{Harb2009, Maher-thesis}.
%
Finally, a plateau can be readily seen on the ultrafast timescale (left side of Fig.~\ref{fig: EDO-TRresults}b)
wherein the intensity of all diffraction spots remains unchanging over time delays between $+3$ and $+10$~ps.
This behaviour indicates the presence of a transient intermediate state~(TIS)
along the pathway of the PIPT process.
Given that optical studies give evidence to large charge fluctuations
prevailing in this time span~\cite{Onda2008, Fukazawa2012},
it is plausible that the effective intermolecular forces are screened and
the structure of the molecular system is therefore transiently locked.
To obtain a time-dependent map of the relevant molecular motions driving
the IM~phase transition and the intervening formation of the TIS structure,
a structural refinement scheme based on a parameterized molecular model is employed.
The details of this general method are described in Sec.~\ref{sec: UED-data-analysis-3}
and it is applied to (EDO-TTF)\textsubscript{2}PF\textsubscript{6} as follows.
% Spot restriction and molecular model
The set of diffraction spots used in the refinement calculations is restricted to those
which are proximate to the Ewald sphere and do not contain contribution from multiple relrods.
%
In addition, the end-point crystal structures of the linear interpolation in Eq.~\eqref{eq: linear-model}
are chosen to be those of the LT and HT phases respectively.
%
To construct the candidate structures for the time-dependent optimization,
inversion symmetry is assumed to be conserved and
the two (EDO-TTF)\textsubscript{2}PF\textsubscript{6} molecules in the unit cell
are divided by symmetric nonequivalency into three dynamical groups which display distinct motions.
%
As seen in Fig.~\ref{fig: EDO-movie}a,
the first group ($\xi_1$) is composed of atoms of the bent neutral EDO-TTF molecules
whose IM~displacement $\Delta \bscriptr_{i} = \bscriptr_{i, \text{HT}} - \bscriptr_{i, \text{LT}}$
is primarily a flattening motion;
%
the second group ($\xi_2$), the atoms of the PF\textsubscript{6} counterions that rotate and
move to the nearest point of symmetry;
%
the last group ($\xi_3$), the atoms of the flat monovalent EDO-TTF molecules
which slide perpendicularly to the stacking axis
and become translationally equivalent to the atoms of the first group;
%
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDO_movie.pdf}
\caption[Structural dynamics of (EDO-TTF)\textsubscript{2}PF\textsubscript{6} in configuration space.]{
Structural dynamics of (EDO-TTF)\textsubscript{2}PF\textsubscript{6} in configuration space.
Refinement of the UED data is performed by
(a) partitioning the atoms of the unit cell into three dynamical groups (highlighted in magenta, cyan, and green) and
(b) optimizing the goodness-of-fit $P$ between the measured structural factors and the simulated ones
over the associated reaction coordinates $\xi_1, \xi_2, \xi_3$ for each time point $t$
(lines shown are the multiexponential fits).
The result is (c) a reaction pathway through configuration space that fully maps
the molecular displacements of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}
as it goes from (d) the LT state to TIS and finally a HT-like state
(coloured respectively in blue, green, and red).
%
Circles are the independently optimized structures;
the solid lines are the multiexponential fits; the dashed line is a two-dimensional projection.
Panel (a) is courtesy of Dr.~Alexander Marx.
}
\label{fig: EDO-movie}
\end{figure}
%
This approach reduces the structure refinement of each pattern of diffraction intensity changes
from a problem with $3N_\text{at} - 6$ variables to one with only $3$
while still capturing most of the physics without nonsensical results caused by overfitting.
% Excitation fraction
To determine the value of the excitation fraction~$\eta_\text{exc}$
(the fraction of unit cells engaging in the PIPT process),
it is assumed that the photoexcited molecular system has fully thermalized into a HT-like state
by $t = +1$~ns and little residual thermal stress remains;
Since $F_\text{on}(\infty, \boldsymbol{q}) \approx F_\text{on}(+1 \text{ ns})$,
$\eta_\text{exc}$ is calculated to be about $10.3$~\% using Eq.~\eqref{eq: nexc},
i.e.~the equation of Coppens et~al in the low-excitation limit~\cite{CoppensBook, Coppens1998, Coppens2005}.
%
These are fair assumptions to be made here, considering that the acoustic oscillations have damped away by $t > +500$~ps,
the estimated temperature increase is less than $50$~K, and the effect of residual stress is minimized
for reflections satisfying the Laue-Bragg condition~\cite{Harb2009}.
%
Also, from optical reflectivity and in situ optical transmission measurements,
a similar value (ca.~$8$~\%) is estimated using Eq.~\eqref{eq: nexc-optical}
for the fraction of ground unit cells which are photoexcited by the pump laser pulse.
%
Furthermore, optimization of the goodness-of-fit~$P$ as a function of $\eta_\text{exc}$ and
time delay~$t$ during the structural refinement process shows a maximum of ca.~$10$~\%
that persists over the interval of 0 to $+10$~ps.
%
Given the consistency of these independent evaluations of $\eta_\text{exc}$,
it is clear that the initial excitonic correlation length only extends over about one LT unit cell
and only local structural changes are promoted with a photoconversion efficiency of about unity.
%
This result runs counter to the observation of highly cooperative `photo-domino effect' by
Chollet et~al~\cite{Chollet2004} wherein an excitation fraction of $0.7$~\%
(one absorbed photons for every 142 LT unit cells) supposedly lead to the IM~conversion fraction of $50$~\% and
a photoconversion efficiency of 71 times unity.
%
Onda et~al~\cite{Onda2014} states that the discrepancy is explained by
the incorrect assumption in the latter work that the IM~conversion fraction can be simply and directly estimated by
the change in the reflectivity of the CT2 band at $t = +3$~ps.
In Fig.~\ref{fig: EDO-movie}b, the result of the structure refinement is shown.
For each time delay $t$, a set of optimized reaction coordinates $(\xi_1, \xi_2, \xi_3)$ is obtained;
each coordinate can then be fitted by a multiexponential function
that is based on the three-level rate model
proposed by Fukazawa et~al~\cite{Fukazawa2012}:
%
\begin{equation}
\begin{aligned}
f(t) & =
\left[ H(t) \left(
c_1 \left( \mathrm{e}^{-k_2 t} - \mathrm{e}^{-k_1 t} \right) +
c_2 \left( \mathrm{e}^{-k_4 t} - \mathrm{e}^{-k_3 t} \right) +
c_3 \left( 1 - \mathrm{e}^{-k_5 t} \right)
\right) \right] \ast \text{IRF}(t)
\end{aligned}
\end{equation}
%
where $H(t)$ is the Heaviside function,
$\textrm{IRF}(t) = \mathrm{e}^{- \frac{1}{2} t^2/\tau_\text{IRF}^2}$ is
the instrument response function with $\tau_\text{IRF}$ = $430$~fs, and
$k_i, c_j$ are the time constants and coefficients to be fitted.
Altogether, the fit results are shown in Tab.~\ref{tab: EDO-fit} and
a trajectory in $\boldsymbol{\xi}$-space can be plotted that represents the reaction pathway
taken by the molecular system following photoexcitation (see Fig.~\ref{fig: EDO-movie}c).
%
\begin{table}[ht!]
\centering
{\renewcommand{\arraystretch}{1.5}
\begin{tabular}{ c c c c c c c c c }
\toprule
& $c_1$ & $c_2$ & $c_3$ & $\tau_{1}$ (ps) & $\tau_{2}$ (ps) & $\tau_{3}$ (ps) & $\tau_{4}$ (ps) & $\tau_{5}$ (ps) \\
\midrule
$\xi_1 (t)$ & $15.3$ & $6.9$ & $1.46$ & $0.70$ & $0.70$ & $3.4$ & $3.6$ & $100$\\
$\xi_2 (t)$ & $56.0$ & $1.0$ & $0.95$ & $0.49$ & $0.53$ & $2.8$ & $3.2$ & $23$\\
$\xi_3 (t)$ & $32.0$ & $6.0$ & $1.23$ & $0.44$ & $0.45$ & $2.0$ & $4.3$ & $28$\\
\bottomrule
\end{tabular}
}
\caption{Values of the multiexponential model fitted for
the reaction coordinates~$\xi_i$ of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}.}
\label{tab: EDO-fit}
\end{table}
%
It can be clearly seen that
the structure of (EDO-TTF)\textsubscript{2}PF\textsubscript{6} evolves from the LT state
($\boldsymbol{\xi}(t = 0) = (0, 0, 0)$) through concerted atomic motions
towards the HT state ($\boldsymbol{\xi}(t > +100 \text{ ps}) = (1, 1, 1)$)
with a brief, few-picosecond pit stop at the TIS
($\boldsymbol{\xi}(t \sim +3 \text{ ps}) = (0.15, 0.38, 0.40)$).
%
From the relative values and timing of the reaction coordinates,
it is observed that the motions of the flat monovalent EDO-TTF molecules and
the PF\textsubscript{6} counterions are correlated.
This suggests that optical excitation mostly drives the formation of the TIS through these modes
while the bent neutral donor molecules are unchanged.
%
Furthermore, the overshooting of these two coordinates at $t = +1$~ps is indicative
of an overdamped half-cycle motion.
%
These time-dependent correlations,
in addition to the close proximity of the counterions to the charged donors,
provide evidence for the role of steric effects --- short-range repulsive interactions ---
are also important in the crystalline order and positioning of the molecules.
\subsection{Summary and Conclusions}
From Onda et~al~\cite{Onda2008},
the ex-PHH model (see App.~\ref{ap: exPHH})
can reproduce the spectral signature of the $(0101)$ excited state
by including off-site Coulomb repulsion and electron-phonon interactions that
modulate the site energies via anion displacements.
%
The UED results herein support this description and correspondingly indicate that
the motion of the PF\textsubscript{6} counterions is an important component in the evolution of
the electronically excited LT and the formation of the TIS structures.
%
This is a curious development given that
PF\textsubscript{6}$^-$ is mostly known for its chemical stability and weak coordinating ability~\cite{Strauss1993}
and its intended role in (EDO-TTF)\textsubscript{2}PF\textsubscript{6}
probably was to electrically balance the positive charges and
passively spectate the physics of the molecular system.
%
Indeed, this connection between the counterions and the charge fluctuations leading to PIPT
suggests that they ought to be targeted for chemical modification
if the electronic properties of this crystal are to be taken controlled.
%
This approach to molecular design would be similar to the anion substitution in (TMTSF)\textsubscript{2}X
that led to the synthesis of the first ambient-pressure
organic superconductor~\cite{Bechgaard1980, Bechgaard1981}.
%
In contrast, the small relative amplitude of the flattening of the neutral EDO-TTF molecules
in the formation of the TIS questions the relevance of the simple bending--flattening type
of distortion mode to the charge disproportionation.
%
Future UED experiments can focus on different sample orientations with improved spatial resolution
and apply more general refinement methods for real-space reconstruction;
ab initio electronic calculations would link the resolved dynamics of the molecular structure with
the evolution of the charge distribution.
\section{Counterion Effect in (EDO-TTF)\textsubscript{2}SbF\textsubscript{6}}
\label{sec: UED-EDOSbF6}
\begin{figure}[ht!]
\centering
\includegraphics[width = \textwidth]{Figures/fig_EDOSb_sample.pdf}
\caption[Overview of (EDO-TTF)\textsubscript{2}SbF\textsubscript{6}.]{
Overview of (EDO-TTF)\textsubscript{2}SbF\textsubscript{6}.
(a) (EDO-TTF)\textsubscript{2}PF\textsubscript{6} and (EDO-TTF)\textsubscript{2}SbF\textsubscript{6}
are isostructural in both LT and HT phases.
(b) All three hexafluoropnictate derivatives of (EDO-TTF)\textsubscript{2}X
exhibit similar MI~phase transitions but with decreasing $T_\text{MI}$ and
increasing $\Delta T_\text{MI}$ for larger counterions.
(c) Black (EDO-TTF)\textsubscript{2}SbF\textsubscript{6} crystals
in a sample vial, next to a block of epoxy resin with a singular crystal embedded
on top in preparation for ultramicrotomy.
Panel~(b) is adapted from Ref.~\cite{NakanoX} with permission
from Prof.~Yoshiaki Nakano.
}
\label{fig: EDOSb-sample}
\end{figure}
Bechgaard-Fabre salts mostly assemble into similar crystal structures and
showcase a similar procession of ground states and collective phenomena
as different anions are substituted (see Fig.~\ref{fig: EDO-overview}d).
%
In particular, molecules of the (EDO-TTF)\textsubscript{2}X where X is one of the hexafluoropnictates
form isostructural crystals (Fig.~\ref{fig: EDOSb-sample}a) and
exhibit the same type of thermal MI~phase transition~\cite{Ota2002, Ota2003, Nakano2009}.
%
As seen in Fig.~\ref{fig: EDOSb-sample}b,
this phase transition is manifested by a sudden change in magnetic susceptibility of the material
as the Pauli paramagnetism%
\footnote{Named for Wolfgang Pauli (1900--1958) and his eponymous exclusion principle,
Pauli paramagnetism refers to the tendency of a `metal' to become weakly magnetized
under an applied magnetic field as its free electrons align with the field~\cite{Nobel1942, AshcroftBook}.}
of the metallic phase disappears in the insulator phase.
The parameters of the thermal MI~phase transition down this chemical series
are tabulated in Tab.~\ref{tab: EDO-TMI}.
Two trends can be seen as the size of the substituted pnictogen is increased:
a lowering of the transition temperature $T_\text{MI}$ and
a widening of the hysteresis loop $\Delta T_\text{MI}$~\cite{NakanoX}.
%
This observation, in addition to later work by Ota et~al~\cite{Ota2006}
where X is replaced by even larger anions ($\mathrm{GaCl_4^-}$ and $\mathrm{ReO_4^-}$),
suggests that large counterions can penetrate the EDO-TTF stack and
affect the electronic correlation relevant to the MI~phase transition.
Furthermore, it has been found spectroscopically that
the reverse insulator--metal phase transition can be triggered on the ultrafast timescale
in (EDO-TTF)\textsubscript{2}PF\textsubscript{6} by photoexcitation of
one of its charge-transfer bands~\cite{Chollet2004, Onda2008, Fukazawa2012}.
%
In the UED work described in Sec.~\ref{sec: UED-EDOPF6},
it has also been shown that the motion of the PF\textsubscript{6} counterions
plays a critical role in enabling this IM~transition by allowing the EDO-TTF molecules
to approach each other and interact, leading to the IM~transition.
%
However, no such PIPT could be detect in crystals of
(EDO-TTF)\textsubscript{2}SbF\textsubscript{6}~\cite{Lorenc2008, Servol2015}.
Time-resolved measurements of photoinduced changes in reflectivity only reveal
the excitation of some optical phonons followed by the formation of a local state
similar to the TIS of the PF\textsubscript{6} derivative, tentatively suggesting
that the larger counterion increases the distance between the EDO-TTF molecules
--- thus the unit-cell volume change~$\frac{\Delta V}{V_\text{HT}}$ (Tab.~\ref{tab: EDO-TMI})
and the resulting elastic energy cost necessary for the IM~transition ---
beyond what can be achieved during the photoinduced process~\cite{Servol2015}.
More details could be found in the doctoral theses in Refs.~\cite{Moisan-thesis, Kaszub-thesis}.
Therefore, a UED study on (EDO-TTF)\textsubscript{2}SbF\textsubscript{6} is called for
to follow-up on the previous work in Sec.~\ref{sec: UED-EDOPF6} and
offer direct structural confirmation of this `counterion effect.'
The resulting work is described as follows.
\begin{table}[ht!]
\centering
\begin{tabular}{c c c c c c}
\toprule
X & $T_{\text{MI}\downarrow}$~(K) & $T_{\text{MI}\uparrow}$~(K) & $T_\text{MI}$~(K) & $\Delta T_\text{MI}$~(K) & $\Delta V / V_\text{HT}$~(\%) \\
\midrule
PF\textsubscript{6} & 278.5 & 279.5 & 279.0 & 1.0 & $-0.45$ \\
AsF\textsubscript{6} & 268.0 & 273.5 & 270.8 & 5.5 & $-0.77$ \\
SbF\textsubscript{6} & 235.0 & 249.0 & 242.0 & 14.0 & $-1.39$ \\
\bottomrule
\end{tabular}
\caption{Hysteresis of the thermal MI~phase transition of different (EDO-TTF)\textsubscript{2}X.
$T_{\text{MI}\downarrow}$ and $T_{\text{MI}\uparrow}$ are the transition temperature
during the cooling and heating cycles respectively;
$T_\text{MI} = \frac{1}{2} (T_{\text{MI}\downarrow} + T_{\text{MI}\uparrow})$ and
$\Delta T_\text{MI} = T_{\text{MI}\uparrow} - T_{\text{MI}\downarrow}$.
$\Delta V / V_\text{HT}$, where $\Delta V = V_\text{LT} - V_\text{HT}$,
is the associated relative change in unit-cell volume at $T_\text{MI}$.
The values herein are courtesy of Prof.~Yoshiaki Nakano~\cite{Nakano2008, NakanoX}.}
\label{tab: EDO-TMI}
\end{table}
\subsection{Methods}
Single-crystals of (EDO-TTF)\textsubscript{2}SbF\textsubscript{6} are synthesized in
an analoguous manner as those of (EDO-TTF)\textsubscript{2}PF\textsubscript{6}