What to do? Where to go? An analysis of papers published on pavement and asphalt.

(may be updated regularly? annually?) (08/19)

First, why just focus on the keywords of asphalt and pavement? Because these are the areas I am currently involved. So, this post is extremely biased and please take it for fun. Also, sorry to folks in the world of cement, concrete, and others.

I am always courious about that if we can use some data processing techniques in assisting researchers to obtain the hottest topics in her areas of interests. Here, I retrived more than 8,000 papers from the Web of Science (WOS).

Data Description

TitleAuthorsSource TitlePublication YearTotal CitationsAverage per Year
Field performance of top-down fatigue cracking for warm mix asphalt pavementsWu, Shenghua; Wen, Haifang; Zhang, Weiguang; Shen, Shihui; Mohammad, Louay N.; Faheem, Ahmed; Muhunthan, BalasingamINTERNATIONAL JOURNAL OF PAVEMENT ENGINEERING20199090.00
Review of very high-content reclaimed asphalt use in plant-produced pavements: state of the artZaumanis, Martins; Mallick, Rajib B.INTERNATIONAL JOURNAL OF PAVEMENT ENGINEERING20156913.80
Automated Pixel-Level Pavement Crack Detection on 3D Asphalt Surfaces Using a Deep-Learning NetworkZhang, Allen; Wang, Kelvin C. P.; Li, Baoxian; Yang, Enhui; Dai, Xianxing; Peng, Yi; Fei, Yue; Liu, Yang; Li, Joshua Q.; Chen, ChengCOMPUTER-AIDED CIVIL AND INFRASTRUCTURE ENGINEERING20176321.00
Asphalt-Derived High Surface Area Activated Porous Carbons for Carbon Dioxide CaptureJalilov, Almaz S.; Ruan, Gedeng; Hwang, Chih-Chau; Schipper, Desmond E.; Tour, Josiah J.; Li, Yilun; Fei, Huilong; Samuel, Errol L. G.; Tour, James M.ACS APPLIED MATERIALS & INTERFACES20155511.00
Developments of nano materials and technologies on asphalt materials - A reviewLi, Ruoyu; Xiao, Feipeng; Amirkhanian, Serji; You, Zhanping; Huang, JiaCONSTRUCTION AND BUILDING MATERIALS20175317.67
Thermo-rheological behavior and compatibility of modified asphalt with various styrene-butadiene structures in SBS copolymersLiang, Ming; Liang, Peng; Fan, Weiyu; Qian, Chengduo; Xin, Xue; Shi, Jingtao; Nan, GuozhiMATERIALS & DESIGN20155310.60
Laboratory evaluation on performance of diatomite and glass fiber compound modified asphalt mixtureGuo, Qinglin; Li, Lili; Cheng, Yongchun; Jiao, Yubo; Xu, ChunMATERIALS & DESIGN20155310.60
Induction healing of fatigue damage in asphalt test samplesMenozzi, Alessandro; Garcia, Alvaro; Partl, Manfred N.; Tebaldi, Gabriele; Schuetz, PhilippCONSTRUCTION AND BUILDING MATERIALS20155210.40
Self-healing of asphalt mixture by microwave and induction heatingNorambuena-Contreras, J.; Garcia, A.MATERIALS & DESIGN20165012.50
High temperature performance evaluation of bio-oil modified asphalt binders using the DSR and MSCR testsYang, Xu; You, ZhanpingCONSTRUCTION AND BUILDING MATERIALS2015499.80

Take a look at how many papers collected.

## Observations: 8,372
## Variables: 13
## $ Title              <chr> "Field performance of top-down fatigue cracki…
## $ Authors            <chr> "Wu, Shenghua; Wen, Haifang; Zhang, Weiguang;…
## $ `Source Title`     <chr> "INTERNATIONAL JOURNAL OF PAVEMENT ENGINEERIN…
## $ `Publication Year` <dbl> 2019, 2015, 2017, 2015, 2017, 2015, 2015, 201…
## $ `Conference Title` <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N…
## $ `Total Citations`  <dbl> 90, 69, 63, 55, 53, 53, 53, 52, 50, 49, 47, 4…
## $ `Average per Year` <dbl> 90.00, 13.80, 21.00, 11.00, 17.67, 10.60, 10.…
## $ `2014`             <dbl> 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
## $ `2015`             <dbl> 0, 4, 0, 6, 0, 0, 2, 1, 0, 1, 0, 1, 0, 0, 0, …
## $ `2016`             <dbl> 2, 9, 0, 12, 0, 10, 8, 11, 2, 6, 8, 6, 3, 0, …
## $ `2017`             <dbl> 23, 12, 0, 11, 6, 18, 11, 9, 5, 9, 15, 9, 24,…
## $ `2018`             <dbl> 45, 19, 34, 15, 27, 16, 19, 22, 26, 19, 17, 1…
## $ `2019`             <dbl> 20, 23, 29, 11, 20, 9, 13, 9, 17, 14, 7, 11, …

For this toy project, I collected a total of 8372 papers from the WOS. I’d like to have an idea on what’s going on in these two fields (pavement & asphalt) during the last five years. The findings may inspire me (you) the direction of research focus in the near future.

The WOS seems to provide the wrong citation counts for the first paper here, google scholar has the right number (12).

N-Gram

A bigram represents a two-word phrase. Nothing fancy. The same thing goes on, trigram for 3-word phrase, 4-gram for 4-word phrase. I will stop at 4-gram, as that will rule out most of the papers. Also, papers with titles containing a phrase composed by stacking four nouns look terrible.

Bigram

The title of a paper often contains stop words, such as articles, prepositions and pronouns, which usually convey no interesting physical meaning. They need to be filtered.

bigram
field performance
performance of
of top
top down
down fatigue
fatigue cracking
cracking for
for warm
warm mix
mix asphalt

Behold the of s and the.

bigramn
of asphalt1252
evaluation of719
properties of656
on the633
of the627

Let’s declutter a bit by removing the stop words.

bigramn
asphalt mixtures563
asphalt pavement510
asphalt concrete421
asphalt mixture387
mix asphalt369
modified asphalt318
asphalt binder261
asphalt binders235
hot mix225
warm mix198

3-gram

title_trigram <- d %>%  
  select(Title) %>%  
  unnest_tokens(trigram, Title, token="ngrams", n=3) 


title_trigram %>%  
  head(5) %>%  
  kable()
trigram
field performance of
performance of top
of top down
top down fatigue
down fatigue cracking

This snippet shows how to generate n-gram using tidytext and tidyverse. Yes, kable from knitr presents more readible table.

trigram_separated <- title_trigram %>%
  separate(trigram, c("word1", "word2", "word3"), sep = " ") %>%  
  filter(!word1 %in% stop_words$word,
         !word2 %in% stop_words$word,
         !word3 %in% stop_words$word
         ) 

trigram_count <- trigram_separated %>%  
  count(word1, word2, word3, sort=TRUE) 


trigram_count %>%  
  head(10) %>%  
  kable()
word1word2word3n
hotmixasphalt209
warmmixasphalt147
reclaimedasphaltpavement143
modifiedasphaltbinders62
crumbrubbermodified46
rollercompactedconcrete44
modifiedasphaltbinder41
recycledasphaltpavement39
rubbermodifiedasphalt39
mixasphaltmixtures38
trigramn
hot mix asphalt209
warm mix asphalt147
reclaimed asphalt pavement143
modified asphalt binders62
crumb rubber modified46
roller compacted concrete44
modified asphalt binder41
recycled asphalt pavement39
rubber modified asphalt39
mix asphalt mixtures38

Let’s take a look at the top 100 3-word phrases in the titles. Find your own position.

## # A tibble: 20 x 2
##    trigram                                n
##    <chr>                              <int>
##  1 "hot\nmix\nasphalt"                  209
##  2 "warm\nmix\nasphalt"                 147
##  3 "reclaimed\nasphalt\npavement"       143
##  4 "modified\nasphalt\nbinders"          62
##  5 "crumb\nrubber\nmodified"             46
##  6 "roller\ncompacted\nconcrete"         44
##  7 "modified\nasphalt\nbinder"           41
##  8 "recycled\nasphalt\npavement"         39
##  9 "rubber\nmodified\nasphalt"           39
## 10 "mix\nasphalt\nmixtures"              38
## 11 "sbs\nmodified\nasphalt"              38
## 12 "recycled\nconcrete\naggregate"       37
## 13 "freeze\nthaw\ncycles"                34
## 14 "asphalt\nconcrete\nmixtures"         33
## 15 "asphalt\nmixture\nbased"             33
## 16 "life\ncycle\nassessment"             33
## 17 "modified\nasphalt\nmixture"          32
## 18 "polymer\nmodified\nasphalt"          32
## 19 "finite\nelement\nmethod"             30
## 20 "mechanistic\nempirical\npavement"    30

Top 20 ranked trigrams:

Trigram (“three words”) that ranked 21-50:

You may be interested in the correlation among the words. So, a word network may help. I generated this word network using trigrams occurred more than 10 times among all the papers.

4-gram

gram4
field performance of top
performance of top down
of top down fatigue
top down fatigue cracking
down fatigue cracking for
fatigue cracking for warm
cracking for warm mix
for warm mix asphalt
warm mix asphalt pavements
mix asphalt pavements review

Similarly, I first ruled out the stop words in the titles, and then concatenated them together to make the 4-word phrases (4-gram).

Top 10 phrases? Not that interesting.

gram4n
crumb rubber modified asphalt25
mechanistic empirical pavement design25
hot mix asphalt mixtures18
reclaimed asphalt pavement rap17
roller compacted concrete pavement17
warm mix asphalt mixtures17
life cycle cost analysis15
empirical pavement design guide12
multiple stress creep recovery11
polymer modified asphalt binders11

Take a look at the stuff hiding in the crowd (10-30).

gram4n
polymer modified asphalt binders11
warm mix asphalt additives11
continuously reinforced concrete pavement10
foamed warm mix asphalt10
electric arc furnace steel9
hot mix asphalt hma9
jointed plain concrete pavement8
network level pavement management8
pavement mechanistic empirical design8
reclaimed asphalt pavement content8
reclaimed asphalt pavement material8
semi circular bending test8
viscoelastic continuum damage model8
warm mix asphalt technology8
arc furnace steel slag7
cement asphalt emulsion paste7
crumb rubber modified binders7
fresh cement asphalt emulsion7
hot mix asphalt effect7
warm mix asphalt binders7
aged sbs modified bitumen6

These topics have been sitting on the top of the hottest topics list for a long time now. This also explains the reason why every TRB reminds me the last one. Very little innovation happened in the field of pavement.

Traverse the list for what you need.

Authors

Productive teams

Good job top-1 and -2 teams. Sigh, team matters. Note that Chinese researchers looks strong in these two areas, too!

Productive individuals

Area of the each rectangle is to the scale of the number of papers published. The numbers only reflect the authors’ publications on the selected key words. So, some scholars may have significantly more work.

There are some productive young scholars but more are established figures.

Performance of well-known “big figures”?

Let’s generate a graph for the famous scholars in the field. When will you be on this list? See how many papers take to be on this list. At least 10 decent journal papers per year, that takes a big team!

Tools used

What I used for data processing and visualization?

Avatar
Hongren Gong
Assistant Professor

My research interests include pavement performance evaluation, automatic pavement distress recognition, infrastructure assest management, traffic safety