Acide chaulmoogrique

Multi tool use
Acide chaulmoogrique
|
|
 Structure de l'acide chaulmoogrique |
Identification |
Nom UICPA
|
acide 13-[(1R)-cyclopent-2-én-1-yl]tridécanoïque
|
No CAS
|
29106-32-9
|
NoECHA
|
100.044.931 |
PubChem
|
85291385
|
ChEBI
|
61389
|
SMILES
|
C1C[C@H](C=C1)CCCCCCCCCCCCC(=O)O PubChem, vue 3D
|
InChI
|
InChI : vue 3D InChI=1/C18H32O2/c19-18(20)16-10-8-6-4-2-1-3-5-7-9-13-17-14-11-12-15-17/h11,14,17H,1-10,12-13,15-16H2,(H,19,20) Std. InChI : vue 3D InChI=1S/C18H32O2/c19-18(20)16-10-8-6-4-2-1-3-5-7-9-13-17-14-11-12-15-17/h11,14,17H,1-10,12-13,15-16H2,(H,19,20)/t17-/m0/s1 Std. InChIKey : XMVQWNRDPAAMJB-KRWDZBQOSA-N
|
Propriétés chimiques |
Formule brute
|
C18H32O2 [Isomères]
|
Masse molaire[1]
|
280,4455 ± 0,0172 g/mol C 77,09 %, H 11,5 %, O 11,41 %,
|
Propriétés physiques |
T° fusion
|
68,5 °C
|
|
Unités du SI et CNTP, sauf indication contraire. |
modifier 
|
L'acide chaulmoogrique, ou acide 2 cyclopentène-1 tridécanoïque, est un acide gras à 18 atomes de carbone dont la chaîne aliphatique se termine par un cycle cyclopenténique. Il est extrait de l'huile de chaulmoogra, un arbre d'Asie du Sud-Est, dont il constitue 35 % des acides gras[2]. Cette huile est l'un des plus anciens remèdes connus contre la lèpre[3],[4].
Notes et références |
↑ Masse molaire calculée d’après « Atomic weights of the elements 2007 », sur www.chem.qmul.ac.uk.
↑
(en) A. Sengupta, J. K. Gupta, J. Dutta, A. Ghosh, « The component fatty acids of chaulmoogra oil », Journal of the Science of Food and Agriculture, vol. 24, no 6, juin 1973, p. 669-674 (lire en ligne) DOI:10.1002/jsfa.2740240606 PMID 4737104
↑ L'huile de chaulmoogra et le traitement de la lèpre
↑
(en) John Parascandola, « Chaulmoogra Oil and the Treatment of Leprosy », Pharmacy in history, vol. 45, no 2, 2003, p. 47-57 (lire en ligne) PMID 12894769
Voir aussi |
- Acide hydnocarpique
- Acide gorlique
- Liste d'acides
Portail de la chimie
Portail de la biochimie
Portail de la médecine
nxNz,QTOh2EtLhyZvQYx,yZ Q25Vqsv3rx36cQJ0U9T
Popular posts from this blog
1
I am trying to find out how to save and close to an existing workbook using xlwings after writing in it: import xlwings as xw list_of_values = [1, 2, 3] workbook_path = 'abc.xlsx' wb = xw.Book(workbook_path) ws = wb.sheets['sheet1'] ws.range('E35').value = list_of_values wb.save() wb.close() When I get to wb.save(workbook_path) , there is a prompt stating: 'A file named abc.xlsx' already exists in this location. Do you want to replace it?' I want to overwrite the file immediately without the prompt coming up. According to the docs, wb.save() should automatically overwrite (see: https://docs.xlwings.org/en/v0.6.4/api.html). I have also tried wb.save(workbook_path) but the pop-up still appears. Appreciate any help on this please. p.s. - I am basically try...
Ne doit pas être confondu avec freeware, open source ou copyleft. Logo du projet GNU, initiateur du mouvement du logiciel libre. Un logiciel libre est un logiciel dont l'utilisation, l'étude, la modification et la duplication par autrui en vue de sa diffusion sont permises, techniquement et légalement [ 1 ] , ceci afin de garantir certaines libertés induites, dont le contrôle du programme par l'utilisateur et la possibilité de partage entre individus [ 2 ] . Ces droits peuvent être simplement disponibles – cas du domaine public – ou bien établis par une licence, dite « libre », basée sur le droit d'auteur. Les « licences copyleft » garantissent le maintien de ces droits aux utilisateurs même pour les travaux dérivés. Les logiciels libres constituent une alternative à ceux qui ne le sont pas, qualifiés de « propriétaires » ou de « privateurs » [ Note 1 ] . Ces derniers sont alors considérés par une partie de la communauté du logiciel libre comme étant l...
1
1
I'm still learning PostgreSQL. During my testing, I have only been using INSERT statement in either psycopg2 and now asyncpg. I now have the need to UPDATE data in my test database, instead of replacing all of it. I'm currently trying to do a simple replacement test in a testing table, before I move to development table with more data. I want to replace any $1 name that is in CONFLICT with a name that is already in the table users. I'm trying the query code, which is passed to the DB via asyncpg. I keep getting a syntax errors, so I'm a little lost on how to correct these errors. What is the proper syntax for this query? '''INSERT INTO users(name, dob) VALUES($1, $2) ON CONFLICT (name) DO UPDATE "users" SET name = 'TEST' W...