Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Talk:Fractional coordinates

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This article is ratedStart-class on Wikipedia'scontent assessment scale.
It is of interest to the followingWikiProjects:
WikiProject iconChemistryLow‑importance
WikiProject iconThis article is within the scope ofWikiProject Chemistry, a collaborative effort to improve the coverage ofchemistry on Wikipedia. If you would like to participate, please visit the project page, where you can jointhe discussion and see a list of open tasks.ChemistryWikipedia:WikiProject ChemistryTemplate:WikiProject ChemistryChemistry
LowThis article has been rated asLow-importance on theproject's importance scale.

Article reads like a mathematical proof instead of an encyclopedia article

[edit]

I don't think that this article is written in an appropriate style for non-experts. I know there's a rule about this somewhere, but I never do anything but extremely minor edits, so I'm unsure about how to go about fixing this. Also, while an expert in Chemistry or Physics might be of some kind of help, this particular topic is more the realm of materials science and/or mineralogy/crystallography. If anybody with more experience is willing to guide me a bit, mention it on my user/talk page and I'll see about taking up the task of fixing it up for those of us who don't live and breathe numbers. --Cronanius (talk)—Precedingundated comment added00:23, 12 March 2017 (UTC)[reply]

Inaccurate transformation matrix in "Conversion to cartesian coordinates" section

[edit]

Serious errors - the matrix that is provided is not correct, it should be the transpose of given matrix. I think this should be pointed out.— Precedingunsigned comment added by18.82.7.55 (talk)22:26, 19 June 2012 (UTC)[reply]

Hi, 18.82.7.55, and thanks for your suggestion! Everyone is welcome to help improve Wikipedia (please seeWP:BEBOLD). I've left more information onyour talk page, but please feel free to drop a note onmy talk page if I can help you with any editing questions. Cheers! --Bgpaulus (talk)22:34, 19 June 2012 (UTC)[reply]
In an attempt to direct discussion here, I've replaced 18.82.7.55's comments fromthis edit with the {{Expert-subject}} template at the top of the article. Cheers! --Bgpaulus (talk)23:29, 19 June 2012 (UTC)[reply]
I think the matrix is correct - I used it for my program and it works. I just don't like notations. I would write it
[xyz]=[abcos(γ)ccos(β)0bsin(γ)ccos(α)cos(β)cos(γ)sin(γ)00cvsin(γ)][xfracyfraczfrac]{\displaystyle \mathbf {{\begin{bmatrix}x\\y\\z\\\end{bmatrix}}={\begin{bmatrix}a&b\cos(\gamma )&c\cos(\beta )\\0&b\sin(\gamma )&c{\frac {\cos(\alpha )-\cos(\beta )\cos(\gamma )}{\sin(\gamma )}}\\0&0&c{\frac {v}{\sin(\gamma )}}\\\end{bmatrix}}} {\begin{bmatrix}x_{frac}\\y_{frac}\\z_{frac}\\\end{bmatrix}}}
Bor75 (talk)22:12, 19 September 2012 (UTC)[reply]
There is nothing wrong with either of the matrices. I wrote a program using those matrices, and the results match the cif file coordinates and the coordinates output by the chemistry program Avogadro.— Precedingunsigned comment added by146.186.25.18 (talk)20:43, 29 January 2013 (UTC)[reply]


The matrices are correct; but not the matrix that is given on the cited angelfire.com page even though the way of derivation that is given there is correct. there only the ab prefactor of one term of c3 has to be removed. possible citation for the correct matrix: Mathematical techniques in crystallography and material science / Edward Prince / Springer 1994 (see chapter "metric tensor").the definitions of the cited angelfire page are equal to the definitions here, there is just one error in calculus.

by the way: no chemist is needed here. every scientist can proof these matrices to be correct.

For whatever it is worth, I can also confirm that the transformations here are correct. I just got done coding this upfor the Psi4 electronic structure package and they work like a charm.— Precedingunsigned comment added by130.207.37.137 (talk)21:20, 3 June 2015 (UTC)[reply]


129.69.120.176 (talk)—Precedingundated comment added08:41, 19 September 2013 (UTC)[reply]

External links modified

[edit]

Hello fellow Wikipedians,

I have just modified one external link onFractional coordinates. Please take a moment to reviewmy edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visitthis simple FaQ for additional information. I made the following changes:

When you have finished reviewing my changes, you may follow the instructions on the template below to fix any issues with the URLs.

This message was posted before February 2018.After February 2018, "External links modified" talk page sections are no longer generated or monitored byInternetArchiveBot. No special action is required regarding these talk page notices, other thanregular verification using the archive tool instructions below. Editorshave permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see theRfC before doing mass systematic removals. This message is updated dynamically through the template{{source check}}(last update: 5 June 2024).

  • If you have discovered URLs which were erroneously considered dead by the bot, you can report them withthis tool.
  • If you found an error with any archives or the URLs themselves, you can fix them withthis tool.

Cheers.—InternetArchiveBot(Report bug)19:00, 3 January 2017 (UTC)[reply]

— Precedingunsigned comment added byNabla sq (talkcontribs)09:37, 11 February 2025 (UTC)[reply]

Transformations using the cell tensor section is wrong

[edit]

Dear Wikipedia,

Max Planck Institute for Chemical Physics of Solids post-doctoral scientist here. The h matrices (unit cell tensor) in the section "Transformations using the cell tensor" must all be transposed.I wrote this proof, which can be directly tested in Matlab (copy, paste and run):(I also took an image of the input and output side-by-side, so no need to run it) :-)— Precedingunsigned comment added byNabla sq (talkcontribs)09:39, 11 February 2025 (UTC)[reply]

% Define symbolic variablessyms ax ay az bx by bz cx cy cz

% Unit cell tensor (lattice vectors a, b and c as rows):

h = [ax ay az

    bx by bz    cx cy cz]

% Fractional coordinates as rows:

f = [1 0 0

    0 1 0    0 0 1    1 1 0    1 0 1    0 1 1    1 1 1]

% Real coordinates as rows:

r = f*h % Eq.1

% Then:

% Fractional coordinates as rows (from Eq.1):

f = simplify(r*h^-1) % Which is correct

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Therefore:

% Real coordinates as columns (from Eq.1):

rT = h.'*f.' % Eq.2

% Then:

% Fractional coordinates as columns (from Eq.2):

fT = simplify(h.'^-1*rT) % Which is correct

% Conclusion: Wikipedia is mistaken % h in their article must contain column lattice vectors, not rows% h in their article must be transposed141.5.15.12 (talk)09:24, 11 February 2025 (UTC)[reply]

Retrieved from "https://en.wikipedia.org/w/index.php?title=Talk:Fractional_coordinates&oldid=1275147154"
Categories:

[8]ページ先頭

©2009-2025 Movatter.jp