drop

Detachment work of prolate spheroidal particles from fluid droplets: role of viscous dissipation

Soft Matter, 2020, 16,4049-4056
DOI: 10.1039/C9SM02385B, Paper
Sergey V. Lishchuk, Rammile Ettelaie
The minimum possible work done upon removal of an elongated solid particle from the surface of a liquid droplet can be less than that for a sphere.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Marangoni puffs: dramatically enhanced dissolution of droplets with an entrapped bubble

Soft Matter, 2020, Advance Article
DOI: 10.1039/D0SM00093K, Paper
José M. Encarnación Escobar, Jaap Nieland, Arie van Houselt, Xuehua Zhang, Detlef Lohse
We present a curious effect observed during the dissolution process of water-immersed long-chain alcohol drops with an entrapped bubble. When the drop-water interface and the air bubble contact each other, a rapid cyclic motion that accelerates the drop's dissolution is found. We name this eye-catching phenomenon puffing.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Self similarity of liquid droplet coalescence in a quasi-2D free-standing liquid-crystal film

Soft Matter, 2020, Advance Article
DOI: 10.1039/D0SM00457J, Paper
Christoph Klopp, Torsten Trittel, Ralf Stannarius
Flat droplets coalescing on smectic free-standing films show self-similar dynamics.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Coalescence of isotropic droplets in overheated free standing smectic films

Soft Matter, 2020, Advance Article
DOI: 10.1039/C9SM02292A, Paper
Elena S. Pikina, Boris I. Ostrovskii, Sergey A. Pikin
A theoretical study of the interaction and coalescence of isotropic droplets in overheated free-standing smectic films (FSSF) is presented.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Effects of Eigen and Actual Frequencies of Soft Elastic Surfaces on droplet Rebound from Stationary Flexible Feather Vanes

Soft Matter, 2020, Accepted Manuscript
DOI: 10.1039/D0SM00315H, Paper
Chengchun Zhang, Zhengyang Wu, Chun Shen, Yihua Zheng, LIANG YANG, Yan Liu, Luquan Ren
The aim of this paper is to investigate the effect of eigenfrequency and the actual frequency of the elastic surface for the droplet rebound. The elastic surface used in this...
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

11 trains, 30 feet dynamic screen as backdrop for Narendra Modi's Bihar rally

This will be Modi's maiden political rally in rival Bihar Chief Minister Nitish Kumar's home turf.




drop

Relief for CPM leader Vijayan in corruption case, CBI court drops him from accused list

Observers believe the verdict could pave the way for Vijayan's return to the electoral scene.




drop

Hydroprocess 2008: II International Workshop on Process Hydrometallurgy : 14-16 May 2008, Santiago, Chile / editors, Jorge Menacho & Jesús Casas

International Workshop on Process Hydrometallurgy (2nd : 2008 : Santiago, Chile)




drop

Making every drop count : inquiry into water use efficiency programs in agriculture / House of Representatives, Standing Committee on Agriculture and Water Resources

Australia. Parliament. House of Representatives. Standing Committee on Agriculture and Water Resources, author




drop

A superhydrophilic bilayer structure of a nylon 6 nanofiber/cellulose membrane and its characterization as potential water filtration media

RSC Adv., 2020, 10,17205-17216
DOI: 10.1039/D0RA01077D, Paper
Open Access
Ahmad Fauzi, Dian Ahmad Hapidin, Muhammad Miftahul Munir, Ferry Iskandar, Khairurrijal Khairurrijal
The SEM image of (a) cellulose membrane and (b) the bilayer structure of a nylon 6 nanofibrous membrane on a cellulose membrane as water filter media.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Structural, optical and photocatalytic properties of erbium (Er3+) and yttrium (Y3+) doped TiO2 thin films with remarkable self-cleaning super-hydrophilic properties

RSC Adv., 2020, 10,17247-17254
DOI: 10.1039/D0RA02242J, Paper
Open Access
Raquel da Silva Cardoso, Suélen Maria de Amorim, Gidiane Scaratti, Camilla Daniela Moura-Nickel, Rodrigo Peralta Muniz Moreira, Gianluca Li Puma, Regina de Fatima Peralta Muniz Moreira
The self-cleaning and super hydrophilic properties of pristine TiO2 and of TiO2 doped with Er3+ or Y3+ transparent thin films deposited onto glass substrates were investigated.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Enhanced thermal stability, hydrophobicity, UV radiation resistance, and antibacterial properties of wool fabric treated with p-aminobenzenesulphonic acid

RSC Adv., 2020, 10,17515-17523
DOI: 10.1039/D0RA02267E, Paper
Open Access
Mohammad Mahbubul Hassan
The treatment with para-aminobenzenesulphonic acid produced a multifunctional wool fabric with enhanced hydrophobicity, thermal stability, UV resistance, and antibacterial properties.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

CSS drop-shadows without images

Drop-shadows are easy enough to create using pseudo-elements. It’s a nice and robust way to progressively enhance a design. This post is a summary of the technique and some of the possible appearances.

Demo: CSS drop-shadows without images

Known support: Firefox 3.5+, Chrome 5+, Safari 5+, Opera 10.6+, IE 9+

I’ll be looking mainly at a few details involved in making this effect more robust. Divya Manian covered the basic principle in her article Drop Shadows with CSS3 and Matt Hamm recently shared his Pure CSS3 box-shadow page curl effect.

After a bit of back-and-forth on Twitter with Simurai, and proposing a couple of additions to Divya’s and Matt’s demos using jsbin, I felt like documenting and explaining the parts that make up this technique.

The basic technique

There is no need for extra markup, the effect can be applied to a single element. A couple of pseudo-elements are generated from an element and then pushed behind it.

.drop-shadow {
  position: relative;
  width: 90%;
}

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
}

The pseudo-elements need to be positioned and given explicit or implicit dimensions.

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
}

The next step is to add a CSS3 box-shadow and apply CSS3 transforms. Different types of drop-shadow can be produced by varying these values and the types of transforms applied.

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  transform: rotate(-3deg);
}

One of the pseudo-elements then needs to be positioned on the other side of the element and rotated in the opposite direction. This is easily done by overriding only the properties that need to differ.

.drop-shadow:after{
  right: 10px;
  left: auto;
  transform: rotate(3deg);
 }

The final core code is as shown below. There is just one more addition – max-width – to prevent the drop-shadow from extending too far below very wide elements.

.drop-shadow {
  position: relative;
  width: 90%;
}

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  max-width: 300px;
  box-shadow :0 15px 10px rgba(0, 0, 0, 0.7);
  transform: rotate(-3deg);
}

.drop-shadow:after{
  right: 10px;
  left: auto;
  transform: rotate(3deg);
}

No Firefox 3.0 problems this time

Some pseudo-element hacks require a work-around to avoid looking broken in Firefox 3.0 because that browser does not support the positioning of pseudo-elements. This usually involves implicitly setting their dimensions using offsets.

However, as Divya Manian pointed out to me, in this case we’re only using box-shadow – which Firefox 3.0 doesn’t support – and Firefox 3.0 will ignore the position:absolute declaration for the pseudo-elements. This leaves them with the default display:inline style. As a result, there is no problem explicitly setting the pseudo-element width and height because it won’t be applied to the pseudo-elements in Firefox 3.0.

Further enhancements

From this base there are plenty of ways to tweak the effect by applying skew to the pseudo-elements and modifying the styles of the element itself. A great example of this was shared by Simurai. By adding a border-radius to the element you can give the appearance of page curl.

.drop-shadow {
  border-radius: 0 0 120px 120px / 0 0 6px 6px;
}

I’ve put together a little demo page with a few of drop-shadow effects, including those that build on the work of Divya Manian and Matt Hamm.

If you’ve got your own improvements, please send them to me on Twitter.




drop

Charges dropped against Sikh for carrying Kirpan to airport



  • DO NOT USE Indians Abroad
  • World

drop

COVID-19 coronavirus quarantines cause rapid drop in air pollution

NO<sub>2</sub> levels have fallen sharply in northern Italy and China




drop

US chemical output to drop this year

Novel coronavirus shutdown is choking demand for chemicals as well as investment, key trade group says




drop

Drop in driving endangers CO&#8322; supply

Gasoline demand is half of normal, idling ethanol plants and cutting off the CO<sub>2</sub> they produce




drop

Chemistry in Pictures: Drop &amp; Run




drop

The Manhattan Project and the dropping of the atomic bomb: the essential reference guide / Aaron Barlow, editor

Dewey Library - QC773.3.U5 M262 2020




drop

Slowdown blues: Incremental credit flow drops 64% to Rs 6.04 trn in FY20

Economic slowdown hits activity, adding fuel to the fire




drop

Containment zones drop to 57 in city, patients 274

COVID-19 cases in city are showing a declining trend




drop

Band-bending induced passivation: high performance and stable perovskite solar cells using a perhydropoly(silazane) precursor

Energy Environ. Sci., 2020, 13,1222-1230
DOI: 10.1039/C9EE02028D, Paper
Hiroyuki Kanda, Naoyuki Shibayama, Aron Joel Huckaba, Yonghui Lee, Sanghyun Paek, Nadja Klipfel, Cristina Roldán-Carmona, Valentin Ianis Emmanuel Queloz, Giulia Grancini, Yi Zhang, Mousa Abuhelaiqa, Kyung Taek Cho, Mo Li, Mounir Driss Mensi, Sachin Kinge, Mohammad Khaja Nazeeruddin
It could successfully control the band-bending of the perovskite semiconductor, which led to improvement of the photovoltaic performance.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

[ASAP] Functionalized Biochar with Superacidity and Hydrophobicity as a Highly Efficient Catalyst in the Synthesis of Renewable High-Density Fuels

ACS Sustainable Chemistry & Engineering
DOI: 10.1021/acssuschemeng.9b07367




drop

[ASAP] Sustainable and Robust Superhydrophobic Cotton Fabrics Coated with Castor Oil-Based Nanocomposites for Effective Oil–Water Separation

ACS Sustainable Chemistry & Engineering
DOI: 10.1021/acssuschemeng.0c01469




drop

[ASAP] Fluorescence Quenching by Nitro Compounds within a Hydrophobic Deep Eutectic Solvent

The Journal of Physical Chemistry B
DOI: 10.1021/acs.jpcb.0c02231




drop

Drop proposal to amend Electricity Act: Ramadoss

Centre’s move took away the State’s rights, says the PMK founder




drop

Muhana mandi sales drop after seller tests +ve

Business in Muhana mandi here has gone down by 35% in the last two days after a papaya seller tested positive on Wednesday.




drop

Oil drops 4% to below $30 a barrel as glut grows, output cuts eyed

Signalling a slow recovery in demand, data from the Energy Information Administration showed US crude and distillate inventories rose last week.




drop

16% landlords drop 2 months' rent, 44% didn't raise it in pandemic: Survey

The survey, conducted by property classified 99acres.com which is owned by Info Edge India Ltd, polled 49,600 house owners and brokers who have listed properties for rent or sale




drop

Maradu 357 drops post-production plans as &lsquo;five personnel aren&rsquo;t enough&rsquo;

Maradu 357 drops post-production plans as ‘five personnel aren’t enough’




drop

Tamil Nadu: Some districts see drop in Covid-19 cases in May

Tamil Nadu: Some districts see drop in Covid-19 cases in May




drop

TV broadcasters face existential crisis amid drop in ad revenue

The very survival of small television networks and free-to-air (FTA) channels is at stake after the advertising slump due to Covid-19 pandemic delivered a crippling blow to their cashflows, and with costs mounting every day, the liquidity crunch has now begun hindering their day-to-day operations.




drop

Single-step benzene hydroxylation by cobalt(II) catalysts via a cobalt(III)-hydroperoxo intermediate

Catal. Sci. Technol., 2020, 10,2540-2548
DOI: 10.1039/C9CY02601K, Paper
Karunanithi Anandababu, Sethuraman Muthuramalingam, Marappan Velusamy, Ramasamy Mayilmurugan
Cobalt(II) complexes reported as efficient and selective catalysts for single-step phenol formation from benzene using H2O2. The catalysis proceeds likely via cobalt(III)-hydroperoxo species.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Hydrophilic titanium surfaces reduce neutrophil inflammatory response and NETosis

Biomater. Sci., 2020, 8,2289-2299
DOI: 10.1039/C9BM01474H, Paper
Open Access
Jefferson O. Abaricia, Arth H. Shah, Ryan M. Musselman, Rene Olivares-Navarrete
Neutrophils are sensitive to biomaterial surface properties, controlling activation and inflammatory microenvironment, revealing a novel target for enhancing biomaterial integration.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Size-dependent aggregation of hydrophobic nanoparticles in lipid membranes

Nanoscale, 2020, 12,9452-9461
DOI: 10.1039/D0NR00868K, Paper
Open Access
Enrico Lavagna, Jonathan Barnoud, Giulia Rossi, Luca Monticelli
Aggregation of hydrophobic spherical nanoparticles in lipid membranes depends on nanoparticle size. Nanoparticles of ∼3 nm sense and induce membrane curvature.
The content of this RSS Feed (c) The Royal Society of Chemistry




drop

Dropper bottle




drop

Dropper bottle




drop

Sharp Drop in Personal Stock




drop

Investigating the Hispanic/Latino male dropout phenomenon




drop

Thermal analyses of hydrophilic polymers used in nanocomposites and biocompatible coatings




drop

Using frequency analysis to determine wetland hydroperiod




drop

A case study of school based leaders' perspectives of high school dropouts




drop

Dropping bombs




drop

Dropping bombs




drop

Dropping bombs on a village in Darfur




drop

Dropping bombs on a village in Darfur




drop

Jets dropping bombs in Darfur




drop

Habitat preference of Leptonema sp. (Trichoptera : Hydropsychidae) on tropical waterfalls




drop

Anaerobic Digester Effluent as Fertilizer for Hydroponically Grown Tomatoes




drop

Buffalo Bill's drop, or, Dead-Shot Ned, the Kansas kid